.sp_br {
    display: none !important;
}

.pc_br {
    display: inline !important;
}

.match_guide_mv {
    width: 100%;
    display: flex;
    flex-direction: column;

    .mv_banner {
        width: 100%;

        img {
            width: 100%;
            height: auto;
            aspect-ratio: 1440 / 600;
            display: block;
        }
    }

    .mv_sub {
        --slide-width: 370px;
        --slide-gap: 12px;
        width: 100%;
        /* max-width: 1440px; */
        height: 256px;
        overflow: hidden;
        background-color: #009EB4;
        border-top: 19.5px solid #009EB4;
        border-bottom: 19.5px solid #009EB4;
        position: relative;
        box-sizing: border-box;

        &:hover .mv_sub_slider_track {
            animation-play-state: paused;
        }

        .mv_sub_slider_track {
            display: flex;
            width: max-content;
            height: 100%;
            align-items: center;
            gap: var(--slide-gap);
            animation: mvSubScroll 25s linear infinite;
        }

        .mv_sub_slide {
            width: var(--slide-width);
            height: 100%;
            overflow: hidden;
            transform: skewX(-20deg);
            box-sizing: border-box;
            background-color: #009EB4;
        }

        .mv_sub_slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: skewX(20deg) scale(1.15);
            display: block;
        }
    }
}

@keyframes mvSubScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-4 * (var(--slide-width) + var(--slide-gap))));
    }
}


.contents_guide_header_sec {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 40px;

    .contents_guide_badge {
        background-color: #001B5B;
        color: #ffffff;
        font-family: "DIN Condensed", sans-serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0em;
        text-align: center;
        width: 235.35px;
        height: 62px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-top:10px;
        clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
    }
}

.contents_guide_prematch_sec,
.contents_guide_matchday_sec {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1036px;
    margin-left: auto;
    margin-right: auto;

    .section_title_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
        max-width: 1036px;
        padding: 0 20px;
        margin-bottom: 40px;
        overflow: hidden;

        .title_line {
            width: 455px;
            height: 15px;
            object-fit: contain;
            flex-shrink: 1;
        }

        .section_title_jp {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: #001B5B;
            line-height: 1;
            white-space: nowrap;
        }
    }

    .buttons_grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 24px;
        column-gap: 40px;
        width: 100%;
        padding: 0 20px;

        &.grid_2 {
            max-width: 1036px;
        }

        &.grid_4 {
            max-width: 1036px;
        }

        .guide_btn {
            width: 320px;
            height: 72px;
            background: linear-gradient(90deg, #009EB4 0%, #02879A 100%);
            color: #ffffff;
            font-family: "Noto Sans JP", sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            border-radius: 0px;
            text-decoration: none;
            transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

            &:hover {
                opacity: 0.9;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 158, 180, 0.3);
            }

            .btn_text {
                flex-grow: 1;
                text-align: left;
            }

            .btn_icon {
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;

                svg {
                    width: 24px;
                    height: 24px;
                    display: block;
                }
            }
        }
    }
}


.guide-section {
    padding: 80px 0;

    &.bg-light {
        background-color: #F8F9FA;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;

        .section-tag {
            font-family: "peckham-press", sans-serif;
            font-size: 24px;
            color: #009EB4;
            display: block;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #001B5B;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;

            &::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 4px;
                background-color: #009EB4;
                border-radius: 2px;
            }
        }
    }
}


.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        background-color: #E2E8F0;
        transform: translateX(-50%);
    }

    .timeline-item {
        margin-bottom: 60px;
        position: relative;
        width: 50%;
        padding-right: 40px;
        box-sizing: border-box;

        &:nth-child(even) {
            left: 50%;
            padding-right: 0;
            padding-left: 40px;

            .timeline-dot {
                left: -10px;
            }

            .timeline-content {
                &::before {
                    left: -15px;
                    border-width: 10px 15px 10px 0;
                    border-color: transparent #ffffff transparent transparent;
                }
            }
        }

        .timeline-dot {
            position: absolute;
            right: -10px;
            top: 25px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #009EB4;
            border: 4px solid #ffffff;
            box-shadow: 0 0 0 4px rgba(0, 158, 180, 0.2);
            z-index: 2;
            transition: all 0.3s ease;
        }

        &:hover .timeline-dot {
            background-color: #FFF600;
            box-shadow: 0 0 0 6px rgba(255, 246, 0, 0.4);
            transform: scale(1.2);
        }

        .timeline-content {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &::before {
                content: "";
                position: absolute;
                top: 25px;
                right: -15px;
                border-style: solid;
                border-width: 10px 0 10px 15px;
                border-color: transparent transparent transparent #ffffff;
            }

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            }

            .time-tag {
                font-family: "din-condensed-bold", sans-serif;
                font-size: 28px;
                color: #009EB4;
                font-weight: bold;
                display: block;
                margin-bottom: 10px;
            }

            .title {
                font-size: 20px;
                font-weight: 700;
                color: #001B5B;
                margin-bottom: 12px;
            }

            .desc {
                font-size: 15px;
                color: #4A5568;
                line-height: 1.6;
            }
        }
    }
}


