/* ========================================
   リセット & 基本設定
======================================== */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

/* スマホ用改行（PC表示では非表示） */
.sp-br {
    display: none;
}

/* PC用改行（スマホ表示では非表示） */
.pc-br {
    display: inline;
}

/* PC専用表示 (モバイルでは非表示) */
.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .sp-br {
        display: inline;
    }

    .pc-br {
        display: none;
    }

    .pc-only {
        display: none !important;
    }

    section.pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    section.sp-only {
        display: block !important;
    }
}





/* ========================================
   ファーストビュー（ヒーローセクション）
======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero__content {
    position: absolute;
    top: 0;
    left: calc(50% - 50px);
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 40px;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero__content.active {
    opacity: 1;
    pointer-events: auto;
}

.hero__logo-team {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero__logo-team img {
    height: 180px;
    width: auto;
}

.hero__text-container {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.hero__title {
    font-size: 2.8vw;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.5s both;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    width: 100%;
}

.hero__text {
    font-size: 1.1vw;
    font-weight: 400;
    color: #fff;
    line-height: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.7s both;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    width: 100%;
}

/* 2枚目のスライド用スタイル */
.hero__content--centered {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-left: 40px;
	left: 50%;
}

.hero__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.hero__title--vertical {
    width: auto;
    display: inline-block;
    white-space: nowrap;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    font-family: 'Yu Mincho', 'YuMincho', serif;
    font-size: 120px;
    margin-bottom: 0;
    padding: 0;
    line-height: 1;
    background: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

@media screen and (max-height: 800px),
screen and (max-width: 768px) {
    .hero__title--vertical {
        font-size: 60px;
    }
}

.hero__title--fixed {
    position: relative;
}

.hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.hero__content--centered .hero__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 7px;
}

/* Hero Slider */
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
}

/* Hero Indicators */
.hero__indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 12px;
    animation: fadeIn 1s ease 1s both;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.hero__indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   モバイル専用ヒーローセクション
