@charset "UTF-8";

/* ====================================
   PC/SP 表示切替
==================================== */
.pc-only {
    display: block;
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

/* ====================================
   Hero
==================================== */
.hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: #1a2a3a;
}

/* 左右分割背景 */
.hero-bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-left {
    left: 0;
    background: url('../img/top/fv_img01.png') no-repeat center center;
    background-size: 120%;
    background-position: left 80%;
}

.hero-bg-right {
    right: 0;
    background: url('../img/top/fv_img02.png') no-repeat center 52%;
    background-size: 140%;
}

/* Hero開始アニメーション */
@keyframes heroFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes heroTitleFadeIn {
    0% { opacity: 0; filter: blur(8px); }
    100% { opacity: 1; filter: blur(0); }
}

@keyframes heroSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

/* 花火＆ロゴ グリッド */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    gap: 2.5rem;
}

/* 花火ドット */
.hero-fireworks-dots {
    width: 200px;
    height: 200px;
    will-change: opacity, filter, transform;
}

/* タイトルラップ */
.hero-title-wrap {
    text-align: center;
    color: #fff;
}

.hero-year {
    font-size: 18px;
    letter-spacing: 0.3em;
    margin-bottom: 5px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.6s forwards;
}

.hero-title {
    margin: 0;
    opacity: 0;
    animation: heroTitleFadeIn 1.2s ease 0.8s forwards;
}

.hero-title img {
    width: 300px;
    height: auto;
}

.hero-date {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0;
    animation: heroSlideUp 1s ease 1.1s forwards;
}

.hero-date-year {
    font-size: 20px;
    letter-spacing: 0.1em;
}

.hero-date-day {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: bold;
    line-height: 1;
}

.hero-date-week {
    font-size: 20px;
    font-style: italic;
}

.hero-time {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 15px;
    opacity: 0;
    animation: heroFadeIn 1s ease 1.3s forwards;
}

.hero-place {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 5px;
    opacity: 0;
    animation: heroFadeIn 1s ease 1.4s forwards;
}

/* 縦書きキャッチコピー */
.hero-catch {
    position: absolute;
    right: 23vw;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 18px;
    letter-spacing: 0.3em;
    line-height: 2;
    color: #fff;
    opacity: 0;
    animation: heroFadeIn 1.2s ease 1.5s forwards;
}

/* イベント概要 in hero */
.outline_wrapper {
    position: absolute;
    color: #fff;
    max-width: 750px;
    bottom: 40px;
    text-align: center;
}
.outline_wrapper p{
    font-size: 14px;
    text-align: justify;
}
.outline_wrapper p.event_outline {
    background: #325078;
    display: inline-block;
    border-radius: 50px;
    padding: 5px 30px 6px;
    font-size: 18px;
    margin-bottom: 20px;
}
.outline_wrapper p.event_outline span{
    font-size: 14px;
}
.outline_wrapper p.event_outline span.number{
    font-size: 20px;
    padding: 0 0.15rem;
}
@media screen and (max-width: 1100px) {
    .outline_wrapper p{
        margin: 0 2rem 0
    }
}
/* チケットボタン（固定） */
.btn_wrap.hero-btn {
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: 20;
    margin-top: 0;
}

.btn_wrap.hero-btn .btn {
    width: auto;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #325078;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    gap: 15px;
}

.btn_wrap.hero-btn .btn:hover {
    background: #fff;
    padding-right: 40px;
}

.btn_wrap.hero-btn .btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn_wrap.hero-btn .btn:hover i {
    transform: translateX(5px);
}

/* PC版 */
@media screen and (min-width: 769px) {
    .hero-fireworks-dots {
        width: 220px;
        height: 220px;
    }
}


/* ====================================
   News
==================================== */
.news {
    position: relative;
    background: #eaedf1;
    padding: 80px 0 120px;
    overflow: hidden;
}

.news .container {
    position: relative;
    z-index: 1;
}

/* 右側装飾：花火ドット */
.news-fireworks-dots-right {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 350px;
    height: 350px;
    opacity: 0.3;
}

.news-fireworks-dots-right .fw-dot {
    fill: #98a7bb;
}

/* 下部装飾：花火ドット */
.news-fireworks-dots-bottom {
    position: absolute;
    left: 10%;
    bottom: -5%;
    width: 250px;
    height: 250px;
    opacity: 0.2;
}

.news-fireworks-dots-bottom .fw-dot {
    fill: #adb9c9;
}

/* YouTube動画 */
.news-video {
    max-width: 800px;
    margin: 0 auto 80px;
}

.news-video iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 0;
}

/* NEWSコンテンツ */
.news-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

/* NEWSタイトルエリア */
.news-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(32%) saturate(878%) hue-rotate(175deg) brightness(95%) contrast(91%);
}

.news-heading {
    font-size: 28px;
    font-weight: bold;
    color: #325078;
    margin: 0;
    letter-spacing: 0.1em;
}

/* NEWSリストエリア */
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #c1cad6;
}

.news-item {
    border-bottom: 1px solid #c1cad6;
}

/* NEWS 段階表示（初期3件のみ表示） */
.news-item:nth-child(n+4) {
    display: none;
}

.news-item a {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
    color: #325078;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-item a:hover {
    opacity: 0.7;
}

.news-date {
    font-size: 14px;
    color: #325078;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.news-item-title {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.news-item i {
    color: #325078;
    font-size: 12px;
    flex-shrink: 0;
}

/* 全て見るボタン */
.news-btn-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 18px 60px;
    background: #325078;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: #1f3a5c;
    color: #fff;
}

.news-btn i {
    font-size: 12px;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .news {
        padding: 60px 1rem 80px;
    }

    .news-fireworks-dots-right {
        width: 200px;
        height: 200px;
        right: -10%;
        top: 5%;
    }

    .news-fireworks-dots-bottom {
        display: none;
    }

    .news-video {
        margin-bottom: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-title-area {
        justify-content: flex-start;
    }

    .news-item a {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 5px;
    }

    .news-date {
        font-size: 13px;
    }

    .news-item-title {
        width: 100%;
        font-size: 14px;
    }

    .news-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
    }
}

/* ====================================
   Information
==================================== */
.information {
    position: relative;
    z-index: 1;
    background: #1a1a2e url('../img/top/bg_information.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0 0;
    color: #fff;
    overflow: visible;
}

