/* ===========================================================
   top.css — トップページ専用（common.css のあとに読む）
   0. FV（全面スライド＋左下の白い形にコピー）
   1〜10. FV より下のセクション（S1 不安 → S10 発信・エリア）
   世界観の一語＝「ぜんぶ見せる（＝隠さない）」。地は白が主役／写真は大きく／数字を出す
   =========================================================== */

/* ===========================================================
   0. FV
   =========================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
}

/* スライド。JS が無いときは CSS の @keyframes だけで回る（6秒送り・5枚で30秒） */
.slides { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fade 30s infinite;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--py, 50%);
  scale: var(--zoom, 1);
  translate: var(--tx, 0%) 0%;
}
/* 画角：--zoom 拡大／--tx 左右／--py 上下。SP（縦画面）は別に持つ */
.s1 img { --zoom: 1.1;  --tx: 0%; --py: 65%; }    /* 033 2名の笑顔 */
.s2 img { --zoom: 1;    --tx: 0%; --py: 70%; }    /* 078 スマホで工程を記録 */
.s3 img { --zoom: 1.08; --tx: 4%; --py: 112%; }   /* 097 快晴・引き */
.s4 img { --zoom: 1;    --tx: 0%; --py: 50%; }    /* 026 現場での笑顔 */
.s5 img { --zoom: 1;    --tx: 0%; --py: 60%; }    /* 061 屋根の上の作業 */
@media (max-width: 900px) {
  .s1 img { --zoom: 1; --tx: 0%; --py: 32%; }
  .s2 img { --zoom: 1; --tx: 0%; --py: 40%; }
  .s3 img { --zoom: 1; --tx: 0%; --py: 40%; }
  .s4 img { --zoom: 1; --tx: 0%; --py: 35%; }
  .s5 img { --zoom: 1; --tx: 0%; --py: 40%; }
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }
.slide:nth-child(5) { animation-delay: 24s; }

@keyframes fade {
  0%, 2%   { opacity: 0; }
  4%, 18%  { opacity: 1; }
  22%,100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slide { animation: none; opacity: 0; }
  .slide:nth-child(1) { opacity: 1; }
}

/* インジケータ（スライドと同じ 30s・同じ遅延で回す） */
.dots {
  position: absolute;
  z-index: 12;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  gap: 0.5rem;
}
.dots > * {
  appearance: none; border: 0; padding: 0; font: inherit;
  width: 0.55rem; height: 0.55rem; border-radius: 999px;
  background: #fff; opacity: 0.55;
  box-shadow: 0 0 0 1px rgba(37,25,21,.18);
  animation: dot 30s infinite;
}
.dots > *:nth-child(1) { animation-delay: 0s; }
.dots > *:nth-child(2) { animation-delay: 6s; }
.dots > *:nth-child(3) { animation-delay: 12s; }
.dots > *:nth-child(4) { animation-delay: 18s; }
.dots > *:nth-child(5) { animation-delay: 24s; }

