:root {
    --indigo: #00336F;
    --dark-indigo: #0D2746;
    --white: #fff;
    --black: #333333;
    --pink: #EF8BB6;
    --blue: #4096F7;
    --aqua-blue: #84C4C8;
    --neon-pink: #cf2c6d;
    --neon-orange: #FF9800;
    --deep-purple: #1A1138;
    --yellow: #EEDD8D;
}

@keyframes flicker-in-1 {
	0% {
	opacity: 0;
	}
	10% {
	opacity: 0;
	}
	10.1% {
	opacity: 1;
	}
	10.2% {
	opacity: 0;
	}
	20% {
	opacity: 0;
	}
	20.1% {
	opacity: 1;
	}
	20.6% {
	opacity: 0;
	}
	30% {
	opacity: 0;
	}
	30.1% {
	opacity: 1;
	}
	30.5% {
	opacity: 1;
	}
	30.6% {
	opacity: 0;
	}
	45% {
	opacity: 0;
	}
	45.1% {
	opacity: 1;
	}
	50% {
	opacity: 1;
	}
	55% {
	opacity: 1;
	}
	55.1% {
	opacity: 0;
	}
	57% {
	opacity: 0;
	}
	57.1% {
	opacity: 1;
	}
	60% {
	opacity: 1;
	}
	60.1% {
	opacity: 0;
	}
	65% {
	opacity: 0;
	}
	65.1% {
	opacity: 1;
	}
	75% {
	opacity: 1;
	}
	75.1% {
	opacity: 0;
	}
	77% {
	opacity: 0;
	}
	77.1% {
	opacity: 1;
	}
	85% {
	opacity: 1;
	}
	85.1% {
	opacity: 0;
	}
	86% {
	opacity: 0;
	}
	86.1% {
	opacity: 1;
	}
	100% {
	opacity: 1;
	}
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-feature-settings: "palt";
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 1.8;
    color: var(--white);
    background: var(--indigo);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    display: flex;
    justify-content: center;
}

.main {
    max-width: 480px;
    width: 100%;
    position: relative;
    background: var(--indigo);
}

.header {
    display: flex;
    justify-content: flex-end;
    padding: 12px 8px 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.button--ticket {
    border: 1px solid #FFF;
    background: linear-gradient(158deg, #D0B113 0.71%, #71BFB6 100%);
    color: white;
    line-height: 1.5;
    font-weight: 700;
    border: 1px solid var(--white);
    padding: 4px 12px 2px;
    border-radius: 100vmax;
}

.hero {
    position: relative;
}

.hero__image {
    width: 100%;
}

.main .hero .hero__sub-image {
    position: absolute;
    bottom: 21%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 80%;
    height: auto;
    animation: fadeup 2s ease-out forwards;
}

.hero__sub-image.date span {
    font-size: 36px;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 20px 40px;
    color: var(--white);
}

.effect{
	opacity : 0;
	transform : translate(0, 45px);
	transition : all 300ms;
}
.effect.effect-scroll {
		opacity : 1;
		transform : translate(0, 0);
		animation: flicker-in-1 1s linear both;
}

.about__img {
    position: relative;
    &::before {
        position: absolute;
        content: '';
        display: block;
        top: -48px;
        right: -6px;
        width: 70px;
        height: 82px;
        transform: rotate(15deg);
        background-image: url(../img/merry-go-round.svg);
        background-size: cover;
        animation: flicker-in-1 .5s .8s forwards,merry 3s ease-in-out 3s infinite forwards;
    }
    &::after {
        position: absolute;
        content: '';
        display: block;
        top: -18px;
        left: -4px;
        width: 60px;
        height: 57px;
        transform: rotate(15deg);
        background-image: url(../img/star.svg);
        background-size: cover;
        animation: flicker-in-1 .5s .8s forwards,merry 4s ease-in-out 4s infinite forwards;
    }
}

@keyframes merry{
					0% {
						transform: scale(1) translateY(0) rotate(15deg);
					}
					25% {
						transform: scale(1.1) translateY(0) rotate(0);
					}
					50% {
						transform: scale(1) translateY(0) rotate(15deg);
					}
					75% {
						transform: scale(1.1) translateY(0) rotate(0);
					}
					100% {
						transform: scale(1) translateY(0) rotate(15deg);
					}
				}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(45deg, #f993bc, #85c5c6);
    border-radius: 4px;
    border: solid 2px #fff;
    padding: 24px 16px;
}

.about__content--box {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.about__description {
    background-color: #fff;
    color: var(--pink);
    font-weight: 700;
    width: 124px;
    padding: 8px 24px;
    text-align: left;
    position: relative;

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        right: 12px;
        width: 10px;
        height: 2px;
        border-radius: 9999px;
        background-color: var(--pink);
        transform-origin: calc(100% - 1px) 50%;
    }

    &::before {
        transform: rotate(45deg);
    }

    &::after {
        transform: rotate(-45deg);
    }
}

.about__description.blue {
    color: var(--aqua-blue);
    &::before,
    &::after {
        background-color: var(--aqua-blue);
    }
}

.about__text {
    color: var(--white);
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(207,44, 109, 0.8);
}

.section-title {
    text-align: center;
    font-size: 28px;
    text-shadow: 0 0 1px var(--white),
        0 0 1px var(--neon-pink),
        0 0 1px var(--neon-pink),
        0 0 1px var(--neon-pink),
        0 0 5px var(--neon-pink),
        0 2px 2px var(--dark-indigo);
}

.content-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 20px 40px;
}

.section-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    border: solid 1px #fff;
    box-shadow: 0 0 1px var(--white),
        0 0 2px var(--neon-orange),
        0 0 4px var(--neon-orange),
        0 0 4px var(--neon-orange),
        0 0 5px var(--neon-orange),
        0 3px 3px var(--dark-indigo);
    padding: 24px;
}

