@charset "UTF-8";
/* ==========================================================
   株式会社清建 TOP — Figma「TOP案_ロゴ反映_v1」(208:2) 準拠
   Mobile: 375px デザイン忠実 ／ PC: 900px〜 拡張レイアウト
   ========================================================== */

:root {
  --c-red: #A8392E;
  --c-red-dark: #8F2F26;
  --c-blue: #6F97A6;
  --c-gold: #C0A04C;
  --c-bg: #FAF7F3;
  --c-khaki: #EAE3C7;
  --c-ink: #2E2A28;
  --c-ink-soft: #332E29;
  --c-gray: #6E6863;
  --c-border: #E7E1DA;
  --c-footer: #252220;
  --font-head: 'Zen Kaku Gothic New', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --font-num: 'Anton', sans-serif;
  --pad-x: 26px;
  --sky-tile: 375px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* スマホで横パンすると背後の固定動画が見える対策。bodyだけではiOS Safariが横パンを許すためhtmlにもclip */
html { scroll-behavior: smooth; scroll-padding-top: 72px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  /* hiddenはSafariでposition:stickyを壊すためclip（スクロール領域を作らない） */
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sp-only { display: block; }
.pc-only { display: none; }
.sp-only-flex { display: flex; }
.pc-only-flex, .btn.pc-only-flex { display: none; }

/* ---------- 共通パーツ ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--c-red);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-ink);
}
.section-head { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.section-head--center { align-items: center; text-align: center; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn--red { background: var(--c-red); color: #fff; padding: 15px; width: 100%; }
.btn--red:hover { background: var(--c-red-dark); }
.btn--white { background: #fff; color: var(--c-red); padding: 15px; width: 100%; }
.btn--white:hover { background: #F7EBE5; }
.btn--outline {
  border: 1.3px solid var(--c-red);
  color: var(--c-red);
  font-size: 13px;
  padding: 13px 24px;
  width: fit-content;
}
.btn--outline:hover { background: var(--c-red); color: #fff; }

/* スクロール連動フェードイン */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .works-marquee__track, .skyline::before, .fv-scroll__line { animation: none !important; }
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 21px;
  transition: background .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
  background: rgba(37, 34, 32, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 21px;
}

.logo {
  display: block;
  width: 63px;
  flex-shrink: 0;
}
.logo img { display: block; width: 100%; height: auto; }

.global-nav { display: none; }

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(37, 34, 32, .97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { text-align: center; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #EDE8E3;
}
.mobile-menu__tel {
  font-family: var(--font-en) !important;
  font-weight: 700;
  font-size: 28px !important;
  letter-spacing: 2px;
  color: #fff !important;
}
.mobile-menu__note { font-size: 11px; color: #948C85; margin-top: 6px; }

/* ---------- FV ---------- */
.fv {
  /* 240svh：ヒーローは固定されたまま、後続（fv-scroll以降）が-100svhで重なり
     下から覆い被さる。ヒーロー自身は最後まで上に流れない（シンカの動き） */
  position: relative;
  height: 240svh;
}
.fv__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}
/* 後続が近づいたらコピー・斜め・暗幕グラデをフェードアウト（JSでis-leaving付与） */
.fv__copy, .fv__slash, .fv__overlay {
  transition: opacity .5s ease;
}
.fv__sticky.is-leaving .fv__copy,
.fv__sticky.is-leaving .fv__slash,
.fv__sticky.is-leaving .fv__overlay { opacity: 0; }
.fv__video {
  /* 固定パララックス：動画は動かず、後続セクションが上に被さっていく */
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  z-index: -1;
}
/* iOSが自動再生を拒否したとき（低電力モード・省データ設定など）に出す
   ネイティブの再生ボタンを消す。背景動画なので、再生できない時は
   poster（静止画）だけがきれいに見えるのが正解。
   再生自体は main.js が最初のタップ・スクロールで拾って始める。 */
.fv__video::-webkit-media-controls,
.fv__video::-webkit-media-controls-panel,
.fv__video::-webkit-media-controls-overlay-play-button,
.fv__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.5) 100%);
}
.fv__copy {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fv__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .5);
}
.fv__title span { display: block; }
/* 主役は「かかりつけ大工でありたい。」＝2行目を大きく */
.fv__title-l1 { font-size: 21px; letter-spacing: .5px; }
.fv__title-l2 { font-size: 25px; }
.fv__sub {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .26px;
  color: #EBE5DE;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

/* スクロールライン */
/* （旧スクロールラインはTOPリデザインで廃止） */

/* ---------- 01 ポジショニング ---------- */
.positioning {
  /* 固定動画の上に重なる暗幕。-100svhでヒーローの上に下から被さっていく */
  background: rgba(32, 29, 26, .7);
  padding: 88px var(--pad-x) 116px;
  position: relative;
  margin-top: -100svh;
}
.positioning__inner { display: flex; flex-direction: column; gap: 32px; }
.positioning__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.52;
  color: #F5EFE8;
}
.positioning__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  color: #E9E2DA;
}

/* ---------- 02 技術の核 ---------- */
.core {
  position: relative;
  background: var(--c-bg);
  padding: 80px var(--pad-x) 150px;
  /* 家型写真の右見切れ（負マージン）を横スクロール要因にしない */
  overflow-x: clip;
}
.core__inner { display: flex; flex-direction: column; gap: 32px; }
/* 写真を家型（切妻屋根の五角形）に切り抜き。Figmaでは右の屋根裾が画面外に見切れる */
.core__img {
  margin-left: 18px;
  margin-right: calc(-1 * var(--pad-x) - 49px);
}
.core__img img {
  display: block;
  width: 100%;
  aspect-ratio: 380 / 237;
  object-fit: cover;
  clip-path: polygon(0 34.6%, 50% 0, 100% 34.6%, 100% 100%, 0 100%);
}
.core__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.52;
}
.core__body {
  font-size: 15px;
  line-height: 2;
  color: var(--c-ink-soft);
  margin-top: 24px;
}

/* 街並みシルエット区切り（次セクション色のベタ塗り・静止） */
.skyline {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 56px;
  overflow: hidden;
}
.skyline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% + var(--sky-tile));
  background: var(--c-khaki);
  -webkit-mask: url(../assets/img/house-skyline.svg) repeat-x left bottom / var(--sky-tile) 100%;
  mask: url(../assets/img/house-skyline.svg) repeat-x left bottom / var(--sky-tile) 100%;
}

/* ---------- 選ばれる理由（スクロール固定演出・TOPリデザイン2026-07-19） ---------- */
.why-pin {
  position: relative;
  height: 380vh; /* この高さぶんスクロールする間、中身が固定される */
  background: var(--c-khaki);
}
.why-pin__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 88px var(--pad-x) 40px;
}
.why-pin__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  z-index: 2;
}
.why-pin__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.48;
  color: var(--c-ink);
}
.why-pin__slides { position: relative; flex: 1; margin-top: 10px; }
.why-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.why-slide.is-active { opacity: 1; pointer-events: auto; }
.why-slide__ghost {
  position: absolute;
  right: -6px;
  top: -4px;
  font-family: var(--font-num);
  font-size: 128px;
  line-height: 1;
  color: rgba(46, 42, 40, .07);
  pointer-events: none;
}
.why-slide__img {
  width: min(100%, 430px);
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(77, 61, 31, .16);
  transform: translateY(26px);
  transition: transform .6s ease;
}
.why-slide.is-active .why-slide__img { transform: none; }
.why-slide__img img { width: 100%; height: 100%; object-fit: cover; }
.why-slide__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(22px);
  transition: transform .6s ease .08s;
}
.why-slide.is-active .why-slide__text { transform: none; }
.why-slide__num {
  font-family: var(--font-num);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--c-red);
}
.why-slide__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--c-ink);
}
.why-slide__body { font-size: 13.5px; line-height: 1.9; color: var(--c-ink-soft); }
.why-pin__progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}
.why-pin__progress span {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(46, 42, 40, .16);
  transition: background .3s ease;
}
.why-pin__progress span.is-on { background: var(--c-red); }
@media (prefers-reduced-motion: reduce) {
  .why-slide, .why-slide__img, .why-slide__text { transition: none; }
  .why-slide__img, .why-slide__text { transform: none; }
}

/* ---------- リピート率バナー ---------- */
.repeat {
  position: relative;
  padding: 72px var(--pad-x) 64px;
  background: url(../assets/img/repeat_bg3.webp) center 55% / cover no-repeat;
}
.repeat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,37,48,.5) 0%, rgba(29,37,48,.62) 100%);
}
.repeat__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.repeat__badge { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.repeat__scallop { width: 100%; height: 100%; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
.repeat__value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.repeat__label { font-weight: 700; font-size: 12px; letter-spacing: .48px; line-height: 1.4; }
.repeat__num {
  font-family: var(--font-num);
  font-size: 56px;
  line-height: 1;
  text-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.repeat__num small { font-size: 30px; }
.repeat__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}
.repeat__title span { font-size: 21px; }
.repeat__body {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}

/* ---------- 対応カテゴリ ---------- */
.service {
  background: var(--c-bg);
  padding: 80px var(--pad-x) 64px;
}
.service__inner { display: flex; flex-direction: column; gap: 32px; }
.service .section-title { font-size: 22px; line-height: 1.48; }
.service__lead { font-weight: 500; font-size: 14px; color: var(--c-gray); }
.service__consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  text-align: center;
}
.service__consult p { font-weight: 700; font-size: 13px; line-height: 1.75; }

/* ---------- OUR WORKS 流れ英字 ---------- */
.works-marquee {
  background: var(--c-bg);
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.works-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}
.works-marquee__track span {
  font-family: var(--font-num);
  font-weight: 400;
  font-size: 96px;
  letter-spacing: 4px;
  color: var(--c-red);
  line-height: 1;
}
.works-marquee__track em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-blue);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 実績ピックアップ ---------- */
.works {
  background: var(--c-bg);
  padding: 80px var(--pad-x) 64px;
}
.works__inner { display: flex; flex-direction: column; gap: 32px; }
.works__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.works__viewall {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-blue);
  color: #fff;
  padding: 7px 14px;
  border-radius: 4px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  transition: background .25s ease;
}
.works__viewall span { font-family: var(--font-body); font-weight: 500; font-size: 13px; }
.works__viewall:hover { background: #5F8494; }
.works__lead { font-weight: 500; font-size: 14px; line-height: 1.8; color: var(--c-gray); }
.works__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.works__slider::-webkit-scrollbar { display: none; }
.works-card {
  flex: none;
  width: 280px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}
.works-card__img { height: 125px; }
.works-card__img img { width: 100%; height: 100%; object-fit: cover; }
.works-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}
.works-card__tags { display: flex; gap: 6px; }
.works-card__tags span {
  background: #EDEBE5;
  color: var(--c-gray);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .2px;
  padding: 4px 8px;
  border-radius: 3px;
  line-height: 1.2;
}
.works-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.55;
}
.works-card__desc { font-size: 14px; line-height: 1.75; color: var(--c-gray); }
.works__progress {
  height: 3px;
  border-radius: 2px;
  background: var(--c-border);
  overflow: hidden;
}
.works__progress span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 2px;
  background: var(--c-blue);
  transition: width .15s linear;
}
.works__note { font-size: 11px; line-height: 1.7; color: var(--c-gray); }