@keyframes dot {
  0%, 2%   { background: #fff;        opacity: 0.55; }
  4%, 18%  { background: var(--pink); opacity: 1; }
  22%,100% { background: #fff;        opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .dots > * { animation: none; }
  .dots > *:first-child { opacity: 1; background: var(--pink); }
}

/* JS（js/slider.js）が動くときは CSS アニメーションを止めて JS 送りに切り替える。
   見え方は CSS 版と同じ（6秒ごと・0.9秒のクロスフェード）。丸を押すとその写真へ */
.hero.js .slide { animation: none; opacity: 0; transition: opacity 0.9s ease; }
.hero.js .slide.is-on { opacity: 1; }
.hero.js .dots > * {
  position: relative;
  animation: none;
  cursor: pointer;
  background: #fff; opacity: 0.55;
  transition: background 0.4s ease, opacity 0.4s ease;
}
.hero.js .dots > *.is-on { background: var(--pink); opacity: 1; }
/* 押せる的として小さすぎるので、当たりだけ広げる（見た目は 0.55rem のまま） */
.hero.js .dots > *::before { content: ''; position: absolute; inset: -0.6rem; border-radius: 999px; }

/* コピーのタイポ */
.catch {
  font-family: var(--round);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.lead {
  font-family: var(--round);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: 0 0 0.7rem;
}
.note {
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}
.mark {
  background: linear-gradient(transparent 62%, rgba(251,238,0,.85) 62%);
  font-weight: 700;
}

/* 左下の白い形とコピー。
   器の下限 52rem＝1189px 以下で細りきらないようにする（細るほど PC 用の形も細り、注記が裾の外に出る） */
.hero--d .hero-copy {
  position: absolute;
  z-index: 11;
  left: 0;
  bottom: 0;
  width: var(--copy-w, min(58rem, max(70%, 52rem)));
}
.hero--d .copy-shape {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
/* 白い形は PC 用と SP 用で path が別（preserveAspectRatio="none" なので、
   同じ path を縦横比の違う器に流すと形が成立しない）。切り替えは器が全幅になる 900px */
.copy-shape__sp { display: none; }
@media (max-width: 900px) {
  .copy-shape__pc { display: none; }
  .copy-shape__sp { display: block; }
}
.hero--d .copy-inner {
  position: relative;
  z-index: 2;
  padding: var(--copy-pt, clamp(3.2rem, 5.6vw, 5.2rem))
           var(--copy-pr, clamp(6rem, 17vw, 15rem))
           var(--copy-pb, clamp(3.6rem, 6vw, 6.2rem))
           var(--copy-pl, clamp(1.6rem, 4vw, 4rem));
}
.hero--d .catch {
  font-size: clamp(1.8rem, 3.25vw, 2.6rem);
  color: var(--pink);
  margin-bottom: 0.3rem;
}
.hero--d .lead { font-size: clamp(0.98rem, 1.25vw, 1.1rem); margin-bottom: 0.35rem; }
.hero--d .note { color: rgba(37,25,21,.82); font-size: 0.92rem; line-height: 1.75; }
.hero--d .badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--round);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.4em 1.05em;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.hero--d .hero-cta { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.2rem; }
/* SP だけ入れる改行（最終行に「す。」だけ残るのを避ける） */
.br-sp { display: none; }
@media (max-width: 900px) { .br-sp { display: inline; } }

/* 差し色の斑（写真の外に置く） */
.spot {
  position: absolute;
  border-radius: 58% 42% 46% 54% / 44% 58% 42% 56%;
  z-index: 0;
  pointer-events: none;
}
.hero--d .spot--y { width: 3.1rem;  height: 2.3rem;  background: var(--yellow); right: 11%;  top: 21%; rotate: -14deg; z-index: 10; }
.hero--d .spot--g { width: 1.9rem;  height: 1.5rem;  background: var(--green);  right: 26%;  top: 13%; rotate: 10deg;  z-index: 10; }
.hero--d .spot--r { width: 1.35rem; height: 1.05rem; background: var(--red);    right: 6.5%; top: 51%; rotate: -6deg;  z-index: 10; }
.hero--d .dots { bottom: auto; top: clamp(7rem, 13vw, 10.5rem); }

/* 900px 以下は「写真 → コピー」の縦積み。
   写真を FV 全体に敷くとコピーが長いほど写真が痩せるので、全幅・元の比率（1400×933）で置く。
   ★写真の上端（padding-top 4.6rem）は波の一番高いところ（8.2rem×130/190）より上に置く。
     下げると波が上がっている場所で写真の直線の縁が出る。
   ★スライドの丸（8.6rem）は波の一番下（8.2rem×174/190）より下に置く。上げると波に隠れる */
@media (max-width: 900px) {
  .hero--d { min-height: 0; padding-top: 4.6rem; }
  /* .brand-blob はヘッダー（grid）の1列目なので width:100% は列の幅にしか効かない。位置決めをヘッダー側に移す。
     SVG は width:auto だと viewBox の比率で幅を決めてしまうので 100% を明示する */
  .hero--d .brand-blob { position: static; }
  .hero--d .blob-shape { left: 0; right: auto; width: 100%; height: 8.2rem; }
  .hero--d .blob-shape__pc { display: none; }
  .hero--d .blob-shape__sp { display: block; }
  /* 白い波が全幅で乗るので、ヘッダー上端の白いグラデはいらない */
  .hero--d .site-header::before { display: none; }
  /* 全幅になった波（position:absolute の SVG）の下に、位置指定の無いボタンが回り込むのを防ぐ */
  .hero--d .site-header .util { position: relative; z-index: 1; }
  .hero--d .slides { position: relative; inset: auto; aspect-ratio: 1400 / 933; }
  .hero--d .slide img { height: 100%; }
  /* コピーの白い形を写真に 3.5rem 重ねる（すき間を作らない） */
  .hero--d .hero-copy { position: relative; bottom: auto; left: auto; width: 100%; margin-top: -3.5rem; }
  .hero--d .dots { top: 8.6rem; }
  .hero--d .copy-inner { padding: clamp(2.6rem, 9vw, 3.6rem) 1.7rem 3.2rem; }
  .hero--d .hero-cta .pill { flex: 1 1 auto; text-align: center; }
  .hero--d .spot--r { display: none; }
}

/* FV の下の稜線だけ、低振幅を見せるぶん少し高く取る */
.hill--fv { height: clamp(3.4rem, 7vw, 8.5rem); }

/* ===========================================================
   S1. sec-worry — 外壁塗装、こんな不安はありませんか。
   写真を置かない。客の心の声を吹き出しで代弁する
   =========================================================== */

.sec-worry { background: var(--bg-2); padding-block: var(--pdg-md); }

.worry-list {
  list-style: none;
  margin: clamp(2rem, 1.2rem + 2.4vw, 3.4rem) 0 clamp(2.4rem, 1.4rem + 3vw, 4rem);
  padding: 0;
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.9rem);
}
/* 段組みは4段（PC 1181以上／タブレット 860-1180／小タブレット 721-859／SP 720以下） */
@media (min-width: 860px)  { .worry-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1181px) { .worry-list { grid-template-columns: repeat(3, 1fr); } }   /* 3つは頭も高さも揃える */
.worry-list li { display: flex; }

.bubble {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 1.6rem;
  padding: 1.35em 1.5em;
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1rem, 0.94rem + 0.35vw, 1.18rem);
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.bubble::after,
.bubble::before {
  content: '';
  position: absolute;
  left: 2.6rem;
  width: 0; height: 0;
  border-style: solid;
}
.bubble::before { bottom: -1.15rem; border-width: 1.15rem 0.95rem 0 0; border-color: var(--ink) transparent transparent transparent; }
.bubble::after  { bottom: -0.78rem; border-width: 0.95rem 0.78rem 0 0; border-color: var(--bg) transparent transparent transparent; }

/* 締めの文の右に、笑顔のままの牛（「その不安を解消します」の受け手） */
.worry-close {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  max-width: var(--inner-sm);
}
.worry-close-text { flex: 1; min-width: 0; }
.worry-cow-ok { flex: none; width: clamp(6rem, 11vw, 10.5rem); height: auto; }
@media (max-width: 859px) {
  .worry-close { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .worry-cow-ok { width: 6.5rem; align-self: center; }
}
.worry-close p + p { margin-top: 0.9em; }
.worry-close .last {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.06em;
}

/* 区切りの写真帯（トップだけ）。① 地上での塗料の準備 ② 屋根の上の引きの絵 */
.photo-band--sign { background-image: url("../images/band-005.webp"); }
.photo-band--work { background-image: url("../images/band-060.webp"); }
@media (max-width: 859px), (hover: none), (prefers-reduced-motion: reduce) {
  .photo-band--sign { background-image: url("../images/band-005-sp.webp"); }
  .photo-band--work { background-image: url("../images/band-060-sp.webp"); }
}

/* ===========================================================
   S2. sec-open — モーモペイントは、ぜんぶお見せします。★ページの芯
   丘のピンク面。4つの「見せる」に看板の色を1つずつ割り当てる
   =========================================================== */

.sec-open {
  background: var(--hill-1);
  padding-block: var(--pdg-lg);
}
.sec-open .sec-head { text-align: center; }

.show-list { display: grid; gap: clamp(2.2rem, 1.4rem + 2.6vw, 3.8rem); margin-bottom: clamp(2.4rem, 3.4vw, 3.4rem); }

.show-item { display: grid; gap: clamp(1.2rem, 2vw, 2.2rem); align-items: center; }
@media (min-width: 860px) {
  .show-item { grid-template-columns: 1.05fr 1fr; }
  /* 左右交互。偶数は写真を右へ。段をずらして等分に見せない */
  .show-item:nth-child(even) .show-fig { order: 2; }
  .show-item:nth-child(odd)  .show-fig { order: 0; }
  .show-item:nth-child(2) { margin-inline-start: clamp(0rem, 3vw, 3.5rem); }
  .show-item:nth-child(4) { margin-inline-start: clamp(0rem, 2vw, 2.5rem); }
}

.show-fig { margin: 0; position: relative; }
.show-fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1.8rem;
  box-shadow: 0 1.1rem 2.4rem rgba(37,25,21,.14);
}

.show-body { position: relative; }
.show-num {
  font-family: var(--round);
  font-weight: 900;
  font-size: clamp(2.6rem, 1.6rem + 3.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 0.15em;
  position: relative;
  isolation: isolate;   /* ::before の z-index:-1 が地色の裏に回らないように */
}
/* 番号の後ろに色の斑を敷く＝4色に「区別」の仕事を与える */
.show-num::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.36em; top: -0.06em;
  width: 1.76em; height: 1.28em;
  background: var(--dot, var(--yellow));
  border-radius: 58% 42% 46% 54% / 44% 58% 42% 56%;
}
.show-item:nth-child(1) { --dot: var(--yellow); }
.show-item:nth-child(2) { --dot: var(--green); }
.show-item:nth-child(3) { --dot: #9DB4E8; }
.show-item:nth-child(4) { --dot: var(--pink-pale); }

.show-body p { margin: 0; }
.show-body .ttl-03 { margin-bottom: 0.6em; }

.open-close { text-align: center; }
.open-close p {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem);
  margin: 0 0 1.2em;
}

/* ===========================================================
   S3. sec-ground — 見えなくなる工程にこそ、手をかける。
   =========================================================== */

.sec-ground { background: var(--bg); padding-block: var(--pdg-md); overflow: clip; }

.ground-grid { position: relative; z-index: 1; display: grid; gap: clamp(1.8rem, 3vw, 3.4rem); align-items: center; }
.ground-fig { margin: 0; position: relative; }
@media (min-width: 860px) {
  .ground-grid { grid-template-columns: 1.2fr 1fr; }
  /* 写真は右端から切れさせる（ブリード）。★.ground-fig{margin:0} より後ろに置くこと */
  .ground-fig { margin-right: calc(50% - 50vw); }
}
.ground-fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 44%;
  border-radius: 1.8rem 0 0 1.8rem;
}
@media (max-width: 859px) { .ground-fig img { border-radius: 1.6rem; } }

.ground-body p + p { margin-top: 1em; }
.ground-body p:has(.fig-inline) { line-height: 2.4; }

/* 原稿の一文を割らずに数字だけを大きく見せる */
.fig-inline {
  font-family: var(--round);
  font-weight: 900;
  color: var(--pink);
  font-size: 1.9em;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0 0.06em;
  white-space: nowrap;   /* 「110」と「万円」が行をまたいで割れていた（1024px・2026-09-15） */
}
.fig-inline--lg { font-size: 2.3em; }

/* ===========================================================
   S4. sec-fit — その家に「ちょうど良い工事」だけを。
   写真を置かない。ページの呼吸
   =========================================================== */

.sec-fit { background: var(--bg); padding-block: 0 var(--pdg-md); }

.fit-card {
  background: var(--bg-2);
  border-radius: 3.4rem 1.4rem 3.4rem 1.4rem;
  padding: clamp(2.2rem, 1.4rem + 3vw, 4.2rem) clamp(1.6rem, 1rem + 3vw, 4.4rem);
  position: relative;
}
.fit-card .ttl-02 { margin-bottom: 0.8em; }
.fit-card p + p { margin-top: 1em; }
.fit-strong {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  letter-spacing: 0.06em;
}

/* ===========================================================
   S5. sec-voice — お客様の声
   顔写真は無い（創作しない）。声の主のしるしは既製の単色アイコン
   =========================================================== */

.sec-voice { background: var(--bg-2); padding-block: var(--pdg-md); }

.voice-list {
  list-style: none; margin: 0 0 2.4rem; padding: 0;
  display: grid; gap: clamp(1rem, 0.6rem + 1.2vw, 1.6rem);
}
@media (min-width: 860px) { .voice-list { grid-template-columns: repeat(2, 1fr); } }
.voice-list li { display: flex; }   /* 4枚は頭も高さも揃える */
.voice-card {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  background: var(--bg);
  border-radius: 1.6rem;
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem) clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  border: 3px solid var(--pink-pale);
}
.voice-face {
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: var(--hill-1);
  color: var(--pink);
  display: grid;
  place-items: center;
}
.voice-face .ico { width: 1.75rem; height: 1.75rem; }
/* RemixIcon emotion-happy-fill */
.ico--smile{ --ico: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-5-9a5%205%200%200%200%2010%200h-2a3%203%200%200%201-6%200H7zm1-2a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203zm8%200a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
.voice-text {
  margin: 0;
  font-size: var(--fz-body);
  line-height: 2;
}
.voice-close { text-align: center; }
.voice-close p {
  font-family: var(--round); font-weight: 700;
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.25rem);
  margin: 0 0 1.3em;
}

