/* === CUSTOM PROPERTIES === */
:root {
  --c-primary: #5B8C57;        /* 旧 #4E7A65 */
  --c-primary-light: #8FB571;  /* 旧 #6B9A7E */
  --c-primary-dark: #3F6B3D;   /* 旧 #3D5A4A */
  --c-primary-mute: #E8F0E0;   /* 新規追加 */
  /* 2026-05-16 緑単軸化: ターコイズ廃止 → 緑系に統一（CEO意向） */
  --c-accent: #3F6B3D;         /* 旧 #3F6B3D → primary-dark系（差し色＝深緑） */
  --c-accent-dark: #2D5230;    /* 旧 #2D5230 → さらに濃い緑（hover時） */
  --c-accent-soft: #E8F0E0;    /* 旧 #E8F0E0 → primary-mute系（淡緑背景） */
  --c-accent-light: #8FB571;   /* 旧 #8FB571 → primary-light系（明緑） */
  --c-bg: #FBFBF8;             /* 旧 --c-cream: #FAF6F0 */
  --c-bg-soft: #F2F4ED;        /* 旧 --c-cream-dark: #F0EAE0 */
  /* 互換用エイリアス（既存class名に多用されているため一時残置） */
  --c-cream: #FBFBF8;          /* = --c-bg */
  --c-cream-dark: #F2F4ED;     /* = --c-bg-soft */
  --c-white: #FFFFFF;
  --c-text: #2C2C2C;
  --c-text-light: #5E5E5E;     /* 旧 #6B6B6B */
  --c-text-muted: #9B9B9B;
  --c-border: #D9DEC9;         /* 旧 #E0DAD0 */
  --f-display: 'Shippori Mincho', 'Georgia', serif;
  --f-body: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --f-accent: 'Cormorant Garamond', serif;
  --s-section: clamp(80px, 12vw, 160px);
  --s-container: min(90%, 1200px);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
/* 改善2-a: line-height 1.8→1.9 */
body { font-family: var(--f-body); color: var(--c-text); background: var(--c-cream); line-height: 1.9; overflow-x: hidden; font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* === SCROLL ANIMATIONS === */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.rv.visible { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.12s; }
.rv-d2 { transition-delay: 0.24s; }
.rv-d3 { transition-delay: 0.36s; }
.rv-d4 { transition-delay: 0.48s; }
.rv-d5 { transition-delay: 0.6s; }
.rv-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.rv-scale.visible { opacity: 1; transform: scale(1); }
.rv-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.rv-left.visible { opacity: 1; transform: translateX(0); }
.rv-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.rv-right.visible { opacity: 1; transform: translateX(0); }

/* === C4: prefers-reduced-motion === */
@media (prefers-reduced-motion: reduce) {
  .rv, .rv-scale, .rv-left, .rv-right { opacity: 1; transform: none; transition: none; }
  .hero__slide { transition-duration: 0.01s; }
}

/* === UTILITIES === */
.container { width: var(--s-container); margin: 0 auto; }
.section { padding: var(--s-section) 0; position: relative; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 clamp(20px, 4vw, 48px); height: 72px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(250,246,240,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--c-border); }
/* マルチページ用: サブページではヘッダーを最初から塗りつぶし状態に */
.header--solid { background: rgba(250,246,240,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--c-border); }
.header__logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.header__logo-img { height: 44px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.header__logo-text { font-family: var(--f-display); font-size: 0.75rem; font-weight: 600; color: var(--c-primary-dark); letter-spacing: 0.02em; line-height: 1.3; white-space: nowrap; }
@media (max-width: 600px) {
  .header__logo-img { height: 36px; }
  .header__logo-text { font-size: 0.65rem; }
}
.header__nav { display: flex; align-items: center; gap: 28px; }
/* B5: ナビリンク追従 - .active で下線が伸びる */
.header__nav a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; position: relative; transition: color 0.3s; }
.header__nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--c-primary); transition: width 0.3s var(--ease-out-expo); }
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 24px; background: var(--c-primary); color: #fff; font-size: 0.82rem; font-weight: 600; border-radius: 100px; letter-spacing: 0.03em; transition: background 0.3s, transform 0.3s; }
.header__cta:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.hamburger { display: none; width: 28px; height: 20px; position: relative; z-index: 1001; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(250,246,240,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.05em; }

@media (max-width: 1100px) {
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* === HERO (写真50% + 橘色塗り帯50% の2分割) === */
/* 撮影完了後は .hero__photo img の src を差し替えるだけで実スタッフ写真に切替可能 */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  padding-top: 72px; /* fixed header の高さ分 */
  overflow: hidden;
}

/* --- 左: 写真フル表示 --- */
.hero__photo {
  position: relative;
  overflow: hidden;
  background: #F2F4ED; /* 画像読み込み中の背景 */
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 右: 葉色塗り帯 --- */
.hero__panel {
  background: var(--c-primary);
  display: flex;
  align-items: center;
  padding: 60px 40px;
}
.hero__panel-inner {
  max-width: 480px;
  margin: 0 auto;
  color: #fff;
}
.hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--f-display);
  /* 右パネル(max 480px)に「訪問看護ステーション」が1行で収まるサイズに調整 */
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: #fff;
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.95);
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA: 葉色帯の上で映えるバリアント */
.btn--primary-on-dark {
  background: #fff;
  color: var(--c-primary);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  letter-spacing: 0.04em;
}
.btn--primary-on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 12.5px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
  letter-spacing: 0.04em;
}
.btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.12);
}

/* 既存の .btn--primary / .btn--outline は他ページで利用中。HERO以外で残す */
.btn--primary { background: var(--c-primary); color: #fff; padding: 14px 32px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; transition: all 0.3s var(--ease-out-expo); letter-spacing: 0.03em; }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,140,87,0.3); }
.btn--outline { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.6); padding: 14px 32px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; transition: all 0.3s var(--ease-out-expo); letter-spacing: 0.03em; backdrop-filter: blur(8px); }
.btn--outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* === モバイル(<= 768px): 縦積み === */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__photo {
    aspect-ratio: 4 / 3;
    min-height: 50vh;
  }
  .hero__panel {
    padding: 48px 24px 56px;
  }
  .hero__panel-inner {
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
}

/* === HERO SPLIT (左固定理念 + 右切替訴求) === */
/* クラシ訪問看護HP準拠の2分割構造 / 葉色プライマリ厳守 */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  margin-top: 72px; /* fixed header の高さ分 */
  background: var(--c-cream);
  overflow: hidden;
  align-items: stretch;
}

/* --- 左: 固定エリア（理念・縦書き） --- */
.hero-fixed {
  position: relative;
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--c-border);
  overflow: hidden;
}
.hero-fixed__brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.hero-fixed__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hero-fixed__brand-text {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.hero-fixed__catch {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.22em;
  color: var(--c-primary-dark);
  margin: 24px auto;
  height: clamp(420px, 60vh, 600px);
  display: flex;
  /* writing-mode: vertical-rl 環境では block-axis = 水平（右→左）。
     column を指定すると子要素が水平に並ぶ（=2列の縦書き行）。 */
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
}
.hero-fixed__catch-line {
  display: block;
  white-space: nowrap;
}
.hero-fixed__catch br { display: none; } /* 縦書き時はbrを無視（自然な改行は font 配置に任せる） */
.hero-fixed__sub {
  position: relative;
  z-index: 2;
  font-family: var(--f-accent);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--c-text-light);
  text-align: center;
}

/* 葉装飾（JSで動的に落下する葉のコンテナ・falling-leaves.js） */
.hero-fixed__leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.falling-leaf {
  position: absolute;
  top: -60px;
  left: var(--leaf-start-x);
  width: var(--leaf-size);
  height: calc(var(--leaf-size) * 1.5);
  color: var(--leaf-color);
  opacity: 0;
  animation: leafFall var(--leaf-duration) linear var(--leaf-delay) forwards;
  will-change: transform, opacity;
}
.falling-leaf svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}
@keyframes leafFall {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: var(--leaf-opacity, 0.3);
  }
  25% {
    transform: translate(calc(var(--leaf-sway) * 0.5), 25vh) rotate(calc(var(--leaf-rotate) * 0.25));
  }
  50% {
    transform: translate(calc(var(--leaf-sway) * -0.7), 50vh) rotate(calc(var(--leaf-rotate) * 0.5));
  }
  75% {
    transform: translate(calc(var(--leaf-sway) * 0.3), 75vh) rotate(calc(var(--leaf-rotate) * 0.75));
  }
  90% {
    opacity: var(--leaf-opacity, 0.3);
  }
  100% {
    transform: translate(0, 110vh) rotate(var(--leaf-rotate));
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .falling-leaf { display: none; }
}

/* --- 右: 切替エリア（3スライド） --- */
.hero-slider {
  position: relative;
  /* hero-split配下では右側コンテナとして振る舞う */
}
.hero-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941; /* CEO作成画像（採用・エリア）に合わせる */
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  padding: 0;
  display: block;
  overflow: hidden;
}
/* 微細な葉色のテクスチャ感（ラジアルの控えめなハイライト） */
.hero-slider__track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 70px 56px 80px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide__inner {
  width: 100%;
  max-width: 640px;
}

/* 画像スライド（CEO作成のTOP画像3枚を表示するモード） */
.hero-slide--image {
  /* 枠いっぱいに画像を敷くため、内側パディングを無くしフルブリードに */
  inset: 0;
  padding: 0;
  display: block;
}
.hero-slide__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  outline: none;
}
.hero-slide__image-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}
.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
}
.hero-slide__badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-slide__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-slide__messages {
  margin-bottom: 28px;
}
.hero-slide__messages p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.94);
  margin-bottom: 4px;
}
.hero-slide__messages p:last-child {
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 500;
}
.hero-slide__messages--single p {
  margin-top: 0;
  font-weight: 400;
}

