/* ===== 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;
    scroll-behavior: smooth;
    -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 0;
}

.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-wrap {
    width: 100%;
    background-color: #fff;
}

.sakunen-illust {
    display: block;
    width: 235px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sakunen-video {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    margin-top: -5px;
    padding-bottom: 50px;
    background-color: #fff;
}

.sakunen-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== 入場方法 ===== */
.entry-section {
    background-color: #fff;
    padding: 40px 15px 30px;
    border: 5px solid #e83d48;
    margin-bottom: 30px;
}

.entry-inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.entry-title-img {
    display: block;
    width: 129px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 25px;
}

.entry-lead {
    color: #e83d48;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.entry-card {
    border-radius: 4px;
    padding: 25px 14px 30px;
    margin-bottom: 30px;
}

.entry-card--premium {
    background-color: #db3f46;
}

.entry-card--general {
    background-color: #f5a200;
    margin-bottom: 0;
}

.entry-card-title {
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 213px;
    min-height: 50px;
    margin: 0 auto 12px;
    padding: 4px 12px;
    background-image: url('../img/entry_kakko.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 213px auto;
}

.entry-kakko {
    display: none;
}

.entry-kakko--right {
    transform: scaleX(-1);
}

.entry-time,
.entry-price,
.entry-prce {
    width: 230px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.entry-line-img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
    margin: 13px auto;
}

.entry-time {
    display: block;
    margin-bottom: 12px;
}

.entry-time-img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.entry-time-sub {
    font-size: 20px;
    margin-left: 4px;
}

.entry-price {
    display: block;
    margin-bottom: 10px;
}

.entry-price-img {
    display: block;
    width: 225px;
    max-width: 100%;
    height: auto;
}

.entry-price-unit {
    font-size: 33px;
    margin-left: 4px;
}

.entry-icon {
    display: block;
    width: 27px;
    height: 27px;
    margin-right: 7px;
    flex-shrink: 0;
}

.entry-note {
    width: 225px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.entry-illust-row {
    position: relative;
    margin: 0 auto 30px;
    width: 225px;
    max-width: 225px;
}

.entry-illust-img {
    display: block;
    width: 100%;
    height: auto;
}

.entry-more-btn {
    width: 225px;
    max-width: 225px;
    height: 50px;
    border-radius: 13px;
    border: none;
    background-color: #f2659c;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 6px;
    padding: 0;
    box-shadow: 2px 2px 0 #fff;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

@media (hover: hover) {
    .entry-more-btn:hover {
        transform: translateY(3px);
        box-shadow: none;
    }
}

.entry-more-btn:active {
    transform: translateY(3px);
    box-shadow: none;
}

.entry-more-btn-icon {
    width: 22px;
    height: 20px;
    display: block;
}

.entry-warning-box {
    margin-top: 60px;
    background-color: #fff;
    border-radius: 6px;
    padding: 40px 12px 14px;
    position: relative;
    max-width: 295px;
    margin-inline: auto;
}

.entry-warning-icon {
    position: absolute;
    left: 50%;
    top: -31px;
    transform: translateX(-50%);
    width: 70px;
    height: 65px;
}

.entry-warning-main {
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 10px;
}

.entry-warning-main span,
.entry-warning-sub span {
    border-bottom: 3px solid #e83d48;
    display: inline-block;
}

.entry-warning-sub {
    color: #000;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 10px;
}

.entry-warning-foot {
    color: #000;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 900;
}

/* ===== プレミアム前売券 ===== */
.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 16px;
}

.maeuri-free-text {
    color: #e83d48;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.maeuri-ticket-stub {
    margin-bottom: 30px;
}

.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: 30px;
}

.maeuri-ticket-tap-desc {
    display: block;
    width: 256px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
}

.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: 0;
    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__item--niigata {
    margin-bottom: 15px;
}

.event-accord__item--limited {
    margin-bottom: 15px;
}

.event-accord__body-inner--limited.accordion__body-inner {
    padding: 0 15px 15px;
}

.event-accord__limited-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-accord__limited-item {
    margin: 0;
}

.event-accord__limited-img {
    display: block;
    width: 100%;
    height: auto;
}

.event-accord__limited-text {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.event-accord__item--maker .event-accord__limited-price {
    display: block;
    margin-top: 6px;
}

.event-accord__trigger--niigata.accordion__trigger {
    height: 66px;
}

.event-accord__text--niigata {
    font-size: 23px;
    letter-spacing: 0.02em;
    transform: scaleX(0.95);
    transform-origin: left center;
}

.event-accord__icon--niigata {
    width: 23px;
    height: 23px;
}

.event-accord__body--niigata.accordion__body {
    background-color: #fff;
}

.event-accord__body-inner--niigata.accordion__body-inner {
    padding-top: 2px;
}

.event-accord__niigata-note {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.3;
    margin-bottom: 14px !important;
}

.event-accord__niigata-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-accord__niigata-list li {
    background-color: #eceff7;
    border-radius: 6px;
    margin-bottom: 9px;
}

.event-accord__niigata-list li:last-child {
    margin-bottom: 0;
}

.event-accord__niigata-open {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

@media (hover: hover) {
    .event-accord__niigata-open:hover {
        opacity: 0.75;
    }
}

.event-accord__niigata-list li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.collabo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overscroll-behavior: contain;
}

.collabo-modal.is-open {
    display: flex;
}

.collabo-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.collabo-modal__panel {
    position: relative;
    width: 100%;
    max-width: 360px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    background-color: #fff;
    border-radius: 6px;
    padding: 22px 14px 20px;
    z-index: 1;
}

.collabo-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}

.collabo-modal__close img {
    display: block;
    width: 26px;
    height: 26px;
}

.collabo-modal__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin: 4px 0 14px;
}

