@charset "UTF-8";
/* ===========================================================
   住宅設備ワーヌヤー トップページ
   ビルドツールなしの素のCSS。上から順に、
     1. 変数・土台
     2. 共通パーツ（見出し・ボタン・チップ・山型の区切り・カルーセル）
     3. ヘッダー／ドロワー
     4. 各セクション（上から出てくる順）
     5. フッター・追従パーツ
     6. アニメーション
     7. レスポンシブ
   の並びで書いている。
   =========================================================== */

/* -----------------------------------------------------------
   1. 変数・土台
   ----------------------------------------------------------- */
:root {
  /* 暖色（オレンジ）系のパレット。
     変数名は作りはじめの寒色のままだが、値はすべてオレンジ系に入れ替えてある。
     色を変えたいときはこのブロックだけを触れば全ページに反映される。 */
  --blue: #e8620d;          /* 基調のオレンジ。見出し・ヘッダーバー・ボタン */
  --blue-deep: #b3480a;     /* 山型の区切りの濃いほう */
  --blue-dark: #c4520a;
  --sky: #f9a825;           /* 山型の区切りの薄いほう・協力会社ボタン（ゴールド） */
  --sky-pale: #fdeeda;      /* WORKS の背景（うすいクリーム） */
  --cyan: #fdf3e5;          /* AREA の背景 */
  --tint-blue: #fde8d3;     /* POINT カード（オレンジ寄り）・チップ */
  --tint-green: #fdf3cf;    /* POINT カード（黄寄り） */
  --yellow: #ffd400;        /* ヒーローとサービスの背景（オレンジに寄せた黄） */
  --yellow-deep: #f0c400;
  --green: #c65a2b;         /* 会社概要ボタン・FAQのAアイコン（テラコッタ） */
  --green-vivid: #c2410c;   /* 強調の見出し文字（バーントオレンジ） */
  --green-line: #06c755;    /* LINE ボタン。ブランド色なので変えない */
  --ok: #4f9d2f;            /* BEFORE/AFTER のAFTERだけは緑を残す（意味が伝わるため） */
  --orange: #d7263d;        /* 緊急駆けつけバッジ。緊急なので赤に寄せる */
  --red: #d7263d;
  --ink: #2a231e;
  --ink-soft: #6b5f57;
  --line: #ead9c8;
  --header-h: 78px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* 欧文の見出し・数字 */
.shead__en,
.band__type,
.hero__badge b,
.point__num,
.ba__tag,
.contact__lead b,
.wcard__foot time,
.vcard__foot time {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* インラインSVGのシンボル置き場。表示はしない */
.u-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* アイコンの既定サイズ */
svg { width: 1em; height: 1em; }

/* -----------------------------------------------------------
   2. 共通パーツ
   ----------------------------------------------------------- */

/* ロゴのシンボル。4分割を45度まわしてダイヤ型に見せる。
   まわすと見かけが 1.41 倍になるので、scale で元の箱に収まる大きさへ戻す。 */
.squares {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .14em;
  width: 1em;
  vertical-align: -.12em;
  transform: rotate(45deg) scale(.74);
}
.squares i { display: block; aspect-ratio: 1; }
.squares i:nth-child(1),
.squares i:nth-child(4) { background: var(--blue); }
.squares i:nth-child(2),
.squares i:nth-child(3) { background: var(--sky); }

/* セクション見出し（欧文＋和文） */
.shead { text-align: center; }
.shead__en {
  display: block;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
}
.shead__ja {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: .06em;
}
.shead__ja .squares { width: 15px; }
.shead--light .shead__en,
.shead--light .shead__ja { color: #fff; }
.shead--light .squares i:nth-child(1),
.shead--light .squares i:nth-child(4) { background: #fff; }
.shead--light .squares i:nth-child(2),
.shead--light .squares i:nth-child(3) { background: #ffe0a8; }

/* 白い「詳しく見る」ボタン */
.morebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 250px;
  padding: 18px 26px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .10);
  font-size: 15px;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.morebtn i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  transition: transform .3s var(--ease);
}
.morebtn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0, 0, 0, .16); }
.morebtn:hover i { transform: translateX(3px); }
.morebtn--sm { min-width: 200px; padding: 13px 20px; gap: 18px; font-size: 14px; border: 1px solid var(--line); }

/* 大きい2色ボタン（協力会社募集・会社概要） */
.bigbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.bigbtn i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.bigbtn:hover { transform: translateY(-4px); filter: brightness(1.06); }
.bigbtn:hover i { transform: translateX(3px); }
.bigbtn--sky { background: var(--sky); }
.bigbtn--green { background: var(--green); }

/* 横長のメール／LINEボタン */
.widebtn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 700;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.widebtn--mail { background: var(--blue); }
.widebtn--line { background: var(--green-line); }
.widebtn__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
}
.widebtn--mail .widebtn__icon { color: var(--blue); }
.widebtn--line .widebtn__icon { color: var(--green-line); }
.widebtn__label { flex: 1; }
.widebtn__label b { color: #ffe082; font-weight: 700; }
.widebtn--line .widebtn__label b { color: #fff351; }
.widebtn__arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: none;
  border: 1.5px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.widebtn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.widebtn:hover .widebtn__arrow { transform: translateX(3px); }

/* チェック付きのチップ（よくある修理内容） */
.chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 5px;
  background: var(--tint-blue);
  font-size: 14px;
  font-weight: 500;
}
.chips li svg { flex: none; font-size: 16px; color: var(--blue); }

/* 事例カードのタグ */
.tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 14px 18px; }
.tags li {
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 11.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* フリーダイヤルのマーク */
.freedial { display: inline-block; width: 1.55em; vertical-align: -.16em; color: #e8620d; }
.freedial svg { width: 100%; height: auto; }

/* 山型の区切り。上下のセクション色を変数で渡す */
.chevron {
  position: relative;
  height: clamp(46px, 6.4vw, 118px);
  background: var(--chev-next, #fff);
  overflow: hidden;
}
.chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--chev-prev, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 50% 0, 0 40%);
}
.chevron__a,
.chevron__b { position: absolute; inset: 0; display: block; }
.chevron__a {
  background: var(--blue-deep);
  clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 62%, 50% 22%, 0 62%);
}
.chevron__b {
  background: var(--sky);
  clip-path: polygon(0 62%, 50% 22%, 100% 62%, 100% 84%, 50% 44%, 0 84%);
}
/* サービス（黄色）→ 施工事例（水色） */
.chevron--service { --chev-prev: var(--yellow); --chev-next: var(--sky-pale); }