======================================== */
.hero-sp {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-sp__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.hero-sp__slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-sp__top {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-sp__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-sp__logo-team {
    position: absolute;
    top: 50px;
    left: 2%;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    max-width: 50%;
}

.hero-sp__logo-team img {
    height: 100px;
    width: auto;
}

.hero-sp__bottom {
    position: relative;
    width: 100%;
    height: 50vh;
    background: linear-gradient(180deg, #BE1A21 0%, #8B0000 100%);
    overflow: hidden;
}

.hero-sp__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-sp__content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    justify-content: center;
}

.hero-sp__badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 123, 255, 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-sp__title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    text-align: left;
	margin-bottom: 15px;
}

.hero-sp__title span {
    padding: 5px 0;
    display: block;
}

.hero-sp__text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.hero-sp__indicators {
    position: absolute;
    bottom: calc(50% + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-sp__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-sp__indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.hero-sp__indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 2枚目のスライド専用スタイル */
.hero-sp__slide--second .hero-sp__content {
    font-family: "BIZ UD明朝", "BIZ UDMincho", serif !important;
}

.hero-sp__slide--second .hero-sp__title {
    font-size: 48px;
    font-family: "BIZ UD明朝", "BIZ UDMincho", serif !important;
	font-weight: 600;
}

.hero-sp__slide--second .hero-sp__text {
    font-family: 'BIZ UDMincho', serif;
}

/* ========================================
   チーム紹介セクション
======================================== */
.team {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.team__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__container {
    position: relative;
    z-index: 2;
    /* max-width: 1500px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.team__header {
    text-align: left;
    margin-bottom: 60px;
}

.team__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 10px;
    /*     text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    letter-spacing: 2px;
}

.team__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    padding: 0 6px;
    background: #000;
    letter-spacing: 2px;
}

.team__white-container {
    background: #fff;
    border-radius: 16px;
    padding: 60px 50px;
}

.team__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team__card {
    background: #fff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.team__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team__card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team__card:hover .team__card-image img {
    transform: scale(1.1);
}

.team__card-body {
    padding: 30px;
    text-align: center;
}

.team__card-label {
    font-size: 18px;
    font-weight: 500;
    color: #BE1A21;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.team__card-title {
    font-size: 28px;
    font-weight: 700;
    color: #BE1A21;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team__card-title-text {
    border-bottom: 1px solid #BE1A21;
}

.team__card-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team__card-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team__card:hover .team__card-arrow {
    transform: translateY(4px);
}

/* ========================================
   スポーツの力セクション
======================================== */
.sports-power {
    background: #0a0a0a;
    padding: 120px 0;
    position: relative;
}

.sports-power__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.sports-power__header {
    margin-bottom: 60px;
}

.sports-power__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 16px;
    /*     text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    letter-spacing: 2px;
}

.sports-power__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    padding: 0 6px;
    background: #BE1A21;
    letter-spacing: 1px;
}

.sports-power__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sports-power__image {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sports-power__image img {
    width: 100%;
    height: auto;
    display: block;
}

.sports-power__text {
    color: #fff;
    line-height: 2;
}

.sports-power__text p {
    font-size: 26px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.sports-power__text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   岩手ビッグブルズセクション
======================================== */
.big-bulls {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.big-bulls__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.big-bulls__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-bulls__container {
    position: relative;
    z-index: 2;
    /* max-width: 1500px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.big-bulls__card {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}

.big-bulls__header {
    margin-bottom: 80px;
}

.big-bulls__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 12px;
    /*     text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    letter-spacing: 1px;
}

.big-bulls__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: #000;
    padding: 0 6px;
    letter-spacing: 1px;
}

.big-bulls__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.big-bulls__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.big-bulls__right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.big-bulls__text p,
.big-bulls__text-right p {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.big-bulls__text p:last-child,
.big-bulls__text-right p:last-child {
    margin-bottom: 0;
}

.big-bulls__image-small,
.big-bulls__image-large {
    width: 100%;
    overflow: hidden;
}

.big-bulls__image-small {
    margin-top: auto;
}

.big-bulls__image-small img,
.big-bulls__image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.big-bulls__footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.big-bulls__text-right .big-bulls__links {
    margin-top: 30px;
}

.big-bulls__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px 30px;
}

.big-bulls__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-left: 6px solid #BE1A21;
    padding: 8px 0 8px 12px;
    transition: all 0.3s ease;
}

.big-bulls__link img {
    width: 14px;
    height: 14px;
}

.big-bulls__link:hover {
    opacity: 0.7;
}


.big-bulls__cta {
    display: flex;
    justify-content: center;
}

.btn-big-bulls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #BE1A21;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding: 18px 80px;
    width: 100%;
    max-width: 640px;
}

.btn-big-bulls img {
    position: absolute;
    right: 80px;
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}


/* ========================================
   麻雀セクション
======================================== */
.mahjong {
    background: #0a0a0a;
    padding: 120px 0;
}

.mahjong__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.mahjong__header {
    margin-bottom: 60px;
}

.mahjong__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 16px;
    /*     text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    letter-spacing: 2px;
}

.mahjong__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: #BE1A21;
    padding: 0 6px;
    letter-spacing: 1px;
}

.mahjong__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mahjong__image {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.mahjong__image img {
    width: 100%;
    height: auto;
    display: block;
}

.mahjong__text {
    color: #fff;
    line-height: 2;
}

.mahjong__text p {
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.mahjong__text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   チームカネマンセクション
======================================== */
.team-kaneman {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.team-kaneman__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-kaneman__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-kaneman__container {
    position: relative;
    z-index: 2;
    /* max-width: 1500px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.team-kaneman__card {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}

.team-kaneman__header {
    margin-bottom: 40px;
}

.team-kaneman__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 12px;
    /*     text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    letter-spacing: 1px;
}

.team-kaneman__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: #000;
    padding: 0 6px;
    letter-spacing: 1px;
}

.team-kaneman__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* デスクトップレイアウト: 左列 */
.team-kaneman__text {
    grid-column: 1;
    grid-row: 1;
}

.team-kaneman__logo {
    grid-column: 1;
    grid-row: 2;
}

/* デスクトップレイアウト: 右列 */
.team-kaneman__banner {
    grid-column: 2;
    grid-row: 1;
}

.team-kaneman__text-right {
    grid-column: 2;
    grid-row: 2;
}

.team-kaneman__link {
    grid-column: 2;
    grid-row: 3;
}

.team-kaneman__text p,
.team-kaneman__text-right p {
    font-size: 24px;
    line-height: 2;
    font-weight: 700;
    margin-bottom: 16px;
}

.team-kaneman__text p:last-child,
.team-kaneman__text-right p:last-child {
    margin-bottom: 0;
}

.team-kaneman__logo {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.team-kaneman__logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-kaneman__banner {
    width: 100%;
    overflow: hidden;
}

.team-kaneman__banner img {
    width: 100%;
    height: auto;
    display: block;
}

.team-kaneman__link {
    margin-top: 10px;
}

.link-mleague {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-left: 6px solid #BE1A21;
    padding: 8px 0 8px 12px;
    transition: all 0.3s ease;
}

.link-mleague img {
    width: 14px;
    height: 14px;
}

.link-mleague:hover {
    opacity: 0.7;
}

/* ========================================
   CEOメッセージセクション
======================================== */
.ceo-message {
    background: #0a0a0a;
    padding: 120px 0;
}

.ceo-message__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.ceo-message__header {
    margin-bottom: 60px;
}

.ceo-message__title-en {
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #FF000B;
    line-height: 1;
    margin-bottom: 16px;
    /*     text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    letter-spacing: 2px;
}

.ceo-message__title-ja {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: #BE1A21;
    padding: 0 6px;
    letter-spacing: 1px;
}

.ceo-message__image-container {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}

.ceo-message__image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ceo-message__image-caption {
    position: absolute;
    bottom: 45px;
    left: 45px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ceo-message__image-caption p {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0;
    background: #BE1A21;
    padding: 5px 15px;
    display: inline-block;
    width: fit-content;
}

.ceo-message__text {
    color: #fff;
}

.ceo-message__text p {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ceo-message__text p:last-child {
    margin-bottom: 0;
}

.ceo-message__signature {
    margin-top: 40px;
    text-align: right;
}

.ceo-message__signature p {
    margin: 0;
}

.ceo-message__signature-company {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.ceo-message__signature-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

/* ========================================
   CTAセクション
======================================== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cta__title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta__text {
    font-size: 28px;
    color: #fff;
    margin-bottom: 50px;
}

.cta__button {
    display: flex;
    justify-content: center;
}

.btn-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    padding: 15px 120px;
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1200px) {
    .header__menu {
        gap: 6px 15px;
    }

    .header__menu a {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .header__container {
        padding: 12px 30px;
    }

    .header__logo {
        width: 150px;
    }

    .header__menu {
        gap: 5px 12px;
    }

    .header__menu a {
        font-size: 12px;
    }

    .btn-contact {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__text {
        font-size: 15px;
    }

    .team {
        padding: 100px 0;
    }

    .team__title-en {
        font-size: 60px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team__header {
        margin-bottom: 60px;
    }

    .team__content {
        gap: 30px;
    }

    .sports-power {
        padding: 100px 0;
    }

    .sports-power__title-en {
        font-size: 48px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .sports-power__header {
        margin-bottom: 50px;
    }

    .big-bulls {
        padding: 100px 0;
    }

    .big-bulls__card {
        padding: 50px 40px;
    }

    .big-bulls__title-en {
        font-size: 48px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .big-bulls__content {
        gap: 30px;
    }

    .mahjong {
        padding: 100px 0;
    }

    .mahjong__title-en {
        font-size: 60px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .mahjong__header {
        margin-bottom: 50px;
    }

    .team-kaneman {
        padding: 100px 0;
    }

    .team-kaneman__card {
        padding: 50px 40px;
    }

    .team-kaneman__title-en {
        font-size: 48px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team-kaneman__main {
        gap: 40px;
    }

    .ceo-message {
        padding: 100px 0;
    }

    .ceo-message__title-en {
        font-size: 60px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .ceo-message__content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta__title {
        font-size: 36px;
    }

    .cta__text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    #footer>.inner.container {
        width: calc(100% - 4rem);
    }

    .header__container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .header__logo {
        width: 140px;
    }

    .header__nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .header__menu {
        gap: 8px 10px;
        font-size: 11px;
    }

    .header__contact {
        margin-left: auto;
    }

    .btn-contact {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero__content {
        padding: 0 20px;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero__logo-team {
        gap: 20px;
        margin-bottom: 30px;
    }

    .hero__logo-team img {
        height: 120px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 14px;
        line-height: 1.9;
    }

    .hero__title--vertical {
        font-size: 80px;
    }

    .team {
        padding: 80px 0;
    }

    .team__container {
        padding: 0 20px;
    }

    .team__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team__title-ja {
        font-size: 28px;
    }

    .team__header {
        margin-bottom: 50px;
    }

    .team__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team__white-container {
        padding: 40px 30px;
    }

    .team__card-body {
        padding: 25px;
    }

    .sports-power {
        padding: 80px 0;
    }

    .sports-power__container {
        padding: 0 20px;
    }

    .sports-power__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .sports-power__text p {
        font-size: 14px;
    }

    .sports-power__header {
        margin-bottom: 40px;
    }

    .sports-power__content {
        gap: 30px;
    }

    .big-bulls {
        padding: 80px 0;
    }

    .big-bulls__container {
        padding: 0 20px;
    }

    .big-bulls__card {
        padding: 40px 30px;
    }

    .big-bulls__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .big-bulls__title-ja {
        font-size: 28px;
    }

    .big-bulls__content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .big-bulls__text p,
    .big-bulls__text-right p {
        font-size: 14px;
    }


    .big-bulls__links {
        grid-template-columns: 1fr 1fr;
        gap: 10px 15px;
    }

    .big-bulls__link {
        font-size: 12px;
        padding: 7px 0 7px 10px;
    }

    .btn-big-bulls {
        font-size: 15px;
        padding: 16px 40px;
    }

    .btn-big-bulls img {
        right: 20px;
    }

    .mahjong {
        padding: 80px 0;
    }

    .mahjong__container {
        padding: 0 20px;
    }

    .mahjong__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .mahjong__title-ja {
        font-size: 28px;
    }

    .mahjong__header {
        margin-bottom: 40px;
    }

    .mahjong__content {
        gap: 30px;
    }

    .mahjong__text p {
        font-size: 14px;
    }

    .team-kaneman {
        padding: 80px 0;
    }

    .team-kaneman__container {
        padding: 0 20px;
    }

    .team-kaneman__card {
        padding: 40px 30px;
    }

    .team-kaneman__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team-kaneman__title-ja {
        font-size: 28px;
    }

    .team-kaneman__main {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .team-kaneman__banner {
        order: 1;
    }

    .team-kaneman__text {
        order: 2;
    }

    .team-kaneman__logo {
        order: 3;
        padding: 0;
    }

    .team-kaneman__text-right {
        order: 4;
    }

    .team-kaneman__link {
        order: 5;
    }

    .team-kaneman__logo img {
        max-width: 100%;
    }

    .team-kaneman__text p {
        font-size: 14px;
    }

    .link-mleague {
        font-size: 14px;
        padding: 6px 0 6px 10px;
    }

    .ceo-message {
        padding: 80px 0;
    }

    .ceo-message__container {
        padding: 0 20px;
    }

    .ceo-message__title-en {
        font-size: 80px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .ceo-message__title-ja {
        font-size: 28px;
    }

    .ceo-message__header {
        margin-bottom: 50px;
    }

    .ceo-message__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-message__image-caption {
        bottom: 20px;
        left: 20px;
    }

    .ceo-message__image-caption p {
        font-size: 18px;
        padding: 4px 10px;
    }

    .ceo-message__text p {
        font-size: 14px;
    }

    .ceo-message__signature-company {
        font-size: 14px;
    }

    .ceo-message__signature-name {
        font-size: 18px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta__container {
        padding: 0 20px;
    }

    .cta__title {
        font-size: 30px;
    }

    .cta__text {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 16px 48px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .hero__text {
        font-size: 12px;
    }

    .hero__title--vertical {
        font-size: 60px;
    }

    .hero__logo-team {
        gap: 15px;
    }

    .hero__logo-team img {
        height: 90px;
    }

    .team__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .team__white-container {
        padding: 30px 20px;
    }

    .team__card-label {
        font-size: 14px;
        height: auto;
    }

    .team__card-body {
        padding: 20px;
    }

    .team__card-title {
        font-size: 18px;
    }

    .sports-power__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .sports-power__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .sports-power__text p {
        font-size: 13px;
        line-height: 1.9;
    }

    .big-bulls__card {
        padding: 30px 20px;
    }

    .big-bulls__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .big-bulls__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .big-bulls__header {
        margin-bottom: 30px;
    }

    .big-bulls__text p,
    .big-bulls__text-right p {
        font-size: 13px;
    }

    .btn-big-bulls {
        font-size: 14px;
        padding: 14px 32px;
    }

    .btn-big-bulls img {
        right: 15px;
        width: 14px;
        height: 14px;
    }

    .mahjong__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(230, 57, 70, 0.8); */
    }

    .mahjong__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .mahjong__text p {
        font-size: 13px;
        line-height: 1.9;
    }

    .team-kaneman__card {
        padding: 30px 20px;
    }

    .team-kaneman__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .team-kaneman__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .team-kaneman__header {
        margin-bottom: 30px;
    }

    .team-kaneman__text p,
    .team-kaneman__text-right p {
        font-size: 13px;
    }

    .team-kaneman__logo {
        padding: 0;
    }

    .team-kaneman__logo img {
        max-width: 100%;
    }

    .link-mleague {
        font-size: 12px;
        padding: 5px 0 5px 8px;
    }

    .ceo-message__title-en {
        font-size: 50px;
        /*         text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); */
    }

    .ceo-message__title-ja {
        font-size: 20px;
        padding: 0 4px;
    }

    .ceo-message__image-caption {
        bottom: 10px;
        left: 10px;
        gap: 0;
    }

    .ceo-message__image-caption p {
        font-size: 14px;
        padding: 3px 8px;
        margin: 5px 0;
    }

    .ceo-message__text p {
        font-size: 13px;
        line-height: 1.9;
    }

    .ceo-message__signature-company {
        font-size: 11px;
    }

    .ceo-message__signature-name {
        font-size: 16px;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__text {
        font-size: 13px;
    }

    .cta__text br {
        display: none;
    }

    .btn-cta {
        font-size: 15px;
        padding: 14px 40px;
    }
}

@media (max-width: 400px) {
    .team-kaneman__title-ja {
        font-size: 18px;
        padding: 0 3px;
    }
}