/* インライン区切り型ハイライト（カード反復回避） */
.hero-slide__highlights {
  display: flex;
  list-style: none;
  margin: 28px 0 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.hero-slide__highlights li {
  flex: 1;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.22);
  text-align: center;
}
.hero-slide__highlights li:first-child { padding-left: 0; }
.hero-slide__highlights li:last-child { border-right: none; padding-right: 0; }
.hero-slide__highlight-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.78;
  display: block;
  margin-bottom: 6px;
}
.hero-slide__highlight-value {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.hero-slide__highlight-note {
  font-size: 0.72rem;
  opacity: 0.78;
  display: block;
  margin-top: 6px;
}

/* エリアスライド固有 */
.hero-slide__areas {
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  text-align: center;
}
.hero-slide__areas-main {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 6px;
}
.hero-slide__areas-sub {
  font-size: 0.82rem;
  opacity: 0.78;
  letter-spacing: 0.06em;
}
.hero-slide__area-services {
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.94);
}

/* Instagramスライド固有 */
.hero-slide__instagram-preview {
  width: 160px;
  height: 160px;
  margin: 24px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 3px solid rgba(255,255,255,0.92);
}
.hero-slide__instagram-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* CTA: ヒーロー専用バリアント */
.btn--hero-primary {
  background: #fff;
  color: var(--c-primary-dark);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn--hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}
.btn--hero-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 12.5px 26px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.btn--hero-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,1);
}

/* Dots */
.hero-slider__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.42);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.3s;
}
.hero-slider__dot:hover { background: rgba(255,255,255,0.78); }
.hero-slider__dot.is-active {
  background: #fff;
  width: 26px;
  border-radius: 100px;
}
.hero-slider__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition-duration: 0.01s; }
}

/* モバイル: 縦積み */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-fixed {
    min-height: auto;
    padding: 44px 28px 36px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }
  .hero-fixed__catch {
    writing-mode: horizontal-tb;
    height: auto;
    margin: 28px auto;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    text-align: center;
    flex-direction: column; /* モバイルでは横書きに戻すので縦に2行並べる */
    gap: 4px;
    align-items: center;
  }
  .hero-fixed__catch br { display: inline; }
  .hero-fixed__catch-line { display: block; white-space: normal; }
  .hero-fixed__brand { justify-content: center; }
  .hero-slider__track {
    padding: 50px 26px 70px;
    min-height: 540px;
  }
  .hero-slide {
    inset: 50px 26px 70px;
  }
  .hero-slide__title { font-size: clamp(1.35rem, 5.4vw, 1.8rem); }
  .hero-slide__messages p { font-size: 0.92rem; line-height: 1.85; }
  .hero-slide__highlights {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }
  .hero-slide__highlights li {
    padding: 8px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }
  .hero-slide__highlights li:first-child { padding-top: 0; }
  .hero-slide__highlights li:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-slide__highlight-value { font-size: 1.1rem; }
  .hero-slide__cta { flex-direction: column; align-items: stretch; }
  .btn--hero-primary, .btn--hero-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-slide__instagram-preview { width: 130px; height: 130px; margin: 18px 0 22px; }
  .hero-slider__dots { bottom: 22px; }
}

/* === SECTION TITLE (二層構造) === */
.stitle { position: relative; margin-bottom: 48px; }
.stitle__en { font-family: var(--f-accent); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 400; color: var(--c-primary); opacity: 0.08; line-height: 1; letter-spacing: 0.04em; user-select: none; }
/* 改善2-c: h2見出し font-weight:700 */
.stitle__ja { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: 0.06em; position: relative; margin-top: -0.6em; }
/* B1: セクションタイトルのアンダーラインドロー */
.stitle__ja::after { content: ''; display: block; width: 40px; height: 2px; background: var(--c-accent); margin-top: 14px; transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-out-expo) 0.3s; }
.visible .stitle__ja::after, .rv.visible .stitle__ja::after { transform: scaleX(1); }
.stitle--center { text-align: center; }
.stitle--center .stitle__ja::after { margin-left: auto; margin-right: auto; transform-origin: center; }
.stitle--white .stitle__en { color: #fff; opacity: 0.12; }
.stitle--white .stitle__ja { color: #fff; }
.stitle--white .stitle__ja::after { background: var(--c-accent-light); }

/* === SEC: PHILOSOPHY (いろはの想い) === */
/* A5: Philosophy 余白 1.3倍 */
.philosophy { background: var(--c-cream); padding-top: calc(var(--s-section) * 1.3); padding-bottom: calc(var(--s-section) * 1.3); }
.philosophy__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philosophy__photos { position: relative; height: 480px; }
.philosophy__photo { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.philosophy__photo--main { width: 60%; max-width: 340px; height: 75%; bottom: 0; left: 0; z-index: 2; }
.philosophy__photo--sub { width: 55%; height: 60%; top: 0; right: 0; z-index: 1; }
.philosophy__photo img { width: 100%; height: 100%; object-fit: cover; }
/* 佐藤さん写真: 顔が切れないよう上寄せ + 低解像度対策 */
.philosophy__photo-portrait { object-position: center top; image-rendering: auto; }
/* A7: テキストサイズ拡大 + 改善2-b: セクション説明文サイズアップ */
.philosophy__text { font-family: var(--f-display); font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 2.2; letter-spacing: 0.04em; color: var(--c-text); }
.philosophy__text p { margin-bottom: 24px; }
/* A1: 佐藤さんの声引用ブロック */
.philosophy__quote { font-family: var(--f-display); font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--c-accent); border-left: 2px solid var(--c-accent-light); padding-left: 20px; margin: 32px 0 24px; line-height: 1.9; font-style: normal; }
/* A6: 代表メッセージリンクの色をアクセントカラーに */
.philosophy__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-body); font-size: 0.9rem; font-weight: 600; color: var(--c-accent); margin-top: 16px; transition: gap 0.3s var(--ease-out-expo); }
.philosophy__link:hover { gap: 14px; }
.philosophy__link svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .philosophy__inner { grid-template-columns: 1fr; gap: 48px; }
  .philosophy__photos { height: 360px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .philosophy__photos { height: 280px; }
  .philosophy__photo--main { width: 60%; height: 70%; }
  .philosophy__photo--sub { width: 50%; height: 55%; }
}

