@charset "UTF-8";

/* CSS変数 */
:root {
  --fv-crown-mask: url('../image/fv_3crown.png');
}

/* 初期読み込み */
html,
body,
.lp_wrap * {
  margin: 0;
  padding: 0;
  outline: none;
}

body.is-loading {
  position: fixed;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

/* body {
  min-height: 100vh;
  background:
    linear-gradient(to bottom,
      #f5fbff 0%,
      #e6f4ff 60%),
    #e6f4ff;
} */

/* body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 30% 20%,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0) 40%),
    linear-gradient(to bottom,
      #f2fbff 0%,
      #7fd6d8 30%,
      #00b4bd 60%,
      #007a8c 100%
    );
} */

.lp_wrap {
  max-width: 750px;
  /* margin: 185px auto 50px; */
  margin: 0 auto;
  padding-top: 0;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 750px) {
  .lp_wrap {
    /* margin: 10% auto -5%; */
    margin: 0 auto;
  }
}

.lp_wrap ul,
.lp_wrap ol,
.lp_wrap dl {
  list-style: none;
}

.lp_wrap img,
.lp_wrap video {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.lp_wrap section {
  position: relative;
}

/* 共通-------------------------------------------- */
/* slick */
.lp_wrap .slider {
  display: none;
}

.lp_wrap .slider.slick-initialized {
  display: block;
}

.lp_wrap .slider .slick-arrow {
  cursor: pointer;
}

.lp_wrap .slider .slick-list {
  cursor: grab;
}

.lp_wrap .slider .slick-list:active {
  cursor: grabbing;
}

.lp_wrap .slider .slick-dots li * {
  display: none;
}

/* フェードイン */
.fade-item {
  position: absolute;
  transform: translateX(-50%) scale(0.96);
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* リンク */
a {
  color: #3b6ea8;
  font-weight: 400;
}

a:visited {
  color: #6a5fa8;
}

a:hover {
  font-weight: 700;
}

a:active {
  opacity: 0.8;
}

/* モーダル */
.lp_wrap .modal-toggle {
  display: none;
}

.lp_wrap .modal-toggle:checked~.modal {
  opacity: 1;
  visibility: visible;
}

.lp_wrap .modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9999;
}

.lp_wrap .modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lp_wrap .modal .modal-inner {
  position: relative;
  max-width: 90%;
  z-index: 1;
}

.lp_wrap .modal .modal-inner img {
  width: 100%;
  display: block;
}

.lp_wrap .modal .modal-inner .modal-close {
  position: absolute;
  top: clamp(-60px, -8vw, -30px);
  right: 0;
  font-size: clamp(32px, 8vw, 60px);
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* ローディング-------------------------------------------- */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #00b2bd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 1;
  transition: opacity 1s ease;
}

#loading .surfer {
  width: 120px;
  height: 60px;
  background: url("../image/surfer.png") no-repeat center / contain;
  animation: paddle 1.2s ease-in-out infinite;
}

#loading .loading-text {
  color: #fff;
  font-weight: bold;
}

@keyframes paddle {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-6px) rotate(-3deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  75% {
    transform: translateY(-6px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

/* パーミッションダイヤログ
  -------------------------------------------------- */
#confirmation {
  position: fixed;
  inset: 0%;
  z-index: 100000;
  display: none;
}

#confirmation img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#confirmation .confirmation_wrap {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-content: center;
  background-color: rgba(35, 24, 21, 0.6);
}

#confirmation .confirmation_wrap .confirmation_inner {
  max-width: 600px;
  padding: clamp(28px, 5.3vw, 40px) 10px;
  margin: 0 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: clamp(12px, 2.6vw, 20px);
}

#confirmation .confirmation_wrap .confirmation_inner .logo {
  padding: 0 clamp(30px, 12vw, 90px);
}

#confirmation .confirmation_wrap .confirmation_inner .let {
  text-align: center;
  padding-top: clamp(8px, 2vw, 15px);
  font-size: clamp(14px, 2.4vw, 18px);
  font-weight: bold;
}

#confirmation .confirmation_wrap .confirmation_inner .btn {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 4vw, 30px);
}

#confirmation .confirmation_wrap .confirmation_inner .btn li {
  cursor: pointer;
}