.section-list.access {
    gap: 16px;
}

.point {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.point .accent {
    color: var(--yellow);
    font-weight: 700;
    font-size: 16px;
}

.point__note {
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 0 1px var(--white),
        0 0 1px var(--neon-pink),
        0 0 1px var(--neon-pink),
        0 0 2px var(--neon-pink),
        0 0 8px var(--neon-pink),
        0 1px 2px var(--dark-indigo);
}

.point__note.first{
    position: relative;
    &::before{
        position: absolute;
        content: '';
        display: block;
        top: -100px;
        right: -8px;
        width: 60px;
        height: 60px;
        background-image: url(../img/star.svg);
        background-size: contain;
        transform: scaleX(-1);
        animation: flicker-in-1 .5s .8s forwards,star 3s ease-in-out 3s infinite forwards;
    }
    &::after{
        position: absolute;
        content: '';
        display: block;
        top: -100px;
        left: -8px;
        width: 60px;
        height: 60px;
        background-image: url(../img/note.svg);
        background-size: contain;
        animation: flicker-in-1 .5s .8s forwards,merry 3s ease-in-out 3s infinite forwards;
    }
}

@keyframes star{
					0% {
						transform: scale(1) translateY(0) rotate(15deg) scaleX(-1);
					}
					25% {
						transform: scale(1.1) translateY(0) rotate(0) scaleX(-1);
					}
					50% {
						transform: scale(1) translateY(0) rotate(15deg) scaleX(-1);
					}
					75% {
						transform: scale(1.1) translateY(0) rotate(0) scaleX(-1);
					}
					100% {
						transform: scale(1) translateY(0) rotate(15deg) scaleX(-1);
					}
				}

.point__note span {
    font-size: 16px;
}

.point__image {
    width: 100%;
}

.point__description {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 0;
    border-radius: 8px;
    border: solid 1px var(--white);
    background-image: linear-gradient(-90deg, #2A98FF, #EF8BB6);
}

.point__description .check {
    position: relative;
    margin-bottom: 8px;
    display: inline-block;

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        left: -27px;
        width: 17px;
        height: 6px;
        border-left: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        transform: rotate(-45deg);
    }

    
}

.point__description-detail {
    font-size: 16px;
    font-weight: 700;
}

.lovetype{
    position: relative;
    &::before {
        position: absolute;
        content: '';
        display: block;
        top: -10px;
        right: -16px;
        width: 60px;
        height: 60px;
        background-image: url(../img/lovetype-2.webp);
        background-size: contain;
    }
    &::after {
        position: absolute;
        content: '';
        display: block;
        bottom: -10px;
        left: -16px;
        width: 60px;
        height: 60px;
        background-image: url(../img/lovetype-1.webp);
        background-size: contain;
        }
}

.point__guest {
    text-align: center;
    margin-top: 24px;
}

.point__guest img {
    width: 60px;
    height: 60px;
}

.point__guest-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.point__guest-note {
    margin-top: 8px;
    font-size: 12px;
    ;
}

.price {
    position: relative;
    background-color: var(--deep-purple);
    padding: 60px 24px;
    gap: 36px;
}

.price::before,
.price::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1rem;
    background-image: radial-gradient(circle, #fff 20%, transparent 30%);
    background-size: 1.2rem 1rem;
    background-repeat: repeat-x;
    filter:
        drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px rgba(255, 255, 255, .8));
}