/* ===========================================================
   S6. sec-works — 施工事例（カードの部品は common.css §9）
   ★Before/After の実データは先方提供待ち。写真は現行サイトからの仮置き
   =========================================================== */

.sec-works { background: var(--bg); padding-block: var(--pdg-md); }
.sec-works .sec-head { max-width: var(--inner-sm); }
.sec-works .lead-txt { margin-top: 1.2em; }

.works-list {
  list-style: none; margin: 0 0 2.6rem; padding: 0;
  display: grid; gap: clamp(1.6rem, 1rem + 2vw, 3rem);
}
@media (min-width: 860px)  { .works-list { grid-template-columns: repeat(2, 1fr); align-items: start; } }
@media (min-width: 1181px) { .works-list { grid-template-columns: repeat(3, 1fr); align-items: start; } }
@media (max-width: 859px)  { .work-sub { width: 34%; } }

/* ===========================================================
   S7. sec-price — 塗料と、料金の目安
   カラフルの源泉が被写体そのもの（塗料缶の棚）
   =========================================================== */

.sec-price { background: var(--hill-1); padding-block: var(--pdg-md); }

.price-grid { display: grid; gap: clamp(1.8rem, 1.2rem + 2.6vw, 3.4rem); align-items: center; }
@media (min-width: 860px) { .price-grid { grid-template-columns: 1.05fr 1fr; } }

