/*-------------------------------------------
common
-------------------------------------------*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  overflow: hidden;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(199, 199, 199, 0.21) 3px,
    rgb(199, 199, 199, 0.21) 6px
  );
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  display: inline-block;
}

.sp {
  display: inline-block;
}

.button {
  width: 100%;
}

.button1 {
  padding: 5% 5% 20%;
}

.button2 {
  padding: 5%;
}
/*-------------------------------------------
fv
-------------------------------------------*/
.fv-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

.logo {
  width: 30%;
  top: 1%;
  left: 2%;
  position: absolute;
  z-index: 1;
  right: 0;
}

.fv-video {
  width: 100vw;
  height: 177.7777777777778vw;
  max-height: calc(768px * 1.777777777777778);
}

.fv-text {
  width: 100%;
  bottom: 20%;
  left: 0;
  padding: 0 5%;
  position: absolute;
  z-index: 1;
}

.fv-btn {
  width: 100%;
  bottom: 8%;
  left: 0;
  padding: 0 5%;
  position: absolute;
  z-index: 1;
}

/*-------------------------------------------
sec1
-------------------------------------------*/
.sec1-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.sec1-container {
  position: relative;
  text-align: center;
  padding: 25% 5% 0;
}

.iphone {
  width: 70%;
}

.sec1-title {
  width: 80%;
  top: 5%;
  left: 0%;
  position: absolute;
  z-index: 3;
}

.sec1-video {
  width: 60%;
  top: 21%;
  left: 21%;
  position: absolute;
  z-index: -1;
  border-radius: 7%;
}

.sec1-woman1 {
  width: 35%;
  top: 46%;
  left: -7%;
  position: absolute;
  z-index: 3;
}

.sec1-woman2 {
  width: 30%;
  top: 25%;
  right: 0%;
  position: absolute;
  z-index: 3;
}

.sec1-woman3 {
  width: 30%;
  bottom: 9%;
  right: 5%;
  position: absolute;
  z-index: 3;
}

.subtitle {
  width: 80%;
  bottom: -5%;
  right: 10%;
  position: absolute;
  z-index: 3;
}

.sec1-text-container {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 10% 8% 5%;
  text-align: center;
  margin: 0 5%;
}

.sec1-text {
  width: 100%;
  margin-bottom: 6%;
}

/*-------------------------------------------
sec2
-------------------------------------------*/
.sec2-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

.sec2-title {
  width: 71%;
  top: -11%;
  right: 15%;
  position: absolute;
  z-index: 3;
}

.sec2-container {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 18% 3% 5%;
  margin: 27% 5% 0;
}

.sec2-contents {
  width: 90%;
  margin: 0 auto 20%;
  position: relative;
  font-size: 2.6rem;
  text-align: center;
}

.sec2-contents:last-child {
  margin: 0 auto;
}

.sec2-contents-title {
  width: 90%;
  top: -11%;
  position: absolute;
}

.sec2-img {
  margin-bottom: 4%;
}

.sec2-contents p {
  text-align: left;
  font-weight: bold;
  color: #3e3e3e;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
  .sec2-contents {
    font-size: 3.4vw;
  }
}

/*---------
slider
-------------*/
.slider-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.slider-container {
  overflow: hidden;
  position: relative;
  padding: 5% 0;
}

.end-text {
  position: absolute;
  width: 95%;
  top: 15%;
  left: 3%;
  z-index: 3;
}

.autoplay-slider {
  display: flex;
  max-width: 200%;
  width: max-content;
}

.slider-left {
  animation: 30s linear infinite sliderAnimation;
}

.slider-right {
  animation: 30s linear infinite reverse sliderAnimation;
}

.left-right01 {
  overflow: hidden;
  margin-bottom: 5%;
}

.left-right02 {
  overflow: hidden;
}

.slide {
  width: 100%;
  max-width: 175px;
}

@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}

.btn {
  width: 100%;
  position: absolute;
  bottom: 7%;
  left: 0;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #eb6868;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 100;
  font-size: 1.3rem;
}

.footer-contents {
  padding: 2% 5%;
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    font-size: 2.2vw;
  }
}

/*-------------------------------------------


ここからアニメーション


-------------------------------------------*/
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}

.fv-btn,
.button {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes fluffy {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.subtitle,
.sec2-title {
  animation: fluffy 3s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-5deg);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}

.sec1-woman1 {
  animation: fuwafuwa 3s infinite linear alternate;
}

.sec1-woman2 {
  animation: fuwafuwa 3.3s infinite linear alternate;
}

.sec1-woman3 {
  animation: fuwafuwa 3.6s infinite linear alternate;
}

/* アニメーション設定 */
.scr-target {
  /* アニメーション開始から終了までの所要時間 */
  animation-duration: 1s;
  /* アニメーションが開始するまでの遅延時間 */
  animation-delay: 0.3s;
  /* アニメーションのループ回数 - infiniteで無限ループ */
  animation-iteration-count: 1;
  /* キーフレームアニメーションで指定したプロパティをアニメーション開始前、終了後に適用するかどうか */
  animation-fill-mode: both;
}
.scr-target[class*="fadeIn"],
.scr-target[class*="zoom"] {
  opacity: 0;
}

/* フェードイン */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.anime__fadeIn.is-active {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* フェードイン(上から) */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInDown.is-active {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* フェードイン(下から) */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInUp.is-active {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* フェードイン(左から) */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInLeft.is-active {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* フェードイン(右から) */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInRight.is-active {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* ズームイン */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 1;
  }
}
.anime__zoomIn.is-active {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* ズームアウト */
@-webkit-keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1.6);
    transform: scale3d(1.6, 1.6, 1.6);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1.6);
    transform: scale3d(1.6, 1.6, 1.6);
  }
  100% {
    opacity: 1;
  }
}
.anime__zoomOut.is-active {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.timing02 {
  animation-delay: 0.2s;
}
.timing03 {
  animation-delay: 0.3s;
}
.timing04 {
  animation-delay: 0.4s;
}
.timing05 {
  animation-delay: 0.5s;
}
.timing06 {
  animation-delay: 0.6s;
}