.stadium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    .seat-card {
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid #E2E8F0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        &:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .seat-img-wrap {
            position: relative;
            height: 200px;
            background-color: #001B5B;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.85;
            }

            .seat-badge {
                position: absolute;
                top: 15px;
                left: 15px;
                padding: 6px 12px;
                border-radius: 6px;
                font-size: 13px;
                font-weight: bold;
                color: #ffffff;
                text-transform: uppercase;
                letter-spacing: 0.05em;

                &.main {
                    background-color: #001B5B;
                }

                &.back {
                    background-color: #009EB4;
                }

                &.goal {
                    background-color: #E53E3E;
                }
            }
        }

        .seat-info {
            padding: 25px;

            .title {
                font-size: 20px;
                font-weight: 700;
                color: #001B5B;
                margin-bottom: 12px;
            }

            .features {
                list-style: none;
                padding: 0;
                margin: 0 0 20px 0;

                li {
                    font-size: 14px;
                    color: #4A5568;
                    margin-bottom: 8px;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    &::before {
                        content: "✓";
                        color: #009EB4;
                        font-weight: bold;
                    }
                }
            }

            .price-info {
                border-top: 1px solid #EDF2F7;
                padding-top: 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .label {
                    font-size: 13px;
                    color: #718096;
                }

                .val {
                    font-size: 18px;
                    font-weight: 700;
                    color: #001B5B;
                }
            }
        }
    }
}


.gear-row {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;

    .gear-left {
        flex: 1;

        .gear-title {
            font-size: 28px;
            font-weight: 700;
            color: #001B5B;
            margin-bottom: 20px;
        }

        .gear-desc {
            font-size: 16px;
            color: #4A5568;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .gear-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;

            .gear-item {
                background: #ffffff;
                padding: 20px;
                border-radius: 12px;
                border: 1px solid #E2E8F0;
                display: flex;
                align-items: center;
                gap: 15px;
                transition: border-color 0.3s;

                &:hover {
                    border-color: #009EB4;
                }

                .gear-icon {
                    width: 48px;
                    height: 48px;
                    background: rgba(0, 158, 180, 0.1);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 24px;
                }

                .name {
                    font-weight: 700;
                    color: #001B5B;
                    font-size: 15px;
                }
            }
        }
    }

    .gear-right {
        flex: 1;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

        img {
            width: 100%;
            height: auto;
            display: block;
        }
    }
}


.manners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    .manner-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid #EDF2F7;
        transition: transform 0.3s, box-shadow 0.3s;

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-color: #E53E3E;

            .manner-status {
                background: #E53E3E;
                color: #ffffff;
            }
        }

        .manner-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .title {
            font-size: 16px;
            font-weight: 700;
            color: #001B5B;
            margin-bottom: 10px;
        }

        .desc {
            font-size: 13px;
            color: #718096;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .manner-status {
            display: inline-block;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: bold;
            border-radius: 4px;
            background: rgba(229, 62, 62, 0.1);
            color: #E53E3E;
            transition: all 0.3s;
        }
    }
}

.guide_detail_section {
    width: 100%;
    /* max-width: 1440px; */
    margin: 0 auto 80px auto;
    background-image: url('/wp-content/themes/custom/assets/images/bg_layout.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    padding-top: 15px;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background-image: url('/wp-content/themes/custom/assets/images/match_guide/match_guide_bg_top.webp');
        background-repeat: repeat;
        background-size: 70% auto;
        z-index: 0;
        pointer-events: none;
    }

    .detail_header {
        width: 100%;
        height: 96px;
        background: #FFFFFFCC;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-top: 48px;
        z-index: 1;

        .detail_header_title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .title_jp {
                font-family: "Noto Sans JP", sans-serif;
                font-size: 36px;
                font-weight: 700;
                color: #001B5B;
                line-height: 1;
                margin-bottom: 4px;
            }

            .title_en {
                font-family: "DIN Condensed", sans-serif;
                font-size: 16px;
                font-weight: 700;
                color: #009EB4;
                line-height: 1;
                text-transform: uppercase;
            }
        }
    }

    .detail_body {
        position: relative;
        padding: 60px 20px 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 1;
        overflow: hidden;

        .bg_watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'peckham-press', sans-serif;
            font-size: 96px;
            font-weight: 400;
            line-height: 0.8;
            color: #009EB426;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: -1;
            pointer-events: none;

            &.bg_watermark-multiline {
                /* white-space: normal; */
                text-align: center;
            }

            &.bg_watermark-next-match {
                top: 50%;
                width: 100%;
            }

            &.bg_watermark-ticket {
                top: 35%;
            }

            &.bg_watermark-player {
                top: 34%;
            }

            &.bg_watermark-schedule {
                top: 46%;
            }

            &.bg_watermark-stadium-events {
                top: 37%;
            }

            &.bg_watermark-stadium-gourmet {
                top: 36%;
            }

            &.bg_watermark-goods-shop {
                top: 36%;
            }

            &.bg_watermark-stadium_access {
                top: 36%;
            }
        }

        .detail_badge_wrap {
            margin-bottom: 16px;

            .detail_badge {
                width: 300px;
                height: 62px;
                background-color: #001B5B;
                color: #ffffff;
                font-family: "Noto Sans JP", sans-serif;
                font-size: 22px;
                font-weight: 700;
                padding: 12px 14px;
                display: inline-block;
                clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
            }
        }

        .detail_desc {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #001B5B;
            line-height: 1.4;
            margin-bottom: 16px;
        }
    }


    .match_wrapper.match_next_match_only {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        background:initial !important;

        .match_box_left {
            background-image: none !important;
            background-color: transparent !important;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            display: block !important;
        }

        .match_cards_wrapper {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 !important;
            position: relative !important;
            margin: 0;
        }

        .match_nav-prev {
            left: 0 !important;
            z-index: 10 !important;
        }

        .match_nav-next {
            right: 0 !important;
            z-index: 10 !important;
        }

        .match_cards_viewport {
            max-width: 100% !important;
            width: 100% !important;
            overflow: hidden !important;
        }
    }


    .ticket_area_section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;

        .line_divider {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 64px;
            margin-bottom: 64px;

            img {
                max-width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        .detail_body {
            padding-top: 0;
            padding-bottom: 40px;
            width: 100%;
        }

        .detail_badge {
            width: 343px !important;
        }

        .stadium_map_wrap {
            max-width: 100%;
            text-align: center;

            img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }

            p {
                font-family: 'Noto Sans JP', sans-serif;
                font-size: 14px;
                font-weight: 700;
                color: #001B5B;
                margin-top: 20px;
                text-align: center;
                margin-bottom: 48px;
            }
        }
    }
}