#confirmation .confirmation_wrap .confirmation_inner .btn .yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 12px);
  width: clamp(220px, 48vw, 360px);
  height: clamp(42px, 10.4vw, 78px);
  padding: 0 clamp(20px, 4vw, 30px);
  background-color: #00b2bd;
  color: #fff;
  font-size: clamp(14px, 3.2vw, 24px);
  font-weight: bold;
  text-align: center;
  border-radius: clamp(24px, 5.3vw, 40px);
  transition: all .3s ease;
}

#confirmation .confirmation_wrap .confirmation_inner .btn .yes::after {
  content: ">";
  padding-bottom: clamp(2px, 0.53vw, 4px);
  font-size: clamp(14px, 3.2vw, 24px);
  transition: transform .3s ease;
}

@media (hover: hover) {
  #confirmation .confirmation_wrap .confirmation_inner .btn .yes:hover {
    opacity: .85;
  }

  #confirmation .confirmation_wrap .confirmation_inner .btn .yes:hover::after {
    transform: translateX(4px);
  }
}

#confirmation .confirmation_wrap .confirmation_inner .btn .no {
  display: block;
  text-align: center;
  font-size: clamp(12px, 2.13vw, 16px);
  font-weight: bold;
}

/* float-------------------------------------------- */
.lp_wrap .float {
  position: fixed;
  bottom: 0;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: 98.6%;
  max-width: 740px;
  display: none;
}

@media (max-width: 750px) {
  .lp_wrap .float {
    bottom: 10px;
  }
}

/* offer-------------------------------------------- */
.lp_wrap .offer .btn {
  position: absolute;
  width: 30.1%;
  top: 23%;
  left: 36.2%;
}

.lp_wrap .offer .cta {
  position: absolute;
  width: 98.6%;
  top: 81.4%;
  left: 50%;
  transform: translateX(-50%);
}

/* fv-------------------------------------------- */
.lp_wrap .fv .movie {
  position: absolute;
  top: 0%;
  width: 100%;
  overflow: hidden;
}

.lp_wrap .fv .movie video {
  width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 52%,
      rgba(0, 0, 0, 0) 75%);
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 52%,
      rgba(0, 0, 0, 0) 75%);
}

.lp_wrap .fv .cont li {
  position: absolute;
  opacity: 0;
}

.lp_wrap .fv .cont li:nth-child(1) {
  width: 90%;
  top: 5%;
  left: 5%;
}

.lp_wrap .fv .cont li:nth-child(2) {
  width: 65%;
  top: 21%;
  left: 7%;
  transition: 0.6s 1s;
  transform: translateY(20%);
}

.lp_wrap .fv .cont li:nth-child(3) {
  width: 65%;
  top: 29%;
  left: 8%;
  transition: 1.2s 1s;
  transform: translateY(20%);
}

.lp_wrap .fv .cont li:nth-child(4) {
  width: 82%;
  top: 43.6%;
  left: 9%;
}

.lp_wrap .fv .cont li:nth-child(5) {
  width: 81%;
  top: 48.7%;
  left: 10%;
}

.lp_wrap .fv .cont li:nth-child(6) {
  width: 78%;
  top: 57.2%;
  left: 10%;
}

.lp_wrap .fv .cont li.trigger.move,
.lp_wrap .fv .cont li.trigger.move~li {
  opacity: 1;
  transform: translateY(0);
}

/* キラン */
.lp_wrap .shine-wrap {
  background-color: transparent;
}

.lp_wrap .shine-wrap .shine-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lp_wrap .shine-wrap .shine-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: var(--fv-crown-mask);
  mask-image: var(--fv-crown-mask);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
}