/* カルーセル（スクロールスナップ＋矢印） */
.carousel { margin-top: 34px; }
.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* 左端はコンテナに揃え、右は画面の端まで流して切れて見えるようにする */
  margin-right: calc(50% - 50vw);
  padding-right: 24px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track { display: flex; gap: 24px; padding-block: 6px 12px; }
.carousel__item { flex: 0 0 clamp(280px, 32%, 380px); scroll-snap-align: start; }
.carousel__nav { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
.carousel__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
  font-size: 20px;
  color: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.carousel__btn:hover { background: var(--blue); color: #fff; transform: scale(1.08); }
.carousel__btn[data-carousel-prev] svg { transform: scaleX(-1); }
.carousel__btn[disabled] { opacity: .35; cursor: default; }
.carousel__btn[disabled]:hover { background: #fff; color: var(--ink); transform: none; }

/* -----------------------------------------------------------
   3. ヘッダー／ドロワー
   ----------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  background: #fff;
  transition: height .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-fixed { box-shadow: 0 2px 14px rgba(0, 0, 0, .12); }

.header__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding-left: 18px;
}
.header__logo { display: flex; align-items: center; margin-right: auto; }
.header__logo img { width: clamp(132px, 11vw, 168px); height: auto; }

.header__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 5px 16px 5px 0;
}

.header__top { display: flex; align-items: center; gap: 16px; }
.header__sub { display: flex; gap: 14px; font-size: 11.5px; color: var(--ink-soft); }
.header__sub a { transition: color .25s; }
.header__sub a:hover { color: var(--blue); }

.header__tel { text-align: left; }
.header__tel-num {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(15px, 1.45vw, 21px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
}
.header__tel-time { font-size: 10px; color: var(--ink-soft); line-height: 1.3; }

/* 緊急駆けつけバッジ */
.emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px 3px 4px;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  transition: filter .25s, transform .25s var(--ease);
}
.emergency:hover { filter: brightness(1.08); transform: translateY(-2px); }
.emergency__face {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-size: 17px;
  overflow: hidden;
}
.emergency__text { display: block; line-height: 1.25; }
.emergency__lead {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
}
.emergency__lead::before { content: "＼"; }
.emergency__lead::after { content: "／"; }
.emergency__lead small { font-size: 9.5px; }
.emergency__main { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .01em; }

.gnav__list { display: flex; gap: clamp(12px, 1.5vw, 24px); }
.gnav__list a {
  position: relative;
  font-size: clamp(11.5px, 1vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.gnav__list a:hover::after { transform: scaleX(1); }

/* 右端の縦長CTA */
.header__cta { display: flex; flex: none; }
.ctabtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: clamp(78px, 7.4vw, 102px);
  padding: 6px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  transition: filter .25s;
}
.ctabtn:hover { filter: brightness(1.1); }
.ctabtn--mail { background: var(--blue); }
.ctabtn--line { background: var(--green-line); }
.ctabtn__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
}
.ctabtn--mail .ctabtn__icon { color: var(--blue); }
.ctabtn--line .ctabtn__icon { color: var(--green-line); }
.ctabtn__label { font-size: 10px; font-weight: 700; line-height: 1.25; }
.ctabtn__label b { font-size: 12px; color: #ffe082; }
.ctabtn--line .ctabtn__label b { color: #fff351; }

.hamburger { display: none; }

/* ドロワー（SP） */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 auto;
  z-index: 58;
  width: min(320px, 84vw);
  padding: 26px 24px 40px;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__list li + li { border-top: 1px solid var(--line); }
.drawer__list a { display: block; padding: 15px 4px; font-size: 15px; font-weight: 700; }
.drawer__foot { margin-top: 26px; padding-top: 20px; border-top: 2px solid var(--blue); }
.drawer__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}
.drawer__time { font-size: 12px; color: var(--ink-soft); }
.drawer-veil {
  position: fixed;
  inset: 0;
  z-index: 57;
  background: rgba(10, 20, 30, .45);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.drawer-veil.is-open { opacity: 1; }

/* -----------------------------------------------------------
   4-1. ヒーロー
   ----------------------------------------------------------- */
/* ファーストビューを埋める。中身は縦方向に中央寄せ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 2vh, 30px);
  /* ファーストビューぶんの高さ。極端に縦長の画面では伸ばしすぎない */
  min-height: calc(100vh - var(--header-h));
  min-height: min(calc(100svh - var(--header-h)), 1000px);
  padding: clamp(14px, 2.2vh, 30px) 0 clamp(16px, 2.8vh, 40px);
  background: var(--yellow);
  overflow: hidden;
}
/* 斜めのストライプ。動かすと目が疲れるので、模様として止めたまま置いている。 */
.hero__stripe {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: repeating-linear-gradient(115deg,
    rgba(255, 255, 255, .30) 0 16px,
    rgba(255, 255, 255, 0) 16px 42px);
}
/* 参考デザインの比率に合わせている。
   家型の枠は画面幅の 43.5%、左端が 20.5% の位置。文字サイズもすべて画面幅基準。 */
/* 家型の枠はファーストビューの余りぶんだけ縦に伸びる。
   文字は幅と高さの小さいほうに合わせて、横長画面でもはみ出さないようにする。 */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1560px;
  min-height: 300px;
  max-height: min(720px, 62vh);
  margin-inline: auto;
}
.hero__frame {
  position: absolute;
  left: 15%;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: visible;
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: 55%;
  margin-left: 15%;
  padding: clamp(34px, 8vh, 100px) 1.6% clamp(20px, 3.2vh, 50px);
  text-align: center;
}
.hero__title { line-height: 1.2; }
.hero__title-1 {
  display: block;
  font-size: clamp(13px, min(1.85vw, 2.9vh), 27px);
  font-weight: 900;
}
.hero__title-1 em { font-style: normal; color: var(--green-vivid); }
.hero__title-2 {
  display: block;
  margin: 6px 0 4px;
  font-size: clamp(24px, min(3.5vw, 5.5vh), 52px);
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--blue);
  -webkit-text-stroke: 8px #fff;
  paint-order: stroke fill;
}
.hero__title-3 {
  display: block;
  font-size: clamp(16px, min(2.25vw, 3.5vh), 34px);
  font-weight: 900;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  margin-top: clamp(16px, 2.4vw, 32px);
}
.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: clamp(76px, min(9.6vw, 15vh), 152px);
  padding: clamp(8px, 1.4vh, 22px) clamp(8px, 1.1vw, 20px);
  background: var(--blue);
  color: #fff;
  line-height: 1.15;
  transform: skewX(-9deg);
}
.hero__badge > * { transform: skewX(9deg); }
.hero__badge b {
  font-size: clamp(24px, min(4vw, 6.3vh), 62px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.hero__badge b small { font-size: .5em; }
.hero__badge span { font-size: clamp(10px, min(1.35vw, 2.1vh), 20px); font-weight: 700; }
.hero__badge--wide b {
  font-size: clamp(16px, min(2.6vw, 4.1vh), 40px);
  color: #fff;
  line-height: 1.12;
}

/* 右側の人物とスナップ。高さは家型の枠に合わせている。
   人物には position を与えて z-index を効かせ、スナップより前に出す。
   （position を持たないままだと、絶対配置のスナップに必ず隠れてしまう） */
.hero__visual {
  position: absolute;
  left: 62%;
  bottom: -4%;
  width: 34%;
  height: 114%;
  z-index: 4;
  pointer-events: none;
}
.hero__staff {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: 100%;
  margin-right: auto;
  object-fit: contain;
}
.hero__snap {
  position: absolute;
  z-index: 1;
  width: 44%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
}
.hero__snap--1 { right: -6%; top: -4%; rotate: 4deg; }
.hero__snap--2 { right: -12%; top: 26%; rotate: -3deg; }
.hero__snap--3 { right: -4%; top: 58%; rotate: 5deg; }
.hero__snap--4 {
  position: absolute;
  left: 10%;
  top: 14%;
  z-index: 4;
  width: 11.5%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
  rotate: -6deg;
}

.hero__emergency {
  position: absolute;
  left: 76%;
  bottom: 2%;
  z-index: 5;
  display: grid;
  place-content: center;
  gap: 2px;
  width: clamp(96px, 9.2vw, 144px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
/* 外側に広がる輪。box-shadow を動かすと毎フレーム再描画になるので、
   擬似要素を transform と opacity だけで動かす。 */
.hero__emergency::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(245, 130, 31, .6);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseRing 2.6s ease-out infinite;
}
.hero__emergency span { font-size: clamp(11px, 1.05vw, 15px); font-weight: 700; }
.hero__emergency span small { font-size: .72em; }
.hero__emergency b { font-size: clamp(13px, 1.35vw, 20px); font-weight: 800; }
.hero__emergency-arrow {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-size: 11px;
}

/* ヒーロー下のカテゴリ導線 */
.hero__cats {
  position: relative;
  z-index: 5;
  display: flex;
  gap: clamp(10px, 1.8vw, 28px);
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding-left: 15%;
}
.hero__cats a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 700;
  line-height: 1.3;
  transition: color .25s;
}
.hero__cats img {
  width: clamp(38px, 3.4vw, 48px);
  height: clamp(38px, 3.4vw, 48px);
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .3s var(--ease);
}
.hero__cats i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: none;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  transition: background .25s, color .25s;
}
.hero__cats a:hover img { transform: scale(1.08); }
.hero__cats a:hover i { background: var(--ink); color: var(--yellow); }

/* -----------------------------------------------------------
   4-2. 取り扱いメーカー
   ----------------------------------------------------------- */
.makers {
  padding: clamp(40px, 5vw, 72px) 0 clamp(46px, 5.5vw, 82px);
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.makers__title {
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 900;
}
.makers__title em { font-style: normal; color: var(--yellow); }
.makers__panel {
  margin-top: clamp(20px, 2.6vw, 34px);
  padding: clamp(22px, 3vw, 42px) clamp(18px, 3vw, 44px);
  border-radius: 22px;
  background: #fff;
}
.makers__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.8vw, 26px);
  place-items: center;
}
.makers__list img { width: 100%; max-width: 190px; height: auto; }
.makers__list li {
  width: 100%;
}
.makers__brand {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid #f3e3d3;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.25vw, 19px);
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.2;
}
.makers__note {
  margin-top: clamp(18px, 2.4vw, 32px);
  font-size: clamp(15px, 1.7vw, 23px);
  font-weight: 700;
}

