/* ===========================================
 *  DVERZ v2 Main Styles
 *  TOP / DVERZの考え方 / 無料Web診断 共通
 * =========================================== */

:root {
  --navy: #0a2540;
  --navy-2: #14304f;
  --blue: #2563eb;
  --blue-light: #4a90e2;
  --blue-pale: #e6f0fb;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --line: #e3e8ef;
  --text: #1a2332;
  --text-sub: #5a6b80;
  --text-mute: #8a96a8;
  --gold: #c9a55a;
  --gold-soft: #f5ecd2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500; line-height: 1.9; color: var(--text); background: var(--bg);
  font-feature-settings: "palt"; -webkit-font-smoothing: antialiased;
  font-size: 16px; overflow-x: hidden;
}
.en { font-family: "Poppins", sans-serif; letter-spacing: 0.04em; }
.sp-only { display: none; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; display: block; height: auto; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 100; padding: 16px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}
.site-header .inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; max-width: 1400px; margin: 0 auto;
}
.logo, .custom-logo-link { display: flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; }
.custom-logo-link { line-height: 0; }
.logo-mark {
  width: 28px; height: 28px; background: var(--navy); position: relative;
  clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
}
.logo-mark::after {
  content: ""; position: absolute; inset: 6px 8px 6px 6px; background: white;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}