/* === SEC: NUMBERS === */
.numbers { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); position: relative; }
.numbers::before { content: 'Data'; position: absolute; top: -20px; right: 5%; font-family: var(--f-accent); font-size: clamp(6rem, 14vw, 12rem); font-weight: 400; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.numbers__item { padding: 32px 16px; }
.numbers__icon { width: 44px; height: 44px; margin: 0 auto 16px; color: rgba(255,255,255,0.7); }
.numbers__icon svg { width: 100%; height: 100%; }
.numbers__value { font-family: var(--f-accent); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: #fff; line-height: 1.1; }
.numbers__value span { font-size: 0.45em; font-family: var(--f-body); font-weight: 500; margin-left: 2px; }
.numbers__label { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 8px; letter-spacing: 0.04em; font-weight: 500; }
/* B2: カウントアップパルス */
@keyframes countPulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.numbers__value.counted { animation: countPulse 0.4s var(--ease-out-expo); }

@media (max-width: 1024px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .numbers__item { padding: 24px 12px; } }

/* === SEC: SERVICES === */
.services { background: var(--c-white); }
.services__visual { position: relative; border-radius: 4px; overflow: hidden; margin-bottom: 64px; height: 400px; }
.services__visual img { width: 100%; height: 100%; object-fit: cover; }
/* 改善3-c: サービスビジュアルのオーバーレイ強化 */
.services__visual-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(44,44,44,0.65) 0%, rgba(44,44,44,0.2) 50%, transparent 70%); }
.services__visual-text { position: absolute; bottom: 40px; left: 40px; color: #fff; max-width: 400px; }
/* 改善2-c + 3-c: サービスビジュアルテキストの視認性向上 */
.services__visual-text h3 { font-family: var(--f-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 700; line-height: 1.6; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.services__visual-text p { font-size: 0.92rem; opacity: 0.9; line-height: 1.8; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
/* A2: サービスカード3列均等を崩す */
.services__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-card { padding: 36px 28px; background: var(--c-cream); border-radius: 6px; position: relative; overflow: hidden; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
/* B3: サービスカードの左ボーダー登場 */
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--c-primary); transform: scaleY(0); transition: transform 0.4s var(--ease-out-expo) 0.6s, background 0.3s; transform-origin: bottom; }
.service-card.visible::before { transform: scaleY(1); }
.service-card:hover::before { background: var(--c-accent); transform: scaleY(1); }
.service-card__icon { width: 44px; height: 44px; color: var(--c-primary); margin-bottom: 18px; }
.service-card__icon svg { width: 100%; height: 100%; }
/* 改善2-c: h3見出し font-weight:700 (既に700なので維持) */
.service-card__title { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.03em; }
/* 改善2-d: サービスカード本文 0.85→0.92rem, weight 400→500 */
.service-card__desc { font-size: 0.92rem; color: var(--c-text-light); line-height: 1.8; font-weight: 500; }
.services__more { text-align: center; margin-top: 48px; }
/* A2: 1つ目の医療ケアカードを全幅横長 */
.service-card--featured { grid-column: 1 / -1; display: flex; align-items: center; gap: 28px; padding: 40px 36px; }
.service-card--featured .service-card__icon { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; }
.service-card--featured .service-card__body { flex: 1; }
.service-card--featured .service-card__title { font-size: 1.2rem; }
/* A2: 精神科カードの左ボーダーをアクセントカラー */
.service-card--accent::before { background: var(--c-accent); }
.service-card--accent.visible::before { background: var(--c-accent); }

@media (max-width: 1024px) { .services__cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } .service-card--featured { flex-direction: column; align-items: flex-start; } }
@media (max-width: 600px) {
  .services__visual { height: 260px; }
  .services__visual-text { bottom: 24px; left: 20px; right: 20px; }
}
/* C2: モバイル:active */
@media (hover: none) { .service-card:active { transform: translateY(-2px); } }

/* === SEC: VOICES === */
.voices { background: var(--c-cream-dark); position: relative; }
.voices::before { content: '\201C'; position: absolute; top: 10%; left: 8%; font-family: var(--f-accent); font-size: clamp(10rem, 25vw, 20rem); color: var(--c-primary); opacity: 0.04; line-height: 1; pointer-events: none; }
/* D1: ご利用者さまの声カード */
.voices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 860px; margin: 0 auto; }
.voice-card { background: rgba(255,255,255,0.7); border-radius: 8px; padding: 36px 32px; position: relative; }
.voice-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
/* 改善2-d: 声カード本文 font-weight:500 */
.voice-card__body { font-size: 0.95rem; color: var(--c-text); line-height: 1.9; margin-bottom: 16px; font-family: var(--f-display); font-weight: 500; }
.voice-card__meta { font-size: 0.78rem; color: var(--c-text-muted); text-align: right; }
@media (max-width: 768px) { .voices__grid { grid-template-columns: 1fr; } }

/* === SEC: FLOW === */
.flow { background: var(--c-white); }
.flow__steps { display: flex; gap: 0; align-items: flex-start; margin-top: 56px; position: relative; }
.flow__steps::before { content: ''; position: absolute; top: 30px; left: 30px; right: 30px; height: 2px; background: var(--c-border); z-index: 0; }
.flow__step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.flow__num { width: 60px; height: 60px; border-radius: 50%; background: var(--c-primary); color: #fff; font-family: var(--f-accent); font-size: 1.3rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; }
.flow__step-icon { width: 28px; height: 28px; color: var(--c-primary); margin: 0 auto 8px; }
.flow__step-icon svg { width: 100%; height: 100%; }
/* 改善2-c: フローステップタイトル font-weight:700 */
.flow__step-title { font-family: var(--f-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.03em; }
/* 改善2-d: フローステップ説明 0.78→0.85rem, weight 500 */
.flow__step-desc { font-size: 0.85rem; color: var(--c-text-light); line-height: 1.8; font-weight: 500; }

@media (max-width: 768px) {
  .flow__steps { flex-direction: column; gap: 32px; padding-left: 40px; }
  .flow__steps::before { top: 0; bottom: 0; left: 29px; right: auto; width: 2px; height: 100%; }
  .flow__step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 0; }
  .flow__num { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }
}

/* === SEC: TEAM === */
.team { background: var(--c-cream); }
.team__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.team__photos { position: relative; height: 500px; }
.team__photo { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); transition: transform 0.6s var(--ease-out-expo); }
.team__photo:hover { transform: scale(1.02) !important; }
.team__photo--a { width: 45%; height: 55%; bottom: 0; left: 0; z-index: 3; }
.team__photo--b { width: 42%; height: 48%; top: 10%; left: 30%; z-index: 2; }
.team__photo--c { width: 40%; height: 45%; top: 0; right: 0; z-index: 1; }
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
/* 改善2-b: チームテキスト font-size + weight アップ */
.team__text p { font-size: clamp(1rem, 1.8vw, 1.1rem); color: var(--c-text-light); line-height: 1.9; margin-bottom: 16px; font-weight: 500; }

@media (max-width: 1024px) {
  .team__inner { grid-template-columns: 1fr; gap: 48px; }
  .team__photos { height: 380px; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  /* 改善1: モバイルでteam写真を縦積み表示 */
  .team__photos {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
  .team__photo {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .team__photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
  }
}

/* === SEC: RECRUIT === */
.recruit { position: relative; padding: var(--s-section) 0; background: url('../../images/ai-generated/hero/hero-v1.png') center / cover no-repeat; }
@media (hover: none) { .recruit { background-attachment: scroll; } }
@media (hover: hover) { .recruit { background-attachment: fixed; } }
/* B4: 採用セクションのオーバーレイ変化 + 改善3-b: オーバーレイ強化 */
.recruit__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.72); transition: background 1.2s ease-out; }
.recruit__overlay.in-view { background: rgba(0,0,0,0.5); }
.recruit__inner { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; margin: 0 auto; }
/* 改善3-b: 採用見出しに text-shadow */
.recruit__headline { font-family: var(--f-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.65; letter-spacing: 0.06em; margin-bottom: 36px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.recruit__tags { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
/* A4: タグをpill型→テキストベースに変更 + 改善3-b: font-weight:600 + text-shadow */
.recruit__tag { padding: 0 0 4px 0; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.4); border-radius: 0; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em; backdrop-filter: none; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.recruit__zero { margin-bottom: 40px; }
.recruit__zero-num { font-family: var(--f-accent); font-size: clamp(3.5rem, 8vw, 5.5rem); font-weight: 600; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.recruit__zero-label { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; letter-spacing: 0.06em; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.recruit__cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--c-accent); color: #fff; font-size: 1rem; font-weight: 700; border-radius: 100px; letter-spacing: 0.04em; transition: all 0.3s var(--ease-out-expo); box-shadow: 0 6px 24px rgba(63,107,61,0.35); }
.recruit__cta:hover { background: #2D5230; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(63,107,61,0.45); }

/* === SEC: FAQ === */
.faq { background: var(--c-cream); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--c-border); }
/* 改善2-c: FAQ質問 font-weight:700 */
.faq__q { width: 100%; padding: 22px 40px 22px 0; text-align: left; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em; position: relative; cursor: pointer; line-height: 1.7; font-family: var(--f-body); color: var(--c-text); }
.faq__q::before { content: 'Q.'; font-family: var(--f-accent); font-weight: 600; color: var(--c-primary); margin-right: 12px; font-size: 1.05rem; }
.faq__q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--c-primary); transition: transform 0.3s; font-weight: 300; }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo), padding 0.4s; padding: 0 0 0 32px; }
.faq__item.open .faq__a { max-height: 500px; padding: 0 0 22px 32px; }
/* 改善2-d: FAQ回答 0.88→0.92rem, weight 500 */
.faq__a p { font-size: 0.92rem; color: var(--c-text-light); line-height: 1.9; font-weight: 500; }
.faq__more { text-align: center; margin-top: 40px; }

/* === SEC: ACCESS / CONTACT === */
.access { background: var(--c-white); }
.access__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
/* 改善2-c: h3見出し font-weight:700 */
.access__info h3 { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 0.04em; }
/* 改善2-d: アクセス詳細 font-size + weight アップ */
.access__detail li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--c-border); font-size: 0.92rem; }
.access__detail-label { flex-shrink: 0; width: 80px; color: var(--c-text-muted); font-weight: 600; }
.access__detail-value { color: var(--c-text); font-weight: 500; }
.access__detail-value a { color: var(--c-primary); font-weight: 600; }
.access__channels { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.access__channel-title { font-size: 0.82rem; font-weight: 600; color: var(--c-text-light); letter-spacing: 0.04em; margin-bottom: 4px; }
.access__line-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: #06C755; color: #fff; font-size: 0.9rem; font-weight: 700; border-radius: 8px; transition: background 0.3s, transform 0.3s; letter-spacing: 0.03em; }
.access__line-btn:hover { background: #05b34c; transform: translateY(-1px); }
.access__line-btn svg { width: 22px; height: 22px; }
.access__tel { display: inline-flex; align-items: center; gap: 8px; font-size: 1.1rem; font-weight: 700; color: var(--c-primary-dark); margin-top: 4px; }
.access__tel svg { width: 18px; height: 18px; }
.access__map { border-radius: 8px; overflow: hidden; height: 100%; min-height: 360px; }
.access__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

@media (max-width: 1024px) { .access__grid { grid-template-columns: 1fr; } .access__map { min-height: 300px; } }

/* === RECRUIT BANNER === */
.recruit-banner { background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%); padding: 40px 0; text-align: center; }
.recruit-banner__text { font-family: var(--f-display); font-size: clamp(1rem, 2vw, 1.25rem); color: #fff; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 16px; }
.recruit-banner__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: #fff; color: var(--c-primary-dark); font-size: 0.88rem; font-weight: 700; border-radius: 100px; transition: all 0.3s; letter-spacing: 0.03em; }
.recruit-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* === FOOTER === */
.footer { background: var(--c-primary-dark); padding: 56px 0 24px; color: rgba(255,255,255,0.75); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer__brand { max-width: 300px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer__logo-img { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__logo-text { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer__desc { font-size: 0.78rem; line-height: 1.8; }
.footer__nav { display: flex; gap: 48px; }
.footer__nav-group h4 { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.footer__nav-group a { display: block; font-size: 0.82rem; padding: 4px 0; transition: color 0.3s; }
.footer__nav-group a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; }
  .footer__nav { flex-direction: column; gap: 24px; }
}

/* === LINE FLOATING (SP) === */
.line-float { position: fixed; bottom: 20px; right: 20px; z-index: 900; width: 56px; height: 56px; background: #06C755; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(6,199,85,0.4); transition: transform 0.3s; }
.line-float:hover { transform: scale(1.08); }
.line-float svg { width: 30px; height: 30px; color: #fff; }
@media (min-width: 1025px) { .line-float { display: none; } }

/* === C1: スクロールトップボタン === */
.scroll-top { position: fixed; bottom: 20px; left: 20px; z-index: 900; width: 44px; height: 44px; background: var(--c-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 12px rgba(91,140,87,0.3); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; cursor: pointer; border: none; }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: scale(1.08); }
.scroll-top svg { width: 20px; height: 20px; }

/* === COMMON LINK STYLE === */
.more-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--c-primary); letter-spacing: 0.02em; transition: gap 0.3s var(--ease-out-expo); }
.more-link:hover { gap: 14px; }
.more-link::after { content: '\2192'; font-size: 1.1em; }

/* ============================================ */
/* === マルチページ専用スタイル（追加分） === */
/* ============================================ */

/* サブページ用ヒーロー（HEROより小さい） */
.page-hero { position: relative; padding: 160px 0 72px; background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-dark) 100%); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('../../images/ai-generated/page-hero/iroha-main-v1.png'); background-size: cover; background-position: center; opacity: 0.18; }
.recruit-page .page-hero::before { background-image: url('../../images/ai-generated/recruit/recruit-hero-v1.png'); opacity: 0.22; }
.page-hero__inner { position: relative; z-index: 2; text-align: center; }
.page-hero__en { font-family: var(--f-accent); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 400; color: var(--c-primary); opacity: 0.32; line-height: 1; letter-spacing: 0.04em; margin-bottom: -0.4em; }
.page-hero__ja { font-family: var(--f-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--c-primary-dark); letter-spacing: 0.08em; }
.page-hero__ja::after { content: ''; display: block; width: 48px; height: 2px; background: var(--c-accent); margin: 16px auto 0; }
.page-hero__sub { font-family: var(--f-display); font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: var(--c-text-light); margin-top: 16px; letter-spacing: 0.04em; }

/* パンくず */
.breadcrumb { padding: 16px 0; background: var(--c-cream); border-bottom: 1px solid var(--c-border); font-size: 0.78rem; color: var(--c-text-muted); }
.breadcrumb a { color: var(--c-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; }

/* サブページ末尾 CTA */
.page-cta { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); padding: 72px 0; text-align: center; color: #fff; }
.page-cta__title { font-family: var(--f-display); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; line-height: 1.6; margin-bottom: 12px; letter-spacing: 0.04em; }
.page-cta__desc { font-size: 0.92rem; opacity: 0.9; margin-bottom: 32px; font-weight: 500; }
.page-cta__btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* HERO 3CTA レイアウト用補助（既存ボタンを3つ並べる時のレイアウト） */
.hero__sub--multi { font-size: clamp(0.78rem, 1.4vw, 0.92rem); color: rgba(255,255,255,0.85); margin-top: -16px; margin-bottom: 24px; letter-spacing: 0.05em; }
.hero__sub--multi span { display: inline-block; margin-right: 18px; }
.hero__sub--multi span::before { content: '・'; margin-right: 4px; opacity: 0.6; }

/* === セクション見出し（NEWS / STAFF 共通・立花畑風 二層構造） === */
.section-heading {
  position: relative;
  display: inline-block;
  margin: 0 0 32px;
  line-height: 1;
}
.section-heading__en {
  display: block;
  font-family: var(--f-accent);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  color: #E5E5E5;
  text-transform: uppercase;
  user-select: none;
  letter-spacing: 0.02em;
}
.section-heading__ja {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
  font-family: var(--f-display);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .section-heading__ja { left: 12px; }
}

/* === NEWS（お知らせ）セクション === */
.news {
  padding: clamp(64px, 9vw, 96px) 0 clamp(48px, 7vw, 72px);
  position: relative;
  background: var(--c-cream);
}
.news__head { text-align: left; }
.news__list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px 32px;
  list-style: none;
  margin: 0;
}
.news__item { border-bottom: 1px solid #E5E5E5; }
.news__item:last-child { border-bottom: none; }
.news__item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 8px;
  color: var(--c-text);
  text-decoration: none;
  transition: opacity 0.2s;
}
.news__item a:hover { opacity: 0.7; }
.news__date {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--c-text-light);
  letter-spacing: 0.05em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-family: var(--f-accent), var(--f-body);
}
.news__category {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--c-text);
  font-size: 0.92rem;
}
.news__title {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
}
.news__more { text-align: right; margin-top: 16px; }
.news__more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.news__more a:hover .news__more-icon { transform: translateX(2px); }
.news__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease-out-expo);
}
@media (max-width: 768px) {
  .news__list { padding: 4px 16px; }
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 8px;
  }
  .news__date { font-size: 0.82rem; }
  .news__title { font-size: 0.9rem; }
}