/* -----------------------------------------------------------
   4-3. お悩み（TROUBLE SHOOTING）
   ----------------------------------------------------------- */
.trouble {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 clamp(30px, 4vw, 60px);
  background: #fff;
  overflow: hidden;
}
/* 背景に散らす淡い家型 */
.trouble__pattern {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='360' viewBox='0 0 420 360'><g fill='%23fdf3e8'><path d='M60 40l58 46v96H2V86z'/><path d='M250 8l50 40v82h-100V48z'/><path d='M370 130l46 36v74h-92v-74z'/><path d='M150 200l54 42v90H96v-90z'/><path d='M296 232l42 33v67h-84v-67z'/><path d='M10 250l40 32v66H-30v-66z'/></g></svg>") repeat;
  background-size: clamp(320px, 34vw, 540px) auto;
  pointer-events: none;
}
.trouble__ghost {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(60px, 12vw, 170px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: .02em;
  color: #fdf3ea;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.trouble .container { position: relative; z-index: 1; }

/* 家型の白いカード */
.trouble__card {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(46px, 6vw, 96px) clamp(20px, 4vw, 70px) clamp(30px, 4vw, 58px);
}
.trouble__card::before,
.trouble__card::after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 100% 21%, 100% 100%, 0 100%, 0 21%);
}
.trouble__card::before { inset: 0; background: var(--blue); }
.trouble__card::after { inset: 5px; background: #fff; }
.trouble__card > * { position: relative; z-index: 1; }

.trouble__title { position: relative; text-align: center; line-height: 1.2; }
.trouble__title-1 {
  display: inline-block;
  position: relative;
  padding: 0 26px;
  font-size: clamp(20px, 2.7vw, 38px);
  font-weight: 900;
  color: #8a3f12;
  background: linear-gradient(transparent 62%, #fbe6d5 0);
}
/* 見出しを囲む斜めの線 */
.trouble__title-1::before,
.trouble__title-1::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 34px;
  border-radius: 2px;
  background: var(--blue);
}
.trouble__title-1::before { left: 0; transform: rotate(-20deg); }
.trouble__title-1::after { right: 0; background: var(--red); transform: rotate(20deg); }
.trouble__title-2 {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3.1vw, 44px);
  font-weight: 900;
  color: #8a3f12;
}
.trouble__title-2 em { font-style: normal; color: var(--red); }
.trouble__title-2 b { color: var(--blue); }
.trouble__scribble {
  position: absolute;
  left: 50%;
  top: -34px;
  width: 42px;
  height: 30px;
  transform: translateX(-160px);
  border: 3px solid #c2410c;
  border-radius: 50%;
  border-right-color: transparent;
  rotate: -18deg;
}

