@charset "UTF-8";

/**********************
// style.css
**********************/
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese);


html {
  font-size: 62.5%;
  /* 16px(default) * 62.5% = 10px */
}

@media screen and (max-width:749px) {
  html {
    font-size: 1.33vw;
    /* 10px / 750px = 1.33% */
  }
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: 'YuGo*', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

#contents_wrapper {
  font-family: 'YuGo*', "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, 'Noto Sans JP', sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

video {
  pointer-events: none; /* タップやクリックを無効にする */
  touch-action: none; /* タッチアクションを無効にする */
}

a {
  display: block;
  transition: .2s;
}

a:hover,
button:hover {
  opacity: 0.7;
}

/* 重ねる画像 */
.item {
  position: absolute;
}

.contents {
  position: relative;
  max-width: 750px;
  left: 0;
  right: 0;
  margin: auto;
}

/* ================ cta ================ */
.cta_wrap{
  width: 100%;
  height: 100%;
  margin: auto;
}

.cta {
  position: sticky;
  top: calc(100vh - 5rem);
  left: 0;
  right: 0;
  margin: auto;
  width: 62.2rem;
  z-index: 999;
}

.cta .offer_btn {
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width:750px) {
  .cta {
    top: 98%;
  }
}


iframe {
  /* iPhone safariの枠線を消す */
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  /* PCのChromeの枠線を消す */
  outline: none;
  border: none;
}

/* ================ fv ================ */
.fv {
  position: relative;
}

.fv .logo {
  position: absolute;
  width: 25.6rem;
  left: 7%;
  top: 2%;
  z-index: 1;
}

.fv_bg {
  animation: revealFromCenter 1.2s ease-in-out forwards;
  clip-path: inset(50% 0 50% 0);
}


@keyframes revealFromCenter {
  0% {
      filter: blur(15px);
      clip-path: inset(50% 0 50% 0);
  }
  100% {
      filter: blur(0);
      clip-path: inset(0 0 0 0);
  }
}

.point_wrapper {
  display: flex;
  gap: 2rem;
  bottom: 21.5rem;
  right: 4%;
}

.fv_point1,
.fv_point2,
.fv_point3 {
  width: 17rem;
  animation: show_time_point 1.7s both;
}

.fv_point1 {
  animation-delay: 1.3s;
}

.fv_point2 {
  animation-delay: 1.5s;
}

.fv_point3 {
  animation-delay: 1.7s;
}

@keyframes show_time_point {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  50%{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================ coupon ================ */
.coupon {
  position: relative;
}

.coupon_title {
  width: 57.7rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 6%;
}

.coupon_title {
  opacity: 0;
}

.coupon_title.active {
  animation: zoomIn 0.5s .3s forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.coupon_item {
  width: 75rem;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}

.coupon_item.active {
  animation: slideUp 0.5s .8s ease-out forwards;

}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
  }
  50% {
    transform: translateY(0px);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}


/* ================ offer ================ */
.offer{
  position: relative;
}

.offer_btn {
  width: 62.2rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 21%;
}

.pb_blue {
  padding-bottom: 3.3rem;
  background-color: #A9C8D6;
}

.pb_blue .offer_btn {
  bottom: 23.5%;
}

.pb_blue .offer_btn_last {
  bottom: 26.5%;
}

/* ================ security================  */
.security {
  background-color: #A9C8D6;
}

/* accordion */
.security .ac dt {
  margin: 0 auto;
}

.security .ac-parent {
  position: relative;
}

.ac_title {
  position: relative;
  display: inline-block;
}

.ac_title img {
  margin: auto;
}

.security_icon {
  position: absolute;
  width: 19rem;
  top: 24%;
  right: 6%;
  transition: transform 0.3s ease-in-out;
}

.ac_title:hover .security_icon {
  transform: rotate(15deg);
}

.security {
  position: relative;
}

.security .ac-parent img {
  margin: 0 auto;
  cursor: pointer;
  transition: .3s;
  z-index: 10;
}

.security .ac-child * {
  font-size: 2rem;
  font-weight: 600;
}

.security .ac-child {
  background-color: #A9C8D6;
  padding: 0 3.5rem 4rem;
}

.security .ac-child .security_txt {
  line-height: 2.8rem;
  background-color: #fff;
  padding: 3rem 2rem;
}

.security .ac-child .security_txt a {
  text-decoration: none;
}

.security .ac_iconwrap {
  position: absolute;
  right: 31%;
  top: 33%;
  z-index: 15;
  cursor: pointer;
}

.security .ac-parent .ac_icon {
  position: relative;
  height: 3.8rem;
  width: 3.8rem;
  background-image: url(../images/ac_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.security .ac-parent .ac_icon {
  transform: rotate(180deg);
}

.security .ac-parent .ac_icon.open {
  transform: rotate(0deg);
}


/* ================ cm ================  */
.youtube {
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  vertical-align:bottom;
  margin: 5rem auto;
}


/* ================ point ================  */
.point_wrap {
  position: relative;
  opacity: 0;
}

.point_wrap.active {
  animation: show_time_point2 1.3s forwards;
}

.point_title {
  width: 28rem;
  top: -2.5%;
  left: 4%;
}

.point_wrap03 .point_title {
  top: -1.5%;
}

@keyframes show_time_point2 {
  0% {
    transform: translateY(5rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

.point .video_wrap video {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 9%;
}

.point .video_wrap video {
  width: 63rem;
}

/* ================ voice ================  */
.voice [class*="num"] {
  width: 7.7rem;
}

.voice [class*="user"] {
  width: 18.4rem;
  display: none;
}

.voice [class*="user"].active {
  animation: turn .5s linear;
  display: block;
}

@keyframes turn {
  0% {
    transform: rotateY(270deg);
    opacity: 0;
  }
  50% {
    opacity: .25;
  }
  100% {
    transform: rotateY(360deg);
    opacity: 1;
  }
}

.voice .num_1 {
  top: 11%;
  left: 12%;
}

.voice .num_2 {
  top: 22%;
  right: 16%;
}

.voice .num_3 {
  top: 34%;
  left: 11%;
}

.voice .num_4 {
  top: 47%;
  right: 32%;
}

.voice .user_1 {
  top: 11%;
  left: 18%;
}

.voice .user_2 {
  top: 24%;
  right: 18%;
}

.voice .user_3 {
  top: 35%;
  left: 23%;
}

.voice .user_4 {
  top: 47%;
  right: 11%;
}

/* ================ use ================  */
.use_title {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 15.3%;
  width: 36.5rem;
  transform: scale(0.9);
  transition: transform .5s ease-in-out;
}

.use_title.active {
  transform: scale(1);
}

/* ================ kodawari ================  */
.kodawari [class*="group"] {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 62.8rem;
}

.kodawari .group_1 {
  top: 18%;
}

.kodawari .group_2 {
  top: 29%;
}

/* ================ benefits ================  */
.benefits [class*="group"] {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 63rem;
  opacity: 0;
}

.benefits [class*="group"].active {
  animation: fadeIn 1s linear;
  opacity: 1;
}

.benefits .group_1 {
  top: 25%;
}

.benefits .group_2 {
  top: 49%;
}

.benefits .group_3 {
  top: 73%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================ footer ================  */
.footer_wrap {
  text-align: center;
  padding-bottom: 3rem;
}

.footer_wrap .company_name {
  font-size: 3.7rem;
  line-height: 4.9rem;
  font-weight: 500;
}

.footer_wrap .footer_link {
  font-size: 2.2rem;
  display: flex;
  justify-content: center;
}

.footer_wrap .footer_link a {
  color: #000;
  text-decoration: none;
}