@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-image: url(./img/bg.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100%;
  background-color: rgba(255,255,255,0.5);
  background-blend-mode: lighten;
}



section{
    padding: 5% 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
  color: #fff;
    word-break: break-all;
}

h2{
  width: 60%;
  margin: 0 auto 4%;
  min-width: 320px;
}

h3{
  font-size: 26px;
  font-weight: 700;
}

.rel{
    position: relative;
}

.abs{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.inner{
    padding: 0 8%;
}

.util_link{
  max-width: 620px;
  margin: 4% auto 0;
}

small.copyright{
    display: block;
    text-align: center;
    width: 100%;
    color: #fff;
    margin: 0 auto;
    font-size: 16px;
    padding: 10px 0;
}

span.blue{
  color: #008cc2;
}

span.yellow{
  color: #fff16e;
}

span.under_line{
    background-image: linear-gradient(0deg, rgb(255 241 0 / 70%) 0.5em, transparent 0.5em);
    background-repeat: no-repeat;
    background-position: left 50%;
    background-size: 0% 100%;
    font-size: 36px;
}

span.under_line_anim{
    animation: drawMarker 1.2s ease forwards;
}

@keyframes drawMarker {
  from { background-size: 0% 100%; }
  to   { background-size: 100% 100%; }
}

section a{
  display: block;
  width: 100%;
}

section a:hover{
  filter: brightness(120%);
  transition: all .3s;
}

section.banner a:first-of-type{
  width: 80%;
  margin: 0 auto 4%;
  display: none;
}

section.banner a.shop{
  width: 60%;
  margin: 0 auto;
}

#mv{
  padding: 0;
}

#charge p{
  font-size: 28px;
}

#content_wrapper {
  max-width: 1520px;
  margin: 0 auto;
  position: relative; /* 背景レイヤーの基準にする */
  z-index: 0;         /* コンテンツより下に置けるように */
  overflow: hidden;   /* 背景がはみ出すのを隠す */
}

/* 動く背景 */
#content_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("./img/bg.png");
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center top;

  z-index: -1; /* コンテンツの背面へ */

  animation: bgScroll 280s linear infinite;
  will-change: transform;
}

@keyframes bgScroll {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

#zanka{
  padding: 5% 0 0;
}

#price{
  padding: 0 0 5%;
  margin-top: -15%;
}

#zanka h3{
  margin: 0 0 8%;
}

#sup .img{
  width: 80%;
  margin: 4% auto 0;
}

#color .bg{
  background: url(./img/color_bg.png) no-repeat center center / cover;
  padding: 4%;
}

#charge{
  background: url(./img/charge_bg.png) no-repeat center center / cover;
  color: #333;
}

#charge p{
  font-weight: 700;
  line-height: 2.6;
}

#charge small{
  font-weight: 700;

}

#charge .logo{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
#charge .logo img{
  max-width: 620px;
}

/*animation*/


.scale,
.fade_up{
opacity: 0;
}
.scale_anim{
animation-name: scale_anim;
animation-duration:0.6s;
animation-fill-mode:forwards;

}
@keyframes scale_anim{
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  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;
  }
}


.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: 12% 0;
}

h2{
  width: 100%;
  margin: 0 auto 8%;
}

h3{
  font-size: 18px;
}

.pagetop{
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
}

section.banner a:first-of-type,
section.banner a.shop{
  width: 100%;
}

section.banner a:first-of-type{
  margin: 0 0 16%;
}

.inner{
  padding: 0 4%;
}

#price{
  padding: 0  0 12%;
  margin-top: -24%;
}

small.copyright{
  font-size: 12px;
}

#zanka{
  padding: 12% 0 0;
}

#zanka h3{
  margin: 0 0 16%;
}

#sup .img{
  width: 100%;
  margin: 8% 0;
}

#charge p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 6%;
}

#color .bg{
  padding: 8% 2%;
}

#charge .logo{
  margin: 4% 0;
}

#charge .logo img{
  width: 80%;
}

#charge small{
  display: block;
  text-align: left;
  margin: 0 0 8%;
}

span.under_line{
  font-size: 18px;
}

}

@media screen and (max-width:540px){

}

