@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@font-face {
    font-family: 'din-condensed-bold';
    src: url('../../fonts/din-condensed-bold.ttf');
    font-weight: normal;
}

:root {
    --bg-body: #ffffff;
    --base: 1440;
}


@media screen and (max-width: 768px) {
    :root {
        --base: 393;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    margin:0 !important;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    padding-top:112px;
    background: var(--bg-body);
    font-family: "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container_1440 {
    max-width: 1440px;
    margin: 0 auto;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/*---------- header ----------*/
.header_area {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background-color: #001b5b;
    transition: 0.3s;
    z-index:1000;

    &.hide{
        transform:translateY(-112px);
    }
}

.header_top {
    height: 65px;
    border-bottom: 4px solid #009eb4;
}

.header_top_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    /* max-width:1300px;
    margin:0 auto; */

    .left {
        display: flex;
        align-items: center;
        gap: 33px;
        padding-left: 35px;

        img {
            height: 45px;
        }
    }

    .center {
        position: absolute;
        top: 7px;
        left: 50%;
        transform: translateX(-50%);

        img {
            width: 76px;
        }
    }

    .right {
        display: flex;
        align-items: center;
        gap: 22px;
        padding-right: 41px;

        img {
            height: 34px;
        }
    }
}

.header_bottom {
    height: 47px;
}

.header_bottom_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 中央エンブレム用のクリアゾーンを確保するため、左右グループを均等2カラムにして外側へ寄せる。
       横の余白を活かすため max-width を 1213px → 1440px に拡大 */
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    /* 画面を縮小してラップが画面幅いっぱいになっても、左右に余白を残す */
    padding: 0 40px;

    ul {
        display: flex;
        align-items: center;
        height: 100%;

        /* 左グループ：左寄せ（中央側に余白を残す） */
        &:first-child {
            flex: 1;
            justify-content: flex-start;
            gap: 74px;
        }

        /* 右グループ：右寄せ。4項目で中央側が空きやすいため、padding-right で全体を中央側へ寄せる */
        &:last-child {
            flex: 1;
            justify-content: flex-end;
            gap: 64px;
            padding-left: 20px;
        }

        li {
            display: flex;
            align-items: center;
            position: relative;
            height: 100%;
            font-family: "peckham-press", sans-serif;
            font-size: 14px;
            color: #ffffff;
            list-style: none;
            white-space: nowrap;

            a {
                &.active {
                    &:before {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 70px;
                        height: 3px;
                        background-color: #ffffff;
                    }
                }
            }
        }
    }
}

/* 1440px以下：ヘッダーメニューの文字サイズとメニュー間ギャップを画面幅に比例して縮小。
   1440pxでは基準値(gap 74/64px・文字14px)と同じで、それ以下で滑らかに小さくなる。
   clampの上限が基準値なので、エンブレムとの余白を保ちつつ折り返し・衝突を防ぐ */
@media screen and (min-width: 769px) and (max-width: 1440px) {
    .header_bottom_wrap {
        padding: 0 clamp(16px, 2.78vw, 40px);

        ul {
            &:first-child {
                gap: clamp(26px, 5.14vw, 74px);
            }

            &:last-child {
                gap: clamp(22px, 4.44vw, 64px);
                padding-left: clamp(10px, 1.39vw, 20px);
            }

            li {
                font-size: clamp(10px, 0.97vw, 14px);
            }
        }
    }
}

/* 1080px以下：文字サイズはそのまま、メニュー間ギャップだけさらに詰める */
@media screen and (min-width: 769px) and (max-width: 1080px) {
    .header_bottom_wrap {
        ul {
            &:first-child {
                gap: clamp(18px, 4vw, 43px);
            }

            &:last-child {
                gap: clamp(16px, 3.4vw, 37px);
                padding-left: clamp(8px, 1vw, 11px);
            }
        }
    }
}

.header_detail_nav {
    display: none;
    position: absolute;
    top: 112px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1000;

    &.active {
        display: block;
    }

    &:before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background-color: rgba(0, 27, 91, 0.9);
        -webkit-filter: blur(5px);
        -moz-filter: blur(5px);
        -o-filter: blur(5px);
        -ms-filter: blur(5px);
        filter: blur(5px);
        /* 背後のページ内容をぼかす（すりガラス効果） */
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        z-index: -1;
    }
}

