@charset "UTF-8";
/* ==========================================================================
   TSUMUGU — 現行実装(モダンSaaS)のスタイル一式。
   旧デザイン(archive/ 配下の style.css / cover.css)とは独立している。
   紺 #16406B / 金 #C9973C の配色。
   薄青→薄金のグラデーション帯を重ねる構成。
   ========================================================================== */

/* Montserrat(可変フォント)はセルフホスト。/assets/fonts/ 配下に配置し、
   Google Fonts へのリクエストを1つ減らす(日本語のNoto Sans JPは引き続きGoogle Fontsから読み込み)。
   ライセンス: SIL Open Font License 1.1(/assets/fonts/OFL.txt) */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-variable.woff2") format("woff2-variations"),
       url("assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-italic-variable.woff2") format("woff2-variations"),
       url("assets/fonts/montserrat-italic-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #16406B;
  --navy-2: #1D5A8F;
  --gold: #C9973C;
  --gold-text: #B07F2E;
  --ink: #16222B;
  --gray: #4E6478;
  --line: #E3E9EC;
  --paper: #FFFFFF;
  /* Montserratを先頭に置き、英数字はMontserrat・日本語はNoto Sans JPに自動フォールバック */
  --sans: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --fs-body: 16px; /* 本文の基準サイズ(各セクションの本文段落で共通利用) */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 1280px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- 汎用 ---------- */
.sec-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-text);
  margin-bottom: 12px;
}
.sec-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.sec-sub {
  text-align: center;
  font-size: 14.5px;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.9;
}
mark {
  color: var(--navy);
  background: linear-gradient(rgba(201, 151, 60, 0.28), rgba(201, 151, 60, 0.28)) no-repeat left 82% / 100% 24%;
  padding: 0 2px;
}

/* ---------- 波の区切り ---------- */
.wave { position: relative; line-height: 0; }
.wave svg { display: block; width: 100%; height: 72px; }

/* ---------- ヘッダー ---------- */
.gnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
}
.gnav__brand { display: flex; align-items: center; gap: 10px; }
.gnav__mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.gnav__logo { height: 60px; width: auto; display: block; margin-top: -10px;}
.gnav__tag { display: inline-block; font-size: 12px; color: var(--gold-text); font-weight: 700; letter-spacing: 0.04em; margin-left: 8px; padding-left: 2px; }
.gnav__right { display: flex; align-items: center; gap: 32px; }
.gnav__links { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.gnav__links a:hover { color: var(--navy-2); }
.gnav__cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(201, 151, 60, 0.3);
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, #E7F0F9 0%, #F2F7FB 46%, #FAF1DE 100%);
  padding: 56px 0 0;
  overflow: hidden;
}
.hero__grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 84px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero__pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: #fff;
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(22, 64, 107, 0.08);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__lead { font-size: 14.5px; line-height: 2.15; color: var(--gray); margin-bottom: 30px; max-width: 460px; }
.hero__actions { display: flex; gap: 14px; margin-bottom: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(22, 64, 107, 0.25); }
.btn--navy:hover { background: #1D5288; }
.btn--outline { background: #fff; color: var(--navy); box-shadow: 0 6px 18px rgba(22, 64, 107, 0.1); }
.btn--outline:hover { border-color: var(--navy); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #a67c2f; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: 12.5px; font-weight: 700; color: #42566B;
}
.hero__stats li { display: flex; align-items: center; gap: 7px; }
.hero__stats li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.hero__deco-dots {
  position: absolute; top: 70px; right: 60px;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--navy) 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.18;
}
.hero__deco-ring {
  position: absolute; left: 44%; top: 120px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201, 151, 60, 0.3);
}
.hero__deco-dot {
  position: absolute; left: 50%; bottom: 120px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(22, 64, 107, 0.2);
}

