/* =============================================
   IT実装×キャリアコンサルティング伴走プログラム LP
   Brand: Kokoro Design Lab
   Color Palette (inspired by Kokoro Design Lab logo):
   - Cream BG    : #FBF6E5 / #FDFAEF (warm vintage cream)
   - Soft Blue   : #4FA3C7 (heart outline blue from logo)
   - Leaf Green  : #6FB36A (leaf green from logo)
   - Deep Green  : #1F5D33 / #1B4D2A (logo text color)
   - Accent Sand : #E8DEC2
   - Text        : #3F3A33 (dark brown gray) / #2E2A24 (charcoal)
============================================= */

/* ----- Reset / Base ----- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #FFFFFF;
  --color-cream: #FBF6E5;
  --color-cream-light: #FDFAEF;
  --color-cream-deep: #F4ECCF;
  --color-cream-warm: #F4EFDC;
  --color-sand: #E8DEC2;

  /* Logo-derived brand colors */
  --color-blue: #4FA3C7;          /* logo heart blue */
  --color-blue-deep: #2F7FA0;     /* deeper variant */
  --color-blue-pale: #C9E2EC;
  --color-leaf: #6FB36A;          /* logo leaf green */
  --color-leaf-pale: #C8E0C2;
  --color-green-deep: #1F5D33;    /* logo text color */
  --color-green-darker: #143F22;

  --color-text: #3F3A33;
  --color-text-charcoal: #2E2A24;
  --color-text-light: #7A6F5E;
  --color-line: #E6DFC9;

  --shadow-soft: 0 8px 30px rgba(31, 93, 51, 0.10);
  --shadow-card: 0 6px 24px rgba(31, 93, 51, 0.08);
  --radius: 14px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { color: var(--color-green-deep); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.sp-only { display: none; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 229, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--color-green-deep);
  font-size: 15px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.logo-sub { color: var(--color-text-light); font-weight: 400; font-size: 12px; }

.header-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-green-deep);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: var(--color-green-darker); }

/* ----- Section Head ----- */
.section-head { margin-bottom: 60px; }
.section-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--color-blue);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-eyebrow.light { color: var(--color-cream-warm); }
.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.7;
  color: var(--color-green-deep);
}
.accent-line {
  background: linear-gradient(transparent 60%, var(--color-leaf-pale) 60%);
  padding: 0 4px;
}

/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--color-green-deep) 0%, var(--color-green-darker) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(31, 93, 51, 0.32);
  transition: transform .2s, box-shadow .2s;
  line-height: 1.5;
  text-align: center;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(31, 93, 51, 0.45); }
.btn-primary.btn-large { padding: 22px 44px; font-size: 17px; }
.btn-icon { font-size: 18px; }
.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #fff;
  color: var(--color-green-deep);
  border: 1.5px solid var(--color-green-deep);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--color-green-deep); color: #fff; }

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-light);
}
.cta-note.light { color: rgba(255,255,255,0.85); }

/* =============================================
   ① Hero
============================================= */
.hero-section {
  background: linear-gradient(135deg, #FDFAEF 0%, #F4ECCF 50%, #E2EFE0 100%);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(111, 179, 106, 0.20) 0%, transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
}
.hero-section::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(79, 163, 199, 0.18) 0%, transparent 70%);
  bottom: -140px; right: -140px;
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--color-blue-deep);
  margin-bottom: 24px;
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.65;
  color: var(--color-green-darker);
  margin-bottom: 28px;
}
.hero-lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--color-green-deep);
  line-height: 1.85;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--color-blue);
}
.hero-subcopy {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-cta-wrap { text-align: left; }
.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

/* =============================================
   ② Empathy
============================================= */
.empathy-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.empathy-illust img {
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.empathy-list { display: flex; flex-direction: column; gap: 24px; }
.empathy-list li {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-cream-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-leaf);
}
.empathy-list li:nth-child(even) { border-left-color: var(--color-blue); }
.empathy-list .check {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-green-deep);
  line-height: 1.6;
}
.empathy-list p { font-size: 15px; line-height: 1.85; color: var(--color-text-charcoal); }

