@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block;
}

html, body, div, span, applet, object, iframe, strong, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: calc(100vw / ( 640 / 26 ));
}

body {
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro',Meiryo,sans-serif;
  color: #000;
  line-height: 1.8;
  background: #ddd;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

hr {
  height: 1px;
  background-color: #ccc;
  border: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.sp_only {
  display: block;
}

.sp_only_inline {
  display: inline;
}

.pc_only,
.pc_only_inline {
  display: none;
}

.wrap {
  max-width: 640px;
  padding: 0 calc(100vw / ( 640 / 40 ));
  margin: 0 auto;
}

.to_top {
  -webkit-transition: top .6s ease, opacity .6s ease;
  transition: top .6s ease, opacity .6s ease;
  position: relative;
  top: 50px;
  opacity: 0;
}

.isAnimate.show.to_top {
  top: 0;
  opacity: 1;
}

.to_top_left {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  left: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_left {
  top: 0;
  left: 0;
  opacity: 1;
}

.to_top_right {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  right: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_right {
  top: 0;
  right: 0;
  opacity: 1;
}

.contents {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.note {
  font-size: calc(100vw / ( 640 / 20 ));
  line-height: 1.6;
  margin-left: 1em;
  text-align: left;
}
.note li {
  margin: 0 0 .5em;
  text-indent: -1em;
}
.note li:last-of-type {
  margin-bottom: 0;
}

ol.note {
  margin-left: 2em;
}
ol.note li {
  text-indent: -2em;
  counter-increment: num;
}
ol.note li:before {
  content: "※" counter(num) " ";
}

/*=======================================
	head
=======================================*/
/*=======================================
	mv
=======================================*/
.mv {
  background: url("../images/mv_bg.png") no-repeat center top;
  background-size: 100% auto;
  padding: calc(100vw / ( 640 / 30 )) 0 2rem;
}
.mv .img1 {
  max-width: calc(100vw / ( 640 / 610 ));
  margin: 0 auto;
  position: relative;
  opacity: 0;
  top: 3rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*		transition-delay: .2s;*/
}
.mv .img1.show {
  opacity: 1;
  top: 0;
}
.mv .img2 {
  max-width: calc(100vw / ( 640 / 577 ));
  margin: 0 auto calc(100vw / ( 640 / 20 ));
  position: relative;
  -webkit-animation: txt .4s ease-out both;
          animation: txt .4s ease-out both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes txt {
  0% {
    opacity: 0;
    top: 2rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes txt {
  0% {
    opacity: 0;
    top: 2rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mv .img3 {
  max-width: calc(100vw / ( 640 / 560 ));
  margin: 0 auto;
  position: relative;
  opacity: 0;
  top: 3rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.mv .img3.show {
  opacity: 1;
  top: 0;
}
.mv .btn {
  margin: calc(100vw / ( 640 / -60 )) 0 1rem;
  position: relative;
  z-index: 1;
  /*		opacity: 0;
  		top: 3rem;*?
  		transition: all 0.4s;
  		
  /*		&.show{
  			opacity: 1;
  			top: 0;
  		}*/
}
.mv .btn img {
  -webkit-animation: skew 2s linear infinite;
          animation: skew 2s linear infinite;
}
@-webkit-keyframes skew {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  5% {
    -webkit-transform: skew(5deg, 4.2deg);
            transform: skew(5deg, 4.2deg);
  }
  10% {
    -webkit-transform: skew(-4deg, -3deg);
            transform: skew(-4deg, -3deg);
  }
  15% {
    -webkit-transform: skew(3deg, 2.2deg);
            transform: skew(3deg, 2.2deg);
  }
  20% {
    -webkit-transform: skew(-2deg, -1.5deg);
            transform: skew(-2deg, -1.5deg);
  }
  25% {
    -webkit-transform: skew(0.9deg, 0.9deg);
            transform: skew(0.9deg, 0.9deg);
  }
  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
            transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
            transform: skew(0.3deg, 0.3deg);
  }
  40% {
    -webkit-transform: skew(-0.2deg, -0.2deg);
            transform: skew(-0.2deg, -0.2deg);
  }
  45% {
    -webkit-transform: skew(0.1deg, 0.1deg);
            transform: skew(0.1deg, 0.1deg);
  }
  50% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
}
@keyframes skew {
  0% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
  5% {
    -webkit-transform: skew(5deg, 4.2deg);
            transform: skew(5deg, 4.2deg);
  }
  10% {
    -webkit-transform: skew(-4deg, -3deg);
            transform: skew(-4deg, -3deg);
  }
  15% {
    -webkit-transform: skew(3deg, 2.2deg);
            transform: skew(3deg, 2.2deg);
  }
  20% {
    -webkit-transform: skew(-2deg, -1.5deg);
            transform: skew(-2deg, -1.5deg);
  }
  25% {
    -webkit-transform: skew(0.9deg, 0.9deg);
            transform: skew(0.9deg, 0.9deg);
  }
  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
            transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
            transform: skew(0.3deg, 0.3deg);
  }
  40% {
    -webkit-transform: skew(-0.2deg, -0.2deg);
            transform: skew(-0.2deg, -0.2deg);
  }
  45% {
    -webkit-transform: skew(0.1deg, 0.1deg);
            transform: skew(0.1deg, 0.1deg);
  }
  50% {
    -webkit-transform: skew(0deg, 0deg);
            transform: skew(0deg, 0deg);
  }
}
.mv .note span {
  color: #00baff;
}

/*=======================================
	attention
=======================================*/
.attention {
  background: #fff5ef;
  padding: 2.5rem 0 calc(100vw / ( 640 / 100 ));
  position: relative;
  overflow: hidden;
}
.attention:after {
  content: "";
  display: block;
  width: calc(100vw / ( 640 / 183 ));
  height: calc(100vw / ( 640 / 196 ));
  background: url("../images/attention_img.jpg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  right: calc(100vw / ( 640 / 64 ));
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.attention .h {
  max-width: calc(100vw / ( 640 / 520 ));
  margin: 0 auto 1.5rem;
}
.attention ul {
  text-align: left;
  font-size: calc(100vw / ( 640 / 28 ));
  font-weight: 500;
  line-height: 1.6;
}
.attention li {
  position: relative;
  padding-left: calc(100vw / ( 640 / 56 ));
  margin-top: .9rem;
}
.attention li:before {
  content: "";
  display: block;
  width: calc(100vw / ( 640 / 38 ));
  height: calc(100vw / ( 640 / 34 ));
  background: url("../images/icon_check.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: .3em;
  left: 0;
}

.attention.show:after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*=======================================
	footer
=======================================*/
footer {
  background: #181818;
  color: #fff;
}
footer .row1 {
  padding: 2.5rem 0 1.5rem;
  position: relative;
}
footer .row1:after {
  content: "";
  display: block;
  width: calc(100vw / ( 640 / 560 ));
  height: 1px;
  background: #3a3a3a;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
footer .row1 h2 {
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 1.3rem;
}
footer .row1 p {
  text-align: left;
  font-size: calc(100vw / ( 640 / 22 ));
  color: #9f9e9e;
}
footer .row2 {
  padding: 1rem 0;
}
footer .row2 p {
  font-size: calc(100vw / ( 640 / 20 ));
  letter-spacing: .1em;
  line-height: 1;
}

/******************************************************************************************

	pc size

******************************************************************************************/
@media only screen and (min-width: 640px) {
  html {
    font-size: 26px;
  }

  .sp_only,
  .sp_only_inline {
    display: none;
  }

  .pc_only {
    display: block;
  }

  .pc_only_inline {
    display: inline;
  }

  .wrap {
    padding: 0 40px;
  }

  .note {
    font-size: 20px;
  }

  /*=======================================
  	head
  =======================================*/
  /*=======================================
  	mv
  =======================================*/
  .mv {
    padding: 30px 0 2rem;
  }
  .mv .img1 {
    max-width: 610px;
  }
  .mv .img2 {
    max-width: 577px;
    margin: 0 auto 20px;
  }
  .mv .img3 {
    max-width: 560px;
  }
  .mv .btn {
    margin: -60px 0 1rem;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }

  /*=======================================
  	attention
  =======================================*/
  .attention {
    padding: 2.5rem 0 100px;
  }
  .attention:after {
    width: 183px;
    height: 196px;
    right: 64px;
  }
  .attention .h {
    max-width: 520px;
  }
  .attention ul {
    font-size: 28px;
  }
  .attention li {
    padding-left: 56px;
  }
  .attention li:before {
    width: 38px;
    height: 34px;
  }

  /*=======================================
  	footer
  =======================================*/
  footer .row1:after {
    width: 560px;
  }
  footer .row1 p {
    font-size: 22px;
  }
  footer .row2 p {
    font-size: 20px;
  }
}
