@charset "UTF-8";

html {
  font-size: 62.5%;
  font-family: Noto Sans JP, Helvetica Neue, Arial, Hiragino Sans,
               Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo,
               -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  text-decoration-skip-ink: none;
}

body {
  font-size: 1.6rem;
  color: #333;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* SPのみ表示 */
.sp-only {
  display: inline;
}

/* PC以上では非表示 */
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.text-theme {
  color: rgb(3 187 203);
  font-weight: 700;
}

.text-theme-b {
  color: rgb(238 164 33);
  font-weight: 700;
}

/* header base */
.site-header {
  background-color: #ffffff;
}

.site-header__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 7px 14px 11px;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 14px 40px 22px;
  }
}

/* =========================
   brand
========================= */
.group-brand {
  display: flex;
  align-items: center; 
  margin-bottom: 6px;
}

.group-brand__logo {
  margin-right: 10px;
}

.group-brand__logo img {
  display: block;
  width: 110px;
  height: auto;
}

.group-brand__text {
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 3px;
  color: #333;
}

@media (min-width: 1024px) {
  .group-brand__text {
    font-size: 12px;
    font-weight: 700;
  }
}

.service-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-brand__item img {
  display: block;
  height: 40px;
  max-width: 100%;
  width: auto;
}

/* SP用：ロゴ縮小 */
@media (max-width: 767px) {
  .service-brand {
    flex-wrap: nowrap;
  }

  .service-brand__item {
    max-width: 48%;
    flex: 0 1 auto;
  }

  .service-brand__item img {
    width: 100%;
    height: auto;
    max-height: 32px;
  }
}

/* PC用 */
@media (min-width: 1024px) {
  .service-brand {
    flex-wrap: nowrap;
  }

  .service-brand__item img {
    height: 40px;
  }
}

h2 {
  position: relative;
  text-align: center;
  margin-bottom: 2.6rem;
  padding-bottom: calc(17 / 30 * 1em);
  font-size: clamp(
    2.0rem,
    calc(24 / 375 * 100vw),
    2.4rem
  );
  font-weight: 700;
  line-height: calc(45 / 30);
  color: #333;
}

/* 下線 */
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6rem;
  height: 0.4rem;
  background-color: rgb(3 187 203);
  transform: translateX(-50%);
}

/* PC以上 */
@media (min-width: 768px) {
  h2 {
    font-size: clamp(
      2.4rem,
      calc(32 / 768 * 100vw),
      3.2rem
    );
  }

  h2::after {
    width: 9rem;
    height: 0.5rem;
  }

}

/* =========================
   FV
========================= */

.lp-fv {
  background-color: #fff;
}

/* --- メインビジュアル --- */
.lp-fv__media {
  position: relative;
  width: 100%;
  height: 48vh; /* SP基準 */
  min-height: 32rem;
  max-height: 56rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lp-fv__media {
    height: 36vh;
    min-height: 42rem;
    max-height: 64rem;
  }
}

@media (max-width: 767px) {
  .lp-fv__media {
    height: 36vh;
    min-height: 24rem;
  }
}

/* 画像はサイズ不問 */
.lp-fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 見出し用オーバーレイ */
.lp-fv__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.78),
      rgba(255,255,255,0.55)
    );
}

/* 見出し */
.lp-fv__heading {
  max-width: 90rem;
  margin: 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(2.2rem, 5.6vw, 3.2rem);
}

.lp-fv__heading {
  color: #333;
  text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}

.lp-fv__heading-em {
  color: rgb(0, 58, 129);
}

/* --- FV下のテキスト --- */
.lp-fv__content {
  max-width: 78rem;
  margin: 0 auto;
  padding: 2.4rem 2rem 3.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lp-fv__content {
    padding-top: 3.2rem;
    font-size: 1.7rem;
  }
}

.lp-fv__content p + p {
  margin-top: 1.2rem;
}