/* ---------- 会社紹介 ---------- */
.about {
  background: #fff;
  padding: 80px var(--pad-x) 64px;
  /* reveal--right待機中(translateX 48px)のはみ出しを横スクロール要因にしない */
  overflow-x: clip;
}
.about__inner { display: flex; flex-direction: column; gap: 32px; }
.about__text { display: flex; flex-direction: column; gap: 32px; }
.about__body { font-size: 15px; line-height: 2; }
.about__movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(150.6deg, rgba(28,32,38,.42) 0%, rgba(20,25,32,.62) 100%),
    url(../assets/img/about_poster.jpg) center / cover no-repeat,
    linear-gradient(150.6deg, #333D47 14.3%, #1A2129 85.7%);
  box-shadow: 0 8px 22px rgba(77, 61, 31, .16);
}
.about__movie video { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.about__movie::after {
  content: "▶ 会社紹介ムービー";
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
/* .about__play（中央の丸い再生ボタン）は 2026-07-28 に廃止＝自動再生に変更。
   ブラウザが出すネイティブの再生ボタンも消す（背景で流れる紹介ムービーなので、
   再生できない時は poster 静止画だけが見えるのが正解） */
.about__movie video::-webkit-media-controls,
.about__movie video::-webkit-media-controls-panel,
.about__movie video::-webkit-media-controls-overlay-play-button,
.about__movie video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.about .sp-only-flex { margin: 0 auto; }
.about__head-link { text-decoration: none; color: inherit; transition: opacity .25s ease; }
.about__head-link .section-title { display: inline; background: linear-gradient(var(--c-gold), var(--c-gold)) left bottom / 0 2px no-repeat; transition: background-size .3s ease; padding-bottom: 3px; }
.about__head-link:hover .section-title { background-size: 100% 2px; }

/* ---------- CTA ---------- */
.cta {
  background: var(--c-red);
  padding: 48px var(--pad-x);
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
.cta__sub { font-weight: 500; font-size: 13px; line-height: 1.75; color: #F7EBE5; }
.cta__tel { padding-top: 4px; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.cta__tel a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2.1px;
  color: #fff;
  line-height: 1.2;
}
.cta__tel p { font-weight: 500; font-size: 11.5px; letter-spacing: .23px; color: #F7EBE5; }

/* ---------- フッター ---------- */
.footer {
  background: var(--c-footer);
  padding: 40px var(--pad-x) 28px;
  color: #EDE8E3;
}
.footer__inner { display: flex; flex-direction: column; gap: 18px; }
.logo--footer { width: 63px; }
.footer__company { margin-top: 14px; }
.footer__company img { display: block; width: 150px; height: auto; }
.footer__tagline { font-weight: 500; font-size: 11.5px; letter-spacing: .23px; color: #948C85; margin-top: 2px; }
.footer__divider { height: 1px; background: #524D47; }
.footer__info { display: flex; flex-direction: column; gap: 8px; }
.footer__info div { display: flex; gap: 12px; }
.footer__info dt { flex: none; width: 52px; font-weight: 500; font-size: 11px; color: #948C85; line-height: 1.9; }
.footer__info dd { font-size: 11.5px; line-height: 1.65; }
.footer__sitemap { display: flex; flex-direction: column; gap: 6px; }
.footer__sitemap-label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.98px;
  color: var(--c-gold);
}
.footer__links { font-size: 11.5px; line-height: 1.9; }
.footer__links span { color: #948C85; margin: 0 2px; }
.footer__links a:hover { color: var(--c-gold); }
.footer__copy { font-size: 10.5px; letter-spacing: .21px; color: #948C85; margin-top: 24px; }

/* ==========================================================
   PC レイアウト（900px〜）
   ========================================================== */
@media (min-width: 900px) {
  :root { --pad-x: 40px; }

  .sp-only { display: none; }
  .pc-only { display: block; }
  .sp-only-flex, .btn.sp-only-flex { display: none; }
  .pc-only-flex { display: flex; }

  /* ヘッダー */
  .site-header { padding: 22px 40px; }
  .site-header.is-scrolled { padding: 12px 40px; }
  .logo { width: 76px; }
  .menu-btn { display: none; }
  .global-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .global-nav ul { display: flex; gap: 28px; }
  .global-nav ul a {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.35);
    padding-bottom: 4px;
    background: linear-gradient(var(--c-gold), var(--c-gold)) left bottom / 0 2px no-repeat;
    transition: background-size .3s ease;
  }
  .global-nav ul a:hover { background-size: 100% 2px; }
  .nav-tel { display: flex; flex-direction: column; align-items: center; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
  .nav-tel__number { font-family: var(--font-en); font-weight: 600; font-size: 19px; letter-spacing: 1px; line-height: 1.2; }
  .nav-tel__note { font-size: 10px; letter-spacing: .4px; }
  .nav-cta {
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 20px;
    border-radius: 4px;
    transition: background .25s ease;
  }
  .nav-cta:hover { background: var(--c-red-dark); }

  /* FV */
  .fv__sticky { min-height: 640px; }
  .fv__copy {
    left: max(var(--pad-x), calc((100vw - 1200px) / 2));
    gap: 24px;
  }
  .fv__title-l1 { font-size: clamp(28px, 2.4vw, 36px); }
  .fv__title-l2 { font-size: clamp(46px, 4.5vw, 64px); }
  .fv__sub { font-size: 16px; letter-spacing: 1px; }
  .fv__en { font-size: 13px; letter-spacing: 3.2px; }
  .fv__slash--top { width: 27%; height: 21%; }
  .fv__slash--bottom { width: 58%; height: 24%; }

  /* 01 ポジショニング（PC=左写真・右文字） */
  .positioning { padding: 160px var(--pad-x) 150px; }
  .positioning__inner {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 90px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .positioning__text { flex: 0 1 560px; text-align: center; gap: 48px; }
  .positioning__title { font-size: 36px; line-height: 1.7; }
  .positioning__body { font-size: 17px; line-height: 2.3; gap: 44px; }
  .positioning__photos {
    flex: 0 0 400px;
    flex-direction: column;
    gap: 26px;
    margin-top: 0;
  }
  .posi-photo { padding: 8px 8px 12px; }
  .posi-photo img { aspect-ratio: auto; }
  .posi-photo--a { width: 240px; align-self: flex-start; margin-top: 0; }
  .posi-photo--b { width: 320px; align-self: flex-end; margin-top: -34px; }
  .posi-photo--c { width: 300px; align-self: center; margin-top: -8px; }

  /* 02 技術の核 */
  .core { padding: 150px var(--pad-x) 220px; }
  .core__img { margin: 0; }
  .core__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }
  .core__title { font-size: 34px; }
  .core__body { font-size: 16px; line-height: 2.2; margin-top: 28px; }
  .skyline { height: 90px; --sky-tile: 600px; }

  /* 選ばれる理由（スクロール固定演出） */
  .why-pin__sticky { padding: 120px var(--pad-x) 48px; }
  .why-pin__heading { font-size: 36px; }
  .why-slide {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 72px;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
  }
  .why-slide__img { width: 46%; max-width: 560px; aspect-ratio: 4 / 3; border-radius: 8px; }
  .why-slide__text { width: 38%; gap: 14px; }
  .why-slide__num { font-size: 18px; }
  .why-slide__title { font-size: 30px; }
  .why-slide__body { font-size: 15px; line-height: 2; }
  .why-slide__ghost {
    font-size: 300px;
    right: 0;
    top: 50%;
    transform: translateY(-55%);
  }
  .why-pin__progress span { width: 40px; }

  /* リピート率バナー */
  .repeat { padding: 110px var(--pad-x); }
  .repeat__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    max-width: 940px;
    margin: 0 auto;
  }
  .repeat__badge { width: 210px; height: 210px; }
  .repeat__label { font-size: 14px; }
  .repeat__num { font-size: 72px; }
  .repeat__num small { font-size: 38px; }
  .repeat__title { font-size: 34px; line-height: 1.65; }
  .repeat__title span { font-size: 28px; }
  .repeat__body { font-size: 16px; margin-top: 12px; }

  /* 対応カテゴリ */
  .service { padding: 140px var(--pad-x); }
  .service__inner { max-width: 1080px; margin: 0 auto; }
  .service .section-title { font-size: 34px; }
  .service__lead { font-size: 15px; }
  .service__consult { max-width: 560px; margin: 12px auto 0; width: 100%; }
  .service__consult p { font-size: 15px; }

  /* OUR WORKS 流れ英字 */
  .works-marquee { height: 250px; }
  .works-marquee__track span { font-size: 190px; letter-spacing: 5.7px; }

  /* 実績ピックアップ */
  .works { padding: 60px var(--pad-x) 140px; }
  .works__inner { max-width: 1080px; margin: 0 auto; }
  .works .section-title { font-size: 34px; }
  .works__viewall { font-size: 13px; padding: 9px 18px; }
  .works__lead { font-size: 15px; }
  .works__slider { gap: 24px; }
  .works-card { width: 328px; }
  .works-card__img { height: 150px; }
  .works-card__title { font-size: 16.5px; }

  /* 会社紹介 */
  .about { padding: 140px var(--pad-x); }
  .about__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }
  .about .section-title { font-size: 34px; }
  .about__body { font-size: 16px; line-height: 2.15; }
  /* .about__play系（中央の丸い再生ボタン）は2026-07-28に廃止＝自動再生化 */

  /* CTA */
  .cta { padding: 100px var(--pad-x); }
  .cta__inner { max-width: 640px; margin: 0 auto; gap: 22px; }
  .cta__title { font-size: 32px; }
  .cta__sub { font-size: 15px; }
  .cta .btn--white { max-width: 460px; font-size: 15px; }
  .cta__tel a { font-size: 46px; }
  .cta__tel p { font-size: 13px; }

  /* フッター */
  .footer { padding: 72px var(--pad-x) 32px; }
  .footer__inner {
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 72px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .logo--footer { width: 76px; }
  .footer__company img { width: 170px; }
  .footer__info dt { font-size: 12px; }
  .footer__info dd { font-size: 13px; }
  .footer__links { font-size: 13px; }
  .footer__sitemap-label { font-size: 12px; }
  .footer__copy {
    max-width: 1120px;
    margin: 48px auto 0;
    font-size: 11px;
  }
}

/* ワイドPC：ヒーロー文字の行揃え微調整 */
@media (min-width: 1440px) {
  .works-marquee__track span { font-size: 210px; }
}

/* ==========================================================
   下層ページ共通
   ========================================================== */
:root { --accent: #A8392E; --accent-dark: #8F2F26; }
.theme-blue { --accent: #4E7889; --accent-dark: #3F6371; }

/* ページヒーロー */
.page-hero {
  background: var(--c-footer);
  padding: 120px var(--pad-x) 52px;
  color: #fff;
}
.page-hero__inner { display: flex; flex-direction: column; gap: 14px; }
.eyebrow--gold { color: var(--c-gold); }
.eyebrow--gold .eyebrow__dot { background: var(--c-gold); }
.page-hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
}
.page-hero__lead { font-size: 13.5px; line-height: 1.9; color: #C9C2BB; }

/* 汎用セクション */
.sec { padding: 72px var(--pad-x); }
.sec--bg { background: var(--c-bg); }
.sec--white { background: #fff; }
.sec--khaki { background: var(--c-khaki); }
.sec__inner { display: flex; flex-direction: column; gap: 28px; }
.sec__title-lg {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.55;
  color: var(--c-ink);
}

/* 代表メッセージ・対応範囲 */
.duo__img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 22px rgba(77,61,31,.14); aspect-ratio: 3 / 2; }
.duo__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.duo__body { display: flex; flex-direction: column; gap: 20px; }
.duo__body p { font-size: 14.5px; line-height: 2.05; color: var(--c-ink-soft); }
.duo__sign { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--c-ink); }

/* 職人紹介 */
.members { display: flex; gap: 20px; justify-content: space-between; }
.member { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; text-align: center; }
.member__face {
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-khaki);
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(77,61,31,.16);
  display: flex; align-items: center; justify-content: center;
}
.member__face img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.member__face span { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #A89B72; }
.member__name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--c-ink); }
.member__role { font-size: 11.5px; color: var(--c-gray); line-height: 1.5; }

/* 沿革タイムライン */
.timeline { position: relative; display: flex; flex-direction: column; gap: 26px; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 10px; bottom: 24px;
  width: 2px;
  background: #D8CFC0;
}
.t-entry { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--c-border); border-radius: 10px; padding: 22px 20px; }
.t-entry::before {
  content: "";
  position: absolute;
  left: -34px; top: 26px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-red);
}
.t-entry__ghost {
  position: absolute;
  right: 8px; top: -4px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 58px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--c-red);
  opacity: .07;
  pointer-events: none;
  user-select: none;
}
.t-entry__era { font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: 1px; color: var(--c-red); }
.t-entry__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.5; color: var(--c-ink); margin-top: 4px; }
.t-entry__body { font-size: 13.5px; line-height: 1.95; color: var(--c-ink-soft); margin-top: 12px; }

/* 会社概要テーブル */
.company-card { background: #fff; border: 1px solid var(--c-border); border-radius: 12px; overflow: hidden; }
.company-card > div { display: flex; gap: 14px; padding: 15px 18px; border-bottom: 1px solid #F0EAE1; }
.company-card > div:last-child { border-bottom: none; }
.company-card dt { flex: none; width: 84px; font-weight: 500; font-size: 12.5px; color: var(--c-gray); line-height: 1.9; }
.company-card dd { font-size: 13.5px; line-height: 1.8; color: var(--c-ink); }

/* 共感カード */
.empathy { display: flex; flex-direction: column; gap: 12px; }
.empathy__card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-ink);
}
.empathy__card--last { background: var(--c-khaki); border-color: var(--c-khaki); border-left-color: var(--c-red); }
.empathy__card--last strong { display: block; font-size: 15px; color: var(--c-ink); }
.empathy__card--last p { font-weight: 500; font-size: 13px; line-height: 1.9; color: var(--c-ink-soft); margin-top: 8px; }

/* サービス行カード（下層） */
.svc-rows { display: flex; flex-direction: column; gap: 12px; }
.svc-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(192,160,76,.38);
  border-radius: 10px;
  padding: 16px 40px 16px 16px;
  box-shadow: 0 4px 14px rgba(77,61,31,.07);
}
.svc-row__icon { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.svc-row__body { min-width: 0; }
.svc-row__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--c-ink); }
.svc-row__desc { font-size: 12.5px; line-height: 1.7; color: var(--c-gray); margin-top: 4px; }
.svc-row__chev { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #9E9485; font-size: 16px; }

/* 法人カード */
.biz-cards { display: flex; flex-direction: column; gap: 14px; }
.biz-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 4px 14px rgba(31,50,61,.06);
}
.biz-card__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--c-ink); }
.biz-card__desc { font-size: 13px; line-height: 1.8; color: var(--c-gray); margin-top: 6px; }

