:root {
  --color-bg: #faf7f2;
  --color-bg-warm: #f4ede0;
  --color-cream: #f0e8d8;
  --color-green-deep: #2d5240;
  --color-green: #4a7b5b;
  --color-green-soft: #7ba585;
  --color-green-pale: #c8d8c4;
  --color-gold: #c9a96e;
  --color-gold-soft: #e8d9b8;
  --color-text: #1a2418;
  --color-text-soft: #2d3528;
  --color-text-muted: #4a5547;
  --color-eyebrow: #8a6d3a;
  --color-line: #d8d0bf;
  --color-white: #ffffff;
  
  --font-display: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
  
  --max-width: 1400px;
  --content-width: 720px;
  --section-pad: clamp(60px, 10vw, 120px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.95;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(ellipse at top right, rgba(123, 165, 133, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-green-deep);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--color-green); }

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* === Decorative Elements === */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
  gap: 16px;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--color-line);
}
.divider-leaf-icon {
  font-family: var(--font-en);
  color: var(--color-green-soft);
  font-size: 24px;
  font-style: italic;
}

/* === Header === */
.site-header {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 110px;
  height: 110px;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.brand-text-block { line-height: 1.3; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-green-deep);
  letter-spacing: 0.04em;
}
.brand-sub {
  font-family: var(--font-en);
  font-size: 13px;
  font-style: italic;
  color: var(--color-eyebrow);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.header-cta {
  font-size: 15px;
  padding: 12px 22px;
  background: var(--color-green-deep);
  color: white;
  border-radius: 40px;
  white-space: nowrap;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.header-cta:hover { color: white; background: var(--color-green); }

/* === Hero === */
.hero {
  padding: clamp(80px, 14vw, 160px) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 165, 133, 0.15) 0%, transparent 70%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-logo {
  width: clamp(420px, 88vw, 720px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 48px;
  display: block;
  opacity: 1 !important;
  filter: drop-shadow(0 10px 30px rgba(45, 82, 64, 0.18));
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 17px;
  font-style: italic;
  color: var(--color-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
  opacity: 1;
  animation: fadeInUp 1s ease 0.2s ;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--color-green-deep);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}
.hero-title .accent {
  color: var(--color-gold);
  font-weight: 600;
}
.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 2.1;
  color: var(--color-text);
  margin-bottom: 52px;
  font-weight: 500;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  animation: fadeInUp 1s ease 0.8s ;
}
.hero-quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}
.quick-tag {
  background: var(--color-white);
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 16px;
  color: var(--color-green-deep);
  border: 2px solid var(--color-green);
  font-weight: 700;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Section Header === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-en);
  font-size: 15px;
  font-style: italic;
  color: var(--color-eyebrow);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-green-deep);
  letter-spacing: 0.06em;
}
.section-lead {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
  margin-top: 24px;
  line-height: 2;
  font-weight: 500;
}

/* === Philosophy Section === */
.philosophy {
  background: var(--color-bg-warm);
  position: relative;
}
.philosophy::before {
  content: '光';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 380px);
  color: rgba(123, 165, 133, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  font-weight: 300;
}
.philosophy-inner { position: relative; z-index: 1; }
.philosophy-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 21px);
  line-height: 2.4;
  color: var(--color-text);
  text-align: center;
  font-weight: 500;
}
.philosophy-text p { margin-bottom: 28px; }
.philosophy-emphasis {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  color: var(--color-green-deep);
  font-weight: 500;
  margin: 48px 0 !important;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
.philosophy-list {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.philosophy-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 24px 28px;
  border-radius: 4px;
  border-left: 3px solid var(--color-gold);
  text-align: left;
}
.philosophy-item-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-green-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.philosophy-item-desc {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.95;
  font-weight: 500;
}

/* === Strengths === */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.strength-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 82, 64, 0.08);
}
.strength-num {
  font-family: var(--font-en);
  font-size: 38px;
  font-style: italic;
  font-weight: 500;
  color: var(--color-green-deep);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 1;
}
.strength-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.strength-desc {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}

/* === Work Section === */
.work {
  background: var(--color-bg-warm);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.work-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.work-card-image {
  background: linear-gradient(135deg, var(--color-green-pale) 0%, var(--color-gold-soft) 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work-card-icon {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--color-white);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(45, 82, 64, 0.2);
}
.work-card-image { height: 170px !important; }
.work-card-body { padding: 32px; }
.work-card-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: var(--color-green-deep);
  margin-bottom: 14px;
}
.work-card-desc {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}
.work-note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--color-text);
  font-style: italic;
  font-weight: 500;
}