/* 中央寄せコンテナ */
.lp-section__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 背景付きセクション */
.lp-section--soft-blue {
  background-color: #e5f9fa;
  padding: 2.4rem 0 3.2rem;
}

@media (min-width: 768px) {
  .lp-section--soft-blue {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}

/* リード文 */
.lp-section__lead {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .lp-section__lead {
    text-align: center;
    font-size: 1.8rem;
  }
}

.lp-section__lead p + p {
  margin-top: 1.2rem;
}

.lp-reason-list {
  margin: 1.6rem auto;
  padding: 0;
  list-style: disc;
  max-width: 46rem;
  transform: translateX(6.0rem);
}

@media (max-width: 767px) {
  .lp-reason-list {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    list-style-position: inside;
  }
}

.lp-reason-list li {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
}

.lp-reason-list li + li {
  margin-top: 0.6rem;
}

.lp-reason-list li::marker {
  font-size: 0.8em;
}

/* === Feature Block (white section) === */
.lp-feature {
  background-color: #fff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .lp-feature {
    padding: 6rem 0;
  }
}

.lp-feature__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* feature用のリード文 */
.lp-feature__lead {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .lp-feature__lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

/* === Feature Body === */
.lp-feature__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lp-feature__body {
    flex-direction: row;
    gap: 3rem;
  }
}

.lp-feature__image,
.lp-feature__content {
  flex: 1;
}

.lp-feature__image img {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}

/* === Feature Item === */
.lp-feature__item {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 0.6rem;
  background-color: #fdf6e8;
}

@media (min-width: 768px) {
  .lp-feature__item {
    padding: 2rem;
  }
}

.lp-feature__item + .lp-feature__item {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .lp-feature__item + .lp-feature__item {
    margin-top: 2rem;
  }
}

/* アイコン部分 */
.lp-feature__icon {
  flex: none;
  width: 6.3rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lp-feature__icon {
    width: 5rem;
    height: 5rem;
  }
}

.lp-feature__icon img {
  max-width: calc(100% - 1.5rem);
  height: auto;
}

@media (min-width: 768px) {
  .lp-feature__icon img {
    max-width: 100%;
  }
}

.lp-feature__item-text {
  padding-left: 1.6rem;
  font-size: clamp(1.6rem, calc(18 / 768 * 100vw), 1.8rem);
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lp-feature__item-text {
    padding-left: 2rem;
  }
}