.collabo-modal__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.collabo-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.collabo-modal__list li {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    padding-left: 1.1em;
    text-indent: -1.1em;
}

.collabo-modal__list li::before {
    content: "● ";
}

.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;
}

.event-accord__item--workshop {
    margin-bottom: 15px;
}

.event-accord__item--glocal {
    margin-bottom: 15px;
}

.event-accord__item--glocal .event-accord__text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    transform: scaleX(0.8);
    transform-origin: left center;
    white-space: nowrap;
}

.event-accord__body-inner--glocal.accordion__body-inner {
    padding: 0 15px 15px;
}

.event-accord__glocal-lead {
    margin: 10px 0 16px !important;
    color: #da3f46;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.event-accord__glocal-overview-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 16px 0 40px;
}

.event-accord__glocal-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-accord__glocal-item {
    margin: 0;
}

.event-accord__glocal-item .event-accord__workshop-img + .event-accord__workshop-brand {
    margin-top: 10px !important;
}

.event-accord__glocal-new {
    margin: 0 0 20px !important;
    text-align: center;
    color: #da3f46;
    font-size: 25px;
    font-weight: 700;
    background-color: #fce6e9;
    line-height: 1.3;
    padding: 14px 10px;
}

.event-accord__body-inner--workshop.accordion__body-inner {
    padding: 0 15px 15px;
}

.event-accord__workshop-note {
    margin: 10px 0 45px !important;
    background-color: #fff100;
    color: #da3f46;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    padding: 12px 10px;
}

.event-accord__workshop-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.event-accord__workshop-item {
    margin: 0;
}

.event-accord__workshop-img {
    display: block;
    width: 100%;
    height: auto;
}

.event-accord__workshop-price {
    margin: 10px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    color: #da3f46;
    line-height: 1;
    font-weight: 700;
}

.event-accord__workshop-ticket-icon {
    width: 79px;
    height: 22.5px;
    margin-right: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.event-accord__workshop-price-num {
    font-size: 25px;
    font-weight: 700;
    display: inline-block;
    transform: translateY(-2px);
}

.event-accord__workshop-price-yen {
    font-size: 15px;
    font-weight: 700;
    margin-left: 2px;
    display: inline-block;
    transform: translateY(2px);
}

.event-accord__workshop-price-tax {
    font-size: 16.5px;
    font-weight: 700;
    margin-left: 2px;
    display: inline-block;
    transform: translateY(2px);
}

.event-accord__workshop-brand,
.event-accord__workshop-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 3px !important;
}