.player-other-section {
    position: relative !important;
    background-image: none !important;
    background-color: transparent !important;
    height: auto !important;
    padding: 0 0 48px 0 !important;
    z-index: 1;
}

.player-other-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background-image: url('/wp-content/themes/custom/assets/images/match_guide/match-guide-top_team_player.webp'), linear-gradient(90deg, #04003B 0%, #00A0B6 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom 0, center;
    background-size: 100% auto, cover;
    z-index: -1;
    pointer-events: none;
}

.bg_watermark_players {
    display: none !important;
}

.player-other-section .topteam_inner {
    padding: 0 !important;
    margin: 0;
}

.player-other-section .topteam_nav-prev {
    left: 0px !important;
}

.player-other-section .topteam_nav-next {
    right: 0px !important;
}

.topteam_link.btn-information {
    margin-top: 48px !important;
    width: 360px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail_badge_players {
    width: 498px !important;
    height: 62px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 30px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.player-other-section .other-card {
    width: 290px !important;
    height: 413px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 8px 24px rgba(0, 27, 91, 0.08) !important;
    text-decoration: none !important;
}

.player-other-section .other-card-media {
    width: 290px !important;
    height: 300px !important;
    overflow: hidden !important;
    position: relative !important;
}

.player-other-section .other-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    box-shadow: none !important;
}

.player-other-section .other-card-content {
    background: #ffffff !important;
    padding: 20px 16px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    position: relative !important;
    height: 113px !important;
}

.player-other-section .other-card-name-kanji {
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #04003B !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.2 !important;
}

.player-other-section .other-card-name-romaji {
    font-family: 'peckham-press', sans-serif !important;
    font-size: 11px !important;
    color: #001B5B !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

.player-other-section .other-card-btn {
    position: absolute !important;
    right: 16px !important;
    bottom: 20px !important;
    border: 1px solid #001B5B !important;
    border-radius: 99px !important;
    font-family: "Noto Sans JP", sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #001B5B !important;
    padding: 4px 12px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    background: transparent !important;
}


.guide_detail_section_matchday {
    margin-top: 138px !important;
    /* background-color: #D5F3F8 !important; */
    background-color: #FFFFFF !important;

}

.guide_detail_section_matchday .line_divider {
    margin: 64px auto !important;
    max-width: 1326px;
    width: 100%;
    text-align: center;
}

.guide_detail_section_matchday .line_divider img {
    max-width: 100%;
    height: auto;
}

.detail_desc-stadium-events_sub {
    margin-bottom: 16px;
}

.detail_badge-wide {
    width: 409px !important;
}

.detail_badge-stadium {
    width: 255px !important;
}

.detail_badge-good_shop {
    width: 212px !important;
}

.detail_badge-stadium_access {
    width: 254px !important;
}

.schedule_container {
    width: 100%;
    max-width: 1040px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule_item {
    width: 100%;
    margin-bottom: 24px;
}

.schedule_item:last-child {
    margin-bottom: 0;
}

.schedule_row_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 84px;
    background: linear-gradient(90deg, #001B5B 0%, #00247B 100%);
    padding: 24px 40px;
    box-sizing: border-box;
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    margin: 0;
}

.schedule_left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.schedule_badge_time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 155px;
    height: 38px;
    background-color: #ffffff;
    color: #001B5B;
    border-radius: 45px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    padding: 8px 16px;
}

.schedule_text_event {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.schedule_toggle_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;

    .line {
        width: 16px;
        height: 2px;
        background-color: #ffffff;
        display: block;
    }
}

.schedule_content_block {
    margin-top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule_image {
    width: 1040px;
    height: 585px;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.schedule_desc_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    margin-top: 24px;
    text-align: left;
    width: 100%;
}

.stadium_carousel_wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 585px;
    margin: 32px auto 0 auto;
    overflow: visible;
}

.stadium_carousel_viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.stadium_carousel_track {
    display: flex;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stadium_carousel_card {
    width: 780px;
    height: 585px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.stadium_carousel_card img {
    width: 640px;
    height: 480px;
    object-fit: cover;
    opacity: 0.2;
    box-sizing: border-box;
    border: none;
    transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1),
        height 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stadium_carousel_card.is-active img {
    width: 780px;
    height: 585px;
    opacity: 1;
    border: 6px solid;
    border-image: linear-gradient(90deg, #04003B 0%, #00A0B6 100%) 1;
}

.stadium_carousel_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background-color: #00A0B6;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.stadium_carousel_nav:hover {
    background-color: #00879B;
}

.stadium_carousel_nav svg {
    display: block;
}

.stadium_nav-prev {
    left: calc(50% - 465px - 32px);
}

.stadium_nav-next {
    right: calc(50% - 465px - 32px);
}

.stadium_content_wrap {
    max-width: 1040px;
    margin: 24px auto 0 auto;
    text-align: center;
}

.stadium_event_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 16px;
    text-align: center;
}

.stadium_event_desc {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    text-align: left;
    margin-bottom: 32px;
}

.stadium_pagination {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    width: 120px;
    height: 24px;
}

.stadium_dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.stadium_dot.is-active {
    background-color: #00A0B6;
}

.stadium_btn_wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.stadium_btn-info {
    width: 360px !important;
    height: 58px !important;
    margin: 0 auto !important;
}

/* Goods Shop Section Styles */
.goods_shop_desc {
    max-width: 1040px;
    width: 100%;
    margin: 24px auto 32px auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    text-align: left;
    box-sizing: border-box;
}

.goods_shop_main_image {
    display: flex;
    justify-content: center;
    margin: 0 auto 48px auto;
    max-width: 1040px;
    width: 100%;
}

.goods_shop_main_image img {
    width: 100%;
    height: auto;
    max-width: 1040px;
    object-fit: cover;
    display: block;
}

.goods_shop_sub_banner {
    --slide-width: 390px;
    --slide-gap: 14px;
    width: 100%;
    /* max-width: 1440px; */
    height: 256px;
    overflow: hidden;
    background-color: #009EB4;
    border-top: 19.5px solid #009EB4;
    border-bottom: 19.5px solid #009EB4;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 48px auto;
}

.goods_shop_sub_banner:hover .goods_shop_slider_track {
    animation-play-state: paused;
}

.goods_shop_slider_track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    gap: var(--slide-gap);
    animation: goodsShopScroll 20s linear infinite;
}

.goods_shop_slide {
    width: var(--slide-width);
    height: 100%;
    overflow: hidden;
    transform: skewX(-20deg);
    box-sizing: border-box;
    background-color: #009EB4;
}

.goods_shop_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(20deg) scale(1.15);
    display: block;
}

@keyframes goodsShopScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-3 * (var(--slide-width) + var(--slide-gap))));
    }
}