.logo-text { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: 0.02em; }
/* WordPressカスタムロゴのサイズ制御 */
.custom-logo {
  height: 36px;
  width: auto;
  max-width: 240px;
  display: block;
}
.site-footer .custom-logo {
  height: 32px;
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav .nav-list {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav .nav-list li { list-style: none; margin: 0; padding: 0; }
.site-nav .nav-list a { color: var(--text); font-size: 16px; font-weight: 500; }
.site-nav .nav-list a:hover { color: var(--blue); opacity: 1; }
/* current 状態は色変更しない（ハッシュリンクで誤判定するため）。ホバーのみ青に */
.site-nav .nav-list .current-menu-item > a,
.site-nav .nav-list .current_page_item > a,
.site-nav .nav-list .current-page-ancestor > a { color: var(--text); }
/* CTAボタン（btn-primary）の色を保護 */
.site-nav .btn-primary, .site-nav a.btn-primary { color: #fff; }
.site-nav .btn-primary:hover { color: #fff; }
.site-nav .btn-outline, .site-nav a.btn-outline { color: var(--navy); }
.site-nav .btn-outline:hover { color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; font-weight: 700; font-size: 16px; border: none;
  cursor: pointer; transition: all 0.3s ease; letter-spacing: 0.04em;
  border-radius: 100px; font-family: inherit; text-decoration: none;
}
.btn::after { content: "→"; transition: transform 0.25s; font-weight: 400; }
.btn:hover::after { transform: translateX(4px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy); opacity: 1; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; opacity: 1; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--blue-pale); opacity: 1; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); opacity: 1; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: #fff; color: var(--navy); opacity: 1; }
.site-nav .btn { padding: 12px 22px; font-size: 14px; }

/* ===== セクション共通 ===== */
.section-tag {
  font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.25em;
  color: var(--blue); font-weight: 700; margin-bottom: 18px; display: inline-block;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(34px, 4.8vw, 56px); font-weight: 900; line-height: 1.5;
  margin-bottom: 26px; letter-spacing: 0.02em; color: var(--navy);
}
.section-lead {
  font-size: 17px; line-height: 2.1; color: var(--text-sub);
  margin-bottom: 64px; max-width: 680px; font-weight: 500;
}

/* ===== カラースイープアニメ（共通） ===== */
@keyframes colorSweep {
  0% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}
.color-sweep {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 30%, var(--navy) 60%, var(--navy) 100%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; white-space: nowrap;
  animation: colorSweep 1.4s ease-out 0.2s forwards;
}
.color-sweep-trigger {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 30%, var(--navy) 60%, var(--navy) 100%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.color-sweep-trigger.played { animation: colorSweep 1.4s ease-out forwards; }

/* ===========================================
 *  HERO（TOP）
 * =========================================== */
.hero {
  min-height: 100vh; padding: 140px 0 120px;
  background: linear-gradient(135deg, #f5f8fc 0%, #e6f0fb 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-ribbon { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-ribbon path {
  animation: ribbonFlow 12s ease-in-out infinite alternate; transform-origin: center;
}
.hero-ribbon path:nth-of-type(1) { animation-duration: 14s; }
.hero-ribbon path:nth-of-type(2) { animation-duration: 18s; animation-delay: -3s; }
.hero-ribbon path:nth-of-type(3) { animation-duration: 22s; animation-delay: -6s; }
@keyframes ribbonFlow {
  0%   { transform: translate(0, 0) scaleY(1); }
  25%  { transform: translate(-20px, 15px) scaleY(1.05); }
  50%  { transform: translate(15px, -10px) scaleY(0.95); }
  75%  { transform: translate(-10px, 20px) scaleY(1.03); }
  100% { transform: translate(20px, -15px) scaleY(1); }
}
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.25em;
  color: var(--blue); margin-bottom: 32px; font-weight: 700;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--blue); }
.hero h1 {
  font-size: clamp(34px, 4.8vw, 68px); font-weight: 900; line-height: 1.45;
  letter-spacing: 0.02em; margin-bottom: 36px; color: var(--navy);
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 30%, var(--navy) 60%, var(--navy) 100%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; white-space: nowrap;
  animation: colorSweep 1.4s ease-out 0.2s forwards;
}
.hero p {
  font-size: clamp(16px, 1.3vw, 18px); line-height: 2.2; color: var(--text-sub);
  margin-bottom: 44px; max-width: 540px; font-weight: 500;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 36px; border-top: 1px solid rgba(10, 37, 64, 0.12); max-width: 600px;
}
.hero-stats .item .num {
  font-family: "Poppins", sans-serif; font-size: 36px; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.hero-stats .item .num small { font-size: 20px; font-weight: 700; }
.hero-stats .item .label { font-size: 13px; color: var(--text-mute); letter-spacing: 0.15em; font-weight: 600; }

/* ===== HERO スライダー ===== */
.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual-photo {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 37, 64, 0.25); background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide-placeholder { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 48px 36px; position: relative; }
.hero-slide-1 .hero-slide-placeholder { background: linear-gradient(135deg, #0a2540 0%, #14304f 60%, #2563eb 100%); }
.hero-slide-2 .hero-slide-placeholder { background: linear-gradient(135deg, #14304f 0%, #1a4a8c 50%, #4a90e2 100%); }
.hero-slide-3 .hero-slide-placeholder { background: linear-gradient(135deg, #2563eb 0%, #1e3a5f 50%, #0a2540 100%); }
.hero-slide-4 .hero-slide-placeholder { background: linear-gradient(135deg, #1a4a8c 0%, #2563eb 50%, #14304f 100%); }
.hero-slide-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(74,144,226,0.4), transparent 60%);
}
.slide-label-num {
  font-family: "Poppins", sans-serif; font-size: 13px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 8px; position: relative; z-index: 2;
}
.slide-label-jp { font-size: 18px; color: #fff; font-weight: 700; letter-spacing: 0.05em; position: relative; z-index: 2; }
.hero-slide-indicators {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-indicator {
  width: 32px; height: 4px; border: none; background: rgba(255,255,255,0.25);
  border-radius: 100px; cursor: pointer; transition: all 0.4s ease; padding: 0;
  position: relative; overflow: hidden;
}
.hero-indicator:hover { background: rgba(255,255,255,0.5); }
.hero-indicator.active { background: rgba(255,255,255,0.3); width: 56px; }
.hero-indicator.active::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform-origin: left; animation: indicatorProgress 5.5s linear forwards;
}
@keyframes indicatorProgress { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
.hero-slide-counter {
  position: absolute; top: 32px; left: 32px;
  font-family: "Poppins", sans-serif; color: #fff; font-size: 13px;
  font-weight: 600; letter-spacing: 0.15em; z-index: 5;
}
.hero-slide-counter .current { font-size: 22px; font-weight: 800; color: #fff; }
.hero-slide-counter .sep { margin: 0 4px; opacity: 0.5; }
.hero-slide-counter .total { opacity: 0.6; }
.hero-visual-meta { position: absolute; top: 32px; right: 32px; text-align: right; color: rgba(255,255,255,0.95); z-index: 5; }
.hero-visual-meta .en { font-size: 13px; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 600; }
.hero-visual-meta .jp { font-size: 16px; font-weight: 600; line-height: 1.7; }
.hero-visual-tag {
  position: absolute; bottom: 32px; right: 32px;
  background: rgba(255,255,255,0.95); color: var(--navy);
  padding: 10px 18px; border-radius: 100px; font-size: 13px;
  letter-spacing: 0.05em; font-weight: 700;
}

/* ===========================================
 *  PHILOSOPHY SECTION（TOP内）
 * =========================================== */
.philosophy { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.philosophy-ribbon {
  position: absolute; top: 0; right: -300px; width: 1200px; height: 100%;
  opacity: 0.9; z-index: 0;
}
.philo-wave-1 { animation: philoFlow 16s ease-in-out infinite alternate; transform-origin: center; }
.philo-wave-2 { animation: philoFlow 22s ease-in-out infinite alternate-reverse; transform-origin: center; }
@keyframes philoFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 25px); }
  100% { transform: translate(20px, -20px); }
}
.philosophy-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px; align-items: start; position: relative; z-index: 1; }
.philosophy-side { position: sticky; top: 140px; }
.philosophy-num {
  font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.3em;
  color: var(--blue); font-weight: 700; margin-bottom: 18px;
}
.philosophy-side h2 {
  font-size: clamp(36px, 4.4vw, 60px); font-weight: 900; line-height: 1.5;
  color: var(--navy); letter-spacing: 0.02em;
}
.philosophy-side h2 .mark {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 30%, var(--navy) 60%, var(--navy) 100%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; position: relative;
}
.philosophy-side h2 .mark.played { animation: colorSweep 1.4s ease-out forwards; }
.philosophy-content p { font-size: 17px; line-height: 2.3; color: var(--text); margin-bottom: 28px; font-weight: 500; }
.philosophy-content .signature {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 16px; color: var(--text-mute); letter-spacing: 0.05em; font-weight: 500;
}

/* ===========================================
 *  SERVICES（TOP内）
 * =========================================== */
.services { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.services-ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.9; z-index: 0; }
.serv-wave-1 { animation: servFlow 18s ease-in-out infinite alternate; }
.serv-wave-2 { animation: servFlow 24s ease-in-out infinite alternate-reverse; }
@keyframes servFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(40px, -25px); }
  100% { transform: translate(-30px, 30px); }
}
.services-header { position: relative; z-index: 1; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; position: relative; z-index: 1; margin-bottom: 32px; }
.service-card {
  background: #fff; padding: 48px 36px; border-radius: 16px; position: relative;
  transition: all 0.4s ease; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10, 37, 64, 0.08); border-color: var(--blue-light); }
.service-card.main { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: #fff; border: none; }
.service-card.main:hover { box-shadow: 0 24px 60px rgba(37, 99, 235, 0.35); }
.service-card.main .service-num,
.service-card.main .service-meta { color: rgba(255,255,255,0.85); }
.service-card.main .service-meta { border-top-color: rgba(255,255,255,0.2); }
.service-card.main .service-tag { color: #fbbf24; font-weight: 800; }
.service-card.main .service-desc { color: rgba(255,255,255,0.95); }
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 13px; padding: 6px 14px; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 24px; border-radius: 100px; width: fit-content;
}
.service-badge.dark { background: var(--navy); color: #fff; }
.service-badge.light { background: var(--blue-pale); color: var(--blue); }
.service-num {
  font-family: "Poppins", sans-serif; font-size: 14px; color: var(--text-mute);
  margin-bottom: 12px; letter-spacing: 0.15em; font-weight: 600;
}
.service-name {
  font-size: 24px; font-weight: 800; line-height: 1.5; margin-bottom: 14px;
  letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.service-card.main .service-name { font-size: clamp(18px, 1.6vw, 22px); }
.service-name-sub {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700; padding: 4px 12px; margin-left: 8px;
  border-radius: 100px; vertical-align: middle; letter-spacing: 0.05em;
}
.service-tag { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: var(--blue); }
.service-desc { font-size: 16px; line-height: 2; color: var(--text-sub); margin-bottom: 24px; font-weight: 500; }
.service-meta { font-size: 14px; color: var(--text-mute); padding-top: 20px; border-top: 1px solid var(--line); letter-spacing: 0.02em; font-weight: 500; margin-top: auto; }

/* 主力カード：3つの仕事（運用/改善/戦略） */
.service-card.main .service-pillars {
  margin: 4px 0 24px;
  background: rgba(255,255,255,0.07);
  border-left: 3px solid #fbbf24;
  padding: 16px 18px 14px;
  border-radius: 8px;
  flex-grow: 1;
}
.service-pillars-title {
  font-size: 11px; font-weight: 800; color: #fbbf24;
  letter-spacing: 0.14em; margin-bottom: 12px;
  text-transform: uppercase;
}
.service-pillars-list { list-style: none; padding: 0; margin: 0; }
.service-pillars-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,0.95); font-weight: 500;
}
.service-pillars-list li + li {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pillar-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff; font-weight: 800; font-size: 10.5px;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  line-height: 1.6;
  min-width: 50px; text-align: center;
}
.pillar-text { flex: 1; }
@media (max-width: 768px) {
  .service-card.main .service-pillars { padding: 14px 14px 12px; }
  .service-pillars-list li { font-size: 13px; gap: 8px; }
  .pillar-tag { min-width: 44px; font-size: 10px; padding: 2px 8px; }
}
.service-extras {
  background: #fff; padding: 26px 32px; border-radius: 12px; border: 1px solid var(--line);
  font-size: 16px; color: var(--text-sub); position: relative; z-index: 1; font-weight: 500;
}
.service-extras strong { color: var(--navy); font-weight: 700; }

/* ===========================================
 *  STRENGTHS（TOP内）
 * =========================================== */
.strengths { padding: 100px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.strengths-ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.25; z-index: 0; }
.str-wave-1 { animation: strFlow 20s ease-in-out infinite alternate; }
.str-wave-2 { animation: strFlow 26s ease-in-out infinite alternate-reverse; }
@keyframes strFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
  100% { transform: translate(30px, -25px); }
}
.strengths .container { position: relative; z-index: 1; }
.strengths .section-title { color: #fff; }
.strengths .section-lead { color: rgba(255,255,255,0.88); }
.strengths .section-tag { color: var(--blue-light); }
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.strength-item { padding: 40px 0; position: relative; border-top: 1px solid rgba(255,255,255,0.15); }
.strength-item::before { content: ""; position: absolute; top: -1px; left: 0; width: 60px; height: 2px; background: var(--blue-light); }
.strength-num {
  font-family: "Poppins", sans-serif; font-size: 80px; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 28px; letter-spacing: -0.03em;
}
.strength-num small { font-size: 36px; color: var(--blue-light); font-weight: 700; }
.strength-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; line-height: 1.6; letter-spacing: 0.01em; }
.strength-item p { color: rgba(255,255,255,0.92); font-size: 16px; line-height: 2.1; font-weight: 400; }
.strength-item p strong { color: #fbbf24; font-weight: 800; }

/* ===========================================
 *  WORKS（TOP内）
 * =========================================== */
.works { padding: 100px 0; background: var(--bg); }
.works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.works-header > div { max-width: 700px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; transition: transform 0.4s ease; }
.work-card:hover { transform: translateY(-6px); }
.work-card .visual { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy), var(--blue)); position: relative; overflow: hidden; }
.work-card.alt-1 .visual { background: linear-gradient(135deg, #1e3a5f, #4a90e2); }
.work-card.alt-2 .visual { background: linear-gradient(135deg, #c4a574, #8b6f47); }
.work-card .visual::after {
  content: "PHOTO"; position: absolute; top: 24px; right: 24px;
  font-family: "Poppins", sans-serif; color: rgba(255,255,255,0.5);
  font-size: 12px; letter-spacing: 0.3em; font-weight: 600;
}
.work-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0.5) 50%, transparent 100%);
  padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.work-tag {
  display: inline-block; background: rgba(255,255,255,0.95); color: var(--navy);
  padding: 6px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 100px; margin-bottom: 14px; align-self: flex-start;
}
.work-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.01em; }
.work-card .meta { font-size: 14px; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; font-weight: 500; }

/* ===========================================
 *  PRICING（TOP内）
 * =========================================== */
.pricing { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.pricing-ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.9; z-index: 0; }
.price-wave-1 { animation: priceFlow 22s ease-in-out infinite alternate; }
.price-wave-2 { animation: priceFlow 28s ease-in-out infinite alternate-reverse; }
@keyframes priceFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(35px, -25px); }
  100% { transform: translate(-30px, 35px); }
}
.pricing > .container { position: relative; z-index: 1; }
.pricing-category { margin-bottom: 56px; }
.pricing-cat-title { font-size: 26px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.pricing-cat-lead { color: var(--text-sub); font-size: 16px; margin-bottom: 28px; font-weight: 500; }

/* メイン：サブスク */
.subsc-block {
  background: linear-gradient(135deg, var(--navy) 0%, #14304f 100%);
  color: #fff; padding: 56px 48px; border-radius: 24px; position: relative; overflow: hidden;
}
.subsc-block::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,144,226,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.subsc-header { margin-bottom: 36px; position: relative; }
.subsc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; padding: 8px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.15em;
  border-radius: 100px; margin-bottom: 18px;
}
.subsc-block h3 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; margin-bottom: 16px; letter-spacing: 0.01em; }
.subsc-block .lead { color: rgba(255,255,255,0.95); font-size: 17px; line-height: 2.1; max-width: 760px; font-weight: 500; }
.subsc-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; position: relative; }
.plan-card { background: #fff; color: var(--text); padding: 32px 28px; border-radius: 16px; position: relative; transition: all 0.3s; }
.plan-card:hover { transform: translateY(-4px); }
.plan-card.recommended {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff; transform: scale(1.04); box-shadow: 0 24px 56px rgba(37, 99, 235, 0.4);
}
.plan-card.recommended:hover { transform: scale(1.04) translateY(-4px); }
.plan-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; padding: 5px 12px; margin-bottom: 16px; border-radius: 100px; }
.plan-tag.gray { background: var(--bg-soft); color: var(--text-sub); }
.plan-tag.red { background: #ffebed; color: #c0382e; }
.plan-tag.dark { background: rgba(255,255,255,0.25); color: #fff; }
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; color: inherit; }
.plan-card.recommended .plan-name { color: #fff; }
.plan-price { font-family: "Poppins", sans-serif; font-size: 40px; font-weight: 800; margin: 14px 0 22px; letter-spacing: -0.02em; color: var(--navy); }
.plan-card.recommended .plan-price { color: #fff; }
.plan-price .unit { font-size: 16px; color: var(--text-mute); font-weight: 600; }
.plan-card.recommended .plan-price .unit { color: rgba(255,255,255,0.85); }
.plan-features { list-style: none; font-size: 16px; line-height: 1.9; }
.plan-features li {
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text); font-weight: 500;
}
.plan-features li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.plan-card.recommended .plan-features li { color: #fff; border-bottom-color: rgba(255,255,255,0.2); }
.plan-card.recommended .plan-features li::before { color: #fff; }
.plan-note { font-size: 13px; color: #c0382e; margin-top: 16px; font-weight: 600; line-height: 1.7; }
.plan-card.recommended .plan-note { color: rgba(255,255,255,0.85); }

/* 特典強調 */
.subsc-benefits {
  background: linear-gradient(135deg, #fff 0%, var(--blue-pale) 100%);
  border: 2px solid var(--blue); padding: 28px 32px; border-radius: 16px;
  margin-bottom: 20px; position: relative; box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}
.subsc-benefits::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--navy));
  border-radius: 16px 16px 0 0;
}
.subsc-benefits-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 14px;
  padding: 8px 18px; border-radius: 100px; letter-spacing: 0.05em; margin-bottom: 18px;
}
.subsc-benefits-label::before { content: "★"; font-size: 12px; }
.subsc-benefits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-num { font-family: "Poppins", sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; flex-shrink: 0; position: relative; }
.benefit-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.6; margin-bottom: 4px; }
.benefit-text span { display: block; font-size: 13px; color: var(--text-mute); font-weight: 500; }

/* 03. NEW（サービス開始記念キャンペーン） */
.benefit-item.is-new .benefit-num { color: var(--gold); }
.benefit-item.is-new .benefit-num::after {
  content: "NEW";
  position: absolute; top: -8px; right: -28px;
  background: var(--gold); color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  padding: 2px 6px; border-radius: 4px; line-height: 1.3;
}
.benefit-item.is-new .benefit-text .highlight {
  display: inline-block; margin-top: 6px;
  background: var(--gold-soft); color: var(--navy);
  padding: 3px 10px; border-radius: 4px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .subsc-benefits-list { grid-template-columns: 1fr; }
  .benefit-item.is-new .benefit-num::after { right: -24px; font-size: 8px; }
}

.subsc-conditions {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 26px; font-size: 15px; color: rgba(255,255,255,0.95);
  line-height: 2.1; border-radius: 12px; position: relative; font-weight: 500;
}
.subsc-conditions strong { color: #fbbf24; margin-right: 8px; font-weight: 800; }

/* スポット制作 */
.spot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spot-card { background: #fff; padding: 28px 24px; border: 1px solid var(--line); border-radius: 12px; transition: all 0.3s; }
.spot-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10,37,64,0.08); }
.spot-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.spot-card .price { font-family: "Poppins", sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin: 10px 0; }
.spot-card .meta { font-size: 14px; color: var(--text-mute); font-weight: 500; }

/* SNS顧問 */
.sns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sns-card { background: #fff; padding: 28px 24px; border: 1px solid var(--line); border-radius: 12px; position: relative; transition: all 0.3s; }
.sns-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10,37,64,0.08); }
.sns-card.recommended { border-color: var(--blue); border-width: 2px; background: var(--blue-pale); }
.sns-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.sns-card .price { font-family: "Poppins", sans-serif; font-size: 26px; font-weight: 800; margin: 10px 0; color: var(--navy); }
.sns-card .meta { font-size: 14px; color: var(--text-mute); line-height: 1.8; font-weight: 500; }
.sns-tag { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; padding: 4px 12px; font-weight: 700; margin-bottom: 12px; border-radius: 100px; letter-spacing: 0.1em; }
.pricing-foot { margin-top: 32px; font-size: 16px; color: var(--text-sub); padding: 20px 26px; background: #fff; border-radius: 12px; border: 1px solid var(--line); font-weight: 500; }
.pricing-foot strong { font-weight: 700; }

/* ===========================================
 *  BLOG (TOP内)
 * =========================================== */
.blog { padding: 100px 0; background: var(--bg); }
.blog-grid-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; margin-top: 40px; }
.blog-col h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--navy);
  display: flex; align-items: center; gap: 12px; color: var(--navy);
}
.blog-col h3 .label { background: var(--blue); color: #fff; padding: 5px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; border-radius: 100px; }
.blog-col h3 .freq { font-size: 14px; color: var(--text-mute); font-weight: 600; margin-left: auto; }
.blog-item {
  padding: 22px 16px; border-bottom: 1px solid var(--line); display: block;
  transition: all 0.25s; margin-left: -16px; border-radius: 8px;
}
.blog-item:hover { background: var(--bg-soft); opacity: 1; padding-left: 24px; }
.blog-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--text-mute); margin-bottom: 8px; flex-wrap: wrap; font-weight: 500; }
.blog-cat { background: var(--blue-pale); color: var(--blue); padding: 3px 12px; font-weight: 700; border-radius: 100px; letter-spacing: 0.05em; }
.blog-author { background: var(--navy); color: #fff; padding: 3px 10px; font-size: 12px; font-weight: 700; border-radius: 100px; }
.blog-title { font-size: 17px; font-weight: 600; line-height: 1.7; color: var(--text); }

/* ===========================================
 *  FLOW (TOP内)
 * =========================================== */
.flow { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.flow-ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.9; z-index: 0; }
.flow-wave-1 { animation: flowMove 18s ease-in-out infinite alternate; }
@keyframes flowMove { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, -30px); } }
.flow > .container { position: relative; z-index: 1; }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.flow-step { padding: 36px 28px; background: #fff; border-radius: 16px; position: relative; border: 1px solid var(--line); }
.flow-step.featured { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: #fff; border: none; box-shadow: 0 20px 48px rgba(37, 99, 235, 0.25); }
.flow-step.featured .flow-num { color: #fbbf24; }
.flow-step.featured h3 { color: #fff; }
.flow-step.featured p { color: rgba(255,255,255,0.95); }
.flow-num { font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); letter-spacing: 0.15em; margin-bottom: 22px; }
.flow-step h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; color: var(--navy); letter-spacing: 0.01em; }
.flow-step p { font-size: 16px; color: var(--text-sub); line-height: 2; font-weight: 500; }

/* サブスク伴走の月次イメージ（STEP/04の詳細） */
.flow-monthly {
  margin-top: 36px;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid #fbbf24;
  border-radius: 16px;
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
}
.flow-monthly-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; color: #fbbf24;
  letter-spacing: 0.14em; margin-bottom: 8px;
}
.flow-monthly-title {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 24px; letter-spacing: 0.01em;
}
.flow-monthly-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.flow-monthly-item {
  background: var(--bg-soft);
  padding: 20px 18px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.flow-monthly-item p {
  font-size: 14px; line-height: 1.8; color: var(--text-sub); font-weight: 500;
}
.flow-monthly-week {
  display: inline-block;
  background: var(--navy); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 10px;
}
.flow-monthly-item.is-highlight {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 100%);
  border-color: var(--gold);
}
.flow-monthly-item.is-highlight .flow-monthly-week {
  background: var(--gold); color: var(--navy);
}
.flow-monthly-quote {
  margin: 0; padding: 16px 20px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  font-size: 14px; line-height: 1.9; color: var(--text-sub);
  font-weight: 500;
}
@media (max-width: 768px) {
  .flow-monthly { padding: 24px 20px 20px; }
  .flow-monthly-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flow-monthly-item { padding: 16px 14px 14px; }
}
@media (max-width: 480px) {
  .flow-monthly-grid { grid-template-columns: 1fr; }
}
.flow-step.featured::after {
  content: "DVERZの本領"; position: absolute; top: 18px; right: 18px;
  font-size: 12px; background: rgba(255,255,255,0.22); color: #fff;
  padding: 5px 12px; font-weight: 700; letter-spacing: 0.05em; border-radius: 100px;
}

/* ===========================================
 *  MESSAGE (TOP内)
 * =========================================== */
.message { padding: 100px 0; background: var(--bg); }
.message-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.message-photo { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--navy), var(--blue)); position: relative; overflow: hidden; border-radius: 16px; box-shadow: 0 30px 80px rgba(10, 37, 64, 0.15); }
.message-photo::after {
  content: "PORTRAIT"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-family: "Poppins", sans-serif;
  font-size: 14px; letter-spacing: 0.3em; font-weight: 600;
}
.message-photo::before {
  content: ""; position: absolute; bottom: -1px; left: -1px;
  width: 100px; height: 100px; background: var(--blue-light); z-index: 1;
  border-top-right-radius: 16px;
}
.message-eyebrow { font-size: 14px; letter-spacing: 0.25em; color: var(--blue); margin-bottom: 18px; font-weight: 700; font-family: "Poppins", sans-serif; }
.message-title { font-size: clamp(34px, 4.4vw, 56px); font-weight: 900; line-height: 1.5; margin-bottom: 36px; color: var(--navy); letter-spacing: 0.02em; }
.message-body p { font-size: 17px; line-height: 2.3; color: var(--text); margin-bottom: 22px; font-weight: 500; }
.message-name { margin-top: 28px; margin-bottom: 32px; font-size: 16px; color: var(--text-mute); letter-spacing: 0.05em; font-weight: 500; }