.trouble__stage {
  position: relative;
  margin-top: clamp(20px, 3vw, 38px);
  padding: 0 clamp(0px, 6vw, 90px);
}
.trouble__house { width: 42%; margin-inline: auto; height: auto; }

.bubble {
  position: absolute;
  width: clamp(150px, 23%, 250px);
  padding: 14px 16px;
  border-radius: 16px;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  animation: floaty 4.5s ease-in-out infinite;
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-width: 14px;
}
.bubble--1,
.bubble--4 { background: #fbe6d5; color: #8a4b1e; }
.bubble--2,
.bubble--3 { background: #fde2dc; color: #c33a24; }
.bubble--1::after,
.bubble--4::after { border-top-color: #fbe6d5; }
.bubble--2::after,
.bubble--3::after { border-top-color: #fde2dc; }

.bubble--1 { left: 0; top: 8%; animation-delay: 0s; }
.bubble--1::after { right: 22px; }
.bubble--2 { right: 0; top: 4%; animation-delay: .6s; }
.bubble--2::after { left: 22px; }
.bubble--3 { left: 2%; top: 52%; animation-delay: 1.2s; }
.bubble--3::after { right: 22px; }
.bubble--4 { right: 1%; top: 54%; animation-delay: 1.8s; }
.bubble--4::after { left: 22px; }

.trouble__msg {
  margin-top: clamp(38px, 5vw, 76px);
  text-align: center;
}
.trouble__msg h3 {
  font-size: clamp(20px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--blue);
}
.trouble__msg p {
  margin-top: clamp(16px, 2vw, 26px);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 2.1;
  color: var(--ink-soft);
}
.trouble__msg-strong {
  font-weight: 900;
  color: var(--ink) !important;
  font-size: clamp(15px, 1.5vw, 20px) !important;
}

/* さらに！！（新規事業バナー） */
.plus { margin-top: clamp(50px, 6vw, 96px); text-align: center; }
.plus__title { font-size: clamp(22px, 2.8vw, 38px); font-weight: 900; }
.plus__lead { margin-top: 12px; font-size: clamp(12px, 1.2vw, 16px); }
.plus__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0px, 2vw, 40px);
  margin-top: clamp(18px, 2.4vw, 34px);
}
.plus__chara { width: clamp(100px, 15%, 200px); height: auto; }
.plus__banner {
  display: block;
  flex: 0 1 640px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plus__banner:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0, 0, 0, .2); }
.plus__banner img { width: 100%; height: auto; }

/* -----------------------------------------------------------
   4-4. 選ばれる理由（ABOUT）
   ----------------------------------------------------------- */
.about { padding: clamp(20px, 3vw, 46px) 0 clamp(50px, 6vw, 96px); }
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 58px);
}
.about__lead-sub {
  font-size: clamp(15px, 1.7vw, 23px);
  font-weight: 900;
  color: var(--blue);
}
.about__lead-title {
  margin-top: 6px;
  font-size: clamp(22px, 3.1vw, 44px);
  font-weight: 900;
  line-height: 1.35;
}
.about__lead-title b { font-size: 1.5em; color: var(--green-vivid); }
.about__text { font-size: clamp(13px, 1.15vw, 15px); line-height: 2.1; color: var(--ink-soft); }

.points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 38px);
  margin-top: clamp(34px, 4.5vw, 66px);
}
.point {
  position: relative;
  padding: clamp(26px, 3vw, 44px) clamp(20px, 2.4vw, 40px) clamp(24px, 3vw, 40px);
  border-radius: 20px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.point:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 0, 0, .1); }
.point--blue { background: var(--tint-blue); }
.point--green { background: var(--tint-green); }
.point__num {
  position: absolute;
  top: clamp(14px, 1.8vw, 26px);
  left: 50%;
  transform: translateX(28px) rotate(-11deg);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: .02em;
}
.point--blue .point__num { color: var(--blue); }
.point--green .point__num { color: var(--green-vivid); }
.point__img {
  width: clamp(150px, 15vw, 216px);
  height: clamp(150px, 15vw, 216px);
  margin: 0 auto clamp(14px, 1.8vw, 24px);
  border-radius: 50%;
  object-fit: cover;
}
.point__title {
  font-size: clamp(17px, 1.75vw, 25px);
  font-weight: 900;
  line-height: 1.5;
}
.point__title em { font-style: normal; color: var(--blue); }
.point__title em.is-green { color: var(--green-vivid); }
.point__big { color: var(--green-vivid); }
.point__big b { font-size: 1.55em; font-weight: 900; }
.point__text {
  margin-top: clamp(12px, 1.6vw, 20px);
  font-size: clamp(12.5px, 1.05vw, 14px);
  line-height: 1.95;
  text-align: left;
}
.point__text mark {
  background: linear-gradient(transparent 58%, #ffd9a8 0);
  color: inherit;
  font-weight: 700;
}
.point__text mark.is-green { background: linear-gradient(transparent 58%, #ffeaa0 0); }

.about__more { margin-top: clamp(30px, 4vw, 56px); text-align: center; }

/* -----------------------------------------------------------
   4-5. 写真帯＋ロゴタイプ
   ----------------------------------------------------------- */
.band {
  position: relative;
  background: var(--yellow);
  padding-bottom: clamp(16px, 2.6vw, 46px);
  overflow: hidden;
}
.band__photos { display: grid; grid-template-columns: repeat(3, 1fr); }
.band__photos img {
  width: 100%;
  height: clamp(190px, 23vw, 380px);
  object-fit: cover;
}
.band__type {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.005em;
  pointer-events: none;
}
.band__type-1 {
  display: block;
  font-size: clamp(32px, 7.1vw, 111px);
  color: var(--yellow);
}
.band__type-2 {
  display: block;
  font-size: clamp(32px, 7.1vw, 111px);
  color: var(--blue);
}
.band__o {
  display: inline-grid;
  place-items: center;
  width: .82em;
  height: .82em;
  vertical-align: -.06em;
  border-radius: 50%;
  background: var(--blue);
  color: var(--yellow);
  font-size: 1em;
}
.band__o svg { width: .5em; height: .5em; }

/* -----------------------------------------------------------
   4-6. 住宅設備トラブル解決サービス
   ----------------------------------------------------------- */
.service {
  padding: clamp(10px, 2vw, 30px) 0 clamp(50px, 6vw, 100px);
  background: var(--yellow);
}
.service__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
}
.service__label .squares { width: 16px; }

.service__intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 3vw, 44px);
  align-items: center;
  margin-top: clamp(16px, 2vw, 28px);
}
.service__title { line-height: 1.3; }
.service__title em {
  display: block;
  font-style: normal;
  font-size: clamp(26px, 3.6vw, 52px);
  font-weight: 900;
  color: var(--blue);
}
.service__title span {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 2.3vw, 33px);
  font-weight: 900;
}
.service__intro-text p {
  margin-top: clamp(12px, 1.6vw, 22px);
  font-size: clamp(12.5px, 1.1vw, 15px);
  line-height: 2;
}
.service__tools { width: 82%; height: auto; margin-inline: auto; }

