/* グレート・コンサルティング — 共通スタイル ver.2 */
:root {
  --navy-950: #0b1220;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --accent: #1e3a5f;
  --accent-light: #2d4a6f;
  --white: #ffffff;
  --muted: #e2e8f0;
  --surface: #f8fafc;
  --text-sub: #94a3b8;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --max: 1080px;
  --gold: #e8b923;
  --gold-deep: #b45309;
  --cyan-glow: rgba(56, 189, 248, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--navy-900);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: min(100%, 30rem);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo__mark {
  height: 2.35rem;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
@media (max-width: 520px) {
  .logo { flex-wrap: wrap; }
  .logo__mark { height: 2rem; }
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.logo__name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  line-height: 1.3;
}
.logo__tagline {
  display: block;
  font-weight: 500;
  color: var(--navy-700);
  font-size: 0.72em;
  margin: 0;
  line-height: 1.35;
}

/* 管理画面ヘッダー用（グレー横ロゴ） */
.admin-page-logo {
  height: 1.85rem;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-700);
  text-decoration: none;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav .is-current { color: var(--navy-900); font-weight: 700; }
.nav .btn-nav {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.nav .btn-nav:hover { background: var(--accent); }
.nav .btn-nav.is-current { background: var(--accent-light); }

@media (max-width: 960px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav {
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav.is-open { max-height: 480px; }
  .nav ul { flex-direction: column; align-items: stretch; padding: 0.5rem 0 1rem; gap: 0.5rem; }
  .nav .btn-nav { text-align: center; }
}

/* Hero (page) */
.hero {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--accent) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255,255,255,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-sub); margin-bottom: 0.75rem; }
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.hero__lead { margin: 0; font-size: clamp(0.95rem, 2vw, 1.08rem); color: var(--muted); max-width: 40em; }

/* Subpage：事業別ヒーロー（body の --subpage-accent を全面に反映。ヒーロー内で上書きしないこと） */
.hero--subpage {
  /* 旧ブラウザ向け：右端にアクセント。左はネイビー系 */
  background: linear-gradient(155deg, #1e293b 0%, #334155 48%, var(--subpage-accent) 100%);
}
@supports (color: color-mix(in srgb, white, black)) {
  .hero--subpage {
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--subpage-accent) 42%, #0b1220) 0%,
      color-mix(in srgb, var(--subpage-accent) 28%, #1e293b) 50%,
      color-mix(in srgb, var(--subpage-accent) 90%, #0f172a) 100%
    );
  }
}
.hero--subpage h1 {
  font-size: clamp(2.05rem, 5vw, 3.2rem);
}
.hero--subpage .hero__label { color: rgba(255, 255, 255, 0.85); }
/* 事業トップ（コンサル・研修・補助金）のラベル */
.hero--subpage .hero__label--service {
  font-size: clamp(1.02rem, 2.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.hero--subpage .hero__lead { color: rgba(226, 232, 240, 0.92); }

/* 実績・会社概要など：カード／箇条書き無しのヒーローで帯の高さを揃える */
.hero.hero--subpage.hero--subpage-simple {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  /* 見出し2行＋リード2行分を想定し、両ページで同一の帯高にする */
  min-height: clamp(17.5rem, 44vmin, 27rem);
  box-sizing: border-box;
}
.hero.hero--subpage.hero--subpage-simple .wrap {
  flex: 0 0 auto;
  text-align: center;
}
.hero.hero--subpage.hero--subpage-simple .hero__label,
.hero.hero--subpage.hero--subpage-simple h1 {
  text-align: center;
}
.hero.hero--subpage.hero--subpage-simple .hero__lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  /* 行数差で帯だけ高さが変わらないよう、リード欄の最小高さを確保 */
  min-height: 3.35rem;
}
@media (min-width: 720px) {
  .hero.hero--subpage.hero--subpage-simple .hero__lead {
    min-height: 3.5rem;
  }
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 0.9rem;
}
.hero__bullets li {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}
.hero__bullets strong {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
}

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

/* 事業サブページ：アクセントを本文・ボタン・CTAまで波及 */
.page-subpage {
  --subpage-accent: var(--accent);
}
/* ページごとのイメージ色：最上部の帯＋ヘッダー下線 */
body.page-subpage::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: var(--subpage-accent);
  flex-shrink: 0;
}
.page-subpage main .eyebrow {
  color: var(--subpage-accent);
}
.page-subpage main .prose > h2.section-title {
  border-left: 4px solid var(--subpage-accent);
  padding-left: 0.85rem;
}
.page-subpage main .section-head--left .section-title {
  border-left: 4px solid var(--subpage-accent);
  padding-left: 0.85rem;
}
.page-subpage main .section-head:not(.section-head--left) .section-title {
  border-left: none;
  padding-left: 0;
  border-bottom: 3px solid var(--subpage-accent);
  padding-bottom: 0.45rem;
  display: inline-block;
}
.page-subpage main .content-block h2 {
  border-bottom-color: var(--subpage-accent);
}
.page-subpage main .prose a:not(.btn),
.page-subpage main .card__cta {
  color: var(--subpage-accent);
}
.page-subpage main .btn--primary {
  background: var(--subpage-accent);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}
.page-subpage main .btn--primary:hover {
  text-decoration: none;
  filter: brightness(1.07);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}
.page-subpage .cta-band {
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 42%, var(--subpage-accent) 100%);
}
.page-subpage main .data-table thead th {
  background: var(--subpage-accent);
  color: var(--white);
}
.page-subpage main .step__num {
  background: var(--subpage-accent);
  color: var(--white);
}
.page-subpage main .step {
  border-left: 3px solid var(--subpage-accent);
}
.page-subpage main .feature-item {
  border-left: 3px solid var(--subpage-accent);
}

/* 研修ページ：明るく親しみやすいトーン（Winスクール系） */
.training-page .hero--subpage {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 38%, #60a5fa 100%);
}
.training-page .hero--subpage .hero__lead {
  max-width: 44rem;
  color: #e2e8f0;
}
.training-page .training-hero-cta .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(15, 23, 42, 0.2);
}
.training-page .training-hero-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.training-page .hero__bullets li {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 0.8rem;
  line-height: 1.45;
}
.training-page .hero__bullets strong {
  color: #ffffff;
}
.training-page .hero__bullets {
  margin-top: 0.85rem;
  gap: 0.55rem 0.75rem;
}
.training-page .training-hero .hero__label {
  color: #1e3a8a;
  font-weight: 700;
}
.training-page .training-hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.3;
}
.training-page .training-hero {
  padding-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
}
.training-page .training-hero-cta {
  margin-top: 0.55rem !important;
}
.training-hero__layout {
  display: block;
}
.training-hero__content {
  background: rgba(15, 23, 42, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  backdrop-filter: blur(1.5px);
  max-width: 56rem;
  margin-inline: auto;
}
.training-page main .page-section--alt {
  background: #f3fbfa;
}
.training-page main .course-doc,
.training-page main .feature-item {
  background: #ffffff;
  border: 1px solid #d7ece8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.training-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.training-value-card {
  background: #fff;
  border: 1px solid #d7ece8;
  border-radius: var(--radius);
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.training-value-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy-900);
}
.training-value-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy-700);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .training-value-grid { grid-template-columns: 1fr; }
}