/* 工事の流れ */
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-step { position: relative; display: flex; gap: 16px; padding: 14px 0; }
.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px; top: 52px; bottom: -6px;
  width: 2px;
  background: #E3DACA;
}
.flow-step__num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.flow-step__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--c-ink); }
.flow-step__desc { font-size: 13px; line-height: 1.7; color: var(--c-gray); margin-top: 3px; }

/* スライダー補助 */
.slider-hint { font-size: 11px; color: var(--c-gray); text-align: center; }
.sec .works__slider { padding-bottom: 4px; }
.btn--outline-wide { width: 100%; max-width: 420px; margin: 0 auto; }

/* アフターサービス帯 */
.after-band { text-align: left; }
.after-band .sec__inner { gap: 18px; }
.after-band p.after-band__body { font-size: 14.5px; line-height: 2; color: var(--c-ink-soft); }

/* 実績アーカイブ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid #E3DDD5;
  background: #fff;
  color: var(--c-ink-soft);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--c-red); color: var(--c-red); }
.chip.is-active { background: var(--c-red); border-color: var(--c-red); color: #fff; font-weight: 700; }
@media (min-width: 900px) {
  .chips { gap: 12px; }
  .chip { padding: 13px 28px; font-size: 16px; }
}
/* 詳細ページの静的タグは従来の小さめサイズを維持 */
.chip--static { padding: 8px 16px; font-size: 12.5px; font-weight: 500; }
@media (min-width: 900px) { .chip--static { padding: 8px 16px; font-size: 12.5px; } }
.archive-count { font-size: 12px; color: var(--c-gray); }
.archive { display: flex; flex-direction: column; gap: 24px; }
.archive-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
}
.archive-card__img { height: 200px; }
.archive-card__img img { width: 100%; height: 100%; object-fit: cover; }
.archive-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.archive-card__chip {
  align-self: flex-start;
  background: #EDEBE5;
  color: var(--c-gray);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
}
.archive-card__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.5; color: var(--c-ink); }
.archive-card__meta { font-size: 12px; color: var(--c-gray); }
.archive-card__desc { font-size: 13.5px; line-height: 1.85; color: var(--c-ink-soft); }
.archive-empty { display: none; font-size: 13.5px; color: var(--c-gray); padding: 24px 0; text-align: center; }