/* ===========================================
 *  FINAL CTA (共通)
 * =========================================== */
.final-cta { padding: 100px 0; background: var(--navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta-ribbon { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; }
.cta-wave-1 { animation: ctaFlow 16s ease-in-out infinite alternate; }
.cta-wave-2 { animation: ctaFlow 22s ease-in-out infinite alternate-reverse; }
@keyframes ctaFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
  100% { transform: translate(35px, -25px); }
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.5; margin-bottom: 26px; letter-spacing: 0.02em; }
.final-cta h2 .accent { background: linear-gradient(120deg, var(--blue-light), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta p { color: rgba(255,255,255,0.92); font-size: 17px; margin-bottom: 36px; line-height: 2.1; font-weight: 500; }
.final-cta p strong { color: #fbbf24; font-weight: 800; }

/* CTA特典（白系・絵文字なし） */
.final-cta-benefits {
  display: inline-block; background: #ffffff; padding: 52px 48px 32px; border-radius: 20px;
  margin: 16px auto 56px; text-align: left;
  box-shadow: 0 30px 80px rgba(74, 144, 226, 0.25), 0 0 0 1px rgba(74, 144, 226, 0.2);
  position: relative; max-width: 720px;
}
.final-cta-benefits::before {
  content: "BONUS"; position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #ffffff; padding: 8px 24px;
  border-radius: 100px; font-family: "Poppins", sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 0.3em; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.final-cta-benefits-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 22px; text-align: center; letter-spacing: 0.02em; }
.final-cta-benefits-title::after { content: ""; display: block; width: 40px; height: 2px; background: var(--blue); margin: 12px auto 0; }
.final-cta-benefit { display: flex; align-items: center; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(10, 37, 64, 0.08); }
.final-cta-benefit:last-child { border-bottom: none; }
.cta-benefit-num {
  font-family: "Poppins", sans-serif; font-size: 22px; font-weight: 800;
  color: var(--blue); line-height: 1; flex-shrink: 0;
  background: var(--blue-pale); padding: 10px 14px; border-radius: 10px;
  min-width: 52px; text-align: center; letter-spacing: 0.05em;
}
.cta-benefit-text { font-size: 16px; color: var(--navy); font-weight: 600; line-height: 1.7; }
.cta-benefit-text strong { color: var(--blue); font-weight: 800; }
.final-cta-button-wrap {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 0; text-align: center;
}
.final-cta-button-wrap .btn { font-size: 17px; padding: 20px 36px; font-weight: 700; }

/* 2つの無料相談 紹介ブロック */
.cta-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 800px; margin: 0 auto 40px; text-align: left;
}
.cta-option {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 24px 24px 22px; border-radius: 14px;
  position: relative;
}
.cta-option-eyebrow {
  position: absolute; top: -14px; left: 18px;
  background: var(--blue); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 6px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.cta-option-name {
  font-size: 19px; font-weight: 800; color: #fff;
  margin-bottom: 8px; letter-spacing: 0.01em;
}
.cta-option-desc {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.8; font-weight: 500;
}

/* 特典 03 NEW（サービス開始記念） */
.final-cta-benefit.is-new {
  background: linear-gradient(90deg, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.04) 100%);
  border-radius: 8px; padding: 14px 16px; margin-top: 6px;
  border-bottom: none;
}
.final-cta-benefit.is-new .cta-benefit-num {
  background: var(--gold-soft); color: var(--gold);
}
.final-cta-benefit.is-new .cta-benefit-text strong { color: var(--gold); }
.benefit-new-flag {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  padding: 2px 8px; border-radius: 4px;
  vertical-align: middle; margin-right: 8px;
}

/* ヘッダー：CTA 2並列グループ */
.site-nav-cta-group {
  display: inline-flex; align-items: center; gap: 8px;
}
.site-nav-cta-sub { font-weight: 700; }
.site-nav .btn-outline.site-nav-cta-sub { background: transparent; }
.site-nav .btn-outline.site-nav-cta-sub:hover { background: var(--navy); color: #fff; }

@media (max-width: 768px) {
  .cta-options { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .cta-option { padding: 20px 18px 18px; }
  .final-cta-button-wrap { flex-direction: column; align-items: stretch; }
  .final-cta-button-wrap .btn { width: 100%; }
  .site-nav-cta-group { flex-direction: column; gap: 6px; align-items: stretch; }
}

/* ===========================================
 *  FOOTER
 * =========================================== */
.site-footer { background: #06182d; color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo,
.footer-brand .custom-logo-link,
.footer-brand .footer-logo-link {
  margin-bottom: 24px;
  display: inline-flex;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand .logo-mark { background: #fff; }
.footer-brand .logo-mark::after { background: #06182d; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-col h4 { font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.15em; color: var(--blue-light); margin-bottom: 22px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; }
.footer-col a:hover { color: var(--blue-light); opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; font-weight: 500; }
.footer-legal a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--blue-light); opacity: 1; }
.footer-sep { margin: 0 12px; opacity: 0.4; }

/* ===========================================
 *  PAGE HERO（共通：philosophy / diagnosis）
 * =========================================== */
.page-hero { padding: 180px 0 100px; background: linear-gradient(135deg, #f5f8fc 0%, #e6f0fb 100%); position: relative; overflow: hidden; }
.page-hero-ribbon { position: absolute; inset: 0; pointer-events: none; opacity: 0.9; z-index: 0; }
.page-hero-ribbon path { animation: pageHeroFlow 16s ease-in-out infinite alternate; }
.page-hero-ribbon path:nth-of-type(2) { animation-duration: 22s; animation-delay: -4s; }
@keyframes pageHeroFlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(25px, -20px); }
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-family: "Poppins", sans-serif; font-size: 13px;
  color: var(--text-mute); margin-bottom: 32px; font-weight: 500;
}
.breadcrumb a:hover { color: var(--blue); opacity: 1; }
.breadcrumb .sep { opacity: 0.5; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.25em;
  color: var(--blue); margin-bottom: 28px; font-weight: 700;
}
.page-hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--blue); }
.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 80px); font-weight: 900; line-height: 1.4;
  letter-spacing: 0.02em; margin-bottom: 32px; color: var(--navy);
}
.page-hero h1 .accent {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue) 30%, var(--navy) 60%, var(--navy) 100%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block; white-space: nowrap;
  animation: colorSweep 1.4s ease-out 0.2s forwards;
}
.page-hero p { font-size: 17px; line-height: 2.2; color: var(--text-sub); max-width: 640px; font-weight: 500; }

/* ===========================================
 *  PHILOSOPHY PAGE
 * =========================================== */
.message-full { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.message-full-ribbon { position: absolute; top: 0; right: -300px; width: 1000px; height: 100%; opacity: 0.7; z-index: 0; }
.message-full-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.message-side { position: sticky; top: 140px; }
.message-photo-large { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 30px 80px rgba(10, 37, 64, 0.15); }
.message-photo-large::after { content: "PORTRAIT"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.3em; font-weight: 600; }
.message-photo-large::before { content: ""; position: absolute; bottom: -1px; left: -1px; width: 100px; height: 100px; background: var(--blue-light); z-index: 1; border-top-right-radius: 16px; }
.message-side .name { margin-top: 24px; font-size: 14px; color: var(--text-mute); font-weight: 500; }
.message-side .name strong { display: block; font-size: 18px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.message-content h2 { font-size: clamp(36px, 4.6vw, 60px); font-weight: 900; line-height: 1.5; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.02em; }
.message-content .role { font-family: "Poppins", sans-serif; font-size: 14px; color: var(--blue); letter-spacing: 0.25em; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.message-content p { font-size: 17px; line-height: 2.4; color: var(--text); margin-bottom: 24px; font-weight: 500; }
.message-content p.signature { margin-top: 48px; font-size: 16px; color: var(--text-mute); border-top: 1px solid var(--line); padding-top: 32px; font-weight: 500; }
.message-content p.signature strong { display: block; font-size: 18px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }

.concept { padding: 100px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; text-align: center; }
.concept-ribbon { position: absolute; inset: 0; opacity: 0.25; pointer-events: none; }
.concept-ribbon path { animation: conceptFlow 18s ease-in-out infinite alternate; }
@keyframes conceptFlow { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, -30px); } }
.concept-inner { position: relative; z-index: 1; }
.concept .section-tag { color: var(--blue-light); }
.concept-title { font-size: clamp(36px, 6vw, 80px); font-weight: 900; line-height: 1.5; margin-bottom: 32px; letter-spacing: 0.04em; }
.concept-title .glow { background: linear-gradient(90deg, var(--blue-light), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.concept p { font-size: 18px; line-height: 2.3; color: rgba(255,255,255,0.95); max-width: 760px; margin: 0 auto; font-weight: 500; }
.concept p strong { color: #fbbf24; font-weight: 800; }

.axis { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.axis-ribbon { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; z-index: 0; }
.axis > .container { position: relative; z-index: 1; }
.axis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.axis-card { background: var(--bg-soft); padding: 48px 40px; border-radius: 16px; position: relative; border: 1px solid var(--line); transition: all 0.4s ease; }
.axis-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10, 37, 64, 0.08); border-color: var(--blue-light); }
.axis-num { font-family: "Poppins", sans-serif; font-size: 56px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 24px; letter-spacing: -0.02em; }
.axis-card h3 { font-size: 24px; font-weight: 800; line-height: 1.6; margin-bottom: 16px; color: var(--navy); letter-spacing: 0.01em; }
.axis-card p { font-size: 16px; line-height: 2.1; color: var(--text-sub); font-weight: 500; }

.members { padding: 100px 0; background: var(--bg); }
.members-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.member-card { background: var(--bg-soft); padding: 48px; border-radius: 20px; display: flex; gap: 36px; align-items: flex-start; transition: all 0.3s ease; }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(10, 37, 64, 0.08); }
.member-photo { width: 140px; height: 140px; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 50%; flex-shrink: 0; position: relative; overflow: hidden; }
.member-photo::after { content: "PHOTO"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-family: "Poppins", sans-serif; font-size: 11px; letter-spacing: 0.3em; font-weight: 600; }
.member-info .role { font-family: "Poppins", sans-serif; font-size: 12px; color: var(--blue); letter-spacing: 0.25em; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; }
.member-info h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.member-info .position { font-size: 14px; color: var(--text-mute); margin-bottom: 16px; font-weight: 500; }
.member-info p { font-size: 15px; line-height: 2; color: var(--text-sub); font-weight: 500; }

.values { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.values-ribbon { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; z-index: 0; }
.values > .container { position: relative; z-index: 1; }
.values-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-item { background: #fff; padding: 36px 32px; border-radius: 12px; border-left: 4px solid var(--blue); transition: all 0.3s ease; }
.value-item:hover { transform: translateX(4px); border-left-color: var(--navy); }
.value-item h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.01em; }
.value-item p { font-size: 15px; line-height: 2; color: var(--text-sub); font-weight: 500; }

/* ===========================================
 *  DIAGNOSIS PAGE
 * =========================================== */
.page-hero-inner.diag { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; max-width: 1100px; }
.page-hero-feats { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.page-hero-feat { background: #fff; border: 1px solid var(--blue-pale); padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.page-hero-feat::before { content: "✓"; color: var(--blue); font-weight: 800; }
.page-hero-cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; }
.diag-spec-card { background: #fff; border-radius: 20px; padding: 40px 36px; box-shadow: 0 20px 60px rgba(10, 37, 64, 0.12); border: 1px solid var(--line); position: relative; }
.diag-spec-card::before { content: "DIAGNOSIS"; position: absolute; top: -14px; left: 32px; background: var(--blue); color: #fff; padding: 7px 18px; border-radius: 100px; font-family: "Poppins", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; }
.diag-spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); gap: 16px; }
.diag-spec-row:last-child { border-bottom: none; }
.diag-spec-row .label { font-family: "Poppins", sans-serif; font-size: 12px; letter-spacing: 0.15em; color: var(--text-mute); font-weight: 600; flex-shrink: 0; }
.diag-spec-row .value { font-size: 17px; font-weight: 700; color: var(--navy); text-align: right; }
.diag-spec-row .value strong { color: var(--blue); font-weight: 800; }
.diag-spec-foot { background: var(--blue-pale); margin: 24px -36px -40px; padding: 20px 36px; border-radius: 0 0 20px 20px; text-align: center; font-size: 14px; color: var(--navy); font-weight: 600; }

.what { padding: 100px 0; background: var(--bg); }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.what-card { background: var(--bg-soft); padding: 36px 32px; border-radius: 16px; position: relative; transition: all 0.4s ease; border: 1px solid var(--line); }
.what-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10, 37, 64, 0.08); border-color: var(--blue-light); }
.what-num { font-family: "Poppins", sans-serif; font-size: 14px; letter-spacing: 0.2em; color: var(--blue); font-weight: 700; margin-bottom: 16px; }
.what-icon { width: 56px; height: 56px; background: var(--blue-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.what-icon svg { width: 28px; height: 28px; stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.what-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.5; }
.what-card p { font-size: 15px; line-height: 2; color: var(--text-sub); font-weight: 500; }

.diag-flow { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.diag-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; position: relative; }
.diag-flow-grid::before { content: ""; position: absolute; top: 50px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%); opacity: 0.3; z-index: 0; }
.diag-flow-step { background: #fff; padding: 36px 28px; border-radius: 16px; border: 1px solid var(--line); position: relative; z-index: 1; }
.diag-flow-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 20px; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.diag-flow-step h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.diag-flow-step .meta { font-family: "Poppins", sans-serif; font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 12px; text-transform: uppercase; }
.diag-flow-step p { font-size: 14px; line-height: 1.95; color: var(--text-sub); font-weight: 500; }

.who { padding: 100px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.who-ribbon { position: absolute; inset: 0; opacity: 0.25; pointer-events: none; }
.who > .container { position: relative; z-index: 1; }
.who .section-tag { color: var(--blue-light); }
.who .section-title { color: #fff; }
.who .section-lead { color: rgba(255,255,255,0.92); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.who-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(74,144,226,0.3); padding: 28px 32px; border-radius: 12px; display: flex; align-items: flex-start; gap: 18px; transition: all 0.3s; }
.who-item:hover { background: rgba(255,255,255,0.1); border-color: var(--blue-light); }
.who-check { flex-shrink: 0; width: 36px; height: 36px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 18px; }
.who-text { font-size: 17px; line-height: 1.95; color: #fff; font-weight: 500; }
.who-text strong { color: #fbbf24; font-weight: 800; }

.why { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.why-content p { font-size: 17px; line-height: 2.3; color: var(--text); margin-bottom: 24px; font-weight: 500; }
.why-content p strong { color: var(--blue); font-weight: 800; }
.why-points { background: var(--bg-soft); border-radius: 16px; padding: 36px; border-left: 4px solid var(--blue); }
.why-point { padding: 20px 0; border-bottom: 1px solid var(--line); }
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-point:first-child { padding-top: 0; }
.why-point h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.why-point h3::before { content: ""; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.why-point p { font-size: 15px; line-height: 1.95; color: var(--text-sub); font-weight: 500; margin-left: 16px; }

.faq { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.faq > .container { position: relative; z-index: 1; max-width: 880px; }
.faq-list { margin-top: 40px; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 16px; overflow: hidden; border: 1px solid var(--line); transition: all 0.3s; }
.faq-item:hover { border-color: var(--blue-light); }
.faq-q { display: flex; align-items: center; gap: 16px; padding: 24px 28px; cursor: pointer; user-select: none; font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.faq-q-mark { flex-shrink: 0; width: 36px; height: 36px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 16px; }
.faq-q-text { flex: 1; }
.faq-q-toggle { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s; }
.faq-q-toggle::before, .faq-q-toggle::after { content: ""; position: absolute; background: var(--blue); top: 50%; left: 50%; }
.faq-q-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q-toggle::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.3s; }
.faq-item.open .faq-q-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 28px 28px 80px; font-size: 15px; line-height: 2.1; color: var(--text-sub); font-weight: 500; display: none; }
.faq-item.open .faq-a { display: block; }

.form { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.form > .container { position: relative; z-index: 1; max-width: 880px; }
.form-card { background: #fff; border-radius: 24px; padding: 60px 64px; box-shadow: 0 30px 80px rgba(10, 37, 64, 0.1); border: 1px solid var(--line); }
.form-row { margin-bottom: 34px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: 0.02em; line-height: 1.4; }
/* CF7のwpautopが自動挿入する <br> を非表示にする
 * （メール送信機能に影響を出さず見た目だけ詰める）
 * シンプルにフォーム内のbrを全消し（テンプレ側で意図的なbrは未使用） */
.wpcf7-form br {
  display: none !important;
}
.wpcf7-form p {
  margin: 0 !important;
}
.form-label .req { display: inline-block; background: var(--blue); color: #fff; font-size: 10px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 700; letter-spacing: 0.1em; }
.form-label .opt { display: inline-block; background: var(--bg-soft); color: var(--text-mute); font-size: 10px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 700; letter-spacing: 0.1em; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; font-family: inherit; font-size: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft); transition: all 0.2s; color: var(--text); font-weight: 500; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.8; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.8; color: var(--text-sub); font-weight: 500; cursor: pointer; }
.form-checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); }
.form-checkbox a { color: var(--blue); text-decoration: underline; }
.form-submit { display: flex; justify-content: center; margin-top: 36px; }
.form-submit .btn { font-size: 17px; padding: 20px 48px; font-weight: 700; }

/* ===========================================
 *  CONTACT PAGE
 * =========================================== */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.contact-method {
  background: #fff; border: 1px solid var(--line); padding: 36px 28px;
  border-radius: 16px; text-align: center; transition: all 0.3s;
}
.contact-method:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,37,64,0.08); border-color: var(--blue-light); }
.contact-method-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; border: none;
}
.contact-method-primary:hover { box-shadow: 0 20px 48px rgba(37,99,235,0.3); }
.contact-method-icon {
  width: 64px; height: 64px; background: var(--blue-pale);
  color: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-method-primary .contact-method-icon { background: rgba(255,255,255,0.15); color: #fff; }
.contact-method h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.contact-method-primary h3 { color: #fff; }
.contact-method-value { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-method-primary .contact-method-value { color: #fff; }
.contact-method-meta { font-size: 13px; color: var(--text-mute); }
.contact-method-primary .contact-method-meta { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .contact-methods { grid-template-columns: 1fr; gap: 14px; }
  .contact-method { padding: 28px 22px; }
}

/* ===========================================
 *  COMPANY PAGE
 * =========================================== */
.company-table { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.company-table tr:not(:last-child) { border-bottom: 1px solid var(--line); }
.company-table th {
  width: 200px; text-align: left;
  background: var(--bg-soft); padding: 20px 24px;
  font-weight: 700; color: var(--navy); font-size: 14px;
  letter-spacing: 0.05em; vertical-align: top;
  border-right: 1px solid var(--line);
}
.company-table td { padding: 20px 28px; color: var(--text); line-height: 1.9; vertical-align: top; }

.history-list { position: relative; padding-left: 32px; }
.history-list::before {
  content: ""; position: absolute; left: 12px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
}
.history-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 32px;
  position: relative; padding: 16px 0 24px;
}
.history-item::before {
  content: ""; position: absolute; left: -28px; top: 24px;
  width: 14px; height: 14px;
  background: #fff; border: 3px solid var(--blue);
  border-radius: 50%; z-index: 1;
}
.history-year {
  font-family: "Poppins", sans-serif; font-size: 28px; font-weight: 800;
  color: var(--blue); line-height: 1; padding-top: 6px;
}
.history-body h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.history-body p { font-size: 15px; color: var(--text-sub); line-height: 2; font-weight: 500; }

.access-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }

@media (max-width: 768px) {
  .company-table th { width: 35%; padding: 14px 16px; font-size: 13px; }
  .company-table td { padding: 14px 16px; font-size: 14px; }
  .history-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .history-year { font-size: 22px; }
  .history-body h3 { font-size: 16px; }
  .history-body p { font-size: 14px; }
  .access-grid { grid-template-columns: 1fr; gap: 32px; }
  .access-map iframe { height: 280px; }
}

/* ===========================================
 *  ENTRY CONTENT（投稿・固定ページ本文）
 * =========================================== */
.entry-content {
  font-size: 17px;
  line-height: 2.1;
  color: var(--text);
  font-weight: 500;
}

/* 段落 */
.entry-content p {
  margin: 0 0 1.8em;
}

/* 見出し共通：前後の余白をしっかり */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.entry-content h2 {
  font-size: 28px;
  margin: 80px 0 28px;
  padding: 0 0 16px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.entry-content h2::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 64px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.entry-content h3 {
  font-size: 22px;
  margin: 56px 0 20px;
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--blue);
}

.entry-content h4 {
  font-size: 18px;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.entry-content h4::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* リスト：左の食み出し解消 + おしゃれに */
.entry-content ul,
.entry-content ol {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}
.entry-content ul li,
.entry-content ol li {
  position: relative;
  padding: 8px 0 8px 28px;
  line-height: 1.95;
}
.entry-content ul li::before {
  content: "";
  position: absolute;
  left: 8px; top: 18px;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.entry-content ol {
  counter-reset: post-counter;
}
.entry-content ol li {
  counter-increment: post-counter;
  padding-left: 42px;
}
.entry-content ol li::before {
  content: counter(post-counter);
  position: absolute;
  left: 0; top: 8px;
  width: 28px; height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
  margin: 8px 0;
}

/* テーブル */
.entry-content table,
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 36px 0;
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,37,64,0.06);
}
.entry-content table thead {
  background: var(--navy);
  color: #fff;
}
.entry-content table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.entry-content table th:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.entry-content table tbody tr {
  transition: background 0.15s;
}
.entry-content table tbody tr:nth-child(even) { background: var(--bg-soft); }
.entry-content table tbody tr:hover { background: var(--blue-pale); }
.entry-content table td {
  padding: 14px 20px;
  border: none;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.entry-content table td:not(:last-child) {
  border-right: 1px solid var(--line);
}
.entry-content table tbody tr:last-child td { border-bottom: none; }
.entry-content .wp-block-table figcaption {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 8px;
  text-align: center;
}

/* 引用 */
.entry-content blockquote,
.entry-content .wp-block-quote {
  margin: 36px 0;
  padding: 24px 32px;
  background: var(--bg-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: var(--text);
  position: relative;
}
.entry-content blockquote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 16px;
  font-family: "Poppins", serif;
  font-size: 60px;
  color: var(--blue);
  line-height: 1;
  opacity: 0.4;
}
.entry-content blockquote p,
.entry-content .wp-block-quote p {
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.entry-content blockquote p:last-child,
.entry-content .wp-block-quote p:last-child { margin-bottom: 0; }
.entry-content blockquote cite,
.entry-content .wp-block-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-mute);
  font-style: normal;
}

/* コードブロック */
.entry-content pre,
.entry-content .wp-block-code {
  background: var(--navy);
  color: #e6f0fb;
  padding: 22px 26px;
  border-radius: 12px;
  margin: 28px 0;
  overflow-x: auto;
  font-family: "SF Mono", "Monaco", "Menlo", "Consolas", monospace;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 8px 24px rgba(10,37,64,0.15);
}
.entry-content pre code,
.entry-content .wp-block-code code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}
.entry-content :not(pre) > code {
  background: var(--bg-soft);
  color: var(--blue);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "SF Mono", "Monaco", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
  font-weight: 600;
  border: 1px solid var(--line);
}

/* リンク */
.entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}
.entry-content a:hover {
  color: var(--navy);
  opacity: 1;
  text-decoration-thickness: 2px;
}

/* 強調 */
.entry-content strong {
  color: var(--navy);
  font-weight: 800;
  background: linear-gradient(transparent 65%, var(--blue-pale) 65%);
  padding: 0 2px;
}
.entry-content em {
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}

/* 画像 */
.entry-content img,
.entry-content .wp-block-image img {
  border-radius: 12px;
  margin: 28px 0;
  max-width: 100%;
  height: auto;
}
.entry-content figcaption {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 8px;
  text-align: center;
}

/* 区切り線 */
.entry-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 56px 0;
}

/* ボタン（Gutenbergのbtnブロック） */
.entry-content .wp-block-button__link {
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.entry-content .wp-block-button__link:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* モバイル調整 */
@media (max-width: 768px) {
  .entry-content { font-size: 15px; line-height: 2.0; }
  .entry-content h2 { font-size: 22px; margin: 56px 0 20px; }
  .entry-content h3 { font-size: 18px; margin: 40px 0 16px; padding-left: 14px; }
  .entry-content h4 { font-size: 16px; margin: 32px 0 12px; }
  .entry-content table { font-size: 13px; }
  .entry-content table th, .entry-content table td { padding: 10px 14px; }
  .entry-content blockquote { padding: 20px 24px; }
  .entry-content pre { font-size: 13px; padding: 16px 20px; }
}

/* ===========================================
 *  AI/DX SUPPORT PAGE (page-ai-dx.php)
 * =========================================== */

/* INTRO（共感パート） */
.ai-intro { padding: 100px 0; background: var(--bg); }
.ai-voices {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1100px; margin: 32px auto 36px;
}
.ai-voice {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  padding: 22px 26px; border-radius: 8px;
  font-size: 16px; color: var(--navy); font-weight: 600;
  line-height: 1.7;
}
.ai-voice::before {
  content: "“"; font-family: "Poppins", sans-serif;
  font-size: 24px; color: var(--blue); margin-right: 4px;
  font-weight: 800;
}
.ai-intro-foot {
  text-align: center; max-width: 720px; margin: 0 auto;
  font-size: 17px; line-height: 2.1; color: var(--text-sub);
}
.ai-intro-foot strong { color: var(--blue); font-weight: 800; }

/* APPROACH（DVERZの解：subsc-block再利用 + 3pillar） */
.ai-approach { padding: 100px 0; background: var(--bg-soft); }
.ai-approach .subsc-block { margin-top: 40px; }
.ai-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ai-pillar {
  background: rgba(255,255,255,0.94); color: var(--text);
  padding: 28px 26px 24px; border-radius: 14px;
  position: relative;
}
.ai-pillar-tag {
  display: inline-block;
  background: #fbbf24; color: var(--navy);
  font-weight: 800; font-size: 12px;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.ai-pillar h4 {
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; line-height: 1.5;
}
.ai-pillar ul {
  list-style: none; padding: 0; margin: 0;
}
.ai-pillar ul li {
  font-size: 14px; line-height: 1.8; color: var(--text-sub);
  padding: 6px 0 6px 18px; position: relative; font-weight: 500;
}
.ai-pillar ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700;
}

/* USE CASES */
.ai-cases { padding: 100px 0; background: var(--bg); }
.ai-cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.ai-case-card {
  background: #fff; border: 1px solid var(--line);
  padding: 36px 30px 30px; border-radius: 16px;
  position: relative; transition: all 0.3s;
}
.ai-case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08); border-color: var(--blue-light); }
.ai-case-num {
  font-family: "Poppins", sans-serif; font-size: 36px; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 16px; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ai-case-card h3 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 18px; letter-spacing: 0.01em;
}
.ai-case-card ul {
  list-style: none; padding: 0; margin: 0;
}
.ai-case-card ul li {
  font-size: 15px; line-height: 1.9; color: var(--text-sub);
  padding: 8px 0 8px 20px; position: relative;
  border-bottom: 1px solid var(--line); font-weight: 500;
}
.ai-case-card ul li:last-child { border-bottom: none; }
.ai-case-card ul li::before {
  content: "▸"; position: absolute; left: 0; color: var(--blue); font-weight: 700;
}

/* INDUSTRY */
.ai-industry { padding: 100px 0; background: var(--bg-soft); }
.ai-industry-table {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); margin-top: 40px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
}
.ai-industry-table table { width: 100%; border-collapse: collapse; }
.ai-industry-table thead th {
  background: var(--navy); color: #fff;
  text-align: left; padding: 18px 28px;
  font-size: 14px; font-weight: 800; letter-spacing: 0.08em;
}
.ai-industry-table tbody th {
  background: var(--bg-soft);
  text-align: left; padding: 20px 28px;
  font-size: 16px; font-weight: 800; color: var(--navy);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  width: 200px; vertical-align: top;
}
.ai-industry-table tbody td {
  padding: 20px 28px;
  font-size: 15px; line-height: 1.9; color: var(--text-sub);
  border-bottom: 1px solid var(--line); font-weight: 500;
}
.ai-industry-table tbody tr:last-child th,
.ai-industry-table tbody tr:last-child td { border-bottom: none; }
.ai-industry-foot {
  text-align: center; margin-top: 24px;
  font-size: 15px; color: var(--text-sub); line-height: 1.9;
}

/* TIMELINE（6ヶ月ジャーニー） */
.ai-timeline { padding: 100px 0; background: var(--bg); }
.ai-timeline-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; position: relative;
}
.ai-timeline-grid::before {
  content: ""; position: absolute; top: 60px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--gold) 100%);
  opacity: 0.3; z-index: 0;
}
.ai-timeline-item {
  background: #fff; border: 1px solid var(--line);
  padding: 36px 30px 30px; border-radius: 16px;
  position: relative; z-index: 1;
}
.ai-timeline-item.is-final {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 100%);
  border-color: var(--gold);
}
.ai-timeline-month {
  display: inline-block;
  background: var(--blue); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.ai-timeline-item.is-final .ai-timeline-month {
  background: var(--gold); color: var(--navy);
}
.ai-timeline-item h3 {
  font-size: 19px; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; line-height: 1.5;
}
.ai-timeline-item p {
  font-size: 15px; line-height: 2; color: var(--text-sub); font-weight: 500;
}

/* PRICING */
.ai-pricing { padding: 100px 0; background: var(--bg-soft); }
.ai-pricing-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border-radius: 20px; overflow: hidden;
  margin: 40px auto 0; max-width: 960px;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.08);
  border: 1px solid var(--line);
}
.ai-pricing-plan {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; padding: 40px 36px;
}
.ai-pricing-plan-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: #fbbf24; margin-bottom: 14px;
}
.ai-pricing-plan h3 {
  font-size: 32px; font-weight: 800; margin-bottom: 18px; letter-spacing: 0.01em;
}
.ai-pricing-plan-price {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.ai-pricing-plan-price .price-old {
  font-family: "Poppins", sans-serif; font-size: 18px; font-weight: 600;
  text-decoration: line-through; color: rgba(255,255,255,0.55);
}
.ai-pricing-plan-price .price-old .unit { font-size: 12px; }
.ai-pricing-plan-price .price-new {
  font-family: "Poppins", sans-serif; font-size: 40px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.ai-pricing-plan-price .price-new .unit { font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 600; }
.ai-pricing-plan-meta {
  font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; margin-top: 4px;
}
.ai-pricing-campaign {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 100%);
  padding: 40px 36px; position: relative;
}
.ai-pricing-campaign-flag {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 6px;
  margin-bottom: 16px;
}
.ai-pricing-campaign ul {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.ai-pricing-campaign ul li {
  font-size: 15px; line-height: 1.9; color: var(--navy);
  padding: 8px 0 8px 22px; position: relative; font-weight: 600;
  border-bottom: 1px dashed rgba(201, 165, 90, 0.3);
}
.ai-pricing-campaign ul li:last-child { border-bottom: none; }
.ai-pricing-campaign ul li::before {
  content: "★"; position: absolute; left: 0; color: var(--gold); font-weight: 800;
}
.ai-pricing-campaign ul li strong { color: var(--gold); font-weight: 800; }
.ai-pricing-campaign-deadline {
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px 16px;
  border-radius: 8px; text-align: center; letter-spacing: 0.05em;
}
.ai-pricing-foot {
  text-align: center; margin-top: 32px;
  font-size: 14px; color: var(--text-sub); line-height: 1.9;
}
.ai-pricing-foot a { color: var(--blue); font-weight: 700; }

/* FAQ */
.ai-faq { padding: 100px 0; background: var(--bg); }
.ai-faq-list {
  max-width: 880px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ai-faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: all 0.3s;
}
.ai-faq-item[open] { border-color: var(--blue-light); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08); }
.ai-faq-item summary {
  padding: 22px 26px;
  font-size: 16px; font-weight: 700; color: var(--navy);
  cursor: pointer; user-select: none;
  position: relative; padding-right: 50px; line-height: 1.6;
}
.ai-faq-item summary::after {
  content: "+"; position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
  font-family: "Poppins", sans-serif; font-size: 24px; color: var(--blue); font-weight: 700;
  transition: transform 0.3s;
}
.ai-faq-item[open] summary::after { content: "−"; }
.ai-faq-item summary::-webkit-details-marker { display: none; }
.ai-faq-item p {
  padding: 0 26px 22px;
  font-size: 15px; line-height: 1.95; color: var(--text-sub); font-weight: 500;
}

/* APPLICATION FORM */
.ai-form { padding: 100px 0; background: var(--bg-soft); scroll-margin-top: 100px; }
.ai-form-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 720px; margin: 32px auto 40px;
}
.ai-form-info-item {
  background: #fff; border: 1px solid var(--line);
  padding: 18px 22px; border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
}
.ai-form-info-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; flex-shrink: 0;
}
.ai-form-info-text strong {
  display: block; font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.3;
}
.ai-form-info-text span {
  display: block; font-size: 12px; color: var(--text-mute); margin-top: 4px; line-height: 1.5;
}
.ai-form-wrap {
  max-width: 880px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 48px;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.06);
}
.ai-form-fallback {
  text-align: center; padding: 24px 0;
}
.ai-form-fallback-note {
  font-size: 14px; color: var(--text-sub); line-height: 1.9;
  background: var(--bg-soft); padding: 20px 24px;
  border-radius: 10px; border-left: 4px solid #fbbf24;
  text-align: left; margin-bottom: 28px;
}
.ai-form-fallback-note code {
  background: #fff; padding: 2px 8px; border-radius: 4px;
  font-family: "SF Mono", "Monaco", monospace; font-size: 13px;
  color: var(--blue);
}
.ai-form-fallback-cta {
  font-size: 14px; color: var(--text-sub); line-height: 1.9;
}