.price-fig { margin: 0; }
.price-fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 1.4rem 3.6rem 1.4rem 3.6rem;
  box-shadow: 0 1.1rem 2.4rem rgba(37,25,21,.14);
}
.plan-chips .chip { background: var(--bg); }

.price-line { margin: 1.4rem 0 1.6rem; line-height: 2.4; }

/* ===========================================================
   S8. sec-flow — ご相談から、アフターまで（順路が繋がる表現）
   =========================================================== */

.sec-flow { background: var(--bg); padding-block: var(--pdg-md); }

.flow-list {
  list-style: none; margin: 0 0 2.4rem; padding: 0;
  display: grid; gap: 0.9rem;
  grid-auto-rows: 1fr;   /* 9 枚とも同じ高さ（05 が 2 行になっても行の間隔が揃う。2026-09-08 デザイナー） */
}
@media (min-width: 860px)  { .flow-list { grid-template-columns: repeat(2, 1fr); column-gap: clamp(1.4rem, 3vw, 3.2rem); } }
@media (min-width: 1181px) { .flow-list { grid-template-columns: repeat(3, 1fr); } }

.flow-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-2);
  border: 1px solid rgba(37,25,21,.10);
  border-radius: 1.2rem;
  padding: 1rem 1.3rem;
  box-shadow: 0 0.35rem 0.9rem rgba(37,25,21,.05);
}
/* ステップ間をつなぐ。縦積み＝縦線／横並び＝右向きの三角（行末では消す） */
.flow-item::after {
  content: '';
  position: absolute;
  left: 2.5rem; top: 100%;
  width: 2px; height: 0.9rem;
  background: rgba(213,83,150,.4);
}
.flow-list li:last-child .flow-item::after { display: none; }
@media (min-width: 860px) {
  .flow-item::after {
    left: 100%; top: 50%;
    translate: 0 -50%;
    margin-left: 0.5rem;
    width: 0; height: 0; background: none;
    border-style: solid;
    border-width: 0.36rem 0 0.36rem 0.48rem;
    border-color: transparent transparent transparent rgba(213,83,150,.6);
  }
  .flow-list li:nth-child(2n) .flow-item::after { display: none; }
}
@media (min-width: 1181px) {
  .flow-list li:nth-child(2n) .flow-item::after { display: block; }
  .flow-list li:nth-child(3n) .flow-item::after { display: none; }
  .flow-list li:last-child .flow-item::after { display: none; }
}