.header_detail_wrap {
    display: grid;
    grid-template-columns: 362px 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 0 94px;

    .title {
        .en {
            margin-bottom: 5px;
            font-family: "peckham-press", sans-serif;
            font-size: 40px;
            color: #ffffff;
        }

        .jp {
            font-size: 16px;
            color: #ffffff;
        }

        /* 見出し下の「〇〇 トップを見る」テキストリンク */
        .title_link {
            display: inline-block;
            margin-top: 48px;
            padding-bottom: 10px;
            font-size: 14px;
            font-weight: bold;
            color: #ffffff;
            border-bottom: 1px solid #ffffff;
            transition: opacity 0.2s;

            &:hover {
                opacity: 0.7;
            }
        }
    }

    .container {
        display: grid;
        gap: 42px;

        .row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: flex-end;
            gap: 66px;

            .box {
                .name {
                    font-size: 14px;
                    font-weight: bold;
                    color: #ffffff;
                    padding-bottom: 12px;
                    border-bottom: 1px solid #ffffff;

                    &.blank {
                        background: url('../images/common/target_blank_icon.png') center right 8px / 12px no-repeat;
                    }
                }

                .img {
                    height: 119px;
                    margin-top: 20px;
                    overflow: hidden;

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

.header_nav_sp_area{
    display:none;
}

/* FOOTER */
/* FOOTER */
/* ============================================================
   旧フッターCSS（v1）— 新フッター(v2)へ置き換えのためコメントアウト ここから ↓↓↓
   ============================================================ */
/*
.site_footer {
    background: #00205B;
    color: #ffffff;
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    border: 0;
    background: #003970;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.footer_top_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg) translateY(1px);
}

.footer_main {
    padding: 34px 56px 26px;
}

.footer_mobile {
    display: none;
}

.footer_desktop {
    max-width: 1120px;
    margin: 0 auto;
}

.footer_nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 34px 26px;
}

.footer_nav_group+.footer_nav_group {
    margin-top: 30px;
}

.footer_nav_title {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.footer_nav_list {
    display: grid;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer_nav_list a {
    color: rgba(255, 255, 255, 0.94);
    font-size: 11px;
    line-height: 1.5;
}

.footer_nav_list a:hover,
.footer_nav_list a:focus-visible {
    text-decoration: underline;
}

.footer_logo {
    display: block;
    width: max-content;
    margin: 42px auto 0;
}

.footer_logo img {
    display: block;
    width: 104px;
}

.footer_legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 30px;
    background: #ffffff;
    color: #111111;
}

.footer_legal_left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer_slogan {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_slogan img {
    width: 32px;
}

.footer_slogan_copy {
    display: grid;
    gap: 2px;
}

.footer_slogan_copy span {
    font-size: 10px;
    font-weight: 700;
}

.footer_slogan_copy strong {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
}

.footer_legal_divider {
    width: 1px;
    height: 34px;
    background: #d3d7df;
}

.footer_jleague {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_jleague_mark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 28px;
    border-radius: 3px 3px 10px 10px;
    background: linear-gradient(90deg, #0d0d0d 0 56%, #ffffff 56% 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.footer_jleague_mark::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7122f;
}

.footer_jleague_text {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #111111;
}

.footer_copyright {
    font-size: 11px;
    font-weight: 700;
    color: #30333a;
}
*/
/* ===== 旧フッターCSS（v1 / PC）ここまで ↑↑↑ ===== */

/* 20260529F */


/* ==========================================================================
   BANNER WRAPPER
   ========================================================================== */
.banner_wrapper {
    position: relative;
    width: 100%;

    .banner_img {
        background-color: #000;
        background-image: url("../images/banner_bg.webp");
        background-size: cover;
        background-position: center 25px;
        padding-top: 25px;

        img {
            width: 80%;
            margin: 0 auto;
        }
    }

    .banner_slideshow {
        position: relative;
        height: 132px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 27, 91, 0.98) 100%);

        .banner_slideshow-viewport {
            display: flex;
            width: max-content;
            min-width: 100%;
            padding: 18px 0;
            animation: banner-marquee 34s linear infinite;
        }

        .banner_slideshow-track {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-right: 10px;
        }
    }

    .banner_slide {
        flex: 0 0 auto;
        width: 199px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
        transition: transform 0.25s ease, box-shadow 0.25s ease;

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

        &:hover,
        &:focus-visible {
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
        }
    }
}

@keyframes banner-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   MATCH WRAPPER
   ========================================================================== */
.match_wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    min-height: 650px;
}
.match_box_left {
    position: relative;
    overflow: hidden;
    background: #ffffff url("../images/match_bg_left.webp") center / cover no-repeat;
}

.match_tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.match_tab {
    height: 80px;
    border: 0;
    color: #ffffff;
    background: #009EB4;
    font-family: "peckham-press", sans-serif;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;

    &.match_tab_left {
        border-bottom-right-radius: 10px;
    }

    &.match_tab_right {
        border-bottom-left-radius: 10px;
    }

    &.is-active {
        color: #12aac4;
        background: transparent;
    }
}

.match_cards_wrapper {
    --card-width: 367px;
    --card-gap: 30px;
    --card-peek: 0px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 34px auto 0;
}

.match_cards_viewport {
    width: 100%;
    /* ネイティブ横スクロール。縦のドロップシャドウが切れないよう上下にpaddingを確保 */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* scroll-snapは付けない。末尾で最後のカードが左に吸着して
       右側に大きな余白が残るのを防ぎ、コンテンツ右端でぴったり止める */
    padding: 6px 0 30px;
    margin-bottom: -30px;
}

.match_cards {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: var(--card-gap);
    width: max-content;
}

.match_card {
    position: relative;
    flex: 0 0 var(--card-width);
    width: var(--card-width);
    background: #ffffff;
    box-shadow: 0 4px 28px rgba(8, 24, 80, 0.16);
    transition: box-shadow 0.3s ease, opacity 0.3s ease;

    .match_card-head {
        padding: 11px;
        box-sizing: border-box;
        color: #ffffff;
        background: #04003B;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .match_card-body {
        padding: 27px;
        text-align: center;
        color: #04003B;
    }
}

.match_date {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin-bottom: 16px;
    font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
    line-height: 1;
    letter-spacing: -0.5px;

    .match_date-main {
        font-size: 83px;
        font-weight: 700;
    }

    .match_date-sub {
        font-size: 36px;
        font-weight: 700;
    }
}

.match_teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 32px;
}

.match_crest {
    width: 80px;
    height: auto;
}

.match_vs {
    font-size: 69px;
    font-weight: 700;
    line-height: 1;
}

.match_meta {
    margin-bottom: 26px;
}

.match_home_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    height: 22px;
    padding: 5px 14px;
    color: #ffffff;
    background: #001B5B;
    font-size: 15px;
    font-weight: 700;
}

.match_venue {
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    display: block;
    margin-top: 15px;
}

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

.match_button {
    display: flex;
    align-items:center;
    justify-content: center;
    min-height: 43px;
    height:100%;
    padding: 9px 14px;
    color: #001B5B;
    border: 2px solid #001B5B;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.match_nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    background: #009EB4;
    cursor: pointer;
    transform: translateY(-50%);

    span {
        display: block;
        width: 11px;
        height: 11px;
        margin: 0 auto;
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
    }

    &.match_nav-prev {
        display: none;
        left: 0;

        span {
            transform: rotate(-135deg);
        }
    }

    &.match_nav-next {
        display: none;
        right: 0;

        span {
            transform: rotate(45deg);
        }
    }
}

.match_schedule_link,
.standings_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 14px 72px;
    color: #ffffff;
    background: #009EB4;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
}

.match_schedule_link {
    margin: 31px auto 32px;
}

.match_box_right {
    color: #ffffff;
    background: url("../images/match_bg_right.webp");
    background-size: cover;
    background-position: center;
}

.standings_panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding: 27px 51px 33px;
}

.standings_title {
    font-family: "peckham-press", sans-serif;
    font-size: 28px;
}

.standings_subtitle {
    margin-top: 47px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
}

.standings_summary {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 25px;
}

.standings_rank {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #ffffff;

    .standings_rank-number {
        font-size: 63px;
        font-weight: 700;
    }

    .standings_rank-unit {
        font-size: 31px;
        font-weight: 700;
    }
}

.standings_record {
    display: inline-flex;
    border: 2px solid #ffffff;
    background: #ffffff;
    color: #000A44;
    overflow: hidden;

    .standings_record-main {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 10px 20px;

        span,
        .standings_points {
            display: flex;
            align-items: baseline;
            line-height: 1;
            font-size: 24px;
            font-weight: 700;
            margin-bottom:-15px;
        }

        strong {
            /* font-family: "peckham-press", sans-serif; */
            font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
            font-size: 40px;
            font-weight: 700;
        }
    }
}

.standings_points {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    background: url("../images/match_bg_right.webp");
    padding: 10px 20px;
    white-space: nowrap;
}

.standings_note {
    margin-top: 13px;
    font-size: 16px;
    font-weight: 700;
}

.standings_table_wrapper {
    width: 100%;
    max-width: 617px;
    max-height: 267px;
    margin-top: 20px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
    scrollbar-width: thin;
    scrollbar-color: #474747;

    &::-webkit-scrollbar {
        width: 9px;
    }

    &::-webkit-scrollbar-thumb {
        background: #474747;
    }
}

.standings_table {
    width: 100%;
    border-collapse: collapse;
    color: #000;
    font-size: 22px;

    thead th {
        padding: 13px 17px;
        color: #ffffff;
        background: #04003B;
        font-size: 21px;
        font-weight: 700;
        white-space: nowrap;
        position: sticky;
        top: 0;
    }

    tbody tr {
        &:nth-child(even) {
            background: #D3D3D3;
        }

        &.is-highlighted {
            color: #009EB4;
        }
    }

    td {
        padding: 15px;
        font-weight: 700;
        text-align: center;

        &:nth-child(2) {
            text-align: left;
        }
    }
}

.club-name {
    display: flex;
    align-items: center;
    gap: 12px;

    img {
        width: 22px;
        height: 24px;
        object-fit: contain;
    }
}

