/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    background-image: url('../img/web_bg.svg');
    background-repeat: repeat;
    background-size: auto;
    overflow: hidden;
    height: 100vh;
}

/* ===== PC: 左バナー ===== */
.pc-left-bnr {
    position: fixed;
    left: calc(50% - 565px);
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 440px;
    z-index: 10;
}

.pc-left-bnr__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pc-left-bnr__ticket-btn {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 226px;
    height: 49.5px;
    border: 1.5px solid #000;
    border-radius: 15px;
    background-color: #e83d48;
    box-shadow: 2px 2px 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.pc-left-bnr__ticket-btn-text {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.pc-left-bnr__ticket-btn-icon {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (hover: hover) {
    .pc-left-bnr__ticket-btn:hover {
        transform: translateX(calc(-50% + 3px)) translateY(3px);
        box-shadow: none;
    }
}

.pc-left-bnr__ticket-btn:active {
    transform: translateX(calc(-50% + 3px)) translateY(3px);
    box-shadow: none;
}

/* ===== 中央コンテンツエリア ===== */
.content-area {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 390px;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 20;
}

.scroll-anchor {
    display: block;
    height: 0;
}

.content-area::-webkit-scrollbar {
    display: none;
}

/* ===== MV ===== */
.mv-img {
    display: block;
    width: 100%;
    height: auto;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}

/* ===== CATCH ===== */
.catch-wrap {
    padding: 0 15px;
    scroll-margin-top: 30px;
}

.catch-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== テキストブロック ===== */
.text-block {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0 15px;
    text-align: center;
    line-height: 1.7;
}

.text-block p {
    margin-bottom: 1.5em;
}

.text-block__accent {
    color: #e83d48;
    font-weight: 700;
}

.text-block__image-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 316px;
    margin: 25px auto;
}

.text-block__image {
    display: block;
    width: auto;
    height: 23.5px;
    transform-origin: center center;
    animation: text-block-bounce 2s ease-in-out infinite;
    will-change: transform;
}

.text-block__image--1 {
    animation-delay: 0s;
}

.text-block__image--2 {
    animation-delay: 0.2s;
}

.text-block__image--3 {
    animation-delay: 0.4s;
}

@keyframes text-block-bounce {
    0%,
    70%,
    100% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(-15px);
    }

    30% {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .text-block__image {
        animation: none;
    }
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* ===== アコーディオン ===== */
.accordion-wrap {
    padding: 0 15px;
    margin-bottom: 70px;
}

.accordion {
    margin: 0;
}

.accordion__item {
    overflow: hidden;
    border-radius: 10px;
}

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background-color: #e83d48;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .accordion__trigger:hover {
        opacity: 0.7;
    }
}

.accordion__title-img {
    display: block;
    height: 28px;
    width: auto;
}

.accordion__icon {
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 横線（常時表示） */
.accordion__icon::before {
    width: 14px;
    height: 2px;
}

/* 縦線（閉じているとき表示、開くと非表示） */
.accordion__icon::after {
    width: 2px;
    height: 14px;
}

.accordion__item.is-open .accordion__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__body {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    background-color: #e83d48;
    border-radius: 0 0 10px 10px;
}

.accordion__body-inner {
    padding: 16px 20px 24px;
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.accordion__body-inner p {
    margin-bottom: 1.2em;
}

.accordion__body-inner p:last-child {
    margin-bottom: 0;
}

.sakunen-illust {
    display: block;
    width: 235px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sakunen-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    margin-top: -5px;
}

.sakunen-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== プレミアム前売券 ===== */
.maeuri-section {
    background-color: #fff;
    padding: 40px 15px 0;
    border: 5px solid #e83d48;
}

.maeuri-inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.maeuri-ticket-badge {
    display: inline-block;
    background-color: #e83d48;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 18px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.maeuri-title-img {
    display: block;
    width: 262px;
    height: auto;
    margin: 0 auto 12px;
}

.maeuri-hanbai-start {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.maeuri-date-img {
    display: block;
    width: 226px;
    height: auto;
    margin: 0 auto 8px;
}

.maeuri-free-text {
    color: #e83d48;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.maeuri-ticket-stub {
    margin-bottom: 20px;
}

.maeuri-adult-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.maeuri-800-img {
    display: block;
    width: 345px;
    height: auto;
    margin: 0 auto 8px;
    max-width: 100%;
}

.maeuri-cancel-note {
    font-size: 12px;
    color: #555;
}

.maeuri-tokuten-bar {
    background-color: #e83d48;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding: 12px 0;
    margin: 30px -15px 0;
}

.maeuri-tokuten-list {
    padding: 20px 0 0;
    text-align: left;
}

.maeuri-tokuten-item {
    margin-bottom: 24px;
}

.maeuri-tokuten-heading {
    font-size: 17px;
    font-weight: 700;
    color: #e83d48;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.maeuri-tokuten-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.maeuri-tokuten-time {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    padding-left: 26px;
}

.maeuri-tokuten-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 6px;
    padding-left: 26px;
}

.maeuri-novelty-name {
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 26px;
}

.maeuri-novelty-note {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 26px;
}

.maeuri-novelty-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.maeuri-tento-bar,
.maeuri-web-bar {
    background-color: #e83d48;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding: 12px 0;
    margin: 0 -15px;
    text-align: center;
}

.maeuri-tento-body,
.maeuri-web-body {
    padding: 20px 0 30px;
    text-align: left;
}

.maeuri-tento-list {
    list-style: none;
    margin-bottom: 14px;
}

.maeuri-tento-list li {
    padding-left: 1.2em;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.maeuri-tento-list li::before {
    content: "●";
    color: #e83d48;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 0.55em;
}

.maeuri-tento-note {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}

@keyframes ticket-shake {
    0%   { transform: rotate(0deg); }
    82%  { transform: rotate(0deg); }
    85%  { transform: rotate(-3deg); }
    88%  { transform: rotate(3deg); }
    91%  { transform: rotate(-2deg); }
    94%  { transform: rotate(2deg); }
    97%  { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

.maeuri-sample-ticket-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    animation: ticket-shake 2.5s ease-in-out infinite;
    transform-origin: center center;
}

.maeuri-web-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
}

.maeuri-teket-btn {
    position: relative;
    width: 341.5px;
    height: 75px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
    left: auto;
    bottom: auto;
}

.maeuri-notes {
    margin-top: 30px;
    border: 1px solid #aaaaaa;
    border-radius: 10px;
    padding: 16px 18px;
}

.maeuri-notes-title {
    font-size: 25px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
}

.maeuri-notes-list {
    list-style: none;
    padding: 0;
}

.maeuri-notes-list li {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 6px;
}

.maeuri-notes-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 0.45em;
}

.maeuri-teket-btn .pc-left-bnr__ticket-btn-text {
    font-size: 23px;
}

.maeuri-teket-btn .pc-left-bnr__ticket-btn-icon {
    width: 17.5px;
    height: 17px;
}

@media (hover: hover) {
    .maeuri-teket-btn:hover {
        transform: translateY(3px);
        box-shadow: none;
    }
}

.maeuri-teket-btn:active {
    transform: translateY(3px);
    box-shadow: none;
}

/* ===== 出店メーカー ===== */
.maker-section {
    position: relative;
    background-color: #fce8eb;
    padding: 50px 15px 10px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.maker-title-wrap {
    text-align: center;
    margin-bottom: 22px;
}

.maker-title-img {
    display: block;
    width: 195px;
    height: auto;
    margin: 0 auto 8px;
}

.maker-note {
    font-size: 13px;
    font-weight: 500;
}

.maker-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 0;
}

.maker-list li {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 4px 4px 20px;
    position: relative;
    line-height: 1.4;
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 4px;
}

.maker-list li::before {
    content: '●';
    color: #e83d48;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 8px;
}

.maker-kome-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    margin-left: auto;
}

.maker-kome-note {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.maker-message-img {
    display: block;
    width: 288px;
    height: auto;
    margin: 28px auto 0;
}

.event-contents-section {
    padding-top: 0;
    background-image: url('../img/event_bg3.png');
    background-repeat: repeat-y;
    background-position: center 1125px;
    background-size: 100% auto;
}

.event-contents-bg {
    padding-top: 95px;
    padding-bottom: 30px;
    background-image: url('../img/event_bg2.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.event-contents-title {
    display: block;
    width: 303px;
    height: auto;
    margin: 0 auto;
}

.event-contents-bnr-wrap {
    padding: 25px 0 0;
}

.event-contents-bnr {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    padding: 0 15px;
}

.event-contents-bnr:last-child {
    margin-bottom: 0;
}

/* ===== イベントコンテンツ アコーディオン ===== */
.event-accord__item {
    background-color: #fff;
    border: 1.5px solid #000;
    border-radius: 15px;
    margin-bottom: 15px;
    margin-right: 18px;
    margin-left: 15px;
    overflow: hidden;
    filter: drop-shadow(3px 3px 0 #000);
    transition: transform 0.16s ease, filter 0.16s ease;
}

.event-accord__item.is-open {
    border-radius: 15px;
}

@media (hover: hover) {
    .event-accord__item:not(.is-open):hover {
        transform: translateY(3px) translateX(2px);
        filter: none;
    }
}

.event-accord__item:not(.is-open):active {
    transform: translateY(3px) translateX(2px);
    filter: none;
}

.event-accord__trigger.accordion__trigger {
    background-color: #fff;
    padding: 0 17px 0 25px;
    height: 66px;
    justify-content: space-between;
    gap: 0;
    border-radius: 15px;
}

.event-accord__text {
    font-size: 23px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.event-accord__text--labo {
    display: inline-block;
    transform: scaleX(0.94);
    transform-origin: left center;
}

.event-accord__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.event-accord__item.is-open .event-accord__icon {
    transform: rotate(180deg);
}

.event-accord__body.accordion__body {
    background-color: #fff;
}

.event-accord__body-inner.accordion__body-inner {
    color: #000;
    padding: 0 20px 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.event-accord__price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.event-accord__price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 0;
    position: relative;
    padding-left: 18px;
}

.event-accord__price-list li::before {
    content: "●";
    color: #26499d;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.event-accord__price-name {
    flex: 1;
}

.event-accord__price-val {
    white-space: nowrap;
    margin-left: 12px;
}

.event-accord__ticket-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fce8eb;
    border-radius: 5px;
    padding: 12px 14px;
    margin-top: 4px;
}

.event-accord__ticket-img {
    flex-shrink: 0;
}

.event-accord__ticket-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #e83d48;
}

.event-accord__guest {
    text-align: center;
    margin-bottom: 28px;
}

.event-accord__guest:last-child {
    margin-bottom: 0;
}

.event-accord__guest-img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px auto 12px;
}

.event-accord__guest-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-accord__guest-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
}

.event-accord__labo {
    margin-bottom: 45px;
}

.event-accord__labo:last-child {
    margin-bottom: 0;
}

.event-accord__labo-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 14px;
}

.event-accord__labo-img--sub {
    max-width: 128px;
    margin-top: -2px;
    margin-bottom: 14px;
}

.event-accord__labo-name {
    font-size: 20px;
    font-weight: 700;
    color: #da3f46;
    margin-bottom: 10px !important;
}

.event-accord__labo-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.event-accord__food {
    margin-bottom: 45px;
}

.event-accord__food.second {
    margin-bottom: 25px;
}

.event-accord__food:last-child {
    margin-bottom: 0;
}

.event-accord__food-img {
    display: block;
    width: 100%;
    max-width: 235px;
    height: auto;
    margin: 0 auto 14px;
}

.event-accord__food-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px !important;
}