/* === 「選ばれる理由」(numbers.html リフレーム後) === */
.reasons { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); position: relative; padding: clamp(80px, 12vw, 140px) 0; }
.reasons::before { content: 'Reasons'; position: absolute; top: -20px; right: 5%; font-family: var(--f-accent); font-size: clamp(6rem, 14vw, 12rem); font-weight: 400; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.reasons__lead { text-align: center; color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto 56px; font-size: 0.95rem; line-height: 2; font-weight: 500; }
.reasons__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.reasons__card { background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 28px 18px; text-align: center; transition: background 0.3s, transform 0.4s var(--ease-out-expo); }
.reasons__card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.reasons__icon { width: 36px; height: 36px; margin: 0 auto 12px; color: rgba(255,255,255,0.85); }
.reasons__icon svg { width: 100%; height: 100%; }
.reasons__num { font-family: var(--f-accent); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 4px; }
.reasons__num span { font-size: 0.45em; font-family: var(--f-body); font-weight: 500; margin-left: 2px; }
.reasons__title { font-family: var(--f-display); font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: 0.04em; line-height: 1.5; }
.reasons__desc { font-size: 0.74rem; color: rgba(255,255,255,0.78); line-height: 1.7; font-weight: 500; }

@media (max-width: 1024px) { .reasons__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .reasons__grid { grid-template-columns: 1fr; } }

/* === team.html 充実 (スタッフカード4-5名 / タイムライン / 現場の声) === */
.staff-cards { background: var(--c-white); padding: clamp(72px, 10vw, 120px) 0; }
.staff-cards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.staff-card { background: var(--c-cream); border-radius: 8px; overflow: hidden; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; }
.staff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.staff-card__photo { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #FBFBF8, #F2F4ED); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-card__photo--placeholder::before { content: attr(data-initial); font-family: var(--f-display); font-size: 4rem; font-weight: 600; color: #3F6B3D; letter-spacing: 0.04em; line-height: 1; }
.staff-card__photo-caption { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 0.72rem; color: #5E5E5E; letter-spacing: 0.03em; }
.staff-card__body { padding: 22px 20px; }
.staff-card__role { font-size: 0.72rem; color: var(--c-primary); font-weight: 600; letter-spacing: 0.08em; margin-bottom: 4px; }
.staff-card__name { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.04em; }
.staff-card__list { display: grid; gap: 6px; }
.staff-card__list dt { font-size: 0.7rem; color: var(--c-text-muted); font-weight: 600; }
.staff-card__list dd { font-size: 0.82rem; color: var(--c-text); line-height: 1.6; margin-bottom: 4px; }

@media (max-width: 1024px) { .staff-cards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .staff-cards__grid { grid-template-columns: 1fr; } }

.day-timeline { background: var(--c-cream); padding: clamp(72px, 10vw, 120px) 0; }
.day-timeline__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; position: relative; }
.day-timeline__list::before { content: ''; position: absolute; top: 32px; left: 8%; right: 8%; height: 2px; background: linear-gradient(to right, transparent, var(--c-primary-light), transparent); z-index: 0; }
.day-timeline__item { text-align: center; position: relative; z-index: 1; }
.day-timeline__time { display: inline-block; padding: 8px 14px; background: var(--c-primary); color: #fff; font-family: var(--f-accent); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; border-radius: 100px; margin-bottom: 16px; }
.day-timeline__title { font-family: var(--f-display); font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.03em; }
.day-timeline__desc { font-size: 0.78rem; color: var(--c-text-light); line-height: 1.7; font-weight: 500; }

@media (max-width: 1024px) { .day-timeline__list { grid-template-columns: repeat(2, 1fr); gap: 24px; } .day-timeline__list::before { display: none; } }
@media (max-width: 480px) { .day-timeline__list { grid-template-columns: 1fr; } }

.field-voices { background: var(--c-white); padding: clamp(72px, 10vw, 120px) 0; }
.field-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.field-voice { background: var(--c-cream); border-radius: 8px; padding: 28px 24px; border-left: 3px solid var(--c-accent); }
.field-voice__quote { font-size: 0.92rem; color: var(--c-text); line-height: 2; font-weight: 500; margin-bottom: 16px; }
.field-voice__role { font-size: 0.78rem; color: var(--c-text-muted); font-weight: 600; letter-spacing: 0.04em; }

@media (max-width: 1024px) { .field-voices__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; margin-top: 48px; } }

/* === blog.html (一覧) + blog-NN.html (個別記事) === */
.blog-list { background: var(--c-cream); padding: clamp(72px, 10vw, 120px) 0; }
.blog-list__lead { text-align: center; max-width: 640px; margin: 0 auto 32px; font-size: 0.95rem; color: var(--c-text-light); line-height: 2; }
.blog-list__cats { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.blog-list__cat { display: inline-flex; align-items: center; padding: 6px 18px; background: var(--c-white); color: var(--c-text); font-size: 0.78rem; font-weight: 600; border-radius: 100px; border: 1px solid var(--c-border); transition: all 0.3s; cursor: pointer; }
.blog-list__cat:hover, .blog-list__cat.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.blog-list__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: block; background: var(--c-white); border-radius: 8px; overflow: hidden; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; border: 1px solid var(--c-border); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-card__thumb { width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--c-cream-dark), #E5EBD8); border-bottom: 1px solid rgba(91,140,87,0.16); overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out-expo); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__thumb--all { display: flex; align-items: center; justify-content: center; }
.blog-card__thumb--all::before { content: 'All Posts'; font-family: var(--f-accent); font-size: 1rem; color: rgba(91,140,87,0.45); letter-spacing: 0.06em; }
.blog-card__body { padding: 22px 22px 26px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-card__date { font-family: var(--f-accent); font-size: 0.82rem; color: var(--c-text-muted); letter-spacing: 0.04em; }
.blog-card__cat { display: inline-block; padding: 2px 10px; background: var(--c-primary); color: #fff; font-size: 0.68rem; font-weight: 600; border-radius: 100px; letter-spacing: 0.04em; }
.blog-card__title { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; line-height: 1.6; margin-bottom: 10px; letter-spacing: 0.03em; transition: color 0.3s; }
.blog-card:hover .blog-card__title { color: var(--c-primary); }
.blog-card__excerpt { font-size: 0.84rem; color: var(--c-text-light); line-height: 1.8; margin-bottom: 14px; font-weight: 500; }
.blog-card__more { font-size: 0.82rem; font-weight: 600; color: var(--c-primary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-card:hover .blog-card__more { gap: 12px; }

@media (max-width: 1024px) { .blog-list__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-list__grid { grid-template-columns: 1fr; } }

.blog-article { background: var(--c-white); padding: clamp(48px, 8vw, 88px) 0 clamp(72px, 10vw, 120px); }
.blog-article__inner { max-width: 760px; margin: 0 auto; }
.blog-article__cover { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-cream-dark), #E5EBD8); border-radius: 8px; overflow: hidden; margin-bottom: 32px; box-shadow: 0 16px 40px rgba(63,107,61,0.10); }
.blog-article__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 16px; }
.blog-article__date { font-family: var(--f-accent); font-size: 0.92rem; color: var(--c-text-muted); letter-spacing: 0.04em; }
.blog-article__cat { display: inline-block; padding: 4px 14px; background: var(--c-primary); color: #fff; font-size: 0.74rem; font-weight: 600; border-radius: 100px; letter-spacing: 0.04em; }
.blog-article__author { font-size: 0.82rem; color: var(--c-text-light); }
.blog-article__title { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 700; line-height: 1.6; letter-spacing: 0.04em; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.blog-article__body { font-size: 0.95rem; color: var(--c-text); line-height: 2.1; font-weight: 500; }
.blog-article__body p { margin-bottom: 24px; }
.blog-article__body h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; margin: 36px 0 14px; padding-left: 14px; border-left: 3px solid var(--c-accent); letter-spacing: 0.03em; }
.blog-article__nav { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--c-border); text-align: center; }

.blog-related { background: var(--c-cream); padding: clamp(72px, 10vw, 100px) 0; }
.blog-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 768px) { .blog-related__grid { grid-template-columns: 1fr; } }

/* === Instagram (index.html) === */
.instagram { background: var(--c-cream); padding: clamp(72px, 10vw, 120px) 0; }
.instagram__lead { text-align: center; max-width: 600px; margin: 0 auto 40px; font-size: 0.95rem; color: var(--c-text-light); line-height: 2; }
.instagram__cta { text-align: center; margin-top: 32px; }
.instagram__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); color: #fff; font-size: 0.88rem; font-weight: 600; border-radius: 100px; transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.02em; }
.instagram__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(221,42,123,0.3); }

/* === HERO 3 CTA 拡張 === */
.hero__ctas .btn--soft { background: rgba(255,255,255,0.92); color: var(--c-primary-dark); border: none; }
.hero__ctas .btn--soft:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ============================================
   PROFILE PAGES（橘ばたけテイスト）
   ============================================ */

/* =================================================================
   PROFILE pages — 立花畑（uri-home.com）準拠の構造
   - 白背景 ＋ 橘色帯セクション の2層交互レイアウト
   - 写真は矩形 or 軽い角丸（8px）。不揃い角丸・草花SVG装飾なし
   - 英大セクション見出し透かし＋日本語小見出し
   ================================================================= */

/* PROFILE 共通：基底色は既存の cream を踏襲 */
.profile-body { background: var(--c-cream); }

/* ----- HERO（ファースト：写真フルワイド＋名前） ----- */
.profile-hero {
  position: relative;
  padding: 56px 0 64px;
  background: var(--c-white);
}
.profile-hero__inner {
  width: min(94%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.profile-hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #F2F4ED;
}
.profile-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-hero__photo--placeholder {
  background: linear-gradient(135deg, #FBFBF8, #F2F4ED);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-hero__photo--placeholder::before {
  content: attr(data-initial);
  font-family: var(--f-display);
  font-size: 6rem;
  font-weight: 600;
  color: #3F6B3D;
  letter-spacing: 0.04em;
  line-height: 1;
}
.profile-hero__photo-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  background: rgba(91,140,87,0.65);
  padding: 4px 12px;
  border-radius: 4px;
}
.profile-hero__text {
  text-align: left;
  padding-left: 6px;
  position: relative;
}
.profile-hero__title-en {
  font-family: var(--f-accent);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--c-accent);
  opacity: 0.10;
  line-height: 1;
  letter-spacing: 0.05em;
  user-select: none;
  margin-bottom: -0.4em;
  display: block;
}
.profile-hero__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.12em;
  margin: 4px 0 8px;
}
.profile-hero__name {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.profile-hero__name-en {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-text-light);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.profile-hero__catch {
  font-family: var(--f-display);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--c-primary-dark);
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .profile-hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

/* ----- セクション共通 ----- */
.profile-section {
  padding: 64px 0;
  position: relative;
}
.profile-section--band {
  background: var(--c-cream-dark);
}
.profile-section--accent {
  background: linear-gradient(180deg, #EFF6E8 0%, #D4E5C5 100%);
}
.profile-container {
  width: min(92%, 800px);
  margin: 0 auto;
  position: relative;
}
.profile-stitle {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.profile-stitle__en {
  font-family: var(--f-accent);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--c-accent);
  opacity: 0.10;
  line-height: 1;
  letter-spacing: 0.06em;
  user-select: none;
  display: block;
}
.profile-stitle__ja {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.08em;
  margin-top: -0.6em;
  position: relative;
  display: inline-block;
}
.profile-stitle__ja::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  margin: 14px auto 0;
}

/* ----- 私のこと（ストーリー） ----- */
.profile-story p {
  font-size: 0.96rem;
  line-height: 2.05;
  color: var(--c-text);
  margin-bottom: 1.4em;
}
.profile-story p:last-child { margin-bottom: 0; }

/* ----- ご利用者さまへ（メッセージ：吹き出し型カード） ----- */
.profile-message {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(91,140,87,0.06);
  position: relative;
}
.profile-message__text {
  font-family: var(--f-display);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--c-text);
  font-weight: 500;
}
.profile-message__author {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ----- Q&A（シンプルな白カード積層） ----- */
.profile-qa { display: grid; gap: 14px; }
.profile-qa__item {
  background: var(--c-white);
  border-radius: 8px;
  padding: 22px 26px;
  border-left: 3px solid var(--c-accent);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.profile-qa__q {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-primary-dark);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.profile-qa__q::before {
  content: 'Q';
  font-family: var(--f-accent);
  font-size: 1rem;
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: 0;
}
.profile-qa__a {
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--c-text);
  padding-left: 22px;
  position: relative;
}
.profile-qa__a::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-accent);
  font-size: 1rem;
  color: var(--c-primary);
  font-weight: 600;
}

/* ----- 私の1日（タイムライン：縦線なし、矩形カード） ----- */
.profile-day { display: grid; gap: 12px; }
.profile-day__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--c-white);
  padding: 18px 22px;
  border-radius: 8px;
  border-left: 3px solid var(--c-primary);
}
.profile-day__time {
  font-family: var(--f-accent);
  font-size: 1.1rem;
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.profile-day__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.profile-day__desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--c-text-light);
}
@media (max-width: 600px) {
  .profile-day__item { grid-template-columns: 64px 1fr; gap: 14px; padding: 14px 16px; }
  .profile-day__time { font-size: 0.95rem; }
}