.club-badge {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, #8d6adf 0%, #5d3ac8 100%);
    flex: 0 0 auto;
}

.standings_link {
    margin-top: 41px;
}

.match_slider{
    margin-top:24px;
    overflow:hidden;
    
    &.slick-dotted.slick-slider {
        margin-bottom: 31px;
    }

    .slick-list {
        overflow: visible;
    }

    .prev_arrow {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background-color: #009eb4;
        z-index: 1;

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%) rotate(45deg);
            width: 16px;
            height: 16px;
            border-left: 3px solid #ffffff;
            border-bottom: 3px solid #ffffff;
        }
    }

    .next_arrow {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background-color: #009eb4;
        z-index: 1;

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%) rotate(-45deg);
            width: 16px;
            height: 16px;
            border-right: 3px solid #ffffff;
            border-bottom: 3px solid #ffffff;
        }
    }
    .match_card{
        margin:0 15px;
    }
}



/* ==========================================================================
   TICKET WRAPPER
   ========================================================================== */
.ticket_wrapper {
    position: relative !important;
    background-image: url("../images/ticket_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 912px;

    &::before {
        content: "" !important;
        position: absolute !important;
        top: -60px !important;
        left: 0 !important;
        width: 100% !important;
        height: 100px !important;
        background-image: url("../images/ticket_container_top.webp") !important;
        background-repeat: no-repeat !important;
        background-position: top center !important;
        background-size: 100% 60% !important;
        z-index: 99 !important;
        pointer-events: none !important;
    }

    .ticket_head {
        text-align: center;
        padding-top: 40px;
        color: #ffffff;
    }

    .ticket_title {
        font-family: "peckham-press", sans-serif;
        font-size: 50px;
    }

    .ticket_subtitle {
        margin-top: 20px;
        font-size: 18px;
        font-weight: 500;
    }
}

/* ==========================================================================
   OFFICIAL AND GUIDE WRAPPER
   ========================================================================== */
.official_and_guide_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    .official_content,
    .guide_content {
        padding: 77px 81px 80px;
        width: 50%;
    }

    .official_content {
        background:
            linear-gradient(rgba(21, 43, 92, 0.9), rgba(21, 43, 92, 0.9)),
            url("../images/official_bg.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .guide_content {
        background:
            linear-gradient(rgba(62, 206, 255, 0.4), rgba(62, 206, 255, 0.4)),
            url("../images/guide_bg.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;

        picture {
            display: block;
            width: 100%;
            margin: 0 auto;
        }

        .guide_head {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            height: auto;
        }
    }

    .official_head {
        text-align: center;
    }

    .official_title {
        font-family: "peckham-press", sans-serif;
        font-size: 40px;
        color: #ffffff;
    }

    .official_subtitle {
        margin-top: 20px;
        font-size: 21px;
        font-weight: 700;
        color: #ffffff;
    }

    .official_img_team {
        display: block;
        width: 100%;
        max-width: 374px;
        margin: 36px auto 0;
    }

    .official_img_sale {
        display: block;
        width: 100%;
        max-width: 550px;
        margin: 61px auto 0;
    }

    .guide_title {
        font-family: "peckham-press", sans-serif;
        font-size: 75px;
        color: #04003B;
    }

    .guide_subtitle {
        font-size: 22px;
        font-weight: 700;
        color: #04003B;
    }

    .guide_text {
        margin-top: 53px;
        font-size: 42px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        line-height: 1.5;
        text-shadow: 0px 0px 11px #020085;
    }

    .guide_link {
        margin: 0 auto;
        margin-top: 68px;
        padding: 15px 28px;
        width: max-content;
        background: #04003B;
        color: #ffffff;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 700;
    }
}

/* ==========================================================================
   MATCH PAGE HEADER
   ========================================================================== */
.match-page-header {
    background-color: #ffffff;
    width: 100%;

    .match-breadcrumb {
        background-color: #ffffff;
        border-bottom: 1px solid #d8deea;
        width: 100%;

        .match-breadcrumb-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 12px 106px 11px 106px;
            margin: 0 auto;
        }

        .match-breadcrumb-home,
        .match-breadcrumb-separator,
        .match-breadcrumb-current {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 10px;
            font-weight: 400;
            line-height: 1.2;
            color: #6D6D6D;
        }

        .match-breadcrumb-home {
            transition: color 0.2s ease;

            &:hover {
                color: #001B5B;
                text-decoration: underline;
            }
        }
    }

    .match-banner {
        background-color: #001B5B;
        height: 107px;
        width: 100%;
        box-sizing: border-box;

        .match-banner-inner {
            height: 100%;
            display: flex;
            align-items: center;
            gap: 31px;
            padding-top: 35px;
            padding-bottom: 35px;
            padding-left: 106px;
            margin: 0 auto;
        }

        .match-banner-title {
            font-family: "peckham-press", sans-serif;
            font-size: 36px;
            line-height: 1;
            font-weight: 400;
            color: #ffffff;
            margin: 0;
        }

        .match-banner-subtitle {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            color: #ffffff;
            margin-top: 14px;
        }
    }
}

/* ==========================================================================
   TEAM STAFF BOTTOM GRID
   ========================================================================== */
.team-staff-bottom-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 90px;
    margin-bottom: 110px;

    .team-staff-bottom-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 320px;

        .bottom-card-image {
            width: 320px;
            height: 180px;
            overflow: hidden;

            .placeholder-img {
                width: 100%;
                height: 100%;
                background-color: #5A5A5A;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-family: sans-serif;
                font-size: 22px;
                font-weight: 700;
            }
        }

        .bottom-card-title {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            margin: 0;
            text-align: left;
        }
    }
}

/* ==========================================================================
   TEAM STAFF NAVIGATION
   ========================================================================== */
.team-staff-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 110px;
    margin-bottom: 70px;

    .team-staff-nav-btn {
        width: 245px;
        height: 48px;
        border: none;
        background: linear-gradient(180deg, #009EB4 0%, #02879A 100%);
        color: #ffffff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 49px;
        cursor: pointer;
        transition: background-color 0.2s ease, opacity 0.2s ease;

        &:hover {
            background: linear-gradient(180deg, #02879A 0%, #009EB4 100%);
        }

        span {
            text-align: left;
            line-height: 1.2;
        }

        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: #ffffff;

            &::after {
                content: "";
                width: 6px;
                height: 6px;
                border-bottom: 2px solid #009EB4;
                border-right: 2px solid #009EB4;
                transform: rotate(45deg);
                margin-top: -3px;
            }
        }
    }
}

/* ==========================================================================
   TEAM STAFF CATEGORY TITLE
   ========================================================================== */
.team-staff-category-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 48px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    &::before {
        content: "";
        display: inline-block;
        width: 9px;
        height: 28px;
        background-color: #001B5B;
    }
}

/* ==========================================================================
   TOPTEAM WRAPPER
   ========================================================================== */