/* AI相談フォーム：チェックボックスグループ・補足メッセージ */
.ai-form-wrap .form-checkbox-group {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
}
.ai-form-wrap .form-checkbox-group .form-checkbox {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-form-wrap .form-checkbox-group .form-checkbox:hover {
  border-color: var(--blue); background: #fff;
}
.ai-form-wrap .form-checkbox-group .form-checkbox:has(input:checked) {
  border-color: var(--blue); background: var(--blue-pale);
}
.form-note-fallback {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--text-mute); text-align: center;
  font-weight: 500;
}
.form-note-fallback code {
  background: var(--bg-soft); padding: 2px 6px; border-radius: 4px;
  font-family: "SF Mono", "Monaco", monospace;
  font-size: 11px; color: var(--text-sub);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .ai-intro, .ai-approach, .ai-cases, .ai-industry, .ai-timeline, .ai-pricing, .ai-faq, .ai-form { padding: 64px 0; }
  .ai-form-info { grid-template-columns: 1fr; gap: 12px; }
  .ai-form-wrap { padding: 28px 22px; border-radius: 14px; }
  .ai-form-wrap .form-checkbox-group { grid-template-columns: 1fr; }
  .ai-voices { grid-template-columns: 1fr; }
  .ai-pillars-grid, .ai-cases-grid, .ai-timeline-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-timeline-grid::before { display: none; }
  .ai-pricing-card { grid-template-columns: 1fr; }
  .ai-pricing-plan, .ai-pricing-campaign { padding: 28px 24px; }
  .ai-pricing-plan h3 { font-size: 26px; }
  .ai-pricing-plan-price .price-new { font-size: 32px; }
  .ai-industry-table { font-size: 14px; }
  .ai-industry-table thead th, .ai-industry-table tbody th, .ai-industry-table tbody td { padding: 14px 18px; }
  .ai-industry-table tbody th { width: auto; display: block; border-right: none; padding-bottom: 6px; }
  .ai-industry-table tbody td { display: block; padding-top: 4px; }
  .ai-industry-table thead { display: none; }
  .ai-faq-item summary { font-size: 15px; padding: 18px 22px; padding-right: 44px; }
}

