:root{
    --red: #CE181B;
    --brown: #73162A;
    --orange: #FF513A;
    --yellow: #F8BD33;
    --brown2: #701419;
}
#gnav{
    background-color: #FFF;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
}
#gnav .outer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#gnav .nav_list{
    display: flex;
    justify-content: left;
    gap: 20px 40px;
    padding-left: 12px;
    margin: 0;
}
@media screen and (max-width: 972px) {
    #gnav .nav_list{
        gap: 20px 20px;
    }
}
@media screen and (max-width: 872px) {
    #gnav .nav_list{
        gap: 20px 12px;
    }
}
#gnav input{
    display: none;
}
#gnav a{
    color: var(--brown);
    position: relative;
    padding: 12px 0;
}
#gnav a img{
    width: 90px;
    height: 81px;
}
#gnav a:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brown);
    transition: 0.2s ease;
}
#gnav a:hover:before{
    width: 100%;
}
main{
    padding-top: 68px;
}
#top{
    background-color: #DADADA;
    position: relative;
}
#top .logo_outer{
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}
#top .logos{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    gap: 30px 72px;
    border-radius: 20px;
    padding: 60px 20px;
    margin: 0 50px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 25%);
}
#top .ticket{
    position: fixed;
    bottom: 80px;
    right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    background-image: url(../img/bg_ticket.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 24px 30px;
    line-height: 1.4;
    font-weight: 900;
    z-index: 100;
}
#top .ticket span{
    position: relative;
}
#top .ticket span:after{
    content: "";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #FFC942;
    margin-left: 12px;
}
#news{
    background-color: var(--red);
    padding: 60px 0 60px 0;
    border-bottom: solid 6px var(--brown);
    text-align: center;
}
#news dl{
    display: flex;
    justify-content: center;
    gap: 20px 46px;
    font-size: 24px;
    color: #FFF;
}
#news dt{
    background-color: #000;
    padding: 8px 32px;
    font-weight: bold;
}
#news dd{
    font-weight: 900;
}
#news dd span{
    font-size: 32px;
}
#event{
    padding: 60px 0;
    background-image: url(../img/bg_event.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}
h2{
    background-color: var(--brown);
    padding: 10px 12px 10px 54px;
    position: relative;
}
h2:before{
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border: solid 2px #FFF;
    transform: rotate(45deg);
}
#event .event{
    background-color: #FFF7F5;
    border: solid 5px var(--brown2);
    padding: 30px 75px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}
#event .logo img{
    margin: 75px auto;
}
#event dl{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 32px 22px;
    font-size: 20px;
}
#event dt{
    background-color: var(--brown);
    color: #FFF;
    border-radius: 100px;
    width: 200px;
    height: 30px;
    text-align: center;
    font-weight: 900;
}
#event dd{
    flex-basis: calc(100% - 200px - 22px);
    font-weight: normal;
}
#event dd a{
    color: var(--brown);
    text-decoration: underline;
}
#story_character{
    background-color: var(--red);
    padding: 72px 0;
}
#story_character .inner{
    border: solid 5px var(--brown2);
    background-color: #FFF7F5;
    padding: 30px 75px 70px 75px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}