/* サービスカード */
.scards { margin-top: clamp(30px, 4vw, 60px); }
.scard {
  position: relative;
  margin-bottom: clamp(34px, 5vw, 86px);
}
.scard__box {
  position: relative;
  z-index: 1;
  width: 70%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.scard__head {
  padding: 14px clamp(18px, 2.2vw, 30px);
  background: var(--blue);
  color: #fff;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: .01em;
}
/* 右側は家型の写真が重なるので、そのぶん広く空ける */
.scard__body { padding: clamp(18px, 2.2vw, 30px) 17% clamp(20px, 2.4vw, 32px) clamp(18px, 2.2vw, 30px); }
.scard__desc {
  font-size: clamp(14px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.75;
}
.scard__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(14px, 1.8vw, 24px);
}
.scard__meta-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
}
.scard__meta-title svg { font-size: 20px; color: var(--sky); }
.scard__meta-link {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: underline;
  white-space: nowrap;
  transition: color .25s;
}
.scard__meta-link:hover { color: var(--blue); }
.scard__more { margin-top: clamp(18px, 2.4vw, 34px); }

/* その他の工事だけに出るサービス内容の囲み */
.fieldbox {
  position: relative;
  margin-top: clamp(14px, 1.8vw, 22px);
  padding: 16px 18px 14px;
  border: 1.5px solid var(--blue);
  border-radius: 5px;
}
.fieldbox__legend {
  position: absolute;
  top: -.7em;
  left: 14px;
  padding: 0 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.fieldbox p { font-size: 13px; line-height: 1.95; }

/* 家型に切り抜いた写真 */
.scard__photo {
  position: absolute;
  right: 0;
  top: 14%;
  bottom: -6%;
  z-index: 2;
  display: block;
  width: 36%;
  overflow: hidden;
  clip-path: polygon(50% 0, 100% 26%, 100% 100%, 0 100%, 0 26%);
}
.scard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.scard:hover .scard__photo img { transform: scale(1.06); }

/* 右上の番号 */
.scard__no {
  position: absolute;
  right: 2%;
  top: clamp(-30px, -2.6vw, -12px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
}
.scard__no svg { width: clamp(38px, 4.4vw, 62px); height: clamp(38px, 4.4vw, 62px); }
.scard__no b {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 1;
}

/* -----------------------------------------------------------
   4-7. 施工事例（WORKS）
   ----------------------------------------------------------- */
.works {
  padding: clamp(6px, 1.5vw, 20px) 0 clamp(50px, 6vw, 92px);
  background: var(--sky-pale);
}
.works__lead {
  margin-top: clamp(22px, 3vw, 42px);
  text-align: center;
  font-size: clamp(19px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.5;
}
.works__more { margin-top: clamp(24px, 3vw, 42px); text-align: center; }

.wcard {
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wcard:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(0, 0, 0, .16); }
.wcard__head {
  padding: 11px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
}
.ba { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ba__fig { position: relative; }
.ba__fig img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba__tag {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ok);
  background: #fff;
  color: var(--ok);
  font-size: 10px;
  font-weight: 700;
}
.ba__tag--after { background: var(--ok); border-color: var(--ok); color: #fff; }
/* 中央の赤い矢印 */
.ba__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 22px;
  transform: translate(-50%, -50%);
  background: var(--red);
  clip-path: polygon(0 32%, 62% 32%, 62% 0, 100% 50%, 62% 100%, 62% 68%, 0 68%);
  animation: arrowNudge 1.8s ease-in-out infinite;
}
.wcard__title {
  padding: 16px 18px 12px;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 900;
  line-height: 1.5;
}
.wcard__foot,
.vcard__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 16px;
  font-size: 11.5px;
  color: #a1918e;
}
.wcard__foot a,
.vcard__foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.wcard__foot a i,
.vcard__foot a i {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  transition: transform .25s var(--ease);
}
.wcard__foot a:hover i,
.vcard__foot a:hover i { transform: translateX(2px); }

/* -----------------------------------------------------------
   4-8. お客様の声（VOICE）
   ----------------------------------------------------------- */
.voice {
  position: relative;
  padding: clamp(30px, 4vw, 60px) 0 clamp(40px, 5vw, 80px);
  background: #fff;
  overflow: hidden;
}
.voice__deco { position: absolute; inset: 0; pointer-events: none; }
.voice__chip {
  position: absolute;
  display: block;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
  animation: floaty 6s ease-in-out infinite;
}
.voice__chip--1 { left: 13%; top: 8%; width: 76px; height: 76px; background: #e8620d; }
.voice__chip--2 { left: 5%; top: 15%; width: 52px; height: 52px; background: var(--yellow); animation-delay: .8s; }
.voice__chip--3 { right: 14%; top: 4%; width: 84px; height: 84px; background: #e8620d; animation-delay: 1.4s; }
.voice__chip--4 { right: 4%; top: 17%; width: 96px; height: 96px; background: #f9b03a; animation-delay: 2s; }
.voice__chip--5 { left: 4%; bottom: 6%; width: 70px; height: 70px; background: var(--yellow); animation-delay: 2.6s; }

.voice__house {
  position: relative;
  padding: clamp(46px, 6vw, 100px) 0 clamp(40px, 5vw, 80px);
}
.voice__house::before {
  content: "";
  position: absolute;
  inset: 0 max(12px, calc(50% - 560px));
  background: linear-gradient(160deg, #e8620d 0%, #f0821c 45%, #f9b03a 100%);
  clip-path: polygon(50% 0, 100% 25%, 100% 100%, 0 100%, 0 25%);
}
.voice .container { position: relative; z-index: 1; }
.voice__head { position: relative; }
.voice__face {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(56px, 6vw, 86px);
  height: clamp(56px, 6vw, 86px);
  border-radius: 50%;
  font-size: clamp(30px, 3.4vw, 48px);
  transform: translateY(-60%);
}
.voice__face--l {
  left: calc(50% - clamp(120px, 13vw, 190px));
  background: #fdf6c8;
  color: #6c6a3a;
}
.voice__face--r {
  left: calc(50% + clamp(64px, 7vw, 104px));
  background: #fbe0c8;
  color: #8a5228;
}
.voice__lead {
  margin-top: clamp(16px, 2.2vw, 30px);
  text-align: center;
  font-size: clamp(19px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
.voice__more { margin-top: clamp(22px, 3vw, 40px); text-align: center; }
.voice .carousel__btn { box-shadow: 0 3px 10px rgba(0, 0, 0, .2); }

.vcard {
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.vcard:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(0, 0, 0, .2); }
.vcard__head {
  padding: 11px 18px;
  background: var(--yellow);
  font-size: 14.5px;
  font-weight: 700;
}
.vcard .tags { border-bottom: 1px solid var(--line); }
.vcard__body { display: flex; align-items: center; gap: 14px; padding: 18px; }
.vcard__avatar { width: 58px; height: 58px; flex: none; border-radius: 50%; }
.vcard__title { font-size: clamp(14px, 1.3vw, 17px); font-weight: 900; line-height: 1.5; }
.vcard__who { margin-top: 4px; font-size: 12px; color: var(--ink-soft); }

/* -----------------------------------------------------------
   4-9. 対応エリア（AREA）
   ----------------------------------------------------------- */
.area {
  position: relative;
  padding: clamp(40px, 5vw, 80px) 0 0;
  background: var(--cyan);
  overflow: hidden;
}
/* 上部の街並みシルエット */
.area__skyline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(120px, 14vw, 230px);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='200' viewBox='0 0 640 200'><g fill='%23f7cfa0'><rect x='0' y='120' width='46' height='80'/><rect x='52' y='92' width='34' height='108'/><rect x='92' y='134' width='58' height='66'/><path d='M156 150l26-26 26 26v50h-52z'/><rect x='214' y='104' width='40' height='96'/><rect x='260' y='142' width='30' height='58'/><rect x='296' y='70' width='26' height='130'/><rect x='328' y='118' width='52' height='82'/><path d='M386 146l24-24 24 24v54h-48z'/><rect x='440' y='96' width='36' height='104'/><rect x='482' y='138' width='44' height='62'/><rect x='532' y='110' width='30' height='90'/><path d='M568 152l22-22 22 22v48h-44z'/><rect x='616' y='128' width='24' height='72'/></g></svg>") repeat-x bottom / clamp(420px, 46vw, 640px) auto;
  opacity: .85;
  pointer-events: none;
}
.area .container { position: relative; z-index: 1; }
.area__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 90px);
  flex-wrap: wrap;
}
.area__lead {
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.5;
}
.area__lead em { font-style: normal; color: var(--red); }

/* 「沖縄県」の帯と市町村リストを1枚の枠として連結させる。
   帯は上端だけ角丸、リストは帯の下辺と突き合わせて枠線で囲む。 */
.area__pref {
  margin-top: clamp(24px, 3vw, 44px);
  padding: 12px clamp(18px, 2vw, 28px);
  border-radius: 10px 10px 0 0;
  background: var(--blue);
  color: #fff;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
}
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(14px, 2vw, 30px);
  margin-top: 0;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2.5vw, 32px);
  border: 2px solid var(--blue);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
}
.area__list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(12px, 1.1vw, 15px);
}
.area__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* 角丸の強い「まる型」ではなく、左端に太いアクセントを立てた告知カード。 */
.area__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  margin: clamp(34px, 4.5vw, 66px) 0 clamp(40px, 5vw, 80px);
  padding: clamp(24px, 3vw, 44px) clamp(22px, 3vw, 48px);
  border: 2px solid var(--line);
  border-left: 10px solid var(--blue);
  border-radius: 4px 14px 14px 4px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(42, 35, 30, .06);
}
.area__box-text { flex: 1; }
.area__box-text h4 {
  font-size: clamp(17px, 1.9vw, 26px);
  font-weight: 900;
  color: var(--blue);
}
.area__box-text p {
  margin-top: 10px;
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}
.area__box-text mark { background: linear-gradient(transparent 56%, #fff36a 0); color: inherit; }
.area__chara { position: relative; flex: none; width: clamp(110px, 14vw, 200px); }
.area__chara img { width: 100%; height: auto; }
.area__chara-bubble {
  position: absolute;
  left: -30px;
  top: -14px;
  padding: 10px 12px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  animation: floaty 3.6s ease-in-out infinite;
}

/* -----------------------------------------------------------
   4-10. 法人のお客様（CORPORATE）
   ----------------------------------------------------------- */
.corporate { position: relative; background: var(--cyan); }
.corporate__house {
  position: relative;
  padding: clamp(56px, 8vw, 130px) 0 clamp(40px, 5vw, 80px);
}
.corporate__house::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 17%, 100% 100%, 0 100%, 0 17%);
}
.corporate .container { position: relative; z-index: 1; }
.corporate__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}
.corporate__text { text-align: center; }
.corporate__lead {
  margin: clamp(20px, 2.6vw, 36px) 0 clamp(20px, 2.6vw, 34px);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.6;
}
.corporate__img { width: 100%; height: auto; border-radius: 4px; }
.corporate__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 34px);
  max-width: 900px;
  margin: clamp(30px, 4vw, 60px) auto 0;
}

