@charset "UTF-8";
/* =========================================================
   社外経営企画室 共通スタイル
   デザイン仕様：ナチュラル系（クリーム × セージグリーン）v2.3
   ========================================================= */

:root {
  /* 配色トークン（ワイヤーフレームv2.3で確定） */
  --cream: #f5f2e8;      /* ヒーロー・フッター背景 */
  --alt: #faf8f1;        /* 互い違いセクション背景 */
  --paper: #ffffff;      /* 基本背景 */
  --ink: #3f443a;        /* 見出し文字 */
  --text: #565a4e;       /* 本文文字 */
  --muted: #7e806f;      /* 補助文字 */
  --green: #77875a;      /* メイン／CTAボタン */
  --green-hover: #66744c;
  --green-deep: #55613f; /* 最終CTA帯 */
  --green-light: #e9edda;
  --blue-light: #e4ecf1;
  --gold: #a9894f;       /* 価格・限定表記のみ */
  --line: #e7e2d2;       /* 罫線 */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-deep); }

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

/* ---------- ボタン ---------- */
.btn-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s;
}
.btn-cta:hover { background: var(--green-hover); }
.btn-cta::after { content: "　›"; font-weight: 400; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  transition: background .2s;
}
.btn-outline:hover { background: var(--green-light); }
.btn-outline::after { content: "　›"; font-weight: 400; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
}
.logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.logo .logo-text { font-weight: 900; font-size: 19px; line-height: 1.2; letter-spacing: .02em; }
.logo .logo-sub { display: block; font-size: 10.5px; font-weight: 500; color: var(--muted); letter-spacing: .06em; }
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.global-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.global-nav a:hover { color: var(--green-deep); }
.header-cta { font-size: 14px; padding: 10px 22px; white-space: nowrap; }
.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--green-deep);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 24px 16px; }
.mobile-nav a {
  display: block;
  padding: 10px 4px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--line);
}

