/* =========================================================
   基本設定
========================================================= */

:root {
  --color-primary: #123f8c;
  --color-primary-light: #3f67b3;
  --color-line: #06b84f;
  --color-form: #ff7908;
  --color-text: #111;
  --color-white: #fff;
  --color-header-bg: #f6fafa;
  --color-border: #dce5eb;

  --header-height-mobile: 72px;

  --font-sans:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    Meiryo, sans-serif;

  --transition-base: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height-mobile) + 16px);
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 500;
}

strong,
b {
  font-weight: 700;
}

.is-black {
  font-weight: 700;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
}
/* =========================================================
   レスポンシブ改行（スマホ・PCの出し分け）
========================================================= */

/* --- 基本設定（スマホ向けの表示） --- */

/* スマホ用改行：スマホ画面では表示する */
br.sp {
  display: block;
}

/* PC用改行：スマホ画面では隠す（改行させない） */
br.pc {
  display: none;
}

/* --- 画面幅が768px以上（タブレット・PC）のときの設定 --- */
@media (min-width: 768px) {
  /* スマホ用改行：PC画面では隠す（改行させない） */
  br.sp {
    display: none;
  }

  /* PC用改行：PC画面では表示する */
  br.pc {
    display: block;
  }
}
/* =========================================================
   ヘッダー
========================================================= */

.site-header {
  position: relative; /* stickyを解除し、通常の配置に戻します */
  z-index: 1000;
  width: 100%;
  background: var(--color-header-bg);
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

.site-header h1 {
  font-size: 0.6rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height-mobile);
  padding-inline: 10px;
}

/* =========================================================
   ロゴ
========================================================= */

.site-header__logo {
  position: relative;
  z-index: 1000;
  display: block;
  width: min(67vw, 270px);
  flex-shrink: 0;
}

.site-header__logo img {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

/* =========================================================
   PC用要素
========================================================= */

.global-nav,
.header-phone,
.header-actions {
  display: none;
}

/* =========================================================
   ハンバーガーボタン
========================================================= */

.menu-button {
  position: fixed; /* 画面に対して常に固定表示します */
  top: 12px; /* 画面上部からの位置 */
  right: 16px; /* 画面右端からの位置 */
  z-index: 1100;
  display: grid;
  place-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-primary);
  transition:
    background-color var(--transition-base),
    transform var(--transition-base);
}
.menu-button:active {
  transform: scale(0.96);
}

.menu-button__line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-white);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   スマホメニュー
========================================================= */

.mobile-menu {
  position: fixed;

  /* ★修正ポイント1：画面の一番上から表示するように変更 */
  inset: 0;

  z-index: 1050;

  /* ★修正ポイント2：高さを画面いっぱいに変更 */
  max-height: 100dvh;

  overflow-y: auto;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    visibility var(--transition-base),
    opacity var(--transition-base),
    transform var(--transition-base);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__inner {
  /* ★修正ポイント3：右上の閉じるボタンと被らないよう、上に60pxの余白を追加 */
  padding: 60px 20px 32px;
}

.mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding-inline: 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition:
    color var(--transition-base),
    padding-left var(--transition-base);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  padding-left: 12px;
  color: var(--color-primary);
}

.mobile-nav__link span:last-child {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.mobile-menu__contact {
  margin-top: 24px;
}

.mobile-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  color: var(--color-primary);
  background: var(--color-white);
}

.mobile-phone__label {
  font-size: 12px;
  font-weight: 500;
}