/* === Target Users === */
.target-content {
  background: var(--color-white);
  padding: clamp(40px, 6vw, 60px);
  border-radius: 8px;
  border: 1px solid var(--color-line);
  margin-top: 48px;
}
.target-main {
  font-family: var(--font-display);
  font-size: clamp(23px, 3.5vw, 30px);
  text-align: center;
  color: var(--color-green-deep);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 36px;
}
.target-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.target-cat {
  text-align: center;
}
.target-cat-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-eyebrow);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.target-cat-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--color-green-deep);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.55;
}
.target-cat-desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
  font-weight: 500;
}
.target-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}
.info-pair {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 17px;
}
.info-pair-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--color-eyebrow);
  text-transform: uppercase;
  font-family: var(--font-en);
  font-weight: 700;
}
.info-pair-value {
  color: var(--color-text);
  line-height: 1.85;
  font-weight: 500;
}

.target-notes {
  margin-top: 40px;
  padding: 28px 30px;
  background: #fff;
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 2;
  border: 1px solid var(--color-line);
  font-weight: 500;
}
.target-notes p { margin-bottom: 12px; }
.target-notes p:last-child { margin-bottom: 0; }

/* === Schedule === */
.schedule {
  background: var(--color-bg-warm);
}
.schedule-list {
  margin-top: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px dashed var(--color-line);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-time {
  font-family: var(--font-en);
  font-size: 19px;
  color: var(--color-green-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.schedule-activity {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-green-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.schedule-activity .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  margin-top: 4px;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.6;
}

.lunch-info {
  margin-top: 48px;
  background: var(--color-white);
  padding: 32px;
  border-radius: 6px;
  text-align: center;
}
.lunch-info-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-green-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.lunch-info-desc {
  font-size: 17px;
  color: var(--color-text);
  line-height: 2;
  font-weight: 500;
}

/* === Visit Flow === */
.visit-flow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}
.flow-step {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  position: relative;
  text-align: center;
}
.flow-step-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green-deep);
  margin-bottom: 12px;
  font-style: italic;
  font-weight: 700;
}
.flow-step-num::before { content: 'STEP '; font-size: 13px; color: var(--color-eyebrow); }
.flow-step-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--color-green-deep);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.55;
}
.flow-step-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}

.visit-notes {
  margin-top: 56px;
  padding: 32px;
  background: var(--color-cream);
  border-radius: 6px;
  border-left: 4px solid var(--color-gold);
}
.visit-notes-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--color-green-deep);
  font-weight: 600;
  margin-bottom: 20px;
}
.visit-notes ul {
  list-style: none;
  padding: 0;
}
.visit-notes li {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  font-weight: 500;
}
.visit-notes li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 13px;
  top: 6px;
}

/* === Access === */
.access {
  background: var(--color-bg-warm);
}
.access-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.access-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: 6px;
  border: 1px solid var(--color-line);
}
.access-card-icon {
  font-family: var(--font-en);
  font-size: 16px;
  font-style: italic;
  color: var(--color-eyebrow);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: 700;
}
.access-card-title {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--color-green-deep);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}
.access-list {
  list-style: none;
  padding: 0;
}
.access-list li {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.95;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.access-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-green-soft);
}
.access-note {
  font-size: 15px;
  color: var(--color-text);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-line);
  line-height: 1.85;
  font-weight: 500;
}

