html,
body {
  height: 100%;
}

* {
  /* border-bottom: 1px solid red; */
}
 
body {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}

/* .top-bg-wrapper {

} */

.parallax-window {
    min-height: 600px;
    background: transparent;
}

.top-bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(../img/top-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1
}

.top-hero {
  position: relative;
  display: block;
  height: 100vh;
  margin-bottom: 80px;
}

.top-hero h2 {
  font-family: bebas-neue, sans-serif;
  font-weight: 400;
  font-style: normal;

  color: white;
  font-size: 26px;
  letter-spacing: 2px;
  padding-top: 30px;
  margin-bottom: 25px;
  margin-left: 10%;
}

.top-hero h1 {
  display: inline-block;
  background-color: #F7EF29;
  /* position: absolute; */

  font-family: a-otf-midashi-mi-ma31-pr6n, serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 4px;
  font-size: 60px;
  left: 0;
  padding: 20px 20px 20px 10%;
}

.top-hero p,
.top-hero h3 {
  position: absolute;
  left: 50%;

  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.top-hero h3 {
  font-size: 60px;
  bottom: 100px;
}

.top-hero p {
  font-size: 28px;
  bottom: 30px;
}

.benefit {
  position: relative;
  margin-bottom: 50px;
}

.benefit h1 {
  font-size: 36px;
  margin-top: 80px;
}

.underline {
  background: linear-gradient(transparent 75%, #F7EF29 75%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: 0 20%;
}

.underline.pink {
  background: linear-gradient(transparent 75%, #FF5AB3 75%);
}

.benefit h1 .underline,
.testimonial h1 .underline {
  font-family: a-otf-midashi-mi-ma31-pr6n, serif;
  font-weight: 600;
  font-style: normal;

  font-size: 56px;
  background: linear-gradient(transparent 75%, #F7EF29 75%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: 0 20%;
}

.benefit h2 {
  margin-top: 80px;
  margin-bottom: -50px;
}

.benefit h3 {
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.benefit p {
  font-size: 26px;
}

.total,
.total-2 {
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;

  color: #000;
  font-size: 26px;
}

.nayami {
  background: rgba(247, 239, 41, .2);
  padding-top: 30px;
}

.nayami hr {
  border-bottom: 2px solid #000;
}


/*****************/
/* CHECKBOX HACK */
/*****************/

input[type='checkbox']{
  height: 0;
  width: 0;
  visibility: hidden;
}

input[type='checkbox'] + label{
  position: relative;
  display: flex;
  margin: .6em 0;
  align-items: center;
  color: #000;
  transition: color 250ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > ins{
  position: absolute;
  display: block;
  bottom: 0;
  left: 2em;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > ins > i{
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: red;
}
input[type='checkbox'] + label > span{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 1.8em;
  height: 1.8em;
  background: #fff;
  border: 3px solid #000;
  border-radius: 4px;
  cursor: pointer;  
  transition: all 250ms cubic-bezier(.4,.0,.23,1);
}

input[type='checkbox'] + label:hover,
input[type='checkbox']:focus + label {
  color: red;
}

input[type='checkbox'] + label:hover > span,
input[type='checkbox']:focus + label > span {
  background: rgba(255,255,255,.1);
}

input[type='checkbox']:checked + label > ins {
  height: 100%;
}

input[type='checkbox']:checked + label > span {
  border: 3px solid #000;
  animation: shrink-bounce 200ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox']:checked + label > span:before{
  content: "";
  display: block;
  position: absolute;
  top: 1em;
  left: 0.2em;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: rotate(40deg);
  transform-origin: 50% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
}

@keyframes shrink-bounce{
  0%{
    transform: scale(1);
  }
  33%{    
    transform: scale(.85);
  }
  100%{
    transform: scale(1);    
  }
}
@keyframes checkbox-check{
  0%{
    width: 1em;
    height: 0;
    border-color: #FF5AB3;
    transform: translate3d(0,0,0) rotate(40deg);
  }
  33%{
    width: 1em;
    height: 0;
    transform: translate3d(0,0,0) rotate(40deg);
  }
  100%{    
    width: 1em;
    height: 1.8em;    
    border-color: #FF5AB3;
    transform: translate3d(0,-1.3em,0) rotate(40deg);
  }
}


.nayami {
  counter-reset: characters;
}

input:checked {
  counter-increment: characters;
}

.total:after {
  content: counter(characters);

  font-size: 60px;
  color: #FF5AB3;
  vertical-align: -10px;
  margin: 0 20px;
}

.benefit h4 {
  font-family: a-otf-midashi-mi-ma31-pr6n, serif;
  font-weight: 600;
  font-style: normal;

  font-size: 26px;
  margin-bottom: 60px;
}

.benefit h4 span {
  background: linear-gradient(transparent 75%, #F7EF29 75%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: 0 20%;

  font-size: 46px;
}


.banner01 {
  margin: 80px auto;
}

.down-triangle {
  position: relative;
  z-index: 1;
  width: 100%;
}

.usage .bg-image {
  width: 100%;
  /* margin-top: -130px; */
  z-index: 10;
}

.usage {
  position: relative;
}

.usage h3 {
  position: absolute;
  top: 190px;
  margin-left: calc(50% - 80px);
}

.usage h1 {
  position: absolute;
  top: 240px;
  margin-left: calc(50% - 260px);
  font-size: 60px;

  letter-spacing: 2px;
}

.usage h2 {
  position: absolute;
  margin-left: calc(50% - 220px);
  top: 330px;
  
  font-family: bebas-neue, sans-serif;
  font-weight: 400;
  font-style: normal;

  color: white;
  font-size: 26px;
  letter-spacing: 2px;
}

.usage .description-1 {
  position: absolute;
  right: 30px;
  top: 680px;
  text-align: left;
}

.usage-description {
  margin-top: 40px;
}

.usage .img-frame {
  box-shadow: -40px 30px 0 #F7EF29;
}

.usage-header-wrap {
  background: #F7EF29;
  padding: 20px 30px;
  margin-left: -80px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.usage-header-wrap h4,
.usage-header-wrap h5 {
  font-family: a-otf-midashi-mi-ma31-pr6n, serif;
}

.usage-header-wrap h4 {
  font-size: 32px;
}

.usage-header-wrap h5 {
  font-size: 18px;
}


.how-to-use {
  /* background: rgba(247, 239, 41, .2); */
  padding: 40px 20px;
  border: 10px solid #F7EF29;
  margin-top: -70px;
  margin-bottom: 150px;
  padding-bottom: 0;
  z-index: 1;
}

.how-to-use-header img {
  position: relative;
  margin-top: 40px;
  z-index: 100;
  background: #fff;
  padding: 10px 20px;
}

.how-to-block {
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bolder;
  margin-top: 50px;
}

.how-to-block h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.how-to-block .text-box {
  margin-top: 80px;
}

.unique-hero p {
    font-size: 26px;
    margin-top: 80px;
    background-color: rgba(247, 239, 41, 0.7);
    padding: 20px 0;
  }



.testimonial h1 {
  margin: 50px auto 80px;
}

.voice-box-p {
  margin-top: 60px;
  line-height: 32px;
}

.voice-box {
  margin-bottom: 80px;
}

.voice-box-bg01 {
  background: url('../img/balloon01.png');
  background-size: 102%;
  background-repeat: no-repeat;
  background-position: -20px 80px;
  transform: rotate(5deg);
}

.voice-box-bg02 {
  background: url('../img/balloon02.png');
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: 0 90px;
  transform: rotate(-8deg);
}

.voice-box img {
  box-shadow: 10px -20px 0 #FF5AB3;
}

.voice-box h6 {
  font-family: a-otf-midashi-mi-ma31-pr6n, serif;
  letter-spacing: 1px;
}

/***************/
/* CART BUTTON */
/***************/

.cart-wrap {
  position: relative;
  border: 10px solid transparent;
  transition: all 1s ease;
}

.cart-wrap input {
  width: 100%;
  margin-bottom: 0!important;
  width: 100%!important;
  height: 280px!important;
  margin-top: -20px;
  background: #F7EF29!important;
}

.cartjs_product_table {
  display: block;
  display:  none;
}

.cartjs_box {
  position: absolute;
  z-index: 999;
  width: 100%!important;
  
  transition: all 1s ease;
}

.cartjs_cart_in input {
  background-color: transparent!important;
  color: transparent!important;
}

.cartjs_box:hover {
  background-color: rgba(255,255,255,.3);
}

.cart-wrap .banner {
  position: absolute;
}


.unique h1 {
  margin: 120px auto 0;
  background-image: url(../img/laurel.png);
  background-size: 80%;
  background-position: center 0px;
  background-repeat: no-repeat;
  height: 320px;
  width: auto;
  padding: 80px 100px;

}

.unique p {
  font-size: 26px;
}

.unique-uka_text　{
  padding-top: 100px;
}

.unique-hero {
  font-size: 26px;
  padding-top: 60px;
}

.unique h2 {
  transform: rotate(-5deg);
  margin-bottom: 30px;
}

footer {
  height: 80px;
  background-color: #fffdc8;
  color: #000;
  padding-top: 30px;
}

footer a {
  color: #000;

}






/* REFLECTION */

.reflection-img{
    width: auto;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.reflection {
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 3s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 5s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 5s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 5s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 5s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}






.reveal {
  position: relative;
  overflow: hidden;
}
.reveal h1 {
  -webkit-animation: fadeIn 0s 0.6s;
          animation: fadeIn 0s 0.6s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.reveal::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F7EF29;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-animation: secondaryImageOverlayIn 0.6s 0s, secondaryImageOverlayOut 0.6s 0.6s;
          animation: secondaryImageOverlayIn 0.6s 0s, secondaryImageOverlayOut 0.6s 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}










/* MEDIA QUERY */

@media (max-width: 998px) {
  .top-hero-bottom {
    position: relative;
  }

  .top-hero p {
    font-size: 24px;
  }

  .top-hero-bottom h3,
  .top-hero-bottom p {
    position: absolute;
    margin-left: 30px;

    font-family: a-otf-futo-go-b101-pr6n, sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .top-hero-bottom h3 {
    bottom: -400px;
  }

  .top-hero-bottom p {
    bottom: -480px;
  }

  .top-second-mobile {
    margin-top: -20px;
  }


  .benefit h3 {
    font-size: 18px;
    text-align: left;
  }

  .usage h3 {
    width: 90%;
    margin: 0 auto;
    top: 20px;
    text-align: center;
  }

  .usage h3 img {
    margin: 0 auto;
  }

  .usage h1 {
    font-size: 56px;
    top: 80px;
    /* margin: 0 auto; */
    text-align: center;
  }

  .usage h2 {
    top: 140px;
    font-size: 24px;
    text-align: center;
    /* margin: 0 auto; */
  }

  .usage .img-frame {
    box-shadow: none;
  }

  .usage .description-1 {
    font-size: 10px;
    top: 350px;
    right: 10px;
  }

  .usage-header-wrap {
    background: #F7EF29;
    padding: 10px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .usage-header-wrap h4 {
    font-size: 28px;
  }

  .usage-header-wrap h5 {
    font-size: 18px;
  }

  .reflection-img{
    width: auto;
    height: 660px;
    position: relative;
    overflow: hidden;
  }

  .benefit h1 {
    margin-top: -20px;
  }
}






@media (max-width: 576px) {
  .top-bg {
    background-size: contain;
    background-position: center 300px;
  }

  .parallax-window {
    min-height: 80vh;
  }

  .top-secont-mobile {
    margin-top: -30px;
  }

  .top-hero {
    margin-bottom: 0;
    height: auto;
  }

  .top-hero h1 {
    font-size: 28px;
    padding-left: 10px;
  }

  .top-hero h2 {
    font-size: 18px;
    margin-left: 10px;
  }

  .top-hero-bottom {
    position: relative;
  }

  .top-hero-bottom h3,
  .top-hero-bottom p {
    position: absolute;
    margin-left: 30px;

    font-family: a-otf-futo-go-b101-pr6n, sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .top-hero-bottom h3 {
    bottom: -400px;
  }

  .top-hero-bottom p {
    bottom: -480px;
  }

  .top-second-mobile {
    margin-top: -20px;
  }

  .top-hero p {
    font-size: 18px;
  }

  .top-hero p, .top-hero h3 {
    left: auto;
  }

  .benefit h1 {
    margin-top: -40px;
  }

  .benefit h1 .underline {
    font-size: 38px;
  }

  .benefit p {
    font-size: 18px;
  }

  .benefit h3 {
    font-size: 18px;
    text-align: left;
  }

  .how-to-block .text-box {
    margin-top: 30px;
  }

  .usage h3 {
    width: 90%;
    margin: 0 auto;
    top: 20px;
    text-align: center;
  }

  .usage h3 img {
    margin: 0 auto;
  }

  .usage h1 {
    font-size: 34px;
    top: 80px;
    margin: 0 auto;
    text-align: center;
  }

  .usage h2 {
    top: 130px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .usage .img-frame {
    box-shadow: none;
  }

  .usage .description-1 {
    font-size: 10px;
    top: 350px;
    right: 10px;
  }

  .usage-header-wrap {
    background: #F7EF29;
    padding: 10px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .usage-header-wrap h4 {
    font-size: 28px;
  }

  .usage-header-wrap h5 {
    font-size: 18px;
  }

  .voice-box-bg01,
  .voice-box-bg02 {
    background: rgba(247, 239, 41, 0.2);
    transform: rotate(0deg);
    margin-top: 10px;
  }

  .how-to-use-header {
    margin-top: -120px;
  }

  .how-to-block:last-of-type {
    margin-bottom: 80px!important;
  }



  .unique h1 {
    background-size: 100%;
  }

  .unique h1 {
    font-size: 22px;
    margin-top: 0;
    padding: 20px 30px;
    height: auto;
    min-height: 150px;
  }

  .unique p {
    font-size: 18px;
    padding: 0 10px;
    margin-bottom: 60px;
  }

  .unique01 {
    background-image: linear-gradient(#fff0f8, #ffaeda);
    clip-path: polygon(
      0 0,
      100% 3%,
      100% 100%,
      0 95%
    );
  }

  .unique02 {
    background-image: linear-gradient(#fffdc8, #fbf669);
    clip-path: polygon(
      0 0,
      100% 5%,
      100% 100%,
      0 92%
    );
  }

  .unique-parallax {
    margin-top: 60px;
  }

/*   .unique-hero p {
    font-size: 26px;
    margin-top: 80px;
    background-color: rgba(247, 239, 41, 0.3);
  } */


  .reflection-img{
    width: auto;
    height: 420px;
    position: relative;
    overflow: hidden;
  }

}