/* FAQ */
.faq-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-ink);
}
.faq-group__head::before { content: ""; width: 4px; height: 18px; border-radius: 2px; background: var(--accent-g, var(--c-red)); }
.faq-group--biz { --accent-g: #4E7889; }
.faq-item { background: #fff; border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.faq-item__q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 10px;
  background: none; border: none; cursor: pointer;
  padding: 16px 18px;
  text-align: left;
  font-family: var(--font-body);
}
.faq-item__q .q-mark { font-family: var(--font-en); font-weight: 700; font-size: 16px; color: var(--c-red); line-height: 1.3; }
.faq-item__q .q-text { flex: 1; font-weight: 700; font-size: 14px; line-height: 1.65; color: var(--c-ink); }
.faq-item__q .q-arrow { color: #B0A89E; font-size: 11px; transition: transform .3s ease; margin-top: 4px; }
.faq-item.is-open .q-arrow { transform: rotate(180deg); }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a-flex { display: flex; gap: 10px; padding: 0 18px 18px; }
.faq-item__a-flex .a-mark { font-family: var(--font-en); font-weight: 700; font-size: 16px; color: var(--c-gold); line-height: 1.3; }
.faq-item__a-flex p { flex: 1; font-size: 13.5px; line-height: 1.9; color: var(--c-ink-soft); }

/* お問い合わせフォーム */
.form { display: flex; flex-direction: column; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-weight: 700; font-size: 13.5px; color: var(--c-ink); }
.form-field .req {
  display: inline-block;
  background: var(--c-red); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 3px;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: 2px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #E0D8CC;
  border-radius: 6px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #B9B0A3; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(192,160,76,.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9E9485 50%), linear-gradient(135deg, #9E9485 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-note { font-size: 11.5px; color: var(--c-gray); }
.form-success { display: none; background: #EAF0E8; border: 1px solid #C4D4BE; color: #3D5A34; border-radius: 8px; padding: 16px 18px; font-size: 13.5px; line-height: 1.8; }

/* 連絡方法カード */
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--c-border); border-radius: 12px; padding: 24px 22px; }
.contact-card__label { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--c-ink); margin-bottom: 10px; }
.contact-card__tel { font-family: var(--font-en); font-weight: 700; font-size: 32px; letter-spacing: 1.5px; color: var(--c-red); line-height: 1.2; }
.contact-card__note { font-size: 12px; color: var(--c-gray); margin-top: 6px; }
.contact-card__row { display: flex; gap: 12px; font-size: 13px; line-height: 1.8; margin-top: 6px; }
.contact-card__row dt { flex: none; width: 52px; color: var(--c-gray); font-size: 12px; }
.contact-card__row dd { color: var(--c-ink); }

/* CTA 2ボタン */
.cta__buttons { display: flex; flex-direction: column; gap: 12px; width: 100%; align-items: center; }

@media (min-width: 900px) {
  .page-hero { padding: 190px var(--pad-x) 90px; }
  .page-hero__inner { max-width: 1080px; margin: 0 auto; gap: 20px; }
  .page-hero__title { font-size: 44px; }
  .page-hero__lead { font-size: 15px; }

  .sec { padding: 110px var(--pad-x); }
  .sec__inner { max-width: 1080px; margin: 0 auto; gap: 40px; }
  .sec__inner--narrow { max-width: 860px; }
  .sec__title-lg { font-size: 32px; }

  .duo { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
  .duo--rev { grid-template-columns: 1.05fr 1fr; }
  .duo__body p { font-size: 15px; }

  .members { max-width: 760px; margin: 0 auto; width: 100%; gap: 48px; }
  .member__face { width: 150px; height: 150px; }
  .member__name { font-size: 17px; }
  .member__role { font-size: 13px; }

  .timeline { max-width: 720px; margin: 0 auto; width: 100%; gap: 32px; padding-left: 44px; }
  .t-entry { padding: 28px 30px; }
  .t-entry::before { left: -44px; }
  .t-entry__ghost { font-size: 76px; right: 14px; }
  .t-entry__title { font-size: 19px; }
  .t-entry__body { font-size: 14px; }

  .company-card { max-width: 820px; margin: 0 auto; width: 100%; }
  .company-card > div { padding: 18px 26px; }
  .company-card dt { width: 130px; font-size: 13.5px; }
  .company-card dd { font-size: 14.5px; }

  .empathy { max-width: 760px; margin: 0 auto; width: 100%; gap: 14px; }
  .empathy__card { font-size: 15px; padding: 20px 24px; }

  .svc-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-row { padding: 22px 48px 22px 22px; gap: 18px; }
  .svc-row__icon { width: 50px; height: 50px; }
  .svc-row__title { font-size: 17.5px; }
  .svc-row__desc { font-size: 13px; }

  .biz-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .biz-card { padding: 28px 26px; }

  .flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
  .flow-step { padding: 0; }
  .flow-step:not(:last-child)::before { display: none; }
  .flow-step__num { width: 38px; height: 38px; font-size: 16px; }
  .flow-step__title { font-size: 17px; }

  .archive { max-width: 820px; margin: 0 auto; width: 100%; }
  .archive-card { display: grid; grid-template-columns: 320px 1fr; }
  .archive-card__img { height: 100%; min-height: 220px; }
  .archive-card__body { padding: 26px 28px; }
  .archive-card__title { font-size: 19px; }

  .faq-group { max-width: 820px; margin: 0 auto 44px; width: 100%; }
  .faq-group__head { font-size: 18px; }
  .faq-item__q { padding: 20px 24px; }
  .faq-item__q .q-text { font-size: 15px; }
  .faq-item__a-flex { padding: 0 24px 22px; }
  .faq-item__a-flex p { font-size: 14px; }

  .form { max-width: 680px; margin: 0 auto; width: 100%; }
  .contact-cards { flex-direction: row; max-width: 860px; margin: 0 auto; width: 100%; }
  .contact-card { flex: 1; padding: 30px 30px; }

  .cta__buttons { flex-direction: row; justify-content: center; gap: 18px; }
  .cta__buttons .btn { max-width: 340px; }
}

/* ==========================================================
   仕上げポリッシュ
   ========================================================== */
/* 日本語見出しの詰め組み */
.fv__title, .section-title, .positioning__title, .core__title,
.why-slide__title, .why-pin__heading, .repeat__title, .works-card__title, .cta__title,
.page-hero__title, .sec__title-lg, .t-entry__title, .archive-card__title,
.svc-row__title, .biz-card__title, .flow-step__title {
  font-feature-settings: "palt" 1;
  letter-spacing: .02em;
}

/* カードのホバー（PCのみ） */
@media (hover: hover) and (min-width: 900px) {
  .works-card { transition: transform .3s ease, box-shadow .3s ease; }
  .works-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(77, 61, 31, .14); }
  .archive-card { transition: box-shadow .3s ease; }
  .archive-card:hover { box-shadow: 0 12px 28px rgba(77, 61, 31, .12); }
  .svc-row { transition: transform .25s ease, box-shadow .25s ease; }
  .svc-row:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(77, 61, 31, .13); }
  .after-card { transition: transform .3s ease, box-shadow .3s ease; }
  .after-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(77, 61, 31, .14); }
  .cta__tel a { transition: opacity .25s ease; }
  .cta__tel a:hover { opacity: .85; }
  .footer__links a { transition: color .2s ease; }
}

/* キーボードフォーカス */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* テキスト選択色 */
::selection { background: rgba(192, 160, 76, .35); }

/* 画像ドラッグ防止（テクスチャ感維持） */
.fv__video, .skyline { pointer-events: none; }

/* ==========================================================
   DESIGN v2 — エディトリアル・アップグレード（全ページ共通）
   ヴィンテージSEIKENブランドを保ちつつ情報密度と質感を強化
   ========================================================== */

:root {
  --font-mincho: 'Shippori Mincho B1', serif;
  --c-cream-2: #F3EEE6;
  --c-ink-2: #201D1B;
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1160px;
}

/* --- フィルムグレイン（微細な質感） --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* --- スタッガー・リビール --- */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: .08s; }
.stagger > .reveal:nth-child(3) { transition-delay: .16s; }
.stagger > .reveal:nth-child(4) { transition-delay: .24s; }
.stagger > .reveal:nth-child(5) { transition-delay: .32s; }
.stagger > .reveal:nth-child(6) { transition-delay: .40s; }
.stagger > .reveal:nth-child(7) { transition-delay: .48s; }
.stagger > .reveal:nth-child(8) { transition-delay: .56s; }
.reveal--soft { transform: translateY(16px); }

/* --- 明朝アクセント（職人・伝統の文脈で使用） --- */
.accent-serif {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .04em;
}

/* --- セクション大見出しの装飾番号（マガジン風） --- */
.sec-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.sec-label__idx {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--accent, var(--c-red));
  -webkit-text-stroke: 0;
}
.sec-label__en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--c-gray);
}

/* 金のヘアライン */
.hr-gold { height: 1px; background: linear-gradient(90deg, var(--c-gold), rgba(192,160,76,0)); border: none; }

/* ==========================================================
   ページヒーロー v2 — フルブリード画像
   ========================================================== */
.phero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-ink);
}
.phero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: pheroZoom 9s var(--ease) forwards;
}
@keyframes pheroZoom { to { transform: scale(1); } }
.phero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,16,.55) 0%, rgba(20,17,16,.15) 40%, rgba(20,17,16,.82) 100%),
    linear-gradient(90deg, rgba(20,17,16,.5) 0%, rgba(20,17,16,0) 60%);
}
.phero--plain { background: linear-gradient(150deg, #2C2825 0%, #1A1614 100%); }
.phero--plain .phero__bg { opacity: .18; background-image: none;
  background-size: 220px auto; background-repeat: repeat-x; background-position: center bottom;
  -webkit-mask: url(../assets/img/house-skyline.svg) repeat-x center bottom / 220px 90px;
  mask: url(../assets/img/house-skyline.svg) repeat-x center bottom / 220px 90px;
  background-color: #C0A04C; transform: none; animation: none; }
.phero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 130px var(--pad-x) 56px;
}
.phero__crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  color: rgba(237,232,227,.7);
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.phero__crumb a:hover { color: var(--c-gold); }
.phero__crumb span { opacity: .5; }
.phero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.phero__eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--c-gold); }
.phero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.35;
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.phero__lead {
  margin-top: 18px;
  max-width: 620px;
  font-size: 13.5px;
  line-height: 1.95;
  color: #E4DED7;
}
.phero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 40px;
  z-index: 3;
  display: none;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(237,232,227,.7);
}

/* ==========================================================
   数字バンド（実績・信頼のスタッツ）
   ========================================================== */
