@font-face {
    font-family: 'Amarante';
    src: url('../font/Amarante/Amarante-Regular.woff2') format('woff2'),
         url('../font/Amarante/Amarante-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.woff2') format('woff2'),
         url('../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Zen Antique Soft';
    src: url('../font/Zen_Antique_Soft/ZenAntiqueSoft-Regular.woff2') format('woff2'),
         url('../font/Zen_Antique_Soft/ZenAntiqueSoft-Regular.ttf') format('truetype');
}

.footer{
	margin-top: 0 !important;
}

.event-page{
	margin-top: 8.7vw;
}

body{
    font-family: 'Zen Antique Soft', serif;
    color: #4A2200;
    font-weight: 400;
}
.tl-en{
    font-family: 'Amarante', serif;
}

.mv{
    position: relative;
}
.mv:after{
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 47%;
    background-image: url(../img/mv_shadow.png);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
}
.mv .inner{
    position: relative;
    z-index: 3;
}
.mv .mv__date{
    position: absolute;
    bottom: 54px;
    left: 0;
}
.mv .mv__date img{
    width: 553px;
    height: 151px;
}

.bottom-section{
    padding: 104px 0;
    background-image: url(../img/bg.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat;
}

.set-bg{
    background-image: url(../img/bg_sec.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 30px;
    padding: 36px 36px 72px 36px;
    margin-bottom: 80px;
    border: solid 7px #866D3D;
}

.tl-layer{
    position: relative;
    text-align: center;
    margin-bottom: 54px;
}
.tl-layer:after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 173px;
    height: 30px;
    background-image: url(../img/sword.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.tl-layer .tl-en{
    color: rgb(110 91 74 / 15%);
    font-size: 132px;
    line-height: 1;
}
.tl-layer .tl-jp{
    font-size: 38px;
    font-family: 'Zen Antique Soft', serif;
    font-weight: 400;
    position: absolute;
    inset: 0;
    margin: auto;
    line-height: 132px;
}

.story p{
    text-align: center;
    font-size: 20px;
    letter-spacing: 1.05;
    line-height: 1.7;
}

.play__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px;
    margin-top: 124px;
}
.play__item{
    position: relative;
    background-image: url(../img/bg_step.svg);
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 40px 14px;
    text-align: center;
}
.play__num{
    position: absolute;
    display: inline-block;
    width: fit-content;
    height: fit-content;
    top: -44px;
    left: 0;
    right: 0;
    font-size: 42px;
    padding: 0 20px 28px 20px;
    margin: auto;
    border-radius: 50%;
    background-color: #D7B749;
    color: #FFF;
    z-index: 1;
}
.play__icon{
    height: 100px;
    margin: auto;
    position: relative;
    z-index: 2;
}
.play__title{
    font-size: 20px;
    margin: 8px 0;
}
.play__text{
    font-size: 14px;
    padding: 6px 0;
    border-top: solid 2px #4A2200;
    border-bottom: solid 2px #4A2200;
    text-align: left;
}

.point__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px 64px;
    text-align: center;
}
.point__icon{
    margin: auto;
}
.point__title{
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.25;
}

.faq{
    background-color: #D7B749;
    border-radius: 15px;
}
.faq__trigger{
    text-align: center;
    padding: 12px 0;
    position: relative;
    font-size: 38px;
    cursor: pointer;
}
.faq__trigger:after{
    content: "";
    position: absolute;
    width: 24px;
    height: 18px;
    right: 36px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #4A2200;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-radius: 3px;
    transition: 0.3s ease;
}
.faq__trigger.is-open:after{
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.is-open+.faq__content{
    padding: 20px 36px 40px 36px;
}

.faq__content{
    max-height: 0;
    overflow: hidden;
    padding: 0 36px;
    font-size: 16px;
    transition: 0.3s ease;
}

.bottom-section section{
    opacity: 0;
}
.bottom-section section.is_show{
  animation: fadeInFromBottom 0.45s ease-out forwards;
}
@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}