.event-accord__workshop-name {
    margin-bottom: 8px !important;
}

.event-accord__workshop-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.event-map-section {
    background-color: #2badd7;
    background-image: url('../img/event_contents_bg_bottom.png'), url('../img/event_map_bg_bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100% auto, 100% auto;
    padding: 80px 15px 50px;
}

.event-map-section__inner {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.event-map-title {
    display: block;
    width: 198px;
    height: auto;
    margin: 0 auto 22px;
}

.event-map-thumb {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.event-map-thumb-btn {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.event-map-download-btn {
    width: 100%;
    height: 55px;
    border: 1.5px solid #26499d;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 3px 3px 0 #26499d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.event-map-download-btn__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #26499d;
}

.event-map-download-btn__icon {
    width: 22px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (hover: hover) {
    .event-map-download-btn:hover {
        transform: translateY(3px) translateX(2px);
        box-shadow: none;
    }
}

.event-map-download-btn:active {
    transform: translateY(3px) translateX(2px);
    box-shadow: none;
}

.event-map-tap {
    display: block;
    width: 100px;
    height: auto;
    margin: -16px auto 0;
    position: relative;
    top: 24px;
}

.event-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    box-sizing: border-box;
    z-index: 2100;
    align-items: center;
    justify-content: center;
    padding: 50px 24px;
}

.event-map-modal.is-open {
    display: flex;
}

.event-map-modal__backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.event-map-modal__panel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - 100px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.event-map-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    padding: 2px;
    cursor: pointer;
}

.event-map-modal__close img {
    display: block;
    width: 26px;
    height: 26px;
}

.event-map-modal__viewport {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
    background: #fff;
}

.event-map-modal__image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .event-map-modal {
        inset: 0;
        padding: 0 10px;
    }

    .event-map-modal__panel {
        width: 100%;
        max-height: 100vh;
    }

    .event-map-modal__viewport {
        height: auto;
        padding: 50px 0;
        box-sizing: border-box;
    }

}

.faq-section {
    position: relative;
    margin-top: -1px;
    padding-top: 60px;
    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_bg2.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%;
}

.thanks-90th-wrap {
    padding: 35px 0;
    background-color: #fff;
}

.thanks-90th-img {
    display: block;
    width: 323px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.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: 20.5px; }
.pc-nav__list li:nth-child(4) a img { height: 15.5px; }
.pc-nav__list li:nth-child(5) a img { height: 20.5px; }
.pc-nav__list li:nth-child(6) a img { height: 15.5px; }
.pc-nav__list li:nth-child(7) a img { height: 20.5px; }
.pc-nav__list li:nth-child(8) a img { height: 22.5px; }
.pc-nav__list li:nth-child(9) a img { height: 17.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) {
    html.is-sp-menu-open,
    body.is-sp-menu-open {
        overflow: hidden;
        height: 100%;
    }

    body.is-sp-menu-open {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }

    .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 calc(24px + env(safe-area-inset-bottom));
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .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: 16px 0 14px;
        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: 22.5px; }
    .sp-nav__list li:nth-child(4) a img { height: 15.5px; }
    .sp-nav__list li:nth-child(5) a img { height: 20.5px; }
    .sp-nav__list li:nth-child(6) a img { height: 15.5px; }
    .sp-nav__list li:nth-child(7) a img { height: 23.5px; }
    .sp-nav__list li:nth-child(8) a img { height: 24.5px; }
    .sp-nav__list li:nth-child(9) a img { height: 18.5px; }

    .sp-menu__teket-btn {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 24px;
        width: 225px;
        height: 50px;
        min-height: 50px;
        flex-shrink: 0;
    }

    .sp-menu__teket-btn:hover,
    .sp-menu__teket-btn:active {
        transform: none;
    }

    .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;
    }
}

@media (max-height: 700px) and (min-width: 1000px) {
    .pc-nav {
        top: 40px;
    }
    .pc-nav__list a {
        padding: 16px 0;
    }
}