.stats {
  background: var(--c-ink);
  color: #fff;
  padding: 60px var(--pad-x);
  position: relative;
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
.stat { text-align: center; position: relative; }
.stat__num {
  font-family: var(--font-num);
  font-size: clamp(44px, 12vw, 64px);
  line-height: 1;
  color: var(--c-gold);
  letter-spacing: 1px;
}
.stat__num small { font-size: .42em; margin-left: 2px; color: #EDE8E3; }
.stat__num .pre { font-size: .42em; margin-right: 2px; color: #EDE8E3; }
.stat__label {
  margin-top: 12px;
  font-size: 12px;
  color: #C9C2BB;
  letter-spacing: .04em;
  line-height: 1.6;
}

/* ==========================================================
   信条・約束カード（pillars）
   ========================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pillar {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 30px 26px 28px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--c-red)), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(77,61,31,.12); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__idx {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--c-gold);
  opacity: .5;
}
.pillar__kanji {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  color: var(--accent, var(--c-red));
  line-height: 1;
}
.pillar__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-ink);
  margin: 16px 0 12px;
  line-height: 1.5;
}
.pillar__body { font-size: 13.5px; line-height: 1.95; color: var(--c-ink-soft); }

/* ==========================================================
   対応建物・タグリスト
   ========================================================== */
.btypes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btype {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink);
}
.btype::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent, var(--c-red)); }

/* ==========================================================
   引用・ステートメント（大きな一言）
   ========================================================== */
.statement {
  text-align: center;
  padding: 76px var(--pad-x);
  background: var(--c-khaki);
  position: relative;
  overflow: hidden;
}
.statement__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 26px 0;
}
.statement__bracket {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(96px, 26vw, 160px);
  line-height: 1;
  color: var(--c-gold);
  opacity: .26;
  pointer-events: none;
  user-select: none;
}
.statement__bracket--open { left: -14px; top: -30px; }
.statement__bracket--close { right: -14px; bottom: -30px; }
.statement__text {
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 4.7vw, 30px);
  line-height: 2.05;
  color: var(--c-ink);
  letter-spacing: .02em;
}
.statement__em {
  font-style: normal;
  background: linear-gradient(transparent 64%, rgba(192,160,76,.42) 64%);
}

/* ==========================================================
   スキルミニ / 特徴グリッド
   ========================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 24px 22px;
}
.feat__no {
  flex: none;
  font-family: var(--font-num);
  font-size: 30px;
  line-height: 1;
  color: var(--c-gold);
  min-width: 44px;
}
.feat__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--c-ink); }
.feat__body { font-size: 13px; line-height: 1.85; color: var(--c-gray); margin-top: 6px; }

/* アフターサービス（personal 07） */
.after-lead { font-size: 13.5px; line-height: 2; color: var(--c-gray); margin-top: -12px; }
.after-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.after-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(192,160,76,.38);
  border-radius: 14px;
  padding: 26px 22px 24px;
  box-shadow: 0 4px 14px rgba(77,61,31,.07);
}
.after-card__ghost {
  position: absolute;
  top: 6px;
  right: 14px;
  font-family: var(--font-num);
  font-size: 64px;
  line-height: 1;
  color: rgba(192,160,76,.16);
  pointer-events: none;
}
.after-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(192,160,76,.13);
  margin-bottom: 14px;
}
.after-card__icon img { width: 30px; height: 30px; }
.after-card__title { position: relative; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--c-ink); }
.after-card__body { position: relative; font-size: 13px; line-height: 1.85; color: var(--c-gray); margin-top: 6px; }

/* ==========================================================
   works v2 — 施工実績カードの質感
   ========================================================== */
.archive-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.archive-card__img { position: relative; overflow: hidden; }
.archive-card__img img { transition: transform .7s var(--ease); }
.archive-card:hover .archive-card__img img { transform: scale(1.05); }
.archive-card__badge {
  position: absolute;
  left: 14px; top: 14px;
  background: rgba(37,34,32,.82);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 5px 11px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.archive-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent, var(--c-red));
}
.archive-card__more span { transition: transform .3s var(--ease); }
.archive-card:hover .archive-card__more span { transform: translateX(4px); }

/* featured 施工実績（大きな1件） */
.works-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-ink);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
}
.works-feature__img { min-height: 240px; background-size: cover; background-position: center; }
.works-feature__body { padding: 34px 28px 36px; display: flex; flex-direction: column; gap: 14px; }
.works-feature__tag {
  align-self: flex-start;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--c-gold);
  border: 1px solid rgba(192,160,76,.5);
  padding: 5px 12px;
  border-radius: 4px;
}
.works-feature__title { font-family: var(--font-head); font-weight: 700; font-size: 24px; line-height: 1.45; }
.works-feature__desc { font-size: 14px; line-height: 1.95; color: #D6CFC7; }

/* ==========================================================
   CTA v2（大きく・写真無しでも映える）
   ========================================================== */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 80L40 50L80 80' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }

/* ==========================================================
   ボタン v2 — 矢印のマイクロインタラクション
   ========================================================== */
.btn { position: relative; overflow: hidden; }
.btn .arw { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ==========================================================
   セクション見出しの下に添える金の点線ルール
   ========================================================== */
.sec .section-head { position: relative; }

/* タイムライン仕上げ（年号を大きく） */
.t-entry__era { font-size: 15px; letter-spacing: 1.5px; }
.t-entry { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.t-entry:hover { transform: translateX(4px); box-shadow: 0 10px 24px rgba(77,61,31,.1); }

/* ==========================================================
   PC 追い込み
   ========================================================== */
@media (min-width: 900px) {
  .phero { min-height: 72vh; }
  .phero__inner { padding: 200px var(--pad-x) 80px; }
  .phero__title { font-size: clamp(44px, 4.6vw, 66px); }
  .phero__lead { font-size: 15.5px; margin-top: 24px; }
  .phero__scroll { display: block; }

  .stats__inner { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .stats { padding: 88px var(--pad-x); }
  .stat:not(:last-child)::after {
    content: ""; position: absolute; right: -12px; top: 10%; height: 80%;
    width: 1px; background: rgba(192,160,76,.25);
  }

  .pillars { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .pillar { padding: 40px 32px 36px; }

  .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feat { flex-direction: column; gap: 14px; padding: 32px 28px; }

  .after-lead { font-size: 14.5px; margin-top: -18px; }
  .after-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .after-card { padding: 32px 28px 30px; }
  .after-card__ghost { font-size: 78px; top: 8px; right: 16px; }
  .after-card__icon { width: 64px; height: 64px; margin-bottom: 16px; }
  .after-card__icon img { width: 34px; height: 34px; }

  .works-feature { grid-template-columns: 1.15fr 1fr; }
  .works-feature__img { min-height: 340px; }
  .works-feature__body { padding: 52px 48px; justify-content: center; }
  .works-feature__title { font-size: 30px; }

  .statement { padding: 110px var(--pad-x); }
  .statement__inner { padding: 40px 0; }
  .statement__bracket--open { left: -60px; top: -44px; }
  .statement__bracket--close { right: -60px; bottom: -44px; }
  .statement__text { font-size: clamp(26px, 3vw, 34px); }
}

/* プライバシーポリシー */
.policy { gap: 0; }
.policy__intro { font-size: 13.5px; line-height: 2; color: var(--c-ink-soft); margin-bottom: 34px; }
.policy__block { margin-bottom: 34px; }
.policy__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  border-left: 3px solid var(--c-gold);
  padding-left: 12px;
  margin-bottom: 12px;
}
.policy__block p { font-size: 13.5px; line-height: 2; color: var(--c-ink-soft); }
.policy__block p + p { margin-top: 8px; }
.policy__block ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.policy__block ul li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}
.policy__block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}
.policy__contact {
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 16px 18px;
}
.policy__contact a { color: var(--c-red); font-weight: 700; }
.policy__date { font-size: 12.5px; line-height: 2; color: var(--c-gray); text-align: right; }

/* フォーム同意チェック */
.form-consent { text-align: center; }
.form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-ink);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--c-red);
  cursor: pointer;
}
.form-consent a { color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }

@media (min-width: 900px) {
  .policy__intro { font-size: 15px; margin-bottom: 44px; }
  .policy__block { margin-bottom: 44px; }
  .policy__title { font-size: 19px; margin-bottom: 14px; }
  .policy__block p, .policy__block ul li { font-size: 15px; }
  .policy__contact { padding: 22px 26px; }
  .form-consent label { font-size: 14.5px; }
}

/* 施工実績：詳細カード */
.archive-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.archive-card__seg {
  display: inline-block;
  border: 1px solid var(--c-border);
  color: var(--c-gray);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
}
.archive-card__specs { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--c-border); padding-top: 14px; margin-top: 4px; }
.archive-card__specs > div { display: flex; gap: 10px; font-size: 12.5px; line-height: 1.8; }
.archive-card__specs dt {
  flex-shrink: 0;
  width: 7em;
  font-weight: 700;
  color: var(--c-gray);
}
.archive-card__specs dd { flex: 1; color: var(--c-ink-soft); }

@media (min-width: 900px) {
  .archive { max-width: 900px; }
  .archive-card__specs > div { font-size: 13.5px; }
}


/* ==========================================================
   施工実績：個別詳細ページ（works/）
   ========================================================== */