/* =============================================
   ③ Solution
============================================= */
.solution-section {
  padding: 100px 0;
  background: var(--color-cream);
}
.solution-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
}
.solution-body p { margin-bottom: 24px; }
.solution-highlight {
  position: relative;
  margin: 40px 0 0;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 4px solid var(--color-leaf);
}
.solution-highlight p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--color-green-deep);
  line-height: 1.95;
}
.quote-icon {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: var(--color-green-deep);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* =============================================
   ④ Reasons
============================================= */
.reasons-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.reason-card {
  padding: 40px 28px;
  background: var(--color-cream-light);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--color-line);
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.reason-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-blue);
  box-shadow: var(--shadow-soft);
}
.reason-card:nth-child(2) .reason-icon { color: var(--color-leaf); }
.reason-card:nth-child(3) .reason-icon { color: #fff; background: var(--color-green-deep); }
.reason-no {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-blue);
  margin-bottom: 10px;
}
.reason-card:nth-child(2) .reason-no { color: var(--color-leaf); }
.reason-card:nth-child(3) .reason-no { color: var(--color-green-deep); }
.reason-title {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-green-deep);
  line-height: 1.7;
  margin-bottom: 16px;
}
.reason-desc {
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.85;
}

/* =============================================
   ⑤ Voices
============================================= */
.voices-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, #fff 100%);
}
.voices-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.voice-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .2s;
  border: 1px solid var(--color-line);
}
.voice-card:hover { transform: translateY(-4px); }
.voice-avatar {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--color-green-deep);
}
.voice-body { flex: 1; min-width: 0; }
.voice-headline {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: var(--color-green-deep);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--color-line);
  line-height: 1.7;
}
.voice-headline strong {
  color: var(--color-green-darker);
  font-size: 17px;
  font-weight: 700;
  margin-right: 4px;
}
.voice-detail dt {
  margin-top: 14px;
  margin-bottom: 6px;
}
.voice-detail dt:first-child { margin-top: 0; }
.voice-detail dd {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--color-text-charcoal);
  padding-left: 12px;
  border-left: 2px solid var(--color-leaf-pale);
}

/* Voice tags */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  color: #fff;
}
.tag-trouble  { background: #C99B6B; }       /* 悩み: 暖色サンド系 */
.tag-process  { background: var(--color-blue); }  /* プロセス: ロゴブルー */
.tag-support  { background: var(--color-leaf); }  /* サポート: ロゴリーフ */

/* =============================================
   ⑥ Promise
============================================= */
.promise-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.promise-card {
  padding: 48px;
  background: var(--color-cream-light);
  border-radius: var(--radius);
  border: 1px dashed var(--color-leaf);
  font-size: 15.5px;
  line-height: 2;
}
.promise-card p { margin-bottom: 18px; }
.promise-card p:last-child { margin-bottom: 0; }

/* =============================================
   ⑦ Service Menu
============================================= */
.menu-section {
  padding: 100px 0;
  background: var(--color-cream);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.menu-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s;
  border: 1px solid var(--color-line);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card.featured {
  border: 2px solid var(--color-green-deep);
  transform: scale(1.02);
}
.menu-card.featured::before {
  content: "🌿 一番人気";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-green-deep);
  color: #fff;
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.menu-emoji { font-size: 40px; margin-bottom: 10px; }
.menu-rank {
  font-family: "Noto Serif JP", serif;
  color: var(--color-leaf);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.menu-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-green-deep);
  line-height: 1.5;
  margin-bottom: 6px;
  min-height: 54px;
}
.title-plus {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-leaf);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.menu-sub {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.menu-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-text-charcoal);
  text-align: left;
  padding: 14px 16px;
  background: var(--color-cream-light);
  border-radius: 10px;
  margin-bottom: 18px;
  border-left: 3px solid var(--color-leaf-pale);
}
.menu-card.featured .menu-desc { border-left-color: var(--color-leaf); }
.menu-price {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-note {
  margin-top: 12px;
  padding: 10px 12px;
  background: #FBF6E5;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-charcoal);
  text-align: left;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-note i {
  color: var(--color-blue);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.price-note strong {
  color: var(--color-green-deep);
}
.price-old {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.price-new {
  font-size: 16px;
  color: var(--color-green-deep);
  line-height: 1.7;
}
.price-new strong {
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  color: var(--color-green-darker);
}
.badge {
  display: inline-block;
  background: var(--color-blue);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.badge-warn { background: #C99B6B; }

/* 残席 & クーポン表示 */
.price-slot {
  margin-top: 10px;
}
.price-coupon {
  margin-top: 10px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #FFF8E0 0%, #F4ECCF 100%);
  border: 1px dashed var(--color-leaf);
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-green-darker);
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-coupon i {
  color: var(--color-blue);
  font-size: 14px;
}
.price-coupon strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

/* Menu options (for 竹) */
.menu-options {
  margin-top: 16px;
  padding: 18px 16px;
  background: var(--color-cream-light);
  border-radius: 10px;
  text-align: left;
  border: 1px solid var(--color-line);
}
.options-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: 0.05em;
}
.options-subtitle {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Detailed options list */
.options-list-detailed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.options-list-detailed li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid var(--color-leaf);
}
.options-list-detailed li:nth-child(2) { border-left-color: var(--color-blue); }
.options-list-detailed li:nth-child(3) { border-left-color: var(--color-green-deep); }
.opt-no {
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-green-deep);
  line-height: 1.4;
  min-width: 18px;
}
.opt-body { flex: 1; min-width: 0; }
.opt-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-deep);
  line-height: 1.5;
  margin-bottom: 4px;
}
.opt-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-charcoal);
}
.opt-desc strong {
  color: var(--color-green-darker);
  font-weight: 700;
}

