@charset "utf-8";

/*----------------------------------------------------------*/
/* スワイプLP用CSS
/*----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* テーマのリセット */
.stk_header,
.breadcrumb,
.footer,
.pt-button {
  display: none;
}

/* LPのスタイル */
img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: scale-down;
  vertical-align: bottom;
}

video {
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

video.ready {
  opacity: 1;
}

button {
  background-color: unset;
  border: unset;
  cursor: pointer;
  padding: 0;
}

.main,
.fixed-area {
  max-width: 580px;
  margin: auto;
  padding: 0;
}

.swiperContainer {
  position: relative;
}

.swiper {
  height: 100dvh;
}

.content-wrap {
  display: flex;
  justify-content: center;
  height: 78dvh;
  text-align: center;
  position: relative;
}

.over-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  max-width: 100%;
  height: calc(100% * 1350 / 1080);
  max-height: 100%;
  aspect-ratio: 1080 / 1350;
}

.content-btn {
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  margin: auto;
}

/*固定CTA*/
.fixed-area {
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.fixed-area .content-wrap {
  height: auto;
  max-height: 22dvh;
}

.fixed-area button img {
  max-height: 22dvh;
}

/* ボタン動き */
.animation-scale {
  animation: animation-scale 1.2s ease 1s infinite;
  -webkit-animation: webkit-animation-scale 1.2s ease 1s infinite;
}

@keyframes webkit-animation-scale {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(.95)
  }

  to {
    transform: scale(1)
  }
}