.price::before {
    top: 24px;
}

.price::after {
    bottom: 24px;
}

.price__campaign {
    text-align: center;
    font-size: 20px;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 8px 0 10px;
    filter:
        drop-shadow(0 0 1px #cf2c6d) drop-shadow(0 0 1px #cf2c6d) drop-shadow(0 0 1px rgba(207, 44, 109, .6));
}

.price__campaign span {
    font-size: 16px;
}

.price__plans {
    display: flex;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.price__card {
    padding: 20px 36px;
    border-radius: 8px;
    border: solid 1px #fff;
}

.price__card--male {
    background-color: var(--blue);
}

.price__card--female {
    background-color: var(--pink);
}

.price__card__title {
    font-size: 20px;
    font-weight: 700;
}

.price__card__price {
    font-size: 20px;
    font-weight: 700;
    color: #FFF100;
}

.group-discount img{
    width: 100%;
}

.group-discount__body {
    background-color: #FFEFD5;
    border-radius: 0px 0px 8px 8px;
    padding: 16px;
    color: #1A1138;
    text-align: center;
}

.group-discount__item.female {
    margin-top: 16px;
}

.group-discount__title {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
}

.group-discount__title span {
    font-size: 22px;
}


.group-discount__text {
    font-size: 10px;
}

.group-discount__text span {
    font-weight: 700;
    font-size: 12px;
}

.c-button {
    text-align: center;
    padding: 12px 48px;
    border-radius: 100vmax;
    margin: 0 auto;
    font-size: 20px;
    position: relative;

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        right: 12px;
        width: 10px;
        height: 2px;
        border-radius: 9999px;
        background-color: var(--white);
        transform-origin: calc(100% - 1px) 50%;
    }

    &::before {
        transform: rotate(45deg);
    }

    &::after {
        transform: rotate(-45deg);
    }
}

.c-button--primary {
    background-image: linear-gradient(45deg, #5495EF, #EF8BB6);
}

.c-button--gold {
    background-image: linear-gradient(45deg, #FFD152, #FF9335);
    margin-bottom: 24px;
}

.food-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 0 8px 16px;
}

.food__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.food__img {
    width: 100%;
    height: auto;
}

.food__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.food__more-foods {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.food__note {
    text-align: center;
    font-size: 10px;
    margin-top: -16px;
}

.ticket {
    background: linear-gradient(158deg, #CCAB6F 0.71%, #BEC693 55.96%, #B3BC83 100%);
    position: relative;
    padding: 60px 20px;
}

.ticket::before {
    content: "";
    display: block;
    width: 80px;
    height: 40px;
    background: var(--indigo);
    border-radius: 50% / 0 0 100% 100%;
    position: absolute;
    top: 0rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.ticket::after {
    content: "";
    display: block;
    width: 80px;
    height: 40px;
    background: var(--indigo);
    border-radius: 50% / 100% 100% 0 0;
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section-sub-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.ticket__prices {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.4;
}

.ticket__type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 4px);
    text-align: center;
    padding: 32px 0px 40px;
    position: relative;
    border-radius: 8px;
    color: var(--indigo);
    border: 1px solid var(--indigo);
}

.ticket--preorder {
    background: linear-gradient(128deg, #B0E1C6 0.14%, #76E0A6 100.32%);
}

.ticket--same-day {
    background-color: none;
}

.ticket__price {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ticket__amount {
    font-size: 28px;
    font-weight: bold;
}

.ticket__tax {
    font-size: 12px;
}

.ticket__discount {
    width: 80px;
    background-color: var(--indigo);
    color: var(--white);
    padding: 4px 4px 2px;
    border-radius: 4px;
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.4;
}

.ticket__discount span {
    position: relative;
}

.ticket__discount span::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-top: 6px solid var(--indigo);
    border-bottom: 0;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.ticket__addition {
    border-top: 1px dotted var(--indigo);
    border-bottom: 1px dotted var(--indigo);
    padding: 16px 12px;
    text-align: center;
}

.ticket__description span {
    font-weight: 700;
    font-size: 16px;
}

.ticket__description {
    color: var(--indigo);
}

.ticket-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.button--purchase {
    display: inline-block;
    background: #DFDC4B;
    box-shadow: 0px 0px 16px 0px rgba(67, 78, 75, 0.60);
    color: var(--indigo);
    padding: 20px 24px 16px;
    font-size: 24px;
    width: 100%;
    border-radius: 100vmax;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.button--purchase::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url(../img/btn-arrow.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

.button--disabled {
    opacity: 50%;
    pointer-events: none;
}

.ticket-note {
    font-size: 12px;
    color: var(--indigo);
}

.access {
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.access__sub-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.access__details {
    font-size: 12px;
}

.access__details a {
    text-decoration: underline;
}

.faq__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid #A2A2A2;
}

.faq__title:nth-of-type(1) {
    margin-top: 0;
}

.faq__item {
    border-bottom: 1px solid #A2A2A2;
    padding: 12px 0;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__item span {
    color: var(--yellow);
}

.faq__question {
    cursor: pointer;
    position: relative;
    padding-right: 28px;
}

.faq__question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-out;
    background: url(../img/circle-down.svg) no-repeat center center;
    width: 28px;
    height: 28px;
}

.faq__item.active .faq__question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 12px;
}

.faq__item.active .faq__answer {
    max-height: auto;
    padding: 0;
    margin-top: 4px;
}

.faq__link {
    color: var(--yellow);
    text-decoration: underline;
}

.footer {
    padding: 20px 0 20px;
    font-size: 12px;
    background-color: var(--white);
    border-radius: 80px 80px 0 0;
    color: var(--black);
}

.footer__logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__logo a {
    text-decoration: underline;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer__event-title {
    margin-bottom: 4px;
    text-align: center;
}


.footer__events-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer__line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.footer__logo {
    max-width: 160px;
}

.footer__copyright {
    margin-top: 10px;
    font-size: 0.8em;
}

.present {
    pointer-events: none;
    opacity: 60%;
}

.left-block,
.right-block {
    display: none;
}

/* フローティングアクションパネル */
.floating {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: -100px;
    display: flex;
    gap: 8px;
    z-index: 9999;
    transition: bottom .6s ease;
}

.floating.show {
    bottom: 8px;
}

/* ボタン */

.floating .c-button {
    padding: 8px 36px;
    font-size: 14px;
    white-space: nowrap;
    &::after{
        bottom: -1px;
    }
}

.gold{
    margin-bottom: 0;
}

/* SP */

@media (max-width: 767px) {

    .floating {
        gap: 8px;
    }

    .floating .c-button {
        flex: 1;
        min-width: auto;
        padding: 8px 36px;
        font-size: 14px;
    }

}


/* 要素フェイドイン用 */
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s, transform 1s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

@media screen and (min-width: 640px) {
    .main {
        max-width: 424px;
        margin: 0 auto;
    }

    .left-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 40px 0px 40px 40px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
        background-image: linear-gradient(0deg, #7DB2EC, #F3C3D8);
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .menu__anchor {
        display: flex;
        flex-direction: column;
    }

    .menu__anchor li {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 0px;
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
        border-bottom: solid 1px var(--white);
        margin-bottom: 8px;
    }

    .float-btn {
        right: 32px;
        bottom: 32px;
        margin: 0;
        width: 120px;
        height: 120px;
        font-size: 20px;
    }

    .right-block {
        display: none;
    }

    .button--ticket {
        left: auto;
        right: auto;
        top: 0;
        margin: 12px 0 0 334px;
    }
}

@media screen and (min-width: 1080px) {
    .right-block {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: 1;
        padding: 40px 40px 40px 0;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
        background-image: linear-gradient(0deg, #7DB2EC, #F3C3D8);
    }

    .right-block__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        width: 100%;
        height: 100%;
    }

    .right-block__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        line-height: 1.4;
        font-weight: 700;
        letter-spacing: 0.04em;
        border-radius: 8px;
        padding: 20px 0 16px;
    }

    .note {
        text-align: right;
        margin-bottom: auto;
        font-size: 16px;
        line-height: 1.3;
    }
}