/* =============================================
   ⑧ Profile
============================================= */
.profile-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.profile-tagline {
  margin-top: 18px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}
.profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
.profile-photo { text-align: center; position: sticky; top: 100px; }
.profile-photo img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border: 4px solid #fff;
  outline: 1px solid var(--color-line);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.profile-caption {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-green-deep);
}
.profile-caption span {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.profile-text p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 22px;
}
.profile-text p:last-child { margin-bottom: 0; }

/* Profile quote (セラピストのエピソード) */
.profile-quote {
  margin: 32px 0;
  padding: 28px 30px 30px;
  background: linear-gradient(135deg, var(--color-cream-light) 0%, #ECF3E8 100%);
  border-left: 4px solid var(--color-leaf);
  border-radius: 10px;
  position: relative;
}
.quote-lead {
  font-size: 13.5px;
  color: var(--color-text-light);
  margin-bottom: 16px !important;
  font-weight: 500;
}
.quote-lead strong { color: var(--color-green-deep); }
.profile-quote blockquote {
  position: relative;
  padding: 6px 4px 0;
}
.profile-quote blockquote p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--color-green-darker);
  line-height: 2;
  margin: 0 !important;
}
.bq-icon {
  color: var(--color-leaf);
  font-size: 22px;
  margin-right: 12px;
  vertical-align: top;
  opacity: .8;
}

/* =============================================
   ⑨ Closing
============================================= */
.closing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-green-deep) 0%, var(--color-green-darker) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 222, 194, 0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
}
.closing-section::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79, 163, 199, 0.20) 0%, transparent 70%);
  bottom: -180px; left: -180px;
  border-radius: 50%;
}
.closing-section .container { position: relative; }
.closing-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.7;
  margin-bottom: 32px;
  color: #fff;
}
.closing-text {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.92);
  margin-bottom: 48px;
}
.closing-text strong { color: var(--color-cream-warm); }
.closing-cta { margin-top: 20px; }

/* ----- Footer ----- */
.site-footer {
  padding: 50px 0 40px;
  background: #143F22;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand {
  background: var(--color-cream-light);
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-block;
}
.footer-logo-image {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  margin-top: 4px;
  color: rgba(255,255,255,0.92);
}
.footer-copy {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =============================================
   Responsive
============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 380px; margin: 0 auto; }
  .empathy-grid { grid-template-columns: 1fr; gap: 40px; }
  .empathy-illust { max-width: 320px; margin: 0 auto; }
  .reasons-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-card.featured { transform: none; }
  .profile-grid { grid-template-columns: 1fr; gap: 30px; }
  .profile-photo { position: static; max-width: 280px; margin: 0 auto; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .sp-only { display: inline; }
  .hero-section { padding: 40px 0 70px; }
  .empathy-section,
  .solution-section,
  .reasons-section,
  .voices-section,
  .promise-section,
  .menu-section,
  .profile-section,
  .closing-section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .header-cta { padding: 8px 14px; font-size: 12px; }
  .logo-image { height: 36px; }
  .logo-text { font-size: 13px; }
  .logo-sub { display: none; }
  .btn-primary { padding: 16px 24px; font-size: 14px; width: 100%; }
  .btn-primary.btn-large { padding: 18px 24px; font-size: 15px; }
  .empathy-list li { padding: 16px 18px; }
  .promise-card { padding: 28px 22px; }
  .solution-highlight { padding: 28px 20px; }
  .voice-card { flex-direction: column; gap: 16px; padding: 24px; }
  .voice-avatar { width: 56px; height: 56px; align-self: flex-start; }
  .voice-headline { font-size: 14px; }
  .voice-headline strong { font-size: 15px; display: block; margin-bottom: 4px; }
  .voice-detail dd { font-size: 13.5px; }
  .tag { font-size: 10px; padding: 3px 10px; }
  .menu-title { min-height: auto; }
  .profile-quote { padding: 22px 20px; }
  .profile-quote blockquote p { font-size: 14px; }
  .footer-logo-image { height: 44px; }
}
