@charset "utf-8";
/* @import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css); */

/* ━━━━━━━━━━━━━━ */
/* 基本設定：サイト全体で使う変数 */
/* ━━━━━━━━━━━━━━ */

:root {
  /* PCの中央コンテンツ幅 */
  --lp-content-width: 650px;
  /* 固定ヘッダーの高さ */
  --header-height: 108px;
  /* ページ全体の背景色 */
  --page-bg: #f2f2f2;
  /* 中央コンテンツの背景色 */
  --main-bg: #ffffff;
  /* フッターの背景色 */
  --footer-bg: #0099dd;
  /* 左カラムCTAの上下位置調整 */
  --side-contact-offset-y: 5px;
  /* 右カラムナビの上下位置調整 */
  --section-nav-offset-y: 0px;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：rem計算とページ内リンク */
/* ━━━━━━━━━━━━━━ */

html {
  font-size: 62.5%;
  scroll-behavior: auto;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：body全体 */
/* ━━━━━━━━━━━━━━ */

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--page-bg);
  color: #000;
  font-family:
    "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic,
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  font-weight: normal;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：画像共通 */
/* ━━━━━━━━━━━━━━ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：リンク共通 */
/* ━━━━━━━━━━━━━━ */

a {
  text-decoration: underline;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：リンク通常時・訪問済み */
/* ━━━━━━━━━━━━━━ */

a:link,
a:visited {
  color: #39f;
}

/* ━━━━━━━━━━━━━━ */
/* 基本設定：リンクホバー時 */
/* ━━━━━━━━━━━━━━ */

a:hover,
a:active {
  color: #f60;
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：全体 */
/* ━━━━━━━━━━━━━━ */

.fv-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：内側レイアウト */
/* ━━━━━━━━━━━━━━ */

.fv-header__inner {
  width: 100%;
  max-width: var(--lp-content-width);
  margin: 0 auto;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：ロゴリンク */
/* ━━━━━━━━━━━━━━ */

.fv-header__logo {
  min-width: 0;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：ロゴ画像 */
/* ━━━━━━━━━━━━━━ */

.fv-header__logo-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：CTAエリア */
/* ━━━━━━━━━━━━━━ */

.fv-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 固定ヘッダー：電話ボタンここから */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fv-header__tel {
  width: 246px;
  height: 76px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8a16 0%, #ff5a00 52%, #e74700 100%);
  box-shadow: inset 0 -4px 0 rgba(143, 43, 0, 0.28);
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 電話ボタンここまで */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：LINEボタン、メールボタン */
/* ━━━━━━━━━━━━━━ */

.fv-header__line {
  width: 80px;
  height: 76px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #05d824 0%, #00b916 52%, #00a812 100%);
  box-shadow: inset 0 -4px 0 rgba(0, 100, 11, 0.28);
  box-sizing: border-box;
  text-decoration: none;
}

.fv-header__mail {
  width: 80px;
  height: 76px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #2f9bff 0%, #007bff 52%, #005fd1 100%);
  box-shadow: inset 0 -4px 0 rgba(0, 100, 11, 0.28);
  box-sizing: border-box;
  text-decoration: none;
}

/* ━━━━━━━━━━━━━━ */
/* 固定ヘッダー：LINE画像 */
/* ━━━━━━━━━━━━━━ */

.fv-header__line-img {
  width: 100%;
  max-width: 60px;
  height: auto;
  display: block;
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：全体 */
/* ━━━━━━━━━━━━━━ */

.lp-layout {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, var(--lp-content-width))
    minmax(0, 1fr);
  background: var(--page-bg);
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：左右カラム共通 */
/* ━━━━━━━━━━━━━━ */

.lp-layout__side {
  min-width: 0;
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：左カラムの配置固定 */
/* ━━━━━━━━━━━━━━ */

.lp-layout__side--left {
  grid-column: 1;
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：中央カラムの配置固定 */
/* ━━━━━━━━━━━━━━ */

.lp-layout__center {
  grid-column: 2;
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：右カラムの配置固定 */
/* ━━━━━━━━━━━━━━ */

.lp-layout__side--right {
  grid-column: 3;
}

/* ━━━━━━━━━━━━━━ */
/* 3カラムレイアウト：左右カラム非表示モード */
/* ━━━━━━━━━━━━━━ */

.lp-layout--side-hidden .lp-layout__side {
  visibility: hidden;
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━ */
/* 中央カラム：メインコンテンツエリア */
/* ━━━━━━━━━━━━━━ */

.lp-layout__center {
  width: 100%;
  max-width: var(--lp-content-width);
  margin: 0 auto;
  background: var(--main-bg);
}

/* ━━━━━━━━━━━━━━ */
/* 中央カラム：メインコンテンツ本体 */
/* ━━━━━━━━━━━━━━ */

.main {
  width: 100%;
  background: var(--main-bg);
}

/* ━━━━━━━━━━━━━━ */
/* 中央カラム：LP画像 */
/* ━━━━━━━━━━━━━━ */

.main img {
  width: 100%;
  height: auto;
}

/* ━━━━━━━━━━━━━━ */
/* 中央カラム：各セクション */
/* ━━━━━━━━━━━━━━ */

.lp-section {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：背景画像上にボタンを重ねるための基準 */
/* ━━━━━━━━━━━━━━ */

.cta {
  position: relative;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：メール・LINEボタン配置 */
/* ━━━━━━━━━━━━━━ */

.btns {
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：ボタンリンク */
/* ━━━━━━━━━━━━━━ */

.btns a {
  display: block;
  transition: opacity 0.3s ease;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：ボタンリンクのホバー時 */
/* ━━━━━━━━━━━━━━ */

.btns a:hover {
  opacity: 0.75;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：ボタン画像 */
/* ━━━━━━━━━━━━━━ */

.cta-btn {
  display: block;
  width: 85%;
  max-width: 638px;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 20px;
}

/* ━━━━━━━━━━━━━━ */
/* 中央メインコンテンツ：セクション設定 */
/* ━━━━━━━━━━━━━━ */

.sec_01 {
  background-image: url(../images/sec-01-bg.webp);
  background-size: cover;
}

.sec_06 {
  background-image: url(../images/sec-06-bg.webp);
  background-size: contain;
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：料金バッジ */
/* ━━━━━━━━━━━━━━ */

.sec-01-price {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：料金画像 */
/* ━━━━━━━━━━━━━━ */

.sec-01-price img {
  display: block;
  width: 100%;
  height: auto;
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：月限定バッジ */
/* ━━━━━━━━━━━━━━ */

.limited-badge {
  position: absolute;
  top: -4px;
  left: 41px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff200;
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1f57c8;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  box-sizing: border-box;
  z-index: 2;
  transform: rotate(-4deg);
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：月限定バッジの月 */
/* ━━━━━━━━━━━━━━ */

.limited-badge__month {
  font-size: 22px;
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：月限定バッジの限定 */
/* ━━━━━━━━━━━━━━ */

.limited-badge__text {
  font-size: 20px;
}

/* ━━━━━━━━━━━━━━ */
/* ファーストビュー：月の数字 */
/* ━━━━━━━━━━━━━━ */

.js-current-month {
  font-size: 1.25em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CTAエリア：全体 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.sec_cta {
  background-color: #115cb9;
  padding: 64px 16px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：内側 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-inner {
  max-width: 750px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：白ボックス */
/* ━━━━━━━━━━━━━━ */

.sec-cta-box {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 42px 24px 58px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時間訴求 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時間訴求テキスト */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__text {
  flex: 1;
  padding-left: 28px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時間訴求メイン */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__main {
  margin: 0 0 10px;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時間訴求サブ */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__sub {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：現在時刻 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__current {
  position: relative;
  display: inline-block;
  z-index: 1;
  animation: ctaTimeBlink 1s infinite;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：現在時刻の黄色マーカー */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__current::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.05em;
  height: 0.45em;
  background-color: #fff200;
  z-index: -1;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時刻数字 */
/* ━━━━━━━━━━━━━━ */

.js-current-hour,
.js-current-minute {
  display: inline;
  min-width: auto;
  text-align: left;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時刻数字の疑似要素リセット */
/* ━━━━━━━━━━━━━━ */

.js-current-hour::before,
.js-current-minute::before {
  content: none;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：時刻点滅 */
/* ━━━━━━━━━━━━━━ */

@keyframes ctaTimeBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
  }
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：オペレーター画像 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__img {
  width: 180px;
  flex-shrink: 0;
  margin-right: 28px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：オペレーター画像 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-time__img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタン外側 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
  padding: 18px 14px 24px;
  border-radius: 18px;
  background: #fff2ec;
  box-sizing: border-box;
  overflow: visible;
}

.sec-cta-tel-btn-wrap::before,
.sec-cta-tel-btn-wrap::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 0;
  border: 2px solid rgba(255, 116, 28, 0.45);
  border-radius: 14px;
  animation: secCtaTelRipple 2.4s ease-out infinite;
  pointer-events: none;
}

.sec-cta-tel-btn-wrap::after {
  animation-delay: 1.2s;
}

@keyframes secCtaTelRipple {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.12, 1.28);
    opacity: 0;
  }
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタン */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 150px;
  padding: 22px 30px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff7d18 0%, #ff5700 58%, #ef4600 100%);
  box-shadow: 0 10px 0 #c83a00;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタンのリンク色固定 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn,
.sec-cta-tel-btn:link,
.sec-cta-tel-btn:visited,
.sec-cta-tel-btn:hover,
.sec-cta-tel-btn:active {
  color: #ffffff;
  text-decoration: none;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタン内の文字色固定 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn * {
  color: #ffffff;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話アイコン画像 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn__icon img {
  display: block;
  width: 100%;
  height: auto;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話番号 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn__number {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  font-size: clamp(34px, 6.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：受付中テキスト */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn__caption {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: clamp(22px, 4.2vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタンのホバー時 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn:hover {
  opacity: 0.9;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタンの押下時 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-tel-btn:active {
  transform: translateY(4px);
  box-shadow: 0 6px 0 #c83a00;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：電話ボタンの波紋アニメーション */
/* ━━━━━━━━━━━━━━ */

@keyframes secCtaTelRipple {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.12, 1.45);
    opacity: 0;
  }
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：下部ボタン */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：下部ボタン共通 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 158px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 24px 22px;
  text-decoration: none;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：LINEボタン */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn__item--line {
  background-color: #20c826;
  box-shadow: 0 10px 0 #11a818;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：メールボタン */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn__item--mail {
  background-color: #258fe0;
  box-shadow: 0 10px 0 #1370b8;
}

/* ━━━━━━━━━━━━━━ */
/* CTAエリア：下部ボタン画像 */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn__item img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
}
/* ━━━━━━━━━━━━━━ */
/* line,メール問い合わせボタンホバー */
/* ━━━━━━━━━━━━━━ */

.sec-cta-bottom-btn__item {
  transition: opacity 0.3s ease;
}

.sec-cta-bottom-btn__item:hover {
  opacity: 0.82;
}

/* ━━━━━━━━━━━━━━ */
/* 施工費用一覧 */
/* ━━━━━━━━━━━━━━ */

.sec-06-top {
  margin-bottom: 3rem;
}

/* ━━━━━━━━━━━━━━ */
/* フッター：全体 */
/* ━━━━━━━━━━━━━━ */

.footer {
  width: 100%;
  padding: 2rem;
  background: var(--footer-bg);
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

/* ━━━━━━━━━━━━━━ */
/* フッター：リンク */
/* ━━━━━━━━━━━━━━ */

.footer a {
  color: #fff;
}

/* ━━━━━━━━━━━━━━ */
/* フッター：区切り線 */
/* ━━━━━━━━━━━━━━ */

.footer span {
  display: inline-block;
  margin: 0 0.8rem;
}

/* ━━━━━━━━━━━━━━ */
/* フッター：コピーライト */
/* ━━━━━━━━━━━━━━ */

.footer__copy {
  margin: 1rem 0 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：初期状態 */
/* ━━━━━━━━━━━━━━ */
.sp-fixed-call {
  display: none;
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：768px以下 */
/* ━━━━━━━━━━━━━━ */
@media screen and (max-width: 768px) {
  .sp-fixed-call {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    padding: 10px 12px 12px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
    pointer-events: none;
  }

  .sp-fixed-call.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sp-fixed-call__time {
    margin-bottom: 8px;
    text-align: center;
  }

  .sp-fixed-call__time-main {
    margin: 0 0 2px;
    color: #222222;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }

  .sp-fixed-call__time-sub {
    margin: 0;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
  }

  .sp-fixed-call__time-current {
    position: relative;
    display: inline-block;
    z-index: 1;
    animation: spCallTimeBlink 1s infinite;
  }

  .sp-fixed-call__time-current::before {
    content: "";
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    bottom: 0.08em;
    height: 0.42em;
    background-color: #fff200;
    z-index: -1;
  }

  .sp-fixed-call__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 12px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ff7d18 0%, #ff5700 58%, #ef4600 100%);
    box-shadow: 0 6px 0 #c83a00;
    color: #ffffff;
    text-decoration: none;
    animation: spFixedCallBouncePause 3.2s ease-in-out infinite;
    transform-origin: center center;
  }

  .sp-fixed-call__btn,
  .sp-fixed-call__btn:link,
  .sp-fixed-call__btn:visited,
  .sp-fixed-call__btn:hover,
  .sp-fixed-call__btn:active {
    color: #ffffff;
    text-decoration: none;
  }

  .sp-fixed-call__btn * {
    color: #ffffff;
  }

  .sp-fixed-call__btn:active {
    animation: none;
    transform: translateY(3px);
    box-shadow: 0 3px 0 #c83a00;
  }

  .sp-fixed-call__icon {
    width: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-fixed-call__icon img {
    display: block;
    width: 100%;
    height: auto;
  }

  .sp-fixed-call__number::after {
    content: "";
    position: absolute;
    left: 0.08em;
    right: 0.08em;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
  }

  .sp-fixed-call__lead {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  body {
    padding-bottom: 150px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：時刻点滅 */
/* ━━━━━━━━━━━━━━ */
@keyframes spCallTimeBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：ボタン上下アニメーション */
/* ━━━━━━━━━━━━━━ */
@keyframes spFixedCallBouncePause {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  10% {
    transform: translateY(-6px);
    box-shadow: 0 10px 0 #c83a00;
  }

  20% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  30% {
    transform: translateY(-6px);
    box-shadow: 0 10px 0 #c83a00;
  }

  40% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：430px以下 */
/* ━━━━━━━━━━━━━━ */
@media screen and (max-width: 430px) {
  .sp-fixed-call {
    padding: 8px 10px 10px;
  }

  .sp-fixed-call__time-main {
    font-size: 15px;
  }

  .sp-fixed-call__time-sub {
    font-size: 14px;
  }

  .sp-fixed-call__btn {
    gap: 10px;
    min-height: 68px;
    padding: 10px 12px;
  }

  .sp-fixed-call__icon {
    width: 36px;
    flex-basis: 36px;
  }

  .sp-fixed-call__number {
    font-size: 27px;
  }

  .sp-fixed-call__lead {
    font-size: 16px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* スマホ固定電話CTA：390px以下 */
/* ━━━━━━━━━━━━━━ */
@media screen and (max-width: 390px) {
  .sp-fixed-call__time-main {
    font-size: 14px;
  }

  .sp-fixed-call__time-sub {
    font-size: 13px;
  }

  .sp-fixed-call__number {
    font-size: 24px;
  }

  .sp-fixed-call__lead {
    font-size: 14px;
  }
}

/* 下部固定ボタンの動き */
@media screen and (max-width: 768px) {
  .sp-fixed-call__btn {
    animation: spFixedCallBouncePause 3.2s ease-in-out infinite;
    transform-origin: center center;
  }

  .sp-fixed-call__btn:active {
    animation: none;
    transform: translateY(3px);
    box-shadow: 0 3px 0 #c83a00;
  }
}

@keyframes spFixedCallBouncePause {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  10% {
    transform: translateY(-6px);
    box-shadow: 0 10px 0 #c83a00;
  }

  20% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  30% {
    transform: translateY(-6px);
    box-shadow: 0 10px 0 #c83a00;
  }

  40% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 6px 0 #c83a00;
  }
}

/* ━━━━━━━━━━━━━━ */
/* ページ上部へ戻るボタン：全体 */
/* ━━━━━━━━━━━━━━ */

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 72px;
  height: 72px;
  background: #0099dd;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

/* ━━━━━━━━━━━━━━ */
/* ページ上部へ戻るボタン：表示状態 */
/* ━━━━━━━━━━━━━━ */

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/* ━━━━━━━━━━━━━━ */
/* ページ上部へ戻るボタン：ホバー時 */
/* ━━━━━━━━━━━━━━ */

.pagetop:hover {
  color: #fff;
  background: #007bb3;
}

/* ━━━━━━━━━━━━━━ */
/* ページ上部へ戻るボタン：矢印 */
/* ━━━━━━━━━━━━━━ */

.pagetop-arrow {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

/* ━━━━━━━━━━━━━━ */
/* ページ上部へ戻るボタン：テキスト */
/* ━━━━━━━━━━━━━━ */

.pagetop-text {
  color: #fff;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：768px以下の共通調整 */
/* ━━━━━━━━━━━━━━ */

@media screen and (max-width: 768px) {
  .lp-layout {
    display: block;
  }

  .lp-layout__side {
    display: none;
  }

  .lp-layout__center {
    max-width: none;
  }

  .pagetop {
    display: none;
  }

  .fix-menu-sp {
    display: flex;
  }

  .footer {
    padding: 2rem 1rem 3rem;
    font-size: 1.2rem;
  }

  .sec_cta {
    padding: 40px 12px;
  }

  .sec-cta-box {
    border-radius: 22px;
    padding: 30px 18px 42px;
  }

  .sec-cta-time {
    gap: 12px;
  }

  .sec-cta-time__text {
    padding-left: 8px;
  }

  .sec-cta-time__main {
    font-size: 17px;
  }

  .sec-cta-time__sub {
    font-size: 19px;
  }

  .sec-cta-time__img {
    width: 120px;
    margin-right: 4px;
  }

  .sec-cta-tel-btn-wrap {
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 14px;
  }

  .sec-cta-tel-btn-wrap::before,
  .sec-cta-tel-btn-wrap::after {
    inset: 10px;
    border-radius: 11px;
  }

  .sec-cta-tel-btn {
    min-height: 116px;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 10px;
    box-shadow: 0 7px 0 #c83a00;
  }

  .sec-cta-tel-btn__icon {
    width: 52px;
    flex-basis: 52px;
  }

  .sec-cta-tel-btn__number {
    padding-bottom: 7px;
    font-size: clamp(30px, 7vw, 42px);
  }

  .sec-cta-tel-btn__caption {
    margin-top: 6px;
    font-size: clamp(18px, 5vw, 26px);
  }

  .sec-cta-bottom-btn {
    gap: 16px;
  }

  .sec-cta-bottom-btn__item {
    min-height: 110px;
    padding: 18px 14px;
  }

  .sec-cta-bottom-btn__item img {
    max-width: 210px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：610px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 610px) {
  .limited-badge {
    top: 0px;
    left: 41px;
    width: 90px;
    height: 90px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：560px以下のスマホ調整 */
/* ━━━━━━━━━━━━━━ */

@media screen and (max-width: 560px) {
  :root {
    /* スマホ時の固定ヘッダーの高さ */
    --header-height: 76px;
  }

  .fv-header__inner {
    padding: 14px 5px;
    gap: 8px;
  }

  .fv-header__logo-img {
    max-width: 100px;
  }

  .fv-header__cta {
    gap: 6px;
  }

  .fv-header__tel {
    width: 210px;
    height: 48px;
    padding: 5px 16px;
    gap: 5px;
  }

  .fv-header__line {
    width: 60px;
    height: 48px;
    padding: 0 8px;
  }

  .fv-header__line-img {
    max-width: 40px;
  }

  .cta-btn {
    margin: 1rem auto;
    border-radius: 10px;
  }

  .footer {
    padding-bottom: 3rem;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：450px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 450px) {
  .fv-header__tel {
    width: 160px;
    height: 48px;
    padding: 5px 7px;
    gap: 5px;
  }

  .fv-header__tel-number {
    font-size: 16px;
  }

  .fv-header__line {
    width: 55px;
  }
  .fv-header__logo-img {
    max-width: 100px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：520px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 520px) {
  .limited-badge {
    top: 0px;
    left: 41px;
    width: 75px;
    height: 75px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：480px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 480px) {
  .limited-badge {
    top: 0px;
    left: 15px;
    width: 70px;
    height: 70px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：430px以下 */
/* ━━━━━━━━━━━━━━ */

@media screen and (max-width: 430px) {
  .sec-cta-time__main {
    font-size: 18px;
  }

  .sec-cta-time__sub {
    font-size: 17px;
  }

  .sec-cta-time__img {
    width: 96px;
  }

  .sec-cta-tel-btn {
    gap: 10px;
    padding: 16px 14px;
  }

  .sec-cta-tel-btn__icon {
    width: 42px;
    flex-basis: 42px;
  }

  .sec-cta-tel-btn__number {
    font-size: 30px;
  }

  .sec-cta-tel-btn__caption {
    font-size: 20px;
  }

  .sec-cta-bottom-btn {
    gap: 12px;
  }

  .sec-cta-bottom-btn__item {
    min-height: 92px;
    padding: 14px 10px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：420px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 420px) {
  .limited-badge {
    top: 0px;
    left: 14px;
    width: 58px;
    height: 58px;
  }

  .limited-badge__month {
    font-size: 16px;
  }

  .limited-badge__text {
    font-size: 15px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：400px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 400px) {
  .sec-cta-tel-btn {
    gap: 8px;
    padding: 14px 10px;
  }

  .sec-cta-tel-btn__icon {
    width: 36px;
    flex-basis: 36px;
  }

  .sec-cta-tel-btn__number {
    font-size: 26px;
  }

  .sec-cta-tel-btn__caption {
    font-size: 18px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* レスポンシブ：390px以下 */
/* ━━━━━━━━━━━━━━ */

@media (max-width: 390px) {
  .sec-cta-tel-btn__number {
    font-size: 24px;
  }

  .sec-cta-tel-btn__caption {
    font-size: 16px;
  }

  .sec-cta-box {
    padding: 42px 11px 58px;
  }

  .sec-cta-time__sub {
    font-size: 14px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 下層ページ：共通 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lower-page {
  width: 100%;
  max-width: var(--lp-content-width);
  margin: 0 auto;
  background: #ffffff;
  box-sizing: border-box;
}

.lower-page__section {
  padding: 56px 28px 72px;
  box-sizing: border-box;
}

.lower-page__title {
  margin: 0 0 34px;
  padding: 0 0 18px;
  border-bottom: 4px solid #115cb9;
  color: #115cb9;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.lower-page__btn-wrap {
  margin-top: 44px;
  text-align: center;
}

.lower-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #115cb9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}

.lower-page__btn,
.lower-page__btn:link,
.lower-page__btn:visited,
.lower-page__btn:hover,
.lower-page__btn:active {
  color: #ffffff;
  text-decoration: none;
}

.lower-page__btn:hover {
  opacity: 0.85;
}

/* ━━━━━━━━━━━━━━ */
/* 下層ページ：会社概要 */
/* ━━━━━━━━━━━━━━ */

.lower-company {
  border-top: 1px solid #d9e5f2;
}

.lower-company__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin: 0;
  border-bottom: 1px solid #d9e5f2;
}

.lower-company__row dt {
  padding: 18px 16px;
  background: #eef7ff;
  color: #115cb9;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  box-sizing: border-box;
}

.lower-company__row dd {
  margin: 0;
  padding: 18px 16px;
  color: #222222;
  font-size: 16px;
  line-height: 1.8;
  box-sizing: border-box;
}

.lower-company__row a {
  color: #115cb9;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━ */
/* 下層ページ：プライバシーポリシー */
/* ━━━━━━━━━━━━━━ */
.privacy-body {
  margin-top: -10rem;
}
.lower-policy {
  color: #222222;
  font-size: 16px;
  line-height: 1.9;
}

.lower-policy p {
  margin: 0 0 20px;
}

.lower-policy h2 {
  margin: 36px 0 14px;
  padding: 10px 14px;
  border-left: 6px solid #115cb9;
  background: #eef7ff;
  color: #115cb9;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.lower-policy ul {
  margin: 0 0 20px;
  padding-left: 1.4em;
}

.lower-policy li {
  margin-bottom: 8px;
}

.lower-policy a {
  color: #115cb9;
  font-weight: 700;
}

.lower-policy__contact {
  margin: 20px 0 28px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f4f9ff;
  box-sizing: border-box;
}

.lower-policy__contact p {
  margin: 0 0 8px;
}

.lower-policy__contact p:last-child {
  margin-bottom: 0;
}

.lower-policy__date {
  margin-top: 32px;
  text-align: right;
}

/* ━━━━━━━━━━━━━━ */
/* 下層ページ：スマホ */
/* ━━━━━━━━━━━━━━ */

@media screen and (max-width: 768px) {
  .lower-page__section {
    padding: 40px 18px 56px;
  }

  .lower-page__title {
    margin-bottom: 28px;
    font-size: 26px;
  }

  .lower-company__row {
    display: block;
  }

  .lower-company__row dt {
    padding: 12px 14px;
    font-size: 15px;
  }

  .lower-company__row dd {
    padding: 14px;
    font-size: 15px;
  }

  .lower-policy {
    font-size: 15px;
  }

  .lower-policy h2 {
    font-size: 18px;
  }
}

/* ━━━━━━━━━━━━━━ */
/* サンクスページ */
/* ━━━━━━━━━━━━━━ */

.thanks-box {
  padding: 42px 28px 48px;
  border: 4px solid #d9eaff;
  border-radius: 24px;
  background: #f7fbff;
  box-sizing: border-box;
  text-align: center;
}

.thanks-box__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #115cb9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.thanks-box__title {
  margin: 0 0 20px;
  color: #115cb9;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.45;
}

.thanks-box__lead {
  margin: 0 0 28px;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.thanks-box__notice {
  margin: 0 0 28px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(17, 92, 185, 0.12);
  box-sizing: border-box;
  text-align: left;
}

.thanks-box__notice p {
  margin: 0;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.thanks-box__small {
  margin: 26px 0 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

/* ━━━━━━━━━━━━━━ */
/* サンクスページ：電話ボタン */
/* ━━━━━━━━━━━━━━ */

.thanks-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  min-height: 104px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff7d18 0%, #ff5700 58%, #ef4600 100%);
  box-shadow: 0 8px 0 #c83a00;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
}

.thanks-tel,
.thanks-tel:link,
.thanks-tel:visited,
.thanks-tel:hover,
.thanks-tel:active {
  color: #ffffff;
  text-decoration: none;
}

.thanks-tel * {
  color: #ffffff;
}

.thanks-tel:hover {
  opacity: 0.9;
}

.thanks-tel:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #c83a00;
}

.thanks-tel__icon {
  width: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-tel__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.thanks-tel__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.thanks-tel__number {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
}

.thanks-tel__number::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.thanks-tel__lead {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.sp-only {
  display: none;
}

/* ━━━━━━━━━━━━━━ */
/* サンクスページ：スマホ */
/* ━━━━━━━━━━━━━━ */

@media screen and (max-width: 768px) {
  .thanks-box {
    padding: 32px 16px 40px;
    border-radius: 20px;
  }

  .thanks-box__label {
    min-width: 104px;
    min-height: 30px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .thanks-box__title {
    font-size: 25px;
  }

  .thanks-box__lead {
    font-size: 16px;
  }

  .thanks-box__notice {
    padding: 18px 16px;
  }

  .thanks-box__notice p {
    font-size: 15px;
  }

  .thanks-tel {
    gap: 12px;
    min-height: 82px;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 0 #c83a00;
  }

  .thanks-tel__icon {
    width: 42px;
    flex-basis: 42px;
  }

  .thanks-tel__number {
    font-size: 30px;
  }

  .thanks-tel__lead {
    font-size: 17px;
  }

  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 390px) {
  .thanks-tel {
    gap: 10px;
    padding: 14px 12px;
  }

  .thanks-tel__icon {
    width: 36px;
    flex-basis: 36px;
  }

  .thanks-tel__number {
    font-size: 26px;
  }

  .thanks-tel__lead {
    font-size: 15px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* お問い合わせフォームページここから */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：背景 */
/* ━━━━━━━━━━━━━━ */
.contact-body {
  background: #f2f8ff;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：セクション */
/* ━━━━━━━━━━━━━━ */
.contact-body .lower-page__section {
  padding: 64px 0;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：外枠 */
/* ━━━━━━━━━━━━━━ */
.contact-box {
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 80, 160, 0.12);
  box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：フォーム枠 */
/* ━━━━━━━━━━━━━━ */
.contact-form-box {
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：タイトル */
/* ━━━━━━━━━━━━━━ */
.contact-form-box__title {
  margin: 0;
  color: #333333;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：説明文 */
/* ━━━━━━━━━━━━━━ */
.contact-form-box__lead {
  margin: 18px 0 0;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：フォーム埋め込み枠 */
/* ━━━━━━━━━━━━━━ */
.contact-form-box__inner {
  margin: 28px 0 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━ */
/* お問い合わせフォームページ：フォームメーラー埋め込み */
/* ━━━━━━━━━━━━━━ */
.contact-form-box__inner .formmailer-embed {
  width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* お問い合わせフォームページここまで */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* スマホとPCの画像差し替え */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tel-btn-img--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .tel-btn-img--pc {
    display: none;
  }

  .tel-btn-img--sp {
    display: block;
  }
}
