/* ===== 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: 389.5px;
    z-index: 10;
}

.pc-left-bnr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== 中央コンテンツエリア ===== */
.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;
}

.instagram-bnr-wrap {
    margin-top: 40px;
    margin-bottom: 45px;
    padding: 0 15px;
}

.instagram-bnr-link {
    display: block;
    transition: opacity 0.2s ease;
}

.instagram-bnr-link:hover {
    opacity: 0.7;
}

.instagram-bnr-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== 出店メーカー ===== */
.maker-section {
    position: relative;
    background-color: #fce8eb;
    padding: 110px 15px 50px;
    background-image: url('../img/bg_makers_top.png');
    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;
}

.maker-list li::before {
    content: '●';
    color: #e83d48;
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 8px;
}

.maker-message-img {
    display: block;
    width: 288px;
    height: auto;
    margin: 28px auto 0;
}

.event-contents-section {
    padding-top: 95px;
    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 15px 0;
}

.event-contents-bnr {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.event-contents-bnr:last-child {
    margin-bottom: 0;
}

.faq-section {
    position: relative;
    margin-top: 15px;
    padding-top: 265px;
    padding-bottom: 100px;
    background-image: url('../img/faq_bg_under.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

.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 {
    margin-top: 40px;
    padding: 0 15px;
}

.coming-soon-img {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto;
}

.coming-soon-text {
    margin-top: 15px;
    color: #e83d48;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.access-section {
    margin-top: 30px;
    padding-top: 50px;
    padding-bottom: 15px;
    background-image: linear-gradient(to bottom, transparent 0 70px, #e73d48 70px), url('../img/access_bg_top.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, top center;
    background-size: 100% 100%, 100% auto;
}

.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: 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: 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;
    }
}