/* ----- 他のメンバーへの導線（一覧グリッド：立花畑member風） ----- */
.profile-others {
  width: min(92%, 960px);
  margin: 0 auto;
}
.profile-others__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.profile-others__card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  display: block;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  border: 1px solid var(--c-border);
}
.profile-others__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(91,140,87,0.12);
}
.profile-others__photo {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F2F4ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-accent);
  font-size: 0.9rem;
  color: rgba(0,0,0,0.35);
  font-style: italic;
}
.profile-others__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-others__body {
  padding: 14px 12px;
  background: var(--c-accent);
  color: #fff;
}
.profile-others__role {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.profile-others__name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .profile-others__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ======== team.html のカード内CTAリンク ======== */
.staff-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.staff-card__link:hover {
  background: var(--c-primary-dark);
  transform: translateX(2px);
  box-shadow: 0 6px 14px rgba(63,107,61,0.25);
}
.staff-card__link span { transition: transform 0.3s; }
.staff-card__link:hover span { transform: translateX(2px); }

/* === Recruit 募集要項表 === */
.recruit-detail { background: var(--c-white); padding: clamp(72px, 10vw, 120px) 0; }
.recruit-detail__lead { text-align: center; max-width: 640px; margin: 0 auto 40px; font-size: 0.95rem; color: var(--c-text-light); line-height: 2; }
.recruit-table-wrap { max-width: 820px; margin: 0 auto; }
.recruit-table { width: 100%; border-collapse: collapse; }
.recruit-table tr { border-bottom: 1px solid var(--c-border); }
.recruit-table tr:first-child { border-top: 1px solid var(--c-border); }
.recruit-table th { width: 28%; text-align: left; padding: 22px 16px; font-family: var(--f-display); font-size: 0.92rem; font-weight: 700; color: var(--c-primary); letter-spacing: 0.04em; vertical-align: top; background: var(--c-cream); }
.recruit-table td { padding: 22px 20px; font-size: 0.92rem; color: var(--c-text); line-height: 1.9; vertical-align: top; }
.recruit-table__note { display: inline-block; margin-top: 4px; font-size: 0.78rem; color: var(--c-text-muted); font-weight: 500; }
.recruit-detail__cta { text-align: center; margin-top: 48px; }
@media (max-width: 600px) {
  .recruit-table th, .recruit-table td { display: block; width: 100%; padding: 14px 16px; }
  .recruit-table th { background: var(--c-cream); border-bottom: none; padding-bottom: 8px; }
  .recruit-table td { padding-top: 8px; }
}

/* === Services 24時間ハイライトバナー === */
.services__highlight {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 0 48px; padding: 22px 28px;
  background: linear-gradient(135deg, #3F6B3D, #2D5230);
  border-radius: 8px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px rgba(63,107,61,0.18);
}
.services__highlight-icon { font-size: 1.5rem; line-height: 1; }
.services__highlight p { margin: 0; font-size: 1.02rem; font-weight: 600; letter-spacing: 0.04em; }
@media (max-width: 600px) {
  .services__highlight { flex-direction: column; gap: 6px; padding: 18px 20px; }
  .services__highlight p { font-size: 0.92rem; }
}

/* === Service card 拡充用リスト === */
.service-card__detail-list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.service-card__detail-list li {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-cream);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* === FAQ グループ見出し === */
.faq-group__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.04em;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--c-accent);
}
.faq-group__title:first-of-type { margin-top: 0; }