.map-wrapper {
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 16px rgba(45, 82, 64, 0.06);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* === Info Section === */
.info-table {
  margin-top: 48px;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  padding: 26px 36px;
  border-bottom: 1px solid var(--color-line);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-green-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.info-row dd {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.95;
  font-weight: 500;
}
.placeholder-pending {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-gold-soft);
  color: var(--color-green-deep);
  border-radius: 4px;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
}

/* === Contact === */
.contact {
  background: var(--color-green-deep);
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
}
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact .section-eyebrow { color: var(--color-gold-soft); }
.contact .section-title { color: white; }
.contact-lead {
  font-family: var(--font-display);
  font-size: 19px;
  color: rgba(255, 255, 255, 1);
  margin-top: 28px;
  line-height: 2.05;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.contact-channels {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-channel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.contact-channel:hover {
  background: rgba(255, 255, 255, 0.1);
}
.contact-channel-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-gold-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-channel-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  font-weight: 500;
  letter-spacing: 0.02em;
  word-break: break-all;
  line-height: 1.5;
}
.contact-channel-value a { color: white; min-height: 44px; display: inline-block; }
.contact-channel-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 12px;
  line-height: 1.7;
  font-weight: 500;
}
.contact-extra {
  margin-top: 48px;
  padding: 32px 36px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-size: 17px;
  line-height: 2.05;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}
.contact-extra strong { color: var(--color-gold-soft); font-weight: 500; }

/* === Footer === */
footer {
  background: #1f3a2c;
  color: rgba(250, 247, 242, 0.75);
  padding: 60px 0 32px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-brand-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-style: italic;
  color: var(--color-gold-soft);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-text {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-list {
  list-style: none;
  font-size: 15px;
  line-height: 2.05;
  color: rgba(255, 255, 255, 0.95);
}
.footer-list li { margin-bottom: 4px; }
.footer-list a { display: inline-block; padding: 4px 0; }
.footer-list a { color: rgba(255, 255, 255, 0.95); }
.footer-list a:hover { color: var(--color-gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.2);
  padding-top: 28px;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* === Responsive === */
/* === Tablet === */
@media (max-width: 900px) {
  :root { --section-pad: clamp(56px, 9vw, 90px); }
  .info-row {
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 22px 26px;
  }
}

/* === Mobile (アクセシビリティ重視・縮小しない方針) === */
@media (max-width: 768px) {
  body { font-size: 18px; line-height: 2; }
  .container { padding: 0 22px; }
  
  .header-inner { flex-wrap: wrap; }
  .brand-mark { width: 92px; height: 92px; }
  .brand-name { font-size: 19px; }
  .brand-sub { font-size: 12px; }
  .header-cta { font-size: 14px; padding: 10px 18px; }
  
  .hero { padding: 60px 0 70px; }
  .hero-logo { width: clamp(360px, 95vw, 560px); margin-bottom: 40px; }
  .hero-title { letter-spacing: 0.04em; }
  
  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 26px;
  }
  .info-row dt { font-size: 15px; }
  .info-row dd { font-size: 17px; }
  
  .schedule-item {
    grid-template-columns: 100px 1fr;
    gap: 18px;
    padding: 20px 0;
  }
  .schedule-time { font-size: 17px; }
  .schedule-activity { font-size: 17px; }
  .schedule-activity .sub { font-size: 14px; }
  
  .strength-card { padding: 30px 26px; }
  .work-card-body { padding: 28px; }
  .access-card { padding: 28px; }
  
  .philosophy::before { font-size: 180px; }
  
  .contact-channel-value { font-size: 22px; }
  
  /* Larger tap targets */
  a, button, .header-cta, .quick-tag {
    min-height: 44px;
  }
}

/* === Small mobile (extra care) === */
@media (max-width: 480px) {
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  
  .brand-mark { width: 80px; height: 80px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 11px; }
  
  .hero-logo { width: clamp(300px, 95vw, 420px); }
  .hero-quick-info { gap: 8px; }
  .quick-tag { font-size: 14px; padding: 10px 16px; }
  
  .schedule-item {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }
  .schedule-time { font-size: 16px; }
  .schedule-activity { font-size: 16px; }
  
  .info-row { padding: 20px 22px; }
  
  .section-header { margin-bottom: 48px; }
  
  .contact-channel { padding: 26px 22px; }
  .contact-channel-value { font-size: 20px; }
  
  .footer-content { gap: 24px; }
}

/* === SVG Illustrations === */
.philosophy-illust {
  width: clamp(280px, 60vw, 400px);
  height: auto;
  margin: 0 auto 48px;
  display: block;
}
.section-illust {
  width: clamp(280px, 70vw, 400px);
  height: auto;
  margin: 0 auto 32px;
  display: block;
}
.work-illust {
  width: 100%;
  height: 170px;
  display: block;
}
.work-card-image-svg {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0e8d8 0%, #e8d9b8 100%);
  overflow: hidden;
}
.strength-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: block;
}
.flow-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: block;
}
.day-arc {
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto 56px;
  display: block;
  overflow: visible;
}
.access-illust {
  width: clamp(180px, 40vw, 240px);
  height: auto;
  margin: 0 auto 24px;
  display: block;
}
.contact-illust {
  width: clamp(160px, 35vw, 220px);
  height: auto;
  margin: 0 auto 32px;
  display: block;
  opacity: 0.85;
}

/* Section visual headers */
.section-visual-header {
  text-align: center;
}


/* === Real Photo Styling === */
.work-card-image-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e8d8 0%, #e8d9b8 100%);
}
.work-card-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.work-card:hover .work-card-image-photo img {
  transform: scale(1.05);
}
.hero-photo {
  width: 100%;
  height: clamp(200px, 30vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  margin: 32px 0;
  display: block;
}
.community-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 24px auto 32px;
  display: block;
  box-shadow: 0 8px 24px rgba(45, 82, 64, 0.12);
}