#story_character .info_wrap{
    display: flex;
    justify-content: center;
    gap: 20px 1.647%;
    flex-wrap: wrap;
    margin-top: 35px;
    margin-bottom: 24px;
}
#story_character .info_wrap p{
    line-height: 1.4;
}
#story_character .cont01{
    flex-basis: 59.4118%;
}
#story_character .cont01 .logo img{
    margin: 46px auto;
}
#story_character .cont02{
    flex-basis: 38.8235%;
}
h3{
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}
h3 span{
    position: relative;
    display: inline-block;
}
h3 img{
    text-align: center;
    margin: auto;
}
h3 span:before{
    content: "";
    position: absolute;
    left: -150%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 260px;
    height: 4px;
    background-image: url(../img/h3_line.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
h3 span:after{
    content: "";
    position: absolute;
    right: -150%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 260px;
    height: 4px;
    background-image: url(../img/h3_line.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.story .story_text{
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
}
.story .talk{
    width: 528px;
    margin: 32px auto 20px auto;
}
.story .talk01{
    display: flex;
    align-items: flex-start;
    justify-content: left;
}
.story .talk02{
    display: flex;
    align-items: flex-start;
    justify-content: right;
}
.story .talk p{
    background-color: #FFF;
    border: solid 2px var(--brown);
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    padding: 11px 24px;
    line-height: 1.2;
    box-shadow: 0 3px 3px rgb(0 0 0 / 25%);
    position: relative;
    z-index: 1;
}
.story .talk01 p{
    padding-left: 56px;
    margin-top: 8px;
}
.story .talk02 p{
    padding-right: 56px;
    margin-top: 8px;
}
.story .talk01 img{
    margin-right: -50px;
    position: relative;
    z-index: 2;
    width: 61px;
    height: 70px;
    object-fit: contain;
    object-position: center center;
}
.story .talk02 img{
    margin-left: -50px;
    position: relative;
    z-index: 2;
    width: 63px;
    height: 70px;
    object-fit: contain;
    object-position: center center;
}
.character ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 64px 18px;
    padding: 0;
}
.character .box{
    flex-basis: calc((100% - 54px) / 4);
}
.character .box img{
    margin: auto;
}
.character h4{
    text-align: center;
}
.character span{
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    margin: 8px 0;
}
.character b{
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}
.character p{
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: 0;
}
.character .box_ p{
    letter-spacing: -0.5px;
}

.character .box_1{
    flex-basis: calc((100% - 132px) / 3);
}
.character .box_1 .img{
    display: flex;
    justify-content: center;
    gap: 20px 20px;
}
.character .box_1 img{
    margin: auto;
}
.character .box_1 h4{
    margin-top: 12px;
    margin-bottom: 12px;
}
.character .box_1 span{
    margin: auto 0 auto 0;
}
.character .box_1 b{
    margin: auto 0;
}
.character .box_1 .wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    margin: 8px 0;
}
.character .box_1 p{
    line-height: 1.4;
}
.character .box_1 p b{
    font-size: 16px;
    font-weight: 900;
}
.character .nazonazo{
    width: 500px;
    margin: 60px auto 0 auto;
    position: relative;
}
.character .nazonazo:after{
    content: "";
    position: absolute;
    left: 0;
    top: -24px;
    margin: auto;
    width: 106px;
    height: 70px;
    background-image: url(../img/vs.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.character .nazonazo .in{
    margin-left: 30px;
    padding: 28px 40px;
    background-image: url(../img/bg_nazo.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 20px;
    flex-wrap: wrap;
}
.character .nazonazo .in .icon{
    flex-basis: 144px;
    text-align: center;
}
.character .nazonazo .in .icon p{
    margin-top: 12px;
    font-size: 24px;
    font-weight: bold;
}
.character .nazonazo .abs{
    flex-basis: calc(100% - 144px - 20px);
}
#flow{
    background-color: var(--orange);
    padding: 72px 0;
}
#flow .inner{
    border: solid 5px var(--brown2);
    background-color: #FFF7F5;
    padding: 30px 75px 72px 75px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}
#flow ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 56px 10%;
    padding-left: 0;
    margin-top: 68px;
}
#flow .box{
    flex-basis: 45%;
    text-align: center;
}
#flow h4{
    color: var(--brown);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: left;
    gap: 12px 28px;
    align-items: center;
    line-height: 1.3;
    text-align: left;
}
#flow .box>img{
    width: 160px;
    margin: 16px auto 20px auto;
}
#flow .box p{
    text-align: center;
}
#flow .clear_prize p{
    text-align: center;
}
#faq {
    background-color: var(--red);
    padding: 72px 0;
}
#faq .inner{
    border: solid 5px var(--brown);
    background-color: #FFF7F5;
    padding: 30px 75px 72px 75px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}
#faq h4{
    position: relative;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    display: flex;
    justify-content: left;
    align-items: baseline;
    gap: 10px;
    line-height: 1.4;
}
#faq h4:before{
    content: "Q";
    position: relative;
    font-size: 24px;
    font-weight: 900;
}
#faq li p{
    position: relative;
    display: flex;
    justify-content: left;
    gap: 10px 16px;
}
#faq li p:before{
    content: "A";
    position: relative;
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
}
#faq li{
    margin-bottom: 30px;
    background-color: #FFF;
    padding: 16px;
}
#faq ul{
    margin-bottom: 68px;
    padding: 0;
}

#facility {
    background-color: var(--orange);
    padding: 72px 0;
}
#facility .inner{
    border: solid 5px var(--brown);
    background-color: #FFF7F5;
    padding: 30px 75px 72px 75px;
    text-align: center;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    position: relative;
}
#facility .facility .logo{
    margin: 40px auto 48px auto;
}
#facility .facility .btn{
    background-color: var(--yellow);
    color: #000;
    position: relative;
    border-radius: 100px;
    width: 300px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto 0 auto;
}
#facility .facility .btn:after{
    content: "";
    position: relative;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon_jump.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
footer{
    padding: 60px;
    background-color: #231815;
    text-align: center;
    color: #FFF;
    line-height: 2;
}
.bg_modal{
    display: none;
}
.totop{
    position: absolute;
    bottom: -124px;
    right: 0;
    z-index: 99;
}


.clear{
    text-align: center;
}
.clear img{
    width: 160px;
    height: auto;
    margin: auto;
}
.clear+p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.inline{
    display: inline-block;
    margin: auto;
    text-align: left;
}
.flow .center{
    text-align: center;
}