.event-accord__food-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.faq-section {
    position: relative;
    margin-top: 0;
    padding-top: 280px;
    padding-bottom: 100px;
    background-image: url('../img/faq_bg_under.png'), linear-gradient(to top, #fff 100px, transparent 100px);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, bottom center;
    background-size: 100% auto, 100% 100%;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/faq_bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 100px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 calc(100% - 100px), transparent 100%);
}

.faq-section > * {
    position: relative;
    z-index: 1;
}

.faq-title {
    display: block;
    width: 214px;
    height: auto;
    margin: 0 auto;
}

.coming-soon-wrap,.instagram-bnr-wrap {
    padding: 40px 15px 0;
    background-color: #fff;
}

.instagram-bnr-wrap {
    padding-bottom: 30px;
}

.coming-soon-img {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto;
}

.instagram-bnr-wrap img {
    display: block;
    width: 360px;
    height: auto;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.instagram-bnr-wrap img:hover {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.coming-soon-text {
    margin-top: 15px;
    color: #e83d48;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.access-section {
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 15px;
    background-image: linear-gradient(to bottom, transparent 0 70px, #e73d48 70px), url('../img/access_bg_top.png'), linear-gradient(to bottom, #fff 100px, transparent 100px);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top center, top center, top center;
    background-size: 100% 100%, 100% auto, 100% 100%;
}

.access-title {
    display: block;
    width: 250px;
    height: auto;
    margin: 0 auto;
}

.access-address {
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.access-map-wrap {
    margin-top: 25px;
    padding: 0 0 0;
}

.access-map-wrap iframe {
    display: block;
    width: 100%;
    height: 262px;
    border: 0;
}

.access-car-container {
    margin-top: 15px;
    padding: 0 15px;
}
.access-car-container + .access-car-container {
    margin-top: 15px;
}

.access-car-column {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 75px 15px 25px;
}

.access-car-title {
    position: absolute;
    top: -5px;
    left: -3px;
    right: -5px;
    width: auto;
    max-width: calc(100% - 2px);
    height: auto;
    display: block;
}
.access-car-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.access-car-list__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
}
.access-car-list__marker {
    color: #e73d48;
    flex-shrink: 0;
}
.access-car-list__text {
    color: #000;
}

.contact-section {
    margin: 0;
    padding: 30px 15px;
    text-align: center;
    background-color: #fff;
}

.contact-title {
    display: block;
    width: 230px;
    height: auto;
    margin: 0 auto;
}

.contact-heading {
    margin: 23px 0 0;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
}

.contact-address {
    margin: 15px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

.contact-tel {
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
}

.contact-tel__label {
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    top: 3px;
}

.contact-tel__number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.contact-tel__link {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

.bungukan-bnr-section {
    padding: 35px 15px;
    background-color: #ebeff6;
    border-top: 1px solid #323237;
}

.bungukan-bnr-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.bungukan-bnr-link {
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.bungukan-bnr-link:hover {
    opacity: 0.7;
}

.bungukan-bnr-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 100%;
}

.copyright-section {
    background-color: #323237;
    padding: 15px 0 13px;
}

.copyright-text {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* ===== FAQ アコーディオン ===== */
.faq-accordion-wrap {
    margin-top: 30px;
    padding: 0 15px;
}

.faq-accordion-wrap .accordion__item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-accordion-wrap .accordion__item:last-child {
    margin-bottom: 0;
}

.faq-accordion-wrap .accordion__item + .accordion__item {
    margin-top: 10px;
}

.faq-accordion-wrap .accordion__trigger {
    background-color: #fff;
    padding: 15px;
    gap: 14px;
}

.faq-accordion-wrap .accordion__icon::before,
.faq-accordion-wrap .accordion__icon::after {
    background-color: #2badd7;
}

.faq-accordion-wrap .accordion__body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.faq-accordion-wrap .accordion__body-inner {
    padding: 0 15px 16px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.faq-accordion-wrap .accordion__body-inner p {
    margin-bottom: 0;
}

.faq-accordion__icon-img {
    flex-shrink: 0;
    height: 18px;
    width: auto;
    display: block;
}

.faq-accordion__a-row .faq-accordion__icon-img {
    position: relative;
    top: 3px;
}

.faq-accordion__q-text {
    flex: 1;
    color: #2badd7;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.faq-accordion__a-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid #cccccc;
    padding-top: 15px;
    margin-bottom: 10px;
}

.faq-accordion__a-title {
    flex: 1;
    color: #e83d48;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.faq-accordion__a-body {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 33px;
}

/* ===== PC: 右ナビゲーション ===== */
.pc-nav {
    position: fixed;
    left: calc(50% + 282.5px);
    top: 80px;
    z-index: 10;
    background-image: url('../img/menu_bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 8px;
    padding: 20px 34px 20px;
    min-width: 160px;
}

.pc-nav__icon {
    display: block;
    position: absolute;
    top: -30px;
    right: 30px;
    width: 96.5px;
    height: 56.5px;
}

.pc-nav__list {
    list-style: none;
    margin-top: 10px;
}

.pc-nav__list li {
    border-bottom: 1px solid #e83d48;
}

.pc-nav__list li:last-child {
    border-bottom: none;
}

.pc-nav__list a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pc-nav__list a img {
    display: block;
    width: auto;
    height: auto;
}

/* 各メニュー画像の高さ個別指定 */
.pc-nav__list li:nth-child(1) a img { height: 15px; }
.pc-nav__list li:nth-child(2) a img { height: 18.5px; }
.pc-nav__list li:nth-child(3) a img { height: 15.5px; }
.pc-nav__list li:nth-child(4) a img { height: 20.5px; }
.pc-nav__list li:nth-child(5) a img { height: 15.5px; }
.pc-nav__list li:nth-child(6) a img { height: 20.5px; }
.pc-nav__list li:nth-child(7) a img { height: 20.5px; }

.pc-nav__list a:hover {
    opacity: 0.7;
}

/* ===== SP: 767.98px 以下 ===== */
@media (max-width: 767.98px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }

    .pc-left-bnr,
    .pc-nav {
        display: none;
    }

    .content-area {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow-y: visible;
        overflow-x: hidden;
        -ms-overflow-style: auto;
        scrollbar-width: auto;
    }

    .content-area::-webkit-scrollbar {
        display: revert;
    }

    .contact-tel__link {
        pointer-events: auto;
    }
}

/* ===== SP: ハンバーガーメニュー ===== */
.sp-menu-btn,
.sp-menu-overlay {
    display: none;
}

@media (max-width: 767.98px) {
    .sp-menu-btn {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1000;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        width: 55px;
        height: 55px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .sp-menu-btn img {
        display: block;
        width: 55px;
        height: 55px;
    }

    .sp-menu-overlay {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.97);
        overflow-y: auto;
        padding: 60px 20px 40px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .sp-menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .sp-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        width: 55px;
        height: 55px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .sp-menu-close img {
        display: block;
        width: 55px;
        height: 55px;
    }

    .sp-nav__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        width: 100%;
        max-width: 300px;
    }

    .sp-nav__list li {
        width: 100%;
        border-bottom: 1px solid #e83d48;
        text-align: center;
    }

    .sp-nav__list li:last-child {
        border-bottom: 1px solid #e83d48;
    }

    .sp-nav__list a {
        display: block;
        padding: 20px 0;
        text-decoration: none;
        text-align: center;
    }

    .sp-nav__list a img {
        display: inline-block;
        width: auto;
        height: auto;
    }

    .sp-nav__list li:nth-child(1) a img { height: 15px; }
    .sp-nav__list li:nth-child(2) a img { height: 18.5px; }
    .sp-nav__list li:nth-child(3) a img { height: 15.5px; }
    .sp-nav__list li:nth-child(4) a img { height: 20.5px; }
    .sp-nav__list li:nth-child(5) a img { height: 15.5px; }
    .sp-nav__list li:nth-child(6) a img { height: 20.5px; }
    .sp-nav__list li:nth-child(7) a img { height: 20.5px; }

    .sp-menu__teket-btn {
        margin-top: 30px;
        width: 225px;
        height: 50px;
    }

    .sp-menu__teket-btn .pc-left-bnr__ticket-btn-text {
        font-size: 16px;
    }

    .sp-menu__teket-btn .pc-left-bnr__ticket-btn-icon {
        width: 12px;
        height: 12px;
    }
}