.phero--case { min-height: 52vh; }
.phero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.phero__meta span {
  border: 1px solid rgba(237,232,227,.4);
  color: #E4DED7;
  font-size: 11.5px;
  font-weight: 500;
  border-radius: 999px;
  padding: 4px 12px;
}
.case-body { display: flex; flex-direction: column; gap: 40px; max-width: 820px; margin: 0 auto; width: 100%; }
.case-photo { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px rgba(77,61,31,.14); }
.case-photo img { width: 100%; height: auto; }
.case-h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-ink);
  margin-bottom: 14px;
  font-feature-settings: "palt" 1;
}
.case-h::before { content: ""; width: 4px; height: 18px; border-radius: 2px; background: var(--c-red); }
.case-trouble {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-red);
  border-radius: 10px;
  padding: 20px 22px;
}
.case-trouble__label { font-weight: 700; font-size: 12px; letter-spacing: .04em; color: var(--c-gray); }
.case-trouble__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--c-ink);
  margin-top: 6px;
  font-feature-settings: "palt" 1;
}
.case-worklist { list-style: none; counter-reset: cw; display: flex; flex-direction: column; gap: 10px; }
.case-worklist li {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 16px 12px 48px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}
.case-worklist li::before {
  counter-increment: cw;
  content: counter(cw, decimal-leading-zero);
  position: absolute;
  left: 15px;
  top: 13px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--c-red);
}
.case-kufuu { background: var(--c-khaki); border-radius: 12px; padding: 24px 22px; }
.case-kufuu__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-red);
}
.case-kufuu__label::before { content: ""; width: 20px; height: 1px; background: var(--c-red); }
.case-kufuu__text { margin-top: 10px; font-size: 14px; line-height: 2; color: var(--c-ink-soft); }
.case-text { font-size: 14px; line-height: 2.05; color: var(--c-ink-soft); }
.case-gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
.case-gallery figure { margin: 0; border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid var(--c-border); }
.case-gallery img { width: 100%; height: 230px; object-fit: cover; }
.case-gallery figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gray);
}
.case-gallery figcaption::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold); }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip--static { cursor: default; }
.chip--static:hover { border-color: #E3DDD5; color: var(--c-ink-soft); }
.case-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-nav__link {
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.case-nav__link:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(77,61,31,.12); }
.case-nav__link--next { text-align: center; }
.case-nav__dir { font-family: var(--font-en); font-weight: 600; font-size: 11px; letter-spacing: 1.5px; color: var(--c-red); }
.case-nav__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-ink);
  margin-top: 6px;
  font-feature-settings: "palt" 1;
}
.case-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.case-actions .btn--outline { width: 100%; max-width: 420px; justify-content: center; }

/* 一覧カード：カード全体をクリック可能に */
.archive-card { position: relative; }
.archive-card__more { position: static; }
.archive-card__more::after { content: ""; position: absolute; inset: 0; }
.works-feature__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-gold);
}
.works-feature__more span { transition: transform .3s var(--ease); }
.works-feature__more:hover span { transform: translateX(4px); }

@media (min-width: 900px) {
  .phero--case { min-height: 56vh; }
  .phero--case .phero__inner { padding: 180px var(--pad-x) 70px; }
  .phero--case .phero__title { font-size: clamp(34px, 3.4vw, 48px); }
  .phero__meta span { font-size: 12.5px; padding: 5px 14px; }
  .case-body { gap: 56px; }
  .case-h { font-size: 21px; margin-bottom: 18px; }
  .case-trouble { padding: 26px 30px; }
  .case-trouble__text { font-size: 19px; }
  .case-worklist li { font-size: 14.5px; padding: 14px 18px 14px 54px; }
  .case-worklist li::before { top: 15px; font-size: 14px; }
  .case-kufuu { padding: 32px 34px; }
  .case-kufuu__text { font-size: 15px; }
  .case-text { font-size: 15px; }
  .case-gallery { grid-template-columns: repeat(2, 1fr); }
  .case-gallery--3 { grid-template-columns: repeat(3, 1fr); }
  .case-gallery img { height: 260px; }
  .case-nav__title { font-size: 15px; }
  .case-actions { flex-direction: row; justify-content: center; }
}

/* ヘッダー：ナビ最小幅958px問題の対策（900〜1079pxでは圧縮表示） */
@media (min-width: 900px) and (max-width: 1079px) {
  .site-header { padding-left: 24px; padding-right: 24px; }
  .global-nav { gap: 18px; }
  .global-nav ul { gap: 16px; }
  .global-nav ul a { font-size: 13px; }
  .nav-tel__number { font-size: 16px; }
  .nav-tel__note { display: none; }
  .nav-cta { font-size: 12px; padding: 9px 14px; }
}

/* ==========================================================
   TOPリデザイン 2026-07-19（シンカ風オマージュ・TOPのみで使用）
   ========================================================== */

/* ローディング（セッション初回のみ・main.jsで制御・2026-07-23刷新） */
.loader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: linear-gradient(160deg, #FAF7F3 0%, #F0E9DF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .7s cubic-bezier(.76, 0, .24, 1);
}
/* ブランド赤の斜めパネルが横切る */
.loader::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(120deg, transparent 30%, var(--c-red) 30%, var(--c-red-dark) 62%, transparent 62%);
  transform: translateX(-130%) skewX(-12deg);
  animation: loaderSweep 1.1s cubic-bezier(.76, 0, .24, 1) .1s forwards;
  opacity: .1;
}
@keyframes loaderSweep {
  to { transform: translateX(130%) skewX(-12deg); }
}
.loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.loader__logo {
  width: min(46vw, 210px);
  height: auto;
  clip-path: inset(0 100% 0 0);
  animation: loaderLogoWipe .75s cubic-bezier(.65, 0, .35, 1) .45s forwards;

}
@keyframes loaderLogoWipe {
  to { clip-path: inset(0 0 0 0); }
}
.loader__tagline {
  color: var(--c-ink-soft);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .55em;
  text-indent: .55em;
  opacity: 0;
  animation: loaderTagline .6s ease .95s forwards;
}
@keyframes loaderTagline {
  from { opacity: 0; letter-spacing: .8em; }
  to { opacity: 1; letter-spacing: .35em; }
}
/* .loader__bar（ロゴ下の金のプログレスライン）は 2026-07-27 みどり指示で廃止 */
.loader.is-done { transform: translateY(-101%); }
body.is-loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .loader::before { animation: none; opacity: 0; }
  .loader__logo { clip-path: none; animation: none; }
  .loader__tagline { animation: none; opacity: 1; transform: none; }
}

