:root {
    --color-wine-rose: #9A6566;
    /* 落ち着いた赤・アクセント */
    --color-mint-cream: #CDE6C6;
    /* 淡いグリーン */
    --color-vanilla-beige: #EED7B4;
    /* やさしいベージュ */
    --color-dusty-blue: #B1C0CE;
    /* くすみブルー */
    --color-powder-pink: #F8ECEC;
    /* ほぼ白のピンク */
    --white: #fff;

    --padding: 5%;

    --animation-ease: cubic-bezier(0.78, 0.02, 0.24, 0.97);
}

/* LAYOUT */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px !important;
    background: var(--color-powder-pink);
    color: #000;
}

a {
    color: #000;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.05;
}

p {
    line-height: 1.8;
}

.contents-wrrap {
    position: relative;
}

.main-wrap {
    position: relative;
}

.main {
    max-width: 480px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

@media(min-width: 480px) {
    .main {
        padding-left: 0;
    }
}

.inner {
    padding: var(--padding);
}

@media(min-width: 1180px) {
    .inner {
        padding: var(--padding) 10%;
    }
}

.pc-only-lp {
    display: none;
}

@media(min-width: 1180px) {
    .sp-only-lp {
        display: none;
    }

    .pc-only-lp {
        display: block;
    }
}

/* Loading */
.loading {
    position: fixed;
    inset: 0;
    background: var(--color-powder-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.loading-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loading-logo {
    max-width: 160px;
    margin: auto;
}

.progress-bar {
    width: 200px;
    margin: auto;
    height: 4px;
    background: #fff;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--color-wine-rose);
}

.percent {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}


/* PARTS */
.title {
    font-weight: 900;
    font-family: 'Poppins';
    font-size: 40px;
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
    height: 40px;
    text-align: center;
}

.title span {
    transition: .5s;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    width: 100%;
    word-break: keep-all;
}

.title.active span {
    top: 0;
}

.pc-logo {
    position: fixed;
    left: 10%;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    margin: auto;
}

.pc-menu {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 0;
    border-radius: 32px 0 0 0;
    background: var(--color-wine-rose);
    padding: 40px 0;
    width: 300px;
}

.pc-menu ul {
    display: grid;
    gap: 20px;
}

.pc-menu a {
    color: #fff;
    transition: .3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.2;
}

.pc-menu a:hover {
    text-decoration: none;
    opacity: .7;
}

.pc-menu a span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

/* MENU */
.side-menu {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 42px;
    height: 100vh;
    background: var(--color-wine-rose);
    transform: translateX(-42px);
    opacity: 0;
}

.side-menu.active {
    opacity: 1;
    transform: translateX(0);
}

@media(min-width: 480px) {
    .side-menu {
        left: calc((100% - 480px) / 2);
    }
}

.hamburger {
    position: relative;
    width: 36px;
    height: 36px;
    margin: 10px auto 0;
}

.hamburger span {
    height: 2px;
    width: 22px;
    background: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s var(--animation-ease);
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    top: 14px;
    transform: rotate(35deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-35deg);
}

.side-menu ul {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.side-menu li a {
    writing-mode: vertical-rl;
    font-weight: bold;
    font-size: 10px;
    font-family: "Poppins";
    position: relative;
    overflow: hidden;
    display: inline-block;
}

@supports (-webkit-touch-callout: none) {
    .side-menu li a {
        transform: translateX(-8px);
    }
}

.side-menu li a .hidden {
    color: transparent;
}

.side-menu li a .visible {
    position: absolute;
    top: 0;
    right: 0;
    transition: .5s var(--animation-ease);
    color: var(--white);
    transition-delay: 0.5s;
}

.side-menu-ul.active li a .visible {
    right: 100%;
    transition-delay: 0s;
}

.open-menu {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-wine-rose);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s var(--animation-ease);
    transform: translateX(-100%);
    transition-delay: 0.5s;
}

.open-menu.active {
    transform: translateX(0);
    transition-delay: 0s;
}

.open-menu ul {
    display: grid;
    gap: 2.5rem;
    padding-left: 100px;
}

.open-menu ul li {
    overflow: hidden;
    position: relative;
    height: 32px;
    width: 100%;
}

.open-menu ul a {
    color: #fff;
    font-weight: 900;
    font-family: 'Poppins';
    font-size: 32px;
    position: absolute;
    transform: translateY(100%);
    transition: .5s var(--animation-ease);
    line-height: 1;
}

.open-menu ul li:nth-child(1) a {
    transition-delay: 0;
}

.open-menu ul li:nth-child(2) a {
    transition-delay: 0;
}

.open-menu ul li:nth-child(3) a {
    transition-delay: 0;
}

.open-menu ul li:nth-child(4) a {
    transition-delay: 0;
}

.open-menu ul li:nth-child(5) a {
    transition-delay: 0;
}

.open-menu.active ul li a {
    transform: translateY(0);
}

.open-menu.active ul li:nth-child(1) a {
    transition-delay: 0.3s;
}

.open-menu.active ul li:nth-child(2) a {
    transition-delay: 0.4s;
}

.open-menu.active ul li:nth-child(3) a {
    transition-delay: 0.5s;
}

.open-menu.active ul li:nth-child(4) a {
    transition-delay: 0.6s;
}

.open-menu.active ul li:nth-child(5) a {
    transition-delay: 0.7s;
}

/* FOOTER */
.bg-footer-bnr {
    margin-top: 0;
}

.footer {
    background: var(--color-powder-pink);
    max-width: 480px;
    margin: auto;
    position: relative;
    z-index: 11;
}

@media(min-width:768px) {
    .footer {
        max-width: none;
    }
}

/* CONTENTS */

/* RIGHT SCROLL TEXT */
.scroll {
    position: fixed;
    z-index: 3;
    right: 0px;
    top: 0;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    opacity: 0;
    transition: 1s var(--animation-ease);
    width: 20px;
    color: var(--color-dusty-blue);
}

@media(min-width: 480px) {
    .scroll {
        right: calc(50% - 240px);
    }
}

@media(min-width: 1180px) {
    .scroll {
        position: fixed;
        top: 0;
        background: var(--color-dusty-blue);
        color: #fff;
    }

    .scroll2 {
        position: fixed;
        z-index: 3;
        left: calc(50% - 240px);
        top: 0;
        background: var(--color-dusty-blue);
        color: #fff;
        opacity: 0;
        transition: 1s var(--animation-ease);
        height: 100vh;
        min-height: 100vh;
    }
}

.scroll.active,
.scroll2.active {
    opacity: 1;
}

/* 流れる本体 */
.scroll .v-marquee {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: max-content;
    align-items: center;
    will-change: transform;
    animation: v-scroll 50s linear infinite both;
}

.scroll2 .v-marquee {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: max-content;
    align-items: center;
    will-change: transform;
    animation: v-scroll-reverse 50s linear infinite both;
}

/* テキスト */
.scroll .marquee-text,
.scroll2 .marquee-text {
    writing-mode: vertical-rl;
    display: block;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Poppins';
    letter-spacing: 0.5rem;

}

@keyframes v-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes v-scroll-reverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.main-bg {
    position: fixed;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

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

.main-bg.active {
    opacity: 1;
}

@media(min-width: 480px) {
    .main-bg {
        width: 480px;
        left: calc((100% - 480px) / 2);
    }
}

/* KV */
.kv {
    position: relative;
    z-index: 2;
    padding-left: 42px;
    padding-bottom: 100vh;
}

@media(min-width: 1180px) {
    .kv {
        padding-left: 0;
    }
}

.l-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80vh;
}

/* Base line style */
[class^="line"] {
    position: absolute;
    z-index: 2;
    width: 0;
    transition: 1s var(--animation-ease);
    opacity: 0.7;
}

.kv .line01 {
    left: -30%;
    top: 5%;
    height: 4px;
    background: var(--color-vanilla-beige);
    transform: rotate(5deg);
}

.kv .line02 {
    right: -30%;
    top: 8%;
    height: 2px;
    background: var(--color-mint-cream);
    transform: rotate(-3deg);
}

.kv .line03 {
    left: -30%;
    top: 12%;
    height: 8px;
    background: var(--color-dusty-blue);
    transform: rotate(2deg);
}

.kv .line04 {
    right: -30%;
    top: 15%;
    height: 2px;
    background: var(--color-wine-rose);
    transform: rotate(-8deg);
    opacity: 0.5;
}

.kv .line05 {
    left: -30%;
    top: 20%;
    height: 5px;
    background: var(--color-mint-cream);
    transform: rotate(12deg);
}

.kv .line06 {
    right: -30%;
    top: 24%;
    height: 10px;
    background: var(--color-vanilla-beige);
    transform: rotate(-15deg);
}

.kv .line07 {
    left: -30%;
    top: 28%;
    height: 3px;
    background: var(--color-dusty-blue);
    transform: rotate(7deg);
}

.kv .line08 {
    right: -30%;
    top: 32%;
    height: 6px;
    background: var(--color-wine-rose);
    transform: rotate(-5deg);
    opacity: 0.3;
}

.kv .line09 {
    left: -30%;
    top: 35%;
    height: 2px;
    background: var(--color-vanilla-beige);
    transform: rotate(10deg);
}

.kv .line10 {
    right: -30%;
    top: 38%;
    height: 12px;
    background: var(--color-mint-cream);
    transform: rotate(-2deg);
}

.kv .line11 {
    left: -30%;
    top: 42%;
    height: 4px;
    background: var(--color-dusty-blue);
    transform: rotate(4deg);
}

.kv .line12 {
    right: -30%;
    top: 45%;
    height: 8px;
    background: var(--color-wine-rose);
    transform: rotate(-12deg);
    opacity: 0.4;
}

.kv .line13 {
    left: -30%;
    top: 48%;
    height: 15px;
    background: var(--color-vanilla-beige);
    transform: rotate(8deg);
}

.kv .line14 {
    right: -30%;
    top: 52%;
    height: 3px;
    background: var(--color-mint-cream);
    transform: rotate(-6deg);
}

.kv .line15 {
    left: -30%;
    top: 55%;
    height: 6px;
    background: var(--color-dusty-blue);
    transform: rotate(15deg);
}

.kv .line16 {
    right: -30%;
    top: 58%;
    height: 2px;
    background: var(--color-wine-rose);
    transform: rotate(-4deg);
    opacity: 0.2;
}

.kv .line17 {
    left: -30%;
    top: 62%;
    height: 10px;
    background: var(--color-vanilla-beige);
    transform: rotate(3deg);
}

.kv .line18 {
    right: -30%;
    top: 65%;
    height: 4px;
    background: var(--color-mint-cream);
    transform: rotate(-10deg);
}

.kv .line19 {
    left: -30%;
    top: 68%;
    height: 7px;
    background: var(--color-dusty-blue);
    transform: rotate(11deg);
}

.kv .line20 {
    right: -30%;
    top: 72%;
    height: 12px;
    background: var(--color-wine-rose);
    transform: rotate(-7deg);
    opacity: 0.5;
}

.kv .line21 {
    left: -30%;
    top: 75%;
    height: 3px;
    background: var(--color-vanilla-beige);
    transform: rotate(9deg);
}

.kv .line22 {
    right: -30%;
    top: 78%;
    height: 8px;
    background: var(--color-mint-cream);
    transform: rotate(-2deg);
}

.kv .line23 {
    left: -30%;
    top: 82%;
    height: 2px;
    background: var(--color-dusty-blue);
    transform: rotate(5deg);
}

.kv .line24 {
    right: -30%;
    top: 85%;
    height: 14px;
    background: var(--color-wine-rose);
    transform: rotate(-14deg);
    opacity: 0.3;
}

.kv .line25 {
    left: -30%;
    top: 88%;
    height: 5px;
    background: var(--color-vanilla-beige);
    transform: rotate(6deg);
}

.kv .line26 {
    right: -30%;
    top: 91%;
    height: 2px;
    background: var(--color-mint-cream);
    transform: rotate(-4deg);
}

.kv .line27 {
    left: -30%;
    top: 93%;
    height: 9px;
    background: var(--color-dusty-blue);
    transform: rotate(12deg);
}

.kv .line28 {
    right: -30%;
    top: 95%;
    height: 3px;
    background: var(--color-wine-rose);
    transform: rotate(-1deg);
    opacity: 0.4;
}

.kv .line29 {
    left: -30%;
    top: 97%;
    height: 16px;
    background: var(--color-vanilla-beige);
    transform: rotate(8deg);
}

.kv .line30 {
    right: -30%;
    top: 99%;
    height: 4px;
    background: var(--color-mint-cream);
    transform: rotate(-5deg);
}

.kv [class^="line"].active {
    width: 150vw;
}

.kv .layer {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #F8ECEC 50%, #f8ecec00);
    /* backdrop-filter: blur(4px); */
}

.kv .inner {
    position: relative;
    z-index: 3;
}

.kv .logo {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: .5s;
    width: 70%;
    max-width: 220px;
    margin: 5vh auto auto auto;
}

.kv .logo.active {
    opacity: 1;
    transform: translateY(0);
}

.kv h1 {
    margin-top: 40px;
    font-weight: 900;
    font-size: 32px;
    font-family: "Poppins";

}

.kv h3 {
    margin: 60px 0 20px;
    font-weight: bold;
    transform: translateY(40px);
    opacity: 0;
    font-size: 14px;
}

.kv p {
    min-width: 280px;
    transform: translateY(40px);
    opacity: 0;
}

.kv .show {
    overflow: hidden;
    position: relative;
    height: 32px;
}

.kv .show span {
    transition: .5s var(--animation-ease);
    position: absolute;
    top: 100%;
}

.kv .show.active span {
    top: 0;
}

/* .kv .img {
    max-width: 80%;
    position: relative;
    overflow: hidden;
    transition: 0.6s var(--animation-ease);
}

.kv .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-wine-rose);
    z-index: 2;
    transform-origin: left;
}

.kv .img .img-wrap {
    opacity: 0;
    transition-delay: .6s;
}

.kv .img.active .img-wrap {
    opacity: 1;
}

.kv .img.active:before {
    animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
} */
.first {
    margin-top: 40px;
}


.first .text {
    display: grid;
    gap: 20px;
}

.first .text p {
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}

.first .text p.active {
    opacity: 1;
    transform: translateY(0);
}

/* MESSAGE */
.message {
    padding: 80px 0 80px 42px;
    background: var(--color-powder-pink);
}

@media(min-width: 1180px) {
    .message {
        padding: 80px 0;
    }
}

.message-swiper {
    margin-top: 40px;
}

.message .box {
    background: #E6E1DB;
    border-radius: 8px;
    padding: 2rem;
}

.message .img img {
    width: 100%;
}

.message .text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message .swiper-wrapper {
    padding-bottom: 40px;
}

.message .swiper-pagination {
    bottom: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #9a6566ba;
}

.swiper-button-disabled {
    opacity: 0 !important;
}

.triangle {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    border-right: 0;
}

.swiper-button-prev .triangle {
    transform: rotate(180deg) translateX(2px);
}

.swiper-button-next .triangle {
    transform: translateX(2px);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #9a6566 !important;
}

.message h3 {
    font-size: 16px;
    font-weight: bold;
}

.message h3 span {
    font-size: 10px;
    margin-left: 1rem;
    font-weight: normal;
}

/* MOVIE */
.movie {
    padding-left: 0;
    background: var(--color-powder-pink);
    width: 100%;
    overflow: hidden;
    /* 拡大中のはみ出し防止 */
}


@media(min-width: 1180px) {
    .movie {
        padding-left: 0;
    }
}

.movie-wrap {
    height: 100vh;
    /* 画面いっぱいの高さを確保 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 42px;
}

@media(min-width: 1180px) {
    .movie-wrap {
        padding-left: 0;
    }
}

.movie-title {
    font-weight: 900;
    font-family: 'Poppins';
    font-size: 32px;
    text-align: center;
    z-index: 3;
    overflow: hidden;
    height: 32px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 45%;
    width: 100%;
}

.movie-title span {
    transition: .5s var(--animation-ease);
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    width: 100%;
    word-break: keep-all;
}

.movie-title.active span {
    top: 0;
}

.movie-text {
    font-weight: 900;
    text-align: center;
    z-index: 3;
    overflow: hidden;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 55%;
    width: 100%;
    opacity: 0;
}

.movie video {
    transform: scale(0.7);
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* 縦横比を維持して埋める */
}

.movie .mute-button {
    position: absolute;
    left: 52px;
    bottom: 48px;
    width: 32px;
    height: 32px;
    font-size: 32px;
}

/* INFORMATION */
.information {
    padding: 80px 0 80px 42px;
    overflow: hidden;
    background: var(--color-powder-pink);
}

@media(min-width: 1180px) {
    .information {
        padding: 80px 0;
    }
}

.information .text {
    margin: 40px 0 20px;
    text-align: center;
}

/* EVENTS */
.events {
    padding: 80px 0 80px 42px;
    background: #ebe2e2;
}

@media(min-width: 1180px) {
    .events {
        padding: 80px 0;
    }
}

.events .text {
    margin: 40px 0 20px;
    text-align: center;
}

.events .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
}

.events .item {}

.events .item img {
    width: 100%;
}

.events .item h3 {
    font-weight: bold;
    margin-top: 0.5rem;
}

/* ARCHIVE */
.archive {
    padding: 80px 0 80px 42px;
    overflow: hidden;
    background: var(--color-powder-pink);
}

@media(min-width: 1180px) {
    .archive {
        padding: 80px 0;
    }
}

.archive-swiper {
    margin-top: 40px;
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transition: .5s var(--animation-ease);
}

.fade-in-up-anime {
    animation: fadeInUp .5s var(--animation-ease) both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-box {
    display: block;
    position: relative;
    overflow: hidden;
}

.reveal-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-wine-rose);
    z-index: 2;
}

.reveal-box .img-wrap {
    opacity: 0;
    transition: opacity 0s 0.6s;
}

.reveal-box.active .img-wrap {
    opacity: 1;
}

.reveal-box.active:before {
    animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.comingsoon {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-align: center;
    color: #666;
}