/* === Footer SNS アイコン === */
.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.3s, color 0.3s;
}
.footer__sns a:hover { background: rgba(255,255,255,0.18); color: #fff; }
.footer__sns svg { width: 18px; height: 18px; }

/* === Philosophy 4ブロック === */
.philosophy-blocks { background: var(--c-cream); padding: clamp(72px, 10vw, 120px) 0; }
.philosophy-blocks__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; margin-top: 48px; }
.philosophy-block { background: var(--c-white); border-radius: 8px; padding: 36px 32px; border-left: 3px solid var(--c-accent); position: relative; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s; }
.philosophy-block:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.philosophy-block__num { font-family: var(--f-accent); font-size: 1.6rem; font-weight: 600; color: var(--c-accent); letter-spacing: 0.04em; margin-bottom: 8px; opacity: 0.85; }
.philosophy-block__title { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--c-primary-dark); letter-spacing: 0.04em; margin-bottom: 14px; }
.philosophy-block__text { font-size: 0.92rem; color: var(--c-text); line-height: 2; font-weight: 500; }
@media (max-width: 768px) { .philosophy-blocks__grid { grid-template-columns: 1fr; gap: 20px; } .philosophy-block { padding: 28px 22px; } }

/* === Blog card hover 演出（推奨1） === */
.blog-list__cat { transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; }
.blog-list__cat:hover {
  background: rgba(63,107,61,0.10);
  color: var(--c-accent);
  border-color: rgba(63,107,61,0.3);
  transform: translateY(-1px);
}
.blog-list__cat.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

/* === SEC: REASONS-ENV (働く環境 / 採用視点 3カード) === */
.reasons-env {
  background: var(--c-cream);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
/* ※ 2026-05-16 重複解消（CEOFB）: HTMLの .stitle__en "Work Here" と背景装飾が二重表示になっていたため、背景装飾側を無効化 */
.reasons-env::before {
  content: none;
}
.reasons-env__lead {
  text-align: center;
  color: var(--c-text-light);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 0.95rem;
  line-height: 2;
  font-weight: 500;
}
.reasons-env__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reasons-env__card {
  background: #fff;
  border: 1px solid rgba(91,140,87,0.08);
  border-radius: 12px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.reasons-env__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(91,140,87,0.10);
}
.reasons-env__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--c-accent);
}
.reasons-env__icon svg {
  width: 100%;
  height: 100%;
}
.reasons-env__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.reasons-env__catch {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.reasons-env__desc {
  font-size: 0.86rem;
  color: var(--c-text);
  line-height: 1.95;
  font-weight: 500;
  margin-bottom: 18px;
}
.reasons-env__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.reasons-env__list li {
  font-size: 0.82rem;
  color: var(--c-text);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}
.reasons-env__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
}
.reasons-env__salary {
  background: linear-gradient(135deg, rgba(63,107,61,0.06), rgba(143,181,113,0.04));
  border: 1px solid rgba(63,107,61,0.18);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.reasons-env__salary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.reasons-env__salary-row:last-of-type {
  margin-bottom: 0;
}
.reasons-env__salary-label {
  color: var(--c-text-light);
  font-weight: 500;
}
.reasons-env__salary-value {
  font-family: var(--f-display);
  color: var(--c-primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}
.reasons-env__salary-note {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  margin-top: 8px;
  line-height: 1.6;
}
.reasons-env__manual {
  margin-bottom: 20px;
  text-align: center;
}
.reasons-env__manual-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-dark) 100%);
  border: 1px dashed rgba(91,140,87,0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: var(--c-primary);
}
.reasons-env__manual-frame svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}
.reasons-env__manual-frame-label {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  letter-spacing: 0.06em;
}
.reasons-env__manual-caption {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}
.reasons-env__quote {
  background: rgba(91,140,87,0.04);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.reasons-env__quote-text {
  font-family: var(--f-display);
  font-size: 0.86rem;
  color: var(--c-text);
  line-height: 1.85;
  margin-bottom: 8px;
  font-weight: 500;
}
.reasons-env__quote-author {
  font-size: 0.72rem;
  color: var(--c-text-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.reasons-env__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reasons-env__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s, gap 0.3s;
}
.reasons-env__link:hover {
  color: var(--c-accent);
  gap: 10px;
}
.reasons-env__link span {
  font-family: var(--f-accent);
  font-size: 1.1em;
}

@media (max-width: 1024px) {
  .reasons-env__grid { grid-template-columns: 1fr; gap: 20px; }
  .reasons-env__card { padding: 30px 24px; }
}

/* === SEC: REASONS-SVC (サービスの特徴 / 利用者視点 3カード) === */
.reasons-svc {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
}
.reasons-svc::before {
  content: 'For You';
  position: absolute;
  top: -20px;
  right: 5%;
  font-family: var(--f-accent);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 400;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}
.reasons-svc__lead {
  text-align: center;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 0.95rem;
  line-height: 2;
  font-weight: 500;
}
.reasons-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reasons-svc__card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 22px;
  text-align: center;
  transition: background 0.3s, transform 0.4s var(--ease-out-expo);
}
.reasons-svc__card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.reasons-svc__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: rgba(255,255,255,0.9);
}
.reasons-svc__icon svg {
  width: 100%;
  height: 100%;
}
.reasons-svc__num {
  font-family: var(--f-accent);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.reasons-svc__num span {
  font-size: 0.45em;
  font-family: var(--f-body);
  font-weight: 500;
  margin-left: 2px;
}
.reasons-svc__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.reasons-svc__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  font-weight: 500;
}

@media (max-width: 1024px) { .reasons-svc__grid { grid-template-columns: 1fr; } }


/* ============================================================
   2026-05-05 大規模再構成 (FB-1〜FB-6)
   - FB-3: CTAボタン全面再デザイン
   - FB-4: スクロールヒント削除
   - FB-5: Instagram固定+marquee構成
   - FB-6: スタッフページの動き
   - FB-1: HERO採用最優先構成
   - FB-2: recruit逆訴求 + 代表メッセージ
   ============================================================ */

/* === FB-3: CTAボタン再デザイン === */
/* プライマリ: 葉色グラデ・パディング広め・矢印アイコン・微浮きホバー */
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  padding: 18px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(91,140,87,0.28);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), background 0.3s;
  border: none;
}
.btn--primary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  font-size: 0.8em;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, #2C463A 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(91,140,87,0.42);
}
.btn--primary:hover span { transform: translateX(3px); }

/* セカンダリ: 透明背景+葉色ボーダー */
.btn--outline {
  background: transparent;
  color: var(--c-primary-dark);
  border: 1.5px solid var(--c-primary);
  padding: 18px 34px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  backdrop-filter: none;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out-expo);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* HERO内のoutlineは白背景文脈なので維持（透過 + 白ボーダー） */