/* 研修ページ：講師一覧（4列カード） */
.lecturer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lecturer-card {
  background: #ffffff;
  border: 1px solid #d7ece8;
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.lecturer-card__photo {
  margin: 0 0 0.8rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}
.lecturer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lecturer-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  border-style: dashed;
}
.lecturer-card__name {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}
.lecturer-card p {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--navy-700);
  line-height: 1.7;
}
.lecturer-card strong {
  color: var(--navy-900);
  font-weight: 700;
}
.lecturer-card__desc {
  margin-top: 0.55rem;
}

@media (max-width: 980px) {
  .lecturer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lecturer-grid { grid-template-columns: 1fr; }
}

.training-page main .data-table tr:hover td,
.training-page main .data-table tr:hover th {
  background: rgba(20, 184, 166, 0.06);
}

/* Sections */
.page-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-section--alt { background: var(--surface); }

.section-head { text-align: center; max-width: 38rem; margin: 0 auto 2rem; }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.section-desc { margin: 0.6rem 0 0; color: var(--navy-700); font-size: 0.95rem; }

.prose { max-width: 42rem; }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

/* 実績・お客様の声 */
.result-meta {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--navy-800);
  line-height: 1.6;
}
.result-meta__label {
  font-weight: 700;
  color: var(--navy-900);
}
.result-voice-card__figure {
  margin: 1rem 0 1rem;
  max-width: 340px;
}
.result-voice-card__figure.media-banner img {
  max-height: 220px;
  object-fit: contain;
  object-position: center center;
}
.result-voice-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.45;
}
.result-voice {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--navy-700);
}
.result-voice--muted {
  color: var(--navy-700);
  font-style: italic;
}
.result-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
}
.result-placeholder {
  border-style: dashed;
  border-color: #cbd5e1;
  background: rgba(248, 250, 252, 0.85);
}
@media (max-width: 720px) {
  .result-placeholder-grid {
    grid-template-columns: 1fr;
  }
}