/* チャットパネル */
.chatcard {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(22, 64, 107, 0.18);
  overflow: hidden;
  transform: rotate(1deg);
}
.chatcard__head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
}
.chatcard__head .gnav__mark { width: 30px; height: 30px; font-size: 12px; }
.chatcard__name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.chatcard__status { font-size: 11px; color: #2E9B5C; display: flex; align-items: center; gap: 5px; }
.chatcard__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2E9B5C; }
.chatcard__photo { height: 168px; overflow: hidden; }
.chatcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.chatcard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; }
.bubble {
  font-size: 13px; line-height: 1.7; padding: 10px 15px;
  border-radius: 14px; max-width: 88%;
}
.bubble--in { background: #F2F5F9; color: #2C3E51; align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble--out { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chatcard__input {
  margin-top: 4px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 8px 8px 16px;
  font-size: 12.5px; color: var(--gray);
}
.chatcard__send {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: none; font-size: 13px; margin-left: auto;
}

/* ---------- WHY / 質 ---------- */
.quality { padding: 88px 0; background: #fff; }
.quality__grid {
  display: grid; grid-template-columns: 1.3fr 0.9fr;
  gap: 56px; align-items: start; margin-top: 40px;
}
.quality__grid p { font-size: var(--fs-body); color: var(--gray); margin-bottom: 20px; }
.quality__grid strong { color: var(--navy); font-weight: 700; }
.quality__photo { position: relative; }
.quality__photo-frame {
  height: 320px; border-radius: 22px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(22, 64, 107, 0.14);
  transform: rotate(1.5deg);
}
.quality__photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quality__badge {
  position: absolute; left: -14px; bottom: -12px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 12px 20px; border-radius: 18px 18px 18px 4px;
  transform: rotate(-2deg);
  box-shadow: 0 12px 28px rgba(22, 64, 107, 0.3);
}

/* ---------- THE SHIFT ---------- */
.shift {
  position: relative;
  background: linear-gradient(120deg, #FAF1DE 0%, #F2F7FB 46%, #E7F0F9 100%);
  padding: 88px 0;
  overflow: hidden;
}
/* トップの THE SHIFT はヒーロー直下のため白背景・装飾なし(装飾帯は下の本質へ) */
.shift--plain { background: #fff; }
/* トップの本質セクションを装飾付きグラデーション帯にする(元の THE SHIFT の背景を踏襲) */
.quality--band {
  position: relative;
  background: linear-gradient(120deg, #FAF1DE 0%, #F2F7FB 46%, #E7F0F9 100%);
  overflow: hidden;
}
/* 本質セクションの上下の境目を波状に(上下の白背景セクションへ波でつなぐ) */
.quality--band .inner { position: relative; z-index: 2;     margin-top: 100px;
  margin-bottom: 100px;}
.quality__wave { position: absolute; left: 0; right: 0; line-height: 0; z-index: 1; pointer-events: none; }
.quality__wave svg { display: block; width: 100%; height: 72px; }
.quality__wave--top { top: -1px; }
.quality__wave--bottom { bottom: -1px; }
.shift__deco-ring {
  position: absolute; top: -40px; right: 6%;
  width: 200px; height: 200px; border-radius: 50%;
  border: 24px solid rgba(15, 94, 123, 0.1);
}
.shift__deco-dot {
  position: absolute; bottom: 14%; left: 4%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); opacity: 0.5;
}
.shift__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.shift__card {
  background: #fff; border-radius: 16px; padding: 30px 26px;
  box-shadow: 0 16px 32px -18px rgba(10, 49, 69, 0.18);
}
.shift__num {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--navy); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.shift__card h3 { font-size: 16px; line-height: 1.5; color: var(--navy); margin-bottom: 12px; min-height: 3em; }
.shift__card p { font-size: 13.5px; color: var(--gray); }

/* --- THE SHIFT(横並びリスト版): 左揃え見出し＋番号付き行 --- */
.shift--rows .sec-label { text-align: left; }
.shift--rows .sec-title { text-align: left; font-size: 34px; line-height: 1.45; }
.shift-rows { margin-top: 56px; border-bottom: 1px solid var(--line); }
.shift-row {
  position: relative;
  display: grid; grid-template-columns: 132px minmax(0, 1fr);
  gap: 40px; align-items: start;
  padding: 46px 0; border-top: 1px solid var(--line);
  transition: transform .3s ease;
}
/* ホバー時の淡いハイライト(左右に少しだけ張り出す) */
.shift-row::before {
  content: ""; position: absolute; left: -24px; right: -24px; top: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(201, 151, 60, 0.07) 0%, rgba(29, 90, 143, 0.05) 100%);
  border-radius: 18px; opacity: 0; transition: opacity .3s ease; z-index: 0;
}
.shift-row:hover::before { opacity: 1; }
.shift-row > * { position: relative; z-index: 1; }
.shift-row:hover { transform: translateX(4px); }

/* 番号: 大きめ＋金の下線アクセント(ホバーで伸びる) */
.shift-row__num {
  position: relative;
  font-size: 46px; font-weight: 700;
  color: var(--gold); line-height: 1; letter-spacing: 0.02em; padding-bottom: 16px;
}
.shift-row__num::after {
  content: ""; position: absolute; left: 2px; bottom: 0;
  width: 30px; height: 3px; border-radius: 2px; background: var(--gold);
  transition: width .3s ease;
}
.shift-row:hover .shift-row__num::after { width: 56px; }

.shift-row__title {
  position: relative; font-size: 22px; font-weight: 700; color: var(--navy);
  line-height: 1.6; margin-bottom: 14px; padding-top: 2px;
}
.shift-row__desc { font-size: var(--fs-body); line-height: 1.95; color: var(--gray); max-width: 760px; }

/* ---------- SERVICES ---------- */
.services { padding: 88px 0; background: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card__photo { height: 150px; overflow: hidden; }
.svc-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__tag {
  display: inline-block; align-self: flex-start;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  background: #F1F4F6; color: var(--navy-2);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.svc-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.svc-card__en { font-size: 10.5px; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 12px; }
.svc-card p { font-size: 14.5px; color: var(--gray); margin-bottom: 14px; }
.svc-card__link {
  margin-top: auto; align-self: stretch; justify-content: center;
  padding: 13px 20px; font-size: 14px;
  color: var(--gold-text); border-color: var(--gold);
}
.svc-card__link:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---------- TRACK RECORD (紺) ---------- */
.record { position: relative; background: var(--navy); color: #fff; padding: 88px 0 100px; }
.record .sec-title { color: #fff; }
.record .sec-sub { color: rgba(255,255,255,0.72); }
.record__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.record__card {
  background: #fff; border-radius: 16px; padding: 34px 24px; text-align: center;
}
.record__fact { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-text); }
.record__label { font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 12px; }
.record__num { font-size: 65px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.record__num span { font-size: 16px; color: var(--gold); }
.record__desc { font-size: 14px; line-height: 1.85; color: var(--gray); margin-top: 12px; text-align: left; }
.record__note { text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 28px; }

/* ---------- OUR TEAM ---------- */
.team {
  position: relative;
  background: linear-gradient(180deg, #FBF2E1 0%, #F4E2BE 100%);
  padding: 88px 0;
  overflow: hidden;
}
.team__deco-circle {
  position: absolute; top: -60px; left: 6%;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(185, 142, 62, 0.14);
}
.team__deco-dots {
  position: absolute; bottom: 10%; right: 6%;
  width: 100px; height: 70px;
  background-image: radial-gradient(var(--gold) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.4;
}
.team__intro {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: center; margin-bottom: 56px; position: relative;
}
.team__photo { position: relative; }
.team__photo-frame {
  height: 320px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(22, 64, 107, 0.14);
  transform: rotate(-1.5deg);
}
.team__photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team__badge {
  position: absolute; right: -16px; bottom: -14px;
  background: var(--gold); color: #fff;
  font-size: 12.5px; font-weight: 700;
  padding: 13px 22px; border-radius: 18px 18px 4px 18px;
  transform: rotate(3deg);
  box-shadow: 0 12px 28px rgba(201, 151, 60, 0.4);
}
.team__intro .sec-label { text-align: left; margin-bottom: 10px; }
.team__intro h2 { font-size: 27px; color: var(--navy); margin-bottom: 16px; }
.team__intro p { font-size: 15px; color: var(--gray); }
.team__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.team__col {
  background: #fff; border-radius: 14px; padding: 26px 24px;
}
.team__col h3 {
  font-size: 14px; color: var(--navy); font-weight: 700;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.team__col li {
  font-size: 13px; color: var(--gray); padding-left: 16px;
  position: relative; margin-bottom: 9px;
}
.team__col li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ---------- FLOW ---------- */
.flow { padding: 88px 0; background: #fff; }
.flow__steps { max-width: 640px; margin: 0 auto 48px; }
.flow__step { display: flex; gap: 22px; padding-bottom: 40px; position: relative; }
.flow__step:last-child { padding-bottom: 0; }
.flow__step:not(:last-child)::before {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: 0;
  width: 2px; background: var(--line);
}
.flow__badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; line-height: 1.1;
}
.flow__badge span { font-size: 15px; }
.flow__step h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.flow__step p { font-size: var(--fs-body); line-height: 1.9; color: var(--gray); }

/* ---------- AI導入支援サービス ---------- */
.ai-support {
  background: linear-gradient(140deg, #1D5288 0%, var(--navy) 50%, #0D2A4A 100%);
  color: #fff;
  padding: 88px 0;
}
.ai-support__grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.ai-support__body { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.ai-support__eyebrow { font-size: 12px; letter-spacing: 0.3em; color: #F0CC7E; font-weight: 700; }
.ai-support__body h2 { font-size: 28px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.6; }
.ai-support__body p { font-size: var(--fs-body); line-height: 2.1; color: #C3D4E4; }
.ai-support__price {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; border-radius: 999px; padding: 10px 22px; font-size: 13px; font-weight: 700;
}
.ai-support__body .btn--gold { box-shadow: 0 12px 28px rgba(0,0,0,0.25); margin-top: 4px; }
.ai-support__photo { position: relative; }
.ai-support__photo img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  border-radius: 24px; box-shadow: 0 20px 48px rgba(13, 42, 74, 0.35);
  transform: rotate(1.5deg);
}
.ai-support__bubble { position: absolute; font-size: 12.5px; font-weight: 700; padding: 13px 20px; max-width: 70%; }
.ai-support__bubble--in {
  left: -20px; top: -14px; background: #fff; color: var(--navy);
  border-radius: 18px 18px 18px 4px; box-shadow: 0 12px 28px rgba(22, 64, 107, 0.2);
  transform: rotate(-2deg);
}
.ai-support__bubble--out {
  right: -10px; bottom: -14px; background: var(--gold); color: #fff;
  border-radius: 18px 18px 4px 18px; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
}

/* ---------- CTA (相談) ---------- */
.cta-band { padding: 64px 0; background: #EEF4F6; }
.cta-card {
  background: #fff; border-radius: 20px; padding: 44px 48px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
  box-shadow: 0 24px 50px -26px rgba(10, 49, 69, 0.25);
  position: relative; overflow: hidden;
}
.cta-card h2 { font-size: 24px; color: var(--navy); margin-bottom: 10px; }
.cta-card p { font-size: 14.5px; line-height: 1.9; color: var(--gray); margin-bottom: 20px; }
.cta-card__photo { position: relative; }
.cta-card__photo-frame { border-radius: 14px; overflow: hidden; }
.cta-card__photo-frame img { width: 100%; height: 220px; object-fit: cover; display: block; transform: scaleX(-1); }
.cta-card__bubble-top, .cta-card__bubble-bottom {
  position: absolute; font-size: 12px; font-weight: 700;
  padding: 12px 16px;
}
.cta-card__bubble-top {
  left: -18px; top: 14px; background: #F2F5F9; color: #2C3E51;
  border-radius: 14px 14px 14px 3px;
  box-shadow: 0 10px 24px rgba(22, 64, 107, 0.14);
}
.cta-card__bubble-bottom {
  right: -10px; bottom: 16px; background: var(--navy); color: #fff;
  border-radius: 14px 14px 3px 14px;
  box-shadow: 0 10px 24px rgba(22, 64, 107, 0.28);
}

/* ---------- CONTACT ---------- */
.contact { padding: 88px 0; background: #fff; }
.contact form { max-width: 640px; margin: 0 auto; }
.contact .field { margin-bottom: 22px; }
.contact label {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.contact .req {
  font-size: 10.5px; font-weight: 700; color: #fff;
  background: var(--gold); padding: 2px 8px; border-radius: 999px;
}
.contact .opt {
  font-size: 10.5px; font-weight: 700; color: var(--gray);
  background: #EEF1F4; padding: 2px 8px; border-radius: 999px;
}
.contact .field__hint { font-size: 12px; color: var(--gray); margin-top: 6px; }
.contact input, .contact select, .contact textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px;
  background: #fff;
}
.contact textarea { min-height: 120px; resize: vertical; }
.contact input:focus, .contact select:focus, .contact textarea:focus {
  outline: none; border-color: var(--navy-2);
}
.contact__submit { display: block; margin: 8px auto 0; min-width: 220px; justify-content: center; }
.contact__note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 16px; }

/* お問い合わせ 確認/完了ページ */
.confirm-list { max-width: 640px; margin: 0 auto 36px; }
.confirm-list dt { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-text); margin-top: 18px; }
.confirm-list dd { font-size: 15px; color: var(--ink); padding: 4px 0 16px; border-bottom: 1px solid var(--line); }
.confirm-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.form-errors { max-width: 640px; margin: 0 auto 28px; color: #B4232A; font-size: 14px; }
.form-errors li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.form-errors li::before { content: "!"; position: absolute; left: 6px; font-weight: 700; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.site-footer .inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer__brand .gnav__mark { background: #fff; color: var(--navy); }
.site-footer__word { font-family: var(--sans); font-size: 16px; font-weight: 700; color: #fff; }
.site-footer__word .en { font-size: 17px; letter-spacing: 0.04em; margin-right: 2px; }
.site-footer__tag { font-size: 10.5px; color: rgba(255,255,255,0.55); }
.site-footer__desc { font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,0.62); max-width: 340px; }
.site-footer h4 {
  font-size: 11px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 13px; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.site-footer__legal {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px;
  margin-bottom: 16px;
}
.site-footer__legal li { margin-bottom: 0; }
.site-footer__legal a { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.site-footer__copy {
  text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   下層サービスページ (media / interview / supervision)
   トップの既存クラスを再利用し、下層固有のものだけ追加する。
   ========================================================================== */

/* ナビ現在地 */
.gnav__links a.is-active { color: var(--navy-2); }

/* ヒーロー(下層) — .hero に併用。右カラムは .quality__photo を再利用 */
.hero--sub h1 { font-size: 38px; }
.hero--sub .hero__lead { max-width: 520px; }

/* ISSUES — .shift__card を白背景セクションで再利用 */
.issues { padding: 88px 0; background: #fff; }
.issues .shift__card { border: 1px solid var(--line); box-shadow: none; }

/* STRENGTHS — 帯は .shift を再利用し、カード内の番号ラベルだけ追加 */
.strength__num {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold-text); margin-bottom: 14px;
}

/* CATEGORIES — タグクラウド */
.tags { padding: 88px 0; background: #EEF4F6; }
.tag-cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 12px; max-width: 760px; margin: 0 auto;
}
.tag-cloud li {
  background: #fff; color: var(--navy-2);
  font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(22, 64, 107, 0.06);
}
.tags__note {
  text-align: center; font-size: 12.5px; color: var(--gray);
  max-width: 640px; margin: 28px auto 0;
}

/* FAQ */
.faq { padding: 88px 0; background: #EEF4F6; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff; border-radius: 14px; padding: 24px 28px;
  box-shadow: 0 16px 32px -24px rgba(10, 49, 69, 0.25);
}
.faq__q { display: flex; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq__q::before { content: "Q."; color: var(--gold-text); flex-shrink: 0; }
.faq__a { display: flex; gap: 10px; font-size: 13.5px; color: var(--gray); }
.faq__a::before { content: "A."; font-weight: 700; color: var(--navy-2); flex-shrink: 0; }

/* 問い合わせフォームのサービス固定表示(下層ページ) */
.contact input[readonly] { background: #F5F7F9; color: var(--gray); }
.contact__note a { text-decoration: underline; }

/* ==========================================================================
   インタビュー記事ページ (v1 デザイン)
   Claude Design「インタビュー記事制作 v1」を既存トークンで再現。
   画像付きISSUESカード / 横並びSTRENGTHSカード / 紺帯の縦型FLOW / Q&Aカード。
   既存クラスと衝突しない新規クラスのみ追加(media/supervisionには影響しない)。
   ========================================================================== */

/* --- ヒーロー(v1): パンくず + 大きめ見出し + 複数バッジ付き写真 --- */
.hero--v1 h1 { font-size: 46px; line-height: 1.55; }
.hero--v1 .hero__lead { max-width: 520px; }
.hero__crumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #8FA0B2; font-weight: 500; margin-bottom: 20px;
}
.hero__crumb .is-here { color: var(--navy); font-weight: 700; }
.hero__visual { position: relative; display: flex; align-items: center; }
.hero__visual-frame {
  width: 100%; height: 400px; border-radius: 26px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(22, 64, 107, 0.18);
  transform: rotate(1.5deg);
}
.hero__visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__bubble, .hero__badge-navy, .hero__badge-gold { position: absolute; font-weight: 700; }
.hero__bubble {
  left: -28px; top: 46px; background: #fff; color: var(--navy);
  font-size: 13.5px; padding: 14px 20px; max-width: 74%;
  border-radius: 18px 18px 18px 4px; transform: rotate(-2deg);
  box-shadow: 0 14px 32px rgba(22, 64, 107, 0.16);
}
.hero__badge-navy {
  right: -16px; bottom: 56px; background: var(--navy); color: #fff;
  font-size: 13.5px; padding: 14px 20px; max-width: 76%;
  border-radius: 18px 18px 4px 18px; transform: rotate(1.5deg);
  box-shadow: 0 14px 32px rgba(22, 64, 107, 0.3);
}
.hero__badge-gold {
  left: -10px; bottom: -6px; background: var(--gold); color: #fff;
  font-size: 13px; padding: 12px 22px;
  border-radius: 999px; transform: rotate(-2deg);
  box-shadow: 0 12px 28px rgba(201, 151, 60, 0.4);
}

/* --- ISSUES(v1): 画像付きカード --- */
.issue-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch; margin-top: 48px;
}
.issue-card {
  background: #fff; border: 1.5px solid #E7ECF2; border-radius: 22px;
  padding: 32px 30px 34px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.issue-card:hover { border-color: var(--gold); box-shadow: 0 14px 36px rgba(22, 64, 107, 0.1); }
.issue-card__photo { height: 150px; border-radius: 14px; overflow: hidden; margin-bottom: 4px; }
.issue-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.issue-card__num {
  width: 46px; height: 46px; border-radius: 14px;
  background: #EEF4FA; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; transform: rotate(-5deg);
}
.issue-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.issue-card p { font-size: 14px; line-height: 2.05; color: var(--gray); }

/* --- STRENGTHS(v1): 横並びカード。.shift 帯の上に置く --- */
.strengths { display: flex; flex-direction: column; gap: 22px; margin-top: 48px; position: relative; }
.strength-row {
  background: #fff; border-radius: 22px; padding: 34px 36px;
  box-shadow: 0 6px 20px rgba(22, 64, 107, 0.06);
  display: grid; grid-template-columns: 72px 1fr; gap: 26px; align-items: start;
}
.strength-row--photo { grid-template-columns: 72px 1fr 300px; align-items: center; }
.strength-row__num {
  width: 72px; height: 72px; border-radius: 22px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; font-weight: 700; transform: rotate(-4deg);
}
.strength-row--photo .strength-row__num { align-self: start; }
.strength-row__body { display: flex; flex-direction: column; gap: 12px; }
.strength-row__body h3 { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.strength-row__body p { font-size: 14.5px; line-height: 2.1; color: var(--gray); }
.strength-row__body strong { color: var(--navy); font-weight: 700; }
/* STRENGTH02 内サブカード(取材形態) */
.strength-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 4px; }
.strength-mode {
  background: #F7FAFD; border: 1px solid #E7ECF2; border-radius: 16px;
  padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px;
}
.strength-mode__tag {
  align-self: flex-start; background: #EEF4FA; color: var(--navy);
  border-radius: 999px; padding: 6px 15px; font-size: 12.5px; font-weight: 700;
}
.strength-mode__tag--gold { background: #FAF1DE; color: var(--gold-text); }
.strength-mode p { font-size: 13.5px; line-height: 1.95; color: var(--gray); }
/* STRENGTH03 写真+バッジ(外枠=relative / 内枠=回転・クリップ) */
.strength-row__photo { position: relative; }
.strength-row__photo-frame {
  height: 180px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 14px 32px rgba(22, 64, 107, 0.14); transform: rotate(1.5deg);
}
.strength-row__photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strength-row__badge {
  position: absolute; left: -14px; bottom: -12px;
  background: var(--gold); color: #fff; border-radius: 999px;
  padding: 11px 18px; font-size: 12.5px; font-weight: 700; transform: rotate(-2deg);
  box-shadow: 0 12px 26px rgba(201, 151, 60, 0.4);
}

/* --- CATEGORIES(v1): タグクラウド下の注記コールアウト --- */
.tags__callout {
  margin: 32px auto 0; max-width: 760px;
  background: #fff; border: 1px solid #E7ECF2; border-radius: 18px;
  padding: 24px 28px; display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start;
}
.tags__callout-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #EEF4FA; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.tags__callout p { font-size: 13.5px; line-height: 2.05; color: var(--gray); }

/* --- FLOW(v1): 紺グラデ帯の縦型タイムライン(上下に波) --- */
.flow-band {
  position: relative;
  background: linear-gradient(150deg, #1D5288 0%, var(--navy) 48%, #0D2A4A 100%);
  color: #fff; overflow: hidden;
}
.flow-band__wave { display: block; width: 100%; }
.flow-band__wave--top { margin-top: -1px; }
.flow-band__wave--bottom { margin-bottom: -1px; }
.flow-band__body { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.flow-band .sec-label { color: #F0CC7E; }
.flow-band .sec-title { color: #fff; }
.flow-timeline { display: flex; flex-direction: column; margin-top: 48px; }
.flow-node { display: grid; grid-template-columns: 60px 1fr; gap: 26px; }
.flow-node__rail { display: flex; flex-direction: column; align-items: center; }
.flow-node__badge {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: #fff; color: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.flow-node__badge span:first-child { font-size: 9.5px; letter-spacing: 0.12em; font-weight: 700; color: #7F95AB; }
.flow-node__badge span:last-child { font-size: 20px; font-weight: 700; line-height: 1.1; }
.flow-node__badge--gold { background: var(--gold); color: #fff; }
.flow-node__badge--gold span:first-child { color: #F2E3C2; }
.flow-node__line { flex: 1; width: 2px; background: rgba(255, 255, 255, 0.22); min-height: 26px; }
.flow-node__body { padding-bottom: 30px; }
.flow-node:last-child .flow-node__body { padding-bottom: 0; }
.flow-node__body h3 { font-size: 19px; font-weight: 700; margin: 4px 0 10px; display: flex; align-items: center; gap: 12px; }
.flow-node__body p { font-size: 14.5px; line-height: 2; color: #C3D4E4; }
.flow-opt {
  background: var(--gold); color: #fff; border-radius: 999px;
  padding: 5px 14px; font-size: 12px; font-weight: 700;
}

/* --- FAQ(v1): Q/Aバッジ付きカード(白背景セクション) --- */
.faq-band { padding: 88px 0; background: #fff; }
.faq-cards { max-width: 800px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-card {
  border: 1.5px solid #E7ECF2; border-radius: 18px;
  padding: 24px 28px; display: flex; flex-direction: column; gap: 14px;
}
.faq-card__row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.faq-card__row--q { align-items: center; }
.faq-card__row--a { align-items: start; }
.faq-card__badge {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.faq-card__badge--q { background: var(--navy); color: #fff; }
.faq-card__badge--a { background: #FAF1DE; color: var(--gold-text); }
.faq-card h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.faq-card p { font-size: 14px; line-height: 2.05; color: var(--gray); }

/* ==========================================================================
   法務ページ (プライバシーポリシー / 利用規約 など): テキスト主体の下層ページ
   共通スタイル + ページ固有(privacy=.legal-hero/.legal__contact, terms=.legal-head)
   ========================================================================== */
.legal { padding: 64px 0 96px; background: #fff; }
.legal__body { max-width: 820px; margin: 0 auto; }
.legal__body h2 {
  font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.55;
  margin: 48px 0 18px; padding-left: 16px; border-left: 5px solid var(--gold);
}
.legal__body h2:first-of-type { margin-top: 24px; }
.legal__body p { font-size: var(--fs-body); line-height: 2.05; color: var(--gray); margin-bottom: 14px; }
.legal__body p.legal__lead { margin-bottom: 12px; }
.legal__body ul, .legal__body ol { margin: 0 0 18px; padding-left: 1.6em; }
.legal__body ul { list-style: disc; }
.legal__body ol { list-style: decimal; }
.legal__body ol ol { margin: 10px 0 4px; list-style: lower-latin; }
.legal__body li { font-size: var(--fs-body); line-height: 2.05; color: var(--gray); margin-bottom: 10px; padding-left: 4px; }
.legal__updated { margin-top: 40px; text-align: right; font-size: 13.5px; color: var(--gray); }
.legal__back { margin-top: 32px; text-align: center; }

/* ページヘッダー: プライバシーポリシー(左揃え) */
.legal-hero {
  background: linear-gradient(180deg, #EEF4FA 0%, #FFFFFF 100%);
  padding: 52px 0 40px; border-bottom: 1px solid var(--line);
}
.legal-hero .hero__crumb { margin-bottom: 14px; }
.legal-hero h1 { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.5; }

/* ページヘッダー: 利用規約(中央揃え) */
.legal-head {
  background: linear-gradient(120deg, #E7F0F9 0%, #F2F7FB 46%, #FAF1DE 100%);
  padding: 44px 0 52px; text-align: center;
}
.legal-head .hero__crumb { justify-content: center; margin-bottom: 14px; }
.legal-head h1 { font-size: 32px; font-weight: 700; color: var(--navy); }

/* privacy: お問い合わせ窓口ボックス */
.legal__contact {
  margin-top: 8px; padding: 24px 28px;
  background: #F6F9FB; border: 1px solid var(--line); border-radius: 16px;
}
.legal__contact p { margin-bottom: 6px; }
.legal__contact p:last-child { margin-bottom: 0; }
.legal__contact a { color: var(--gold-text); font-weight: 700; }

@media (max-width: 900px) {
  .hero__grid, .quality__grid, .shift__grid, .services__grid,
  .record__grid, .team__intro, .team__cols, .cta-card, .site-footer .inner,
  .ai-support__grid,
  .issue-cards, .strength-modes, .strength-row, .strength-row--photo {
    grid-template-columns: 1fr;
  }
}