/* ---------- セクション共通 ---------- */
.section { padding: 76px 0; }
.section.alt { background: var(--alt); }
.section.cream { background: var(--cream); }
.kicker {
  display: block;
  text-align: center;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ---------- 写真・イラストのプレースホルダー（素材差し替え待ち） ---------- */
.ph {
  background: repeating-linear-gradient(45deg, #f0ede2, #f0ede2 10px, #e7e2d2 10px, #e7e2d2 20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

/* ---------- ヒーロー ---------- */
.hero { background: var(--cream); padding: 84px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero .subcatch {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(21px, 5.2vw, 40px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 18px;
  word-break: keep-all;
}
.hero .lead { margin: 0 0 24px; font-size: 17px; }
.trust-chips {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-wrap: wrap;
}
.trust-chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-chips .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ph { min-height: 320px; }
.hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(60, 60, 40, .14);
}

/* ---------- S2 悩みカード ---------- */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.worry-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px 22px 20px;
  font-size: 14.5px;
  line-height: 1.75;
}
.worry-card .icon {
  width: 58px; height: 58px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.worry-card .icon svg { width: 36px; height: 36px; }

/* ---------- S3 循環図 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.cycle {
  position: relative;
  width: 320px; height: 300px;
  margin: 0 auto;
}
.cycle .node {
  position: absolute;
  width: 128px; height: 128px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: var(--green-deep);
  text-align: center;
  line-height: 1.4;
}
.cycle .node small { font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.cycle .n1 { background: var(--green-light); left: 96px; top: 0; }
.cycle .n2 { background: #e3ebe4; right: 0; bottom: 10px; }
.cycle .n3 { background: #ece8d6; left: 0; bottom: 10px; }
.cycle .center {
  position: absolute;
  left: 0; right: 0; top: 138px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.about-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ---------- S4 支援領域 ---------- */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { border-radius: 16px; padding: 36px 34px; text-align: center; }
.service-card.newbiz { background: var(--green-light); }
.service-card.kaizen { background: var(--blue-light); }
.service-card .catch { font-size: 13.5px; font-weight: 700; color: var(--muted); margin: 0 0 4px; }
.service-card h3 { font-size: 22px; font-weight: 900; color: var(--ink); margin: 0 0 14px; }
.service-card p { text-align: left; margin: 0 0 14px; font-size: 15px; }
.service-card ul {
  text-align: left;
  margin: 0 auto 22px;
  padding-left: 1.4em;
  font-size: 14px;
  display: inline-block;
}
.service-card li { margin-bottom: 4px; }

/* ---------- S5 比較表 ---------- */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 32px;
  align-items: center;
}
.vs-scroll { overflow-x: auto; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  min-width: 560px;
}
.vs-table th, .vs-table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.vs-table thead th { background: #f1eee2; color: var(--ink); font-size: 13.5px; }
.vs-table thead th.us { background: var(--green); color: #fff; }
.vs-table td.us { background: #f3f6ea; font-weight: 600; color: var(--ink); }
.companion { text-align: center; }
.companion .bubble {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  padding: 8px 16px;
  margin-bottom: 12px;
}
.companion .ph { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto; }
.companion-img {
  width: 170px; height: 170px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}

/* ---------- S6 支援の入口 ---------- */
.entry-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: stretch; }
.entry-card { border-radius: 16px; padding: 34px 32px; }
.entry-card.free { background: var(--green-light); text-align: center; }
.entry-card.free p { text-align: left; }
.entry-card.paid { background: #fff; border: 1px solid var(--line); }
.badge-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.entry-card h3 { font-size: 21px; font-weight: 900; color: var(--ink); margin: 0 0 12px; }
.price-line { font-size: 15px; margin: 0 0 12px; font-variant-numeric: tabular-nums; }
.price-line s { color: var(--muted); }
.price-line .big { font-size: 30px; font-weight: 900; color: var(--green-deep); }
.paid ul { font-size: 14px; padding-left: 1.4em; margin: 0 0 20px; columns: 2; column-gap: 28px; }
.paid li { margin-bottom: 4px; break-inside: avoid; }

/* ---------- S7 支援の流れ ---------- */
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  font-size: 13.5px;
}
.flow-card .step {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 14px;
  margin-bottom: 10px;
}
.flow-card h3 { font-size: 16px; font-weight: 900; color: var(--ink); margin: 0 0 8px; }
.flow-card p { margin: 0; }

/* ---------- S8 スタンス ---------- */
.stance { text-align: center; }
.stance .quote {
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 900;
  color: var(--green-deep);
  margin: 0 0 24px;
  text-wrap: balance;
}
.stance ul {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding-left: 1.4em;
  font-size: 15px;
}
.stance li { margin-bottom: 8px; }

/* ---------- S9 プロフィール ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.profile-grid .ph { width: 180px; height: 180px; border-radius: 50%; }
.profile-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}
.profile-text h3 { font-size: 20px; font-weight: 900; color: var(--ink); margin: 0 0 10px; }
.profile-text p { margin: 0 0 18px; }

/* ---------- S10 FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 48px 16px 20px;
  position: relative;
  font-size: 15px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "＋";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "－"; }
.faq-list .answer { padding: 0 20px 18px; font-size: 14.5px; margin: 0; }

/* ---------- S11 最終CTA ---------- */
.final-cta {
  background: var(--green-deep);
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 {
  color: #f5f3e8;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 900;
  line-height: 1.6;
  margin: 0 0 16px;
  text-wrap: balance;
}
.final-cta p { color: #cfd2bd; max-width: 560px; margin: 0 auto 28px; }
.final-cta .btn-cta { background: #f5f3e8; color: var(--green-deep); font-size: 17px; padding: 16px 44px; }
.final-cta .btn-cta:hover { background: #ffffff; }
.final-cta .trust-line { color: #a8ad90; font-size: 12.5px; margin: 20px 0 0; }

/* ---------- フッター ---------- */
.site-footer { background: var(--cream); padding: 48px 0 90px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-nav a { font-size: 13.5px; color: var(--text); text-decoration: none; }
.footer-nav a:hover { color: var(--green-deep); }
.copyright { width: 100%; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ---------- 下層ページ共通 ---------- */
.page-hero { background: var(--cream); padding: 64px 0 56px; text-align: center; }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 8px;
  text-wrap: balance;
}
.page-hero .lead { max-width: 720px; margin: 14px auto 0; text-align: left; }

/* サービス紹介などのカードリスト */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 24px;
  font-size: 14.5px;
}
.menu-card .num {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 14px;
  margin-bottom: 10px;
}
.menu-card h3 { font-size: 18px; font-weight: 900; color: var(--ink); margin: 0 0 10px; }
.menu-card ul { margin: 10px 0 0; padding-left: 1.4em; }
.menu-card li { margin-bottom: 4px; }
.menu-card .note { font-size: 12.5px; color: var(--muted); margin: 10px 0 0; }

/* 3ステップ詳細カード */
.steps-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps-detail .card-step {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 14px;
  padding: 24px 24px 20px;
}
.steps-detail h3 { font-size: 18px; font-weight: 900; color: var(--green-deep); margin: 0 0 4px; }
.steps-detail .sub { font-size: 12.5px; color: var(--muted); margin: 0 0 12px; }
.steps-detail ul { margin: 0; padding-left: 1.3em; font-size: 14px; }
.steps-detail li { margin-bottom: 4px; }

/* お願いしたいこと・対象外 */
.cond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cond-card { border-radius: 16px; padding: 28px; font-size: 14.5px; }
.cond-card.ok { background: var(--green-light); }
.cond-card.ng { background: #fff; border: 1px solid var(--line); }
.cond-card h3 { font-size: 17px; font-weight: 900; color: var(--ink); margin: 0 0 12px; }
.cond-card ul { margin: 0; padding-left: 1.4em; }
.cond-card li { margin-bottom: 6px; }
.cond-card .note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }

/* 3カラムのカード列（原因の説明など） */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* 支援前→支援後の変化表 */
.ba-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; }
.ba-table th, .ba-table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.ba-table thead th { background: #f1eee2; color: var(--ink); font-size: 13.5px; width: 50%; }
.ba-table thead th.after { background: var(--green); color: #fff; }
.ba-table td.after { background: #f3f6ea; font-weight: 600; color: var(--ink); }

@media (max-width: 880px) {
  .menu-grid { grid-template-columns: 1fr; }
  .steps-detail { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* 項目と内容の2列表（初期診断の概要など） */
.info-table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; }
.info-table th, .info-table td { border: 1px solid var(--line); padding: 12px 18px; text-align: left; }
.info-table th { background: #f1eee2; color: var(--ink); width: 32%; font-size: 13.5px; white-space: nowrap; }
.info-table .price-strong { font-size: 20px; font-weight: 900; color: var(--green-deep); font-variant-numeric: tabular-nums; }

/* チェックリスト風の2列リスト（診断で確認する領域など） */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; max-width: 760px; margin: 0 auto; }
.check-grid li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-grid li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- お問い合わせフォーム ---------- */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-group > label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.tag-req, .tag-opt {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: 1px;
}
.tag-req { background: var(--gold); color: #fff; }
.tag-opt { background: var(--chip-bg); color: var(--muted); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 16px; /* iOSの自動ズームを防ぐため16px以上 */
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(119, 135, 90, .18);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin: 26px 0;
}
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); }
.form-submit { text-align: center; }
button.btn-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

@media (max-width: 720px) {
  .check-grid { grid-template-columns: 1fr; }
}

/* ---------- スマホ追従CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 14px;
  background: rgba(255,255,255,.95);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn-cta { display: block; text-align: center; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 880px) {
  .global-nav, .header-cta { display: none; }
  .burger { display: block; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ph { min-height: 200px; }
  .worry-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .entry-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-grid .ph { margin: 0 auto; }
  .profile-text p { text-align: left; }
  .paid ul { columns: 1; }
  .sticky-cta { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