.consulting-subhead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 1.35rem 0 0.75rem;
  line-height: 1.45;
}
.consulting-subhead--role {
  font-size: 1.08rem;
  margin-top: 0.65rem;
  margin-bottom: 0.85rem;
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.page-section--alt .card { box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); }
.card:hover { border-color: rgba(30, 58, 95, 0.35); box-shadow: var(--shadow); }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.card p { margin: 0; font-size: 0.9rem; color: var(--navy-700); line-height: 1.65; }
.card__cta { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: 0.9rem; color: var(--accent); text-decoration: none; }
.card__cta:hover { text-decoration: underline; }

/* コンサル：支援メニュ−カード（アイコン付き） */
.service-cards { margin-top: 1rem; }
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.service-card__icon svg { width: 28px; height: 28px; }

/* Features list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature-item {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}
.page-section--alt .feature-item { background: var(--white); box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04); }
.feature-item strong { display: block; font-size: 1rem; color: var(--navy-900); margin-bottom: 0.5rem; }
.feature-item p { margin: 0; font-size: 0.88rem; color: var(--navy-700); }

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, var(--navy-900), var(--accent));
  color: var(--white);
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 700; }
.cta-band p { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.95rem; max-width: 36rem; margin-inline: auto; }
/* 補助金ページ等：リード文を強調 */
.cta-band .cta-band__lead {
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--white); color: var(--navy-900); box-shadow: var(--shadow); }
.btn--primary:hover { text-decoration: none; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; align-items: center; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--text-sub);
  padding: 2.25rem 0 1.75rem;
  font-size: 0.84rem;
}
/* ヘッダーと同じ .wrap ＋縦方向の区切り（TOPページなど） */
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__brand { margin: 0 0 0.75rem; padding: 0; }
.site-footer__logo {
  height: 2.5rem;
  width: auto;
  max-width: 2.75rem;
  display: block;
  object-fit: contain;
  opacity: 0.95;
}

/* 会社概要テーブル「会社名」欄 */
.company-table-company {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}
.company-table-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  line-height: 1.4;
}
.company-table-logo {
  height: 2.25rem;
  width: auto;
  max-height: 2.5rem;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer p { margin: 0 0 0.75rem; line-height: 1.65; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--white); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  align-items: center;
  width: 100%;
}
.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--white); text-decoration: underline; }

/* Subpage content */
.content-block { margin-bottom: 2.5rem; }
.content-block:last-child { margin-bottom: 0; }
.content-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--navy-900);
}

.service-list { margin: 0; padding: 0; list-style: none; }
.service-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.service-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-list h3 { margin: 0 0 0.5rem; font-size: 1rem; color: var(--navy-900); }
.service-list .for { font-size: 0.85rem; color: var(--accent); margin-top: 0.35rem; }

.steps { display: grid; gap: 0.75rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}
.step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-900);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
}
.step strong { display: block; font-size: 0.95rem; color: var(--navy-900); margin-bottom: 0.25rem; }
.step p { margin: 0; font-size: 0.88rem; color: var(--navy-700); }

.bullet-list { margin: 0.5rem 0 0; padding-left: 1.2rem; }
.bullet-list li { margin-bottom: 0.35rem; }