/* -----------------------------------------------------------
   4-11. お問い合わせ（CONTACT）
   ----------------------------------------------------------- */
.contact { padding: clamp(20px, 3vw, 44px) 0 clamp(50px, 6vw, 96px); text-align: center; }
.contact__mark { width: clamp(44px, 4.6vw, 68px); gap: 4px; }

.contact__lead {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 3vw, 50px);
  margin-top: clamp(18px, 2.4vw, 32px);
}
.contact__lead h2 {
  font-size: clamp(20px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1.6;
  padding-bottom: clamp(0px, 2vw, 30px);
}
.contact__lead h2 b { font-size: 1.25em; font-weight: 800; }
.contact__lead h2 small { font-size: .68em; }
.contact__chara { width: clamp(80px, 11vw, 160px); height: auto; }

.contact__panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 3vw, 46px);
  align-items: start;
  max-width: 1080px;
  margin: clamp(22px, 3vw, 40px) auto 0;
  padding: clamp(24px, 3vw, 44px);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .1);
  text-align: left;
}
.contact__tel-lead { font-size: clamp(14px, 1.35vw, 18px); font-weight: 900; }
.contact__tel-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .005em;
}
.contact__tel-time { margin-top: 2px; font-size: 12.5px; color: var(--ink-soft); }
.contact__notes { margin-top: 14px; }
.contact__notes li {
  position: relative;
  padding-left: 1.2em;
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.contact__notes li::before { content: "※"; position: absolute; left: 0; }
.contact__btns { display: grid; gap: 14px; }

/* -----------------------------------------------------------
   5. フッター・追従パーツ
   ----------------------------------------------------------- */
.footer { padding: clamp(30px, 4vw, 54px) 0 26px; border-top: 1px solid var(--line); }
.footer__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 60px);
}
.footer__logo img { width: clamp(190px, 18vw, 250px); height: auto; }
.footer__address { margin-top: 18px; font-size: 13px; line-height: 1.9; }
.footer__access { margin-top: 14px; }
.footer__access a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.footer__access svg { font-size: 15px; color: var(--blue); }