/* FV：斜めシェイプ（白・シンカ風の切り込み） */
.fv__slash {
  position: absolute;
  pointer-events: none;
  background: var(--c-bg);
}
.fv__slash--top {
  top: 0; left: 0;
  width: 44%;
  /* 実機はブラウザUI分だけsvhが縮む→%だけだと白がロゴに食い込むため最低高さを保証 */
  height: max(14%, 124px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.fv__slash--bottom {
  right: 0; bottom: 0;
  width: 66%;
  /* 上の三角と同じく実機での縮み対策。上（鋭）に対して下（緩）の強弱ペア */
  height: max(15%, 104px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* FV：英字ラベル（タイトル上の金のeyebrow） */
.fv__en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.4px;
  line-height: 1.6;
  color: var(--c-gold);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

/* ヘッダーロゴ：TOPの未スクロール時はカラー版（左上の白三角に載る）
   ※.logo img（クラス+要素）より詳細度を上げるため.logoを付ける */
.logo .logo__img--color { display: none; }
.is-top .site-header:not(.is-scrolled) .logo__img--white { display: none; }
.is-top .site-header:not(.is-scrolled) .logo__img--color { display: block; }

/* SERVICE：01-03 ナンバリングカード */
.service-num__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 6px;
}
.service-num {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(77, 61, 31, .1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-num:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(77, 61, 31, .16);
}
.service-num__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  font-family: var(--font-num);
  font-size: 19px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-num__img { aspect-ratio: 16 / 10; overflow: hidden; }
.service-num__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-num:hover .service-num__img img { transform: scale(1.06); }
.service-num__body {
  position: relative;
  padding: 16px 44px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-num__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-ink);
}
.service-num__desc { font-size: 12px; line-height: 1.6; color: var(--c-gray); }
.service-num__arrow {
  position: absolute;
  right: 16px; bottom: 18px;
  font-weight: 500;
  font-size: 18px;
  color: var(--c-red);
  transition: transform .3s ease;
}
.service-num:hover .service-num__arrow { transform: translateX(4px); }

/* SERVICE：カテゴリチップ */
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border: 1px solid rgba(192, 160, 76, .45);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  color: var(--c-ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.service-chip:hover { border-color: var(--c-gold); box-shadow: 0 4px 12px rgba(77, 61, 31, .12); }
.service-chip img { width: 22px; height: 22px; object-fit: contain; }

/* スクロール演出：横からのスライドイン */
.reveal--left { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }

/* スクロール演出：ポンッと弾んで出る（ポエム内の写真用） */
.reveal--pop {
  transform: translateY(34px) scale(.8);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

/* ポエムの写真（ポラロイド風）
   SP=文章の後に3枚横並びでポンポンポン／PC=左カラムに縦散らし */
.positioning__text { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.positioning__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 28px;
}
.posi-photo {
  background: #fff;
  padding: 6px 6px 10px;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
}
/* SP：1枚目（人）を主役に大きく、作業2枚を下に横並び */
.posi-photo--a { width: 64%; }
.posi-photo--b, .posi-photo--c { width: calc((92% - 16px) / 2); }
/* SPは3枚横並びのため正方形に切り揃える（PCは自然な縦横比に戻す） */
.posi-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}
.posi-photo--a img { object-position: 50% 22%; } /* 縦長の人物写真は顔が入る位置で切る */
.posi-photo--a { rotate: -3deg; }
.posi-photo--b { rotate: 2.5deg; margin-top: 18px; }
.posi-photo--c { rotate: -2deg; }
/* 3枚が時間差でポンポンポンと出る */
.positioning__photos .posi-photo:nth-child(2) { transition-delay: .14s; }
.positioning__photos .posi-photo:nth-child(3) { transition-delay: .28s; }

@media (min-width: 900px) {
  .service-num__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .service-num__badge { top: 14px; left: 14px; width: 54px; height: 54px; font-size: 23px; }
  .service-num__body { padding: 20px 48px 22px 22px; }
  .service-num__name { font-size: 21px; }
  .service-num__desc { font-size: 13px; }
  .service-chips { gap: 10px; }
  .service-chip { font-size: 13px; padding: 9px 16px 9px 11px; }
  .works-marquee__track em { -webkit-text-stroke-width: 2.5px; }
  .loader__logo { width: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .loader__logo { animation: none; opacity: 1; }
}

/* TOP 対応カテゴリ カードグリッド（Figma 44:2 SERVICEセクション準拠・2026-07-19） */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #F1EDE7;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 22px 12px 18px;
  transition: all .2s ease;
}
.cat-card img { width: 52px; height: 52px; object-fit: contain; }
.cat-card__title { font-size: 15px; font-weight: 700; color: var(--c-ink); line-height: 1.4; }
.cat-card__sub { font-size: 11.5px; color: var(--c-ink-soft); line-height: 1.4; }
.cat-card:hover { background: #fff; border-color: var(--c-red); }
.cat-card:hover .cat-card__title { color: var(--c-red); }
@media (min-width: 900px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cat-card { padding: 26px 14px 22px; gap: 10px; }
  .cat-card img { width: 60px; height: 60px; }
  .cat-card__title { font-size: 16.5px; }
  .cat-card__sub { font-size: 12.5px; }
}

/* 会社案内：代表メッセージ＝固定動画パララックス（TOPと同じ文法・clip-pathで窓状に切り抜き・2026-07-19） */
.msg-cine {
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  background: #201D1A;
  padding: 88px var(--pad-x) 96px;
}
.msg-cine__video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.msg-cine__shade { position: absolute; inset: 0; background: rgba(32,29,26,.72); z-index: 1; }
.msg-cine__inner { position: relative; z-index: 2; }
.msg-cine .section-title { color: #fff; }
.msg-cine .sec-label__en { color: rgba(255,255,255,.6); }
.msg-cine__body { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.msg-cine__copy { font-size: 26px; line-height: 1.6; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.msg-cine__body p { font-size: 14.5px; line-height: 2.05; color: #EDE7DF; }
.msg-cine__body p.msg-cine__copy { font-size: 26px; }
.msg-cine__sign { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff !important; margin-top: 4px; }
@media (min-width: 900px) {
  .msg-cine { padding: 150px var(--pad-x); }
  .msg-cine__inner { max-width: 1080px; margin: 0 auto; }
  .msg-cine__body { max-width: 720px; gap: 24px; }
  .msg-cine__copy { font-size: 40px; line-height: 1.55; }
  .msg-cine__body p { font-size: 16px; }
  .msg-cine__sign { font-size: 16px; }
}

/* 代表メッセージ：会社紹介ムービー → 文章の縦並び。明るい無地の上で読ませる（TOPのABOUTと同じ白ベース） */
.msg-cine--flat { background: #fff; }
.msg-cine--flat .section-title { color: var(--c-ink); }
.msg-cine--flat .sec-label__en { color: var(--c-gray); }
.msg-cine--flat .msg-cine__copy { color: var(--c-ink); text-shadow: none; }
.msg-cine--flat .msg-cine__body p { color: var(--c-ink-soft); }
.msg-cine--flat .msg-cine__sign { color: var(--c-ink) !important; }
.msg-cine__grid { display: flex; flex-direction: column; gap: 28px; max-width: 760px; margin: 0 auto; }
.msg-cine__grid .about__movie { box-shadow: 0 10px 26px rgba(77,61,31,.16); }
.msg-cine__grid .msg-cine__body { max-width: none; }
@media (min-width: 900px) {
  .msg-cine__grid { gap: 40px; }
}

/* 会社案内：職人紹介＝フォトモザイク（会社紹介ムービーからの切り出し写真・2026-07-19） */
.team-lead { text-align: center; font-size: 14px; line-height: 2; color: var(--c-ink-soft); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.team-card {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #E8E2D8;
}
.team-card--wide { grid-column: span 2; aspect-ratio: 16 / 8; }
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.62) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
}
@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .team-card--wide { aspect-ratio: auto; }
  .team-card figcaption { font-size: 14px; padding: 32px 16px 13px; }
  .team-lead { font-size: 15px; }
}

/* 職人紹介：ポートレート4名＋仕事ぶりストリップ（3回目写真受領・2026-07-19） */
.team-card--portrait { aspect-ratio: 3 / 4; }
.team-card--portrait img { object-position: center 20%; }
.team-scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.team-scene { position: relative; margin: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; background: #E8E2D8; }
.team-scene img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.team-scene:hover img { transform: scale(1.06); }
.team-scene figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 8px 7px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.58) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .03em;
}
@media (min-width: 900px) {
  .team-card--wide { grid-column: 1 / -1; aspect-ratio: 21 / 8; }
  .team-scenes { grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 6px; }
  .team-scene figcaption { font-size: 12px; padding: 24px 10px 9px; }
}

/* 職人紹介：ポートレート6名化（2回目写真08-09追加・PC=3列×2段・2026-07-19） */
@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(6, 1fr); }
  .team-card--wide { grid-column: 1 / -1; }
  .team-card--portrait { grid-column: span 2; }
}

/* 職人紹介：ポラロイド風リッチ化＋ゴースト文字＋段違い配置（2026-07-19） */
.team-ghost {
  position: absolute;
  left: 50%; top: -26px;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: 4px;
  line-height: 1;
  color: var(--c-red);
  opacity: .06;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.team-card--portrait {
  background: #fff;
  padding: 9px 9px 30px;
  border-radius: 6px;
  aspect-ratio: auto;
  box-shadow: 0 12px 28px rgba(29,37,48,.14), 0 2px 6px rgba(29,37,48,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.team-card--portrait img { aspect-ratio: 3 / 4; border-radius: 3px; }
.team-card--portrait::after {
  content: "SEIKEN INC.";
  position: absolute;
  left: 0; right: 0; bottom: 9px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(40,40,40,.3);
}
.team-grid .team-card--portrait:nth-child(odd) { transform: rotate(-1.6deg); }
.team-grid .team-card--portrait:nth-child(even) { transform: rotate(1.3deg); }
.team-card--portrait:hover { transform: rotate(0) translateY(-8px); box-shadow: 0 22px 44px rgba(29,37,48,.22); }
.team-card--portrait:hover img { transform: none; }
@media (min-width: 900px) {
  .team-ghost { font-size: 130px; top: -48px; }
  .team-grid { align-items: start; }
  .team-grid .team-card--portrait:nth-child(3),
  .team-grid .team-card--portrait:nth-child(6) { margin-top: 30px; }
}

/* 法人：対応できることカードに金アイコン追加（2026-07-19） */
.biz-card__icon { width: 46px; height: 46px; object-fit: contain; margin-bottom: 12px; display: block; }
@media (min-width: 900px) {
  .biz-card__icon { width: 54px; height: 54px; margin-bottom: 14px; }
}

/* ============================
   お問い合わせ：Contact Form 7（WP版のみ有効・静的版には無影響 2026-07-20）
   ============================ */
.wpcf7-form-control-wrap { display: block; }
.wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 12px; color: var(--c-red); }
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px;
  border: 1px solid var(--c-gold) !important;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.8;
}
.wpcf7 form.sent .wpcf7-response-output { background: #EAF0E8; border-color: #C4D4BE !important; color: #3D5A34; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output { border-color: var(--c-red) !important; color: var(--c-red); }
.wpcf7-spinner { margin: 12px auto 0; display: block; }
.wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7-list-item-label { font-size: 13.5px; }

/* ============================================================
   お知らせ（news）：一覧・詳細・TOPストリップ — 2026-07-20
   ============================================================ */

/* TOPのお知らせストリップ（実績セクションの直前・最新1件） */
.news-strip { background: var(--c-khaki); }
.news-strip__inner {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--maxw, 1160px); margin: 0 auto;
  padding: 13px var(--pad-x);
  color: var(--c-ink); text-decoration: none;
  font-size: 13.5px; line-height: 1.5;
}
.news-strip__label {
  flex: none; font-family: var(--font-en); font-size: 11px; letter-spacing: .14em;
  color: #fff; background: var(--c-red); border-radius: 999px; padding: 3px 12px;
}
.news-strip__date { flex: none; font-family: var(--font-en); letter-spacing: .06em; color: var(--c-gray); }
.news-strip__title {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500;
}
.news-strip__arw { flex: none; color: var(--c-red); font-weight: 700; }
.news-strip__inner:hover .news-strip__title { text-decoration: underline; text-underline-offset: 3px; }

/* お知らせ一覧 */
.news-list { list-style: none; margin: 0; padding: 0; max-width: 860px; margin-inline: auto; }
.news-list__item { border-bottom: 1px solid var(--c-border); }
.news-list__item:first-child { border-top: 1px solid var(--c-border); }
.news-list__link {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 6px; color: var(--c-ink); text-decoration: none;
}
.news-list__date { flex: none; font-family: var(--font-en); font-size: 13px; letter-spacing: .08em; color: var(--c-gray); }
.news-list__title { font-size: 15px; font-weight: 500; line-height: 1.6; }
.news-list__arw { margin-left: auto; color: var(--c-red); font-weight: 700; }
.news-list__link:hover .news-list__title { text-decoration: underline; text-underline-offset: 3px; }
.news-empty { text-align: center; color: var(--c-gray); padding: 30px 0; }

/* お知らせ詳細（本文＝WP編集画面の自由入力） */
.phero--news .phero__title--news { font-size: clamp(22px, 5.6vw, 34px); line-height: 1.5; }
.news-body { max-width: 760px; margin-inline: auto; font-size: 15px; line-height: 2; color: var(--c-ink-soft); }
.news-body h2 {
  font-family: var(--font-head); font-size: 20px; line-height: 1.6;
  margin: 2.2em 0 .8em; padding-left: 12px; border-left: 4px solid var(--c-red);
}
.news-body h3 { font-family: var(--font-head); font-size: 17px; margin: 1.8em 0 .6em; }
.news-body p { margin: 0 0 1.2em; }
.news-body a { color: var(--c-red); }
.news-body ul, .news-body ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.news-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 8px 0 16px; }
.news-body .wp-block-image { margin: 8px 0 16px; }
.news-body figcaption { font-size: 12px; color: var(--c-gray); text-align: center; margin-top: 6px; }

@media (min-width: 900px) {
  .news-strip__inner { font-size: 14px; }
  .news-list__link { padding: 20px 10px; gap: 24px; }
  .news-list__title { font-size: 16px; }
}

/* ============================================================
   ドロワー展開中のヘッダー：×ボタンがドロワーに隠れて閉じられない
   問題の修正（スタッキングコンテキスト対策・2026-07-20）
   ============================================================ */
body.menu-open .site-header {
  z-index: 120; /* .mobile-menu(105) より手前へ */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* 暗いドロワーの上では常に白ロゴ（TOP最上部のカラーロゴ状態でも） */
body.menu-open .site-header .logo .logo__img--color { display: none; }
body.menu-open .site-header .logo .logo__img--white { display: block; }

/* ============================================================
   モバイルドロワー刷新（2026-07-20）
   番号＋英字ラベルの2段組み・ステッガー・ゴーストタイポ・CTAボタン
   （項目のマークアップは main.js が自動付与＝HTML改変なし）
   ============================================================ */
.mobile-menu {
  justify-content: flex-start;
  align-items: stretch;
  background: #23201E;
  overflow: hidden;
}
/* 質感ノイズ */
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* ゴーストタイポ */
.mobile-menu::after {
  content: 'MENU';
  position: absolute;
  right: -6px; top: 64px;
  font-family: var(--font-num);
  font-size: 96px;
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  pointer-events: none;
}
.mobile-menu nav {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 92px 30px 40px;
  overflow-y: auto;
}
.mobile-menu ul { gap: 0; margin-bottom: 26px; }
.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open li { opacity: 1; transform: none; }
.mobile-menu.is-open li:nth-child(1) { transition-delay: .06s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: .11s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: .16s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: .21s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: .26s; }
.mobile-menu.is-open li:nth-child(6) { transition-delay: .31s; }
.mobile-menu.is-open li:nth-child(7) { transition-delay: .36s; }
.mobile-menu.is-open li:nth-child(8) { transition-delay: .41s; }
.mobile-menu li:has(.mm-cta) { border-bottom: none; }
.mobile-menu ul a {
  display: block;
  position: relative;
  padding: 12px 24px 12px 2px;
}
.mobile-menu ul a:not(.mm-cta)::after {
  content: '›';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  font-weight: 700;
}
.mm-head { display: flex; align-items: baseline; gap: 9px; margin-bottom: 1px; }
.mm-idx {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--c-gold);
}
.mm-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}
.mm-jp { display: block; font-size: 16.5px; line-height: 1.4; }
/* お問い合わせ＝赤いCTAボタン */
.mobile-menu ul a.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 20px;
  padding: 15px 10px;
  background: var(--c-red);
  border-radius: 999px;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(168, 57, 46, .35);
}
.mobile-menu__tel { font-size: 24px !important; }

/* FV斜めシェイプのPC角度（基本ルールより後ろに置かないと効かない・2026-07-20） */
@media (min-width: 900px) {
  .fv__slash--top { width: 30%; height: 20%; }
  .fv__slash--bottom { width: 58%; height: 24%; }
}

/* 職人紹介：13名スタットカード（グリッド端数をブランドカードで整える・2026-07-22） */
.team-card--note {
  background: linear-gradient(150deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px 14px 12px;
  color: #fff;
}
.team-note__en {
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: .2em;
  opacity: .72;
}
.team-note__num {
  font-family: var(--font-num);
  font-size: 58px;
  line-height: 1.05;
  margin-top: 4px;
}
.team-note__num small {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  margin-left: 4px;
}
.team-note__txt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.75;
  margin-top: 8px;
}
@media (min-width: 900px) {
  .team-note__en { font-size: 12px; }
  .team-note__num { font-size: 84px; }
  .team-note__num small { font-size: 18px; }
  .team-note__txt { font-size: 13.5px; }
}

/* 13名カード調整：ポラロイド透かし除去・行の高さに揃える・PCは横長で行を埋める */
.team-card--note::after { content: none; }
.team-card--note { align-self: stretch; }
@media (min-width: 900px) {
  .team-card--note { grid-column: span 4; }
}

/* 13名カード：ロゴ透かし（右上・うっすら） */
.team-card--note::before {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 96px; height: 46px;
  background: url(../assets/img/logo_white.png) center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
}
@media (min-width: 900px) {
  .team-card--note::before { width: 150px; height: 72px; top: 20px; right: 20px; }
}

/* 職人13名：横に流れるポラロイドマーキー（赤カード廃止・2026-07-22） */
.team-mq { overflow: hidden; margin: 18px calc(-1 * var(--pad-x)) 0; padding: 14px 0 20px; }
.team-mq__track { display: flex; width: max-content; animation: teamFlow 48s linear infinite; }
.team-mq__set { display: flex; gap: 14px; padding-right: 14px; }
.team-mq .team-card--portrait { width: 150px; flex: none; }
.team-mq .team-card--portrait:nth-child(even) { transform: rotate(1.4deg); }
.team-mq .team-card--portrait:nth-child(odd) { transform: rotate(-1.4deg) translateY(5px); }
.team-mq .team-card--portrait:hover { transform: rotate(0) translateY(-6px); }
.team-mq:hover .team-mq__track { animation-play-state: paused; }
@keyframes teamFlow { to { transform: translateX(-50%); } }
@media (min-width: 900px) {
  .team-mq { margin: 24px 0 0; padding: 16px 0 24px; }
  .team-mq .team-card--portrait { width: 200px; }
  .team-mq__track { animation-duration: 62s; }
}
@media (prefers-reduced-motion: reduce) {
  .team-mq { overflow-x: auto; }
  .team-mq__track { animation: none; }
}

/* 代表ポラロイド：マーキー先頭・名前キャプション（横長wideカード廃止・2026-07-22） */
.team-card--rep::after { content: none; }
.team-card figcaption.team-cap {
  position: absolute;
  left: 0; right: 0; bottom: 7px;
  background: none;
  padding: 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .05em;
  color: #4A443F;
}
@media (min-width: 900px) {
  .team-card figcaption.team-cap { font-size: 11.5px; bottom: 8px; padding: 0; }
}

/* お問い合わせ：LINEボタン（2026-07-22改） */
.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .05em;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(6, 199, 85, .28);
  transition: transform .25s ease, box-shadow .25s ease;
  margin: 4px 0 12px;
}
.btn-line::before {
  content: "";
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3C6.5 3 2 6.6 2 11c0 2.5 1.4 4.7 3.6 6.2-.1.6-.5 2-.6 2.4 0 0-.1.4.2.6.3.2.6 0 .6 0 .5-.2 2.4-1.4 3.3-2 .9.2 1.9.3 2.9.3 5.5 0 10-3.6 10-8S17.5 3 12 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(6, 199, 85, .38); }
/* フッターのLINEミニボタン */
.footer__line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 5px 16px;
  border-radius: 999px;
  text-decoration: none;
}
.footer__line::before {
  content: "";
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3C6.5 3 2 6.6 2 11c0 2.5 1.4 4.7 3.6 6.2-.1.6-.5 2-.6 2.4 0 0-.1.4.2.6.3.2.6 0 .6 0 .5-.2 2.4-1.4 3.3-2 .9.2 1.9.3 2.9.3 5.5 0 10-3.6 10-8S17.5 3 12 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ==========================================================
   電話番号ラベル「代表直通」 2026-07-28
   携帯番号を「代表に直接つながる」安心感として見せる共通バッジ。
   色は currentColor 継承＝置き場所（濃色ヘッダー／赤CTA／白カード）を選ばない。
   ========================================================== */
.tel-badge {
  display: inline-block;
  flex: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1;
  padding: 4px 7px 3px;
  border: 1px solid currentColor;
  border-radius: 3px;
  white-space: nowrap;
  opacity: .88;
}

/* ヘッダー（PC）：バッジ＋番号を横並び、その下に受付時間 */
@media (min-width: 900px) {
  .nav-tel__head { display: flex; align-items: center; gap: 7px; }
}
/* 900〜1079px はナビが窮屈（最小幅958px問題）＝横幅を増やさないよう番号の上に積む */
@media (min-width: 900px) and (max-width: 1079px) {
  .nav-tel__head { flex-direction: column; gap: 3px; }
  .tel-badge { font-size: 9px; padding: 3px 5px 2px; }
}

/* モバイルメニュー（濃色背景） */
.mobile-menu__badge { color: #EDE8E3; margin-bottom: 9px; }

/* CTA（赤背景） */
.cta__tel .tel-badge { margin-bottom: 2px; }
@media (min-width: 900px) {
  .cta__tel .tel-badge { font-size: 11px; padding: 5px 9px 4px; margin-bottom: 4px; }
}

/* お問い合わせページの連絡先カード（白背景） */
.contact-card__label { display: flex; align-items: center; gap: 9px; }
.contact-card__label .tel-badge { color: var(--c-red); background: rgba(168, 57, 46, .06); opacity: 1; }

/* フッター会社情報 */
.footer__tel-note { display: inline-block; margin-left: 8px; font-size: 10.5px; letter-spacing: .04em; white-space: nowrap; color: #948C85; }
/* 900〜1079px はフッターの情報カラムが細い＝中途半端な折り返しを避けて2行目に置く */
@media (min-width: 900px) and (max-width: 1079px) {
  .footer__tel-note { display: block; margin-left: 0; margin-top: 2px; }
}