.topteam_wrapper {
    position: relative;
    background: url("../images/topteam_bg.webp");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 66px 0 100px;
    overflow: hidden;

    .topteam_head {
        text-align: center;
    }

    .topteam_title {
        font-family: "peckham-press", sans-serif;
        font-size: 54px;
        color: #04003B;
        line-height: 1;
    }

    .topteam_subtitle {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 700;
        color: #04003B;
    }

    .topteam_inner {
        position: relative;
        width: 100%;
        margin: 42px auto 0;
        padding: 0 40px;
    }

    .topteam_carousel {
        overflow: hidden;
    }

    .topteam_track {
        display: flex;
        gap: 41px;
        width: max-content;
        will-change: transform;
    }

    .topteam_card {
        flex: 0 0 290px;

        img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            box-shadow: 0 18px 28px rgba(4, 0, 59, 0.14);
        }
    }

    .topteam_nav {
        position: absolute;
        top: 44%;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: #AFAFAF;
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
        backdrop-filter: blur(3px);

        &:hover,
        &:focus-visible {
            background: #383636;
            transform: translateY(-50%) scale(1.03);
        }

        &:disabled {
            opacity: 0.35;
            cursor: default;

            &:hover,
            &:focus-visible {
                transform: translateY(-50%);
            }
        }

        span {
            display: block;
            width: 12px;
            height: 12px;
            border-top: 2px solid #ffffff;
            border-right: 2px solid #ffffff;
        }

        &.topteam_nav-prev {
            left: 0;

            span {
                transform: rotate(-135deg);
            }
        }

        &.topteam_nav-next {
            right: 0;

            span {
                transform: rotate(45deg);
            }
        }
    }

    .topteam_link {
        display: block;
        width: max-content;
        margin: 41px auto 0;
        padding: 11px 70px;
        color: #ffffff;
        background: #0096B2;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 600;
    }
}

/* ==========================================================================
   TEAM PAGE HEADER
   ========================================================================== */
.team-page-header {
    .match-banner {
        height: auto;
        min-height: 107px;

        .match-banner-inner {
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 6px;
            padding-top: 22px;
            padding-bottom: 22px;
        }

        .match-banner-subtitle {
            margin-top: 0;
            font-size: 14px;
        }
    }
}

/* ==========================================================================
   MATCH NAV GRID & TOUR SECTION (SHARED)
   ========================================================================== */
.match-nav-grid-section {
    margin-top: 168px;
    margin-bottom: 142px;
    padding-left: 106px;
    padding-right: 102px;
    width: 100%;
    box-sizing: border-box;
}

.match-grid-container {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 384px);
    justify-content: flex-start;
}