.footer__nav { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: clamp(14px, 2vw, 30px); }
.footer__col li + li { margin-top: 16px; }
.footer__col a { font-size: 13px; transition: color .25s; }
.footer__col a:hover { color: var(--blue); }
.footer__col--service .footer__col-title { margin-bottom: 14px; font-size: 13px; font-weight: 700; }
.footer__col--service li { position: relative; padding-left: 14px; }
.footer__col--service li + li { margin-top: 10px; }
.footer__col--service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 1.5px;
  background: var(--blue);
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(30px, 4vw, 56px);
}
.footer__links { display: flex; gap: 32px; }
.footer__links a { font-size: 12.5px; color: var(--ink-soft); }
.footer__links a:hover { color: var(--blue); }
.footer__copy { margin-left: auto; font-size: 12px; color: #a1918e; }

/* SPの固定バー */
.spbar { display: none; }

.totop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fde0c4;
  color: var(--blue);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.totop svg { transform: rotate(-90deg); }
.totop.is-in { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--blue); color: #fff; }

/* -----------------------------------------------------------
   6. アニメーション
   ----------------------------------------------------------- */

/* スクロールで出てくる要素。JSが is-in を付ける */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ヒーローは読み込み直後に順番に出す */
.hero__title-1,
.hero__title-2,
.hero__title-3,
.hero__badges,
.hero__visual,
.hero__snap--4,
.hero__emergency,
.hero__cats {
  opacity: 0;
  animation: heroIn .9s var(--ease) forwards;
}
.hero__title-1 { animation-delay: .15s; }
.hero__title-2 { animation-delay: .28s; }
.hero__title-3 { animation-delay: .41s; }
.hero__badges { animation-delay: .54s; }
.hero__visual { animation-delay: .3s; }
.hero__snap--4 { animation-delay: .5s; }
.hero__cats { animation-delay: .7s; }
.hero__emergency { animation-delay: .8s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes arrowNudge {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-42%, -50%) scale(1.06); }
}

/* 画面の外にある装飾は止める（JSが is-anim-off を付け外しする）。
   スクロール中に合成し続けるレイヤーを減らすのが目的。 */
.is-anim-off,
.is-anim-off::before,
.is-anim-off::after { animation-play-state: paused !important; }

/* 動きを減らす設定のときは演出を止める */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__title-1,
  .hero__title-2,
  .hero__title-3,
  .hero__badges,
  .hero__visual,
  .hero__snap--4,
  .hero__emergency,
  .hero__cats { opacity: 1; animation: none; }
  .hero__emergency::after,
  .bubble,
  .voice__chip,
  .ba__arrow,
  .area__chara-bubble { animation: none; }
}

/* -----------------------------------------------------------
   7. レスポンシブ
   ----------------------------------------------------------- */

/* ノートPC〜小さめのデスクトップ */
@media (max-width: 1240px) {
  .header__inner { padding-left: 16px; }
  .header__sub { display: none; }
  .hero__cats a { flex-wrap: wrap; }
}

/* タブレット */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }

  body { padding-top: var(--header-h); }

  .header__body,
  .header__cta { display: none; }
  .header__inner { align-items: center; padding-right: 8px; }
  .header__logo img { width: 168px; }
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 58px;
    height: 100%;
    margin-left: auto;
    color: var(--blue);
  }
  .hamburger__bars { display: grid; gap: 5px; width: 24px; }
  .hamburger__bars i {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .3s var(--ease), opacity .25s;
  }
  .hamburger[aria-expanded="true"] .hamburger__bars i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger[aria-expanded="true"] .hamburger__bars i:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] .hamburger__bars i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .hamburger__label { font-size: 9px; font-weight: 700; letter-spacing: .06em; }

  /* ヒーローは家型の枠を少し広げて、人物まわりを詰める */
  .hero__frame { left: 10%; width: 58%; }
  .hero__copy { width: 58%; margin-left: 10%; }
  .hero__cats { padding-left: 10%; }
  .hero__visual { left: 68%; width: 30%; }
  .hero__emergency { left: 72%; }

  .makers__list { grid-template-columns: repeat(4, 1fr); }

  /* カードが細くなるので、よくある修理内容は1列にする */
  .chips { grid-template-columns: 1fr; }
  .scard__body { padding-right: 15%; }

  .about__intro { grid-template-columns: 1fr; }
  .points { gap: 18px; }

  .service__intro { grid-template-columns: 1fr; }
  .service__tools { width: 62%; margin-inline: auto; }

  .contact__panel { grid-template-columns: 1fr; }

  .footer__row { grid-template-columns: 1fr; }
}

