/* =========================================================
   リアース株式会社 コーポレートサイト
   ※社名・連絡先・実績数値はすべて仮置きです。差し替え前提。
   デザイン参考:森建設（mori-construction.jp）を実測して再現
   - 配色:白 / チャコール #1c1e1d / ビビッドグリーン #27a149・#048d36
   - 英字:Panchang（特大の英字ウォーターマーク）
   - 和文見出し:Noto Serif JP（明朝）/ 本文:Noto Sans JP（ゴシック）
   - 角丸は小さめ(4px)・装飾控えめ
   ========================================================= */

:root {
  --ink:        #1c1e1d;   /* 文字・見出しのチャコール */
  --paper:      #ffffff;
  --paper-2:    #f4f6f2;   /* 薄グレー */
  --paper-3:    #e9ede5;
  --green:      #27a149;   /* ブランドのビビッドグリーン */
  --green-dark: #048d36;   /* 深め（英字ラベル・ホバー） */
  --green-bright:#23bc4d;  /* 明るい緑 */
  --charcoal:   #1c1e1d;   /* フッター・CTA・ダーク面 */
  --line:       #e2e6dd;
  --line-strong:#cbd0c4;
  --muted:      #61675e;
  --accent:     #048d36;
  --max:        1240px;
  --gutter:     clamp(20px, 5vw, 64px);
  --radius:     5px;
  --radius-sm:  4px;
  --header-h:   88px;
  --font-en:    "Panchang", "Archivo", system-ui, sans-serif;
  --font-num:   "Roboto", system-ui, sans-serif;  /* 電話番号など数字（森建設と同じ） */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.95;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500; line-height: 1.45; letter-spacing: .01em; margin: 0;
}
.serif { font-family: "Noto Serif JP", serif; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tint { background: var(--paper-2); }
.section--ink  { background: var(--charcoal); color: #e7ebe4; }
.section--ink h2, .section--ink h3 { color: #fff; }

/* ---- 英字エフェクト（Panchang） ---- */
.eyebrow {
  font-family: var(--font-en);
  font-size: clamp(15px, 1.6vw, 19px); letter-spacing: .04em; font-weight: 500;
  text-transform: uppercase; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 14px; margin: 0 0 18px; line-height: 1.3;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--green); }
.section--ink .eyebrow { color: #7fe08f; }
.section--ink .eyebrow::before { background: #7fe08f; }

/* 特大の英字ウォーターマーク */
.en-giant {
  font-family: var(--font-en); font-weight: 700; text-transform: uppercase;
  color: var(--green); line-height: .88; letter-spacing: -.03em;
  font-size: clamp(56px, 13vw, 168px);
}
.en-giant.faint { color: rgba(39,161,73,.10); }
.en-giant.outline { color: transparent; -webkit-text-stroke: 1.5px rgba(39,161,73,.32); }

.section-head { max-width: 840px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head h2 { font-size: clamp(26px, 3.7vw, 42px); letter-spacing: .02em; line-height: 1.5; }
.section-head .sub-lead { color: var(--green-dark); font-weight: 700; margin: 18px 0 0; font-size: 15px; }
.section--ink .section-head .sub-lead { color: #b7e6bd; }
.section-head p.note { color: var(--muted); margin: 14px 0 0; }

.idx { font-family: var(--font-en); font-size: 14px; color: var(--green-dark); letter-spacing: .06em; text-transform: uppercase; }

/* =========================================================
   ヘッダー（白い角丸バー / フローティング）
   ========================================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding: 16px var(--gutter) 0; }
.header-inner {
  max-width: var(--max); margin-inline: auto;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(20,40,20,.10);
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 14px 0 26px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { font-family: var(--font-en); font-size: 25px; font-weight: 600; color: var(--green-dark); letter-spacing: -.01em; line-height: 1; text-transform: none; }
.brand .logo b { color: var(--ink); }
.brand .en { font-family: "Noto Sans JP", sans-serif; font-size: 10.5px; font-weight: 500; letter-spacing: .16em; color: var(--muted); display: block; text-transform: none; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink); font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--green-dark); text-decoration: none; }

/* 事業内容ドロップダウン */
.nav-dd { position: relative; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dd-caret { font-size: 10px; color: var(--green); transition: transform .25s ease; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius); box-shadow: 0 14px 36px rgba(20,40,20,.16);
  padding: 8px; min-width: 210px; display: grid; gap: 2px; z-index: 70;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px; } /* ホバーの隙間を埋める */
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd:hover .dd-caret { transform: rotate(180deg); }
.nav-dd-menu a { display: block; padding: 11px 16px; font-size: 14px; color: var(--ink); border-radius: var(--radius-sm); white-space: nowrap; }
.nav-dd-menu a:hover { background: var(--paper-2); color: var(--green-dark); text-decoration: none; }
.nav .tel { text-align: right; line-height: 1.15; padding-left: 6px; }
.nav .tel small { display: block; font-family: var(--font-en); font-size: 9.5px; letter-spacing: .06em; color: var(--muted); }
.nav .tel b { font-family: var(--font-num); font-weight: 500; font-size: 20px; color: var(--ink); letter-spacing: .01em; }
.nav .btn-head {
  background: var(--green); color: #fff; padding: 15px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  display: flex; flex-direction: column; align-items: center; line-height: 1.25; text-transform: uppercase;
}
.nav .btn-head small { font-family: "Noto Sans JP", sans-serif; font-size: 9px; letter-spacing: .04em; opacity: .92; text-transform: none; }
.nav .btn-head:hover { background: var(--green-dark); text-decoration: none; }

.nav-toggle { display: none; }
@media (max-width: 1040px) {
  .nav .tel { display: none; }
  .nav { gap: 14px; }
  .nav a:not(.btn-head) { display: none; }
  .nav .nav-dd { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: 4px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); }
  .mobile-menu { display: none; position: fixed; top: 90px; left: var(--gutter); right: var(--gutter); background: #fff; border-radius: var(--radius); box-shadow: 0 12px 40px rgba(20,40,20,.16); padding: 12px 20px; z-index: 59; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--paper-2); color: var(--ink); font-size: 15px; }
  .mobile-menu a:last-child { border-bottom: 0; }
}
@media (min-width: 1041px) { .mobile-menu { display: none; } }

/* =========================================================
   ファーストビュー（実写フルブリード＋特大英字）
   ========================================================= */
.hero { position: relative; min-height: clamp(580px, 94vh, 900px); display: flex; align-items: flex-end; background: #16331f; overflow: hidden; }

/* ヒーローのスライドショー（自動切替＋ゆっくりズーム / 森建設の演出） */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.0);
  transition: opacity 1.5s ease, transform 7s ease; will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; transform: scale(1.09); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,30,18,.48) 0%, rgba(15,30,18,.22) 36%, rgba(15,30,18,.76) 100%);
}
.hero-dots { position: absolute; right: calc(var(--gutter) - 3px); top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; gap: 10px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.42); transition: background .25s ease, height .25s ease; }
.hero-dots button.active { background: #fff; height: 26px; border-radius: 5px; }
@media (max-width: 860px) { .hero-dots { right: 14px; } }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: opacity 1s ease; } .hero-slide.active { transform: none; } }

.hero-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,33,20,.34) 0%, rgba(16,33,20,.12) 32%, rgba(16,33,20,.62) 100%),
    repeating-linear-gradient(122deg, rgba(255,255,255,.018) 0 3px, transparent 3px 12px),
    linear-gradient(135deg, #2f6b3d 0%, #1c4127 70%);
}
.hero-photo .ph-tag { position: absolute; top: calc(var(--header-h) + 12px); left: var(--gutter); font-family: var(--font-en); font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.hero-bigtext {
  position: absolute; left: 0; right: 0; bottom: 3%;
  font-family: var(--font-en); font-weight: 700; text-transform: uppercase;
  font-size: clamp(58px, 15vw, 200px); line-height: .86; letter-spacing: -.035em;
  color: var(--green); opacity: .92; white-space: nowrap; padding-left: var(--gutter); pointer-events: none; z-index: 1;
}
.hero .wrap { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(60px, 10vw, 120px); padding-top: calc(var(--header-h) + 34px); }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.hero-cat { font-family: var(--font-en); font-size: 12px; letter-spacing: .14em; color: #b6e3ad; font-weight: 500; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-size: clamp(28px, 4.6vw, 52px); line-height: 1.5; color: #fff; font-weight: 500; }
.hero h1 .em { color: #8fe39a; }
.hero .lead { margin: 26px 0 0; max-width: 540px; color: #d7e6d4; font-size: 15.5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-side { text-align: right; }
.hero-side .scroll { font-family: var(--font-en); writing-mode: vertical-rl; font-size: 11px; letter-spacing: .24em; color: rgba(255,255,255,.7); margin-left: auto; display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; }
.hero-side .scroll::after { content: ""; display: block; width: 1px; height: 56px; background: rgba(255,255,255,.6); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 26px; } .hero-side { display: none; } .hero-bigtext { font-size: clamp(48px, 18vw, 96px); } }

/* ボタン（角丸小） */
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 30px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; letter-spacing: .02em; cursor: pointer; border: 1.5px solid transparent; transition: background .2s ease, transform .15s ease, color .2s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn .arr { font-family: var(--font-en); font-weight: 600; }
.btn--solid { background: #fff; color: var(--green-dark); }
.btn--solid:hover { background: #eef5ec; }
.btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); }
.btn--line { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--line:hover { border-color: var(--green); color: var(--green-dark); }

/* =========================================================
   NEWS バー
   ========================================================= */
.newsbar { background: #fff; border-bottom: 1px solid var(--line); }
.newsbar .wrap { display: flex; align-items: center; gap: 24px; height: 60px; }
.newsbar .label { font-family: var(--font-en); font-weight: 600; color: var(--green); letter-spacing: .08em; font-size: 17px; white-space: nowrap; text-transform: uppercase; }
.newsbar .date { font-family: var(--font-en); color: var(--muted); font-size: 14px; white-space: nowrap; }
.newsbar .txt { font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.newsbar .more { margin-left: auto; font-family: var(--font-en); font-size: 12px; color: var(--green-dark); white-space: nowrap; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 640px) { .newsbar .txt { display: none; } }

/* NEWS（森建設タイプの緑帯：左=深緑→右=明るい緑＋右端パネル） */
.newsband { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(90deg, #0b2c17 0%, #135f29 50%, #1f9a3d 100%); }
.newsband::before { content: ""; position: absolute; left: -70px; top: -120px; width: 320px; height: 320px;
  border: 1px solid rgba(255,255,255,.10); border-radius: 50%; pointer-events: none; }
.nb-row { display: flex; align-items: stretch; min-height: clamp(70px, 6.5vw, 92px); position: relative; z-index: 1; }
.nb-main { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px);
  padding: 12px clamp(20px, 3vw, 44px) 12px clamp(28px, 7vw, 120px); }
.nb-en { font-family: var(--font-en); font-weight: 700; font-size: clamp(24px, 3.2vw, 42px); letter-spacing: .05em;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.3px rgba(126,212,148,.75); flex: 0 0 auto; }
.nb-line { width: clamp(18px, 2.4vw, 34px); height: 3px; background: rgba(122,206,142,.85); flex: 0 0 auto; }
.nb-date { font-family: var(--font-en); font-weight: 700; font-size: clamp(16px, 1.5vw, 21px); letter-spacing: .04em;
  color: #fff; flex: 0 0 auto; white-space: nowrap; }
.nb-title { font-weight: 700; font-size: clamp(14.5px, 1.25vw, 18px); color: #fff;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.nb-title:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.nb-circle { flex: 0 0 auto; align-self: center; width: clamp(40px, 3.6vw, 50px); height: clamp(40px, 3.6vw, 50px);
  border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--green-dark);
  font-size: clamp(15px, 1.4vw, 19px); margin-right: clamp(16px, 2.2vw, 38px); transition: transform .25s ease; }
.nb-circle:hover { text-decoration: none; transform: translateX(3px); }
.nb-panel { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #34b24a; color: #fff; font-weight: 700; font-size: clamp(14px, 1.15vw, 16px); letter-spacing: .02em;
  padding: 0 clamp(24px, 3.4vw, 52px); border-top-left-radius: clamp(34px, 4.6vw, 64px); transition: background .25s ease; }
.nb-panel:hover { background: #2ba040; color: #fff; text-decoration: none; }
.nb-panel .arr { font-family: var(--font-en); font-weight: 700; }
@media (max-width: 760px) {
  .newsband::before { display: none; }
  .nb-row { flex-direction: column; align-items: stretch; min-height: 0; }
  .nb-main { flex-wrap: wrap; gap: 6px 14px; padding: 18px 20px; }
  .nb-en { font-size: 30px; flex: 1 1 100%; }
  .nb-line { display: none; }
  .nb-title { white-space: normal; flex: 1 1 100%; }
  .nb-circle { display: none; }
  .nb-panel { border-top-left-radius: 0; padding: 14px; }
}

/* =========================================================
   会社が取り組むこと（イントロ）
   ========================================================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.intro-grid .lead-h { font-size: clamp(21px, 2.8vw, 30px); line-height: 1.7; letter-spacing: .02em; }
.intro-grid p { color: var(--ink); margin: 0 0 18px; }
.intro-grid p:last-child { margin-bottom: 0; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.stat { background: var(--paper-2); border-radius: var(--radius); padding: 28px 22px; border-top: 3px solid var(--green); }
.stat b { font-family: "Noto Serif JP", serif; font-size: clamp(24px, 3.6vw, 36px); color: var(--green-dark); display: block; line-height: 1.1; }
.stat span { font-size: 12.5px; color: var(--muted); display: block; margin-top: 10px; }
@media (max-width: 760px) { .intro-grid { grid-template-columns: 1fr; } .stat-row { grid-template-columns: 1fr 1fr; } .stat-row .stat:last-child:nth-child(odd) { grid-column: 1 / -1; } }

/* =========================================================
   事業内容カード
   ========================================================= */
.biz-list { display: grid; gap: 20px; }
.biz-item { display: grid; grid-template-columns: 64px 1fr 330px; gap: 34px; padding: 32px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s ease, transform .2s ease; }
.biz-item:hover { box-shadow: 0 16px 40px rgba(20,50,20,.10); transform: translateY(-2px); }
.biz-item .no { font-family: var(--font-en); font-size: 34px; font-weight: 700; color: var(--green); opacity: .85; }
.biz-item h3 { font-size: 22px; margin-bottom: 12px; }
.biz-item .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: 12px; color: var(--green-dark); border: 1px solid var(--paper-3); background: var(--paper-2); padding: 5px 12px; border-radius: var(--radius-sm); }
.biz-item .summary { color: var(--ink); margin: 0; }
@media (max-width: 900px) { .biz-item { grid-template-columns: 48px 1fr; } .biz-item .ph { grid-column: 1 / -1; min-height: 200px; } }

/* 事業紹介:横スライドのカルーセル（森建設の事業紹介スライダーを再現） */
.biz-carousel { position: relative; }
.biz-track {
  position: relative;
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 0 8px; margin: 0 calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none;
}
.biz-track::-webkit-scrollbar { display: none; }
.bizslide {
  position: relative; flex: 0 0 clamp(280px, 62%, 700px); scroll-snap-align: center;
  aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: #1c4127;
  border: 1px solid var(--line); display: block;
}
.bizslide, .bizslide:hover { text-decoration: none; }
.bizslide .ov::after { content: "詳しく見る →"; font-family: var(--font-en); font-size: 12px; color: #bdeab4; margin-top: 14px; letter-spacing: .04em; }
.bizslide .ph-bg { position: absolute; inset: 0; }
.bizslide:nth-child(4n+1) .ph-bg { background: linear-gradient(150deg, #2f6b3d, #1b3f26); }
.bizslide:nth-child(4n+2) .ph-bg { background: linear-gradient(150deg, #34503c, #1f2c23); }
.bizslide:nth-child(4n+3) .ph-bg { background: linear-gradient(150deg, #3d7a47, #21492b); }
.bizslide:nth-child(4n+4) .ph-bg { background: linear-gradient(150deg, #2c4a3a, #1a2e22); }
.bizslide .ph-bg::before { content: "PHOTO"; position: absolute; top: 14px; left: 16px; font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.5); }
.bizslide .ph-bg::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(255,255,255,.02) 0 3px, transparent 3px 12px); }
.bizslide .ov {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(22px, 3vw, 40px); z-index: 2;
  background: linear-gradient(0deg, rgba(14,28,18,.86) 0%, rgba(14,28,18,.30) 46%, rgba(14,28,18,0) 72%);
}
.bizslide .no { font-family: var(--font-en); font-size: 13px; color: rgba(255,255,255,.6); position: absolute; top: clamp(20px,3vw,34px); right: clamp(20px,3vw,34px); }
.bizslide h3 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 4px; }
.bizslide .en { font-family: var(--font-en); text-transform: uppercase; color: #8fe39a; font-size: 13px; letter-spacing: .06em; margin-bottom: 14px; }
.bizslide p { color: #dfe9db; font-size: 13.5px; margin: 0; max-width: 540px; }
.bizslide .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.bizslide .tags .tag { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #eaf3e8; }

.biz-nav { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.biz-dots { display: flex; gap: 10px; }
.biz-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); border: 0; padding: 0; cursor: pointer; transition: background .2s ease, width .2s ease; }
.biz-dot.active { background: var(--green); width: 28px; border-radius: 5px; }
.biz-arrows { margin-left: auto; display: flex; gap: 10px; }
.biz-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: #fff; color: var(--green-dark); display: grid; place-items: center; cursor: pointer; font-family: var(--font-en); font-size: 17px; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.biz-arrow:hover { border-color: var(--green); background: var(--green); color: #fff; }
@media (max-width: 600px) { .bizslide { flex-basis: 84%; aspect-ratio: 4 / 5; } }

/* 写真プレースホルダ */
.ph { background: linear-gradient(135deg, #e6ebe1, #dbe2d4); border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: flex-end; position: relative; overflow: hidden; min-height: 220px; }
.ph::before { content: "PHOTO"; position: absolute; top: 12px; left: 14px; font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; color: #9aa292; font-weight: 600; }
.ph .cap { font-size: 12px; color: #41483c; background: rgba(255,255,255,.86); padding: 8px 12px; margin: 12px; line-height: 1.5; border-radius: var(--radius-sm); border-left: 3px solid var(--green); }
.ph--tall { min-height: 380px; }
.ph--green { background: linear-gradient(135deg, #2c6b3a, #17381f); }
.ph--green::before { color: #6f9b73; }
.ph--green .cap { background: rgba(20,40,26,.74); color: #d6e6d6; }

/* =========================================================
   事業詳細ブロック
   ========================================================= */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 68px); align-items: center; }
.detail.rev .detail-media { order: 2; }
.detail h2 { font-size: clamp(23px, 3vw, 33px); margin-bottom: 8px; }
.detail .sub { color: var(--green-dark); font-weight: 700; font-size: 14px; letter-spacing: .04em; margin-bottom: 18px; }
.detail p { color: var(--ink); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink); line-height: 1.7; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 3px; background: var(--green); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 11.5L3 8l1.2-1.2 2.3 2.3 5-5L12.7 5z'/></svg>") center/14px no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 11.5L3 8l1.2-1.2 2.3 2.3 5-5L12.7 5z'/></svg>") center/14px no-repeat; }
.detail .more { margin-top: 26px; display: inline-flex; }
@media (max-width: 800px) { .detail { grid-template-columns: 1fr; } .detail.rev .detail-media { order: 0; } }

.minihead { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.minihead .idx { white-space: nowrap; }
.minihead h2 { font-size: clamp(22px, 3vw, 31px); }

/* =========================================================
   ターゲット2分割
   ========================================================= */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.aud-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; }
.aud-card .kicker { font-family: var(--font-en); font-size: 14px; letter-spacing: .04em; color: var(--green-dark); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; }
.aud-card h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 16px; line-height: 1.6; }
.aud-card p { color: var(--ink); margin: 0 0 18px; }
.aud-card ul { margin: 0 0 26px; padding-left: 0; list-style: none; display: grid; gap: 9px; }
.aud-card ul li { padding-left: 22px; position: relative; font-size: 14.5px; }
.aud-card ul li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 7px; height: 7px; border-radius: 2px; background: var(--green); }
.aud-card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 760px) { .audience { grid-template-columns: 1fr; } }

/* =========================================================
   開発の流れ
   ========================================================= */
.flow { display: grid; gap: 14px; }
.flow-step { display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding: 26px 30px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.flow-step .no { font-family: var(--font-en); font-size: 15px; letter-spacing: .06em; color: #7fe08f; text-transform: uppercase; }
.flow-step h3 { font-size: 19px; margin-bottom: 8px; color: #fff; }
.flow-step p { margin: 0; color: #cfe2cb; font-size: 14.5px; }
@media (max-width: 640px) { .flow-step { grid-template-columns: 1fr; gap: 8px; } }

/* =========================================================
   対応できる土地 / 確認項目
   ========================================================= */
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 60px); }
.land-list { list-style: none; margin: 0; padding: 0; }
.land-list li { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.land-list li b { font-weight: 600; font-size: 15.5px; }
.land-list li span { color: var(--green-dark); font-size: 12px; background: var(--paper-2); padding: 3px 10px; border-radius: var(--radius-sm); }
.check-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.check-table th, .check-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.check-table tr:last-child th, .check-table tr:last-child td { border-bottom: 0; }
.check-table th { background: var(--paper-2); font-weight: 700; width: 34%; font-size: 13px; color: var(--green-dark); }
.check-table td { color: var(--ink); }
@media (max-width: 760px) { .split2 { grid-template-columns: 1fr; } }

/* =========================================================
   選ばれる理由
   ========================================================= */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.reason .rn { font-family: var(--font-en); font-size: 30px; font-weight: 700; color: var(--green); opacity: .85; }
.reason h3 { font-size: 18px; margin: 10px 0 12px; line-height: 1.6; }
.reason p { margin: 0; font-size: 14px; color: var(--muted); }
@media (max-width: 820px) { .reasons { grid-template-columns: 1fr; } }

/* WHY CHOOSE US:左テキスト＋番号リスト／右に写真（上下に余白・高さは左の文字とそろえる） */
.whyus { background: var(--paper-2); }
.whyus { padding-block: 0; }
.whyus .wrap { padding-block: clamp(56px, 7vw, 104px); }
.whyus-grid { display: grid; grid-template-columns: 1fr clamp(320px, 40vw, 540px); gap: clamp(36px, 5vw, 72px); align-items: stretch; }
.whyus-text { max-width: 560px; }
.whyus-text .en-stack { margin-bottom: 14px; font-size: clamp(15px, 1.5vw, 19px); }
.whyus-text > h2 { font-size: clamp(21px, 2.7vw, 31px); line-height: 1.55; margin-bottom: 6px; }
.whyus-photo { display: flex; }
.whyus-photo .ph { width: 100%; height: 100%; min-height: 380px; border-radius: var(--radius); border: 1px solid var(--line); }
.why-list { list-style: none; margin: 22px 0 26px; padding: 0; }
.why-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); }
.why-list .n { font-family: var(--font-en); color: var(--green); font-weight: 700; font-size: 15px; }
.why-list .tx { font-size: 13px; color: var(--muted); line-height: 1.65; }
.why-list .tx b { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: 15.5px; color: var(--ink); display: block; margin-bottom: 3px; }
.why-btn { gap: 14px; }
.why-btn .circle-arrow.sm { background: #fff; color: var(--green-dark); width: 26px; height: 26px; }
.why-btn:hover .circle-arrow.sm { background: #fff; color: var(--green-dark); }
@media (max-width: 900px) {
  .whyus-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  .whyus-photo .ph { min-height: 280px; height: 280px; }
  .whyus .wrap { padding-block: clamp(44px, 8vw, 64px); }
  .whyus-text { max-width: none; }
}

/* =========================================================
   よくある相談
   ========================================================= */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 50px 22px 54px; position: relative; font-weight: 500; font-size: 16px; font-family: "Noto Serif JP", serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 26px; top: 22px; font-family: var(--font-en); color: var(--green); font-weight: 700; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 19px; font-size: 22px; color: var(--green-dark); transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq .ans { padding: 0 24px 24px 54px; color: var(--ink); font-size: 14.5px; }

/* =========================================================
   会社情報
   ========================================================= */
.company { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 14.5px; }
.info-table th { width: 130px; color: var(--green-dark); font-weight: 700; }
@media (max-width: 760px) { .company { grid-template-columns: 1fr; } }

/* =========================================================
   CTA / お問い合わせ
   ========================================================= */
.cta { color: #e7ece4; position: relative; overflow: hidden;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(180deg, rgba(16,24,19,.78) 0%, rgba(16,24,19,.84) 55%, rgba(16,24,19,.94) 100%),
    url('../img/site/rooftop-solar-aichi.jpg');
  background-size: cover; background-position: center; }
.cta .wrap { padding-block: clamp(56px, 7vw, 84px); position: relative; z-index: 2; }
.cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.cta h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.5; }
.cta p { color: #bfc7ba; margin: 20px 0 0; }
.cta-lead { display: flex; flex-direction: column; justify-content: center; }
.cta-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 11px; }
.cta-points li { position: relative; padding-left: 26px; font-size: 14px; color: #cfd6c9; }
.cta-points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 8px;
  border-left: 2px solid #7fe08f; border-bottom: 2px solid #7fe08f; transform: rotate(-45deg); }
.cta-box { background: rgba(10,16,12,.46); border: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: clamp(28px, 2.6vw, 38px); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: center; }
.cb-label { font-size: 13px; color: #cfd6c9; }
.cb-hours { font-family: var(--font-en); font-size: 11px; letter-spacing: .1em; color: #9ec6a8; margin-top: 5px; }
.cb-tel { display: inline-block; font-family: var(--font-num); font-weight: 500;
  font-size: clamp(30px, 3.2vw, 40px); color: #fff; letter-spacing: .01em; margin-top: 8px; }
.cb-tel:hover { color: #fff; text-decoration: none; }
.cb-div { display: block; height: 1px; background: rgba(255,255,255,.12); margin: clamp(20px, 2.4vw, 28px) 0; }
.cb-note { font-size: 12.5px; line-height: 1.85; color: #9aa395; margin: 0 0 18px; }
.cta-box .btn { width: 100%; justify-content: center; }
@media (max-width: 760px) { .cta-grid { grid-template-columns: 1fr; align-items: stretch; } }

/* =========================================================
   相談ガイド役（キャラクター＋吹き出し）
   ========================================================= */
.guide-fig { flex: 0 0 auto; width: 84px; height: 84px; }
.guide-fig svg { display: block; width: 100%; height: 100%; }
.guide { display: flex; align-items: flex-start; gap: 16px; }
.guide-msg { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 19px; box-shadow: 0 8px 22px rgba(20,30,24,.07); }
.guide-msg::before { content: ""; position: absolute; left: -8px; top: 24px; width: 15px; height: 15px; background: #fff; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }
.guide-msg p { margin: 0; font-size: 14px; line-height: 1.8; color: var(--ink); }
.guide-by { display: block; margin-top: 8px; font-size: 11px; color: var(--green-dark); font-weight: 700; letter-spacing: .04em; }
@media (max-width: 520px) {
  .guide { flex-direction: column; align-items: center; text-align: center; }
  .guide-msg::before { left: 50%; top: -8px; transform: translateX(-50%) rotate(45deg); border-left: 1px solid var(--line); border-top: 1px solid var(--line); border-bottom: 0; }
}
/* CTAカード内の小さなガイド */
.cb-guide { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.cb-guide .guide-fig { width: 50px; height: 50px; }
.cb-guide p { margin: 0; font-size: 13px; line-height: 1.6; color: #e7ece4; }
.cb-guide p b { color: #7fe08f; font-weight: 700; }

/* フォーム */
.form-grid { display: grid; gap: 18px; }
.form-grid .two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field label .req { color: #d05a39; font-size: 11px; margin-left: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-family: inherit; font-size: 15px; background: #fff; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.form-note { font-size: 12.5px; color: var(--muted); }
@media (max-width: 600px) { .form-grid .two { grid-template-columns: 1fr; } }

/* CONTACT ヒーロー:実写フルブリード＋特大CONTACT（森建設の contact を再現） */
.contact-hero { position: relative; overflow: hidden; background: #dde9f1; }
.contact-hero .ch-photo { position: absolute; inset: 0; background: linear-gradient(155deg, #c3deef 0%, #93bcdb 48%, #6699c2 100%); }
.contact-hero .ch-photo::before { content: "PHOTO"; position: absolute; top: 14px; right: 18px; font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.7); }
.contact-hero .ch-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(98deg, rgba(244,248,250,.94) 0%, rgba(244,248,250,.78) 34%, rgba(244,248,250,.28) 62%, rgba(244,248,250,0) 86%); }
.contact-hero .wrap { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 110px); }
.contact-hero .ch-en { font-family: var(--font-en); font-weight: 700; text-transform: uppercase; color: var(--green); font-size: clamp(42px, 7.5vw, 106px); line-height: .95; letter-spacing: -.02em; margin: 0; }
.contact-hero h2 { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(21px, 2.5vw, 29px); color: var(--ink); margin: 14px 0 0; letter-spacing: .04em; }
.contact-hero .ch-lead { color: var(--ink); margin: 22px 0 0; max-width: 520px; font-size: 15px; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 16px; margin-top: 40px; }
.ch-tel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 28px; display: flex; flex-direction: column; justify-content: center; }
.ch-tel small { font-family: var(--font-en); font-size: 10px; letter-spacing: .08em; color: var(--muted); }
.ch-tel b { font-family: var(--font-num); font-weight: 500; font-size: clamp(18px, 1.7vw, 23px); color: var(--ink); letter-spacing: .01em; }
.ch-btn { padding-inline: 34px; }
@media (max-width: 560px) { .contact-actions { flex-direction: column; } .ch-tel { align-items: flex-start; } }

/* お問い合わせフォーム(明るい面のカード) */
.contact-form-sec { background: var(--paper-2); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 46px); max-width: 820px; margin-inline: auto; }
.form-card .field label { color: var(--ink); }
.form-card .form-note a { color: var(--green-dark); }
.form-card .field input::placeholder, .form-card .field textarea::placeholder { color: #9aa295; }

/* =========================================================
   フッター（チャコール＋特大英字）
   ========================================================= */
.site-footer { background: var(--charcoal); color: #c7cdc3; position: relative; overflow: hidden; }
.site-footer .wrap { padding-block: 52px 30px; position: relative; z-index: 2; }
.foot-en { font-family: var(--font-en); font-weight: 700; text-transform: uppercase; white-space: nowrap; color: rgba(10,40,21,.55); font-size: clamp(44px, 13.8vw, 200px); line-height: .88; letter-spacing: -.035em; margin: -6px 0 38px; }
/* 上段:ブランド＋連絡先（左）／ナビ3列（右） */
.foot-main { display: grid; grid-template-columns: 1.1fr 1.5fr; gap: clamp(36px, 5vw, 72px); align-items: start; padding-bottom: 40px; margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.foot-brand .logo { font-family: "Noto Serif JP", serif; font-size: 20px; color: #fff; letter-spacing: .04em; }
.foot-brand p { font-size: 13px; color: #9aa395; margin: 14px 0 0; }
.foot-addr { font-size: 12.5px; color: #8a9286; margin-top: 12px !important; }
.foot-brand .foot-tel { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.foot-tel small { font-size: 11px; letter-spacing: .04em; color: #9ec6a8; }
.foot-tel a { font-family: var(--font-num); font-weight: 500; font-size: 25px; color: #fff; letter-spacing: .01em; }
.foot-tel a:hover { color: #fff; text-decoration: none; }

.foot-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* 連携先ロゴ行（森建設のパートナーロゴ列） */
.foot-partners { padding: 32px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.14); }
.foot-partners .fp-label { font-family: var(--font-en); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #7fe08f; display: block; margin-bottom: 16px; }
.fp-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.fp-logo { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.03); border-radius: var(--radius-sm); padding: 11px 18px; font-size: 12.5px; color: #c7cdc3; }
@media (max-width: 760px) { .foot-main { grid-template-columns: 1fr; gap: 36px; } }
.foot-col h4 { font-family: var(--font-en); font-size: 13px; letter-spacing: .06em; color: #7fe08f; margin-bottom: 14px; text-transform: uppercase; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot-col a { color: #c7cdc3; font-size: 13.5px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; color: #8a9286; }
.foot-bottom a { color: #8a9286; }
@media (max-width: 560px) { .foot-nav { grid-template-columns: 1fr 1fr; gap: 24px 20px; } }

/* =========================================================
   下層ページ用
   ========================================================= */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .wrap { padding-block: clamp(48px, 6vw, 76px); padding-top: calc(var(--header-h) + 44px); position: relative; z-index: 2; }
.page-hero .en-giant { position: absolute; right: -2%; bottom: -12%; z-index: 1; pointer-events: none; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); line-height: 1.45; }
.page-hero .lead { color: var(--muted); margin: 22px 0 0; max-width: 740px; }

.prose { max-width: 820px; }
.prose h2 { font-size: clamp(21px, 2.8vw, 28px); margin: 54px 0 18px; padding-bottom: 14px; border-bottom: 2px solid var(--green); }
.prose h3 { font-size: 18px; margin: 34px 0 12px; color: var(--green-dark); }
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 22px; }
.prose ul li { padding-left: 24px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 9px; height: 9px; border-radius: 2px; background: var(--green); }
.callout { background: var(--paper-2); border-left: 4px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 22px 24px; margin: 26px 0; }
.callout p { margin: 0; font-size: 14.5px; }

/* =========================================================
   実績 / OUR WORKS（白黒メーソンリー＋スクロール出現 / 森建設の home_works を再現）
   ========================================================= */
.works { position: relative; overflow: hidden; }
.works .en-back { position: absolute; right: -1%; top: clamp(40px, 7vw, 90px); z-index: 0; pointer-events: none; }
.works-grid2 { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .82fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.works-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.works-masonry .col { display: grid; gap: 16px; align-content: start; }
.works-masonry .col:nth-child(2) { margin-top: 52px; }
.wshot {
  aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line); background: linear-gradient(150deg, #cfd6cb, #b6bfb2);
  background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.03); transition: filter .55s ease, transform .55s ease, box-shadow .3s ease; cursor: pointer;
}
.wshot:nth-child(3n+2) { background-color: #c4cdc6; }
.wshot:nth-child(3n+3) { background-color: #d3d8cf; }
.wshot::before { content: "PHOTO"; position: absolute; top: 10px; left: 12px; font-family: var(--font-en); font-size: 9px; letter-spacing: .16em; color: rgba(40,46,38,.45); z-index: 2; }
.wshot::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(0,0,0,.018) 0 3px, transparent 3px 11px); }
.wshot.has-photo::before, .wshot.has-photo::after { display: none; }
.wshot:hover { filter: grayscale(0) contrast(1); transform: scale(1.025); box-shadow: 0 18px 40px rgba(20,40,20,.18); z-index: 3; }
.wshot .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 12px 12px; font-size: 11.5px; color: #fff; line-height: 1.5; background: linear-gradient(0deg, rgba(15,28,18,.85), transparent); }
.wshot .cap b { font-weight: 700; }
.wshot .cap em { font-style: normal; font-family: var(--font-en); font-size: 10px; color: #9fe6a8; display: block; margin-bottom: 2px; letter-spacing: .04em; }

.works-side { position: sticky; top: 108px; }
.works-side h2 { font-size: clamp(23px, 3vw, 33px); line-height: 1.55; margin-bottom: 18px; }
.works-side .desc { color: var(--muted); font-size: 14.5px; margin: 0 0 8px; }
.cat-list { margin-top: 30px; border-top: 1px solid var(--line); }
.cat-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 2px; border-bottom: 1px solid var(--line); color: var(--ink); }
.cat-row:hover { text-decoration: none; }
.cat-row .lbl b { font-family: "Noto Serif JP", serif; font-size: 16px; display: block; }
.cat-row .lbl span { font-size: 12px; color: var(--muted); }
.circle-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex: 0 0 auto; font-family: var(--font-en); font-size: 16px; transition: background .2s ease, transform .2s ease; }
.cat-row:hover .circle-arrow { background: var(--green-dark); transform: translateX(3px); }

/* 森建設の絞り込み(対応分野/発注元/地域)を再現:見出し＋2列チップ＋緑の丸い矢印 */
.works-filter { margin-top: 30px; display: grid; gap: 22px; }
.filter-group h4 { font-family: "Noto Serif JP", serif; font-size: 18px; margin: 0 0 12px; color: var(--ink); }
.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chip {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 9px 9px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--ink); background: #fff; transition: border-color .2s ease, background .2s ease;
}
.chip:hover { border-color: var(--green); background: var(--paper-2); text-decoration: none; }
.circle-arrow.sm { width: 28px; height: 28px; font-size: 13px; }
.chip:hover .circle-arrow { background: var(--green-dark); }
@media (max-width: 560px) { .chips { grid-template-columns: 1fr; } }

@media (max-width: 920px) {
  .works-grid2 { grid-template-columns: 1fr; gap: 40px; }
  .works-side { position: static; }
}
@media (max-width: 560px) {
  .works-masonry { grid-template-columns: repeat(2, 1fr); }
  .works-masonry .col:nth-child(3) { display: none; }
}

/* =========================================================
   現場の記録（写真の縦スクロール演出 / 森建設の slideUp・slideDown を再現）
   ========================================================= */
.fieldscroll { background: var(--charcoal); color: #e7ebe4; overflow: hidden; position: relative; }
.fieldscroll .fs-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: end; margin-bottom: clamp(28px, 4vw, 44px); }
.fieldscroll h2 { color: #fff; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.5; }
.fieldscroll .fs-head p { color: #b9c2b4; margin: 0; font-size: 14.5px; }
.fieldscroll .eyebrow { color: #7fe08f; }
.fieldscroll .eyebrow::before { background: #7fe08f; }

.scroll-stage {
  position: relative; height: clamp(440px, 62vh, 660px);
  -webkit-mask: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
          mask: linear-gradient(180deg, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.scroll-cols { display: flex; gap: 20px; justify-content: center; height: 100%; }
.scroll-col { flex: 1 1 0; min-width: 0; max-width: 300px; overflow: hidden; }
.scroll-col__inner { display: flex; flex-direction: column; gap: 20px; animation: fsScrollUp 30s linear infinite; will-change: transform; }
.scroll-col--down .scroll-col__inner { animation-name: fsScrollDown; }
.scroll-col--slow .scroll-col__inner { animation-duration: 38s; }
.scroll-stage:hover .scroll-col__inner { animation-play-state: paused; }

.shot {
  position: relative; flex: 0 0 auto; aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(150deg, #33503c, #1d3325);
}
.shot:nth-child(3n+1) { background: linear-gradient(150deg, #2f6b3d, #1c4127); }
.shot:nth-child(3n+2) { background: linear-gradient(150deg, #3b4a40, #232b25); }
.shot::before { content: "PHOTO"; position: absolute; top: 10px; left: 12px; font-family: var(--font-en); font-size: 9px; letter-spacing: .16em; color: rgba(255,255,255,.45); }
.shot::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(255,255,255,.02) 0 3px, transparent 3px 11px); }
.shot .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 12px; font-size: 12px; color: #eef3ec; line-height: 1.5; background: linear-gradient(0deg, rgba(15,28,18,.82), transparent); }
@media (max-width: 680px) { .scroll-col:nth-child(3) { display: none; } }
@media (max-width: 460px) { .scroll-col:nth-child(2) { display: none; } .scroll-col { max-width: none; } }

@keyframes fsScrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes fsScrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

/* 出現アニメ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-col__inner { animation: none !important; }
}

/* =========================================================
   INFORMATION:2枚の大型バナーカード（森建設の info を再現）
   ========================================================= */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.infocard { position: relative; min-height: clamp(300px, 33vw, 420px); border-radius: var(--radius); overflow: hidden; display: block; }
.infocard:hover { text-decoration: none; }
/* 写真を感じさせる明るめのプレースホルダ（実写差し替え前提） */
.infocard .bg { position: absolute; inset: 0; transition: transform .6s ease; background-size: cover; background-position: center; }
.infocard:nth-child(1) .bg { background: linear-gradient(135deg, #7c8d79 0%, #51604f 52%, #33403a 100%); }
.infocard:nth-child(2) .bg { background: linear-gradient(160deg, #9cc0de 0%, #5e88af 50%, #38597a 100%); }
.infocard .bg .grain { position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px); }
.infocard .bg::before { content: "PHOTO"; position: absolute; top: 14px; left: 16px; font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.7); z-index: 2; }
/* 文字側(左上)だけ暗く、右下に向かって写真が見えるグラデ */
.infocard .bg::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.infocard:nth-child(1) .bg::after { background: linear-gradient(118deg, rgba(14,21,16,.86) 0%, rgba(14,21,16,.58) 36%, rgba(14,21,16,.16) 68%, rgba(14,21,16,0) 100%); }
.infocard:nth-child(2) .bg::after { background: linear-gradient(118deg, rgba(12,22,36,.86) 0%, rgba(12,22,36,.56) 36%, rgba(12,22,36,.14) 68%, rgba(12,22,36,0) 100%); }
.infocard:hover .bg { transform: scale(1.05); }
.infocard .inner { position: relative; z-index: 2; padding: clamp(28px, 3.6vw, 46px); }
.infocard h3 { color: #fff; font-size: clamp(24px, 2.9vw, 33px); margin-bottom: 2px; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.infocard .en { font-family: var(--font-en); color: #7fe08f; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; margin: 0 0 16px; }
.infocard .lead2 { color: rgba(255,255,255,.92); font-size: 14px; margin: 0; max-width: 340px; line-height: 1.85; }
.infocard .circle-arrow { position: absolute; right: clamp(22px, 3vw, 40px); bottom: clamp(22px, 3vw, 40px); width: 56px; height: 56px; background: #fff; color: var(--green-dark); z-index: 2; transition: background .2s ease, color .2s ease, transform .2s ease; }
.infocard:hover .circle-arrow { background: var(--green); color: #fff; transform: translateX(3px); }
@media (max-width: 760px) { .info-cards { grid-template-columns: 1fr; } }

/* =========================================================
   緑帯の巨大ワードマーク(横スライド / 森建設の CRAFTING-TOMORROW を再現)
   ========================================================= */
/* カードが緑帯に重なる(森建設のレイアウト) */
.info { position: relative; z-index: 2; padding-bottom: 0; }
.info-cards { position: relative; z-index: 2; }
.wordmark-band {
  overflow: hidden; position: relative; z-index: 1;
  margin-top: 0;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(20px, 3.4vw, 52px);
  /* 森建設と同じ鮮やか緑→深緑のグラデーション */
  background: linear-gradient(118deg, #34b257 0%, #1d9a47 46%, #0a843a 100%);
}
.wm-row { display: flex; width: max-content; will-change: transform; } /* 横移動は縦スクロール連動でJS制御 */
.wm-set {
  font-family: var(--font-en); font-weight: 700; text-transform: uppercase; white-space: nowrap;
  font-size: clamp(30px, 7vw, 110px); line-height: 1; letter-spacing: -.04em;
  color: rgba(9,42,21,.5); padding-right: .14em;
}
.wm-set .wm-dot { color: rgba(255,255,255,.5); padding: 0 .2em; }
@media (prefers-reduced-motion: reduce) { .wm-row { animation: none; } }
/* スマホ:カードは縦積みになるので重なりを解除（普通に下へ） */
@media (max-width: 760px) {
  .info { padding-bottom: clamp(40px, 8vw, 60px); }
  .wordmark-band { margin-top: 0; padding-top: clamp(38px, 8vw, 66px); }
}

/* =========================================================
   カスタムカーソル(点＋追従リング / 森建設の cursor・follower を再現)
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; mix-blend-mode: exclusion;
  translate: -50% -50%; will-change: transform;
  opacity: 0; transition: opacity .3s ease;
}
.cursor-ready .cursor-dot, .cursor-ready .cursor-ring { opacity: 1; }
.cursor-dot { width: 8px; height: 8px; background: #fff; z-index: 10001; }
.cursor-ring {
  width: 42px; height: 42px; border: 1px solid #fff; z-index: 10000;
  transition: width .3s ease, height .3s ease, background-color .3s ease, opacity .3s ease;
}
.cursor-ring.is-hover { width: 70px; height: 70px; background-color: rgba(255,255,255,.10); }
.cursor-ring.is-down { width: 30px; height: 30px; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* =========================================================
   実写イメージ（暫定:フリー写真。リアースの実写へ差し替え前提）
   ========================================================= */
/* PHOTOラベルは実写を入れたので非表示 */
.ph::before, .ph-bg::before, .wshot::before, .shot::before,
.infocard .bg::before, .contact-hero .ch-photo::before { content: ""; display: none; }
.hero-photo .ph-tag { display: none; }
.ph, .ph-bg, .wshot, .shot, .infocard .bg, .contact-hero .ch-photo {
  background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
}

/* ヒーロー（実写＋暗幕で白文字を可読に） */
.hero-photo {
  background:
    linear-gradient(180deg, rgba(15,30,18,.46) 0%, rgba(15,30,18,.22) 36%, rgba(15,30,18,.74) 100%),
    url('../img/site/battery-aichi-01.jpg') center/cover no-repeat !important;
}

/* 事業紹介カルーセル（自社の現場写真） */
.bizslide:nth-child(1) .ph-bg { background-image: url('../img/site/battery-aichi-01.jpg'); }
.bizslide:nth-child(2) .ph-bg { background-image: url('../img/site/battery-low-image.jpg'); }
.bizslide:nth-child(3) .ph-bg { background-image: url('../img/site/agrivoltaic-saitama-01.jpg'); }
.bizslide:nth-child(4) .ph-bg { background-image: url('../img/site/rooftop-solar-aichi.jpg'); }

/* 事業詳細セクションの写真（自社の現場写真） */
#battery .ph     { background-image: url('../img/site/battery-aichi-01.jpg'); }
#battery-low .ph { background-image: url('../img/site/battery-low-image.jpg'); }
#agri .ph        { background-image: url('../img/site/agrivoltaic-saitama-02.jpg'); }
#nonfit .ph      { background-image: url('../img/site/rooftop-solar-01.jpg'); }

/* 実績メーソンリー（白黒） */
.wshot:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=600&q=60'); }
.wshot:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1545209463-e2825498edbf?w=600&q=60'); }
.wshot:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=600&q=60'); }
.wshot:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=600&q=60'); }
.wshot:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=600&q=60'); }
.wshot:nth-child(6) { background-image: url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=600&q=60'); }
.wshot:nth-child(7) { background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=600&q=60'); }
.wshot:nth-child(8) { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=600&q=60'); }
.wshot:nth-child(9) { background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=600&q=60'); }

/* 現場の記録 縦スクロール写真 */
.shot:nth-child(5n+1) { background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=520&q=60'); }
.shot:nth-child(5n+2) { background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=520&q=60'); }
.shot:nth-child(5n+3) { background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=520&q=60'); }
.shot:nth-child(5n+4) { background-image: url('https://images.unsplash.com/photo-1545209463-e2825498edbf?w=520&q=60'); }
.shot:nth-child(5n+5) { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=520&q=60'); }

/* INFORMATION バナー */
.infocard:nth-child(1) .bg { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1000&q=70'); }
.infocard:nth-child(2) .bg { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1000&q=70'); }

/* CONTACT ヒーロー（空＋現場） */
.contact-hero .ch-photo { background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1500&q=70'); }

/* 選ばれる理由の写真（現場に立つ様子） */
.whyus-photo .ph { background-image: url('../img/site/solar-install-mie.jpg'); }
.whyus-photo .ph--green { background-color: transparent; }

/* =========================================================
   ▼▼▼ CV強化ブロック（マーケティング侍）× デザイン品質（デザスク）▼▼▼
   既存トークン（緑5%運用・広め余白・明朝見出し・角丸5px）を踏襲。
   ========================================================= */

/* --- ① ヒーロー内 安心3点（リスク逆転を前倒し） --- */
.hero-assurance { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-assurance li { position: relative; padding-left: 24px; font-size: 13px; color: #dcece0; letter-spacing: .01em; }
.hero-assurance li::before { content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 7px;
  border-left: 2px solid #8fe39a; border-bottom: 2px solid #8fe39a; transform: rotate(-45deg); }

/* --- ② 信頼バンド（実在の事実だけを"先出し"） --- */
.trustband { background: #fff; border-bottom: 1px solid var(--line); }
.trustband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tb-item { padding: 22px clamp(16px, 2.2vw, 30px); position: relative; display: flex; flex-direction: column; gap: 5px; }
.tb-item + .tb-item::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--line); }
.tb-item .tb-en { font-family: var(--font-en); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); }
.tb-item b { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: clamp(15px, 1.35vw, 18px); color: var(--ink); line-height: 1.5; letter-spacing: .01em; }
.tb-item b .num { font-family: var(--font-num); font-weight: 500; }
.tb-item span { font-size: 12px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) {
  .trustband .wrap { grid-template-columns: 1fr 1fr; }
  .tb-item:nth-child(2)::before, .tb-item:nth-child(4)::before { display: none; }
  .tb-item:nth-child(3), .tb-item:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 440px) { .trustband .wrap { grid-template-columns: 1fr; } .tb-item::before { display: none !important; } .tb-item + .tb-item { border-top: 1px solid var(--line); } }

/* --- ③ 中間CTA（各主要セクション末の小型導線） --- */
.midcta { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px) clamp(24px, 3.4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-top: clamp(34px, 5vw, 56px); }
.midcta .mc-tx { min-width: 0; }
.midcta .mc-tx b { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(17px, 2vw, 22px); color: var(--ink); display: block; line-height: 1.55; }
.midcta .mc-tx span { font-size: 13px; color: var(--muted); display: block; margin-top: 6px; }
.midcta .btn { flex: 0 0 auto; }
.section--ink .midcta { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); border-left-color: var(--green); }
.section--ink .midcta .mc-tx b { color: #fff; }
.section--ink .midcta .mc-tx span { color: #b9c2b4; }
@media (max-width: 620px) { .midcta { flex-direction: column; align-items: flex-start; } .midcta .btn { width: 100%; justify-content: center; } }

/* --- ④ お客様の声（導入・ご相談の記録） --- */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column; }
.voice .v-tag { align-self: flex-start; font-size: 11.5px; color: var(--green-dark); background: var(--paper-2); border: 1px solid var(--paper-3); padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; letter-spacing: .02em; }
.voice .v-quote { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(16px, 1.7vw, 19px); line-height: 1.75; color: var(--ink); margin: 0 0 18px; letter-spacing: .01em; }
.voice .v-quote::before { content: "“"; font-family: var(--font-en); color: var(--green); font-size: 30px; line-height: 0; margin-right: 2px; vertical-align: -2px; }
.voice .v-body { font-size: 13.5px; color: var(--muted); line-height: 1.9; margin: 0 0 20px; }
.voice .v-metric { margin-top: auto; display: flex; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.voice .v-metric div { display: flex; flex-direction: column; }
.voice .v-metric b { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); color: var(--green-dark); line-height: 1.1; }
.voice .v-metric b .unit { font-size: 12px; color: var(--muted); font-family: "Noto Sans JP", sans-serif; font-weight: 500; margin-left: 3px; }
.voice .v-metric span { font-size: 12px; color: var(--muted); margin-top: 5px; }
.voice .v-by { font-size: 12px; color: var(--muted); margin-top: 16px; }
.voice .v-by b { color: var(--ink); font-weight: 700; }
@media (max-width: 920px) { .voices-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }

/* --- ⑤ 提携・連携先バンド（権威・明るい面版） --- */
.partners-band { border-top: 1px solid var(--line); margin-top: clamp(44px, 6vw, 70px); padding-top: clamp(34px, 4vw, 48px); }
.partners-band .pb-label { font-family: var(--font-en); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); display: block; margin-bottom: 6px; }
.partners-band .pb-note { font-size: 12.5px; color: var(--muted); margin: 0 0 18px; }
.pb-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.pb-logo { border: 1px solid var(--line-strong); background: var(--paper-2); border-radius: var(--radius-sm); padding: 11px 18px; font-size: 12.5px; color: var(--ink); }
.pb-logo.is-slot { border-style: dashed; color: var(--muted); }

/* --- ⑥ リスクリバーサル（保証）バンド：CTA直前 --- */
.assure { background: var(--paper-2); border-top: 1px solid var(--line); }
.assure .wrap { padding-block: clamp(40px, 5vw, 60px); }
.assure-head { text-align: center; margin-bottom: clamp(26px, 3.4vw, 38px); }
.assure-head .eyebrow { justify-content: center; }
.assure-head h2 { font-size: clamp(21px, 2.6vw, 29px); line-height: 1.5; }
.assure-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.assure-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2vw, 26px) clamp(16px, 1.6vw, 20px); text-align: center; }
.assure-card .ac-ic { width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--green-dark); }
.assure-card .ac-ic svg { width: 20px; height: 20px; }
.assure-card b { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: 14.5px; color: var(--ink); display: block; line-height: 1.5; }
.assure-card span { font-size: 12.5px; color: var(--muted); display: block; margin-top: 7px; line-height: 1.65; }
@media (max-width: 900px) { .assure-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .assure-grid { grid-template-columns: 1fr; } }

/* --- ⑦ 追従CTA（モバイル帯／PCはコンパクトなピル）＋でんちくん --- */
.floatcta { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(20,40,20,.10);
  padding: 9px clamp(14px, 4vw, 24px); display: none; gap: 10px; align-items: center;
  transform: translateY(110%); transition: transform .35s ease; }
.floatcta.show { transform: translateY(0); }
.floatcta .fc-denchi { flex: 0 0 auto; width: 38px; height: 38px; object-fit: contain; object-position: bottom; }
.floatcta .fc-tel { display: flex; flex-direction: column; line-height: 1.1; flex: 0 0 auto; padding-right: 4px; }
.floatcta .fc-tel small { font-size: 9px; letter-spacing: .04em; color: var(--muted); }
.floatcta .fc-tel a { font-family: var(--font-num); font-weight: 500; font-size: 19px; color: var(--ink); }
.floatcta .fc-tel a:hover { text-decoration: none; }
.floatcta .btn { flex: 1 1 auto; justify-content: center; padding: 13px 18px; }
@media (max-width: 900px) { .floatcta { display: flex; } body { --floatcta-h: 62px; padding-bottom: var(--floatcta-h); } }
/* PC:右下のコンパクトなピル型（小さめ） */
@media (min-width: 901px) {
  .floatcta { left: auto; right: 20px; bottom: 20px; border-radius: 100px; border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(20,40,20,.16); padding: 5px 5px 5px 8px; width: auto; gap: 10px;
    transform: translateY(180%); }
  .floatcta.show { display: flex; transform: translateY(0); }
  .floatcta .fc-denchi { width: 34px; height: 34px; }
  .floatcta .fc-tel { padding-right: 2px; }
  .floatcta .fc-tel small { font-size: 8px; }
  .floatcta .fc-tel a { font-size: 15px; }
  .floatcta .btn { flex: 0 0 auto; padding: 9px 20px; font-size: 13px; gap: 8px; border-radius: 100px; }
}
@media print { .floatcta { display: none !important; } }

/* --- でんちくん／でんちハカセ 共通 --- */
.denchi { display: block; object-fit: contain; object-position: bottom; }
/* CTAカード内ガイドをでんちくんに */
.cb-guide .denchi { width: 50px; height: 50px; flex: 0 0 auto; }
/* FAQ見出し脇のでんちハカセ */
.faq-head { display: flex; align-items: flex-end; gap: 16px; }
.faq-head .denchi { width: 74px; height: 74px; flex: 0 0 auto; margin-bottom: -6px; }
.faq-head .fh-tx { min-width: 0; }
.faq-head .fh-tx .section-head { margin-bottom: 0; }
@media (max-width: 560px) { .faq-head .denchi { width: 56px; height: 56px; } }
/* 相談ガイド（吹き出し）内のでんちくん */
.guide .denchi { width: 72px; height: 84px; flex: 0 0 auto; }

/* --- 問い合わせフォーム上部の安心チップ（マーケティング侍：リスク逆転＋返信速度） --- */
.form-assure { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: clamp(22px, 3vw, 30px);
  padding-bottom: clamp(20px, 2.6vw, 26px); border-bottom: 1px solid var(--line); }
.form-assure span { position: relative; padding-left: 22px; font-size: 12.5px; color: var(--ink); }
.form-assure span::before { content: ""; position: absolute; left: 2px; top: 5px; width: 11px; height: 7px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.form-assure span b { color: var(--green-dark); font-weight: 700; }

/* --- 目的別のご案内（信用の倉庫：用件別の入口） --- */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.route { position: relative; display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.route:hover { text-decoration: none; border-color: var(--green); box-shadow: 0 14px 34px rgba(20,50,20,.08); transform: translateY(-2px); }
.route .r-en { font-family: var(--font-en); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); }
.route b { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: clamp(17px, 1.9vw, 20px); color: var(--ink); line-height: 1.5; }
.route span { font-size: 13px; color: var(--muted); line-height: 1.8; }
.route .r-arr { position: absolute; right: 20px; top: 22px; font-family: var(--font-en); color: var(--green); transition: transform .2s ease; }
.route:hover .r-arr { transform: translateX(4px); }
@media (max-width: 820px) { .routes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .routes { grid-template-columns: 1fr; } }