/* === Annotation / Note === */
.lp-annotation {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.lp-annotation li {
  margin-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
}

.lp-annotation li + li {
  margin-top: 0.4em;
}

@media (min-width: 768px) {
  .lp-annotation li {
    font-size: 1.4rem;
  }
}

/* === Problem Section Container === */
.lp-problem {
  padding: 3.2rem 0;
}

@media (min-width: 768px) {
  .lp-problem {
    padding: 6rem 0;
  }
}

.lp-problem__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Text === */
.lp-problem__lead,
.lp-problem__after {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.lp-problem__summary {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* === Problem List === */
.lp-problem__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .lp-problem__list {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.lp-problem__item {
  display: flex;
  align-items: center;
  background-color: #fdf6e8;
  border-radius: 0.6rem;
  padding: 1.5rem 1.6rem;
}

@media (min-width: 768px) {
  .lp-problem__item {
    flex: 1;
    padding: 2rem;
  }
}

/* === Icon === */
.lp-problem__icon {
  flex: none;
  width: 6.3rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lp-problem__icon {
    width: 5rem;
    height: 5rem;
  }
}

.lp-problem__icon img {
  max-width: calc(100% - 1.5rem);
  height: auto;
}

@media (min-width: 768px) {
  .lp-problem__icon img {
    max-width: 100%;
  }
}

/* === Text in Block === */
.lp-problem__text {
  padding-left: 1.6rem;
  font-size: clamp(1.6rem, calc(18 / 768 * 100vw), 1.8rem);
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lp-problem__text {
    padding-left: 2rem;
  }
}

/* === Support Section === */
.lp-support {
  padding: 3.2rem 0;
}

@media (min-width: 768px) {
  .lp-support {
    padding: 6rem 0;
  }
}

.lp-support__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-support__body {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lp-support__body {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

/* Text */
.lp-support__text {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .lp-support__text {
    max-width: 52rem;
  }
}

.lp-support__text p + p {
  margin-top: 1.6rem;
}

.lp-support__note {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lp-support__note {
    font-size: 1.4rem;
  }
}

/* Image */
.lp-support__image {
  width: 100%;
}

@media (min-width: 768px) {
  .lp-support__image {
    flex: 1;
  }
}

.lp-support__image img {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}

/* === Usage Section (refined) === */
.lp-usage {
  padding: 3.2rem 0;
}

@media (min-width: 768px) {
  .lp-usage {
    padding: 6rem 0;
  }
}

.lp-usage__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- 3 columns --- */
.lp-usage__columns {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .lp-usage__columns {
    flex-direction: row;
    gap: 2rem;
  }
}

/* --- Column block --- */
.lp-usage__column {
  background-color: #fdf6e8;
  border-radius: 0.6rem;
  padding: 2rem 1.6rem;
}

@media (min-width: 768px) {
  .lp-usage__column {
    flex: 1;
    padding: 2.4rem 2rem;
  }
}

.lp-usage__heading {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.lp-usage__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-usage__list li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}

.lp-usage__list li + li {
  margin-top: 0.8rem;
}

.lp-usage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: rgb(3,187,203);
}

.lp-usage__list li::after {
  /* 白いチェック（マスク） */
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath fill='black' d='M8.899 13.834 4.388 10.226l1.713-1.356 2.34 1.089 3.943-5.065 2.165 1.681z'/%3E%3C/svg%3E")
        center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath fill='black' d='M8.899 13.834 4.388 10.226l1.713-1.356 2.34 1.089 3.943-5.065 2.165 1.681z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.lp-usage__common.lp-section--soft-blue {
  padding: 2rem;
  margin-top: 2.4rem;
}

@media (min-width: 768px) {
  .lp-usage__common.lp-section--soft-blue {
    padding: 2.4rem 3rem;
  }
}

.lp-capabilities {
  background-color: #f4fbfd; /* 既存の薄水色系 */
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .lp-capabilities {
    padding: 6rem 0;
  }
}

.lp-capabilities__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-capabilities__lead {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 3rem;
}

/* PC以上では中央寄せ */
@media (min-width: 768px) {
  .lp-capabilities__lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

/* カードグリッド */
.lp-capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lp-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

/* 各カード */
.lp-capabilities__block {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem 2.4rem 2.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* カード見出し */
.lp-capabilities__block h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: #333;
}

/* 本文 */
.lp-capabilities__block p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

.lp-school-check {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.lp-school-check__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-school-check__lead {
  margin-top: 2rem;
  margin-bottom: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .lp-school-check__lead {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .lp-school-check__lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

.lp-school-check__action {
  margin-bottom: 2.4rem;
  text-align: center;
}

.lp-school-check__btn {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  border-radius: 50vh;
  border: 2px solid rgb(3, 187, 203);
  color: rgb(3, 187, 203);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lp-school-check__btn:hover {
  opacity: 0.7;
}

/* 地域リンク */
.lp-school-check__area {
  margin-top: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  justify-content: center;
}

.lp-school-check__area a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(3, 187, 203);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lp-school-check__area li a:hover {
  opacity: 0.7;
}

/* PC以上 */
@media (min-width: 768px) {
  .lp-school-check__area a {
    font-size: 1.6rem;
  }
}

/* === LP CTA === */
.lp-cta {
  background-color: #f5f7f7;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .lp-cta {
    padding: 7rem 0;
  }
}

.lp-cta__inner {
  max-width: 97rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Lead text */
.lp-cta__lead {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .lp-cta__lead {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* Button wrapper */
.lp-cta__buttons {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .lp-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* Base button */
.lp-cta__btn {
  position: relative;
  min-width: 28rem;
  padding: 1.4rem 3.2rem;
  border-radius: 50vh;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Primary button */
.lp-cta__btn--primary {
  color: #fff;
  background: linear-gradient(to top, #fc5e8b, #f6939b);
  box-shadow: 0 0.3rem 0 0 rgb(187 78 87);
}

.lp-cta__btn--primary:hover {
  transform: translateY(0.2rem);
  box-shadow: none;
}

/* Secondary button */
.lp-cta__btn--secondary {
  color: rgb(3 187 203);
  background: #fff;
  border: 2px solid rgb(3 187 203);
}

.lp-cta__btn--secondary:hover {
  background-color: rgb(3 187 203);
  color: #fff;
}

/* Arrow */
.lp-cta__arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
}

/* Note */
.lp-cta__note {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lp-cta__note {
    font-size: 1.4rem;
  }
}

/* =========================
   LP Footer
========================= */
.lp-footer {
  padding: 3.2rem 1.6rem;
  background-color: #fff;
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.lp-footer__links {
  font-size: 1.2rem;
  color: #666;
}

.lp-footer__links a {
  color: inherit;
  text-decoration: underline;
}

.lp-footer__links a:hover {
  text-decoration: none;
}

.lp-footer__separator {
  margin: 0 0.3rem;
  color: #aaa;
}

/* フッター補足（グループ表記） */
.lp-footer__group-note {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #888;
}

/* PC以上 */
@media (min-width: 768px) {
  .lp-footer__group-note {
    font-size: 1.2rem;
  }
}

/* コピーライト */
.lp-footer__copyright {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  color: #999;
}

@media (min-width: 768px) {
  .lp-footer {
    padding-top: 3.2rem;
    font-size: 1.3rem;
  }

  .lp-footer__copyright {
    font-size: 1.2rem;
  }
}

/* =========================
   Fixed CTA
   ========================= */

.lp-fixed-cta {
  position: fixed;
  z-index: 45;
  background-color: transparent;
}

/* === SP: 下部固定 === */
@media (max-width: 767px) {
  .lp-fixed-cta {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }

  .lp-fixed-cta__inner {
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background-color: #fdf6e8;
    border-radius: 1rem 1rem 0 0;
    justify-content: center;
  }
}

/* === PC: 右下固定 === */
@media (min-width: 768px) {
  .lp-fixed-cta {
    right: 1.8rem;
    bottom: 1.8rem;
    background: transparent;
  }

  .lp-fixed-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* 共通 */
.lp-fixed-cta__item {
  display: flex;
}

/* ボタン共通 */
.lp-fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  padding: 0 2.4rem;
  border-radius: 0.8rem;
  font-size: clamp(1.4rem, 1.6vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.lp-fixed-cta__btn:hover {
  transform: translateY(1px);
}

/* === メインCTA === */
.lp-fixed-cta__btn--main {
  position: relative;
  color: #fff;
  background: linear-gradient(to top, #fc5e8b, #f6939b);
  padding-right: 3.4rem;
  border: none;
  box-shadow:
    0 0.2rem 0.4rem rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lp-fixed-cta__btn--main:hover {
  box-shadow: none;
}

.lp-fixed-cta__arrow {
  position: absolute;
  right: 1.6rem;
  font-size: 1.6rem;
}

/* === サブCTA === */
.lp-fixed-cta__btn--sub {
  background: #fff;
  color: #333;
  border: 2px solid rgb(3 187 203);
  white-space: nowrap;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.08);
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

@media (max-width: 767px) {
  .lp-fixed-cta__btn--sub {
    min-width: 40%;
  }
}

.lp-fixed-cta__btn--sub:hover {
  transform: translateY(1px);
  box-shadow: none;
}

/* bodyの被り防止（SPのみ） */
@media (max-width: 767px) {
  body {
    padding-bottom: 6.6rem;
  }
}