/* スマートフォン */
@media (max-width: 767px) {
  body { font-size: 14px; }
  .container { padding-inline: 18px; }

  /* ---- ヒーロー ---- */
  .hero { padding: 16px 0 22px; }
  /* SPは縦積みなので、家型の枠は中身の高さに合わせる（引き伸ばさない） */
  .hero__inner {
    display: block;
    flex: 0 0 auto;
    min-height: 0;
    max-height: none;
    padding-inline: 14px;
    margin-top: 14px;
  }
  .hero__frame { left: 14px; width: calc(100% - 28px); }
  .hero__copy { width: 100%; margin-left: 0; padding: 40px 16px 24px; }
  .hero__title-2 {
    font-size: clamp(21px, 7.2vw, 30px);
    -webkit-text-stroke-width: 5px;
  }
  .hero__badges { gap: 6px; margin-top: 16px; }
  .hero__badge { min-width: 0; flex: 1 1 0; padding: 10px 4px; }
  .hero__badge span { font-size: 10px; }
  .hero__visual { display: none; }
  .hero__snap--4 { display: none; }
  .hero__emergency {
    position: relative;
    z-index: 5;
    left: auto;
    bottom: auto;
    width: 116px;
    margin: 16px auto 0;
  }
  .hero__cats {
    flex-wrap: wrap;
    gap: 10px 8px;
    padding-left: 0;
    padding-inline: 14px;
  }
  .hero__cats li { flex: 1 1 calc(50% - 8px); }
  .hero__cats a {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
  }
  .hero__cats i { width: 18px; height: 18px; font-size: 10px; margin-left: auto; }

  /* ---- メーカー ---- */
  .makers__list { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .makers__panel { border-radius: 14px; }

  /* ---- お悩み ---- */
  .trouble__card { padding: 40px 16px 26px; }
  .trouble__card::before,
  .trouble__card::after { clip-path: polygon(50% 0, 100% 9%, 100% 100%, 0 100%, 0 9%); }
  .trouble__title-1 { font-size: 18px; padding: 0 18px; }
  .trouble__title-1::before,
  .trouble__title-1::after { height: 22px; }
  .trouble__title-2 { font-size: 20px; }
  .trouble__scribble { display: none; }
  .trouble__stage { padding: 0; }
  .trouble__house { width: 74%; }
  /* 吹き出しは重ねずに写真の下へ並べる */
  .bubble {
    position: static;
    width: 100%;
    margin-top: 12px;
    font-size: 12px;
  }
  .bubble::after { display: none; }
  .trouble__msg p br { display: none; }
  .trouble__msg-strong br { display: inline; }

  .plus__chara { display: none; }
  .plus__banner { flex: 1 1 auto; }

  /* ---- 選ばれる理由 ---- */
  .points { grid-template-columns: 1fr; }
  .point { padding: 44px 20px 26px; }
  .point__num { transform: translateX(20px) rotate(-11deg); }

  /* ---- 帯 ---- */
  .band__photos img { height: 150px; }
  .band__photos li:nth-child(3) { display: none; }
  .band__photos { grid-template-columns: repeat(2, 1fr); }

  /* ---- サービス ---- */
  /* 写真はカードの上に回す */
  .scard {
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
    padding-top: 34px;
  }
  .scard__box { width: 100%; }
  .scard__body { padding: 20px 18px 24px; }
  .scard__photo {
    position: static;
    order: -1;
    width: 100%;
    aspect-ratio: 16 / 8;
    margin-bottom: -16px;
  }
  .scard__no { right: 12px; top: 0; }
  .chips { grid-template-columns: 1fr; }

  /* ---- 施工事例・お客様の声 ---- */
  .carousel__item { flex: 0 0 82%; }
  .carousel__viewport { padding-inline: 18px; }
  .voice__house::before { inset: 0 0; clip-path: polygon(50% 0, 100% 9%, 100% 100%, 0 100%, 0 9%); }
  .voice__house { padding-top: 56px; }
  .voice__face { display: none; }
  .voice__chip { display: none; }

  /* ---- エリア ---- */
  .area__head { gap: 18px; }
  .area__list { gap: 8px 16px; }
  .area__box {
    flex-direction: column;
    border-left-width: 8px;
    border-radius: 4px 14px 14px 4px;
    padding: 24px 20px;
  }
  .area__chara { width: 130px; }
  .area__chara-bubble { left: -14px; top: 0; }

  /* ---- 法人 ---- */
  .corporate__house::before { clip-path: polygon(50% 0, 100% 7%, 100% 100%, 0 100%, 0 7%); }
  .corporate__row { grid-template-columns: 1fr; }
  .corporate__btns { grid-template-columns: 1fr; }
  .bigbtn { padding: 22px; }

  /* ---- お問い合わせ ---- */
  .contact__chara { display: none; }
  .contact__lead h2 { padding-bottom: 0; }
  .contact__tel-num { justify-content: center; }
  .contact__tel { text-align: center; }
  .contact__notes li { text-align: left; }

  /* ---- フッター ---- */
  .footer { padding-bottom: 90px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__col--service { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__copy { margin-left: 0; }

  /* ---- 固定バー ---- */
  .spbar {
    position: fixed;
    inset: auto 0 0;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
  }
  .spbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
  }
  .spbar__item svg { font-size: 19px; }
  .spbar__item--tel { background: var(--ink); }
  .spbar__item--mail { background: var(--blue); }
  .spbar__item--line { background: var(--green-line); }

  .totop { bottom: 64px; right: 14px; width: 40px; height: 40px; }
}

/* 小さめのスマートフォン */
@media (max-width: 400px) {
  .makers__list { grid-template-columns: repeat(2, 1fr); }
  .carousel__item { flex: 0 0 90%; }
  .area__list { gap: 8px 12px; }
}