/* === Map Link Card === */
.map-link-card {
  display: block;
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--color-line);
  background: var(--color-white);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(45, 82, 64, 0.06);
}
.map-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 82, 64, 0.12);
  border-color: var(--color-green);
}
.map-preview {
  width: 100%;
  height: auto;
}
.map-preview svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-link-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--color-green-deep);
  color: var(--color-white);
  gap: 16px;
}
.map-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-link-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.map-link-text span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.map-link-arrow {
  font-size: 28px;
  color: var(--color-gold-soft);
  transition: transform 0.3s ease;
}
.map-link-card:hover .map-link-arrow {
  transform: translateX(6px);
}


/* === QR Code Section === */
.qr-section {
  background: var(--color-cream);
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.qr-card {
  display: block;
  background: var(--color-white);
  padding: 28px 24px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--color-line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 82, 64, 0.1);
  border-color: var(--color-green);
}
.qr-card-line {
  border-color: #06c755;
}
.qr-card-line:hover {
  border-color: #06c755;
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.15);
}
.qr-img {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto 18px;
  background: var(--color-bg);
  padding: 8px;
  border-radius: 6px;
}
.qr-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-green-deep);
  margin-bottom: 6px;
}
.qr-detail {
  font-size: 14px;
  color: var(--color-text);
  word-break: break-all;
  line-height: 1.5;
  font-weight: 500;
}
.qr-note {
  font-size: 13px;
  color: var(--color-eyebrow);
  margin-top: 8px;
  font-style: italic;
  font-weight: 600;
}


/* === Explanation Card (用語解説) === */
.explanation-card {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 12px;
  padding: 36px clamp(24px, 4vw, 44px);
  border: 2px solid var(--color-eyebrow);
  position: relative;
  box-shadow: 0 6px 24px rgba(45, 82, 64, 0.06);
}

.explanation-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-line);
  margin-bottom: 28px;
}
.explanation-icon {
  flex-shrink: 0;
}
.explanation-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}
.explanation-title-block { flex: 1; min-width: 0; }
.explanation-eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--color-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.explanation-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--color-green-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.explanation-summary {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.95;
  color: var(--color-text);
  text-align: center;
  padding: 24px 20px;
  background: #f4ede0;
  border-radius: 8px;
  margin-bottom: 32px;
  font-weight: 500;
}
.explanation-summary strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

.explanation-section {
  margin-bottom: 32px;
}
.exp-section-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.exp-section-text {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}
.exp-section-text strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.exp-box {
  padding: 24px;
  border-radius: 8px;
  border: 2px solid;
}
.exp-box-attention {
  background: #fff5e6;
  border-color: #d49645;
}
.exp-box-attention .exp-box-label { color: #8a4d0e; }
.exp-box-ok {
  background: #f0f5ed;
  border-color: var(--color-green);
}
.exp-box-ok .exp-box-label { color: var(--color-green-deep); }

.exp-box-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.exp-box-desc {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 500;
}
.exp-box-desc strong {
  background: #ffd97a;
  padding: 1px 6px;
  border-radius: 3px;
  color: #5a3d0a;
}
.exp-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.exp-box-list li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
  padding: 6px 0 6px 22px;
  position: relative;
  font-weight: 500;
}
.exp-box-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 11px;
}
.exp-box-attention .exp-box-list li::before { color: #d49645; }
.exp-box-ok .exp-box-list li::before { color: var(--color-green); }

.exp-flow-list {
  list-style: none;
  padding: 0;
  counter-reset: flow-counter;
}
.exp-flow-list li {
  counter-increment: flow-counter;
  position: relative;
  padding: 14px 0 14px 56px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px dashed var(--color-line);
}
.exp-flow-list li:last-child { border-bottom: none; }
.exp-flow-list li::before {
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: white;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-flow-list li strong {
  display: block;
  color: var(--color-green-deep);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.explanation-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 24px;
  background: #f4ede0;
  border-radius: 8px;
  margin-bottom: 28px;
}
.exp-info-item { text-align: center; }
.exp-info-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-eyebrow);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.exp-info-value {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
}
.exp-info-value strong {
  color: var(--color-green-deep);
  font-weight: 700;
  font-size: 16px;
}

.explanation-callout {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: linear-gradient(135deg, #fff8e1 0%, #f4e9c8 100%);
  border-radius: 8px;
  border-left: 5px solid var(--color-eyebrow);
}
.callout-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.callout-text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text);
  font-weight: 500;
}
.callout-text strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

@media (max-width: 600px) {
  .explanation-card { padding: 28px 22px; }
  .explanation-header { gap: 14px; }
  .explanation-icon svg { width: 44px; height: 44px; }
  .exp-flow-list li { padding: 12px 0 12px 48px; }
  .exp-flow-list li::before { width: 32px; height: 32px; font-size: 15px; top: 13px; }
  .explanation-callout { flex-direction: column; gap: 12px; padding: 22px; }
  .callout-icon { font-size: 28px; }
}