/* コンサル：進め方の図解（SVG） */
.process-illustration {
  margin: 0.9rem 0 1.25rem;
}
.process-illustration svg {
  width: 100%;
  max-width: 1120px;
  height: auto;
  display: block;
}
.process-illustration__caption {
  margin-top: 0.6rem;
  color: var(--navy-700);
  font-size: 0.92rem;
  text-align: center;
}

/* Tables */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 520px;
}
.data-table th,
.data-table td {
  border: 1px solid #e2e8f0;
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.data-table thead th { background: var(--navy-900); color: var(--white); font-weight: 600; }
.data-table tbody th {
  background: var(--surface);
  color: var(--navy-900);
  font-weight: 600;
  width: 28%;
}
.data-table tr:nth-child(even) td { background: var(--surface); }
.data-table tbody tr:nth-child(even) th { background: #eef2f7; }

/* FAQ */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-list li {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}
.faq-list li:first-child { padding-top: 0; }
.faq-list .q { font-weight: 700; color: var(--navy-900); margin-bottom: 0.5rem; }
.faq-list .a { margin: 0; font-size: 0.92rem; color: var(--navy-700); }

/* Form */
.form-grid { display: grid; gap: 1rem; max-width: 36rem; }
.form-grid--contact { max-width: 42rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 0.35rem; }
/* ラジオ・チェックは幅100%にしない（ラベルが潰れて縦書きになるのを防ぐ） */
.form-row input:not([type="radio"]):not([type="checkbox"]),
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row input[type="radio"],
.form-row input[type="checkbox"] {
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
  accent-color: var(--accent, #2563eb);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--navy-700); margin-top: 0.75rem; }
.form-error { font-size: 0.9rem; color: #b91c1c; margin-bottom: 1rem; font-weight: 500; }
.form-hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--navy-700);
  margin-top: 0.2rem;
  line-height: 1.45;
}
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 1.75rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent);
}
.form-section-title:first-child { margin-top: 0; }
.form-section-lead {
  font-size: 0.88rem;
  color: var(--navy-700);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.form-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.form-fieldset legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.radio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.radio-list input[type="radio"] {
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.radio-list label {
  display: block;
  flex: 1;
  min-width: 0;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  line-height: 1.45;
}

.member-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.member-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.member-card .role { font-size: 0.82rem; color: var(--accent); margin-bottom: 0.5rem; }
.member-card p { margin: 0; font-size: 0.88rem; color: var(--navy-700); }

/* メンバー紹介：共著書籍 */
.member-book {
  margin-top: 2.25rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
}
.member-book__cover {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 0;
}
.member-book__cover:hover { opacity: 0.95; text-decoration: none; }
.member-book__cover img {
  width: 120px;
  height: auto;
  display: block;
}
.member-book__body { min-width: 0; }
.member-book__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.member-book__title {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  line-height: 1.45;
}
.member-book__meta {
  font-size: 0.82rem;
  color: var(--navy-700);
  margin: 0 0 0.5rem;
  line-height: 1.55;
}
.member-book__body p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--navy-700);
  line-height: 1.65;
}
.member-book__body p:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  .member-book {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .member-book__body { text-align: left; width: 100%; }
}

.curriculum-table { font-size: 0.8rem; }
.curriculum-table td:first-child { white-space: nowrap; }

/* 研修コース詳細（PDFレイアウト準拠のブロック） */
.course-doc {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-top: 1rem;
}
.course-doc h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.course-doc p { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--navy-700); line-height: 1.75; }
.course-doc p:last-child { margin-bottom: 0; }
.course-doc ul { margin: 0.35rem 0 0; padding-left: 1.15rem; }
.course-doc li { margin-bottom: 0.35rem; font-size: 0.92rem; color: var(--navy-700); line-height: 1.65; }
.course-doc__subhead {
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}
.course-doc__subhead:first-child { margin-top: 0; }

.tool-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; }
.tool-box {
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
}
.tool-box strong { display: block; color: var(--navy-900); margin-bottom: 0.35rem; }

/* ヒーロー（写真背景） */
.hero.hero--photo {
  background-color: var(--navy-950);
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.35) 0%, rgba(15, 23, 42, 0.55) 40%, rgba(11, 18, 32, 0.9) 100%),
    url("../images/グレート・コンサルティング合同会社様_012.jpg");
  background-size: cover;
  background-position: center 28%;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(2.5rem, 7vw, 4.5rem);
  min-height: min(72vh, 640px);
}
.hero.hero--photo::before {
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
}
@media (max-width: 768px) {
  .hero.hero--photo {
    background-position: center bottom;
    min-height: 65vh;
  }
}

