@charset "UTF-8";
/* style.css */


/* 基本設定 */

@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

html {
  touch-action: manipulation;
  font-size: 62.5%;
}
@media screen and (max-width:750px) {
  html {
    font-size: calc(100vw / 750 * 10);
  }
}

body {
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.5;
  font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
}
 
a{
	outline: none;
	color: #aa0000;
}

a:focus{
	outline: none;
}

img {
	width: 100%;
	height: auto;
}
.is-pc{ display: inherit!important;}
.is-sp{ display: none!important;}

/* 共通レイアウト */
#wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #000;
}
#header {
  position: absolute;
  width: 20%;
  max-width: 200px;
  right: 10px;
  top: 10px;
  z-index: 100;
}

#main {
  width: 100%;
  position: relative;
}

.mv {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  height: auto;
  background: url(../images/mv_img_1.png) no-repeat center top;
  background-size: auto 100%;
  aspect-ratio: 3 / 4;
}

.mv h1 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}
.mv .txt1 {
  width: 39.2%;
  position: absolute;
  left: 59%;
  top: 48%;
}
.mv .txt2 {
  width: 37%;
  position: absolute;
  left: 64%;
  top: 67%;
}

.lock {
  position: relative;
  max-width: 1000px;
  margin: 3em auto;
}

.lock .lock1 {
  width: 35.3%;
  position: absolute;
  right: 4%;
  top: -28%;
}
.lock .lock2 {
  width: 28.2%;
  position: absolute;
  left: 2%;
  top: 44%;
}
.lock .txt3 {
  margin: 3em auto;
  width: 90%;
  position: relative;
  z-index: 10;
}

.catch {
  margin: 7em 0;
  background: url(../images/bg_wall.png) no-repeat center top;
  background-size: cover;
}
.catch h2 {
  margin: 0 auto;
  box-sizing: border-box;
}

.point h2 {
  margin: 2em auto;
  width: 95%;
}

.point_box {
  margin: 0 auto 4em;
}

.point_box h3 {
  margin: 1em auto 0;
  width: 98%;
}


.howto {
  padding: 3em 0;
  background: url(../images/bg_wall.png) no-repeat center top;
  background-size: cover;
}

.howto h2 {
  margin: 3em auto;
  width: 95%;
}

.howto_box {
  width: 80%;
  margin: 3em auto;
}

.shop {
  margin: 3em auto;
}
.shop ul {
  margin: 1em auto;
}
.shop li {
  font-size: 4rem;
  margin: 0.5em auto;
}
.shop li::before {
  content: '・';
}

.info {
  margin: 6em auto;
}
.info_wrap {
  margin: 4em auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.info_box {
  width: 43%;
  background: #1A1A1A;
  box-sizing: border-box;
  margin: 2%;
  padding: 1em 0.5em;
  box-shadow: 0 0 0.75em rgba(255,255,255,0.75);
}

.info_box h3 {
  margin: 0 auto 0.5em;
  width: fit-content;
  font-size: 3.6rem;
  border-bottom: #fff 0.2em solid;
  padding: 0 0.5em 0.5em;
}

.info_box .icon {
  margin: 0 auto 0.5em;
  width: 90%;
}

.info_box .txt {
  height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}

.info_box .txt.large {
  font-size: 3.0rem;
}

.info .img {
  margin: 4em auto 2em;
}

.info .date {
  margin: 0 auto;
  width: 95%;
  max-width: 650px;
  font-size: 4.0rem;
  letter-spacing: 0.1em;
  background: url(../images/date_bg.png) no-repeat center center;
  background-size: cover;
}
.info .btn {
  margin: 1em auto 2em;
  width: 72%;
}
.info .btn img {
//  opacity: 0.3;
}
.nanica {
  border-top: #666 2px solid;
  padding: 15% 30%;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.lock .txt3.fadeIn_up {
  transition: 5s;
  animation: shake 0.8s infinite;
}
  @keyframes shake {
    0% {
      transform: translate(5px, 0px);
    }
    5% {
      transform: translate(-5px, -5px);
    }
    10% {
      transform: translate(5px, 0px);
    }
    15% {
      transform: translate(-5px, 5px);
    }
    20% {
      transform: translate(5px, 0px);
    }
    25% {
      transform: translate(-5px, -5px);
    }
    30% {
      transform: translate(0px, 0px);
    }
  }





  @media screen and (min-width:750px) {
    .mv {
      max-width: 1080px;
      height: 1000px;
      aspect-ratio:inherit;
    }
    .mv h1 {
      width: 750px;
    }
    .mv .txt1 {
      width: 292px;
      left: 59%;
      top: 48%;
    }
    .mv .txt2 {
      width: 270px;
      left: 64%;
      top: 67%;
    }
    .catch h2 {
      max-width: 850px;
      text-align: left;
    }
    .catch h2 img {
      max-width: 750px;
    }
    .point {
      max-width: 650px;
      margin: 0 auto;
    }
    .howto_wrap {
      max-width: 650px;
      margin: 0 auto;
    }
    .shop {
      max-width: 650px;
    }
    .info_wrap {
      max-width: 1200px;
      justify-content: space-between;
    }
    .info_box {
      width: 23%;
      margin: 0;
    }
    .info_box h3 {
      font-size: 2.6rem;
    }
    .info_box .txt {
      font-size: 2.0rem;
    }
  
    .info_box .txt.large {
      font-size: 2.0rem;
    }
    .info .img {
      max-width: 650px;
    }
    
    .info .btn {
      max-width: 300px;
    }

    .nanica {
      padding: 5% 10%;
    }

    .nanica img {
      max-width: 300px;
    }
  }
  