/* ============================================================
   こもれび工務店（デザインサンプル）— 建設・工務店 業種別モック
   サイト工房マクシーン 制作例 / 自己完結CSS
   骨格: Obsidianダーク × ゴールドアクセント × Unbounded + Noto Sans JP
   ============================================================ */

:root {
  /* --- アクセント（ゴールド固定） --- */
  --accent: #E8B84B;
  --accent-strong: #F2CD74;
  --on-accent: #141008;
  --accent-line: rgba(232, 184, 75, 0.30);
  --accent-dim: rgba(232, 184, 75, 0.10);

  /* --- ダークサーフェス --- */
  --paper: #0C0E13;
  --panel: #14171E;
  --panel-2: #191C24;
  --ink: #F5F5F5;
  --ink-soft: rgba(245, 245, 245, 0.66);
  --ink-mute: #7A7E88;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: #3B3F4A;

  --font-en: "Unbounded", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --shadow-card: 0 18px 40px -18px rgba(0, 0, 0, 0.65), 0 4px 10px -4px rgba(0, 0, 0, 0.35);
}

/* ============ リセット・ベース ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.en { font-family: var(--font-en); }
.nw { white-space: nowrap; }
.sp-only { display: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.wrap--wide { max-width: 1240px; }
.wrap--narrow { max-width: 860px; }

/* ============ デモ注記バー ============ */
.mx-demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: #1a1a1a;
  border-top: 2px solid #34d399;
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
}
.mx-demo-bar p { margin: 0; }
.mx-demo-bar a {
  color: #34d399;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ 共通パーツ ============ */
.sec-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #fff;
}
.section-note { font-size: 14px; font-weight: 500; color: var(--ink-soft); padding-bottom: 6px; }

/* テキストリンク（下線 + 矢印） */
.wavy-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.wavy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--line-strong);
  transition: background-color 0.2s ease;
}
.wavy-link:hover { color: var(--accent); }
.wavy-link:hover::after { background: var(--accent); }
.wavy-link .arw { transition: transform 0.25s ease; }
.wavy-link:hover .arw { transform: translateX(4px); }

/* ピルボタン */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 12px 22px 12px 30px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pill-btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); transform: translateY(-2px); }
.pill-btn .arw { display: inline-flex; transition: transform 0.25s ease; }
.pill-btn:hover .arw { transform: translateX(4px); }
.pill-btn--frost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; backdrop-filter: blur(6px); }
.pill-btn--frost:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.6); }
.arw svg { display: block; }

/* スクロールリビール */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }

/* ============ ヘッダー ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.header.is-solid {
  background: rgba(12, 14, 19, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.logo { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.logo__mark { width: 30px; height: 30px; flex: none; color: var(--accent); }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  display: block;
  line-height: 1.3;
}
.logo__sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  line-height: 1.2;
  transform: scale(0.75);
  transform-origin: left center;
}
.gnav { display: flex; align-items: center; gap: 26px; }
.gnav a { font-size: 14px; font-weight: 700; color: #fff; transition: opacity 0.2s ease; }
.gnav a:hover { opacity: 0.6; }
.header__cta { padding: 10px 18px 10px 24px; font-size: 13.5px; }

/* SP ハンバーガー + ドロワー */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 210;
}
.menu-btn span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease; }
body.drawer-open .menu-btn span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.drawer-open .menu-btn span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 14, 19, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.drawer-open .drawer { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }
.drawer__nav { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.drawer__nav a { color: #fff; font-size: 18px; font-weight: 700; }

/* ============ ヒーロー ============ */
.hero { position: relative; background: var(--paper); padding: 10px 22px 0; }
.hero__frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 78vh;
  isolation: isolate;
  background: var(--panel);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.8) contrast(1.02);
  opacity: 0;
  animation: heroCycle 16s ease-in-out infinite;
}
.hero__bg img:nth-child(2) { animation-delay: 8s; }
@keyframes heroCycle {
  0% { opacity: 0; transform: scale(1.06); }
  5% { opacity: 1; }
  50% { opacity: 1; transform: scale(1); }
  56% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.06); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 19, 0.66) 0%, rgba(12, 14, 19, 0.32) 30%, rgba(12, 14, 19, 0) 55%),
    linear-gradient(180deg, rgba(12, 14, 19, 0.28) 0%, rgba(12, 14, 19, 0.05) 40%, rgba(12, 14, 19, 0.6) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 88px 64px 120px;
}
.hero__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
}
.hero__title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fff;
}
.hero__title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: wordIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }
.hero__tag {
  margin-top: 22px;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: wordIn 0.8s 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__lead {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.76);
  max-width: 46ch;
  opacity: 0;
  animation: wordIn 0.8s 1.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: wordIn 0.8s 2.2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

/* ヒーロー内 見学会小箱 */
.hero__notice {
  position: absolute;
  right: 46px;
  bottom: 24px;
  z-index: 3;
  display: block;
  width: 36%;
  min-width: 280px;
  max-width: 440px;
  padding: 14px 20px 15px;
  background: rgba(12, 14, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.94);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.hero__notice:hover { background: rgba(12, 14, 19, 0.9); border-color: var(--accent-line); }
.hero__notice__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__notice__eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-line);
}
.hero__notice__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__notice__date {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.14em;
}

