@charset "UTF-8";
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --navy: #052751;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho:
    "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho", "MS Mincho",
    "Meiryo", serif;
  --gothic:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体",
    "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.fixed {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  z-index: 100;
}

.fixed.show {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: visible;
}

.cta-btn {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94%;
  height: auto;
}

.btn {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-animation: pulse-scale 2s ease-in-out infinite;
          animation: pulse-scale 2s ease-in-out infinite;
}
.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@-webkit-keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.floating {
  width: 100%;
}

.sp-only-btn {
  width: max(35.4rem, 95%);
  max-width: 45rem;
  aspect-ratio: 354/101;
  margin-inline: auto;
}
@media (min-width: 1000px) {
  .sp-only-btn {
    display: none;
  }
}

.pc-only-btn {
  background-color: var(--white);
  width: 100cqi;
  padding: 1rem;
}
.pc-only-btn__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
}
.pc-only-btn__text {
  width: 52.7rem;
}
.pc-only-btn .btn {
  width: 47.2rem;
}
@media (max-width: 1000px) {
  .pc-only-btn {
    display: none;
  }
}

.pc-bg {
  background: url(../images/bg-02.webp) no-repeat center center/cover;
  background-attachment: fixed;
  width: 100%;
  aspect-ratio: 1440/800;
}

.main {
  max-width: 750px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.change {
  position: relative;
}
.change .cta-btn {
  position: absolute;
  bottom: 2rem;
}

.faq {
  position: relative;
}
.faq .cta-btn {
  position: absolute;
  bottom: 14rem;
}
@media (min-width: 750px) {
  .faq .cta-btn {
    bottom: 26rem;
  }
}

.footer {
  background-color: var(--white);
  text-align: center;
  padding: 3rem 0;
}
.footer small {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.support {
  position: relative;
}
.support .cta-btn {
  bottom: 1rem;
}/*# sourceMappingURL=style.css.map */