/* === Learning Time Section === */
.learning {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-cream) 100%);
}

.learning-intro {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 20px rgba(45, 82, 64, 0.06);
}
.learning-intro-icon {
  font-size: 64px;
  flex-shrink: 0;
  line-height: 1;
}
.learning-intro-text { flex: 1; min-width: 0; }
.learning-intro-text p {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 14px;
  font-weight: 500;
}
.learning-intro-text p:last-child { margin-bottom: 0; }
.learning-intro-text strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

/* Player Card */
.podcast-player-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45, 82, 64, 0.1);
  border: 2px solid var(--color-line);
  margin-bottom: 48px;
}
.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--color-green-deep);
  color: white;
  flex-wrap: wrap;
  gap: 12px;
}
.player-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.player-status-dot {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}
.player-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.player-placeholder {
  padding: 56px 32px;
  text-align: center;
  background: linear-gradient(135deg, #f4ede0 0%, #e8d9b8 100%);
}
.player-placeholder-icon svg {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(45, 82, 64, 0.2));
}
.player-placeholder-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.player-placeholder-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 28px;
  font-weight: 500;
}
.player-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.platform-chip {
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid var(--color-line);
  color: var(--color-green-deep);
}

/* Weekly Themes */
.weekly-themes {
  margin-bottom: 48px;
}
.weekly-themes-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.theme-day {
  background: #fff;
  padding: 22px 16px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-day:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 82, 64, 0.08);
}
.theme-day-label {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: white;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 12px;
}
.theme-day-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 6px;
}
.theme-day-desc {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 500;
}

/* Disclaimer */
.learning-disclaimer {
  background: linear-gradient(135deg, #fff5e6 0%, #ffeacc 100%);
  border-left: 6px solid #d49645;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 150, 69, 0.3);
}
.disclaimer-icon {
  font-size: 28px;
  line-height: 1;
}
.disclaimer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #5a3d0a;
  letter-spacing: 0.04em;
}
.disclaimer-list {
  list-style: none;
  padding: 0;
}
.disclaimer-list li {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text);
  padding: 8px 0 8px 24px;
  position: relative;
  font-weight: 500;
}
.disclaimer-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 12px;
  color: #d49645;
  font-size: 11px;
}
.disclaimer-list strong {
  color: #5a3d0a;
  font-weight: 700;
}

/* Emergency Contacts */
.emergency-contacts {
  background: var(--color-green-deep);
  color: #fff;
  padding: clamp(28px, 4vw, 36px);
  border-radius: 12px;
}
.emergency-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.emergency-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 20px;
  border-radius: 8px;
  text-align: center;
}
.emergency-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-soft);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.emergency-number {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.emergency-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .learning-intro {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .learning-intro-icon { font-size: 56px; }
  .player-header { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .player-placeholder { padding: 44px 22px; }
  .player-placeholder-title { font-size: 20px; }
  .platform-chip { font-size: 12px; padding: 7px 14px; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .learning-disclaimer { padding: 24px 22px; }
  .disclaimer-title { font-size: 18px; }
  .emergency-number { font-size: 19px; }
}


/* === HTML5 Audio Player === */
.audio-player-container {
  background: linear-gradient(135deg, #f4ede0 0%, #e8d9b8 100%);
  padding: 36px clamp(22px, 4vw, 40px);
}

.audio-episode-info {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px dashed rgba(45, 82, 64, 0.2);
}
.episode-num {
  display: inline-block;
  background: var(--color-green-deep);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.episode-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.episode-subtitle {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-eyebrow);
  font-weight: 600;
  margin-bottom: 18px;
}
.episode-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.meta-item {
  font-size: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.custom-audio {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  outline: none;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(45, 82, 64, 0.1);
}
/* Webkit specific styling */
.custom-audio::-webkit-media-controls-panel {
  background-color: #fff;
}

.external-listen-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.external-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.external-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 82, 64, 0.1);
  border-color: var(--color-green);
}
.external-link-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.external-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.external-link-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-green-deep);
}
.external-link-desc {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
}
.external-link-arrow {
  font-size: 20px;
  color: var(--color-eyebrow);
  font-weight: 700;
}

/* === Episode Archive === */
.episode-archive {
  background: #fff;
  padding: 36px clamp(22px, 4vw, 40px);
  border-top: 1px solid var(--color-line);
}
.archive-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.archive-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--color-bg-warm);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}
.archive-item-current {
  border-color: var(--color-green);
  background: linear-gradient(135deg, #fff8e1 0%, #f4e9c8 100%);
}
.archive-day {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.archive-item-current .archive-day { background: var(--color-eyebrow); }
.archive-content {
  flex: 1;
  min-width: 0;
}
.archive-num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-eyebrow);
  margin-bottom: 4px;
}
.archive-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-green-deep);
  line-height: 1.5;
  margin-bottom: 4px;
}
.archive-date {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
}
.archive-status {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-now {
  background: var(--color-green-deep);
  color: white;
}
.status-coming {
  background: var(--color-gold-soft);
  color: var(--color-eyebrow);
}

/* === Podcast Platforms Section === */
.podcast-platforms-section {
  background: #fff;
  padding: 36px clamp(22px, 4vw, 40px);
  text-align: center;
  border-top: 1px solid var(--color-line);
}
.platforms-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.platforms-note {
  font-size: 14px;
  color: var(--color-text);
  margin-top: 18px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 600px) {
  .archive-item {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }
  .archive-status {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 6px;
  }
  .archive-day { width: 40px; height: 40px; font-size: 16px; }
  .episode-meta { gap: 10px; }
  .meta-item { font-size: 13px; padding: 5px 12px; }
}





/* === Player Main Badge === */
.player-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-deep);
  color: white;
  padding: 8px 18px;
  border-radius: 24px;
  margin-bottom: 22px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse-red 1.5s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.audio-player-container {
  text-align: center;
}
.audio-episode-info { text-align: center; }