.flow-num {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--round);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: grid; place-items: center;
}
.flow-item .t {
  font-family: var(--round);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.flow-close {
  font-family: var(--round);
  font-weight: 700;
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem);
  margin: 0 0 1.4em;
}

/* ===========================================================
   S9. sec-message — 代表あいさつ（写真を牛柄ブロブで抜く）
   =========================================================== */

.sec-message { background: var(--bg-2); padding-block: var(--pdg-md); }

.message-grid { display: grid; gap: clamp(1.8rem, 1.2rem + 2.6vw, 3.6rem); align-items: center; }
@media (min-width: 860px) { .message-grid { grid-template-columns: 0.85fr 1.15fr; } }

.message-fig { margin: 0; position: relative; }
/* 縦積みのときは「見出し → 本文 → 写真」の順。縦長の写真なので 34rem 幅で中央に置く */
@media (max-width: 859px) {
  .message-fig { order: 2; max-width: 34rem; margin-inline: auto; }
}
.message-fig img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  object-position: 50% 48%;
}
.message-body p + p { margin-top: 1em; }

/* ===========================================================
   S10. sec-sns — 現場から、毎日発信しています ／ 対応エリア
   =========================================================== */

.sec-sns { background: var(--bg-2); padding-block: var(--pdg-md); }

.sns-grid { display: grid; gap: clamp(1.8rem, 1.2rem + 2.6vw, 3.4rem); align-items: center; }
@media (min-width: 860px) { .sns-grid { grid-template-columns: 1.1fr 1fr; } }
.sns-fig { margin: 0; }
@media (max-width: 859px) { .sns-fig { order: 2; } }   /* 縦積みのときは写真を一番下に */
.sns-fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 3.4rem 1.4rem 3.4rem 1.4rem;
}

.area-box {
  margin-top: clamp(2.4rem, 1.6rem + 2.6vw, 4rem);
  background: var(--bg);
  border-radius: 1.6rem;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) { .area-box { grid-template-columns: auto 1fr; align-items: center; column-gap: 2.4rem; } }
.area-box .ttl-04 { margin: 0; white-space: nowrap; }
.area-box p { margin: 0; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.8rem; }

/* SP（720px 以下）は本文を左揃えにする（見出し・ボタンは中央のまま） */
@media (max-width: 720px) {
  .voice-close p,
  .open-close p { text-align: left; }
}