/* Stadium Access Section Styles */
.stadium_access_image {
    display: flex;
    justify-content: center;
    margin: 32px auto 40px auto;
    max-width: 1040px;
    width: 100%;
}

.stadium_access_image img {
    width: 100%;
    height: auto;
    max-width: 1040px;
    display: block;
}

.stadium_access_buttons {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto 80px auto;
    box-sizing: border-box;
}

.access_grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
    row-gap: 24px;
    column-gap: 40px;
    margin-bottom: 24px;
}

.access_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    height: 84px;
    background: linear-gradient(90deg, #009EB4 0%, #02879A 100%);
    padding: 20px 24px;
    box-sizing: border-box;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.access_btn:hover {
    opacity: 0.9;
}

.access_btn span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: left;
}

.access_btn_large_wrap {
    display: flex;
    justify-content: center;
}

.access_btn_large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 840px;
    height: 65px;
    background: linear-gradient(90deg, #009EB4 0%, #02879A 100%);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.access_btn_large:hover {
    opacity: 0.9;
}

.access_btn_large span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #ffffff;
    text-align: center;
}

/* Car Warning Section Styles */
.car_warning_section {
    max-width: 1040px;
    width: 100%;
    margin: 40px auto 0 auto;
    box-sizing: border-box;
}

.car_warning_header {
    background-color: #001B5B;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: 63px;
}

.car_warning_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.car_warning_icon {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    flex-shrink: 0;
}

.car_warning_content {
    background-color: #ECECEC;
    padding: 32px 40px;
    box-sizing: border-box;
}

.car_warning_content p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 24px 0;
    text-align: left;
}

.car_warning_content p:last-child {
    margin-bottom: 0;
}

.car_warning_content a {
    color: #000000;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.car_warning_content a:hover {
    opacity: 0.7;
}

.car_warning_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 67px;
    width: 100%;
}