/* About：画像＋テキスト */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}
.about-split__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.about-split__figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
}

/* メンバーカード（写真付き） */
.member-card--photo {
  display: grid;
  grid-template-columns: minmax(100px, 160px) 1fr;
  gap: 1.15rem;
  align-items: start;
}
.member-card__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  aspect-ratio: 3/4;
  max-height: 220px;
}
.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 560px) {
  .member-card--photo {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }
  .member-card__photo {
    max-width: 200px;
    max-height: 260px;
  }
}

/* 横長チーム写真（任意セクション） */
.media-banner {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.media-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
  object-position: center 35%;
}

/* TOP：インパクト強めのヒーロー */
.hero.hero--photo.hero--impact {
  min-height: min(78vh, 720px);
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
}
.hero.hero--photo.hero--impact {
  background-image:
    linear-gradient(165deg, rgba(14, 165, 233, 0.18) 0%, transparent 42%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(15, 23, 42, 0.5) 38%, rgba(11, 18, 32, 0.92) 100%),
    url("../images/グレート・コンサルティング合同会社様_012.jpg");
}
.hero.hero--photo.hero--impact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 0%, var(--cyan-glow) 48%, transparent 75%);
  opacity: 0.55;
  animation: hero-sweep 9s ease-in-out infinite;
  pointer-events: none;
}
.hero.hero--photo.hero--impact .wrap {
  position: relative;
  z-index: 2;
}
@keyframes hero-sweep {
  0%, 100% { transform: translateX(-15%) skewX(-6deg); opacity: 0.35; }
  50% { transform: translateX(12%) skewX(-3deg); opacity: 0.7; }
}
.hero--impact .hero__label {
  color: var(--gold);
  letter-spacing: 0.18em;
  border: 1px solid rgba(232, 185, 35, 0.55);
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}
.hero--impact h1 {
  font-size: clamp(1.85rem, 5.2vw, 3rem);
  line-height: 1.22;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(14, 165, 233, 0.15);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-left: -0.15rem;
}
.hero--impact .hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #f1f5f9;
  max-width: 36em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: 1.35rem;
  list-style: none;
  padding: 0;
}
.hero__chips li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.85rem;
}
.btn--gold {
  background: linear-gradient(135deg, #fbbf24 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--navy-950) !important;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(232, 185, 35, 0.45);
  text-decoration: none !important;
}
.btn--gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 40px rgba(232, 185, 35, 0.55);
  text-decoration: none !important;
}

/* 研修スポットライト（おすすめ） */
.training-spotlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-950) 0%, #0c4a6e 55%, var(--accent) 100%);
  color: var(--white);
  padding: clamp(2.75rem, 7vw, 4.25rem) 0;
}
.training-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(232, 185, 35, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.training-spotlight .wrap { position: relative; z-index: 1; }
.pick-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: linear-gradient(90deg, #fde68a, var(--gold));
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.training-spotlight__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.training-spotlight__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #e2e8f0;
  max-width: 44em;
}
.training-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}
.training-spotlight__box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  backdrop-filter: blur(10px);
}
.training-spotlight__box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.training-spotlight__box p {
  margin: 0;
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.6;
}
.training-spotlight__note {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin: 0 0 1.25rem;
}
.training-spotlight .btn-row .btn--primary {
  color: var(--navy-950);
  font-weight: 700;
}
.training-spotlight .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
}

/* おすすめカード（3本柱内） */
.card--recommended {
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(232, 185, 35, 0.18), 0 8px 32px rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #fffef8 0%, var(--white) 28%);
  transform: scale(1.02);
  z-index: 1;
}
@media (max-width: 900px) {
  .card--recommended { transform: none; }
}
.card--recommended .card__tag {
  background: linear-gradient(90deg, #fde68a, var(--gold));
  color: var(--navy-950);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.card--recommended .card__cta {
  color: var(--gold-deep);
  font-weight: 700;
}
.cards-training-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .cards-training-layout--equal {
    grid-template-columns: repeat(3, 1fr);
  }
}