/* === Schedule Overview === */
.schedule-overview {
  margin-bottom: 48px;
}
.schedule-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.schedule-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.schedule-info-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.schedule-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 82, 64, 0.08);
}
.schedule-info-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--color-eyebrow);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.schedule-info-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.schedule-info-note {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 500;
}

/* === Monthly Themes === */
.monthly-themes {
  margin-bottom: 48px;
}
.monthly-themes-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.month-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.month-theme-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: 12px;
  border-left: 5px solid var(--color-gold);
  border-top: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.month-theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 82, 64, 0.08);
}
.month-theme-card:nth-child(2) { border-left-color: var(--color-green); }
.month-theme-card:nth-child(3) { border-left-color: var(--color-green-deep); }
.month-theme-card:nth-child(4) { border-left-color: var(--color-eyebrow); }

.week-num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-eyebrow);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.month-theme-category {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.month-theme-detail {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text);
  font-weight: 500;
}

/* === Audio Fallback (file not found) === */
.audio-fallback {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff5e6;
  border: 2px dashed #d49645;
  border-radius: 12px;
  margin-bottom: 24px;
}
.fallback-icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.fallback-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.fallback-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #8a4d0e;
  margin-bottom: 8px;
}
.fallback-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text);
  font-weight: 500;
}
.fallback-content code {
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green-deep);
}

/* PC表示の最適化（大画面で内容を広く） */
@media (min-width: 1200px) {
  .hero-content { max-width: 900px; }
  .info-row { grid-template-columns: 240px 1fr; }
  .schedule-list { max-width: 900px; margin: 0 auto; }
}


/* === ヒーロー部 強制表示（アニメーション無効時の安全策） === */
.hero-logo,
.hero-eyebrow,
.hero-title,
.hero-lead,
.hero-quick-info {
  opacity: 1 !important;
}

/* ============================================ */
/* === マルチページ用 ナビゲーション === */
/* ============================================ */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green-deep);
  transition: width 0.3s ease;
}
.main-nav ul li a:hover { color: var(--color-green-deep); }
.main-nav ul li a:hover::after { width: 100%; }
.main-nav ul li a.nav-active {
  color: var(--color-green-deep);
  font-weight: 700;
}
.main-nav ul li a.nav-active::after { width: 100%; }

.nav-cta {
  font-size: 14px;
  padding: 11px 20px;
  background: var(--color-green-deep);
  color: white !important;
  border-radius: 40px;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--color-green); }

/* ハンバーガーメニュー（モバイル用） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 220;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-green-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================ */
/* === ページ共通 セクション === */
/* ============================================ */
.page-hero {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
  padding: clamp(48px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.page-hero-eyebrow {
  font-family: var(--font-en);
  font-size: 15px;
  font-style: italic;
  color: var(--color-eyebrow);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  color: var(--color-green-deep);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 18px;
}
.page-hero-lead {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text);
  line-height: 2;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* パンくずリスト */
.breadcrumb {
  padding: 16px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}
.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb li { color: var(--color-text-muted); }
.breadcrumb li a { color: var(--color-green); text-decoration: none; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: ' ›'; margin-left: 8px; color: var(--color-line); }

/* ページ内CTA */
.page-cta-section {
  background: var(--color-green-deep);
  padding: clamp(50px, 8vw, 80px) 0;
  text-align: center;
}
.page-cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.page-cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  line-height: 1.95;
  margin-bottom: 32px;
  font-weight: 500;
}
.page-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  background: var(--color-gold);
  color: white !important;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.3s ease, background 0.3s ease;
  display: inline-block;
  min-height: 44px;
}
.cta-btn-primary:hover { background: #b8975a; transform: translateY(-2px); }
.cta-btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white !important;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.3s ease;
  display: inline-block;
  min-height: 44px;
}
.cta-btn-secondary:hover { background: rgba(255,255,255,0.22); }