.car_warning_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 840px;
    height: 65px;
    background: linear-gradient(90deg, #009EB4 0%, #02879A 100%);
    padding: 20px 24px;
    box-sizing: border-box;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.car_warning_btn:hover {
    opacity: 0.9;
}

.car_warning_btn span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
}

.match_area{
    position: relative;
    overflow: hidden;
}
.match_wrap{
    max-width: 1161px;
    margin: 0 auto;
}
.match_slider{
    .slick-list {
        overflow: visible;
    }

    .prev_arrow {
        position: absolute;
        top: 50%;
        left: -13.5vw;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background-color: #afafaf;
        z-index: 10;

        &: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: -13.5vw;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background-color: #afafaf;
        z-index: 10;

        &: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;
    }
    .match_card-head{
        padding:11px 0;
    }
}

.stadium_carousel_area{
    padding-top:48px;
    overflow:hidden;
}
.stadium_carousel_wrap{
    max-width:780px;
    margin:0 auto;
}
.stadium_carousel_slider{
    position: relative;
    /* overflow: hidden; */
    z-index: 10;

    &.slick-dotted.slick-slider{
        margin-bottom:24px;
    }
    .slick-list{
		overflow:visible;
	}
    .box{
        position: relative;
        margin:0;
        
        .img {
            position: relative;
            padding:8px;
            background:linear-gradient(to right, #04003b, #00a0b6);
            transform: scale(0.8);
            transition:0.3s;

            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                transition: 0.3s;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.6);
                opacity: 1;
                z-index:1;
                transition:0.3s;
            }
    
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        &.slick-active{
            .img{
                transform: scale(1);

                &:before {
                    opacity: 0;
                }
                img{
                    /* transform: scale(1); */
                }
            }
        }
    }
    .prev_arrow {
        position: absolute;
        top: 50%;
        left: -100px;
        transform: translateY(-50%);
        width: 64px;
        height: 64px;
        background-color: #009eb4;
        z-index: 1;

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 24px;
            transform: translateY(-50%) rotate(45deg);
            width: 24px;
            height: 24px;
            border-left: 3px solid #ffffff;
            border-bottom: 3px solid #ffffff;
        }
    }

    .next_arrow {
        position: absolute;
        top: 50%;
        right: -100px;
        transform: translateY(-50%);
        width: 64px;
        height: 64px;
        background-color: #009eb4;
        z-index: 1;

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            right: 24px;
            transform: translateY(-50%) rotate(-45deg);
            width: 24px;
            height: 24px;
            border-right: 3px solid #ffffff;
            border-bottom: 3px solid #ffffff;
        }
    }
}