.hero__ctas .btn--outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}
.hero__ctas .btn--outline:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* page-cta（緑帯背景）の中はもう一段反転 */
.page-cta .btn--primary {
  background: #fff;
  color: var(--c-primary-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.page-cta .btn--primary span {
  background: var(--c-primary);
  color: #fff;
}
.page-cta .btn--primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.page-cta .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.page-cta .btn--outline:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* recruit__cta（採用ヘッダー帯）の調整 */
.recruit__cta {
  padding: 18px 44px;
  font-size: 1.02rem;
  background: linear-gradient(135deg, var(--c-accent) 0%, #2D5230 100%);
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(63,107,61,0.42);
}
.recruit__cta:hover {
  background: linear-gradient(135deg, #2D5230 0%, #1F4A1F 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(63,107,61,0.52);
}

/* recruit-banner__btn（フッター手前のバナー） */
.recruit-banner__btn {
  padding: 14px 36px;
  font-size: 0.95rem;
}
.recruit-banner__btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.8em;
  margin-left: 6px;
  transition: transform 0.3s var(--ease-out-expo);
}
.recruit-banner__btn:hover span { transform: translateX(3px); }

/* instagram__btn（IG専用、SNS色は維持） */
.instagram__btn {
  padding: 14px 32px;
  font-size: 0.92rem;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(221,42,123,0.28);
}
.instagram__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(221,42,123,0.42);
}

/* LINE CTA (LINE緑) */
.btn--line {
  background: #06C755;
  color: #fff;
  padding: 18px 34px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(6,199,85,0.32);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s;
}
.btn--line:hover {
  background: #04A647;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6,199,85,0.45);
}
.btn--line svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* === FB-4: スクロールヒント完全非表示（保険） === */
.hero__scroll, .scroll-hint, .scroll-down { display: none !important; }


/* === HERO レガシーCSS削除済み (2026-05-05 脱AI化リニューアル) ===
   旧 .hero__recruit-card / .hero__sidebar / .hero__badges 関連は新HERO構成への移行に伴い完全削除。
   新HEROのスタイルは上部の "=== HERO (脱AI化) ===" セクションに集約。 */


/* === Instagram 固定投稿（拡大）+ 自動+手動横スクロールフィード === */
.instagram__split {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

/* 固定投稿: 画像直配信・正方形（拡大） */
.instagram__featured {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.instagram__featured a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.instagram__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}
.instagram__featured a:hover img { transform: scale(1.04); }
.instagram__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram__featured a:hover .instagram__featured-overlay { opacity: 1; }
.instagram__featured-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 手動スクロールフィード（marquee廃止） */
.instagram__feed {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) #F2F4ED;
  cursor: grab;
  border-radius: 4px;
  user-select: none;
}
.instagram__feed.is-dragging { cursor: grabbing; }
.instagram__feed::-webkit-scrollbar { height: 6px; }
.instagram__feed::-webkit-scrollbar-track { background: #F2F4ED; border-radius: 3px; }
.instagram__feed::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 3px; }
.instagram__feed::-webkit-scrollbar-thumb:hover { background: var(--c-accent-light); }
.instagram__feed-track {
  display: flex;
  gap: 16px;
  padding: 8px 0 16px;
  width: max-content;
}
.instagram__feed-tile {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  background: #F2F4ED;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.instagram__feed-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--ease-out-expo);
  pointer-events: none; /* ドラッグ中の画像ドラッグを抑制 */
}
.instagram__feed-tile:hover img { transform: scale(1.05); }

@media (max-width: 1024px) {
  .instagram__split { grid-template-columns: 1fr; gap: 28px; }
  .instagram__featured { max-width: 360px; }
}
@media (max-width: 768px) {
  .instagram__feed-tile { width: 160px; height: 160px; }
}


/* === FB-6: スタッフページの動き（立花畑準拠） === */

/* 番号バッジ（01〜05） */
.staff-card { position: relative; }
.staff-card__number {
  position: absolute;
  top: -16px;
  left: 16px;
  z-index: 5;
  font-family: var(--f-accent);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--c-accent);
  line-height: 1;
  background: var(--c-cream);
  padding: 0 10px;
  letter-spacing: 0.02em;
}

/* スタッフカードのホバー強化 */
.staff-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(91,140,87,0.18);
}
.staff-card__photo {
  overflow: hidden;
  position: relative;
}
.staff-card__photo img {
  transition: transform 0.7s var(--ease-out-expo);
}
.staff-card:hover .staff-card__photo img {
  transform: scale(1.06);
}

/* プロフィールページの写真ホバー */
.profile-hero__photo,
.profile-photo-block {
  overflow: hidden;
}
.profile-hero__photo img,
.profile-photo-block img {
  transition: transform 0.7s var(--ease-out-expo);
}
.profile-hero__photo:hover img,
.profile-photo-block:hover img {
  transform: scale(1.04);
}

/* スタッフ専用のフェードインエンハンス */
.staff-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.staff-fade.in {
  opacity: 1;
  transform: translateY(0);
}