/* カードグリッド（トップページのナビカード） */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.nav-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid var(--color-line);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 82, 64, 0.1);
}
.nav-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.nav-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 10px;
}
.nav-card-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.85;
  font-weight: 500;
}
.nav-card-arrow {
  margin-top: 16px;
  color: var(--color-eyebrow);
  font-weight: 700;
  font-size: 15px;
}

/* ============================================ */
/* === レスポンシブ（モバイルナビ） === */
/* ============================================ */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    z-index: 200;
    gap: 0;
    overflow-y: auto;
  }
  .main-nav.nav-open { right: 0; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-line);
  }
  .main-nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
  }
  .nav-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================ */
/* === プライバシーポリシー専用 === */
/* ============================================ */
.policy-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 24px;
}
.policy-intro {
  background: #fff;
  padding: clamp(28px, 5vw, 40px);
  border-radius: 8px;
  border-left: 5px solid var(--color-green);
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.policy-intro p { margin-bottom: 16px; }
.policy-intro p:last-child { margin-bottom: 0; }
.policy-intro strong { color: var(--color-green-deep); font-weight: 700; }
.policy-section {
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 8px;
  margin-bottom: 28px;
  border: 1px solid var(--color-line);
}
.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-gold-soft);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.policy-section h2 .article-num {
  display: inline-block;
  background: var(--color-green-deep);
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 12px;
  vertical-align: middle;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.policy-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin: 24px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--color-gold);
}
.policy-section p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 500;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul, .policy-section ol { margin: 16px 0; padding-left: 0; list-style: none; }
.policy-section ul li, .policy-section ol li {
  font-size: 16px; line-height: 1.95; color: var(--color-text);
  padding: 8px 0 8px 28px; position: relative; font-weight: 500;
}
.policy-section ul li::before {
  content: '◆'; position: absolute; left: 0; top: 8px;
  color: var(--color-gold); font-size: 13px;
}
.policy-section ol { counter-reset: ol-counter; }
.policy-section ol li { counter-increment: ol-counter; }
.policy-section ol li::before {
  content: counter(ol-counter); position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; background: var(--color-green-deep); color: #fff;
  border-radius: 50%; font-size: 12px; display: flex; align-items: center;
  justify-content: center; font-weight: 700;
}
.policy-section strong { color: var(--color-green-deep); font-weight: 700; }
.info-box {
  background: var(--color-cream); padding: 22px 26px; border-radius: 8px;
  margin: 20px 0; border-left: 4px solid var(--color-gold);
}
.info-box .label {
  font-family: var(--font-en); font-size: 13px; letter-spacing: 0.2em;
  color: var(--color-eyebrow); text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.info-box .value { font-size: 16px; line-height: 1.85; color: var(--color-text); font-weight: 500; }
.special-care-box {
  background: linear-gradient(135deg, #fff8e1 0%, #f4e9c8 100%);
  padding: 28px 30px; border-radius: 8px; margin: 24px 0; border-left: 5px solid var(--color-eyebrow);
}
.special-care-box h3 { border-left: none !important; padding-left: 0 !important; margin-top: 0 !important; margin-bottom: 12px !important; }
.contact-table {
  width: 100%; border-collapse: separate; border-spacing: 0; margin: 16px 0;
  background: var(--color-white); border-radius: 8px; overflow: hidden; border: 1px solid var(--color-line);
}
.contact-table th, .contact-table td {
  padding: 16px 20px; text-align: left; font-size: 16px;
  border-bottom: 1px solid var(--color-line); font-weight: 500;
}
.contact-table th {
  background: var(--color-bg-warm); font-family: var(--font-display);
  font-weight: 700; color: var(--color-green-deep); width: 35%; white-space: nowrap;
}
.contact-table tr:last-child th, .contact-table tr:last-child td { border-bottom: none; }
.last-updated {
  text-align: center; margin-top: 48px; padding: 24px;
  background: var(--color-bg-warm); border-radius: 8px; font-size: 15px;
  color: var(--color-text); font-weight: 500;
}
.last-updated strong {
  display: block; font-family: var(--font-display); font-size: 17px;
  color: var(--color-green-deep); margin-bottom: 6px; font-weight: 700;
}
@media (max-width: 768px) {
  .policy-section h2 .article-num { display: block; margin-right: 0; margin-bottom: 8px; }
  .contact-table th, .contact-table td { display: block; width: 100%; }
  .contact-table th { border-bottom: none; padding-bottom: 8px; }
  .contact-table td { padding-top: 8px; padding-left: 20px; }
}


/* ============================================ */
/* === 事業内容（詳細版） === */
/* ============================================ */

/* 作業内容 詳細ブロック */
.work-detail-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 20px rgba(45, 82, 64, 0.05);
}
.work-detail-reverse { grid-template-columns: 1.1fr 1fr; }
.work-detail-reverse .work-detail-image { order: 2; }
.work-detail-reverse .work-detail-content { order: 1; }

.work-detail-image {
  height: 100%;
  min-height: 340px;
}
.work-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-detail-content {
  padding: 40px 44px;
}
.work-detail-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-gold-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.work-detail-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.work-detail-lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-text);
  margin-bottom: 24px;
  font-weight: 500;
}
.work-detail-examples {
  background: var(--color-bg-warm);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 22px;
}
.examples-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-eyebrow);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.examples-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.examples-list li {
  font-size: 15px;
  color: var(--color-text);
  padding-left: 22px;
  position: relative;
  font-weight: 500;
  line-height: 1.7;
}
.examples-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}
.work-detail-fit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f4ede0 0%, #faf3e3 100%);
  border-radius: 10px;
  border-left: 4px solid var(--color-gold);
}
.fit-icon { font-size: 24px; flex-shrink: 0; line-height: 1.4; }
.fit-text { font-size: 14px; line-height: 1.85; color: var(--color-text); font-weight: 500; }
.fit-text strong { color: var(--color-green-deep); font-weight: 700; }