.lp_wrap .shine-wrap .shine-mask .shine-hikari {
  position: absolute;
  top: -2%;
  left: -60%;
  width: 60%;
  padding: 60% 0 0;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(30deg);
  animation-name: shine_kirari;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes shine_kirari {
  0% {
    left: -60%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* inspection-------------------------------------------- */
.lp_wrap .inspection .movie {
  position: absolute;
  top: 31%;
  width: 100%;
  overflow: hidden;
}

/* worry-------------------------------------------- */
.lp_wrap .worry .slider-wrap {
  position: absolute;
  width: 200%;
  top: 7%;
  left: 0;
}

.lp_wrap .worry .head {
  position: absolute;
  width: 84%;
  top: 12.3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.lp_wrap .worry .fade-item.voice1 {
  width: 44.7%;
  top: 29.1%;
  left: 26.7%;
}

.lp_wrap .worry .fade-item.voice2 {
  width: 62.1%;
  top: 48.6%;
  left: 63.5%;
}

.lp_wrap .worry .fade-item.voice3 {
  width: 70%;
  top: 67.4%;
  left: 40.2%;
}

.lp_wrap .worry .fade-item.voice4 {
  width: 44.9%;
  top: 85.4%;
  left: 71.7%;
}

/* growold-------------------------------------------- */
.lp_wrap .growold .cont li {
  position: absolute;
  opacity: 0;
}

.lp_wrap .growold .cont li:nth-child(1) {
  width: 63.7%;
  top: 5%;
  left: 50%;
  transition: 1s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .growold .cont li:nth-child(2) {
  width: 54.2%;
  top: 14%;
  left: 50%;
  transition: 1s 0.4s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .growold .cont li:nth-child(3) {
  width: 52%;
  top: 19.1%;
  left: 50%;
  transition: 1s 0.8s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .growold .cont li.trigger.move,
.lp_wrap .growold .cont li.trigger.move~li {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lp_wrap .growold .line {
  position: absolute;
  width: 0.2%;
  height: 7.5%;
  top: 28%;
  left: 50%;
  background: #000;

  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.lp_wrap .growold .line.is-active {
  transform: translateX(-50%) scaleY(1);
}

.lp_wrap .growold>img {
  display: block;
  width: 100%;
  height: auto;
}

.lp_wrap .growold .fade-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp_wrap .growold .fade-slider img {
  position: absolute;
  top: 38.2%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}

.lp_wrap .growold .fade-slider img.active {
  opacity: 1;
}

/* simplecare-------------------------------------------- */
.lp_wrap .simplecare .board {
  position: absolute;
  width: 93.3%;
  top: -12.1%;
  left: 50%;
  transform: translateX(-50%);
}

.lp_wrap .simplecare .cont li {
  position: absolute;
  opacity: 0;
}

.lp_wrap .simplecare .cont li:nth-child(1) {
  width: 70.2%;
  top: 43%;
  left: 50%;
  transition: 1.2s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .simplecare .cont li:nth-child(2) {
  width: 70%;
  top: 60.6%;
  left: 50%;
  transition: 1.2s 0.6s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .simplecare .cont li:nth-child(3) {
  width: 89.8%;
  top: 71.6%;
  left: 50%;
  transition: 1.2s 1.2s;
  transform: translateX(-50%) translateY(20%);
}

.lp_wrap .simplecare .cont li.trigger.move,
.lp_wrap .simplecare .cont li.trigger.move~li {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* sealove------------------------------------------- */
.lp_wrap .sealove .image {
  position: absolute;
  width: 12.4%;
  top: -9.5%;
  left: 50%;
  transform: translateX(-50%);
}

/* photoaging------------------------------------------- */
.lp_wrap .photoaging .drop-wrap {
  position: absolute;
  top: 2.3%;
  left: 0;
  width: 100%;
}

.lp_wrap .photoaging .drop-wrap img {
  position: absolute;
  display: block;
  opacity: 0;
  transform: translateY(-250px);
}

.lp_wrap .photoaging .drop-wrap img:nth-of-type(1) {
  width: 19.5%;
  top: 2.3%;
  left: 16%;
}

.lp_wrap .photoaging .drop-wrap img:nth-of-type(2) {
  width: 19.5%;
  top: 2.34%;
  left: 40.1%;
}

.lp_wrap .photoaging .drop-wrap img:nth-of-type(3) {
  width: 19.7%;
  top: 2.3%;
  left: 64.4%;
}

/* アニメは発火時だけ */
.lp_wrap .photoaging .drop-wrap.is-animated img {
  animation: dropBounce 1s ease-out forwards;
}

.lp_wrap .photoaging .drop-wrap.is-animated img:nth-of-type(2) {
  animation-delay: 0.1s;
}

.lp_wrap .photoaging .drop-wrap.is-animated img:nth-of-type(3) {
  animation-delay: 0.2s;
}

@keyframes dropBounce {
  0% {
    transform: translateY(-250px);
    opacity: 0;
  }

  60% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(-22px);
  }

  88% {
    transform: translateY(0);
  }

  95% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

.lp_wrap .photoaging .photoaging-uv {
  position: relative;
}

.lp_wrap .photoaging .photoaging-uv .link {
  position: absolute;
  top: 24.1%;
  left: 11.7%;
  font-size: min(2.13vw, 16px);
}

.lp_wrap .photoaging .photoaging-uv .fade-item.text1 {
  width: 67.7%;
  top: 42.2%;
  left: 63.4%;
}

.lp_wrap .photoaging .photoaging-uv .fade-item.text2 {
  width: 67.7%;
  top: 59.3%;
  left: 36.9%;
}

.lp_wrap .photoaging .photoaging-care {
  position: relative;
}

.lp_wrap .photoaging .photoaging-care .line {
  position: absolute;
  width: 0.2%;
  height: 7.5%;
  top: 19.5%;
  left: 50%;
  background: #000;

  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.lp_wrap .photoaging .photoaging-care .line.is-active {
  transform: translateX(-50%) scaleY(1);
}

.lp_wrap .photoaging .photoaging-care .movie {
  position: absolute;
  width: 86.1%;
  top: 42.8%;
  left: 7%;
  overflow: hidden;
}

.lp_wrap .photoaging .photoaging-care .btn {
  position: absolute;
  width: 90.1%;
  top: 90%;
  left: 5.3%;
}

/* ssuv------------------------------------------- */
.lp_wrap .ssuv .layer01 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.lp_wrap .ssuv .layer02 img:nth-of-type(1),
.lp_wrap .ssuv .layer02 img:nth-of-type(2) {
  position: absolute;
  width: 61.7%;
  transform-origin: center center;
  animation: spin 30s linear infinite;
  will-change: transform;
}

.lp_wrap .ssuv .layer02 img:nth-of-type(1) {
  top: 24.8%;
  left: -4.3%;
}

.lp_wrap .ssuv .layer02 img:nth-of-type(2) {
  bottom: 17.1%;
  right: -7.5%;
  animation-direction: reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.lp_wrap .ssuv .layer03 {
  position: absolute;
  width: 66.2%;
  top: 26.8%;
  left: 19.4%;
}

.lp_wrap .ssuv .layer04 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

/* point------------------------------------------- */
.lp_wrap .point .point01,
.lp_wrap .point .point02 {
  position: relative;

}

/*
point01
*/
.slide-trigger {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
}

.lp_wrap .point .point01 .slide img {
  position: absolute;
  width: 65.3%;
  transition: left 2s ease;
}

.lp_wrap .point .point01 .slide img:nth-of-type(1) {
  top: 56.58%;
  left: 15%;
}

.lp_wrap .point .point01 .slide img:nth-of-type(2) {
  top: 60.35%;
  left: 19.5%;
}

.lp_wrap .point .point01 .slide.is-move img:nth-of-type(1) {
  left: -19.9%;
}

.lp_wrap .point .point01 .slide.is-move img:nth-of-type(2) {
  left: 54.7%;
}

.lp_wrap .point .point01 .slide-overlay {
  position: absolute;
  inset: 56.4% 0 auto 0;
}

.lp_wrap .point .point01 .movie {
  position: absolute;
  width: 70.2%;
  top: 65.6%;
  left: 50%;
  transform: translateX(-50%);
}

.lp_wrap .point .point01 .movie video {
  width: 100%;
  display: block;
  border-radius: clamp(10px, 1.5vw, 20px);
  overflow: hidden;
}

.lp_wrap .point .point01 .movie-image {
  position: absolute;
  width: 57.6%;
  top: 69.5%;
  left: 50%;
  transform: translateX(-50%);
}

/*
point02
*/
.lp_wrap .point .point02 .movie {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 70.5%;
  top: 26.6%;
  padding: 0px 14.7%;
  gap: 4.5%;
}

.lp_wrap .point .point02 .movie video {
  width: 100%;
  display: block;
  border-radius: clamp(10px, 1.5vw, 20px);
  overflow: hidden;
}

.lp_wrap .point .point02 .gif {
  position: absolute;
  width: 67.5%;
  top: 35.7%;
  left: 50%;
  transform: translateX(-50%);
}

/* footer-------------------------------------------- */
footer {
  position: relative;
}