.mobile-phone__number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: clamp(25px, 8vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.mobile-phone__number svg {
  width: 24px;
  margin-right: 5px;
}

.mobile-phone__hours {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

.mobile-menu__buttons {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mobile-contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px;
  border-radius: 12px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.mobile-contact-button:hover,
.mobile-contact-button:focus-visible {
  opacity: 0.86;
  transform: translateY(-2px);
}

.mobile-contact-button--line {
  background: var(--color-line);
}

.mobile-contact-button--form {
  background: var(--color-form);
}

.mobile-contact-button small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 45%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility var(--transition-base),
    opacity var(--transition-base);
}

.menu-overlay.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   ファーストビュー
========================================================= */

.fv {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.fv__image {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   キャンペーンセクション
========================================================= */
.campaign {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 30px;
}
.campaign img {
  max-width: 1000px;
  width: 100%;
}

/* =========================================================
   早めの相談セクション
========================================================= */

.early-consult {
  position: relative;
  overflow: hidden;
  padding: 48px 16px 56px;
  background-image: url("../images/section02_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  isolation: isolate;
}

.early-consult__inner {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
}

.early-consult__content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   見出し
========================================================= */

.early-consult__heading-area {
  display: grid;
  gap: 24px;
}

.early-consult__title {
  margin: 0;
  font-size: clamp(46px, 13vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-align: center;
}

.early-consult__title-orange,
.early-consult__title-blue {
  display: inline;
  text-shadow:
    0 4px 0 #fff,
    4px 0 0 #fff,
    -4px 0 0 #fff,
    0 -4px 0 #fff,
    0 8px 6px rgb(0 0 0 / 18%);
}

.early-consult__title-orange {
  color: #f75b00;
}

.early-consult__title-small {
  color: #073aa4;
  font-size: 0.63em;
  text-shadow:
    0 3px 0 #fff,
    3px 0 0 #fff,
    -3px 0 0 #fff,
    0 -3px 0 #fff;
}

.early-consult__title-blue {
  display: block;
  margin-top: 8px;
  color: #073eaf;
}

/* =========================================================
   予約状況
========================================================= */

.early-consult__status {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin-inline: auto;
}

.early-consult__status-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  margin: 0;
  padding: 10px 25px 10px 18px;
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%,
    13px 50%
  );
  color: #fff;
  font-size: clamp(18px, 5.2vw, 25px);
  font-weight: 500;
  line-height: 1.25;
  background: #fa5900;
}

.early-consult__status-item span span,
.early-consult__status-item strong {
  color: #fff600;
  font-style: normal;
  font-weight: 700;
}

.early-consult__status-icon {
  display: grid;
  place-items: center;
  width: 34px;
  margin-right: 8px;
  flex: 0 0 34px;
  font-size: 30px;
  line-height: 1;
}

/* =========================================================
   説明文
========================================================= */

.early-consult__message {
  margin-top: 30px;
  text-align: center;
}

.early-consult__lead {
  margin: 0;
  color: #111;
  font-size: clamp(1.125rem, 0.408rem + 3.06vw, 1.875rem);
  font-weight: 500;
  line-height: 1.75;
}

.early-consult__lead strong {
  color: #df0011;
  font-size: 1.14em;
  font-weight: 700;
}

.early-consult__description {
  margin: 18px 0 0;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 500;
  line-height: 1.9;
}

/* =========================================================
   3つの特徴
========================================================= */

.early-consult__benefits {
  display: grid;
  gap: 12px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.early-consult__benefit {
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 12px 18px;
  border: 3px solid #083cad;
  border-radius: 12px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 4px 10px rgb(0 50 130 / 8%);
}

.early-consult__benefit-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}
.early-consult__benefit-icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.early-consult__benefit-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.early-consult__benefit-text strong {
  color: #073da9;
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 700;
}

.early-consult__benefit-text strong span {
  color: #e60012;
}

.early-consult__benefit-text small {
  margin-top: 3px;
  color: #111;
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   初期費用0円・最大86%OFF
========================================================= */

.early-consult__offer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
  padding: 15px 22px;
  border-radius: 999px;
  color: #fff;
  background: #073eb5;
  box-shadow: 0 7px 16px rgb(0 44 130 / 18%);
}

.early-consult__offer-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 8px;
  min-width: 0;
  margin: 0;
  font-size: clamp(18px, 4.6vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.035em;
}

.early-consult__offer-initial {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.early-consult__offer-initial strong {
  color: transparent;
  background: linear-gradient(
    180deg,
    #e2a400 0%,
    #f7c236 24%,
    #fff3cc 45%,
    #fcea14 63%,
    #e3b13b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.early-consult__offer-initial strong small {
  margin-left: 1px;
  font-size: 0.54em;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.early-consult__offer-separator {
  margin-inline: 1px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
}

.early-consult__offer-product {
  white-space: nowrap;
}

.early-consult__offer-discount {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.early-consult__offer-discount em {
  color: transparent;
  background: linear-gradient(
    180deg,
    #e2a400 0%,
    #f7c236 24%,
    #fff3cc 45%,
    #fcea14 63%,
    #e3b13b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 2em;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.early-consult__offer-discount em strong {
  font-size: 1.3em;
  font-weight: 700;
}

.early-consult__offer-discount > span {
  color: #fff;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.early-consult__offer-note {
  display: block;
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(10px, 2.7vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

/* =========================================================
   小さいスマホ
========================================================= */

@media (max-width: 479px) {
  .early-consult__offer {
    flex-direction: column;
    gap: 5px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .early-consult__offer-main {
    gap: 3px 6px;
    font-size: clamp(17px, 4.8vw, 21px);
  }

  .early-consult__offer-product {
    white-space: normal;
  }

  .early-consult__offer-note {
    align-self: flex-end;
    margin-right: 8px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .early-consult__offer {
    gap: 18px;
    margin-top: 34px;
    padding: 17px 30px;
  }

  .early-consult__offer-main {
    flex-wrap: nowrap;
    gap: 8px;
    font-size: clamp(22px, 2.7vw, 31px);
  }

  .early-consult__offer-note {
    font-size: 12px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .early-consult__offer {
    width: min(100%, 1180px);
    min-height: 78px;
    margin: 38px auto 0;
    gap: clamp(20px, 2vw, 34px);
    padding: 12px 42px;
  }

  .early-consult__offer-main {
    flex: 1;
    flex-wrap: nowrap;
    gap: clamp(7px, 0.8vw, 14px);
    font-size: clamp(27px, 2vw, 38px);
  }

  .early-consult__offer-initial strong {
    font-size: 2em;
  }

  .early-consult__offer-discount em strong {
    font-size: 1.3em;
  }

  .early-consult__offer-note {
    font-size: clamp(12px, 0.9vw, 16px);
  }
}

/* =========================================================
   CTAボタン
========================================================= */

.early-consult__actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.early-consult__action {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 108px;
  padding: 15px 42px 15px 16px;
  border-radius: 18px;
  color: #fff;
  box-shadow:
    0 7px 0 rgb(0 0 0 / 10%),
    0 10px 20px rgb(0 0 0 / 12%);
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.early-consult__action:hover,
.early-consult__action:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow:
    0 9px 0 rgb(0 0 0 / 8%),
    0 14px 24px rgb(0 0 0 / 14%);
}

.early-consult__action--phone {
  background: linear-gradient(135deg, #237df5, #0637aa);
}

.early-consult__action--line {
  background: linear-gradient(135deg, #04c751, #009d3d);
}

.early-consult__action--form {
  background: linear-gradient(135deg, #ff8610, #ff5f00);
}

.early-consult__action-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-right: 12px;
  border-radius: 50%;
  flex: 0 0 56px;
  color: inherit;
  font-weight: 700;
  line-height: 1;
}

.early-consult__action-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.early-consult__action-content > small {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
}

.early-consult__action-content strong {
  font-size: clamp(21px, 6vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.early-consult__action-reception {
  min-width: 165px;
  margin-top: 7px;
  padding: 3px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: #fff;
}

.early-consult__action--phone .early-consult__action-reception {
  color: #073da9;
}

.early-consult__action--line .early-consult__action-reception {
  color: #009d3d;
}

.early-consult__action--form .early-consult__action-reception {
  color: #f35e00;
}

.early-consult__action-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-53%);
}

/* =========================================================
   共通表示制御
========================================================= */

.u-pc {
  display: none;
}

/* =========================================================
   業務用エアコン料金例
========================================================= */

.aircon-price {
  overflow: hidden;
  padding: 64px 0 56px;
  background: #fff;
}

.aircon-price__inner {
  width: min(100%, 1540px);
  margin-inline: auto;
}

.aircon-price__title {
  width: calc(100% - 40px);
  max-width: 920px;
  margin: 0 auto 48px;
  padding-bottom: 16px;
  border-bottom: 6px solid #073eae;
  color: #073eae;
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  text-align: center;
}

/* =========================================================
   スライダー
========================================================= */

.aircon-slider {
  position: relative;
}

.aircon-slider__viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-y;
}
.aircon-slider__viewport::-webkit-scrollbar {
  display: none;
}

.aircon-slider__list {
  display: grid;
  grid-auto-columns: min(82vw, 330px);
  grid-auto-flow: column;
  gap: 14px;
  margin: 0;
  padding: 0 28px 10px;
  list-style: none;
}

.aircon-card {
  min-width: 0;
  scroll-snap-align: center;
}

/* =========================================================
   商品カード
========================================================= */

.aircon-card__inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 14px 12px 20px;
  border: 3px solid #073eae;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 31%,
    #f3faff 55%,
    #f5fbff 100%
  );
}

.aircon-card__image-area {
  display: grid;
  place-items: center;
  height: 190px;
  margin-bottom: 4px;
}

.aircon-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aircon-card__maker {
  margin: 4px 4px 0;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.aircon-card__name {
  display: grid;
  place-items: center;
  min-height: 76px;
  margin: 0;
  padding: 8px 4px 14px;
  border-bottom: 1px dashed #073eae;
  color: #073eae;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.aircon-card__regular-price {
  padding: 12px 8px 10px;
}

.aircon-card__regular-price > span {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 500;
}

.aircon-card__regular-price strong {
  display: block;
  margin-top: 1px;
  color: #000;
  font-size: clamp(31px, 8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.aircon-card__regular-price small {
  margin-left: 2px;
  font-size: 14px;
  letter-spacing: 0;
}

/* =========================================================
   月額料金
========================================================= */

.aircon-card__monthly {
  margin-top: auto;
  padding: 10px 8px 11px;
  border: 3px solid #ff7800;
  border-radius: 17px;
  background: #fffaf0;
}

.aircon-card__monthly-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #073eae;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.aircon-card__monthly-heading small {
  font-size: 10px;
}

.aircon-card__discount {
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background: linear-gradient(180deg, #287bea, #073eae);
  box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
}

.aircon-card__monthly-price {
  margin: 7px 0 0;
  color: #df0011;
  font-size: clamp(45px, 12vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: center;
  white-space: nowrap;
}

.aircon-card__monthly-price small {
  margin-left: 2px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* =========================================================
   タグ
========================================================= */

.aircon-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin: 14px 4px 0;
  padding: 0;
  list-style: none;
}

.aircon-card__tags li {
  padding: 5px 10px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  background: #073eae;
}

/* =========================================================
   前後ボタン
========================================================= */

.aircon-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: #073eae;
  box-shadow: 0 5px 12px rgb(0 46 145 / 22%);
  transform: translateY(-75%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.aircon-slider__arrow:hover,
.aircon-slider__arrow:focus-visible {
  background: #0253d8;
}

.aircon-slider__arrow:active {
  transform: translateY(-75%) scale(0.94);
}

.aircon-slider__arrow--prev {
  left: 4px;
}

.aircon-slider__arrow--next {
  right: 4px;
}

.aircon-slider__arrow span {
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.aircon-slider__arrow--prev span {
  margin-left: 7px;
  transform: rotate(-135deg);
}

.aircon-slider__arrow--next span {
  margin-right: 7px;
  transform: rotate(45deg);
}

/* =========================================================
   ドット
========================================================= */

.aircon-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 22px;
  margin-top: 23px;
}

.aircon-slider__dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #b8c8df;
  transition:
    width 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.aircon-slider__dot:hover,
.aircon-slider__dot:focus-visible {
  transform: scale(1.15);
}

.aircon-slider__dot.is-active {
  background: #073eae;
}

/* =========================================================
   注意事項
========================================================= */

.aircon-price__notes {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding-inline: 20px;
  color: #073eae;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.aircon-price__notes p {
  margin: 0;
}

/* =========================================================
   最安値保証セクション
========================================================= */

.price-match {
  position: relative;
  overflow: hidden;
  padding: 52px 16px 58px;
  background-image: url("../images/section04_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.price-match__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.price-match__content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   メインコピー
========================================================= */

.price-match__subhead {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 6.8vw, 50px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  text-shadow:
    2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    0 0 10px rgb(255 255 255 / 80%);
}

.price-match__lead {
  margin: 10px 0 0;
  color: #111;
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.05em;
  text-shadow:
    2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    0 0 10px rgb(255 255 255 / 80%);
}

.price-match__lead-red {
  color: #ef0012;
  font-size: 1.3em;
  font-weight: 700;
}

.price-match__title {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 14px 0 0;
  padding-bottom: 10px;
  color: #ef0012;
  font-size: clamp(2.188rem, -0.264rem + 10.46vw, 4.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-shadow:
    3px 3px 0 #fff,
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    0 10px 10px rgb(0 0 0 / 10%);
}

.price-match__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 10px;
  background: #ff7a00;
  content: "";
}

.price-match__text {
  margin: 28px 0 0;
  color: #111;
  font-size: clamp(20px, 4.8vw, 32px);
  font-weight: 500;
  line-height: 1.55;
}

/* =========================================================
   バッジ
========================================================= */

.price-match__badge {
  width: min(72%, 300px);
  margin: 30px auto 0;
}

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

/* =========================================================
   3つの特徴
========================================================= */

.price-match__points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-match__point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 14px;
  border: 3px solid #0b43b8;
  border-radius: 14px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 4px 12px rgb(0 40 120 / 10%);
}

.price-match__point-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
}

.price-match__point-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-match__point-body {
  min-width: 0;
}

.price-match__point-title {
  margin: 0;
  color: #0b43b8;
  font-size: clamp(24px, 5.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.price-match__point-title span {
  color: #ef0012;
}

.price-match__point-text {
  margin: 8px 0 0;
  color: #111;
  font-size: clamp(15px, 3.8vw, 22px);
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================================
   下部の訴求
========================================================= */

.price-match__promise {
  margin: 28px auto 0;
  padding: 18px 22px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(1.125rem, -0.19rem + 5.61vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  background: #0b43b8;
  box-shadow: 0 8px 18px rgb(0 46 145 / 14%);
}

.price-match__promise span {
  color: #ffd62a;
}

/* =========================================================
   メーカー・機種紹介
========================================================= */

.product-lineup {
  padding: 64px 16px 70px;
  background: #fff;
}

.product-lineup__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.product-lineup__title {
  margin: 0 0 72px;
  padding-bottom: 18px;
  border-bottom: 6px solid #0b43b8;
  color: #0b43b8;
  font-size: clamp(1.875rem, 1.456rem + 1.79vw, 2.313rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
  text-align: center;
}

/* =========================================================
   共通ボックス
========================================================= */

.lineup-box {
  position: relative;
  padding: 50px 14px 22px;
  border: 3px solid #3561b3;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgb(249 253 255 / 96%) 0%,
    rgb(239 248 255 / 96%) 100%
  );
}

.lineup-box + .lineup-box {
  margin-top: 58px;
}

.lineup-box__label {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 160px;
  margin: 0;
  padding: 10px 24px;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg, #2678f3 0%, #063eb4 100%);
  box-shadow: 0 4px 8px rgb(0 48 140 / 15%);
  transform: translate(-50%, -50%);
}

/* =========================================================
   メーカー
========================================================= */

.maker-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.maker-list__item {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 84px;
  padding: 12px 8px;
  border: 1px solid #d2dae5;
  border-radius: 9px;
  background: #fff;
  box-shadow:
    0 5px 9px rgb(0 43 110 / 10%),
    inset 0 0 0 1px rgb(255 255 255 / 70%);
}

.maker-list__item img {
  display: block;
  width: 100%;
  max-width: 170px;
  height: 55px;
  object-fit: contain;
}

/* =========================================================
   機種
========================================================= */

.lineup-box--type {
  padding-top: 62px;
}

.aircon-type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aircon-type-card {
  min-width: 0;
  text-align: center;
}

.aircon-type-card__image {
  display: grid;
  place-items: center;
}

.aircon-type-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.aircon-type-card:hover .aircon-type-card__image img {
  transform: translateY(-4px);
}

.aircon-type-card__name {
  margin: 10px 0 0;
  color: #063eb4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

/* =========================================================
   電子ブレーカー訴求セクション
========================================================= */

.breaker-saving {
  position: relative;
  overflow: hidden;
  padding: 48px 16px 56px;
  background-image: url("../images/section06_bg.png");
  background-repeat: no-repeat;
  background-position: initial;
  background-size: cover;
  background-color: #fbfafa;
}

.breaker-saving__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.breaker-saving__content {
  width: 100%;
  max-width: 760px;
}

/* =========================================================
   上部ラベル
========================================================= */

.breaker-saving__label {
  display: inline-block;
  margin: 0;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(22px, 5.8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(180deg, #1552d0 0%, #083fb3 100%);
}

.breaker-saving__label span {
  color: #ffd231;
}

/* =========================================================
   メインコピー
========================================================= */

.breaker-saving__series {
  margin: 28px 0 0;
  color: #111;
  font-size: clamp(1.313rem, 0.655rem + 2.81vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.breaker-saving__title {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 0.706rem + 7.65vw, 4.375rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.breaker-saving__title-blue {
  color: #063eb4;
}

.breaker-saving__title-black {
  color: #111;
}

.breaker-saving__lead {
  margin: 30px 0 0;
  color: #111;
  font-size: clamp(22px, 5.4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}

.breaker-saving__lead strong {
  color: #ef0012;
  font-size: 1.2em;
  font-weight: 700;
}

/* =========================================================
   下部3ポイント
========================================================= */

.breaker-saving__points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.breaker-saving__point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 110px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgb(255 255 255 / 88%);
  box-shadow:
    0 8px 18px rgb(0 39 109 / 10%),
    inset 0 0 0 1px rgb(255 255 255 / 75%);
  backdrop-filter: blur(2px);
}

.breaker-saving__point-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}

.breaker-saving__point-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.breaker-saving__point-text {
  margin: 0;
  color: #111;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

/* =========================================================
   電気代が安くなる仕組み
========================================================= */

.saving-mechanism {
  overflow: hidden;
  padding: 64px 16px 70px;
  background: #f8f8f8;
}

.saving-mechanism__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

/* =========================================================
   セクション見出し
========================================================= */

.saving-mechanism__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 66px;
  padding: 0 12px 16px;
  border-bottom: 6px solid #073eae;
  color: #073eae;
  font-size: clamp(1.5rem, -0.174rem + 7.14vw, 3.25rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.saving-mechanism__title img {
  display: block;
  width: clamp(45px, 11vw, 70px);
  height: auto;
  flex: 0 0 auto;
}

/* =========================================================
   3ステップ
========================================================= */

.saving-mechanism__steps {
  display: grid;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mechanism-step {
  position: relative;
  min-width: 0;
  padding: 24px 18px 22px;
  border: 2px solid #8fb7ff;
  border-radius: 18px;
  background: #fff;
}

.mechanism-step__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mechanism-step__number {
  color: #dedede;
  font-size: clamp(46px, 13vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mechanism-step__title {
  margin: 7px 0 0;
  color: #073eae;
  font-size: clamp(21px, 5.6vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

.mechanism-step__image {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 18px;
}

.mechanism-step__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: contain;
}

/* スマホのステップ間矢印 */

.mechanism-step:not(:last-child)::after {
  position: absolute;
  left: 50%;
  bottom: -33px;
  width: 22px;
  height: 22px;
  border-right: 5px solid #073eae;
  border-bottom: 5px solid #073eae;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

/* =========================================================
   電気代削減・実質0円訴求
========================================================= */

.saving-result {
  display: grid;
  grid-template-areas:
    "left"
    "center"
    "visual";
  gap: 30px;
  width: 100%;
  margin-top: 62px;
  padding: 28px 20px 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 24px rgb(0 50 130 / 6%);
}

/* =========================================================
   左側
========================================================= */

.saving-result__left {
  grid-area: left;
  min-width: 0;
}

.saving-result__label {
  width: 100%;
  margin: 0;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(20px, 5.4vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  background: #073eb5;
}

.saving-result__left-copy {
  margin-top: 24px;
  text-align: center;
}

.saving-result__small-text {
  margin: 0;
  color: #111;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 500;
  line-height: 1.45;
}

.saving-result__large-text {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 6px 0 0;
  color: #073eb5;
  font-size: clamp(42px, 11vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.saving-result__large-text::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  z-index: -1;
  height: 10px;
  background: #fff000;
  content: "";
}

/* =========================================================
   中央
========================================================= */

.saving-result__center {
  grid-area: center;
  min-width: 0;
  padding-top: 28px;
  border-top: 2px dashed #9cb8e4;
  text-align: center;
}

.saving-result__sub-copy {
  margin: 0;
  color: #21448e;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 500;
  line-height: 1.45;
}

.saving-result__lease-copy {
  margin: 12px 0 0;
  color: #21448e;
  font-size: clamp(27px, 6.4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.saving-result__zero-copy {
  position: relative;
  width: fit-content;
  display: inline-block;
  z-index: 1;
  margin: 8px 0 0;
  color: #073eb5;
  font-size: clamp(46px, 11vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.saving-result__zero-copy span {
  color: #e60012;
}

.saving-result__zero-copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 10px;
  background: #fff000;
  content: "";
}

/* =========================================================
   コミコミ料金・サポートセクション
========================================================= */

.all-inclusive {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 70px;
  background-image: url("../images/section02_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.all-inclusive__inner {
  width: min(100%, 1340px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.all-inclusive__title {
  margin: 0 0 58px;
  padding-bottom: 17px;
  border-bottom: 6px solid #073eb5;
  color: #073eb5;
  font-size: clamp(31px, 7.6vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  text-align: center;
}

.all-inclusive__title span {
  font-weight: 800;
  color: #f36b00;
  font-size: 1.2em;
}

/* =========================================================
   4つのカード
========================================================= */

.all-inclusive__cards {
  display: grid;
  gap: 16px;
}

.inclusive-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 20px 10px;
  border: 4px solid #073eb5;
  border-radius: 15px;
  background: rgb(255 255 255 / 94%);
}

.inclusive-card__visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

.inclusive-card__visual img {
  display: block;
  width: 100%;
  max-width: 112px;
  height: auto;
  object-fit: contain;
}

.inclusive-card__body {
  min-width: 0;
}

.inclusive-card__title {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px dashed #7697d2;
  color: #073eb5;
  font-size: clamp(21px, 5.2vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.inclusive-card__text {
  margin: 12px 0 0;
  color: #111;
  font-size: clamp(14px, 3.6vw, 18px);
  font-weight: 500;
  line-height: 1.7;
}

/* 画像を囲む枠の設定 */
.all-inclusive__lease-image {
  display: grid;
  place-items: center;
  width: 100%;
  margin-inline: 8px; /* 左右の月桂樹との間に少しだけ余白を作ります */
}

/* 画像自体の設定 */
.all-inclusive__lease-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain; /* 縦横比を保ったまま綺麗に縮小させます */
}

/* =========================================================
   リース会社訴求
========================================================= */

.all-inclusive__lease {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 24px 20px;
  border-radius: 18px;
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 6px 18px rgb(0 39 109 / 10%);
}

.all-inclusive__lease-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #073eb5;
  text-align: center;
}

.all-inclusive__lease-company p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.all-inclusive__lease-company strong {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
}

.all-inclusive__lease-company p span {
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 500;
}

.all-inclusive__laurel {
  color: #efc329;
  font-size: 38px;
  font-weight: 700;
}

.all-inclusive__lease-message {
  padding-top: 18px;
  border-top: 1px dashed #9cb8e4;
  text-align: center;
}

.all-inclusive__lease-message p {
  margin: 0;
  color: #111;
  font-size: clamp(19px, 4.8vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  word-break: auto-phrase;
}

.all-inclusive__lease-message strong {
  color: #e60012;
}

.all-inclusive__lease-message > span {
  display: block;
  margin-top: 5px;
  color: #111;
  font-size: clamp(14px, 3.6vw, 18px);
  font-weight: 500;
}

/* =========================================================
   下部メッセージ
========================================================= */

.all-inclusive__bottom-message {
  margin: 28px 0 0;
  padding: 17px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: #073eb5;
}

.all-inclusive__bottom-message strong {
  color: transparent;
  background: linear-gradient(
    180deg,
    #e2a400 0%,
    #f7c236 24%,
    #fff3cc 45%,
    #fcea14 63%,
    #e3b13b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3em;
}

/* =========================================================
   導入施設
========================================================= */

.installation-records {
  padding: 64px 16px 70px;
  background: #fff;
}

.installation-records__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.installation-records__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 46px;
  color: #073eb5;
  font-size: clamp(27px, 6.8vw, 50px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  align-items: baseline;
}

.installation-records__title::before,
.installation-records__title::after {
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: #073eb5;
  content: "";
}

.installation-records__title::before {
  transform: rotate(48deg);
}

.installation-records__title::after {
  transform: rotate(-48deg);
}

.installation-records__title span {
  font-size: 0.7em;
  display: contents;
}

/* =========================================================
   施設一覧
========================================================= */

.installation-records__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.installation-records__item {
  min-width: 0;
  text-align: center;
}

.installation-records__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f3f5f8;
}

.installation-records__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.installation-records__item:hover img {
  transform: scale(1.04);
}

.installation-records__item p {
  margin: 10px 0 0;
  color: #073eb5;
  font-size: clamp(17px, 4.2vw, 23px);
  font-weight: 700;
  line-height: 1.4;
}

/* =========================================================
   大型案件
========================================================= */

.installation-records__large-project {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 22px;
  border: 5px solid #073eb5;
  border-radius: 20px;
  background: #f6fbff;
}

.installation-records__large-title {
  margin: 0;
  color: #073eb5;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.installation-records__large-title span,
.installation-records__large-title strong {
  position: relative;
  display: table;
  z-index: 1;
  margin-inline: auto;
}

.installation-records__large-title span {
  font-size: clamp(28px, 7vw, 46px);
}

.installation-records__large-title strong {
  margin-top: 4px;
  font-size: clamp(30px, 7.6vw, 52px);
}

.installation-records__large-title span::after,
.installation-records__large-title strong::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  z-index: -1;
  height: 10px;
  background: #ffeb00;
  content: "";
}

.installation-records__large-text {
  margin: 0;
  color: #111;
  font-size: clamp(17px, 4.2vw, 25px);
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

/* =========================================================
   業務用エアコンのお悩み
========================================================= */

.aircon-concerns {
  position: relative;
  overflow: hidden;
  padding: 54px 16px 0;
  background-image: url("../images/okomari_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.aircon-concerns__inner {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.aircon-concerns__heading {
  position: relative;
  z-index: 3;
  text-align: center;
}

.aircon-concerns__label {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px 24px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(17px, 4.4vw, 27px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  background: #073eb5;
}

.aircon-concerns__title {
  margin: 24px 0 0;
  color: #111;
  font-size: clamp(32px, 8vw, 62px);
  font-weight: 700;
  line-height: 1.25;
}

.aircon-concerns__title span {
  color: #174fc4;
  font-size: 1.25em;
}

/* =========================================================
   コンテンツ
========================================================= */

.aircon-concerns__content {
  position: relative;
  z-index: 2;
  margin-top: 38px;
}

.aircon-concerns__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aircon-concerns__item {
  padding: 17px 18px;
  border: 2px solid rgb(7 62 181 / 13%);
  border-radius: 14px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 6px 18px rgb(0 48 130 / 8%);
  text-align: center;
  backdrop-filter: blur(3px);
}

.aircon-concerns__item p {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #173f91;
  font-size: clamp(19px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.45;
}

.aircon-concerns__item strong {
  color: #f05a00;
  font: inherit;
}

/* =========================================================
   男性画像
========================================================= */

.aircon-concerns__person {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.aircon-concerns__person img {
  display: block;
  width: min(40vw, 340px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}
/* =========================================================
   お悩み解決・お問い合わせ
========================================================= */

.solution-contact {
  overflow: hidden;
  padding: 34px 14px 0;
  background: linear-gradient(180deg, #287ef2 0%, #0751d5 58%, #073eb5 100%);
}

.solution-contact__inner {
  position: relative;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-top: 38px;
  border: 14px solid rgb(102 135 194 / 65%);
  border-bottom: 0;
  border-radius: 68px 68px 0 0;
  background: linear-gradient(135deg, #fff 0%, #fff 55%, #eff8ff 100%);
}

/* =========================================================
   上部ラベル
========================================================= */

.solution-contact__label {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  min-width: 250px;
  margin: 0;
  padding: 13px 28px;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background: #07339d;
  transform: translate(-50%, -48%);
}

/* =========================================================
   メインエリア
========================================================= */

.solution-contact__main {
  display: grid;
  padding: 35px 10px 0;
}

.solution-contact__content {
  position: relative;
  z-index: 2;
  grid-row: 1;
  text-align: center;
}

.solution-contact__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(32px, 9.5vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.06em;
}

.solution-contact__title-first,
.solution-contact__title-second {
  position: relative;
  display: table;
  z-index: 1;
  margin-inline: auto;
}

.solution-contact__title-second {
  margin-top: 10px;
}

.solution-contact__title-first::after,
.solution-contact__title-second::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  height: 13px;
  background: #fff13c;
  content: "";
}

.solution-contact__title strong {
  font-size: 1.1em;
  font-weight: 900;

  /* ① 上から下へ #F87C03 から #D80401 へのグラデーション背景を作ります */
  background: linear-gradient(to bottom, #f87c03, #d80401);

  /* ② 背景を文字の形に切り抜きます */
  -webkit-background-clip: text;
  background-clip: text;

  /* ③ 文字自体の色を透明にして、グラデーションを透かして見せます */
  -webkit-text-fill-color: transparent;
}

.solution-contact__description {
  margin-top: 30px;
}

.solution-contact__description p {
  margin: 0;
  color: #111;
  font-size: clamp(16px, 3vw, 25px);
  font-weight: 500;
  line-height: 1.9;
}

.solution-contact__description strong {
  color: #df0011;
  font-weight: 700;
}

/* =========================================================
   女性画像
========================================================= */

.solution-contact__visual {
  display: flex;
  grid-row: 2;
  justify-content: center;
  align-self: end;
  margin-top: 24px;
}

.solution-contact__visual img {
  display: block;
  width: min(50vw, 390px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* =========================================================
   CTA
========================================================= */
#estimate .solution-contact__actions {
  background: initial;
}

.solution-contact__actions {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 12px;
  padding: 18px 14px 22px;
  background: #1670ed;
}

.solution-action {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 13px 15px 13px 15px;
  border-radius: 18px;
  color: #fff;
  box-shadow:
    0 5px 0 rgb(0 0 0 / 13%),
    0 9px 18px rgb(0 0 0 / 12%);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.solution-action:hover,
.solution-action:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.solution-action--phone {
  background: linear-gradient(135deg, #2580f5, #0739aa);
}

.solution-action--line {
  background: linear-gradient(135deg, #05c950, #009e3d);
}

.solution-action--form {
  background: linear-gradient(135deg, #ff8b13, #ff6200);
}

.solution-action__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-right: 12px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: rgb(255 255 255 / 15%);
}

.solution-action__icon svg {
  width: 34px;
  height: 34px;
}

.solution-action__icon--line {
  color: #00aa43;
  font-size: 10px;
  font-weight: 700;
}

.solution-action__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.solution-action__body small {
  font-size: 13px;
  font-weight: 500;
}

.solution-action__body strong {
  font-size: clamp(18px, 4.7vw, 32px);
  font-weight: 700;
  line-height: 1.25;
}

.solution-action--phone .solution-action__body strong {
  font-size: clamp(30px, 8vw, 43px);
  white-space: nowrap;
}

.solution-action__reception {
  min-width: 150px;
  margin-top: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: #fff;
}

.solution-action--phone .solution-action__reception {
  color: #073eb5;
}

.solution-action--line .solution-action__reception {
  color: #009e3d;
}

.solution-action--form .solution-action__reception {
  color: #ed5c00;
}

.solution-action__arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-53%);
}

.solution-action__arrow svg {
  width: 0.6em;
  height: auto;
  display: block;
}
/* =========================================================
   下部メッセージ
========================================================= */

.solution-contact__bottom-message {
  margin: 0;
  padding: 26px 10px 30px;
  color: #fff;
  font-size: clamp(18px, 4.8vw, 29px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: #073eb5;
}

.u-sp {
  display: block;
}

/* =========================================================
   ゼロエアが選ばれる6つの理由
========================================================= */

.reasons {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 72px;
  background:
    radial-gradient(circle at 90% 12%, rgb(197 228 255 / 42%), transparent 28%),
    linear-gradient(135deg, #f4fbff 0%, #fff 48%, #f0f8ff 100%);
}

.reasons__inner {
  width: min(100%, 1340px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.reasons__heading {
  margin: 0 0 54px;
  padding-bottom: 18px;
  border-bottom: 6px solid #073eb5;
  color: #073eb5;
  font-size: clamp(30px, 7.4vw, 56px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.reasons__heading strong {
  color: #f36b00;
  font-size: 1.55em;
  font-weight: 700;
  line-height: 0;
}

/* =========================================================
   カード一覧
========================================================= */

.reasons__list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-card {
  overflow: hidden;
  padding: 18px 16px 20px;
  border: 4px solid #073eb5;
  border-radius: 15px;
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 7px 20px rgb(0 48 130 / 6%);
}

/* =========================================================
   カード見出し
========================================================= */

.reason-card__heading {
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #829ed1;
  justify-content: center;
  justify-items: center;
}

.reason-card__number {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 132px;
  min-height: 42px;
  padding: 7px 16px;
  border-radius: 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #297cf3 0%, #063cae 100%);
  box-shadow: 0 4px 8px rgb(0 47 140 / 18%);
}

.reason-card__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(22px, 5.7vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.04em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.reason-card__title em {
  display: block;
  margin-top: 2px;
  color: #f36b00;
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   カード内容
========================================================= */

.reason-card__content {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.reason-card__image {
  overflow: hidden;
  width: 100%;
  min-height: 190px;
  border-radius: 5px;
  background: #d1d1d1;
}

.reason-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.reason-card:hover .reason-card__image img {
  transform: scale(1.035);
}

.reason-card__text {
  min-width: 0;
  color: #111;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 500;
  line-height: 1.9;
}

.reason-card__text p {
  margin: 0;
}

.reason-card__text p + p {
  margin-top: 8px;
}

.reason-card__sub-list {
  margin: 10px 0 0;
  padding-left: 1.4em;
}

.reason-card__sub-list li + li {
  margin-top: 4px;
}

/* =========================================================
   対応可能な現場
========================================================= */

.difficult-site {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 70px;
  background-image: url("../images/difficult-site-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.difficult-site__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.difficult-site__heading {
  text-align: center;
}

.difficult-site__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(1.625rem, 0.19rem + 6.12vw, 3.125rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow:
    3px 3px 0 #fff,
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    0 4px 10px rgb(0 48 130 / 8%);
}

.difficult-site__lead {
  width: min(100%, 980px);
  margin: 28px auto 0;
  padding: 15px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(16px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(180deg, #ff9015 0%, #ff6200 100%);
  box-shadow: 0 7px 18px rgb(234 91 0 / 15%);
}

/* =========================================================
   現場一覧
========================================================= */

.difficult-site__list {
  display: grid;
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.difficult-site__item {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 135px;
  overflow: hidden;
  border: 3px solid #8eb5ff;
  border-radius: 14px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 6px 16px rgb(0 48 130 / 7%);
}

.difficult-site__image {
  min-width: 0;
  overflow: hidden;
  background: #e9edf3;
}

.difficult-site__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.difficult-site__item:hover .difficult-site__image img {
  transform: scale(1.04);
}

.difficult-site__text {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 16px;
  color: #111;
  font-size: clamp(19px, 4.7vw, 27px);
  font-weight: 700;
  line-height: 1.5;
}

/* =========================================================
   注意書き
========================================================= */

.difficult-site__note {
  margin: 24px 0 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
   施工の流れ
========================================================= */

.work-flow {
  padding: 64px 16px 74px;
  background: #fff;
}

.work-flow__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

/* =========================================================
   セクション見出し
========================================================= */

.work-flow__heading {
  text-align: center;
}

.work-flow__title {
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px 13px;
  border-bottom: 6px solid #073eb5;
  color: #073eb5;
  font-size: clamp(36px, 9vw, 62px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.work-flow__speed {
  margin: 25px 0 0;
  color: #073eb5;
  font-size: clamp(18px, 4.8vw, 31px);
  font-weight: 700;
  line-height: 1.45;
}

.work-flow__speed strong {
  color: #f36b00;
  font-size: 1.45em;
  font-weight: 700;
}

.work-flow__free {
  width: min(100%, 880px);
  margin: 24px auto 0;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(17px, 4.3vw, 25px);
  font-weight: 700;
  line-height: 1.5;
  background: #073eb5;
}

.work-flow__free strong {
  margin-inline: 4px;
  color: #ffd52b;
  font-size: 1.2em;
}

/* =========================================================
   フロー一覧
========================================================= */

.work-flow__list {
  display: grid;
  gap: 48px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

/* =========================================================
   フローカード
========================================================= */

.flow-card {
  position: relative;
  display: grid;
  overflow: visible;
  border: 4px solid #94b8ff;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 16px rgb(0 49 135 / 5%);
}

.flow-card__body {
  min-width: 0;
  padding: 20px 18px 22px;
}

.flow-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  min-width: 142px;
  min-height: 45px;
  padding: 8px 20px;
  border-radius: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #ff9414 0%, #ff5e00 100%);
  box-shadow: 0 4px 9px rgb(223 86 0 / 16%);
}

.flow-card__title {
  margin: 20px 0 0;
  padding-bottom: 13px;
  border-bottom: 1px dashed #7f9fd7;
  color: #073eb5;
  font-size: clamp(20px, 5.4vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-card__text {
  margin: 17px 0 0;
  color: #111;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 500;
  line-height: 1.9;
}

/* =========================================================
   写真
========================================================= */

.flow-card__image {
  min-width: 0;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background: #edf2f8;
}

.flow-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

/* =========================================================
   カード間の矢印
========================================================= */

.flow-card:not(:last-child)::after {
  position: absolute;
  bottom: -37px;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 24px solid #073eb5;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  content: "";
  transform: translateX(-50%);
}

/* =========================================================
   全国対応エリア
========================================================= */

.service-area {
  overflow: hidden;
  padding: 64px 16px 72px;
  background: #fff;
}

.service-area__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

/* =========================================================
   上部
========================================================= */

.service-area__top {
  display: grid;
  gap: 36px;
}

.service-area__content {
  min-width: 0;
}

/* =========================================================
   見出し
========================================================= */

.service-area__title {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 6px solid #073eb5;
  color: #073eb5;
  font-size: clamp(1.75rem, 0.435rem + 5.61vw, 3.125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.06em;
  text-align: center;
}

.service-area__title strong {
  font-size: 1.15em;
  font-weight: 700;
}

.service-area__lead {
  margin: 28px 0 0;
  color: #073eb5;
  font-size: clamp(1.125rem, 0.049rem + 4.59vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
  text-align: center;
}

.service-area__lead strong {
  color: #f36b00;
  font-size: 1.18em;
}

.service-area__description {
  margin: 24px 0 0;
  color: #111;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

/* =========================================================
   日本地図
========================================================= */

.service-area__map {
  display: grid;
  place-items: center;
}

.service-area__map img {
  display: block;
  width: min(100%, 590px);
  height: auto;
  object-fit: contain;
}

/* =========================================================
   地域一覧
========================================================= */

.service-area__regions {
  display: grid;
  gap: 28px 14px;
  margin-top: 54px;
}

.area-region {
  position: relative;
  min-width: 0;
  padding: 38px 18px 22px;
  border: 3px solid #416bb5;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff 0%, #f0f7fc 100%);
}

.area-region__title {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 130px;
  margin: 0;
  padding: 10px 20px;
  border-radius: 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(180deg, #287cf3 0%, #063eb5 100%);
  box-shadow: 0 4px 9px rgb(0 49 140 / 15%);
  transform: translate(-50%, -50%);
}

.area-region__prefectures {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

/* =========================================================
   よくあるご質問
========================================================= */

.faq-section {
  padding: 64px 16px 72px;
  background: #fff;
}

.faq-section__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.faq-section__heading {
  text-align: center;
}

.faq-section__title {
  width: fit-content;
  margin: 0 auto;
  padding: 0 22px 14px;
  border-bottom: 6px solid #073eb5;
  color: #073eb5;
  font-size: clamp(36px, 9vw, 62px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.faq-section__lead {
  margin: 24px 0 0;
  color: #111;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 500;
  line-height: 1.7;
}

/* =========================================================
   FAQ一覧
========================================================= */

.faq-list {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}

.faq-item {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgb(0 45 120 / 8%);
}

/* detailsの標準マーカーを削除 */

.faq-item__question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  color: #073eb5;
  background: #eaf6ff;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__mark {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.faq-item__mark--question {
  color: #073eb5;
}

.faq-item__mark--answer {
  color: #e60012;
}

.faq-item__question-text {
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 700;
  line-height: 1.6;
}

/* 開閉アイコン */

.faq-item__toggle {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #073eb5;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* =========================================================
   回答
========================================================= */

.faq-item__answer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px 16px 22px;
}

.faq-item__answer-text {
  color: #111;
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 500;
  line-height: 1.85;
}

.faq-item__answer-text p {
  margin: 0;
  font-size: 1rem;
}

.faq-item__answer-text p + p {
  margin-top: 5px;
}

/* =========================================================
   下部お問い合わせ
========================================================= */

.faq-contact {
  display: grid;
  overflow: hidden;
  margin-top: 58px;
  border: 4px solid #91b7ff;
  border-radius: 17px;
  background: #fff;
}

.faq-contact__content {
  padding: 26px 18px;
}

.faq-contact__heading {
  text-align: center;
}

.faq-contact__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(21px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}

.faq-contact__text {
  margin: 5px 0 0;
  color: #111;
  font-size: clamp(15px, 3.7vw, 19px);
  font-weight: 500;
}

/* =========================================================
   お問い合わせボタン
========================================================= */

.faq-contact__actions {
  display: grid;
  margin-top: 24px;
}

/* =========================================================
   右下画像
========================================================= */

.faq-contact__visual {
  min-height: 240px;
  overflow: hidden;
  background: #eff7fd;
}

.faq-contact__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   無料お見積もり・お問い合わせ
========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 58px;
  background-image: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.contact-section__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
}

/* =========================================================
   見出し
========================================================= */

.contact-section__heading {
  text-align: center;
}

.contact-section__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(1.625rem, 0.19rem + 6.12vw, 3.125rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.06em;
  text-shadow:
    3px 3px 0 #fff,
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    0 8px 8px rgb(0 0 0 / 12%);
}

.contact-section__title span,
.contact-section__title strong {
  display: block;
}

.contact-section__title span {
  color: #f35b00;
}

.contact-section__title strong {
  margin-top: 8px;
  color: #073eb5;
  font-weight: 700;
}

.contact-section__lead {
  margin: 36px 0 0;
  color: #073eb5;
  font-size: clamp(17px, 4.3vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

/* =========================================================
   3つのメリット
========================================================= */

.contact-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefit {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 12px 16px;
  border: 3px solid #073eb5;
  border-radius: 10px;
  background: rgb(255 255 255 / 94%);
}

.contact-benefit img {
  display: block;
  width: 58px;
  height: 58px;
  margin-right: 14px;
  flex: 0 0 58px;
  object-fit: contain;
}

.contact-benefit__body {
  min-width: 0;
}

.contact-benefit__title {
  margin: 0;
  color: #073eb5;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}

.contact-benefit__title span {
  color: #e60012;
}

.contact-benefit__text {
  margin: 3px 0 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================================
   フォーム外枠
========================================================= */

.contact-form-box {
  margin-top: 28px;
  padding: 24px 16px 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgb(0 54 140 / 8%);
}

.contact-form-box__notice {
  margin: 0;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(15px, 3.8vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #073eb5;
}

/* =========================================================
   フォーム本体
========================================================= */

.contact-form {
  margin-top: 26px;
}

.contact-form__row {
  display: grid;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid #ddd;
}
.contact-form__row p {
  margin: 0;
}

.contact-form__label {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form__required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  vertical-align: 2px;
  background: #1674d5;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 2px;
  color: #111;
  font: inherit;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__field input {
  min-height: 48px;
  padding: 9px 12px;
}

.contact-form__field textarea {
  min-height: 220px;
  padding: 12px;
  line-height: 1.7;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #073eb5;
  outline: none;
  box-shadow: 0 0 0 3px rgb(7 62 181 / 15%);
}

/* =========================================================
   プライバシーポリシー
========================================================= */

.contact-form__privacy {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.contact-form__checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.contact-form__checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__checkbox-box {
  position: relative;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border: 1px solid #bbb;
  flex: 0 0 21px;
  background: #fff;
}

.contact-form__checkbox:has(input:checked) .contact-form__checkbox-box::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  border-right: 3px solid #073eb5;
  border-bottom: 3px solid #073eb5;
  content: "";
  transform: rotate(45deg);
}

.contact-form__checkbox:has(input:focus-visible) .contact-form__checkbox-box {
  outline: 3px solid #ffd000;
  outline-offset: 3px;
}

.contact-form__checkbox a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   送信ボタン
========================================================= */

.contact-form__submit {
  margin-top: 28px;
  text-align: center;
}

.contact-form__button {
  width: min(100%, 500px);
  min-height: 66px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(19px, 4.7vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(180deg, #ff8c13 0%, #ff6200 100%);
  box-shadow:
    0 7px 0 rgb(195 69 0 / 13%),
    0 12px 20px rgb(193 71 0 / 16%);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__button:hover,
.contact-form__button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 rgb(195 69 0 / 11%),
    0 15px 24px rgb(193 71 0 / 18%);
}

.contact-form__button:active {
  transform: translateY(2px);
}

/* =========================================================
   電話案内
========================================================= */

.contact-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 46px;
  padding: 20px 18px 18px 74px;
  border: 3px solid #073eb5;
  border-radius: 18px;
  color: #073eb5;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 6px 16px rgb(0 48 130 / 9%);
  text-align: center;
}

.contact-phone__icon {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 68px;
  height: 68px;
  transform: translateY(-50%);
}

.contact-phone__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-phone__guide {
  font-size: clamp(17px, 4.4vw, 24px);
  font-weight: 700;
}

.contact-phone__number {
  font-size: clamp(31px, 8vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.contact-phone__hours {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   フッター
========================================================= */

.site-footer {
  color: #111;
  background: #fff;
}

/* =========================================================
   フッターナビゲーション
========================================================= */

.site-footer__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 42px 20px;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__item a {
  position: relative;
  display: inline-block;
  padding: 4px 2px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-footer__item a:hover,
.site-footer__item a:focus-visible {
  color: #073eb5;
}

.site-footer__item a:hover::after,
.site-footer__item a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-footer__item a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgb(7 62 181 / 20%);
  outline-offset: 4px;
}

/* =========================================================
   コピーライト
========================================================= */

.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 20px;
  background: #f3f9fd;
}

.site-footer__copyright p {
  margin: 0;
  color: #073eb5;
  text-align: center;
}

.site-footer__copyright small {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
/* =========================================================
   下部固定お問い合わせボタン
========================================================= */

.fixed-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 0px max(0px, env(safe-area-inset-right))
    calc(5px + env(safe-area-inset-bottom)) max(0px, env(safe-area-inset-left));
}

.fixed-contact__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  width: min(100%, 1540px);
  margin-inline: auto;
}

/* =========================================================
   共通ボタン
========================================================= */

.fixed-contact__button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  overflow: hidden;
  border-radius: 11px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 2px 0 rgb(255 255 255 / 30%),
    0 4px 9px rgb(0 0 0 / 16%);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.fixed-contact__button:hover,
.fixed-contact__button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 rgb(255 255 255 / 30%),
    0 7px 14px rgb(0 0 0 / 20%);
}

.fixed-contact__button:focus-visible {
  outline: 3px solid #ffe100;
  outline-offset: 2px;
}

.fixed-contact__button--phone {
  background:
    radial-gradient(circle at 20% 0%, rgb(41 166 255 / 65%), transparent 38%),
    linear-gradient(180deg, #0877f2 0%, #0037aa 100%);
}

.fixed-contact__button--line {
  background:
    radial-gradient(circle at 22% 0%, rgb(103 255 78 / 45%), transparent 40%),
    linear-gradient(180deg, #19db20 0%, #00a912 100%);
}

.fixed-contact__button--form {
  background:
    radial-gradient(circle at 20% 0%, rgb(255 210 74 / 48%), transparent 40%),
    linear-gradient(180deg, #ff9715 0%, #f25b00 100%);
}

/* =========================================================
   スマホ用
========================================================= */

.fixed-contact__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 3px;
  color: #fff;
}

.fixed-contact__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fixed-contact__icon--line {
  width: 31px;
  height: 25px;
  border-radius: 999px;
  color: #00af15;
  font-size: 7px;
  font-weight: 700;
  background: #fff;
}

.fixed-contact__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fixed-contact__heading {
  display: block;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.fixed-contact__phone-number,
.fixed-contact__reception,
.fixed-contact__form-label {
  display: none;
}

.fixed-contact__arrow,
.fixed-contact__badge {
  display: none;
}
.fixed-contact__arrow svg {
  margin-left: 5px;
}

/* スマホではアイコンと文字を縦並び */

.fixed-contact__button {
  flex-direction: column;
}

/* 固定エリアで本文が隠れないようにする */

body {
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .fixed-contact {
    padding: 9px 14px;
  }

  .fixed-contact__inner {
    gap: 10px;
  }

  .fixed-contact__button {
    min-height: 96px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 42px 12px 15px;
    border-radius: 17px;
    text-align: left;
  }

  .fixed-contact__icon {
    width: 52px;
    height: 52px;
    margin: 0 14px 0 0;
    flex: 0 0 52px;
  }

  .fixed-contact__icon--line {
    width: 62px;
    height: 52px;
    flex-basis: 62px;
    font-size: 13px;
  }

  .fixed-contact__content {
    align-items: flex-start;
  }

  .fixed-contact__heading {
    font-size: clamp(15px, 1.8vw, 21px);
  }

  .fixed-contact__phone-number {
    display: block;
    margin-top: 1px;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }

  .fixed-contact__reception {
    display: block;
    min-width: 160px;
    margin-top: 7px;
    padding: 3px 14px;
    border: 1px solid rgb(255 255 255 / 75%);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .fixed-contact__reception--line {
    min-width: 185px;
    color: #00a912;
    font-size: 16px;
    background: #fff;
  }

  .fixed-contact__form-label {
    display: block;
    margin-top: 8px;
    padding: 7px 13px;
    border-radius: 8px;
    color: #ef5500;
    font-size: clamp(12px, 1.4vw, 17px);
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    background: #fff7c9;
  }

  .fixed-contact__arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: currentColor;
    font-size: 35px;
    font-weight: 300;
    line-height: 1;
    background: #fff;
    transform: translateY(-50%);
  }

  .fixed-contact__button--phone .fixed-contact__arrow {
    color: #073eb5;
  }

  .fixed-contact__button--line .fixed-contact__arrow {
    color: #00a912;
  }

  .fixed-contact__button--form .fixed-contact__arrow {
    color: #ef5b00;
  }

  .fixed-contact__badge {
    position: absolute;
    top: 9px;
    right: 45px;
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    color: #ef5b00;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    background: #fff;
    box-shadow: 0 3px 8px rgb(0 0 0 / 12%);
  }
  .flow-card__title {
    text-align: left;
  }

  body {
    padding-bottom: 122px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .fixed-contact {
    padding: 10px 14px;
  }

  /* 1. グリッドの固定幅（minmax）を解除し、柔軟な比率に変更します */
  .fixed-contact__inner {
    grid-template-columns: 1.05fr 1fr 1.15fr;
    gap: 10px;
  }

  /* 2. 矢印とテキストが被らないよう、右側の余白（padding）を大きく確保します */
  .fixed-contact__button {
    min-height: 100px;
    padding: 12px 64px 12px 14px; /* 右側に64pxの余白を確保 */
    border-radius: 16px;
  }

  /* アイコンのサイズも画面幅に合わせて柔軟に縮むように調整 */
  .fixed-contact__icon {
    width: clamp(48px, 4.5vw, 68px);
    height: clamp(48px, 4.5vw, 68px);
    margin-right: clamp(10px, 1vw, 18px);
    flex-basis: auto;
  }

  .fixed-contact__icon--line-img {
    width: clamp(65px, 6vw, 85px); /* 通常よりも大きな変動幅を設定します */
    height: clamp(65px, 6vw, 85px);
    flex-basis: auto;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
  }

  .fixed-contact__icon--line-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transform: scale(1.15); /* 画像自体を1.15倍に拡大します */
  }

  /* 3. テキストが枠からはみ出さないよう、最小サイズ（clampの左側の数値）を下げます */
  .fixed-contact__heading {
    font-size: clamp(14px, 1.3vw, 25px);
  }

  .fixed-contact__phone-number {
    font-size: clamp(26px, 2.5vw, 48px); /* 最小値を34px→26pxに */
  }

  /* 4. LINEの「24時間受付」の固定幅を解除し、柔軟に縮むようにします */
  .fixed-contact__reception {
    min-width: auto; /* ここが原因で横にはみ出していたのを解除 */
    width: 100%;
    max-width: 190px;
    font-size: clamp(12px, 1vw, 14px);
  }

  .fixed-contact__reception--line {
    max-width: 240px;
    font-size: clamp(15px, 1.5vw, 20px);
  }

  .fixed-contact__form-label {
    padding: 6px 12px;
    font-size: clamp(13px, 1.2vw, 20px);
    white-space: normal; /* 画面が狭いときは自然な折り返しを許可します */
  }

  /* 矢印の位置調整 */
  .fixed-contact__arrow {
    right: 12px;
    width: clamp(32px, 3vw, 38px);
    height: clamp(32px, 3vw, 38px);
    font-size: clamp(34px, 3.2vw, 43px);
  }

  /* 5. フォーム右上の丸いバッジがテキストに被らないよう、上に逃がします */
  .fixed-contact__badge {
    top: 7px;
    right: 70px;
    width: clamp(46px, 4.2vw, 58px);
    height: clamp(46px, 4.2vw, 58px);
    font-size: 10px;
  }

  body {
    padding-bottom: 130px;
  }
}
/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .site-footer__navigation {
    min-height: 170px;
    padding: 48px 30px;
  }

  .site-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 42px;
  }

  .site-footer__item a {
    font-size: 17px;
  }

  .site-footer__copyright {
    min-height: 72px;
  }

  .site-footer__copyright small {
    font-size: 14px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .site-footer__navigation {
    min-height: 180px;
    padding: 55px 50px;
  }

  .site-footer__list {
    gap: 54px;
  }

  .site-footer__item a {
    font-size: 18px;
  }

  .site-footer__copyright {
    min-height: 76px;
    padding: 22px 30px;
  }

  .site-footer__copyright small {
    font-size: 15px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .contact-section {
    padding: 82px 30px 70px;
  }

  .contact-section__title {
    font-size: clamp(56px, 7vw, 80px);
  }

  .contact-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .contact-benefit {
    min-height: 96px;
  }

  .contact-benefit img {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .contact-form-box {
    margin-top: 34px;
    padding: 28px 42px 42px;
  }

  .contact-form__row {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 15px 0;
  }

  .contact-form__label {
    padding-top: 0;
    font-size: 16px;
  }

  .contact-form__field input {
    max-width: 330px;
  }
  .contact-form__row--textarea {
    align-items: start;
  }
  .contact-form__row--textarea .contact-form__label {
    padding-top: 12px; /* テキストエリアの時だけ、文字を少し下げてバランスをとります */
  }
  s .contact-form__row--textarea .contact-form__field textarea {
    max-width: 640px;
  }

  .contact-phone {
    min-height: 88px;
    padding: 17px 22px 17px 108px;
    gap: 8px 16px;
  }

  .contact-phone__icon {
    left: 22px;
    width: 88px;
    height: 88px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .contact-section {
    padding: 96px 50px 78px;
  }

  .contact-section__title {
    font-size: clamp(3.75rem, 1.728rem + 2.94vw, 4.375rem);
  }

  .contact-section__lead {
    margin-top: 42px;
    font-size: clamp(19px, 1.45vw, 25px);
  }

  .contact-benefits {
    width: min(100%, 920px);
    margin: 30px auto 0;
  }

  .contact-benefit {
    padding: 12px 18px;
  }

  .contact-benefit__title {
    font-size: clamp(22px, 1.6vw, 28px);
  }

  .contact-form-box {
    margin-top: 26px;
    padding: 30px 76px 46px;
    border-radius: 26px;
  }

  .contact-form-box__notice {
    padding: 17px 26px;
    font-size: clamp(17px, 1.25vw, 21px);
  }

  .contact-form {
    margin-top: 30px;
  }

  .contact-form__row {
    grid-template-columns: 210px minmax(0, 1fr);
    padding: 24px 0;
  }

  .contact-form__field input {
    width: 330px;
  }

  .contact-form__field textarea {
    width: min(100%, 650px);
    min-height: 270px;
  }

  .contact-form__button {
    min-height: 72px;
    font-size: 25px;
  }

  .contact-phone {
    min-height: 92px;
    margin-top: 48px;
    padding: 16px 28px 16px 120px;
    border-radius: 20px;
  }

  .contact-phone__icon {
    left: 28px;
    width: 96px;
    height: 96px;
  }

  .contact-phone__guide {
    font-size: clamp(22px, 1.7vw, 29px);
  }

  .contact-phone__number {
    font-size: clamp(42px, 3.3vw, 58px);
  }

  .contact-phone__hours {
    font-size: 14px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .faq-section {
    padding: 82px 30px 92px;
  }

  .faq-section__title {
    font-size: clamp(48px, 6.5vw, 68px);
  }

  .faq-list {
    margin-top: 66px;
  }

  .faq-item__question {
    padding: 20px 26px;
  }

  .faq-item__answer {
    gap: 16px;
    padding: 20px 26px 24px;
  }

  .faq-contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .faq-section {
    padding: 96px 50px 108px;
  }

  .faq-section__title {
    padding-bottom: 16px;
    border-bottom-width: 7px;
    font-size: clamp(56px, 4.2vw, 72px);
  }

  .faq-section__lead {
    font-size: clamp(18px, 1.35vw, 23px);
  }

  .faq-list {
    gap: 28px;
    margin-top: 72px;
  }

  .faq-item__question {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    padding: 21px 34px;
  }

  .faq-item__question-text {
    font-size: clamp(18px, 1.35vw, 23px);
  }

  .faq-item__answer {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 23px 34px 28px;
  }

  .faq-item__answer-text {
    font-size: clamp(15px, 1.08vw, 18px);
  }

  .faq-contact {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    min-height: 280px;
    margin-top: 72px;
  }

  .faq-contact__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px 28px;
  }

  .faq-contact__title {
    font-size: clamp(24px, 1.8vw, 34px);
  }

  .faq-contact__text {
    font-size: clamp(16px, 1.15vw, 20px);
  }

  .faq-contact__actions {
    /* 幅が固定されて崩れる原因だったminmaxを解除し、均等な3列（1fr）に変更します */
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    width: 100%;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .service-area {
    padding: 82px 30px 90px;
  }

  .service-area__title {
    font-size: clamp(46px, 6vw, 70px);
  }

  .service-area__lead {
    margin-top: 32px;
    font-size: clamp(29px, 4vw, 44px);
  }

  .service-area__description {
    font-size: clamp(17px, 2.4vw, 22px);
  }

  .service-area__map img {
    width: min(78%, 650px);
  }

  .service-area__regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
    margin-top: 66px;
  }

  .area-region {
    min-height: 150px;
    padding: 42px 24px 24px;
  }

  .area-region__title {
    min-width: 150px;
    padding: 11px 24px;
    font-size: 21px;
  }

  .area-region__prefectures {
    font-size: 17px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .service-area {
    padding: 96px 50px 104px;
  }

  .service-area__top {
    grid-template-columns:
      minmax(560px, 1.05fr)
      minmax(440px, 0.95fr);
    align-items: center;
    gap: 56px;
  }

  .service-area__title {
    padding-bottom: 18px;
    border-bottom-width: 7px;
    font-size: clamp(3rem, 1.625rem + 2vw, 3.625rem);
    text-align: left;
  }

  .service-area__lead {
    margin-top: 28px;
    font-size: clamp(1.875rem, -0.147rem + 2.94vw, 2.5rem);
    text-align: left;
  }

  .service-area__description {
    margin-top: 30px;
    font-size: clamp(18px, 1.35vw, 24px);
    text-align: left;
  }

  .service-area__map {
    justify-items: end;
  }

  .service-area__map img {
    width: 100%;
    max-width: 630px;
  }

  .service-area__regions {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 42px 20px;
    margin-top: 62px;
  }

  /* 北海道・東北 */
  .service-area__regions .area-region:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  /* 関東 */
  .service-area__regions .area-region:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1;
  }

  /* 中部 */
  .service-area__regions .area-region:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  /* 近畿 */
  .service-area__regions .area-region:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  /* 中国 */
  .service-area__regions .area-region:nth-child(5) {
    grid-column: 5 / 7;
    grid-row: 2;
  }

  /* 四国 */
  .service-area__regions .area-region:nth-child(6) {
    grid-column: 7 / 9;
    grid-row: 2;
  }

  /* 九州・沖縄 */
  .service-area__regions .area-region:nth-child(7) {
    grid-column: 9 / 11;
    grid-row: 2;
  }

  .area-region,
  .area-region--wide {
    min-height: 150px;
    padding: 44px 20px 22px;
  }

  .area-region__title {
    min-width: 140px;
    padding: 10px 18px;
    font-size: 20px;
  }

  .area-region__prefectures {
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.8;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .work-flow {
    padding: 82px 30px 92px;
  }

  .work-flow__title {
    padding-inline: 28px;
    font-size: clamp(48px, 6.5vw, 68px);
  }

  .work-flow__speed {
    margin-top: 28px;
    font-size: clamp(25px, 3.6vw, 35px);
  }

  .work-flow__free {
    margin-top: 28px;
    padding: 17px 28px;
  }

  .work-flow__list {
    gap: 54px;
    margin-top: 68px;
  }

  .flow-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    min-height: 300px;
  }

  .flow-card__body {
    padding: 25px 24px 26px;
  }

  .flow-card__image {
    border-radius: 0 10px 10px 0;
  }

  .flow-card__image img {
    min-height: 100%;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .work-flow {
    padding: 96px 50px 108px;
  }

  .work-flow__title {
    padding-bottom: 16px;
    border-bottom-width: 7px;
    font-size: clamp(55px, 4.2vw, 72px);
  }

  .work-flow__speed {
    font-size: clamp(28px, 2.2vw, 38px);
  }

  .work-flow__free {
    max-width: 940px;
    font-size: clamp(22px, 1.65vw, 29px);
  }

  .work-flow__list {
    gap: 62px;
    margin-top: 72px;
  }

  .flow-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    min-height: 330px;
  }

  .flow-card__body {
    padding: 28px 30px 30px;
  }

  .flow-card__step {
    min-width: 168px;
    min-height: 50px;
    font-size: 21px;
    margin: 0;
  }

  .flow-card__title {
    margin-top: 22px;
    padding-bottom: 15px;
    font-size: clamp(29px, 2vw, 38px);
  }

  .flow-card__text {
    margin-top: 18px;
    font-size: clamp(16px, 1.12vw, 19px);
    line-height: 1.9;
  }

  .flow-card__image img {
    min-height: 330px;
  }

  .flow-card:not(:last-child)::after {
    bottom: -45px;
    border-top-width: 28px;
    border-right-width: 21px;
    border-left-width: 21px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .difficult-site {
    padding: 82px 30px 88px;
  }

  .difficult-site__title {
    font-size: clamp(48px, 6.5vw, 72px);
  }

  .difficult-site__lead {
    margin-top: 32px;
    padding: 18px 30px;
  }

  .difficult-site__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 58px;
  }

  .difficult-site__item {
    min-height: 150px;
  }

  .difficult-site__text {
    padding: 20px;
    font-size: clamp(20px, 2.6vw, 28px);
  }

  .difficult-site__note {
    margin-top: 28px;
    font-size: 13px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .difficult-site {
    padding: 92px 50px 96px;
  }

  .difficult-site__title {
    font-size: clamp(58px, 4.6vw, 82px);
  }

  .difficult-site__lead {
    max-width: 1120px;
    margin-top: 34px;
    padding: 20px 36px;
    font-size: clamp(27px, 2vw, 36px);
  }

  .difficult-site__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
    margin-top: 66px;
  }

  .difficult-site__item {
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 152px;
    border-radius: 13px;
  }

  .difficult-site__text {
    padding: 18px 22px;
    font-size: clamp(20px, 1.55vw, 28px);
  }

  .difficult-site__note {
    margin-top: 30px;
    font-size: 14px;
    text-align: right;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .reasons {
    padding: 82px 30px 90px;
  }

  .reasons__heading {
    margin-bottom: 64px;
    font-size: clamp(44px, 6vw, 66px);
  }

  .reason-card {
    padding: 20px 20px 24px;
  }

  .reason-card__heading {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
  }

  .reason-card__number {
    min-width: 144px;
    min-height: 46px;
    font-size: 18px;
  }

  .reason-card__title em {
    display: inline;
    margin: 0 0 0 8px;
  }

  .reason-card__content {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: stretch;
    gap: 22px;
  }

  .reason-card__image {
    min-height: 190px;
  }

  .reason-card__image img {
    min-height: 190px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .reasons {
    padding: 96px 50px 104px;
  }

  .reasons__heading {
    margin-bottom: 74px;
    padding-bottom: 20px;
    border-bottom-width: 7px;
    font-size: clamp(52px, 4.1vw, 72px);
  }

  .reasons__list {
    gap: 28px;
  }

  .reason-card {
    padding: 26px 26px 28px;
    border-width: 5px;
    border-radius: 17px;
  }

  .reason-card__heading {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 18px;
  }

  .reason-card__number {
    min-width: 160px;
    min-height: 50px;
    font-size: 20px;
  }

  .reason-card__title {
    font-size: clamp(2.5rem, 0.478rem + 2.94vw, 3.125rem);
  }

  .reason-card__content {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    padding-top: 22px;
  }

  .reason-card__image {
    min-height: 190px;
  }

  .reason-card__image img {
    min-height: 190px;
  }

  .reason-card__text {
    align-self: center;
    font-size: clamp(16px, 1.13vw, 19px);
    line-height: 1.85;
  }
}

/* =========================================================
   大型PC
========================================================= */

@media (min-width: 1440px) {
  .reason-card__content {
    grid-template-columns: 255px minmax(0, 1fr);
  }

  .reason-card__text {
    font-size: 18px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .solution-contact {
    padding: 42px 24px 0;
  }

  .solution-contact__inner {
    padding-top: 50px;
    border-width: 18px;
    border-radius: 100px 100px 0 0;
  }

  .solution-contact__label {
    min-width: 280px;
    padding: 15px 38px;
    font-size: 31px;
  }

  .solution-contact__main {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: end;
    padding: 42px 34px 0;
  }

  .solution-contact__visual {
    grid-row: 1;
    grid-column: 1;
    margin: 0;
  }

  .solution-contact__visual img {
    width: min(40vw, 390px);
  }

  .solution-contact__content {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    padding: 20px 0 42px 28px;
    text-align: left;
  }

  .solution-contact__title-first,
  .solution-contact__title-second {
    margin-inline: 0;
  }

  .solution-contact__description p {
    font-size: clamp(18px, 2.7vw, 26px);
  }

  .solution-contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
  }

  .solution-action--form {
    grid-column: 1 / -1;
  }

  .u-sp {
    display: none;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  /* 1. 一番背面のエリア（明るい青）と、上に余白を作る */
  .solution-contact {
    position: relative;
    padding: 80px 0 0 0; /* 左上の曲線のために上のスペースを確保します */
    background: #1670ed; /* 一番後ろのベースとなる青色 */
    overflow: hidden;
  }

  /* 2. 重なっている「濃い青色」の背景を作る（疑似要素という魔法を使います） */
  .solution-contact::before {
    content: "";
    position: absolute;
    top: 55px; /* 白い背景より少し上にズラして配置します */
    left: 0;
    width: 100%;
    height: 100%;
    background: #073eb5; /* 濃い青色 */
    border-radius: 200px 0 0 0; /* 左上だけ大きく曲げます */
    z-index: 1; /* 白い背景の下に敷きます */
  }

  /* 3. 白い背景エリア（右側全幅 ＆ 左上曲線） */
  .solution-contact__inner {
    position: relative;
    z-index: 2; /* 濃い青色の上に重ねます */
    width: 100%;
    max-width: 100%; /* 横幅の制限を解除し、右端まで全幅にします */
    margin: 0;
    padding-top: 30px;
    border: none; /* 元々あった枠線を消します */
    border-radius: 140px 0 0 0; /* 左上だけ曲げます（濃い青より少し小さく） */
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, #eff8ff 100%);
  }

  /* 4. ラベル「そのお悩み、」を枠線に重ねる */
  .solution-contact__label {
    min-width: 240px;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* 背景の境界線にちょうど半分重なるように配置します */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  /* 5. メインのコンテンツ（画像とテキスト）を中央に寄せる */
  .solution-contact__main {
    display: grid;
    grid-template-columns: minmax(380px, 40%) minmax(0, 60%);
    max-width: 1200px; /* コンテンツが広がりすぎないように幅を制限します */
    min-height: 480px;
    margin: 0 auto; /* 左右の余白を自動調整して中央に揃えます */
    padding: 0 30px;
    align-items: flex-end; /* 女性画像を一番下に揃えます */
  }

  .solution-contact__visual img {
    width: 100%;
    max-width: 450px;
    vertical-align: bottom; /* 画像下の不要な隙間を消します */
  }

  .solution-contact__content {
    padding: 0 0 0 20px;
    text-align: left;
    align-self: center;
  }

  .solution-contact__title {
    font-size: clamp(4.25rem, 2.632rem + 2.35vw, 4.75rem);
    line-height: 1;
  }

  /* 黄色いマーカーの調整 */
  .solution-contact__title-first,
  .solution-contact__title-second {
    display: inline-block; /* マーカーが文字幅にぴったり合うようにします */
    margin-bottom: 8px;
  }

  .solution-contact__title-first::after,
  .solution-contact__title-second::after {
    bottom: 4px;
    height: 35%;
    background: #fff000;
  }

  .solution-contact__description {
    margin-top: 34px;
  }

  .solution-contact__description p {
    font-size: clamp(22px, 1.7vw, 31px);
  }

  .solution-contact__title strong {
    color: #e60012;
    font-size: 1.3em;
  }
  /* 6. ボタンエリアの背景を全幅にし、ボタン自体は中央に寄せる */
  .solution-contact__actions {
    display: flex;
    justify-content: center; /* 3つのボタンを中央に集めます */
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(90deg, #1872f0, #0a46c2);
  }

  .solution-action {
    flex: 1; /* 3つのボタンを均等な幅にします */
    min-height: 120px;
    margin: 0 8px;
    padding: 15px;
  }
  .solution-action--form {
    grid-column: auto;
  }

  .solution-action__icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .solution-action__body {
    align-items: center;
    text-align: center;
  }

  .solution-action__body strong {
    font-size: clamp(20px, 1.6vw, 30px);
    white-space: nowrap;
  }

  .solution-action--phone .solution-action__body strong {
    font-size: clamp(30px, 2.4vw, 44px);
  }
  .solution-action__body small {
    font-size: 16px;
  }

  .solution-action__reception {
    min-width: 180px;
    font-size: 13px;
  }

  /* 7. 下部のメッセージを全幅にする */
  .solution-contact__bottom-message {
    width: 100%;
    padding: 34px 30px 38px;
    font-size: clamp(24px, 2vw, 36px);
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .aircon-concerns {
    padding: 72px 30px 0;
  }

  .aircon-concerns__label {
    padding: 15px 36px;
    font-size: clamp(22px, 3vw, 32px);
  }

  .aircon-concerns__title {
    margin-top: 28px;
    font-size: clamp(46px, 6.6vw, 76px);
  }

  .aircon-concerns__content {
    margin-top: 50px;
  }

  .aircon-concerns__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .aircon-concerns__item {
    display: grid;
    place-items: center;
    min-height: 145px;
    padding: 20px;
  }

  .aircon-concerns__item--05 {
    grid-column: 1 / -1;
    width: 55%;
    margin-inline: auto;
  }

  .aircon-concerns__person {
    margin-top: 12px;
  }

  .aircon-concerns__person img {
    width: min(48vw, 390px);
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .aircon-concerns__content {
    position: relative; /* 【重要】絶対配置の基準となる枠です */
    min-height: 600px;
    margin-top: 48px;
    display: flex; /* 人物画像を中央に配置するために使います */
    justify-content: center;
  }

  .aircon-concerns__label {
    padding: 16px 66px;
    font-size: clamp(27px, 2.1vw, 38px);
  }

  .aircon-concerns__title {
    margin-top: 28px;
    font-size: clamp(58px, 4.7vw, 86px);
  }

  .aircon-concerns__content {
    min-height: 600px;
    margin-top: 48px;
  }

  .aircon-concerns__list {
    position: absolute;
    inset: 0; /* 上下左右いっぱいに広げます */
    width: 100%;
    height: 100%;
    display: block; /* 以前のグリッドレイアウトを解除します */
    margin: 0;
    padding: 0;
  }
  .aircon-concerns__item {
    position: absolute; /* 【重要】好きな位置に自由に配置する設定です */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px; /* ぼんやり白い背景の横幅 */
    height: 320px; /* ぼんやり白い背景の高さ */
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%; /* 枠をまん丸にします */
    /* 中心が白で、外側にむかって透明になるグラデーションを作ります */
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 1) 35%,
      rgba(255, 255, 255, 0) 70%
    );
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }

  .aircon-concerns__item p {
    font-size: clamp(18px, 1.7vw, 24px); /* 文字サイズ */
    z-index: 2;
  }

  /* 01: 左上の配置 */
  .aircon-concerns__item--01 {
    top: 5%;
    left: 8%;
  }

  /* 02: 中央上の配置 */
  .aircon-concerns__item--02 {
    top: -2%;
    left: 50%;
    /* 自身の幅の半分だけ左に戻すことで、ピッタリ中央に揃える魔法のコードです */
    transform: translateX(-50%);
  }

  /* 03: 右上の配置 */
  .aircon-concerns__item--03 {
    top: 5%;
    right: 8%;
  }

  /* 04: 左下の配置 */
  .aircon-concerns__item--04 {
    bottom: 10%;
    left: 5%;
  }

  /* 05: 右下の配置 */
  .aircon-concerns__item--05 {
    bottom: 10%;
    right: 5%;
  }

  /* 男性の画像の配置 */
  .aircon-concerns__person {
    position: relative;
    z-index: 10; /* 文字や背景よりも一番手前に表示させます */
    align-self: flex-end; /* 親枠の一番下にピッタリくっつけます */
    margin: 0;
  }

  .aircon-concerns__person img {
    max-height: 400px;
  }
}

/* =========================================================
   大型PC
========================================================= */

@media (min-width: 1440px) {
  .aircon-concerns {
    min-height: 930px;
  }

  .aircon-concerns__content {
    min-height: 650px;
  }

  .aircon-concerns__list {
    gap: 66px 90px;
  }

  .aircon-concerns__person img {
    width: 430px;
    max-height: 450px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .installation-records {
    padding: 82px 30px 88px;
  }

  .installation-records__title {
    margin-bottom: 58px;
    font-size: clamp(38px, 5.2vw, 58px);
  }

  .installation-records__title::before,
  .installation-records__title::after {
    width: 48px;
    flex-basis: 48px;
  }

  .installation-records__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 22px;
  }

  .installation-records__large-project {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.5fr);
    align-items: center;
    gap: 0;
    margin-top: 64px;
    padding: 30px 34px;
  }

  .installation-records__large-title {
    padding-right: 34px;
  }

  .installation-records__large-text {
    padding-left: 42px;
    border-left: 2px dashed #92addd;
    text-align: left;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .installation-records {
    padding: 96px 50px 100px;
  }

  .installation-records__title {
    margin-bottom: 64px;
    font-size: clamp(44px, 3.4vw, 62px);
  }

  .installation-records__list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 30px;
  }

  .installation-records__image {
    aspect-ratio: 0.76;
  }

  .installation-records__item p {
    margin-top: 14px;
    font-size: clamp(16px, 1.15vw, 21px);
  }

  .installation-records__large-project {
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.7fr);
    width: min(100%, 1220px);
    min-height: 210px;
    margin: 70px auto 0;
    padding: 30px;
    border-width: 6px;
  }

  .installation-records__large-title {
    padding-right: 42px;
  }

  .installation-records__large-title span {
    font-size: clamp(34px, 2.5vw, 48px);
  }

  .installation-records__large-title strong {
    font-size: clamp(2.5rem, 2.096rem + 0.59vw, 2.625rem);
  }

  .installation-records__large-text {
    padding-left: 58px;
    font-size: clamp(20px, 1.45vw, 27px);
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .all-inclusive {
    padding: 82px 30px 88px;
  }

  .all-inclusive__title {
    margin-bottom: 70px;
    font-size: clamp(44px, 6vw, 66px);
  }

  .all-inclusive__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .inclusive-card {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: 230px;
    padding: 24px 20px;
  }

  .inclusive-card__visual img {
    max-width: 140px;
  }

  .all-inclusive__lease {
    grid-template-columns: 0.9fr 1.4fr;
    align-items: center;
    gap: 0;
    margin-top: 32px;
    padding: 26px 30px;
  }

  .all-inclusive__lease-company {
    padding-right: 28px;
  }

  .all-inclusive__lease-message {
    padding: 0 0 0 30px;
    border-top: 0;
    border-left: 1px dashed #9cb8e4;
    text-align: left;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .all-inclusive {
    padding: 92px 50px 96px;
  }

  .all-inclusive__title {
    margin-bottom: 82px;
    padding-bottom: 18px;
    border-bottom-width: 7px;
    font-size: clamp(52px, 4.1vw, 72px);
  }

  .all-inclusive__cards {
    gap: 18px;
  }

  .inclusive-card {
    grid-template-columns: 205px minmax(0, 1fr);
    min-height: 250px;
    gap: 22px;
    padding: 26px 26px 24px;
  }

  .inclusive-card__visual img {
    width: 100%;
    max-width: 205px;
  }

  .inclusive-card__title {
    padding-bottom: 14px;
    font-size: clamp(27px, 2vw, 38px);
  }

  .inclusive-card__text {
    margin-top: 15px;
    font-size: clamp(16px, 1.15vw, 20px);
  }

  .all-inclusive__lease {
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.5fr);
    margin-top: 35px;
    padding: 26px 42px;
  }

  .all-inclusive__lease-image {
    max-width: 380px; /* PC画面では画像を大きく表示します */
    margin-inline: 12px;
  }

  .all-inclusive__lease-company strong {
    font-size: clamp(24px, 1.8vw, 34px);
  }

  .all-inclusive__lease-company p span {
    font-size: clamp(16px, 1.15vw, 20px);
  }

  .all-inclusive__lease-message {
    padding-left: 42px;
  }

  .all-inclusive__lease-message p {
    font-size: clamp(24px, 1.9vw, 36px);
  }

  .all-inclusive__lease-message > span {
    font-size: clamp(16px, 1.15vw, 20px);
  }

  .all-inclusive__bottom-message {
    margin-top: 28px;
    padding-block: 18px;
    font-size: clamp(23px, 1.8vw, 34px);
  }
}

/* =========================================================
   エアコン画像
========================================================= */

.saving-result__visual {
  display: grid;
  grid-area: visual;
  place-items: center;
  min-width: 0;
}

.saving-result__aircon-image {
  display: block;
  width: min(90%, 390px);
  height: auto;
  object-fit: contain;
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .saving-result {
    grid-template-areas:
      "left center"
      "visual visual";
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);
    gap: 28px 0;
    padding: 34px;
  }

  .saving-result__center {
    padding: 0 0 0 38px;
    border-top: 0;
    border-left: 2px dashed #9cb8e4;
  }

  .saving-result__visual {
    margin-top: 10px;
  }

  .saving-result__aircon-image {
    width: min(60%, 380px);
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .saving-result {
    grid-template-areas: "left center visual";

    /* ★ここを修正：左側を狭くし、中央を広くします */
    grid-template-columns:
      minmax(280px, 0.8fr) /* 左側: 330px / 0.95fr から縮小 */
      minmax(460px, 1.3fr) /* 中央: 440px / 1.2fr から拡大 */
      minmax(260px, 0.72fr); /* 右側: そのまま */

    align-items: center;
    gap: 0;
    width: min(100%, 1320px);
    min-height: 300px;
    margin: 70px auto 0;
    padding: 42px 42px 38px 54px;
  }

  .saving-result__left {
    align-self: stretch;
  }

  .saving-result__label {
    padding: 5px 20px;
    font-size: clamp(1rem, -1.022rem + 2.94vw, 1.625rem);
  }

  .saving-result__left-copy {
    margin-top: 30px;
    text-align: left;
  }

  .saving-result__small-text {
    font-size: clamp(22px, 1.55vw, 31px);
  }

  .saving-result__large-text {
    font-size: clamp(2.5rem, -2.353rem + 7.06vw, 4rem);
  }

  .saving-result__center {
    display: flex;
    align-self: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 0 0 0 52px;
    border-top: 0;
    border-left: 2px dashed #9cb8e4;
    text-align: left;
  }

  .saving-result__sub-copy {
    font-size: clamp(20px, 1.35vw, 28px);
  }

  .saving-result__lease-copy {
    font-size: clamp(30px, 2.15vw, 44px);
    white-space: nowrap;
  }

  .saving-result__zero-copy {
    font-size: clamp(54px, 3.7vw, 76px);
  }

  .saving-result__visual {
    align-self: center;
    margin: 0;
    padding-left: 10px;
  }

  .saving-result__aircon-image {
    width: clamp(15.625rem, -4.596rem + 29.41vw, 21.875rem);
  }
}

/* =========================================================
   中型PCの微調整
========================================================= */

@media (min-width: 1100px) and (max-width: 1300px) {
  .saving-result {
    /* ★ここを修正：全体のバランスを整えます */
    grid-template-columns:
      minmax(260px, 0.8fr) /* 左側 */
      minmax(420px, 1.3fr) /* 中央 */
      minmax(230px, 0.65fr); /* 右側 */

    padding-inline: 34px;
  }

  .saving-result__center {
    padding-left: 34px;
  }

  .saving-result__lease-copy {
    font-size: clamp(28px, 2.15vw, 36px);
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .saving-mechanism {
    padding: 82px 30px 86px;
  }

  .saving-mechanism__title {
    gap: 18px;
    margin-bottom: 80px;
    padding-inline: 20px;
    font-size: clamp(42px, 6vw, 62px);
  }

  .saving-mechanism__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }

  .mechanism-step {
    padding: 24px 18px 26px;
  }

  .mechanism-step__heading {
    gap: 12px;
  }

  .mechanism-step__number {
    font-size: clamp(44px, 6vw, 62px);
  }

  .mechanism-step__title {
    font-size: clamp(19px, 2.6vw, 27px);
  }

  .mechanism-step__image {
    min-height: 250px;
  }

  .mechanism-step:not(:last-child)::after {
    top: 50%;
    right: -25px;
    bottom: auto;
    left: auto;
    width: 22px;
    height: 22px;
    border-right: 5px solid #073eae;
    border-bottom: 5px solid #073eae;
    transform: translateY(-50%) rotate(-45deg);
  }

  .saving-result {
    align-items: center;
    gap: 24px;
    margin-top: 62px;
    padding: 28px 30px;
  }

  .saving-result__aircon img {
    width: 100%;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .saving-mechanism {
    padding: 94px 50px 100px;
  }

  .saving-mechanism__title {
    gap: 22px;
    margin-bottom: 88px;
    padding: 0 10px 18px;
    border-bottom-width: 7px;
    font-size: clamp(50px, 4vw, 68px);
  }

  .saving-mechanism__title img {
    width: 70px;
  }

  .saving-mechanism__steps {
    width: min(100%, 1160px);
    margin-inline: auto;
    gap: 54px;
  }

  .mechanism-step {
    min-height: 330px;
    padding: 26px 20px 24px;
  }

  .mechanism-step__number {
    font-size: clamp(54px, 4vw, 68px);
  }

  .mechanism-step__title {
    font-size: clamp(1.25rem, 0.643rem + 0.88vw, 1.438rem);
  }

  .mechanism-step__image {
    min-height: 220px;
    margin-top: 12px;
  }

  .mechanism-step:not(:last-child)::after {
    right: -38px;
    width: 27px;
    height: 27px;
  }

  .saving-result__aircon img {
    width: 100%;
    max-width: 330px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .breaker-saving {
    padding: 70px 30px 78px;
    background-position: top right;
  }

  .breaker-saving__content {
    max-width: 840px;
  }

  .breaker-saving__series {
    margin-top: 36px;
  }

  .breaker-saving__title {
    font-size: clamp(72px, 10vw, 120px);
  }

  .breaker-saving__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
  }

  .breaker-saving__point-icon {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .breaker-saving__point-icon img {
    width: 100%;
    height: 100%;
  }

  .breaker-saving__point-icon img {
    width: 46px;
    height: 46px;
  }

  .breaker-saving__point-text {
    font-size: clamp(20px, 2.6vw, 32px);
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .breaker-saving {
    padding: 74px 50px 74px;
    background-position: right 0 top 0;
    background-size: contain;
  }

  .breaker-saving__content {
    max-width: 1440px;
  }

  .breaker-saving__label {
    padding: 18px 42px;
    font-size: clamp(34px, 2.5vw, 56px);
  }

  .breaker-saving__series {
    font-size: clamp(2.375rem, 0.587rem + 2.6vw, 3.188rem);
  }

  .breaker-saving__title {
    font-size: clamp(4.688rem, 1.25rem + 5vw, 6.25rem);
  }

  .breaker-saving__lead {
    margin-top: 34px;
    font-size: clamp(28px, 2vw, 44px);
  }

  .breaker-saving__points {
    width: min(100%, 1120px);
    gap: 14px;
    margin-top: 44px;
  }

  .breaker-saving__point {
    min-height: 152px;
    padding: 18px 22px;
    border-radius: 24px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .breaker-saving__point-icon {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .breaker-saving__point-icon img {
    width: 100%;
    height: 100%;
  }

  .breaker-saving__point-text {
    font-size: clamp(1.5rem, 0.287rem + 1.76vw, 1.875rem);
    line-height: 1.4;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .campaign {
    padding: 60px;
  }
  .product-lineup {
    padding: 82px 30px 88px;
  }

  .product-lineup__title {
    margin-bottom: 88px;
    font-size: clamp(42px, 6vw, 66px);
  }

  .lineup-box {
    padding: 58px 24px 30px;
  }

  .lineup-box__label {
    min-width: 190px;
    padding: 12px 28px;
    font-size: 26px;
  }

  .maker-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .maker-list__item {
    min-height: 100px;
  }

  .maker-list__item img {
    max-width: 210px;
    height: 66px;
  }

  .aircon-type-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 20px;
  }

  .aircon-type-card__image {
    height: 145px;
  }

  .aircon-type-card__name {
    font-size: 15px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .product-lineup {
    padding: 94px 50px 100px;
  }

  .product-lineup__title {
    margin-bottom: 108px;
    padding-bottom: 20px;
    border-bottom-width: 7px;
    font-size: clamp(54px, 4.3vw, 72px);
    text-align: left;
  }

  .lineup-box {
    width: min(100%, 1220px);
    margin-inline: auto;
    padding: 52px 24px 34px;
  }

  .lineup-box + .lineup-box {
    margin-top: 66px;
  }

  .lineup-box__label {
    min-width: 200px;
    font-size: 27px;
  }

  .maker-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .maker-list__item {
    min-height: 96px;
    padding: 12px 10px;
  }

  .maker-list__item img {
    max-width: 180px;
    height: 62px;
  }

  .lineup-box--type {
    padding: 76px 45px 42px;
  }

  .aircon-type-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 46px 24px;
  }

  .aircon-type-card__image {
    height: 145px;
  }

  .aircon-type-card__name {
    margin-top: 12px;
    font-size: clamp(14px, 1.05vw, 17px);
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .price-match {
    padding: 72px 30px 78px;
  }

  .price-match__badge {
    width: min(42%, 340px);
  }

  .price-match__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .price-match__point {
    align-items: flex-start;
    min-height: 150px;
    padding: 18px 16px;
  }

  .price-match__point-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    font-size: 34px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .price-match {
    padding: 78px 50px 82px;
  }

  .price-match__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 0;
  }

  .price-match__content {
    min-width: 0;
  }

  .price-match__badge {
    width: 100%;
    max-width: 360px;
    margin: 10px 0 0;
  }

  .price-match__subhead {
    font-size: clamp(44px, 3.4vw, 64px);
  }

  .price-match__lead {
    font-size: clamp(2rem, -0.888rem + 4.2vw, 3.313rem);
  }

  .price-match__title {
    font-size: clamp(3.75rem, -1.75rem + 8vw, 6.25rem);
  }

  .price-match__title::after {
    height: 14px;
  }

  .price-match__text {
    max-width: 980px;
    font-size: clamp(1.25rem, -0.772rem + 2.94vw, 1.875rem);
  }

  .price-match__points {
    grid-column: 1 / -1; /* 左右のカラムをぶち抜いて横いっぱいに広げます */
    width: 100%;
    max-width: 1200px; /* 3つのボックス全体の最大幅を制限します */
    margin-inline: auto; /* 左右の余白を自動調整して中央揃えにします */
  }

  .price-match__point {
    min-height: 132px;
    padding: 18px 18px 16px;
    flex-wrap: wrap;
  }

  .price-match__point-title {
    font-size: clamp(1.625rem, 0.8rem + 1.2vw, 2rem);
  }

  .price-match__point-text {
    font-size: clamp(1rem, 0.45rem + 0.8vw, 1.25rem);
  }
  .price-match__promise {
    grid-column: 1 / -1; /* 左右のカラムをぶち抜いて横いっぱいに広げます */
    width: 100%;
    max-width: 1100px; /* 青いカプセルボタンの最大幅を制限します */
    margin: 28px auto 0; /* 上に隙間を作り、左右は自動調整で中央揃えにします */
    font-size: clamp(28px, 2.15vw, 44px);
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .aircon-price {
    padding: 82px 0 70px;
  }

  .aircon-price__title {
    margin-bottom: 58px;
    font-size: clamp(42px, 6vw, 62px);
  }

  .aircon-slider__list {
    grid-auto-columns: calc((100% - 88px) / 2.15);
    gap: 18px;
    padding-inline: 44px;
  }

  .aircon-card__image-area {
    height: 220px;
  }

  .aircon-slider__arrow {
    width: 62px;
    height: 62px;
  }

  .aircon-slider__arrow--prev {
    left: 10px;
  }

  .aircon-slider__arrow--next {
    right: 10px;
  }

  .aircon-price__notes {
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    padding-inline: 42px;
    font-size: 13px;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1200px) {
  .aircon-price {
    padding: 92px 28px 76px;
  }

  .aircon-price__title {
    max-width: 930px;
    margin-bottom: 62px;
    padding-bottom: 17px;
    border-bottom-width: 7px;
    font-size: clamp(52px, 4.2vw, 68px);
  }

  .aircon-slider__viewport {
    overflow-x: auto;
  }

  .aircon-slider__list {
    grid-auto-columns: calc((100% - 64px) / 5);
    gap: 16px;
    padding: 0 0 10px;
  }

  .aircon-card__inner {
    padding: 14px 12px 22px;
  }

  .aircon-card__image-area {
    height: clamp(180px, 14vw, 230px);
  }

  .aircon-card__name {
    min-height: 82px;
    font-size: clamp(17px, 1.45vw, 23px);
  }

  .aircon-card__regular-price strong {
    font-size: clamp(30px, 2.6vw, 42px);
  }

  .aircon-card__monthly-heading {
    gap: 7px;
    font-size: clamp(13px, 1.15vw, 17px);
  }

  .aircon-card__monthly-price {
    font-size: clamp(42px, 3.8vw, 60px);
  }

  .aircon-slider__arrow {
    width: 66px;
    height: 66px;
    transform: translateY(-70%);
  }

  .aircon-slider__arrow:active {
    transform: translateY(-70%) scale(0.94);
  }

  .aircon-slider__arrow--prev {
    left: -33px;
  }

  .aircon-slider__arrow--next {
    right: -33px;
  }

  .aircon-price__notes {
    margin-top: 28px;
    padding-inline: 0;
    font-size: 13px;
  }

  .aircon-slider__list {
    grid-auto-columns: calc((100% - 64px) / 5);
    grid-auto-flow: column;
    gap: 16px;
    padding: 0 0 10px;
  }
}

/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  .early-consult {
    padding: 70px 30px 76px;
    background-position: center top;
    background-size: cover;
  }

  .early-consult__title {
    font-size: clamp(66px, 9vw, 96px);
  }

  .early-consult__status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .early-consult__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .early-consult__benefit {
    flex-direction: column;
    justify-content: center;
    padding: 14px 10px;
    text-align: center;
  }

  .early-consult__benefit-icon {
    margin: 0 0 8px;
  }

  .early-consult__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .early-consult__action--form {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   PC
========================================================= */

@media (min-width: 1100px) {
  .early-consult {
    padding: 85px 50px 78px;
    background-position: center top;
    background-size: cover;
  }

  .early-consult__aircon {
    display: block;
  }

  .early-consult__heading-area {
    grid-template-columns: minmax(600px, 1fr) 370px;
    align-items: center;
    gap: 30px;
  }

  .early-consult__title {
    font-size: clamp(72px, 6.6vw, 104px);
    text-align: left;
  }

  .early-consult__status {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .early-consult__message {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 40px;
    text-align: left;
  }

  .early-consult__lead {
    font-size: clamp(24px, 2.2vw, 34px);
  }

  .early-consult__description {
    font-size: clamp(16px, 1.35vw, 21px);
  }

  .early-consult__benefits,
  .early-consult__offer,
  .early-consult__actions {
    position: relative;
    z-index: 3;
  }

  .early-consult__benefits {
    width: 84%;
    margin-top: 32px;
  }

  .early-consult__benefit {
    min-height: 92px;
    flex-direction: row;
    padding: 10px 16px;
    text-align: left;
  }

  .early-consult__benefit-icon {
    margin: 0 13px 0 0;
  }

  .early-consult__benefit-text strong {
    font-size: clamp(19px, 1.65vw, 27px);
  }

  .early-consult__offer {
    width: 88%;
    margin-top: 35px;
    border-radius: 999px;
  }

  .early-consult__offer p {
    font-size: clamp(24px, 2.1vw, 34px);
  }

  .early-consult__offer > small {
    display: inline;
    margin-left: 12px;
  }

  .early-consult__actions {
    grid-template-columns: 1.05fr 0.78fr 1.08fr;
    gap: 12px;
    width: 100%;
    margin-top: 38px;
  }

  .early-consult__action--form {
    grid-column: auto;
  }

  .early-consult__action {
    min-height: 132px;
  }

  .early-consult__action-content strong {
    font-size: clamp(22px, 2vw, 34px);
    white-space: nowrap;
  }

  .u-pc {
    display: block;
  }
}
/* =========================================================
   タブレット
========================================================= */

@media (min-width: 768px) {
  :root {
    --header-height-mobile: 88px;
  }

  .site-header__inner {
    padding-inline: 28px;
  }

  .site-header__logo {
    width: 340px;
  }

  .menu-button {
    width: 54px;
    height: 54px;
  }

  .mobile-menu__inner {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .mobile-menu__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   PC (1200px以上)
========================================================= */
@media (min-width: 1200px) {
  html {
    scroll-padding-top: 116px;
  }

  body.is-menu-open {
    overflow: visible;
  }

  /* 以下の部分を修正 */
  .site-header {
    position: sticky; /* 画面のスクロールに合わせて貼り付く設定です */
    top: 0; /* 画面の一番上（0pxの位置）に固定します */
    z-index: 1000; /* 他の要素の下に隠れないように手前に出します */
  }

  .site-header__inner {
    display: grid;
    grid-template-columns:
      minmax(250px, 390px)
      minmax(470px, 1fr)
      auto
      auto;
    gap: clamp(18px, 1.6vw, 34px);
    min-height: 100px;
    padding: 0 14px 0 clamp(24px, 2.5vw, 52px);
  }

  .site-header__logo {
    width: 100%;
    max-width: 390px;
  }

  /* ナビ */

  .global-nav {
    display: block;
    min-width: 0;
  }

  .global-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 1.8vw, 40px);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav__link {
    position: relative;
    display: block;
    padding-block: 42px;
    font-size: clamp(13px, 1.05vw, 18px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .global-nav__link::after {
    position: absolute;
    right: 0;
    bottom: 31px;
    left: 0;
    width: 0;
    height: 3px;
    margin-inline: auto;
    border-radius: 999px;
    background: var(--color-primary);
    content: "";
    transition: width var(--transition-base);
  }

  .global-nav__link:hover::after,
  .global-nav__link:focus-visible::after {
    width: 100%;
  }

  /* 電話番号 */

  .header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: var(--color-primary-light);
    line-height: 1;
    white-space: nowrap;
  }

  .header-phone__main {
    display: flex;
    align-items: center;
  }

  .header-phone__icon {
    width: clamp(38px, 2.8vw, 56px);
    margin-right: 5px;
  }

  .header-phone__number {
    font-size: clamp(31px, 2.55vw, 54px);
    font-weight: 700;
    letter-spacing: -0.045em;
  }

  .header-phone__sub {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding-right: 4px;
  }

  .header-phone__badge {
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: clamp(10px, 0.8vw, 14px);
    font-weight: 500;
    background: var(--color-primary-light);
  }

  .header-phone__hours {
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 500;
  }

  /* CTA */

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, clamp(165px, 11vw, 225px));
    gap: 7px;
    align-self: stretch;
  }

  .header-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 7px 12px;
    border-radius: 14px;
    color: var(--color-white);
    line-height: 1.15;
    text-align: center;
    transition:
      filter var(--transition-base),
      transform var(--transition-base);
  }

  .header-cta:hover,
  .header-cta:focus-visible {
    filter: brightness(1.07);
  }

  .header-cta:active {
    transform: scale(0.98);
  }

  .header-cta--line {
    background: var(--color-line);
  }

  .header-cta--form {
    background: var(--color-form);
  }

  .header-cta__icon--line {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin-bottom: 3px;
    border-radius: 50%;
    color: var(--color-line);
    font-size: 8px;
    font-weight: 700;
    background: var(--color-white);
  }

  .header-cta__mail-icon {
    width: 39px;
    height: 29px;
    margin-bottom: 3px;
  }

  .header-cta__text {
    font-size: clamp(15px, 1.15vw, 23px);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .header-cta__reception {
    width: 100%;
    margin-top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    color: currentColor;
    font-size: clamp(11px, 0.85vw, 15px);
    font-weight: 700;
    background: var(--color-white);
  }

  .header-cta--line .header-cta__reception {
    color: #008c39;
  }

  .header-cta--form .header-cta__reception {
    color: #f05e00;
  }

  .menu-button,
  .mobile-menu,
  .menu-overlay {
    display: none;
  }
}

/* =========================================================
   大型PC
========================================================= */

@media (min-width: 1600px) {
  .global-nav__link {
    padding-block: 61px;
  }

  .global-nav__link::after {
    bottom: 45px;
  }

  .header-cta {
    border-radius: 15px;
  }
}

/* =========================================================
   キーボード操作
========================================================= */

:focus-visible {
  outline: 3px solid #ffd000;
  outline-offset: 3px;
}

/* =========================================================
   動きを減らす設定
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   ヘッダー横幅調整
   右側CTAの画面外はみ出し対策
========================================================= */

@media (min-width: 1200px) {
  .site-header__inner {
    grid-template-columns:
      minmax(210px, 0.85fr)
      minmax(390px, 1.5fr)
      minmax(190px, 0.8fr)
      minmax(270px, 1fr);

    gap: clamp(8px, 0.75vw, 14px);
    padding-right: 10px;
    padding-left: clamp(18px, 1.5vw, 28px);
  }

  /* ロゴ */
  .site-header__logo {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }

  /* ナビ */
  .global-nav {
    min-width: 0;
  }

  .global-nav__list {
    gap: clamp(12px, 1.25vw, 24px);
  }

  .global-nav__link {
    padding-block: 42px;
    font-size: clamp(12px, 0.95vw, 16px);
    letter-spacing: 0;
  }

  /* 電話番号 */
  .header-phone {
    min-width: 0;
  }

  .header-phone__icon {
    width: clamp(32px, 2.2vw, 44px);
  }

  .header-phone__number {
    font-size: clamp(26px, 2vw, 40px);
  }

  .header-phone__badge {
    padding: 4px 9px;
    font-size: clamp(9px, 0.7vw, 12px);
  }

  .header-phone__hours {
    font-size: clamp(11px, 0.85vw, 15px);
  }

  /* 右側ボタン */
  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    gap: 7px;
  }

  .header-cta {
    width: 100%;
    min-width: 0;
    padding: 7px 8px;
  }

  .header-cta__text {
    font-size: clamp(13px, 1vw, 18px);
    letter-spacing: 0;
    white-space: normal;
  }

  .header-cta__reception {
    margin-top: 6px;
    padding: 4px 5px;
    font-size: clamp(9px, 0.7vw, 12px);
  }

  .header-cta__icon--line {
    width: 24px;
    height: 24px;
  }

  .header-cta__mail-icon {
    width: 34px;
    height: 25px;
  }
}

/* =========================================================
   大型PC
========================================================= */

@media (min-width: 1600px) {
  .site-header__inner {
    grid-template-columns:
      minmax(300px, 360px)
      minmax(480px, 1fr)
      minmax(240px, 280px)
      minmax(340px, 400px);

    gap: 12px;
    min-height: 120px;
    padding-right: 12px;
    padding-left: 28px;
  }

  .site-header__logo {
    max-width: 360px;
  }

  .global-nav__list {
    gap: clamp(18px, 1.35vw, 28px);
  }

  .global-nav__link {
    padding-block: 52px;
    font-size: clamp(14px, 1vw, 17px);
  }

  .global-nav__link::after {
    bottom: 39px;
  }

  .header-phone__number {
    font-size: clamp(35px, 2.2vw, 44px);
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-cta__text {
    font-size: clamp(16px, 1.05vw, 19px);
  }
}

/* =========================================================
   早めの相談セクション 添付デザイン寄せ
========================================================= */
.early-consult__title-orange,
.early-consult__title-blue {
  /* ★修正箇所：8pxを10pxに、14pxを16pxになど、数値を増やしました */
  -webkit-text-stroke: clamp(10px, 1.5vw, 16px) #fff;
  paint-order: stroke fill;
  text-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.early-consult__title-small {
  /* ★修正箇所：「が」などの小さい文字もバランス良く太くします */
  -webkit-text-stroke: clamp(7px, 1vw, 11px) #fff;
  paint-order: stroke fill;
  text-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1100px) {
  .early-consult {
    padding: 92px 100px 96px;
  }

  .early-consult__inner {
    width: min(100%, 1440px);
  }

  .early-consult__heading-area {
    grid-template-columns: minmax(0, 1fr) clamp(455px, 25.6vw, 500px);
    gap: 8px;
    align-items: center;
  }

  .early-consult__title {
    font-size: clamp(3.875rem, -2.725rem + 9.6vw, 6.875rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .early-consult__title-blue {
    margin-top: 14px;
  }

  .early-consult__status {
    gap: 22px;
    transform: translateX(-20px);
  }

  .early-consult__status-item {
    padding: 16px 38px 16px 30px;
    clip-path: polygon(
      0 0,
      calc(100% - 28px) 0,
      100% 50%,
      calc(100% - 28px) 100%,
      0 100%,
      18px 50%
    );
    font-size: clamp(31px, 2.05vw, 39px);
    font-weight: 700;
  }

  .early-consult__status-icon {
    width: 52px;
    margin-right: 14px;
    flex-basis: 52px;
  }

  .early-consult__message {
    max-width: 980px;
    margin-top: 42px;
  }

  .early-consult__benefits {
    width: min(100%, 1408px);
    gap: 16px;
    margin-top: 36px;
  }

  .early-consult__benefit {
    min-height: 112px;
    padding: 12px 22px;
    border-radius: 8px;
  }

  .early-consult__benefit-icon {
    width: 72px;
    height: 72px;
    margin-right: 18px;
    flex-basis: 72px;
  }

  .early-consult__benefit-icon img {
    width: 72px;
    height: 72px;
  }

  .early-consult__offer {
    width: min(100%, 1440px);
    margin-top: 38px;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .early-consult__offer-main,
  .early-consult__offer p {
    flex: 0 1 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    font-size: clamp(31px, 2.35vw, 36px);
    letter-spacing: 0;
  }

  .early-consult__offer-separator {
    margin-inline: 3px;
    font-size: 1.12em;
  }

  .early-consult__offer-discount {
    gap: 6px;
  }

  .early-consult__offer-discount em {
    font-size: 1.3em;
  }

  .early-consult__offer-discount > span {
    font-size: 1.05em;
  }

  .early-consult__offer-note,
  .early-consult__offer > small {
    font-size: clamp(14px, 1.1vw, 16px);
  }

  /* =========================================================
     早めの相談セクション CTAボタンのはみ出し修正
  ========================================================= */

  .early-consult__actions {
    left: auto;
    /* 固定の比率（1.02fr...）を解除し、画面幅に合わせて均等に縮むように変更します */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 1440px;
    gap: 12px; /* 隙間を少し詰めて窮屈さを解消します */
    margin: 48px auto 0;
    transform: none;
  }

  .early-consult__action {
    min-height: 130px; /* 高さを少し調整してバランスを取ります */
    padding: 15px 40px 15px 15px; /* 左右の無駄な余白を削り、テキストエリアを広げます */
    border-radius: 22px;
  }

  .early-consult__action-icon {
    /* アイコンも画面幅に合わせて柔軟に縮小するように変更します */
    width: clamp(48px, 4.5vw, 72px);
    height: clamp(48px, 4.5vw, 72px);
    margin-right: clamp(10px, 1.2vw, 18px);
    flex-basis: auto;
  }

  .early-consult__action-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .early-consult__action-content {
    min-width: 0; /* フレックスボックス内でのテキストはみ出しを防ぐ必須コードです */
  }

  .early-consult__action-content > small {
    font-size: clamp(13px, 1.2vw, 20px);
  }

  .early-consult__action-content strong {
    /* はみ出しの最大の原因（最小サイズ30px）を修正！柔軟なサイズに変更します */
    font-size: clamp(17px, 1.8vw, 36px);
    white-space: normal; /* 画面が狭いときは安全に折り返しを許可します */
    line-height: 1.25;
  }

  .early-consult__action-reception {
    /* はみ出しの原因その2：固定幅（220px）を解除します */
    min-width: auto;
    width: 100%;
    max-width: 220px;
    margin-top: 8px;
    padding: 4px 12px;
    font-size: clamp(12px, 1.1vw, 17px);
  }

  .early-consult__action-arrow {
    right: 14px;
  }

  .early-consult__action-arrow svg {
    /* 右端の矢印アイコンも柔軟にスケールさせます */
    width: clamp(24px, 2.5vw, 40px);
    height: auto;
  }

  .early-consult__action-icon--line {
    font-size: 15px;
  }

  .early-consult__action-content > small {
    font-size: 20px;
  }

  .early-consult__action-content strong {
    font-size: clamp(30px, 2vw, 38px);
  }

  .early-consult__action-reception {
    margin-top: 10px;
    padding: 4px 18px;
    font-size: 17px;
  }
}

/* =========================================================
   【修正版】FAQ下部 お問い合わせエリアの画像デザイン忠実再現
========================================================= */

/* --- 1. 全体の外枠（水色のフチと角丸） --- */
.faq-contact {
  display: flex;
  flex-direction: column;
  border: 3px solid #b7d4ff; /* 画像のような淡い青の枠線 */
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin-top: 60px;
}

@media (min-width: 1100px) {
  .faq-contact {
    flex-direction: row;
    align-items: stretch;
    min-height: 280px;
  }
  .faq-contact__content {
    flex: 1; /* 左側（テキストとボタン）をいっぱいに広げる */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
  }
  /* --- 女性の画像エリア（実寸 401 x 236 に合わせる） --- */
  .faq-contact__visual {
    width: 401px; /* お姉さんの画像の実際の横幅にピッタリ合わせます */
    flex-shrink: 0; /* 画面が狭くなっても、この画像幅（401px）は絶対に縮めないという指示です */
    margin: 0;
  }

  .faq-contact__visual img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 401 / 236; /* 教えていただいた実際の縦横比を固定します */
    object-fit: cover; /* 枠に対して余白なく綺麗に埋めます */
    object-position: left center; /* 画像の左側（人物の顔寄り）を基準に配置します */
  }
}

/* --- 2. 見出しエリア --- */
.faq-contact__heading {
  text-align: center;
  margin-bottom: 24px;
}
.faq-contact__title {
  color: #073eb5;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0 0 8px;
}
.faq-contact__text {
  color: #111;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  margin: 0;
}

/* --- 3. ボタンを並べるグリッド（均等な3列） --- */
.faq-contact__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .faq-contact__actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   FAQ下部 お問い合わせボタン（画像配置 ＆ 折り返し対応）
========================================================= */

/* --- 1. ボタンを包む大枠の設定 --- */
.faq-contact__actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

/* --- 2. 各ボタン（リンク）の共通設定 --- */
.faq-contact-button {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  padding: 0 !important;
  min-height: auto !important;
  background: transparent !important;
  max-height: 70px;
}

/* マウスを乗せた時に少しフワッと浮くアニメーション */
.faq-contact-button:hover,
.faq-contact-button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* =========================================================
   ★ここからが魔法のコード！
   各画像の実サイズに合わせて、横幅の比率と縦横比を個別に設定します
========================================================= */

/* 1つ目：電話ボタン（254×67） */
.faq-contact-button:nth-child(1) {
  /* 横幅の伸びる比率を254にし、254px以下になれば折り返します */
  flex: 254 1 254px;
  aspect-ratio: 254 / 67; /* 縦横比を完璧に固定 */
}

/* 2つ目：LINEボタン（189×67） */
.faq-contact-button:nth-child(2) {
  flex: 189 1 189px;
  aspect-ratio: 189 / 67;
}

/* 3つ目：フォームボタン（266×67） */
.faq-contact-button:nth-child(3) {
  flex: 266 1 266px;
  aspect-ratio: 266 / 67;
}

/* --- 3. 画像自体の設定 --- */
.faq-contact-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 枠にピッタリと敷き詰めます */
}
/* =========================================================
   固定ページ (page.php) 用スタイル
========================================================= */

/* --- ページヘッダー（タイトル部分） --- */
.page-header {
  /* メインカラーの青色グラデーションを背景にします */
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary)
  );
  color: var(--color-white);
  text-align: center;
  padding: 60px 16px; /* スマホ用の上下余白 */
}

.page-title {
  margin: 0;
  /* スマホからPCまで、画面幅に合わせて文字サイズが滑らかに変化します */
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- ページ本文（コンテンツ部分） --- */
.page-content {
  padding: 50px 16px 80px; /* スマホ用の上下余白 */
  background: #fff;
}

.page-content__inner {
  /* 横幅の最大値を900pxに制限し、中央寄せにして読みやすくします */
  width: min(100%, 900px);
  margin-inline: auto;
  color: var(--color-text);
  line-height: 1.8;
  font-size: clamp(15px, 2vw, 16px);
}

/* --- 本文内の見出しや段落の基本デザイン --- */

/* 見出し2（大見出し）のデザイン */
.page-content__inner h2 {
  margin: 60px 0 24px;
  padding: 12px 16px;
  background: #f3f9fd; /* 薄い青の背景 */
  border-left: 5px solid var(--color-primary); /* 左に濃い青の線 */
  color: var(--color-primary);
  font-size: clamp(20px, 4vw, 28px);
}

/* 見出し3（中見出し）のデザイン */
.page-content__inner h3 {
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border); /* 下線 */
  color: var(--color-primary);
  font-size: clamp(18px, 3vw, 22px);
}

/* 段落（テキスト）の余白 */
.page-content__inner p {
  margin-bottom: 24px;
}

/* リンク文字のデザイン */
.page-content__inner a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content__inner a:hover {
  text-decoration: none;
}

/* --- タブレット・PC用の余白調整 --- */
@media (min-width: 768px) {
  .page-header {
    padding: 100px 30px; /* PCではヘッダーの余白を大きくしてゆったりと */
  }
  .page-content {
    padding: 80px 30px 120px; /* 本文エリアもゆったりさせます */
  }
}