/* 回復を支えるプログラム */
.recovery-program {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-cream) 100%);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.program-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 30px;
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 82, 64, 0.1);
}
.program-icon {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1;
}
.program-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.program-desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text);
  font-weight: 500;
}

/* 進め方 */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.approach-step {
  background: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-green);
  position: relative;
}
.approach-step-num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-eyebrow);
  font-weight: 700;
  margin-bottom: 10px;
}
.approach-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.approach-step-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}

/* 工賃 詳細 */
.wage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 16px 0 36px;
}
.wage-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--color-line);
}
.wage-card-icon { font-size: 40px; margin-bottom: 16px; }
.wage-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 12px;
}
.wage-card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
}
.wage-note-box {
  background: var(--color-bg-warm);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
}
.wage-note-box p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 12px;
}
.wage-note-small {
  font-size: 13px !important;
  color: var(--color-text-muted) !important;
  font-family: var(--font-body) !important;
  margin-bottom: 0 !important;
  line-height: 1.8 !important;
}

/* レスポンシブ */
@media (max-width: 860px) {
  .work-detail-block,
  .work-detail-reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .work-detail-reverse .work-detail-image { order: 1; }
  .work-detail-reverse .work-detail-content { order: 2; }
  .work-detail-image { min-height: 240px; }
  .work-detail-content { padding: 32px 28px; }
  .examples-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .work-detail-num { font-size: 40px; }
  .work-detail-title { font-size: 24px; }
  .approach-step { padding: 26px 24px; }
}


/* === 送迎補助イラスト（アクセスページ） === */
.pickup-illust-wrap {
  max-width: 680px;
  margin: 32px auto 28px;
}
.pickup-illust-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(45, 82, 64, 0.1);
}
.pickup-illust-caption {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 12px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .pickup-illust-wrap { margin: 24px auto 20px; }
}


/* === 実写画像（送迎・昼食）の表示 === */
.pickup-real-img,
.lunch-real-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(45, 82, 64, 0.15);
  object-fit: cover;
}
.pickup-real-img { aspect-ratio: 16 / 9; }
.lunch-real-img { aspect-ratio: 16 / 9; }

.img-note {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 400;
  font-style: italic;
}

/* 昼食セクション（事業内容ページ） */
.lunch-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 40px;
  padding: 36px;
  background: linear-gradient(135deg, #f4ede0 0%, #faf3e3 100%);
  border-radius: 18px;
  border: 1px solid var(--color-line);
}
.lunch-image-wrap { width: 100%; }
.lunch-image-caption {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
  font-weight: 500;
}
.lunch-section .lunch-info {
  background: transparent;
  padding: 0;
}
.lunch-section .lunch-info-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 16px;
}
.lunch-section .lunch-info-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--color-gold);
  border-radius: 2px;
}
.lunch-section .lunch-info-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 500;
}
.lunch-section .lunch-info-desc strong {
  color: var(--color-green-deep);
  font-weight: 700;
}

@media (max-width: 860px) {
  .lunch-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}