/* ===========================================
 *  ANIMATIONS
 * =========================================== */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================================
 *  RESPONSIVE
 * =========================================== */
.menu-toggle { display: none; }

@media (max-width: 960px) {
  .container { padding: 0 20px; }

  /* Header */
  .site-nav { display: none; }
  .site-nav.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff; padding: 28px 24px; gap: 18px;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
    border-top: 1px solid var(--line);
  }
  .site-nav.mobile-open .nav-list {
    display: flex; flex-direction: column; gap: 18px; width: 100%;
  }
  .site-nav.mobile-open a, .site-nav.mobile-open .nav-list a { font-size: 16px; padding: 4px 0; }
  .site-nav.mobile-open .btn, .site-nav.mobile-open .site-nav-cta { padding: 14px 24px; font-size: 15px; margin-top: 8px; }
  .menu-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: transparent; border: none; cursor: pointer;
    color: var(--navy); font-size: 26px; border-radius: 8px;
  }
  .menu-toggle:hover { background: var(--blue-pale); }
  .site-header { padding: 12px 0; }
  .site-header .inner { padding: 0 20px; }
  .logo-text { font-size: 18px; }
  .logo-mark { width: 26px; height: 26px; }
  .custom-logo { max-width: 130px; height: auto; }

  .sp-only { display: inline; }
  .pc-only { display: none; }

  /* Section padding */
  .philosophy, .services, .strengths, .works, .pricing, .blog, .flow, .message, .final-cta,
  .message-full, .concept, .axis, .members, .values,
  .what, .diag-flow, .who, .why, .faq, .form { padding: 80px 0; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-eyebrow { font-size: 12px; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(42px, 12vw, 60px); margin-bottom: 28px; line-height: 1.4; }
  .hero p { font-size: 14px; margin-bottom: 28px; line-height: 1.95; }
  .hero-cta { margin-bottom: 40px; }
  .hero-cta .btn { font-size: 14px; padding: 14px 22px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 24px; }
  .hero-stats .item .num { font-size: 22px; }
  .hero-stats .item .num small { font-size: 14px; }
  .hero-stats .item .label { font-size: 10px; }

  /* Philosophy in TOP */
  .philosophy-grid { grid-template-columns: 1fr; gap: 36px; }
  .philosophy-side { position: static; }
  .philosophy-side h2 { font-size: clamp(28px, 7vw, 40px); }
  .philosophy-content p { font-size: 15px; line-height: 2.1; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-name { font-size: 21px; white-space: normal; }
  .service-card.main .service-name { font-size: 20px; }
  .service-desc { font-size: 14px; }

  /* Strengths */
  .strengths-grid { grid-template-columns: 1fr; gap: 20px; }
  .strength-num { font-size: 60px; }
  .strength-num small { font-size: 28px; }
  .strength-item p { font-size: 14px; }

  /* Works */
  .works-grid { grid-template-columns: 1fr; }
  .works-header { flex-direction: column; align-items: flex-start; }

  /* Pricing */
  .subsc-block { padding: 32px 20px; }
  .subsc-block h3 { font-size: clamp(22px, 5.5vw, 28px); }
  .subsc-block .lead { font-size: 14px; }
  .subsc-plans { grid-template-columns: 1fr; gap: 14px; }
  .plan-card { padding: 24px 20px; }
  .plan-card.recommended { transform: none; }
  .plan-card.recommended:hover { transform: translateY(-4px); }
  .plan-price { font-size: 32px; }
  .subsc-conditions { padding: 18px 20px; font-size: 13px; }
  .subsc-benefits { padding: 24px 20px; }
  .subsc-benefits-list { grid-template-columns: 1fr; }
  .pricing-cat-title { font-size: 22px; }
  .spot-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .spot-card { padding: 20px 16px; }
  .spot-card h4 { font-size: 16px; }
  .spot-card .price { font-size: 22px; }
  .spot-card .meta { font-size: 13px; }
  .sns-grid { grid-template-columns: 1fr; }
  .pricing-foot { font-size: 14px; padding: 16px 18px; }

  /* Blog */
  .blog-grid-wrap { grid-template-columns: 1fr; gap: 32px; }
  .blog-col h3 { font-size: 18px; }
  .blog-title { font-size: 15px; }

  /* Flow */
  .flow-grid { grid-template-columns: 1fr; }
  .flow-step { padding: 28px 22px; }

  /* Message */
  .message-grid { grid-template-columns: 1fr; gap: 32px; }
  .message-title { font-size: clamp(26px, 7vw, 36px); }
  .message-body p { font-size: 15px; }

  /* Final CTA */
  .final-cta h2 { font-size: clamp(28px, 7vw, 40px); }
  .final-cta-benefits { padding: 24px 20px 20px; }
  .final-cta-benefits-title { font-size: 16px; }
  .cta-benefit-text { font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-brand p { font-size: 14px; }
  .footer-col a { font-size: 14px; }
  .footer-bottom { font-size: 13px; flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Page Hero */
  .page-hero { padding: 110px 0 70px; }
  .page-hero h1 { font-size: clamp(34px, 9.5vw, 52px); line-height: 1.45; margin-bottom: 24px; }
  .page-hero p { font-size: 14px; line-height: 1.95; }
  .page-hero-feat { font-size: 13px; padding: 8px 14px; }

  /* Philosophy Page */
  .message-full-grid { grid-template-columns: 1fr; gap: 36px; }
  .message-side { position: static; }
  .message-content h2 { font-size: clamp(28px, 7vw, 40px); }
  .message-content p { font-size: 15px; line-height: 2.1; }
  .concept-title { font-size: clamp(28px, 8vw, 48px); }
  .concept p { font-size: 15px; line-height: 2.1; }
  .axis-grid { grid-template-columns: 1fr; gap: 16px; }
  .axis-card { padding: 32px 24px; }
  .axis-card h3 { font-size: 20px; }
  .axis-card p { font-size: 14px; }
  .members-grid { grid-template-columns: 1fr; gap: 16px; }
  .member-card { flex-direction: column; padding: 28px 22px; gap: 20px; }
  .member-photo { width: 100px; height: 100px; }
  .member-info p { font-size: 14px; }
  .values-list { grid-template-columns: 1fr; gap: 12px; }
  .value-item { padding: 26px 22px; }
  .value-item h3 { font-size: 17px; }
  .value-item p { font-size: 14px; }

  /* Diagnosis Page */
  .page-hero-inner.diag { grid-template-columns: 1fr; gap: 36px; }
  .diag-spec-card { padding: 32px 24px; }
  .diag-spec-row .value { font-size: 15px; }
  .diag-spec-foot { font-size: 13px; margin: 20px -24px -32px; padding: 16px 24px; }
  .what-grid { grid-template-columns: 1fr; gap: 16px; }
  .what-card { padding: 28px 22px; }
  .what-card h3 { font-size: 18px; }
  .what-card p { font-size: 14px; }
  .diag-flow-grid { grid-template-columns: 1fr; gap: 16px; }
  .diag-flow-grid::before { display: none; }
  .diag-flow-step { padding: 28px 22px; }
  .diag-flow-step h3 { font-size: 17px; }
  .diag-flow-step p { font-size: 14px; }
  .who-grid { grid-template-columns: 1fr; gap: 14px; }
  .who-item { padding: 22px 22px; gap: 14px; }
  .who-text { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-content p { font-size: 15px; }
  .why-points { padding: 28px 24px; }
  .why-point h3 { font-size: 16px; }
  .why-point p { font-size: 14px; margin-left: 16px; }
  .faq-q { padding: 20px 22px; font-size: 15px; gap: 12px; }
  .faq-q-mark { width: 30px; height: 30px; font-size: 14px; }
  .faq-a { padding: 0 22px 22px 64px; font-size: 14px; }
  .form-card { padding: 32px 22px; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 34px; }
  .form-input, .form-select, .form-textarea { font-size: 15px; padding: 12px 16px; }
  .form-submit { display: block; padding: 0; }
  .form-submit .btn { display: block; width: 100%; box-sizing: border-box; font-size: 15px; padding: 16px 36px; }
}