.info-content {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.info-fireworks {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-fireworks-dots {
    position: absolute;
    left: 8%;
    top: -70px;
    width: 320px;
    height: 320px;
    opacity: 0;
    z-index: 10;
}

.info-fireworks-dots .fw-dot {
    fill: #fff;
}

.info-fireworks-dots.is-active {
    animation: info-fw-fadeIn 1s ease-out forwards;
}

@keyframes info-fw-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-text-area {
    position: relative;
    padding-left: 40px;
    margin-left: 35%;
    margin-right: 15%;
}

.info-text-fireworks {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    opacity: 0.5;
    pointer-events: none;
}

.info-text-fireworks .fireworks-svg {
    width: 100%;
    height: 100%;
}

.info-text-fireworks .fw-dot {
    fill: #fff;
}

.info-catch {
    font-size: 26px;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
}

.info-description {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 2;
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
}

/* スライダー */
.info-slider-wrap {
    margin-top: 60px;
    overflow: hidden;
}

.info-slider {
    margin: 0 -10px;
}

.info-slider-item {
    padding: 0 10px;
}

.info-slider-item img {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.info-slider .slick-dots {
    bottom: -40px;
}

.info-slider .slick-dots li button:before {
    color: rgba(234,237,241,0.5);
    font-size: 10px;
}

.info-slider .slick-dots li.slick-active button:before {
    color: #eaedf1;
}

/* Information SP */
@media screen and (max-width: 768px) {
    .information {
        padding: 60px 0 0;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .info-fireworks {
        order: 1;
    }

.info-fireworks-dots {
    width: 180px;
    height: 180px;
    right: -2rem;
    left: unset;
}

    .info-text-area {
        order: 2;
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
        margin-left: 0;
    }

    .info-text-fireworks {
        display: none;
    }

    .info-catch {
        font-size: 24px;
        text-align: left;
    }

    .info-slider-wrap {
        margin-top: 40px;
    }
    .info-description{
        text-align: left;
        text-align: justify;
    }
}

/* ====================================
   About (inside Information)
==================================== */
.info-about {
    position: relative;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.info-about-fireworks-dots {
    position: absolute;
    right: 16%;
    top: 160px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 1;
}

.info-about-fireworks-dots .fw-dot {
    fill: #fff;
}

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

.info-about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.info-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-left: 9vw;
}

.info-about-title {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
}
.info-location-content {
    max-width: 800px;
    margin: 100px auto 0;
    text-align: center;
    margin-left: 9vw;
}
.info-location-content .program-title span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 400;
    text-align: left;
}
.info-location-content .program-header {
    align-items: start;
}
.location_image {
    margin-top: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.info-location-title {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
}


/* .info-about-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
} */

.info-about-text p {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.info-about-text p:last-child {
    margin-bottom: 0;
}
.vip_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.vip_wrapper .ticket-price{
    margin-top: -1rem;
}
/* About SP */
@media screen and (max-width: 768px) {
    .info-about {
        padding: 80px 0;
    }

    .info-about-fireworks-dots {
        display: none;
    }

    .info-about-title {
        font-size: 22px;
    }

    .info-about-text p {
        font-size: 14px;
        line-height: 2;
        text-align: justify;
        padding: 0 1%;
        font-weight: 300;
    }
}

/* ====================================
   Schedule
==================================== */
.schedule {
    position: relative;
    z-index: 1;
    background: #325078;
    padding: 100px 0;
    color: #fff;
    overflow: visible;
}

.schedule-fireworks-dots {
    position: absolute;
    left: 5%;
    top: -60px;
    width: 280px;
    height: 280px;
    opacity: 0;
}

.schedule-fireworks-dots .fw-dot {
    fill: #fff;
}

.schedule-fireworks-dots.is-active {
    animation: schedule-fw-fadeIn 1s ease-out forwards;
}

@keyframes schedule-fw-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.schedule-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.schedule-card {
    /* max-width: 600px; */
    margin: 0 auto;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.schedule-card img {
    width: 100%;
    height: auto;
}

/* Schedule SP */
@media screen and (max-width: 768px) {
    .schedule {
        padding: 60px 0;
    }

    .schedule-fireworks-dots {
        width: 180px;
        height: 180px;
        left: -30px;
        top: -80px;
    }

    .schedule-card {
        /* padding: 20px; */
        margin: 0 15px;
    }
}

/* ====================================
   Tickets
==================================== */
.tickets {
    position: relative;
    z-index: 1;
    background: #eaedf1;
    padding: 100px 0 0;
    color: #325078;
    overflow: visible;
}

.tickets-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #325078;
}

.tickets-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots_darkblue.svg') no-repeat center center;
    background-size: contain;
}

/* 会場MAP */
.tickets-map {
    max-width: 850px;
    margin: 0 auto 40px;
    border-radius: 5px;
    overflow: hidden;
}

.tickets-map img {
    width: 100%;
    height: auto;
}

/* 注意事項 */
.notice-zabuton {
    max-width: 1000px;
    margin: 80px auto 40px;
    font-size: 14px;
    line-height: 1.8;
    background-color: #5b7393;
    color: #fff;
    text-align: center;
    padding: 70px 60px 65px;
    border-radius: 6px;
}
.notice-zabuton h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.notice-zabuton p{
    margin-bottom: 0;
    text-align: justify;
}



.tickets-notes {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 80px;
    font-size: 14px;
    line-height: 1.8;
    color: #325078;
    position: relative;
}

.tickets-notes p{
    margin-bottom: 0
}

.tickets-notes::before {
    content: '';
    position: absolute;
    left: calc(55% + 30px);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #98a7bb;
}

/* チケット料金グリッド */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-bottom: 1px solid #98a7bb;
    padding-bottom: 90px;
}

/* チケットカード */
.ticket-card {
    background: #f5f6f8;
    padding: 30px 25px;
    border-radius: 5px;
}
.ticket-card:nth-child(odd){
    background-color: unset;
}

.ticket-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.ticket-tag {
    display: inline-block;
    padding: 0px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.ticket-tag.parking {
    background: #fff;
    border: 1px solid #325078;
    color: #325078;
}

.ticket-tag.no-parking {
    background: #7b8fa8;
    color: #fff;
}

.ticket-parking-time {
    font-size: 12px;
    line-height: 1.5;
    color: #325078;
}

.ticket-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    /* color: #333; */
    line-height: 1.5;
    align-items: start;
}

.ticket-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 6px;
}

.ticket-color.a-block { background: #c85078; }
.ticket-color.b-block { background: #d67c9a; }
.ticket-color.c-block {
    background: #f1d3dd;
    border: 2px solid #c85a7c;
}
.ticket-color.live-stand { background: #d2be14; }
.ticket-color.photo { background: #5a8cc8; }
.ticket-color.wheelchair { background: #d06a8c; }
.ticket-color.cruise { background: #325078; }
.ticket-color.vip { background: #333; }

.ticket-price {
    font-size: 28px;
    font-weight: 700;
    color: #325078;
    margin-bottom: 15px;
    text-align: right;
}

.ticket-price span {
    font-size: 16px;
    font-weight: 400;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-features li {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    line-height: 1.6;
    color: #325078;
    margin-bottom: 5px;
}

.ticket-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 8px;
    line-height: 2.5;
}

/* 特別チケット */
.tickets-special {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.tickets-special.row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.ticket-special-tag {
    display: inline-block;
    background: #325078;
    color: #fff;
    padding: 0px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}
.dinner .ticket-special-tag {
    background: #5a8c78;
}
.dinner .ticket-color.cruise{
    background: #cbb821;
}

/* SEATS セクション */
.seats {
    position: relative;
    padding: 80px 0 100px;
    margin-top: 0;
}

.seats-fireworks-dots {
    position: absolute;
    left: 5%;
    top: -60px;
    width: 200px;
    height: 200px;
    opacity: 0;
    z-index: 10;
}

.seats-fireworks-dots .fw-dot {
    fill: #fff;
}

.seats-fireworks-dots.is-active {
    animation: seats-fw-fadeIn 1s ease-out forwards;
}

@keyframes seats-fw-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.seats-title {
    text-align: center;
    font-size: clamp(32px, 3vw, 36px);
    font-weight: 700;
    color: #325078;
    margin-bottom: 10px;
}

.seats-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    background: url('../img/common/icon_fireworks_dots_darkblue.svg') no-repeat center center;
    background-size: contain;
}

.seats-subtitle {
    text-align: center;
    font-size: 16px;
    color: #325078;
    margin-bottom: 50px;
}

.seats-slider-wrap {
    overflow: visible;
    padding-bottom: 60px;
}

.seats-slider {
    margin: 0 -15px;
}

.seats-slider .slick-track {
    display: flex !important;
}

.seats-slider .slick-slide {
    height: inherit !important;
}

.seats-slider .slick-slide > div {
    height: 100%;
}

.seats-slider-item {
    padding: 0 15px;
    height: 100%;
}

.seats-card {
    background: #fff;
    border-radius: 5px;
    padding: 0 0 20px;
    height: 100%;
    /* display: flex; */
    flex-direction: column;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    text-align: center;
    overflow: hidden;
}


.seats-card-direction {
    text-align: center;
    font-size: 12px;
    color: #325078;
    margin-bottom: 15px;
}

.seats-card-map {
    margin-bottom: 20px;
}

.seats-card-map img {
    width: 100%;
    height: auto;
}

.seats-card-tag {
    display: inline-block;
    padding: 3px 12px 4px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin: 10px auto 20px;
    text-align: center;
}

.seats-card-tag.a-block {
    background: #c85078;
    color: #fff;
}

.seats-card-tag.b-block {
    background: #cf7a97;
    color: #fff;
}

.seats-card-tag.c-block {
    background: #f1d3dd;
    border: 2px solid #c85a7c;
    color: #c85078;
}

.seats-card-tag.live-stand {
    background: #d2be14;
    color: #fff;
}

.seats-card-tag.photo {
    background: #5a8cc8;
    color: #fff;
}

.seats-card-tag.vip {
    background: #232323;
    color: #d2be14;
    font-weight: 700;
}
.seats-card-tag.carning{
    letter-spacing: -0.05rem;
}

.seats-card-tag.prm {
    background: #d2be14;
    color: #232323;
    font-weight: 700;
}
.seats-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #325078;
    flex-grow: 1;
    margin-left: 30px;
    margin-right: 30px;
    text-align: justify;
}

/* もっと見る機能 */
.seats-card-text-short,
.seats-card-text-full {
    margin: 0;
}

.seats-card-text-full {
    display: none;
}

.seats-card-more {
    display: inline-block;
    color: #325078;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}

.seats-card-more:hover {
    opacity: 0.7;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
    content: '' !important;
}

/* Seats Slider Navigation */
.seats-slider .slick-prev,
.seats-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: #325078;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.seats-slider .slick-prev:hover,
.seats-slider .slick-next:hover {
    background: #4a6a8a;
    transform: translateY(-50%) scale(1.1);
}

.seats-slider .slick-prev {
    left: 20px;
}

.seats-slider .slick-next {
    right: -12px;
}
.seats-slider .slick-next .fa-solid{
    margin-right: 20px;
}
.seats-slider .slick-prev {
    left: -12px;
}
.seats-slider .slick-prev  .fa-solid{
    margin-left: 20px;
}
.seats-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    gap: 15px;
}

.seats-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.seats-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #c1cad6;
}

.seats-slider .slick-dots li button:before {
    display: none;
}

.seats-slider .slick-dots li.slick-active button {
    background: #325078;
}

/* Tickets SP */
@media screen and (max-width: 768px) {
    .tickets {
        padding: 60px 0 0;
    }

    .tickets-notes {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        font-size: 13px;
    }

    .tickets-notes::before {
        display: none;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .ticket-card {
        padding: 25px 20px;
    }

    .ticket-card-header {
        flex-wrap: wrap;
        justify-content: start;
        gap: 10px;
    }

    .ticket-name {
        font-size: 15px;
    }

    .ticket-price {
        font-size: 24px;
        line-height: 1.2;
    }

    .tickets-special {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .tickets-special.row-2 {
        grid-template-columns: 1fr;
    }

    .seats {
        padding: 0px 0 80px;
        margin-top: 50px;
    }

    .seats-slider-wrap {
        padding-bottom: 50px;
    }

    .seats-slider {
        margin: 0 -5px;
    }

    .seats-slider-item {
        padding: 0 5px;
    }

    .seats-card {
        padding: 20px;
    }

    .seats-card-text {
        font-size: 12px;
    }

    .seats-slider .slick-dots {
        bottom: -40px;
    }

    .seats-slider .slick-prev,
    .seats-slider .slick-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .seats-slider .slick-prev {
        left: 5px;
    }

    .seats-slider .slick-next {
        right: 5px;
    }
}

/* ====================================
   Access
==================================== */
.access {
    position: relative;
    z-index: 1;
    background: #eaedf1;
    padding: 100px 0;
}

/* メイングリッド 4カラム×2行 */
.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 40px;
}

/* アクセスカード */
.access-card {
    background: #fff;
    border-radius: 5px;
    padding: 30px 25px;
    text-align: center;
    overflow: hidden;
}

/* 縦2行分のカード */
.access-card.tall {
    grid-row: span 2;
}

/* 1列目：SHUTTLE BUS */
.access-card.tall:first-child {
    grid-column: 1;
    grid-row: 1 / 4;
}

/* 4列目：BICYCLE */
.access-card.tall:nth-child(4) {
    grid-column: 4;
    grid-row: 1 / 3;
}

/* ACCESS BUS */
.access-card.small:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

/* TAXI */
.access-card.small:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}
/* 最後 */
.access-notice {
    grid-column: 2 / 5;
    grid-row: 3;
}

.access-card.small {
    padding: 40px 25px;
}

.access-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.access-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.access-card-tag {
    display: inline-block;
    padding: 0px 20px 1px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.access-card-tag.shuttle { background: #d29614; color: #fff; }
.access-card-tag.park { background: #c85078; color: #fff; }
.access-card-tag.car { background: #5a8c78; color: #fff; }
.access-card-tag.bicycle { background: #5a8cc8; color: #fff; }
.access-card-tag.bus { background: #00759c; color: #fff; }
.access-card-tag.taxi { background: #325078; color: #fff; }

.access-card-title {
    font-size: 17px;
    font-weight: 500;
    color: #325078;
    margin-bottom: 30px;
    line-height: 1.5;
    margin-top: 15px;
}

.access-card-highlight {
    background: #ffff;
    color: #325078;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid #98a7bb;
}
.access-card-highlight p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
}
.access-card-highlight p span{
    font-size: 16px;
    font-weight: normal;
}

.access-card-text {
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
    color: #325078;
    margin-bottom: 25px;
    margin-top: 25px;
}

.access-card-text p {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: justify;
}
.access-card-text p span{

}

.access-card-text p:last-child {
    margin-bottom: 0;
}

.access-card-btn {
    display: block;
    width: 100%;
    padding: 20px 20px;
    background: #fff;
    border: 1px solid #325078;
    color: #325078;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    line-height: 1.4;
}
.access-card-btn.acdn{
    border-radius: 50px;
    background-color: #eaedf1;
}

.access-card-btn:hover {
    background: #325078;
    /* color: #fff; */
}

.access-card-btn.outline {
    background: transparent;
}

.access-card-info {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #325078;
    margin-bottom: 20px;
}

.access-card-info p {
    border-bottom: 1px dotted #98a7bb;
    text-align: center;
    font-weight: 500;
    padding-bottom: 1rem;
}

.access-card-info p.nbdr {
    border-bottom: unset;
}
.access-card-info p.taj {
text-align: justify;
}
.access-card-info p.fwn {
    font-weight: normal;
}

.access-price {
    font-size: 14px;
    color: #325078;
}

.access-price strong {
    font-size: 20px;
    font-weight: 700;
    /* color: #c85a7c; */
}

.access-subtitle {
    font-weight: 600 !important;
    color: #325078;
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
}

.access-card-route {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
    /* background: #f8f9fa; */
    border-radius: 8px;
}

.route-item {
    text-align: center;
}

.route-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.route-label {
    font-size: 10px;
    color: #325078;
    line-height: 1.4;
}

.access-card-link {
    display: block;
    padding: 12px;
    background: #325078;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border-radius: 58px;
    margin-bottom: 20px;
    /* line-height: 1.5; */
    font-weight: 600;
    line-height: 1.35;
}
.access-card-link span{
    font-size: 14px;
    font-weight: normal;
}

.access-card-link:hover {
    background: #1f3a5c;
    color: #fff;
}

.access-card-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #325078;
    margin-bottom: 15px;
}

.access-card-train {
    text-align: left;
    font-size: 12px;
    line-height: 1.8;
    color: #325078;
    margin-bottom: 20px;
    display: none;
}

.access-card-train.is-open {
    display: block;
}

.shuttle .access-card-btn.cta{
    border-color: #d29614;
}
.shuttle .access-card-btn.cta:hover{
    background-color: #d29614;
    color: #fff
}
.park .access-card-btn.cta{
    border-color: #c85078;
}
.park .access-card-btn.cta:hover{
    background-color: #c85078;
    color: #fff
}
.car .access-card-btn.cta{
    border-color: #5a8c78;
}
.car .access-card-btn.cta:hover{
    background-color: #5a8c78;
    color: #fff
}
.bicycle .access-card-btn.cta{
    border-color: #5a8cc8;
}
.bicycle .access-card-btn.cta:hover{
    background-color: #5a8cc8;
    color: #fff
}
.bus .access-card-btn.cta{
    border-color: #00759c;
}
.bus .access-card-btn.cta:hover{
    background-color: #00759c;
    color: #fff
}
.taxi .access-card-btn.cta{
    border-color: #00759c;
}
.taxi .access-card-btn.cta:hover{
    background-color: #00759c;
    color: #fff
}

.access-card-btn.acdn.is-open::after {
    transform: rotate(180deg);
}

.access-card-train p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.train-line {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #325078;
    border-radius: 2px;
}

.access-price-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.access-price-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
}

.access-price-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #325078;
    font-size: 8px;
    line-height: 3.5;
}

.access-card:has(.access-card-map) {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.access-card:has(.access-card-map) .access-card-tag {
    align-self: center;
}

.access-card-map {
    margin: 0 -25px 0 -25px;
    margin-top: auto;
}

.access-card-map img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* transform: scale(1.25); */
    /* margin-bottom: -12rem; */
}

.access-card-coming {
    font-size: 16px;
    color: #325078;
}

/* サブグリッド（未使用） */

/* 交通規制のお知らせ */
.access-notice {
    background: #325078;
    border-radius: 5px;
    padding: 50px 80px;
    color: #fff;
}

.access-notice-title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.access-notice-content {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 60px;
    align-items: center;
}

.access-notice-text {
    font-size: 14px;
    line-height: 1.8;
}

.access-notice-text p {
    /* margin-bottom: 15px; */
    text-align: justify;
    font-size: 16px;
}

.access-notice-text p:last-child {
    margin-bottom: 0;
}

.access-notice-map img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Access SP */

@media screen and (max-width: 768px) {
    .access {
        padding: 30px 0 60px;
    }

    .access-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .access-card {
        padding: 25px 20px;
    }

    .access-card.tall {
        grid-row: auto;
    }

    .access-notice {
        padding: 25px 20px;
    }

    .access-notice-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .access-notice-text {
        font-size: 13px;
    }

    .access-card-map {
        margin: 0 -20px 0 -20px;
    }
}

/* ====================================
   Food
==================================== */
.food {
    position: relative;
    z-index: 1;
    background: #325078;
    padding: 100px 0;
}

.food-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.food-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.food-card {
    background: #6f84a0;
    border-radius: 5px;
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.food-coming {
    font-size: 18px;
    color: #fff;
    /* font-style: italic; */
    margin: 0;
}

/* Food SP */
@media screen and (max-width: 768px) {
    .food {
        padding: 60px 0;
    }

    .food-card {
        padding: 60px 20px;
    }

    .food-coming {
        font-size: 16px;
    }
}

/* ====================================
   Guideline
==================================== */
.guideline {
    position: relative;
    z-index: 1;
    background: #eaedf1;
    padding: 100px 0;
}

.guideline-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #325078;
    margin-bottom: 60px;
}

.guideline-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots_blue.svg') no-repeat center center;
    background-size: contain;
}

.guideline-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guideline-intro {
    margin-bottom: 50px;
}

.guideline-heading {
    font-size: 18px;
    font-weight: 700;
    color: #325078;
    margin-bottom: 20px;
}

.guideline-intro p {
    font-size: 16px;
    line-height: 1.5;
    color: #325078;
    margin-bottom: 10px;
}

.guideline-section {
    margin-bottom: 40px;
}

.guideline-section:last-child {
    margin-bottom: 0;
}

.guideline-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #325078;
    margin-bottom: 20px;
}

.guideline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-list li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #325078;
    margin-bottom: 10px;
    line-height: 1.45;
}

.guideline-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #98a7bb;
    font-size: 11px;
    margin-top: 4px;
}

.guideline-list li:last-child {
    margin-bottom: 0;
}

.guideline-closing {
    /* border-top: 2px solid #325078; */
    padding-top: 0;
    margin-top: 40px;
}

.guideline-closing .guideline-section-title {
    color: #325078;
    font-size: 18px;
}

.guideline-closing-text {
    font-size: 15px;
    line-height: 2;
    color: #325078;
}

/* Guideline SP */
@media screen and (max-width: 768px) {
    .guideline {
        padding: 60px 0;
    }

    .guideline-title {
        margin-bottom: 40px;
    }

    .guideline-heading {
        font-size: 16px;
    }

    .guideline-intro p {
        font-size: 14px;
    }

    .guideline-section-title {
        font-size: 15px;
    }

    .guideline-list li {
        font-size: 13px;
    }

    .guideline-closing {
        padding-top: 30px;
        margin-top: 30px;
    }

    .guideline-closing .guideline-section-title {
        font-size: 16px;
    }

    .guideline-closing-text {
        font-size: 14px;
    }
}

/* ====================================
   FAQ
==================================== */
.faq {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 100px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title-area {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding-top: 14px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-fireworks-dots {
    width: 50px;
    height: 50px;
}

.faq-fireworks-dots .fw-dot {
    fill: #325078;
}

.faq-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #325078;
    margin: 0;
}

.faq-list {
    /* border-top: 1px solid #ddd; */
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #325078;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: #325078;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: #7b8fa8;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: 0 10px 25px;
}

.faq-answer p {
    background: #f5f6f8;
    padding: 25px 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #325078;
    margin: 0;
}

/* FAQ SP */
@media screen and (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

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

    .faq-title-area {
        position: static;
        text-align: center;
    }

    .faq-header {
        justify-content: center;
    }

    .faq-question {
        padding: 20px 5px;
        font-size: 14px;
        gap: 15px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-answer {
        padding: 0 5px 20px;
    }

    .faq-answer p {
        padding: 20px;
        font-size: 13px;
    }
}

/* ====================================
   Footer Sections Wrap
==================================== */
.footer-sections-wrap {
    background: #05070d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ====================================
   Sponsor
==================================== */
.sponsor {
    position: relative;
    z-index: 1;
    padding: 100px 0 20px;
}

.sponsor-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.sponsor-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.sponsor-card {
    background: #325078;
    border-radius: 5px;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sponsor-coming {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

/* Sponsor SP */
@media screen and (max-width: 768px) {
    .sponsor {
        padding: 60px 0;
    }

    .sponsor-card {
        padding: 60px 20px;
    }

    .sponsor-coming {
        font-size: 14px;
    }
}

/* ====================================
   Credits
==================================== */
.credits {
    position: relative;
    z-index: 1;
    padding: 100px 0 20px;
    color: #fff;
    overflow: hidden;
}

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

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

.credits-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 19, 32, 0.85);
}

.credits-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
}

.credits-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.credits-content {
    max-width: 600px;
    margin: 0 auto;
}

.credits-event-name {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.credits-list {
    margin: 0;
}

.credits-item {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 30px;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.credits-item:last-child {
    border-bottom: none;
}

.credits-item dt {
    font-size: 16px;
    color: #adb9c9;
    /* letter-spacing: 0.1em; */
    text-align: justify;
    text-align-last: justify;
}

.credits-item dd {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

/* Credits SP */
@media screen and (max-width: 768px) {
    .credits {
        padding: 60px 0;
    }

    .credits-event-name {
        font-size: 18px;
    }

    .credits-item {
        grid-template-columns: 4.5em 1fr;
        gap: 16px;
        padding: 12px 0;
    }

    .credits-item dt {
        font-size: 12px;
    }

    .credits-item dd {
        font-size: 13px;
    }
}

/* ====================================
   Contact New
==================================== */
.contact-new {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

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

.contact-new-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-new-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-new-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.contact-new-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.contact-new-lead {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.contact-new-btn-wrap {
    text-align: center;
}

.contact-new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: 300px;
    padding: 20px 40px;
    background: #4a6a8a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-new-btn:hover {
    background: #325078;
    color: #fff;
}

.contact-new-btn i {
    font-size: 12px;
}

/* Contact New SP */
@media screen and (max-width: 768px) {
    .contact-new {
        padding: 80px 0;
    }

    .contact-new-lead {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .contact-new-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 15px;
    }
}

/* ====================================
   Footer New
==================================== */
.footer-new {
    background: #0d1320;
    padding: 30px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ====================================
   What's (Legacy - keeping for reference)
==================================== */
.whats,
.guest,
.description,
.contact,
.footer {
    position: relative;
    z-index: 1;
}

/* ====================================
   Guest Artist
==================================== */
.guest {
    background: transparent;
    padding: 120px 0;
    overflow: visible;
}

.guest h2,
.guest p {
    color: #eaedf1;
}

.guest h2::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

.guest .card {
    border: none;
    background: transparent;
    border-radius: 0;
}

.guest .card-img-top {
    border-radius: 0;
}

.guest .card-body {
    color: #eaedf1;
    padding: 20px 0;
}

.guest .card-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #eaedf1;
    margin-top: 5px;
}

.guest .card-role {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}

.guest .card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #eaedf1;
    text-align: justify;
}

/* ====================================
   Description
==================================== */
.description {
    background: #eaedf1;
    padding: 120px 0;
    color: #325078;
}

.description h2 {
    color: #325078;
    margin-bottom: 5px;
}

.description h2::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(24%) sepia(32%) saturate(878%) hue-rotate(175deg) brightness(95%) contrast(91%);
}

.description-heading {
    /* font-size: 24px; */
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.description-subheading {
    font-size: 14px;
    /* color: #325078; */
    margin-bottom: 20px;
    text-align: center;
}

.description-content {
    font-size: 15px;
    line-height: 1.8;
}

.description-list {
    margin: 0;
    padding: 0;
}

.description-list-item {
    margin-bottom: 12px;
}

.description-list-item dt {
    font-weight: bold;
    font-size: 14px;
    margin: .75rem 0;
}

.description-list-item dd {
    margin: 0 0 2.25rem;
    font-size: 14px;
    text-align: justify;
}

.notice {
    display: block;
}

.notice.important {
    color: #c85078;
}

.noticeList {
    list-style: none;
    padding-left: 1em;
    margin: 0;
}

.noticeList li {
    position: relative;
}

.noticeList li::before {
    content: '※';
    position: absolute;
    left: -1em;
}

.mark-circle {
    color: #98a7bb;
    font-size: 12px;
}

.description-video {
    width: 100%;
    /* max-width: 300px; */
    margin: 0 auto;
}

.description-video iframe {
    width: 100%;
    /* height: 615px; */
    border: 0;
    border-radius:8px;
    aspect-ratio: 1 / 1.79;
}

.description-block {
    margin-bottom: 40px;
}

.description-block:last-child {
    margin-bottom: 0;
}

/* ボタン */
.btn_wrap {
    margin-top: 20px;
}

.btn_wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 40px;
    background: #fff;
    border: 1px solid #c1cad6;
    color: #325078;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn_wrap .btn::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #325078;
    border-right: 1px solid #325078;
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

.btn_wrap .btn:hover {
    opacity: 1;
    background: #325078;
    color: #fff;
    border-color: #325078;
}

.btn_wrap .btn:hover::after {
    border-color: #fff;
}

.btn_wrap.w-300{
    width: 300px;
    margin:auto;
}

.btn_wrap.c-darkblue .btn {
    background: #325078;
    border-color: #325078;
    color: #fff;
}

.btn_wrap.c-darkblue .btn::after {
    border-color: #fff;
}

.btn_wrap.c-darkblue .btn:hover {
    opacity: 1;
    background: #fff;
    color: #325078;
    border: 1px solid #325078;
}

.btn_wrap.c-darkblue .btn:hover::after {
    border-color: #325078;
}


.btn_wrap.c-line-frame .btn {
    background: #325078;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn_wrap.c-line-frame .btn::after {
    border-color: #fff;
    transition: border-color 0.3s ease;
}

.btn_wrap.c-line-frame .btn::before {
    content: '';
    background-image: url(../img/onevoice/icon_line_white.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 1rem;
    transition: filter 0.3s ease;
}

.btn_wrap.c-line-frame .btn:hover {
    background: #fff;
    color: #325078;
    border-color: #325078;
}

.btn_wrap.c-line-frame .btn:hover::after {
    border-color: #325078;
}

.btn_wrap.c-line-frame .btn:hover::before {
    background-image: url(../img/onevoice/icon_line_navy.svg);
}

.descript_border {
    border-top: 1px solid #98a7bb;
    margin: 80px 0;
}

@media screen and (max-width: 768px) {
    .description .col-12:first-child {
        margin-bottom: 40px;
    }
}

/* ====================================
   Contact
==================================== */
.contact {
    background: #325078;
    padding: 120px 0;
    color: #fff;
}

.contact h2::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
    background: url('../img/common/icon_fireworks_dots.svg') no-repeat center center;
    background-size: contain;
}

/* ====================================
   Info List（汎用お知らせリスト）
==================================== */
.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    border-bottom: 1px solid #ddd;
}

.info-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    color: #325078;
    transition: opacity 0.3s ease;
}

.info-item a:hover {
    opacity: 0.7;
}

.info-date {
    font-size: 14px;
    color: #325078;
    flex-shrink: 0;
}

.info-category {
    display: inline-block;
    padding: 4px 12px;
    background: #333;
    color: #eaedf1;
    font-size: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.info-title {
    font-size: 15px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .info-item a {
        flex-wrap: wrap;
        gap: 10px;
    }

    .info-date {
        font-size: 13px;
    }

    .info-title {
        width: 100%;
        white-space: normal;
    }
}

.bubble-wrap {
    background: #325078;
    width: 100%;
    /* max-width: 300px; */
    margin: 0 auto;
    padding: 20px 25px;
    border-radius: 8px;
    position: relative;
    margin-top: 20px;
}
.bubble-wrap::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #325078;
    display: block;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: rotate(45deg);
}
.bubble-wrap p{
    color: #fff;
    margin: 0;
    text-align: center;
}
/* ====================================
   SP（スマートフォン）専用スタイル
   max-width: 768px
==================================== */
@media screen and (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: 100vh;
    }

    .hero-bg {
        /* width: 100%; */
        /* height: 50%; */
    }

    .hero-bg-left {
        top: 0;
        left: 0;
        background-size: cover;
        background-position: left 70%;
    }

    .hero-bg-right {
        right: 0;
        background-size: cover;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        max-width: 300px;
        top: 55%;
    }

    .hero-fireworks-dots {
        width: 120px;
        height: 120px;
    }

.hero-title img {
    width: 60vw;
}

    .hero-date-day {
        font-size: 48px;
    }


    .btn_wrap.hero-btn {
        bottom: 20px;
    }

    .btn_wrap.hero-btn .btn {
        padding: 14px 20px;
        font-size: 13px;
    }
.information {
    position: relative;
    background: transparent;
    padding: 80px 1rem 60px;
}
.whats-text-area {
    margin-top: 30px !important;
    padding: 0 2rem;
    text-align: justify;
}
.logo-area {
    margin-top: 0;
    margin: 40px auto 10px !important;
}
.event-info-item {
    /* flex-direction: column; */
    gap: 1.25em;
}
.whats-fireworks-dots {
    position: absolute;
    right: -7%;
    top: -40px;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    opacity: 0;
}
.whats {
    background: #325078;
    padding: 70px 0 50px;
    color: #fff;
    overflow: visible;
}
.whats h2 {
    color: #fff;
    margin-bottom: 0 !important;
    line-height: 1.25;
    margin-bottom: .5rem !important;
}
.whats-guest-fireworks-dots {
    display: none;
}
.guest {
    background: transparent;
    padding: 80px 0 40px;
    overflow: visible;
}
.artist-list {
    margin-top: 0 !important;
    padding: 0 1.5rem;
}
.description {
    background: #eaedf1;
    padding: 60px 0;
    color: #325078;
}
.description-wrap{

}
.description-list {
    margin: .5rem 1.5rem;
    padding: 5px 0 60px;
    border-bottom: 1px solid #98a7bb;
}
.right-wrap {
    margin-top: 20px;
}
.right-wrap .description-list{
    padding-bottom: 50px;
    margin-bottom: 70px;
}
.contact {
    background: #325078;
    padding: 70px 0 120px;
    color: #fff;
}
.contact-lead{
    text-align: justify;
    padding: 0 1.5rem;
}
}

/* ====================================
   Program Section
==================================== */
.program {
    background: #3c4f6f;
}

.program-inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    /* min-height: 600px; */
    padding: 100px 6%;
}

.program-left {
    padding: 80px 60px 0;
    color: #fff;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.program-fireworks-dots {
    width: 50px;
    height: 50px;
}

.program-fireworks-dots .fw-dot {
    fill: #c1cad6;
}

.program-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

.program-lead {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
    text-align: justify;
}

.program-timeline {
    width: 100%;
}

.program-timeline img {
    width: 100%;
    height: auto;
    display: block;
}

.timeline-times {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    gap: 8px;
}

.timeline-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timeline-bar {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.timeline-bar.opening {
    flex: 0 0 auto;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-bar.part1 {
    flex: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-bar.part2 {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    text-align: right;
}

.program-right {
    background: #fff;
    padding: 60px 60px 30px;
    border-radius: 5px;
}

@media screen and (min-width: 1350px) {
    .program-right {
        padding: 60px 100px 30px;
    }
}

.program-detail {
    padding: 30px 0;
    border-bottom: 1px dashed #ccc;
}

.program-detail:first-child {
    padding-top: 0;
}

.program-detail:last-child {
    border-bottom: none;
    padding-bottom:0;
}

.program-detail-title {
    font-size: 18px;
    font-weight: 400;
    color: #325078;
    margin: 0 0 18px;
    font-style: italic;
    height: 20px;
}
.program-detail-title img{
    max-width: 100%;
    height: 100%;
    vertical-align: bottom;
}

.program-detail-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #325078;
    margin: 0 0 15px;
}

.program-detail-text {
    font-size: 14px;
    line-height: 1.8;
    color: #325078;
    text-align: justify;
}

/* Program SP */
@media screen and (max-width: 768px) {
    .program-inner {
        grid-template-columns: 1fr;
    }

    .program-left {
        padding: 50px 20px;
    }

    .program-right {
        padding: 40px 2rem;
    }

    .program-timeline {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-times {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px 15px;
    }

    .timeline-bars {
        flex-direction: row;
        height: 80px;
    }

    .timeline-bar {
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
}

/* ====================================
   Guest Artist Section
==================================== */
.guest-artist {
    background-image: url('../img/top/bg_artist.webp');
    position: relative;
    padding: 100px 0 520px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.guest-artist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.guest-artist .container {
    position: relative;
    z-index: 1;
}

.guest-artist-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.guest-artist-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.guest-artist-fireworks-dots {
    width: 50px;
    height: 50px;
    bottom: -2px;
    position: relative;
}

.guest-artist-fireworks-dots .fw-dot {
    fill: #d2be14;
}

.guest-artist-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    /* letter-spacing: 0.1em; */
    color: #d2be14;
    margin: 0;
}

.guest-artist-lead {
    font-size: 16px;
    line-height: 2;
    color: #d2be14;
    text-align: justify;
    margin-bottom: 30px;
}

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

.artist-card {
    color: #fff;
}

.artist-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.artist-card-more {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .artist-card-more:hover {
        background: #fff;
        color: #325078;
    }
}

.artist-card-name {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 5px;
}

.artist-card-role {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.card_play_guide {
    width: 680px;
    background: #fff;
    margin: auto;
    border-radius: 8px;
    padding: 57px;
    margin-bottom: 20px;
}

.card_play_guide .btn{
    margin-top: 60px;
    margin-bottom: 0;
}
.card_play_guide_title_wrapper{
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: center;
}
.card_play_guide_title_wrapper .icon{
    background: #b0afc0;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}
.card_play_guide_title_wrapper .icon.onsale{
    background-color: #bd4e72;
}
.card_play_guide_title_wrapper .icon p{
    text-align: center;
    margin: 0;
    color: #fff;
}

.card_play_guide_title_wrapper .title_play_guide p{
    margin: 0;
}
.card_play_guide_title_wrapper .title_play_guide p.date span{
    font-weight: 500;
}
.card_play_guide .btn.before{
    background-color: #b0afc0;
    border: none;
    cursor: default;
}
.card_play_guide .btn.before::after,
.card_play_guide .btn.before::before{
    display: none;
}
.card_play_guide .btn.before:hover{
    background-color: #b0afc0;
    border: none;
    color: #fff;
}

/* Guest Artist SP */
@media screen and (max-width: 768px) {
    .guest-artist {
        padding: 60px 0;
    }

    .guest-artist-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guest-artist-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Artist Modal */
.artist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.artist-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.artist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.artist-modal-content {
    position: relative;
    background: #fff;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.artist-modal.is-active .artist-modal-content {
    transform: translateY(0);
}

.artist-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.artist-modal-close::before,
.artist-modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #325078;
}

.artist-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.artist-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.artist-modal-close:hover {
    opacity: 0.6;
}

.artist-modal-inner {
    padding: 40px;
}

.artist-modal-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.artist-modal-img {
    width: 260px;
    flex-shrink: 0;
    overflow: hidden;
}

.artist-modal-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.artist-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-modal-name {
    font-size: 22px;
    font-weight: 700;
    color: #325078;
    margin: 0 0 15px;
}

.artist-modal-role {
    font-size: 16px;
    color: #325078;
    margin: 0;
}

.artist-modal-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #325078;
    margin: 0;
    text-align: justify;
}

/* Artist Modal SP */
@media screen and (max-width: 768px) {
    .artist-modal-inner {
        padding: 30px 20px;
    }

    .artist-modal-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .artist-modal-img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .artist-modal-info {
        text-align: center;
    }

    .artist-modal-name {
        font-size: 18px;
    }

    .artist-modal-desc {
        font-size: 13px;
    }
}

/* ====================================
   News Modal
==================================== */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.news-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.news-modal-content {
    position: relative;
    background: #fff;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.news-modal.is-active .news-modal-content {
    transform: translateY(0);
}

.news-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.news-modal-close::before,
.news-modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #325078;
}

.news-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.news-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.news-modal-close:hover {
    opacity: 0.6;
}

.news-modal-inner {
    padding: 50px 40px;
}

.news-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #325078;
    margin: 0 0 30px;
    line-height: 1.6;
}

.news-modal-text {
    font-size: 15px;
    line-height: 1.9;
    color: #325078;
    margin: 0 0 40px;
    text-align: justify;
}

.news-modal-btn-wrap {
    text-align: center;
}

.news-modal-btn-wrap .btn_wrap {
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .news-modal-inner {
        padding: 40px 20px;
    }

    .news-modal-title {
        font-size: 17px;
    }

    .news-modal-text {
        font-size: 14px;
    }

    .news-modal-btn-wrap .btn_wrap {
        width: 100%;
    }
}

/* ====================================
   Guest Dancer Section
==================================== */
.guest-dancer {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
    background-image: url('../img/top/bg_dancer.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.guest-dancer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../img/top/bg_dancer.jpg') center center / cover no-repeat;
}

.guest-dancer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, #0a0a0a);
}

.guest-dancer .container {
    position: relative;
    z-index: 1;
}

.guest-dancer-content {
    margin-left: 38%;
    padding-left: 60px;
}

.guest-dancer-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.guest-dancer-fireworks-dots {
    width: 50px;
    height: 50px;
    bottom: -2px;
    position: relative;
}

.guest-dancer-fireworks-dots .fw-dot {
    fill: #d2be14;
}

.guest-dancer-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    /* letter-spacing: 0.1em; */
    color: #d2be14;
    margin: 0;
}

.guest-dancer-lead {
    font-size: 16px;
    line-height: 2;
    color: #d2be14;
    text-align: justify;
    margin-bottom: 40px;
}

.dancer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dancer-card {
    color: #fff;
}

.dancer-card-img {
    /* aspect-ratio: 3 / 4; */
    overflow: hidden;
    margin-bottom: 15px;
    /* border: 3px solid #fff; */
}

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

.dancer-card-name {
    font-size: 18px;
    font-weight: 500;
    margin: 30px 0 5px;
}

.dancer-card-team {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Guest Dancer SP */
@media screen and (max-width: 768px) {
    .guest-dancer {
        padding: 60px 0;
    }

    .guest-dancer-bg {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .guest-dancer-bg::after {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(to bottom, transparent, #0a0a0a);
    }

    .guest-dancer-content {
        margin-left: 0;
        padding-left: 0;
        padding: 0 15px;
    }

    .dancer-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .dancer-card-name {
        font-size: 13px;
    }

    .dancer-card-team {
        font-size: 10px;
    }
}

/* ====================================
   Map Section
==================================== */
.map-section {
    background: #e8eaed;
    padding: 80px 0 0;
}

.map-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    margin-top: 20px;
}

.map-fireworks-dots {
    width: 50px;
    height: 50px;
}

.map-fireworks-dots .fw-dot {
    fill: #325078;
}

.map-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    /* letter-spacing: 0.1em; */
    color: #325078;
    margin: 0;
    text-align: center;
}

.map-venue {
    font-size: 18px;
    font-weight: 500;
    color: #325078;
    text-align: center;
    margin: 0 0 10px;
}

.map-address {
    font-size: 16px;
    color: #325078;
    text-align: center;
    margin: 0 0 50px;
}

.map-embed {
    width: 80%;
    border-radius: 5px;
    overflow: hidden;
    margin: auto;
    filter: grayscale(1);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-access-methods {
    background: #3c4f6f;
    padding: 60px 70px;
    margin-top: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.map-access-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 40px;
}

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

.map-access-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
    border-bottom: 1px dotted #98a7bb;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.map-access-item:hover {
    opacity: 0.7;
}
.map-access-item.nobdr{
    border-bottom: none;
}

.map-access-text {
    font-size: 18px;
    font-weight: 500;
}

.map-access-text small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin-top: 3px;
}

.map-access-icons {
    display: flex;
    gap: 8px;
}

.map-access-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.map-access-icon.shuttle {
    /* background: #d2be14; */
}

.map-access-icon.park {
    /* background: #5a8a5a; */
}

.map-access-icon.car {
    /* background: #5a8a5a; */
}

.map-access-icon.parking {
    /* background: #e8eaed; */
    /* color: #325078; */
}

.map-access-icon.access-bus {
    /* background: #5a9eb8; */
}

.map-access-icon.bike {
    /* background: #7ab8d4; */
}

.map-access-icon.taxi {
    /* background: #e8eaed; */
    /* color: #325078; */
}

/* Map Section SP */
@media screen and (max-width: 768px) {
    .map-section {
        padding: 60px 0 0;
    }

    .map-embed iframe {
        height: 300px;
    }

    .map-access-methods {
        padding: 40px 0;
        margin-top: 30px;
    }

    .map-access-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-access-item {
        padding: 20px 0;
    }

    .fa-chevron-right {
        margin-left: 15px;
    }
}

.footer-sections-wrap {
    background-image: url('../img/top/bg_information.webp');
    padding-top: 30px;
    background-size: cover;
    background-position: bottom;
    padding-bottom: 300px;
}

.moreview{
    border-radius: 50px;
}
.moreview::after{
    display: none;
}

.news-notice{
    max-width: 900px;
    margin: 0 auto 70px;
}

.news-notice p{
    color: #325078;
    font-size: 14px;
    text-align: justify;
}

.access-location-parkandride {
    margin-bottom: 30px;
    border-top: 1px dotted #98a7bb;
    padding-top: 20px;
}

.access-location-parkandride p{
    color: #325078;
}
.access-location-parkandride .location-title{
    font-size: 18px;
    font-weight: 500;
}
.access-location-parkandride .location-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.access-location-parkandride a {
    border: 1px solid #98a7bb;
    background-color: #eaedf1;
    width: 100%;
    display: block;
    border-radius: 50px;
    font-size: 16px;
    color: #325078;
    padding: 4px 0 6px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.access-location-parkandride a:hover{

    border: 1px solid #325078;
    background-color: #325078;
    color: #eaedf1;
    opacity: 1;
}
.schedule-descript{
    text-align: justify;
}