/* ============ こだわり（強み3点 + 実績数値） ============ */
.strength { position: relative; background: var(--paper); padding: 110px 0 120px; }
.strength__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strength__card {
  position: relative;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 30px 34px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.strength__card:hover { border-color: var(--accent-line); background: var(--accent-dim); }
.strength__num {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
.strength__num::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent-line);
  margin-top: 10px;
}
.strength__title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 14px;
}
.strength__text { font-size: 14px; font-weight: 500; line-height: 2.0; color: var(--ink-soft); }

/* 実績数値（巨大数字3つ） */
.strength__stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.strength__stat__num {
  font-family: var(--font-en);
  font-size: clamp(56px, 6.6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.strength__stat__num small {
  font-family: var(--font-jp);
  font-size: 0.32em;
  font-weight: 700;
  margin-left: 6px;
  color: var(--ink-soft);
}
.strength__stat__label { font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-top: 14px; }

/* ============ 大工紹介の帯 ============ */
.crew {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 0;
}
.crew__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.crew__photo {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: var(--shadow-card);
}
.crew__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) brightness(0.88); }
.crew__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 22px;
}
.crew__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

/* ============ 施工事例 ============ */
.works { position: relative; background: var(--paper); padding: 110px 0 120px; }
.works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
.work-card { position: relative; display: block; }
.work-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel-2);
  isolation: isolate;
}
.work-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.86);
  transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.25, 1), filter 0.3s ease;
}
.work-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 19, 0.05) 55%, rgba(12, 14, 19, 0.5) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-card__thumb img { transform: scale(1.05); filter: saturate(0.95) brightness(0.95); }
.work-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--on-accent);
  background: var(--accent);
  border-radius: 3px;
  padding: 3px 10px;
  line-height: 1.6;
}
.work-card__tag--reform {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-line);
  background: rgba(12, 14, 19, 0.72);
  backdrop-filter: blur(6px);
}
.work-card__tag--zosaku {
  background: rgba(12, 14, 19, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.work-card__title {
  display: block;
  margin-top: 14px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  transition: color 0.2s ease;
}
.work-card:hover .work-card__title { color: var(--accent-strong); }
.work-card__meta {
  display: block;
  margin-top: 4px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

/* ============ 家づくりの流れ ============ */
.flow {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 0 120px;
}
.flow__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 22px; counter-reset: flow; }
.flow__item {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 28px 30px;
  transition: border-color 0.2s ease;
}
.flow__item:hover { border-color: var(--accent-line); }
.flow__num {
  flex: none;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  padding-top: 4px;
}
.flow__title {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
}
.flow__text { font-size: 14px; font-weight: 500; line-height: 2.0; color: var(--ink-soft); }

/* ============ 会社概要 ============ */
.company { position: relative; background: var(--paper); padding: 110px 0 120px; }
.company__table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.company__table th,
.company__table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.9;
  text-align: left;
  vertical-align: top;
}
.company__table th {
  width: 180px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.company__table td { font-weight: 500; color: var(--ink); }
.company__tel { font-family: var(--font-en); font-weight: 700; color: var(--accent); letter-spacing: 0.06em; }
.company__tel:hover { color: var(--accent-strong); }
.company__note { white-space: nowrap; }

/* ============ FAQ ============ */
.faq {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 0 120px;
}
.faq__item {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}
.faq__item:hover, .faq__item[open] { border-color: var(--accent-line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q > span:first-child { display: inline-flex; gap: 12px; }
.faq__q > span:first-child::before {
  content: "Q";
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--accent);
  flex: none;
}
.faq__icon { position: relative; flex: none; width: 14px; height: 14px; }
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--accent);
  transition: transform 0.25s ease;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__a {
  padding: 0 24px 24px 52px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.05;
  color: var(--ink-soft);
}

/* ============ 見学会・相談CTA ============ */
.cta { position: relative; overflow: hidden; background: var(--paper); isolation: isolate; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(9, 11, 15, 0.84); }
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 40px 110px;
  text-align: center;
}
.cta__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta__title {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 24px;
}
.cta__copy {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.15;
  color: var(--ink);
  margin-bottom: 34px;
}
.cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta__btn { font-size: 16px; padding: 15px 28px 15px 40px; }
.cta__note { margin-top: 22px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }

/* ============ フッター ============ */
.footer { position: relative; background: var(--panel); border-top: 1px solid var(--line); }
.footer__inner { max-width: 1240px; margin: 0 auto; padding: 80px 40px 40px; color: #fff; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 60px; }
.footer__info {
  font-size: 13.5px;
  line-height: 2.1;
  opacity: 0.92;
  min-width: 250px;
  margin-right: auto;
}
.footer__name { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.footer__info .lbl { opacity: 0.65; }
.footer__nav { display: flex; gap: 56px; }
.footer__nav ul li { margin-bottom: 12px; }
.footer__nav a { font-size: 14px; font-weight: 700; transition: opacity 0.2s ease; }
.footer__nav a:hover { opacity: 0.6; }
.footer__copy {
  margin-top: 48px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}

/* ============ レスポンシブ ============ */
@media (max-width: 1000px) {
  .gnav { display: none; }
  .header__cta { display: none; }
  .menu-btn { display: flex; }

  .strength__grid { grid-template-columns: 1fr; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .crew__wrap { grid-template-columns: 1fr; gap: 40px; }
  .flow__list { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .sp-only { display: inline; }

  .hero { padding: 10px 14px 0; }
  .hero__frame { min-height: 74svh; }
  .hero__title { font-size: clamp(26px, 8.2vw, 44px); }
  .hero__inner { min-height: 74svh; padding: 60px 26px 150px; }
  .hero__notice { right: 14px; left: 14px; width: auto; min-width: 0; max-width: none; bottom: 14px; }

  .strength { padding: 72px 0 80px; }
  .strength__stats { margin-top: 64px; grid-template-columns: 1fr; gap: 40px; }
  .crew { padding: 72px 0; }
  .works { padding: 72px 0 80px; }
  .flow { padding: 72px 0 80px; }
  .company { padding: 72px 0 80px; }
  .faq { padding: 72px 0 80px; }
  .cta__inner { padding: 80px 24px 76px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 30px; }
  .company__table th { width: 110px; padding: 16px 10px; font-size: 13.5px; }
  .company__table td { padding: 16px 10px; font-size: 14px; }
  .company__note { display: block; white-space: normal; }
  .faq__q { font-size: 14.5px; padding: 18px 20px; }
  .faq__a { padding: 0 20px 20px; }
  .faq__a { padding-left: 24px; }
}
@media (max-width: 700px) {
  .wrap { padding: 0 22px; }
  .crew__wrap { padding: 0 22px; }
  .footer__inner { padding: 64px 22px 32px; }
  .works__grid { grid-template-columns: 1fr; }
  .flow__item { padding: 22px 20px 24px; gap: 16px; }
  .footer__cols { gap: 36px; }
}