@media (max-width: 768px) {
    .container_1440 {
        /* padding: 0 20px !important; */
        box-sizing: border-box !important;
    }

    .match-guide-banner {
        height: 250px;
        padding-left: 20px;
        padding-right: 20px;

        .banner-text-wrap {
            .banner-tag {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .banner-title {
                font-size: 32px;
            }

            .banner-desc {
                font-size: 14px;
            }
        }

        .banner-bg {
            width: 80%;
        }
    }

    .guide-section {
        padding: 50px 0;

        .section-header {
            margin-bottom: 40px;

            .section-tag {
                font-size: 18px;
            }

            .section-title {
                font-size: 24px;
            }
        }
    }


    .timeline-container {
        padding: 0 15px;

        &::before {
            left: 20px;
        }

        .timeline-item {
            width: 100%;
            padding-right: 0;
            padding-left: 45px;
            margin-bottom: 40px;

            &:nth-child(even) {
                left: 0;
                padding-left: 45px;

                .timeline-dot {
                    left: 10px;
                }

                .timeline-content {
                    &::before {
                        left: -15px;
                        border-width: 10px 15px 10px 0;
                        border-color: transparent #ffffff transparent transparent;
                    }
                }
            }

            .timeline-dot {
                left: 10px;
                right: auto;
            }

            .timeline-content {
                padding: 20px;

                &::before {
                    left: -15px;
                    right: auto;
                    border-width: 10px 15px 10px 0;
                    border-color: transparent #ffffff transparent transparent;
                }

                .time-tag {
                    font-size: 22px;
                }

                .title {
                    font-size: 17px;
                }

                .desc {
                    font-size: 14px;
                }
            }
        }
    }


    .stadium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .gear-row {
        flex-direction: column;
        gap: 30px;

        .gear-left {
            .gear-title {
                font-size: 22px;
                text-align: center;
            }

            .gear-desc {
                font-size: 14px;
                text-align: center;
            }

            .gear-list {
                grid-template-columns: 1fr;
            }
        }

        .gear-right {
            order: -1;
        }
    }


    .manners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

        .manner-card {
            padding: 20px 15px;

            .manner-icon {
                font-size: 32px;
            }

            .title {
                font-size: 14px;
            }

            .desc {
                font-size: 12px;
            }
        }
    }


    .contents_guide_header_sec {
        margin-top: 30px;
        margin-bottom: 30px;

        .contents_guide_badge {
            font-size: 20px;
            height: 34px;
            width: 136px;
            padding: 10px 8px;
            clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
        }
    }

    .contents_guide_prematch_sec,
    .contents_guide_matchday_sec {
        margin-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;

        .section_title_wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 25px;
            width: 100%;

            .title_line {
                flex: 1 1 auto;
                max-width: 120px;
                min-width: 20px;
                width: auto;
                height: 10px;
                object-fit: cover;
            }

            .section_title_jp {
                font-size: 18px;
                white-space: nowrap;
            }
        }

        .buttons_grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 13px 10px !important;
            width: 100%;
            justify-content: center;
            box-sizing: border-box;
            padding: 0 !important;

            .guide_btn {
                width: 100% !important;
                max-width: 100% !important;
                height: 48px !important;
                font-size: 12px !important;
                padding: 0 12px !important;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                justify-content: space-between;

                .btn_text {
                    font-size: 12px !important;
                    line-height: 1.2;
                }

                .btn_icon {
                    width: 20px !important;
                    height: 20px !important;

                    svg {
                        width: 16px !important;
                        height: 16px !important;
                    }
                }
            }
        }
    }


    .guide_detail_section {
        margin-bottom: 0;

        .detail_header {
            height: 74px;
            margin-top: 32px;
            margin-bottom: 25px;

            .detail_header_title {
                min-width: 180px;
                padding: 8px 20px;

                .title_jp {
                    font-size: 22px;
                }

                .title_en {
                    margin-top: 2px;
                    font-size: 12px;
                }
            }
        }

        .detail_body {
            padding: 14px 20px 32px !important;
            /* margin-top: 32px; */



            .detail_badge_wrap {
                margin-bottom: 16px;

                .detail_badge {
                    font-size: 14px;
                    width: 214px;
                    height: 34px;
                    padding: 8px;
                    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
                }
            }

            .detail_desc {
                font-size: 14px;
                margin-bottom: 16px;
            }
        }


        .player-other-section .other-card {
            flex: 0 0 211px !important;
            width: 211px !important;
            height: 300px !important;
            box-shadow: 0 4px 16px rgba(0, 27, 91, 0.06) !important;
            border-radius: 12px !important;
            overflow: hidden !important;
        }

        .player-other-section .other-card-media {
            width: 211px !important;
            height: 218px !important;
            overflow: hidden !important;
        }

        .player-other-section .other-card-img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .player-other-section .other-card-content {
            width: 211px !important;
            height: 82px !important;
            padding: 10px 10px 0 10px !important;
            box-sizing: border-box !important;
            flex: none !important;
        }

        .player-other-section .other-card-name-kanji {
            font-size: 18px !important;
            margin-bottom: 4px !important;
        }

        .player-other-section .other-card-name-romaji {
            font-size: 10px !important;
        }

        .player-other-section .other-card-btn {
            right: 10px !important;
            bottom: 10px !important;
            padding: 3px 8px !important;
            font-size: 8px !important;
            position: absolute !important;
        }

        .player-other-section {
            padding: 0 0 40px 0 !important;
        }

        .player-other-section::before {
            bottom: 0 !important;
            height: 260px !important;
            background-size: 290% auto, cover !important;
            background-position: center bottom 0, center !important;
        }

        .detail_badge_players {
            width: 200px !important;
            max-width: 200px !important;
            height: 51px !important;
            min-height: 51px !important;
            padding: 8px 15px !important;
            white-space: normal !important;
            text-align: center !important;
            font-size: 11px !important;
            line-height: 1.3 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .players_area_section .detail_desc {
            font-size: 14px !important;
            line-height: 1.4 !important;
        }

        .topteam_track-guide {
            gap: 24px !important;
        }

        .topteam_link.btn-information {
            margin-top: 32px !important;
            width: 240px !important;
            height: 41px !important;
            padding: 0 !important;
            font-size: 13px !important;

            a {
                font-size: 13px !important;
            }
        }


        .detail_badge-wide {
            width: 256px !important;
            max-width: 256px !important;
            height: 34px !important;
            min-height: 34px !important;
            padding: 8px 10px !important;
            white-space: nowrap !important;
            text-align: center !important;
            font-size: 14px !important;
            line-height: 1.2 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .detail_badge-stadium {
            width: 144px !important;
            max-width: 144px !important;
            height: 34px !important;
            min-height: 34px !important;
            padding: 8px 10px !important;
            white-space: nowrap !important;
            text-align: center !important;
            font-size: 14px !important;
            line-height: 1 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .schedule_row_wrap {
            height: 56px !important;
            padding: 12px 16px !important;
            margin: 0 auto !important;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
        }

        .schedule_left {
            gap: 8px !important;
            flex-wrap: wrap !important;
        }

        .schedule_badge_time {
            width: 102px !important;
            height: 20px !important;
            font-size: 10px !important;
        }

        .schedule_text_event {
            font-size: 16px !important;
        }

        .schedule_toggle_icon {
            width: 16px !important;
            height: 16px !important;

            .line {
                width: 12px !important;
            }
        }

        .schedule_container {
            margin-top: 0 !important;
            padding: 0 20px;
        }

        .schedule_item {
            margin-bottom: 24px !important;
        }

        .schedule_content_block {
            margin-top: 24px !important;
        }

        .schedule_image {
            width: 100% !important;
            height: auto !important;
            aspect-ratio: 1040 / 585 !important;
        }

        .schedule_desc_text {
            font-size: 11px !important;
            line-height: 1.4 !important;
            margin-top: 16px !important;
        }

        /* Mobile Stadium Events Carousel overrides */
        .stadium_carousel_wrapper {
            height: 200px !important;
            margin-top: 0 !important;
        }

        .stadium_carousel_track {
            gap: 16px !important;
        }

        .stadium_carousel_card {
            width: 227px !important;
            height: 200px !important;
        }

        .stadium_carousel_card img {
            width: 227px !important;
            height: 170px !important;
            opacity: 0.2 !important;
            border: 6px solid;
            border-image: linear-gradient(90deg, #04003B 0%, #00A0B6 100%) 1;
        }

        .stadium_carousel_card.is-active img {
            width: 267px !important;
            height: 200px !important;
            opacity: 1 !important;
            border: 6px solid !important;
            border-image: linear-gradient(90deg, #04003B 0%, #00A0B6 100%) 1 !important;
        }

        .stadium_carousel_nav {
            width: 24px !important;
            height: 24px !important;
        }

        .stadium_carousel_nav svg {
            width: 6px !important;
            height: auto !important;
        }

        .stadium_nav-prev {
            left: calc(50% - 133.5px - 12px) !important;
        }

        .stadium_nav-next {
            right: calc(50% - 133.5px - 12px) !important;
        }

        .stadium_content_wrap {
            padding: 0 20px !important;
        }

        .stadium_event_title {
            font-size: 12px !important;
            line-height: 1.4 !important;
            font-weight: 700 !important;
            color: #000000 !important;
            margin-bottom: 8px;
        }

        .stadium_event_desc {
            font-size: 11px !important;
            line-height: 1.6 !important;
            font-weight: 500 !important;
            color: #000000 !important;
            margin-bottom: 24px !important;
        }

        .stadium_pagination {
            gap: 12px !important;
            width: auto !important;
            height: 16px !important;
            margin-top: 24px !important;
        }

        .stadium_dot {
            width: 16px !important;
            height: 16px !important;
        }

        .stadium_btn_wrap {
            margin-top: 32px !important;
        }

        .stadium_btn-info {
            width: 240px !important;
            max-width: 240px !important;
            height: 41px !important;
            font-size: 13px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .detail_badge-good_shop {
            width: 130px !important;
            max-width: 130px !important;
            height: 34px !important;
            min-height: 34px !important;
            font-size: 14px !important;
            padding: 0 10px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: 1 !important;
        }

        .detail_badge-stadium_access {
            width: 157px !important;
            max-width: 157px !important;
            height: 34px !important;
            min-height: 34px !important;
            font-size: 14px !important;
            padding: 0 10px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            line-height: 1 !important;
        }

        /* Goods Shop Section Mobile Overrides */
        .goods_shop_desc {
            font-size: 11px !important;
            padding: 0 20px !important;
            margin: 0 auto 24px auto !important;
        }

        .goods_shop_main_image {
            margin-bottom: 32px !important;
            padding: 0 20px !important;
        }

        /* Stadium Access Mobile Overrides */
        .stadium_access_image {
            margin: 20px auto !important;
            padding: 0 20px !important;
        }

        .stadium_access_buttons {
            padding: 0 20px !important;
            margin-bottom: 32px !important;
        }

        .access_grid {
            grid-template-columns: repeat(2, 1fr) !important;
            row-gap: 8px !important;
            column-gap: 8px !important;
            margin-bottom: 8px !important;
        }

        .access_btn {
            width: 100% !important;
            height: 72px !important;
            min-height: 64px !important;
            padding: 12.5px 12px !important;
            display: flex !important;
            align-items: center !important;
        }

        .access_btn span {
            font-size: 11px !important;
            line-height: 1.2 !important;
        }

        .access_btn_large {
            width: 100% !important;
            height: 50px !important;
            min-height: 50px !important;
            padding: 14px 20px !important;
        }

        .access_btn_large span {
            font-size: 16px !important;
        }

        .car_warning_section {
            padding: 0 20px !important;
            margin-top: 32px !important;
        }

        .car_warning_header {
            padding: 12px 16px !important;
        }

        .car_warning_title {
            font-size: 16px !important;
        }

        .car_warning_content {
            padding: 20px 16px !important;
        }

        .car_warning_content p {
            font-size: 11px !important;
            letter-spacing: -0.3px;
        }

        .car_warning_content .car_warning_content_p1 {
            margin-bottom: 40px;
        }

        .car_warning_buttons {
            padding: 0 20px !important;
            margin-top: 32px !important;
            margin-bottom: 44px !important;
            gap: 12px !important;
        }

        .car_warning_btn {
            width: 100% !important;
            height: auto !important;
            min-height: 54px !important;
            padding: 12px 16px !important;
        }

        .car_warning_btn span {
            font-size: 16px !important;
        }

        .match_wrapper.match_next_match_only {
            min-height: auto !important;

            .match_card {
                max-width: 200px !important;
            }

            .match_button_149 {
                width: 81px !important;
                height: 24px !important;
                padding: 4px !important;
            }

            .match_tabs {
                display: none !important;
            }

            .match_schedule_link {
                margin-top: 28px !important;
                max-width: 210px !important;
                width: 210px !important;
                font-size: 13px !important;
                height: 36px !important;

                .pc-text {
                    display: none !important;
                }

                .sp-text {
                    display: inline !important;
                }
            }

            .match_nav-prev {
                left: 10px !important;
            }

            .match_nav-next {
                right: 10px !important;
            }

            .match_box_left {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }
        }

        .ticket_area_section .line_divider {
            margin-top: 40px !important;
            margin-bottom: 40px !important;
            height: 10px !important;
            width: 364px !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .ticket_area_section .line_divider img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .ticket_area_section .stadium_map_wrap {
            padding: 0 20px !important;

            p {
                font-size: 8px !important;
                margin-top: 8px;
            }
        }

        .match_schedule_link {
            margin-bottom: 0 !important;
            width: 240px;
            height: 41px;
            font-size: 13px;
            margin-top: 32px;
        }

        .sp_br {
            display: inline !important;
        }

        .pc_br {
            display: none !important;
        }

        .bg_watermark {
            font-size: 56px !important;
            line-height: 0.8 !important;
            color: #009EB426 !important;
            /* white-space: normal !important; */
        }

        .bg_watermark-player {
            font-size: 64px !important;
        }

        .bg_watermark-schedule {
            font-size: 64px !important;
        }

        .bg_watermark-stadium-events {
            font-size: 64px !important;
        }

        .bg_watermark-stadium-gourmet {
            font-size: 64px !important;
            top: 34% !important;
        }

        .bg_watermark-goods-shop {
            font-size: 66px !important;
        }

        .bg_watermark-stadium_access {
            font-size: 66px !important;
            line-height: 0.8;
        }
    }

    .match_guide_mv .mv_banner img {
        height: 480px !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
    }

    .mv_sub {
        --slide-width: 175px !important;
        --slide-gap: 6px !important;
        height: 106px !important;
        border-top: 8px solid #009EB4 !important;
        border-bottom: 8px solid #009EB4 !important;
        padding: 0 20px !important;
    }

    .goods_shop_sub_banner {
        --slide-width: 185px !important;
        --slide-gap: 6px !important;
        height: 106px !important;
        border-top: 8px solid #009EB4 !important;
        border-bottom: 8px solid #009EB4 !important;
        margin-bottom: 24px !important;
        padding: 0 20px !important;
    }

    .match_cards_wrapper {
        --card-width: min(280px, calc(100vw - 116px)) !important;
        --card-gap: 12px !important;
        width: 100% !important;
        margin-top: 18px !important;
    }

    .match_cards_viewport {
        padding: 14px 0 22px !important;
    }

    .match_card-head {
        height: 22px !important;
        padding: 6px 45px !important;
        font-size: 7px !important;
    }

    .match_card-body {
        min-height: 230px !important;
        padding: 10px 10px 14px !important;
    }

    .match_date {
        gap: 4px !important;
    }

    .match_date-main {
        font-size: 48px !important;
    }

    .match_date-sub {
        font-size: 15px !important;
    }

    .match_teams {
        gap: 10px !important;
        margin-bottom: 18px;
    }

    .match_crest {
        width: 43px !important;
    }

    .match_vs {
        font-size: 37px !important;
    }

    .match_meta {
        gap: 6px !important;
        margin-bottom: 38px !important;
    }

    .match_home_badge {
        font-family: "DIN Condensed", sans-serif;
        min-width: 38px !important;
        width: 41px;
        font-size: 8px !important;
        height: 12px;
        padding: 2px 0;
    }

    .match_venue {
        font-size: 9px !important;
    }

    .match_button {
        min-height: 23px !important;
        font-size: 7px !important;
        padding: 3px 3px 4px;
    }

    .match_nav {
        width: 30px !important;
        height: 30px !important;
    }

    .match_nav-prev {
        left: 0 !important;
        transform: translate(-20%, -50%) !important;
    }

    .match_nav-next {
        right: 0 !important;
        transform: translate(20%, -50%) !important;
    }

    .guide_detail_section_matchday {
        margin-top: 0 !important;
    }

    .guide_detail_section_matchday .line_divider {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        height: 10px !important;
        width: 364px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .guide_detail_section_matchday .line_divider img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .stadium_carousel_area{
        padding-top:32px;
    }
    .stadium_carousel_slider{
        &.slick-dotted.slick-slider{
            margin-bottom:24px;
        }
        .box{
            /* margin:0 15px; */
            
            .img {
                padding:6px;
            }
        }
        .prev_arrow {
            left: 20px;
            width: 24px;
            height: 24px;
            
            &:before {
                left: 8px;
                width: 8px;
                height: 8px;
            }
        }
    
        .next_arrow {
            right: 20px;
            width: 24px;
            height: 24px;
            
            &:before {
                right: 8px;
                width: 8px;
                height: 8px;
            }
        }
    }
}