@charset "UTF-8";
/* -------------------------------------------*/
html {
  overflow-x: hidden;
}
body {
  height: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #334155;
  background-color: #47b2df;
}
.l-main {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 527px;
  min-height: 100dvh;
  margin: 0 auto;
}
.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
img {
  display: block;
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* -------------------------------------------*/
.top-main {
  width: 100%;
  padding: 3rem 0 0;
}
.top-main img {
  width: 80%;
  margin: 0 auto;
}
.l-main .top-slider {
  position: relative;
  margin-top: 2rem;
  aspect-ratio: 392/275;
  z-index: 10;
  overflow: hidden;
}
.l-main .slider {
  position: relative;
}
.l-main .slider .slick-list {
  padding: 0 28% !important;
}
.l-main .slider .slick-slide {
  position: relative;
  transition: transform 0.5s ease;
  transform: scale(0.8);
  margin: 0 -1.5% !important;
}
.l-main .slider .slick-slide.is-active {
  transform: scale(1);
  z-index: 10;
}
.top-bottom {
  position: relative;
  margin-top: -25%;
  padding-top: 20%;
  padding-bottom: 5%;
  z-index: 1;
}
.top-bottom::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back.webp) no-repeat top center/cover;
  z-index: -1;
}
.top-bottom .top-msg {
  width: 70%;
  margin: 0 auto;
}
.top-bottom .top-btn {
  display: block;
  width: 95%;
  margin: 5% auto 0;
  transition: 0.3s;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: pulse;
}
.top-bottom .top-btn:hover {
  opacity: 0.8;
  transform: translate(0, 3%);
}
.bottom-links {
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 0 3%;
  margin: 3% auto 0px;
  padding-top: 5.5%;
  border-top: 1px solid #073448;
  font-size: min(3.05vw, 14px);
  font-weight: 700;
}
.site-logo {
  width: 27%;
  margin: 5% auto 0;
}
.qa-head {
  width: 55%;
  margin: 6% auto 6%;
}
.qa-list {
  margin-top: 8%;
  padding: 0 5%;
}
.qa-list li:not(:first-child) {
  margin-top: 7.18%;
}
.qa-list li img {
  width: calc(104.5%);
  margin-left: -4.5%;
}

.a-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.56%;
  margin-top: 3.85%;
}
.a-btns button {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(23, 10, 68, 0.2);
}
.a-btns button::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 100%;
  background-color: #b2b2b2;
  border-radius: 4px;
  z-index: -1;
}
.a-btns button > img {
  position: relative;
  z-index: 1;
}
.a-btns button:active,
.a-btns button.active {
  background-color: #fffab9;
}
.a-btns button:active::before,
.a-btns button.active::before {
  background-color: #dcd246;
}
.pa-btn {
  display: block;
  margin: 9.7% auto 0;
  width: 98%;
}
.pa-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.page-bottom {
  position: relative;
  width: 100%;
  padding-bottom: 5%;
}
.page-bottom::before {
  content: '';
  display: block;
  position: absolute;
  top: -67%;
  left: 0;
  width: 100%;
  height: 167%;
  background: url(../images/back.webp) no-repeat top center/cover;
  z-index: -1;
}
.page-bottom .bottom-links {
  margin-top: 1%;
}

.p-dia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  height: 100vh;
  min-height: 100vh;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.diag-text {
  position: relative;
  padding-top: 26vh;
  padding-bottom: 35%;
}
.diag-text::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 32%;
  aspect-ratio: 1/1;
  background: url(../images/spin.webp) no-repeat top center/contain;
  animation: spin 2s linear infinite;
}
.diag-text img {
  width: 51%;
  margin: 0 auto;
}
.p-dia .page-bottom::before {
  top: -42%;
}
.thanks-title {
  width: 82%;
  margin: 0 auto;
  padding: 6% 0 4%;
}
.thanks-img {
  width: 84%;
  margin: 0 auto;
}

.thanks-btn {
  display: block;
  width: 92%;
  margin: 8% auto 4%;
  transition: 0.3s;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: pulse;
}