/* === FB-2: recruit逆訴求 + 代表メッセージ === */
.recruit-reverse {
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-dark) 100%);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.recruit-reverse__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.recruit-reverse__myth {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--c-text-light);
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.recruit-reverse__myth::before,
.recruit-reverse__myth::after {
  content: '"';
  font-family: var(--f-accent);
  font-size: 2.2em;
  color: var(--c-accent);
  opacity: 0.55;
  vertical-align: -0.3em;
  margin: 0 0.15em;
}
.recruit-reverse__strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--c-accent);
  opacity: 0.7;
}
.recruit-reverse__arrow {
  display: block;
  margin: 28px auto;
  width: 32px;
  height: 32px;
  color: var(--c-primary);
}
.recruit-reverse__answer {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.recruit-reverse__answer em {
  font-style: normal;
  background: linear-gradient(transparent 65%, rgba(63,107,61,0.28) 65%);
  padding: 0 0.1em;
}

.recruit-message {
  background: var(--c-white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.recruit-message__inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.recruit-message__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-cream-dark), #E5EBD8);
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.recruit-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-message__body {
  position: relative;
}
.recruit-message__role {
  font-size: 0.82rem;
  color: var(--c-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.recruit-message__name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.recruit-message__text {
  font-size: 0.95rem;
  line-height: 2.05;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.recruit-message__text p { margin-bottom: 16px; }
.recruit-message__text p:last-child { margin-bottom: 0; }
.recruit-message__sample-tag {
  position: absolute;
  top: -32px;
  right: 0;
  background: rgba(63,107,61,0.12);
  color: var(--c-accent);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .recruit-message__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .recruit-message__photo { margin: 0 auto; width: 180px; height: 180px; }
  .recruit-message__sample-tag { position: static; display: inline-block; margin-bottom: 12px; }
}

/* === Chatbot風 FAQウィジェット（右下フローティング） === */
.faq-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  font-family: var(--f-body);
}
.faq-widget__toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(91,140,87, 0.32);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
/* パルスアニメーション（ヒント表示中だけ点滅で誘目） */
.faq-widget__toggle.is-pulsing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  opacity: 0;
  pointer-events: none;
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-widget__toggle.is-pulsing::before { animation: none; }
}

/* === ヒント吹き出し（よくある質問はこちら） === */
.faq-widget__hint {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 36px 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 949;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}
.faq-widget__hint.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.faq-widget__hint.is-scrolling {
  opacity: 0;
  pointer-events: none;
}
.faq-widget__hint-arrow {
  position: absolute;
  bottom: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
}
.faq-widget__hint-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.faq-widget__hint-close:hover { color: #333; background: #f5f5f5; }
@media (max-width: 480px) {
  .faq-widget__hint { bottom: 78px; right: 16px; font-size: 0.8rem; }
}
.faq-widget__toggle:hover {
  transform: translateY(-3px);
  background: var(--c-primary-dark);
  box-shadow: 0 12px 28px rgba(91,140,87, 0.42);
}
.faq-widget__toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
/* ※ 2026-05-16 旧SVGアイコン差し替え後の '?' 文字スタイル（シンプル・崩れなし） */
.faq-widget__toggle-q {
  font-family: var(--f-accent, 'Cormorant Garamond', serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
}
.faq-widget.is-open .faq-widget__toggle {
  display: none;
}
.faq-widget__panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: faqSlideUp 0.3s var(--ease-out-expo);
}
@keyframes faqSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-widget__header {
  background: var(--c-primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-widget__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.faq-widget__close:hover { opacity: 1; }
/* === チャット領域 === */
.faq-widget__chat {
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  background: #FAFAFA;
}
.faq-bubble {
  margin-bottom: 12px;
  display: flex;
  animation: bubbleIn 0.3s ease;
}
.faq-bubble--bot { justify-content: flex-start; }
.faq-bubble--user { justify-content: flex-end; }
.faq-bubble__content {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-line;
  word-break: break-word;
}
.faq-bubble--bot .faq-bubble__content {
  background: var(--c-primary);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.faq-bubble--user .faq-bubble__content {
  background: #fff;
  color: var(--c-text);
  border: 1px solid #E5E5E5;
  border-bottom-right-radius: 4px;
}
.faq-bubble__link {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s;
}
.faq-bubble__link:hover { background: rgba(255, 255, 255, 0.3); }

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

/* === 選択肢ボタン群 === */
.faq-options {
  padding: 12px 16px;
  border-top: 1px solid #E5E5E5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  min-height: 0;
}
.faq-options:empty {
  display: none;
}
.faq-options__btn {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 100px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--f-body);
  transition: background 0.2s, color 0.2s;
}
.faq-options__btn:hover {
  background: var(--c-primary);
  color: #fff;
}

/* === typing インジケーター === */
.faq-typing {
  display: flex;
  gap: 4px;
  padding: 4px 0;
  align-items: center;
}
.faq-typing__dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: faqTyping 1.2s infinite;
}
.faq-typing__dot:nth-child(2) { animation-delay: 0.2s; }
.faq-typing__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes faqTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .faq-widget { bottom: 16px; right: 16px; }
  .faq-widget__toggle { width: 52px; height: 52px; }
  .faq-widget__toggle svg { width: 24px; height: 24px; }
  .faq-widget__panel { width: 320px; }
  .faq-widget__chat { max-height: 280px; }
}

/* === Reverse Pitch（採用ページ：常識破壊 BEFORE/AFTER） === */
.reverse-pitch {
  padding: clamp(72px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.reverse-pitch__title {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.reverse-pitch__title-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 80px);
  color: #E5E5E5;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.reverse-pitch__title-ja {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--c-text);
  margin-top: -32px;
  position: relative;
  letter-spacing: 0.06em;
}

.reverse-pitch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.reverse-pitch__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.reverse-pitch__card--before { background: #F5F5F5; }
.reverse-pitch__card--after { background: #fff; }

.reverse-pitch__label {
  padding: 24px 28px 16px;
}
.reverse-pitch__label-tag {
  display: inline-block;
  background: #B0B0B0;
  color: #fff;
  padding: 4px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 8px;
  font-family: var(--f-body);
}
.reverse-pitch__label-tag--after { background: var(--c-primary); }
.reverse-pitch__label h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.reverse-pitch__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.reverse-pitch__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reverse-pitch__card--before .reverse-pitch__photo img {
  filter: grayscale(0.4) brightness(0.92);
}
.reverse-pitch__photo-note {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.reverse-pitch__list {
  padding: 24px 28px 32px;
  list-style: none;
  margin: 0;
}
.reverse-pitch__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
  font-family: var(--f-body);
}
.reverse-pitch__list li:last-child { margin-bottom: 0; }
.reverse-pitch__list--cross li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  color: #B0B0B0;
  font-weight: 700;
}
.reverse-pitch__list--cross li {
  color: #888;
  text-decoration: line-through;
  text-decoration-color: rgba(176, 176, 176, 0.5);
}
.reverse-pitch__list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-primary);
  font-weight: 700;
}

.reverse-pitch__bridge {
  text-align: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--c-text-light);
  letter-spacing: 0.04em;
}
.reverse-pitch__cta {
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 14px 36px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.reverse-pitch__cta:hover {
  transform: translateY(-2px);
  background: var(--c-primary-dark);
  box-shadow: 0 8px 24px rgba(91,140,87, 0.3);
}

@media (max-width: 768px) {
  .reverse-pitch__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .reverse-pitch__title-ja { margin-top: -22px; }
}

/* === Contact: 3つの問い合わせ方法 === */
.contact-options {
  padding: clamp(72px, 10vw, 100px) 0 60px;
  background: #fff;
}
.contact-options__lead {
  text-align: center;
  font-size: 1rem;
  color: var(--c-text-light);
  margin-bottom: 48px;
  line-height: 1.9;
}
.contact-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-options__card {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: 12px;
  padding: 36px 28px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-options__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: 0 12px 32px rgba(91,140,87, 0.15);
}
.contact-options__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-options__card--line .contact-options__icon { background: #06C755; }
.contact-options__card--phone .contact-options__icon { background: var(--c-accent); }
.contact-options__icon svg {
  width: 28px;
  height: 28px;
}
.contact-options__card h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.contact-options__card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--c-text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}
.contact-options__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-primary);
  letter-spacing: 0.03em;
}

/* === Contact Form === */
.contact-form {
  padding: 60px 0 100px;
  background: var(--c-cream);
}
.contact-form__body {
  max-width: 640px;
  margin: 48px auto 0;
}
.contact-form__row {
  margin-bottom: 24px;
}
.contact-form__row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.required {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}
.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--c-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.contact-form__row textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__row input:focus,
.contact-form__row select:focus,
.contact-form__row textarea:focus {
  border-color: var(--c-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(91,140,87, 0.15);
}
.contact-form__submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: var(--f-body);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-form__submit:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,140,87, 0.3);
}

@media (max-width: 768px) {
  .contact-options__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* === FB-2026-05-16: CTAボタン共通アイコン（▶ Unicode play-triangle） ===
   全CTAの矢印を Unicode ▶ (U+25B6) で描画。
   clip-path方式から変更：「微妙な三角」を解消し、見慣れた再生ボタン形状で統一。
   currentColor で色追従、emベースでサイズ追従。 */
.btn-arrow {
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 6px;
  vertical-align: middle;
  background-color: transparent;
  clip-path: none;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
  font-size: 0.75em;
  line-height: 1;
  color: currentColor;
  font-variant-emoji: text;
  font-family: -apple-system, "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
.btn-arrow::before {
  content: "\25B6";
  font-variant-emoji: text;
}
/* 親リンクhover時に少し前進 */
a:hover > .btn-arrow,
button:hover > .btn-arrow,
a:hover .btn-arrow,
button:hover .btn-arrow {
  transform: translateX(2px);
}
/* 既存のspan>&rarr;互換: spanがbtn-arrowでなくても直近のspan化された矢印箇所に適用するための
   フォールバックは設けず、HTML側を全置換する方針 */

/* ============================================
   訪問看護について（services.html 拡張）
   ============================================ */

/* 訪問看護とは（段落形式・装飾なし） */
.about-nursing {
  padding: 100px 0 80px;
  background: #fff;
}
.about-nursing__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-nursing__lead {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 2.1;
  color: var(--c-primary-dark);
  margin: 32px 0 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.about-nursing__body p {
  font-size: 1rem;
  line-height: 2.05;
  margin-bottom: 22px;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.about-nursing__body p:last-child {
  margin-bottom: 0;
}

/* 訪問看護をご利用頂ける方（縦リスト型・カード反復なし） */
.eligibility {
  padding: 80px 0;
  background: var(--c-cream);
}
.eligibility__inner {
  max-width: 760px;
  margin: 0 auto;
}
.eligibility__lead {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--c-text);
  text-align: center;
  margin: 24px 0 16px;
  letter-spacing: 0.02em;
}
.eligibility__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-border);
}
.eligibility__list li {
  border-bottom: 1px solid var(--c-border);
  padding: 28px 4px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
.eligibility__list h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0;
  letter-spacing: 0.04em;
}
.eligibility__list p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--c-text-light);
  margin: 0;
}
@media (max-width: 768px) {
  .eligibility__list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
}

/* 主なサービス13項目（2列グリッド・テキストリスト型） */
.detail-services {
  padding: 60px 0 80px;
  background: #fff;
}
.detail-services__intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--c-text-light);
  max-width: 720px;
  margin: 24px auto 0;
}
.detail-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  list-style: none;
  max-width: 880px;
  margin: 40px auto 0;
  padding: 0;
  border-top: 1px solid var(--c-border);
}
.detail-services__list li {
  padding: 18px 12px 18px 4px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-services__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .detail-services__list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* =================================================================
   HERO PARALLAX ANIMATION（2026-05-27 設置 / GSAPで4秒・1度きり再生）
   - 設計: clients/いろは/01_設計書/HEROアニメーション設計_2026-05-27.md
   - 実装spec: ~/projects/clients/active/iroha/_internal/animation-spec.md
   - 旧 test-01.png 単独背景は L6（morning-sky）に置換
   - hero-split は2分割grid。アニメは絶対配置で左右両方にまたがる地レイヤー扱い
   ================================================================= */

/* .hero-split 自体の背景はフォールバックの淡緑（L6ロード前用） */
.hero-split {
  background: #E8F0E0;
}

/* 6レイヤー配置コンテナ（左右grid両方を覆う） */
.hero__animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* hero-fixed / hero-slider__track をアニメ層より前面に */
.hero-split > .hero-fixed,
.hero-split > .hero-slider__track {
  position: relative;
  z-index: 2;
}

.hero__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero__layer--l1 { z-index: 60; background-image: url('../../images/ai-generated/animation/layer-01_foreground-grass-left.png'); }
.hero__layer--l2 { z-index: 55; background-image: url('../../images/ai-generated/animation/layer-02_foreground-grass-right.png'); }
.hero__layer--l3 { z-index: 40; background-image: url('../../images/ai-generated/animation/layer-03_middle-grass.png'); background-position: center bottom; }
/* L4（光線）初期opacity:0.15（JS側のgsap.setと整合）→ アニメで1.0へ拡散 */
.hero__layer--l4 { z-index: 30; background-image: url('../../images/ai-generated/animation/layer-04_sunbeam.png'); opacity: 0.15; }
.hero__layer--l5 { z-index: 20; background-image: url('../../images/ai-generated/animation/layer-05_distant-trees.png'); background-position: center center; }
.hero__layer--l6 { z-index: 10; background-image: url('../../images/ai-generated/animation/layer-06_morning-sky.png'); background-position: center center; }

/* prefers-reduced-motion: アニメ完了状態を即適用（JS側でも対応・二重防御） */
@media (prefers-reduced-motion: reduce) {
  .hero__layer { transition: none; animation: none; }
  .hero__layer--l4 { opacity: 1 !important; }
  .hero__animation-restart { display: none !important; }
}

/* モバイル軽量化: L4（光のレイヤー）は省略可。負荷が高い端末向けに不透明度低めで残す */
@media (max-width: 768px) {
  .hero__layer--l4 { opacity: 0.15; } /* JS初期値と整合（アニメで1.0へ） */
}

/* 「もう一度見る」リスタートボタン --------------------------------------- */
.hero__animation-restart {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 70; /* 全レイヤーより前面 */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--f-display, inherit);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(63, 107, 61, 0.78); /* #3F6B3D 78% */
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.hero__animation-restart::before {
  content: '↻';
  font-size: 0.95rem;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}
.hero__animation-restart:hover,
.hero__animation-restart:focus-visible {
  background: rgba(63, 107, 61, 1);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  outline: none;
}
.hero__animation-restart:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 4px 14px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero__animation-restart {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    font-size: 0.72rem;
  }
}
/* === HERO PARALLAX ここまで === */

