@charset "utf-8";

html{
  scroll-behavior: smooth;
}

img{
    width: 100%;
    vertical-align: bottom;
}

a{
    text-decoration: none;
    color: inherit;
}

*{
    box-sizing: border-box;
}

body {
    background:#fffaf1;
}

section{
    padding: 5% 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    word-break: break-all;
}

.rel{
    position: relative;
}

.abs{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.inner{
    padding: 0 4%;
}


small{
    display: block;
    text-align: center;
    width: 100%;
    color: #333;
    margin: 0 auto;
    font-size: 16px;
    padding: 10px 0;
    background: url(./img/obi_grey.png) no-repeat center center / cover;
}

#gn ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    max-width: 1280px;
    padding: 0 4% 6%;
    margin: 0 auto;
}

#gn ul li{
    width: calc(100% / 3 - 30px * 2 / 3);
}



#content_wrapper{
    max-width: 1560px;
    margin: 0 auto;
    background: #fff;
}


#mv{
    padding: 0;
}

#mv .banner{
    width: 70%;
    margin: 0 auto 4%;
}

.util_btn{
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

.util_btn:hover{
    opacity: 0.8;
    transition: all .3s;
}

.mb30{
    margin: 0 auto 30px;
}

#span ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    max-width: 1280px;
    padding: 0 4%;
    margin: 0 auto;
}

#span ul li{
    width: calc(100% / 3 - 16px * 2 / 3);
}



.scale,
.fade_up{
opacity: 0;
}
.scale_anim{
animation-name: scale_anim;
animation-duration:1s;
animation-fill-mode:forwards;

}
@keyframes scale_anim{
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade_up_anim{
animation-name: fade_up_anim;
animation-duration:0.6s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fade_up_anim{
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_right_anim{
animation-name: fade_right_anim;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fade_right_anim{
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.curtain{
    position: relative;
}

.curtain_anim::before{
    content: '';
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 2;
top: 0;
right: 0;
animation-name: curtain_anim;
animation-duration:3s;
animation-fill-mode:forwards;
}

@keyframes curtain_anim{
  from {

    width: 100%;
  }
  to {
    width: 0;
  }
}

#gn{
  background: url(./img/gn_bg.png) no-repeat center center / 100% 100%;
}

#gn h3{
  width: 70%;
  margin: 0 auto;
  padding: 4% 0;
}

#lineup h3{
  width: 84%;
  margin: 8% auto;
}

#span{
  background: url(./img/span_bg.png) no-repeat center center / 100% 100%;

}

#span .btn_fukidashi{
  max-width: 600px;
  margin: 4% auto 10px;
}

small.copyright{
  background: #a87f36;
  color: #fff;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width:1279px){

}


.sp{display:none;}
@media screen and (max-width:768px){
.sp{display:block;}
.pc{display:none;}

section{
    padding: 10% 0;
}

#gn h3{
  width: 92%;
  margin: 12% auto 0;
}

#gn ul{
  flex-direction: column;
}

#gn ul li{
  width: 80%;
  margin: 0 auto;
}

#mv .banner{
  width: 92%;
  margin: 6% auto 8%;
}

#lineup h2{
  width: 92%;
  margin: 0 auto;
}

#lineup h3{
  margin: 12% auto;
}

#span h2,
#span .btn_fukidashi,
#span .util_btn{
  width: 92%;
}

#span h2{
  margin: 0 auto 8%;
}

#span ul{
  gap: 10px 0;
  flex-direction: column;
}

#span ul li{
  width: 100%;
}

#lineup h3{
  width: 92%;
}
.pagetop{
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
}


}

@media screen and (max-width:540px){

}