.match-grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.match-grid-box {
    width: 384px;
    height: 216px;
    background-color: #D9D9D9;
    padding-left: 71px;
    padding-right: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.match-grid-box-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

.match-grid-label {
    display: block;
    margin-top: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

/* =========================================================
   画像＋テキストのカラムカード（.match-grid-container を参考）
   .col-cards に .col-3 / .col-2 を付けて列数を切り替える。
   カード全体（.col-card）がリンク。ホバーで内側の画像が5%拡大。
   ========================================================= */
.col-cards {
    display: grid;
    gap: 40px;
    /* 参考(.match-grid-container)の総幅に合わせて上限を設定。
       コンテナが狭い場合は列が縮んで収まる（はみ出し防止） */
    max-width: 1232px;
    /* 固定ページに貼った際、前後の要素と自然に余白が取れるように */
    margin: 70px 0;
}

.col-cards.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.col-cards.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* カード（全体がリンク） */
.col-card {
    display: block;
    color: #000000;
    text-decoration: none;
}

/* 画像ラッパー（拡大時のはみ出しを隠す） */
.col-card-img {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #D9D9D9;
}

.col-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* ホバーで内側の画像を5%拡大 */
.col-card:hover .col-card-img img {
    transform: scale(1.05);
}

/* テキスト */
.col-card-text {
    margin-top: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
}

.match-tour-title {
    font-family: "peckham-press", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin-top: 102px;
    margin-bottom: 10px;
    color: #001B5B;
    text-align: center;
}

.match-tour-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 52px;
    color: #04003B;
    text-align: center;
}

.match-tour-banners-row {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.match-tour-banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-tour-banner-img {
    width: 500px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
}

.match-tour-banner-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

/* ==========================================================================
   SHARE SECTION
   ========================================================================== */
.share_section_container {
/*     max-width: 1440px; */
    width: 100%;
    height: 401px;
    background-color: #000B2B;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
}

.share_section_container .share_title_main {
    font-family: 'peckham-press', sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.share_section_container .share_subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.share_section_container .share_box_logos {
    width: 600px;
    height: 159px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.share_section_container .share_logo_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.share_section_container .share_logo_outer {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.share_section_container .share_logo_img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.share_section_container .share_logo_text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #001B5B;
    text-align: center;
}



.sp_br {
    display: none !important;
}

.match-page-header.no_border_bottom .match-breadcrumb {
    border-bottom: none !important;
}

.result_main_section {
    max-width: 1040px;
    width: 100%;
    margin: 32px auto 110px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;

    .result_tabs_container {
        width: 1040px;
        height: 56px;
        background: linear-gradient(90deg, #001B5B 0%, #00247B 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 32px;

        .result_tabs_inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 990px;
            box-sizing: border-box;
        }

        .tab_btn {
            width: 330px;
            height: 40px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-family: "Noto Sans JP", sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #FFFFFF;
            transition: all 0.2s ease;

            &.active {
                background: #FFFFFF;
                color: #001B5B;
                border-radius: 100px;
            }
        }

        .tab-color-white {
            opacity: 0.5;
        }
    }

    .result_banner_wrap {
        position: relative;
        width: 100%;
        height: 67px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;

        .result_watermark {
            position: absolute;
            top: 75%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'peckham-press', sans-serif;
            font-size: 89px;
            font-weight: 400;
            line-height: 0.8;
            color: #009EB426;
            white-space: nowrap;
            z-index: 1;
            pointer-events: none;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 3px;
        }

        .result_badge_banner {
            position: relative;
            z-index: 2;
            width: 420px;
            height: 67px;
            background: rgba(0, 27, 91, 1);
            color: #FFFFFF;
            font-family: "Noto Sans JP", sans-serif;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.3;
            clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
        }
    }

    .result_match_time_stadium {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 28px;
        line-height: 1.4;
        font-weight: 700;
        color: #001B5B;
        text-align: center;
        margin-bottom: 36px;
        display: flex;
        gap: 35px;
    }
    .result_score_board_container {
        width: 477px;
        height: 207px;
        display: flex;
        justify-content: center;
        gap: 24px;
        align-items: flex-start;
        box-sizing: border-box;

        .score_team_col {
            width: 160px;
            height: 207px;
            display: flex;
            flex-direction: column;
            align-items: center;

            .team_badge {
                width: 160px;
                padding: 5px 0;
                text-align: center;
                font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
                font-size: 12px;
                font-weight: 700;
                color: #FFFFFF;
                margin-bottom: 15px;

                &.match_result_badge_home {
                    background-color: #001B5B;
                }

                &.match_result_badge_away {
                    background-color: #FF0000;
                }
            }

            .team_logo_box {
                width: 120px;
                height: 120px;
                text-align: center;
                min-height: 120px;
                .team_crest_img {
                    max-width: 93px;
                    max-height: 120px;
                    object-fit: contain;
                    margin: 0 auto;
                }
            }

            .team_name_text {
                font-family: "Noto Sans JP", sans-serif;
                font-size: 12px;
                line-height: 1.4;
                font-weight: 400;
                color: #000000;
                text-align: center;
                margin-bottom: 8px;
                margin-top: 10px;
            }

            .team_scorers_info {
                font-family: "Noto Sans JP", sans-serif;
                font-size: 12px;
                line-height: 1.4;
                font-weight: 400;
                color: #000000;
                text-align: center;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .score_min_highlight {
                font-weight: 900;
                color: #EF8354;
            }
        }

        .score_middle_col {
            flex: 1;
            height: 165px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;

            .score_numbers_display {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;

                .large_score_num {
                    font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
                    font-size: 60px;
                    font-weight: 700;
                    color: #000000;
                    line-height: 1;
                }

                .periods_score_list {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 2px;

                    .period_score_item {
                        font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
                        font-size: 16px;
                        font-weight: 700;
                        color: #000000;
                        line-height: 1.2;
                    }
                }
            }

            .score_vs_label {
                font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
                font-size: 20px;
                font-weight: 700;
                color: #000000;
                margin-top: 12px;
            }
        }
    }

    .match_stats_section {
        max-width: 1040px;
        width: 100%;
        margin: 60px auto 24px auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;

        .stats_title {
            font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #001B5B;
            text-align: center;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .stats_divider {
            width: 20px;
            height: 2px;
            background-color: #001B5B;
            margin: 0 auto 20px auto;
        }

        .stats_list_container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stats_row_item {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 40px;
            background: rgba(0, 158, 180, 0.15);
            box-sizing: border-box;

            .stats_number {
                font-family: 'din-condensed-bold', 'DIN Condensed', sans-serif;
                font-size: 17px;
                font-weight: 700;
                color: #000000;

                &.left_val {
                    flex: 1;
                    text-align: right;
                    padding-right: 32px;
                }

                &.right_val {
                    flex: 1;
                    text-align: left;
                    padding-left: 32px;
                }
            }

            .stats_label_badge {
                width: 136px;
                height: 24px;
                background: #FFFFFF;
                color: rgba(0, 27, 91, 1);
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 700;
                font-size: 17px;
                line-height: 1.4;
                display: flex;
                align-items: center;
                justify-content: center;
                clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
                flex-shrink: 0;
            }
        }
    }
}

@media (max-width: 768px) {

    /* Merged from block */
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    body{
        padding-top:93px;
    }

    .header_area {
        background: none;

        &.hide{
            transform:translateY(-93px);
        }
    }

    .header_top {
        height: 53px;
        background-color: #001b5b;
        border-bottom: 2px solid #009eb4;
    }

    .header_top_wrap {
        .left {
            display: none;
        }

        .center {
            position: static;
            top: auto;
            left: auto;
            transform: none;
            padding-left: 14px;

            img {
                width: 26px;
            }
        }

        .right {
            gap: 15px;
            padding-right: 15px;

            img {
                height: 28px;
            }
        }

        .header_hamburger {
            position: relative;
            width: 20px;
            height: 16px;
            margin-left: 3px;

            .open{
                display:block;
                height:100%;
                position:relative;
            }
            .close{
                display:none;
            }
            &.active{
                height: auto;

                .open{
                    display:none;
                }
                .close{
                    display:block;

                    img{
                        width:14px;
                        height:auto;
                        margin:0 auto;
                    }
                    p{
                        margin-top:5px;
                        font-size:7px;
                        white-space:nowrap;
                        color:#ffffff;
                    }
                }
            }
            span {
                position: absolute;
                left: 0;
                width: 100%;
                height: 3px;
                background-color: #ffffff;
                border-radius: 10px;

                &.top {
                    top: 0;
                }

                &.center {
                    top: 50%;
                    transform: translateY(-50%);
                }

                &.bottom {
                    bottom: 0;
                }
            }
        }
    }

    .header_bottom_mobile {
        background-color:#ffffff;
        overflow: hidden;
    }

    .header_bottom_wrap_mobile {
        display: flex;
        overflow: auto;
        /* 背景を .header_top と同じ紺色に */
        background-color: #001b5b;

        &::-webkit-scrollbar{
            width:5px;
            height:5px;
        }
        &::-webkit-scrollbar-thumb{
            background:#7b7a7a;
            border-radius:100px;
        }
        &::-webkit-scrollbar-track{
            background:#d9d9d9;
            border-radius:100px;
        }
        a {
            padding: 10px 13px;
            font-family: "Noto Sans JP", sans-serif;
            font-size: 10px;
            font-weight: bold;
            white-space: nowrap;
            /* 紺背景に合わせてリンクを白に */
            color: #ffffff;
            /* 区切り線は紺背景でも見えるよう半透明の白に */
            border-right: 1px solid rgba(255, 255, 255, 0.25);

            &last-child {
                border: none;
            }
        }
    }

    .header_detail_nav {
        display: none;
        position: absolute;
        top: 112px;
        left: 0;
        right: 0;
        overflow: hidden;
        z-index: 1000;

        &.active {
            display: block;
        }

        &:before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background-color: rgba(0, 27, 91, 0.9);
            -webkit-filter: blur(5px);
            -moz-filter: blur(5px);
            -o-filter: blur(5px);
            -ms-filter: blur(5px);
            filter: blur(5px);
            z-index: -1;
        }
    }

    .header_detail_wrap {
        display: grid;
        grid-template-columns: 362px 1fr;
        max-width: 1300px;
        margin: 0 auto;
        padding: 70px 0 94px;

        .title {
            .en {
                margin-bottom: 5px;
                font-family: "peckham-press", sans-serif;
                font-size: 40px;
                color: #ffffff;
            }

            .jp {
                font-size: 16px;
                color: #ffffff;
            }
        }

        .container {
            display: grid;
            gap: 42px;

            .row {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                align-items: flex-end;
                gap: 66px;

                .box {
                    .name {
                        font-size: 14px;
                        font-weight: bold;
                        color: #ffffff;
                        padding-bottom: 12px;
                        border-bottom: 1px solid #ffffff;

                        &.blank {
                            background: url('../images/common/target_blank_icon.png') center right 8px / 12px no-repeat;
                        }
                    }

                    .img {
                        height: 119px;
                        margin-top: 20px;
                        overflow: hidden;

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

    /* Merged from block */
    /* BANNER MOBILE */
    .banner_wrapper {
        .banner_img {
            padding-top: 0;

            img {
                width: 100%;
            }
        }

        .banner_slideshow {
            height: 108px;

            &::before,
            &::after {
                width: 36px;
            }

            .banner_slideshow-viewport {
                padding: 14px 0;
                animation-duration: 28s;
            }

            .banner_slideshow-track {
                gap: 8px;
                padding-right: 8px;
            }
        }

        .banner_slide {
            width: 158px;
            height: 76px;
        }
    }

    /*---------- header > モバイルナビゲーション ----------*/
    body{
        &.hidden{
            overflow:hidden;
        }
    }
    .header_nav_sp_area{
        display:none;
        position:fixed;
        top:53px;
        right:0;
        bottom:0;
        left:0;
        padding:20px;
        background-color:#001b5b;
        overflow:auto;

        &.active{
            display:block;
        }
    }
    .header_nav_sp_list{
        .box{
            .title{
                padding:18px 0;
                font-family:"peckham-press", sans-serif;
                font-size:16px;
                line-height:100%;
                color:#ffffff;
                border-bottom:1px solid #ffffff;

                &.more{
                    position:relative;

                    &:before{
                        content:'';
                        position:absolute;
                        top:50%;
                        right:0;
                        transform:translateY(-50%);
                        width:20px;
                        height:2px;
                        background-color:#ffffff;
                    }
                    &:not(&.active){
                        &:after{
                            content:'';
                            position:absolute;
                            top:50%;
                            right:9px;
                            transform:translateY(-50%);
                            width:2px;
                            height:20px;
                            background-color:#ffffff;
                        }
                    }
                }
            }
            ul{
                display:none;
                margin:0;
                padding:0 0 0 16px;

                &.active{
                    display:block;
                }
                li{
                    padding:13px 0;
                    list-style:none;
                    border-bottom:1px solid rgba(255, 255, 255, 0.5);

                    a{
                        display:block;
                        padding-right:12px;
                        font-size:14px;
                        color:#ffffff;

                        &.blank{
                            background:url("../images/common/header_sp_other_link.png") center right / 12px no-repeat;
                        }
                    }
                }
            }
        }
    }
    .header_nav_sp_container{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:8px;
        margin-top:32px;

        a{
            display:flex;
            justify-content:center;
            align-items:center;
            padding:10px 0;
            background-color:#009eb4;

            img{
                width:auto;
                height:44px;
            }
        }
    }

    /* ===== 旧フッターCSS（v1 / SP）— 新フッター(v2)へ置き換えのためコメントアウト ここから ↓↓↓ ===== */
    /*
    .footer_desktop,
    .footer_legal {
        display: none;
    }

    .footer_mobile {
        display: block;
    }

    .footer_top {
        min-height: 52px;
        font-size: 14px;
    }

    .footer_main {
        padding: 0;
    }

    .footer_mobile_menu {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .footer_mobile_section,
    .footer_mobile_link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .footer_mobile_section summary {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 14px;
        list-style: none;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    .footer_mobile_section summary::-webkit-details-marker {
        display: none;
    }

    .footer_mobile_section summary::after {
        content: "+";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 6px;
        background: #ffffff;
        color: #092a68;
        font-size: 20px;
        font-weight: 800;
        line-height: 1;
    }

    .footer_mobile_section[open] summary::after {
        content: "−";
    }

    .footer_mobile_panel {
        display: grid;
        gap: 8px;
        padding: 0 14px 14px;
    }

    .footer_mobile_panel a {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        font-size: 12px;
        line-height: 1.4;
        text-decoration: none;
    }

    .footer_mobile_link {
        display: block;
        padding: 16px 14px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    .footer_mobile_meta {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        padding: 30px 15px 24px;
    }

    .footer_mobile_shortcuts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer_mobile_shortcut_title {
        font-size: 14px;
        font-weight: 800;
        color: #ffffff;
    }

    .footer_mobile_schedule_links {
        display: flex;
        gap: 14px;
        margin-top: 14px;
    }

    .footer_mobile_shortcut {
        display: grid;
        justify-items: center;
        gap: 6px;
        color: #ffffff;
        text-align: center;
        font-size: 8px;
        font-weight: 700;
        line-height: 1.35;
    }

    .footer_mobile_shortcut svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .footer_mobile_socials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
    }

    .footer_social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 6px;
        background: #ffffff;
        color: #092a68;
    }

    .footer_social span {
        font-weight: 800;
        line-height: 1;
    }

    .footer_social-x span,
    .footer_social-facebook span,
    .footer_social-tiktok span {
        font-size: 21px;
    }

    .footer_social-instagram span {
        font-size: 21px;
        transform: translateY(-1px);
    }

    .footer_social-line span {
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .footer_logo-mobile {
        margin-top: 34px;
    }

    .footer_logo-mobile img {
        width: 114px;
    }
    */
    /* ===== 旧フッターCSS（v1 / SP）ここまで ↑↑↑ ===== */

    /* MATCH MOBILE */
    .match_wrapper {
        grid-template-columns: 1fr;
    }
    .match_tab {
        height: 54px;
        font-size: 17px;
    }

    .match_cards_wrapper {
        --card-width: min(280px, calc(100vw - 116px));
        --card-gap: 12px;
        width: 100%;
        margin-top: 18px;
    }

    .match_cards_viewport {
        padding: 14px 0 22px;
    }

    .match_card-head {
        padding: 6px 45px;
        font-size: 12px;
        box-sizing: border-box;
    }

    .match_card-head {
        padding: 6px 6px !important;
        font-size: 8px !important;
    }

    .match_card{
        .match_card-body{
            padding:15px;
        }
    }

    .match_date {
        gap: 4px;

        .match_date-main {
            font-size: 45px;
        }

        .match_date-sub {
            font-size: 20px;
        }
    }

    .match_teams {
        gap: 10px;
    }

    .match_crest {
        width: 48px;
    }

    .match_opponent-logo {
        width: 46px;
    }

    .match_vs {
        font-size: 46px;
    }

    .match_meta {
        gap: 6px;
        margin-bottom: 14px;
    }

    .match_actions {
        gap: 0;
    }

    .match_home_badge {
        min-width: 38px;
        font-size: 10px;
    }

    .match_venue {
        font-size: 12px;
    }

    .match_button {
        min-height: 30px;
        font-size: 10px;
    }

    .match_nav {
        width: 30px;
        height: 30px;

        &.match_nav-prev {
            left: 0;
            transform: translate(-20%, -50%);
        }

        &.match_nav-next {
            right: 0;
            transform: translate(20%, -50%);
        }
    }

    .match_schedule_link,
    .standings_link {
        font-size: 15px;
        padding: 10px 50px;
    }

    .standings_panel {
        padding: 26px 30px;
    }

    .standings_title {
        font-size: 25px;
    }

    .standings_subtitle {
        margin-top: 18px;
        font-size: 14px;
    }

    .standings_summary {
        justify-content: center;
        gap: 8px;
    }

    .standings_rank {
        display: flex;
        align-items: baseline;
        gap: 2px;
        color: #ffffff;
        margin-top:0;
    
        .standings_rank-number {
            font-size: 42px;
        }
    
        .standings_rank-unit {
            font-size: 18px;
        }
    }

    .standings_record {
        border-width: 2px;

        .standings_record-main {
            gap: 10px;
            padding: 7px 12px 8px;

            span,
            .standings_points {
                font-size: 14px;
            }

            strong {
                font-size: 22px;
            }
        }
    }

    .standings_points {
        border-left-width: 2px;
        padding: 7px 12px 8px;
    }

    .standings_table_wrapper {
        max-width: none;
        max-height: 170px;
    }

    .standings_table {
        height: 143px;
        font-size: 12px;

        thead th {
            padding: 9px 6px;
            font-size: 11px;
        }

        td {
            padding: 9px 6px;
        }
    }

    /* TICKET MOBILE */
    .ticket_wrapper {
        background-image: url("../images/ticket_bg_sp.webp");
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        min-height: 313px;

        &::before {
            height: 40px !important;
            top: -22px !important;
        }

        .ticket_head {
            padding-top: 20px;
        }

        .ticket_title {
            font-family: "peckham-press", sans-serif;
            font-size: 26px;
        }

        .ticket_subtitle {
            margin-top: 20px;
            font-size: 11px;
        }
    }

    /* OFFICIAL AND GUIDE MOBILE */
    .official_and_guide_wrapper {
        flex-direction: column;

        .official_content,
        .guide_content {
            padding: 38px 22px 60px;
            width: 100%;
        }

        .official_content {
            background:
                linear-gradient(rgba(21, 43, 92, 0.9), rgba(21, 43, 92, 0.9)),
                url("../images/official_bg_sp.webp");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .guide_content {
            background:
                linear-gradient(rgba(62, 206, 255, 0.4), rgba(62, 206, 255, 0.4)),
                url("../images/guide_bg_sp.webp");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;

            .guide_head {
                position: absolute;
                top: 28%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                height: auto;
            }
        }

        .official_title {
            font-size: 22px;
        }

        .official_subtitle {
            margin-top: 10px;
            font-size: 12px;
        }

        .official_img_team {
            display: block;
            width: 100%;
            max-width: 212px;
            margin: 44px auto 0;
        }

        .official_img_sale {
            display: block;
            width: 100%;
            margin: 43px auto 0;
        }

        .guide_title {
            font-size: 41px;
        }

        .guide_subtitle {
            margin-top: 17px;
            font-size: 12px;
        }

        .guide_text {
            margin-top: 29px;
            font-size: 25px;
            font-weight: 700;
        }

        .guide_link {
            margin: 0 auto;
            margin-top: 25px;
            padding: 10px 18px;
            width: max-content;
            background: #04003B;
            color: #ffffff;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
        }
    }

    /* MATCH PAGE HEADER MOBILE */
    .match-page-header {
        .match-breadcrumb {
            .match-breadcrumb-inner {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 11px 19px 10px 19px;
                margin: 0 auto;
            }
        }

        .match-banner {
            height: auto;

            .match-banner-inner {
                padding: 12px 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
            }

            .match-banner-title {
                font-size: 24px;
            }

            .match-banner-subtitle {
                font-size: 10px;
                margin-top: 5px;
            }
        }
    }

    /* TEAM STAFF BOTTOM GRID MOBILE */
    .team-staff-bottom-grid {
        display: grid;
        grid-template-columns: repeat(2, 168px);
        justify-content: center;
        column-gap: 16px;
        row-gap: 16px;
        margin-top: 40px;
        margin-bottom: 60px;

        .team-staff-bottom-card {
            width: 168px;
            gap: 10px;
            display: flex;
            flex-direction: column;

            .bottom-card-image {
                width: 168px;
                height: 95px;
                aspect-ratio: auto;

                .placeholder-img {
                    font-size: 14px;
                    font-weight: 500;
                }
            }

            .bottom-card-title {
                font-size: 14px;
            }
        }
    }

    /* TEAM STAFF NAV MOBILE */
    .team-staff-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 15px;
        margin-bottom: 30px;
        padding: 0;

        .team-staff-nav-btn {
            width: 100%;
            height: 48px;
            padding: 12px 16px;
            font-size: 12px;

            .btn-icon {
                width: 14px;
                height: 14px;

                &::after {
                    width: 5px;
                    height: 5px;
                    margin-top: -2px;
                }
            }
        }

        .team-staff-nav-3 {
            padding: 10px 16px;
        }
    }

    /* TEAM STAFF CATEGORY TITLE MOBILE */
    .team-staff-category-title {
        font-size: 18px;
        margin-bottom: 21px;
        gap: 20px;
        line-height: 1.77;

        &::before {
            width: 3px;
            height: 32px;
        }
    }

    /* TEAM PAGE HEADER MOBILE */
    .team-page-header {
        .match-banner {
            min-height: 80px;

            .match-banner-inner {
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 15px;
                padding-bottom: 15px;
            }

            .match-banner-subtitle {
                font-size: 10px;
            }
        }
    }

    /* MATCH NAV GRID & TOUR MOBILE (SHARED) */
    .match-nav-grid-section {
        padding: 0 20px;
        margin-top: 74px;
        margin-bottom: 80px;
    }

    .match-grid-container {
        grid-template-columns: repeat(2, 169px);
        gap: 14px 15px;
        justify-content: center;
    }

    .match-grid-box {
        width: 169px;
        height: 95px;
        padding-left: 0;
        padding-right: 0;
    }

    .match-grid-box-text {
        display: none;
    }

    .match-grid-label {
        font-size: 14px;
        margin-top: 10px;
    }

    /* 画像＋テキストのカラムカード（SP：3カラム・2カラムとも2列） */
    .col-cards {
        margin: 40px 0;
    }

    .col-cards.col-3,
    .col-cards.col-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 15px;
        justify-content: center;
    }

    .col-card-text {
        margin-top: 10px;
        font-size: 14px;
    }

    .match-tour-title {
        margin-top: 52px;
        font-size: 24px;
    }

    .match-tour-subtitle {
        font-size: 12px;
        margin-bottom: 24px;
        font-weight: bold;
    }

    .match-tour-banners-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .match-tour-banner-img {
        width: 100%;
        max-width: 352px;
        height: auto;
        aspect-ratio: 500 / 80;
        margin-bottom: 0;
    }

    .match-tour-banner-label {
        display: none !important;
    }

    .result_main_section {
        margin-bottom: 60px;
        margin-top: 20px;

        .result_tabs_container {
            width: 100% !important;
            max-width: 100% !important;
            height: 56px !important;
            margin-bottom: 20px;

            .result_tabs_inner {
                max-width: 100% !important;
                justify-content: center;
            }

            .tab_btn {
                width: 33% !important;
                max-width: 117px !important;
                font-size: 14px !important;
                text-align: center !important;
                line-height: 1 !important;
            }
        }

        .result_banner_wrap {
            height: 51px !important;

            .result_watermark {
                font-size: 64px !important;
                line-height: 0.8 !important;
                white-space: normal !important;
                width: 100% !important;
                letter-spacing: 0;
                overflow: hidden;
                top: 102%;
            }

            .result_badge_banner {
                width: 287px !important;
                height: 51px !important;
                font-size: 14px !important;
                clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%) !important;
            }
        }

        .result_match_time_stadium {
            font-size: 14px !important;
            margin-bottom: 20px !important;
			flex-direction: column;
            gap: 4px;
        }

        .result_score_board_container {
            width: 100% !important;
            height: 165px !important;
            padding: 0 20px;
            gap: 26px;

            .score_team_col {
                width: 100px !important;
                height: auto !important;

                .team_badge {
                    width: 100px !important;
                    height: 20px;
                    font-size: 11px;
                }

                .team_logo_box {
                    width: 62px !important;
                    height: 80px !important;

                    .team_crest_img {
                        max-width: 62px !important;
                        max-height: 80px !important;
                    }
                }

                .team_name_text,
                .team_scorers_info {
                    font-size: 12px !important;
                    margin-bottom: 8px;
                }
            }

            .score_middle_col {
                .score_numbers_display {
                    gap: 16px;

                    .large_score_num {
                        font-size: 40 !important;
                    }

                    .periods_score_list {
                        .period_score_item {
                            font-size: 12px !important;
                        }
                    }
                }

                .score_vs_label {
                    font-size: 14px !important;
                    margin-top: 12px !important;
                }
            }
        }

        .match_stats_section {
            max-width: 353px !important;
            margin: 32px 0 40px 0 !important;

            .stats_title {
                font-size: 20px;
            }

            .stats_list_container {
                gap: 6px !important;
            }

            .stats_row_item {
                height: 26px !important;

                .stats_number {
                    font-size: 14px !important;
                }

                .stats_label_badge {
                    width: 136px !important;
                    height: 17px !important;
                    font-size: 12px !important;
                    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%) !important;
                }
            }
        }
    }

    .share_section_container {
        width: 100% !important;
        height: 225px !important;

        padding: 40px 20px 20px 20px !important;
    }

    .share_section_container .share_title_main {
        font-size: 26px !important;
    }

    .share_section_container .share_subtitle {
        font-size: 10px !important;
        margin-bottom: 20px !important;
    }

    .share_section_container .share_box_logos {
        width: 100% !important;
        height: 100px !important;
        padding: 0 20px !important;
        gap: 20px !important;
    }

    .share_section_container .share_logo_outer {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
    }

    .share_section_container .share_logo_img {
        width: 29px !important;
        height: 29px !important;
    }

    .share_section_container .share_logo_text {
        font-size: 12px !important;
    }
}

/* ============================================================================
   ▼▼▼ 新フッター（v2 / Figmaデザイン準拠）ここから ▼▼▼
   対応HTML: footer.php / メニュー登録: functions.php(footer_pc_nav, footer_bottom_nav)
   ※ この下から末尾までが新フッター用CSS
   ============================================================================ */
.site_footer {
    background: #001b5b;
    color: #ffffff;
}

.footer_inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 32px;
}

/* ロゴ */
.footer_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.footer_logo_crest {
    width: 76px;
    height: auto;
}

.footer_logo_word {
    width: 151px;
    height: auto;
}

/* ===== PC：3カラムアコーディオンナビ ===== */
/* 3カラムのGrid。各行の高さはその行で一番高いセクションに揃う（row-major） */
.footer_nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 61px;
    row-gap: 16px;
    align-items: start;
    margin-top: 40px;
}

.footer_nav_group {
    width: 100%;
}

/* 見出し（ボタン or リンク） */
.footer_nav_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 52px;
    padding: 20px 0;
    background: none;
    border: 0;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-family: "peckham-press", sans-serif;
    font-size: 16px;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.footer_nav_title {
    display: block;
}

/* 開閉トグル（＋ / 開いたら −） */
.footer_nav_toggle {
    position: relative;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer_nav_toggle::before,
.footer_nav_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.footer_nav_toggle::before {
    width: 14px;
    height: 1.5px;
}

.footer_nav_toggle::after {
    width: 1.5px;
    height: 14px;
}

/* 開いている時は縦線を消して「−」に */
.footer_nav_group.is-open .footer_nav_toggle::after {
    display: none;
}

/* 子リンク（デフォルト閉じる） */
.footer_nav_sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_nav_group.is-open .footer_nav_sub {
    display: block;
}

.footer_nav_sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer_nav_sub a:hover {
    opacity: 0.6;
}

/* 別タブ（外部）リンクには ↗ を表示 */
.footer_nav_sub a[target="_blank"]::after {
    content: "↗";
    flex-shrink: 0;
    font-size: 13px;
}

/* ===== SP：MENUボタン（PCは非表示） ===== */
.footer_menu_btn {
    display: none;
}

/* ===== ユーティリティボタン（4つ） ===== */
.footer_utility {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.footer_utility_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 81px;
    background: #009eb4;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer_utility_btn:hover {
    opacity: 0.85;
}

/* NAYBee（ロゴ画像＋小テキストの縦並び） */
.footer_utility_btn:first-child {
    flex-direction: column;
    gap: 4px;
}

.footer_utility_naybee {
    width: auto;
    height: 32px;
}

.footer_utility_icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer_utility_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.footer_utility_btn:first-child .footer_utility_text {
    font-size: 11px;
}

/* 別タブ（外部）には ↗ を付与 */
.footer_utility_text.is-blank::after {
    content: "↗";
}

/* ===== SNS ===== */
.footer_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 32px;
}

/* 各SNSは56px枠に中央寄せ（アイコンごとの余白差を吸収して大きさを揃える） */
.footer_sns_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transition: opacity 0.2s ease;
}

.footer_sns_link:hover {
    opacity: 0.7;
}

.footer_sns_link img {
    display: block;
    width: 56px;
    height: 56px;
}

/* LINEは図柄に余白が無く大きく見えるため、枠内で縮小して他と揃える */
.footer_sns_link-line img {
    width: 41px;
    height: 41px;
}

/* ===== 下部リンク ===== */
.footer_bottom {
    margin-top: 40px;
}

.footer_bottom_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_bottom_list li {
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.footer_bottom_list li:last-child {
    border-right: 0;
}

.footer_bottom_list a {
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer_bottom_list a:hover {
    opacity: 0.6;
}

/* ===== コピーライト ===== */
.footer_copyright {
    margin-top: 60px;
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

/* ===== SP（〜768px） ===== */
@media (max-width: 768px) {
    .footer_inner {
        padding: 32px 20px;
    }

    .footer_logo {
        gap: 18px;
    }

    .footer_logo_crest {
        width: 92px;
    }

    .footer_logo_word {
        width: 168px;
    }

    /* PCナビは非表示、MENUボタンを表示 */
    .footer_nav {
        display: none;
    }

    .footer_menu_btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        margin-top: 28px;
        padding: 0 24px;
        background: #ffffff;
        color: #001b5b;
        font-family: "peckham-press", sans-serif;
        font-size: 24px;
        font-style: italic;
        font-weight: 700;
        text-decoration: none;
    }

    .footer_menu_btn_icon svg {
        display: block;
        width: 24px;
        height: 24px;
    }

    /* ユーティリティボタン：2×2 */
    .footer_utility {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 24px;
    }

    .footer_utility_btn {
        flex: 0 0 calc(50% - 7.5px);
        height: 72px;
    }

    /* SP：NAYBeeロゴはボタン高さ(72px)に収まるサイズに調整 */
    .footer_utility_naybee {
        height: 28px;
    }

    /* SNS：横一列（折り返さない） */
    .footer_sns {
        flex-wrap: nowrap;
        gap: 12px;
        margin-top: 28px;
    }

    .footer_sns_link {
        width: 40px;
        height: 40px;
    }

    .footer_sns_link img {
        width: 40px;
        height: 40px;
    }

    .footer_sns_link-line img {
        width: 29px;
        height: 29px;
    }

    /* 下部リンク（2行に折り返し） */
    .footer_bottom {
        margin-top: 28px;
    }

    .footer_bottom_list {
        row-gap: 12px;
    }

    .footer_bottom_list li {
        padding: 0 12px;
    }

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

    .footer_copyright {
        margin-top: 32px;
    }
}
/* ============================================================================
   ▲▲▲ 新フッター（v2）ここまで ▲▲▲
   ============================================================================ */