/* =====================================================
   ハートフル訪問看護ステーション 採用HP — 改善版 v2
   スマホファースト（375px基準）
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
svg { display: block; }

/* ── カラー：あたたかい医療グリーン × クリーム ── */
:root {
  --green:       #3A8A6E;
  --green-dark:  #2C6A54;
  --green-deep:  #234F40;
  --green-soft:  #EAF4EF;
  --green-mist:  #F3F9F6;
  --accent:      #E78A47;   /* 温かみのあるコーラルオレンジ（CTA） */
  --accent-dark: #CF7331;
  --accent-soft: #FBEDDF;
  --text:        #38423E;   /* 真っ黒を避け、やわらかい墨色 */
  --text-light:  #6E7975;
  --cream:       #FBF7F1;   /* 冷たい青灰でなく温かいクリーム */
  --cream-deep:  #F5EEE3;
  --line:        #E7E0D4;
  --white:       #FFFFFF;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 6px 24px rgba(45, 80, 65, 0.07);
  --shadow-sm:   0 2px 10px rgba(45, 80, 65, 0.06);
  --shadow-lg:   0 16px 44px rgba(45, 80, 65, 0.12);
  --maxw:        1080px;
}

/* ── コンテナ・セクション ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green-deep); color: #fff; }

.section-header { text-align: center; margin-bottom: 32px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.bg-green .section-label { color: #9FD3BE; }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--green-deep);
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
.bg-green .section-title { color: #fff; }
.section-desc { margin-top: 14px; color: var(--text-light); font-size: 0.92rem; }

/* ── アイコン共通 ── */
.ic { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.7;
  fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── ボタン ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s, background .2s, box-shadow .2s;
  white-space: nowrap; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn .ic { width: 18px; height: 18px; stroke-width: 2; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(231, 138, 71, 0.32); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.18); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(45,80,65,.06); }
.header-inner {
  display: flex; align-items: center; gap: 20px; height: 62px;
  padding: 0 18px; max-width: var(--maxw); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.logo-mark { width: auto; height: 36px; flex-shrink: 0; object-fit: contain; }
.logo-text { font-size: 0.95rem; line-height: 1.15; color: #787c8b; }
.logo-sub { display: block; font-size: 0.66rem; font-weight: 500; color: #787c8b; letter-spacing: .02em; }
.nav { display: none; gap: 22px; margin-left: auto; }
.nav a { font-size: 0.86rem; font-weight: 500; color: var(--text-light); transition: color .2s; white-space: nowrap; }
.nav a:hover { color: var(--green); }
.header-actions { display: none; align-items: center; gap: 12px; flex-shrink: 0; }
.header-tel { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; white-space: nowrap; }
.header-tel .num { font-family: 'Noto Serif JP', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.header-tel .hrs { font-size: 0.62rem; color: var(--text-light); }

.nav-toggle { margin-left: auto; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 62px; left: 0; right: 0; background: #fff; z-index: 99;
  padding: 18px 20px 24px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-115%); transition: transform .3s ease; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 500; font-size: 0.95rem; }
.mobile-nav .btn { margin-top: 14px; }

/* ── HERO BRAND ── */
.hero-brand {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 26px;
}
.hero-logo {
  width: auto; height: 56px; flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.hero-brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem; font-weight: 700; color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  line-height: 1.2;
}
@media (min-width: 600px) {
  .hero-logo { height: 68px; }
  .hero-brand-name { font-size: 2.1rem; }
}
@media (min-width: 900px) {
  .hero-logo { height: 80px; }
  .hero-brand-name { font-size: 2.6rem; }
}

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 96px 20px 56px;
  background: linear-gradient(160deg, #3A8A6E 0%, #2F7A60 48%, #285E4C 100%); color: #fff; }
.hero::after { content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(231,138,71,.18) 0%, transparent 55%),
              radial-gradient(90% 60% at 10% 100%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none; }
.hero-inner { position: relative; max-width: 640px; margin: 0 auto; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32);
  border-radius: 50px; padding: 7px 16px; font-size: 0.76rem; font-weight: 700; margin-bottom: 22px; }
.hero-badge .ic { width: 15px; height: 15px; stroke: #FCD9B0; }
.hero-title { font-family: 'Noto Serif JP', serif; font-size: 2.05rem; font-weight: 700;
  line-height: 1.45; margin-bottom: 18px; letter-spacing: .01em; text-wrap: balance; }
.hero-title em { font-style: normal; color: #FBD89E; }
.hero-sub { font-size: 1rem; line-height: 1.9; margin-bottom: 28px; color: rgba(255,255,255,.92); }
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; margin-bottom: 16px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
  font-size: 0.76rem; color: rgba(255,255,255,.85); margin-bottom: 26px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 5px; }
.hero-trust .ic { width: 14px; height: 14px; stroke: #9FD3BE; stroke-width: 2.4; }
.hero-photo { position: relative; margin-top: 8px; }
.hero-photo image-slot { width: 100%; height: 220px; box-shadow: var(--shadow-lg); }
.hero-img { width: 100%; height: 220px; object-fit: cover; object-position: center 35%;
  border-radius: 18px; box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,.7); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.tag { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px; padding: 5px 14px; font-size: 0.78rem; font-weight: 500; }

/* ── NUMBERS ── */
.numbers { padding: 0; margin-top: -28px; position: relative; z-index: 2; }
.numbers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); }
.number-card { padding: 22px 14px; text-align: center; background: #fff; }
.number-val { display: block; font-family: 'Noto Serif JP', serif; font-size: 2rem;
  font-weight: 700; color: var(--green); line-height: 1; }
.number-val small { font-size: 0.85rem; margin-left: 2px; }
.number-label { font-size: 0.74rem; color: var(--text-light); margin-top: 8px; display: block; line-height: 1.5; }

/* ── 社長メッセージ（PRESIDENT） ── */
.president { background:
  linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%); }
.president-inner { display: grid; gap: 28px; max-width: 980px; margin: 0 auto; }
.president-photo { margin: 0; }
.president-photo img { width: 100%; max-width: 320px; margin: 0 auto; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: block; aspect-ratio: 4/4.2; object-fit: cover; object-position: center top; }
.president-cap { text-align: center; margin-top: 14px; }
.president-cap .role { font-size: 0.78rem; font-weight: 700; color: var(--green); letter-spacing: .04em; }
.president-cap .pname { font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700; color: var(--green-deep); margin-top: 2px; }
.president-msg { display: flex; flex-direction: column; }
.president-lead { font-family: 'Noto Serif JP', serif; font-size: 1.4rem; font-weight: 700;
  line-height: 1.7; color: var(--green-deep); margin-bottom: 22px; text-wrap: pretty;
  border-left: 3px solid var(--accent); padding-left: 16px; }
.president-msg p.body { font-size: 0.96rem; color: var(--text); line-height: 2; margin-bottom: 16px; }
.president-msg p.body strong { color: var(--green-dark); font-weight: 700;
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%); }
.president-sign { margin-top: 10px; text-align: right; }
.president-sign .org { font-size: 0.8rem; color: var(--text-light); }
.president-sign .signname { font-family: 'Noto Serif JP', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--green-deep); margin-top: 2px; }

/* ── 募集背景（リード） ── */
.intro { text-align: center; }
.intro-lead { font-family: 'Noto Serif JP', serif; font-size: 1.3rem; line-height: 1.85;
  color: var(--green-deep); margin: 0 auto 18px; max-width: 620px; font-weight: 600; text-wrap: pretty; }
.intro-body { font-size: 0.95rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ── 共通カードグリッド ── */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line); }

/* ── APPEAL ── */
.appeal-grid { display: grid; gap: 18px; }
.appeal-card { background: #fff; border-radius: var(--radius); padding: 30px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.appeal-num { display: none; }
.appeal-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft);
  color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.appeal-icon .ic { width: 28px; height: 28px; }
.appeal-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 11px; color: var(--green-deep); line-height: 1.5; }
.appeal-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }
.appeal-card strong { color: var(--green-dark); font-weight: 700;
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%); }

/* 写真背景カード（働く魅力01） */
.appeal-photo { position: relative; overflow: hidden; isolation: isolate; }
.appeal-photo::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.74)), url('assets/appeal-salary.png');
  background-size: cover; background-position: center; }
.appeal-photo2::before {
  background-image: linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.74)), url('assets/appeal-mentor.png'); }
.appeal-photo3::before {
  background-image: linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.74)), url('assets/appeal-area.png'); }
.appeal-photo h3 { color: var(--green-deep); text-shadow: 0 1px 10px rgba(255,255,255,.9); }
.appeal-photo p { color: var(--text); font-weight: 500; text-shadow: 0 1px 8px rgba(255,255,255,.85); }
.appeal-photo .appeal-num { color: rgba(255,255,255,.85); text-shadow: 0 2px 8px rgba(45,80,65,.25); }

/* ── JOBS ── */
.jobs-grid { display: grid; gap: 18px; }
.job-card { background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; }
.job-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.job-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft);
  color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.job-icon .ic { width: 26px; height: 26px; }
.job-htext h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.job-type { display: inline-block; margin-top: 4px; background: var(--accent-soft); color: var(--accent-dark);
  border-radius: 50px; padding: 2px 10px; font-size: 0.7rem; font-weight: 700; }
.job-salary { background: var(--green-mist); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 14px; }
.job-salary .s-label { font-size: 0.7rem; font-weight: 700; color: var(--text-light); letter-spacing: .04em; }
.job-salary .s-val { font-family: 'Noto Serif JP', serif; font-size: 1.32rem; font-weight: 700; color: var(--green-dark); line-height: 1.3; }
.job-salary .s-val span { font-size: 0.82rem; font-family: 'Noto Sans JP'; color: var(--text-light); font-weight: 500; }
.job-salary .s-part { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.job-detail { list-style: none; margin-bottom: 18px; display: grid; gap: 9px; }
.job-detail li { font-size: 0.86rem; color: var(--text-light); display: flex; gap: 10px; align-items: flex-start; }
.job-detail .label { flex-shrink: 0; width: 46px; color: var(--green-dark); font-size: 0.76rem; font-weight: 700; padding-top: 1px; }
.job-card .btn { margin-top: auto; }
.jobs-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 22px; }

/* ── 福利厚生（BENEFITS） ── */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.benefit { background: #fff; border-radius: var(--radius-sm); padding: 18px 16px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.benefit .ic { width: 24px; height: 24px; stroke: var(--green); margin-bottom: 10px; }
.benefit h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.benefit p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* ── TREATMENT（環境カード・横並び） ── */
.treatment-grid { display: grid; gap: 14px; }
.treat-item { display: flex; gap: 16px; align-items: flex-start; background: #fff;
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.treat-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.treat-icon .ic { width: 24px; height: 24px; }
.treat-item h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 6px; color: var(--green-deep); }
.treat-item p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }
.treat-item strong { color: var(--green-dark); }

/* ── SCHEDULE（タイムライン） ── */
.timeline { position: relative; padding-left: 74px; max-width: 640px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 40px; top: 4px; bottom: 4px; width: 2px; background: var(--green-soft); }
.timeline-item { position: relative; margin-bottom: 22px; }
.timeline-item:last-child { margin-bottom: 0; }
.time { position: absolute; left: -74px; width: 58px; text-align: right; font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem; font-weight: 700; color: var(--green); padding-top: 12px; }
.timeline-item::before { display: none; }
.timeline-body { background: #fff; border-radius: var(--radius); padding: 15px 18px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.timeline-body strong { font-size: 0.95rem; display: block; margin-bottom: 3px; color: var(--green-deep); }
.timeline-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }

/* ── VOICE ── */
.voice-grid { display: grid; gap: 18px; }
.voice-card { background: #ffe8e8; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid #f6d2d2; }
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.voice-card image-slot { width: 56px; height: 56px; flex-shrink: 0; }
.voice-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.voice-meta .voice-role { font-size: 0.92rem; font-weight: 700; color: var(--green-deep); }
.voice-meta .voice-prev { font-size: 0.76rem; color: var(--text-light); }
.voice-quote { font-family: 'Noto Serif JP', serif; font-size: 1.02rem; font-weight: 600;
  color: var(--green-dark); line-height: 1.6; margin-bottom: 10px; }
.voice-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; }
.voice-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 20px; }

/* ── 選考フロー（FLOW） ── */
.flow { display: grid; gap: 0; max-width: 640px; margin: 0 auto; }
.flow-step { display: flex; gap: 18px; position: relative; padding-bottom: 28px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step:not(:last-child)::before { content: ''; position: absolute; left: 23px; top: 48px; bottom: 0;
  width: 2px; background: var(--green-soft); }
.flow-num { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff;
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; box-shadow: 0 4px 12px rgba(58,138,110,.3); }
.flow-body { padding-top: 4px; }
.flow-body h4 { font-size: 1.02rem; font-weight: 700; color: var(--green-deep); margin-bottom: 5px; }
.flow-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }
.flow-body .flow-tip { display: inline-block; margin-top: 8px; font-size: 0.76rem; font-weight: 700;
  color: var(--accent-dark); background: var(--accent-soft); border-radius: 50px; padding: 3px 12px; }

/* ── ABOUT ── */
.about-lead { text-align: center; font-size: 0.96rem; line-height: 1.95; margin: 0 auto 30px;
  max-width: 660px; color: rgba(255,255,255,.92); }
.about-grid { display: grid; gap: 16px; }
.about-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 0; overflow: hidden; text-align: center; }
.about-photo { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-body { padding: 0 20px 24px; }
.about-icon { width: 56px; height: 56px; border-radius: 16px; margin: -28px auto 12px;
  background: var(--green); border: 4px solid var(--green-deep); position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.about-icon .ic { width: 26px; height: 26px; stroke: #DCF1E8; }
.about-card h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: 0.84rem; opacity: 0.85; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-size: 0.92rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--green-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; gap: 11px; align-items: flex-start; }
.faq-q::before { content: 'Q'; font-family: 'Noto Serif JP', serif; color: var(--green); font-weight: 700; flex-shrink: 0; }
.faq-item summary::after { content: ''; width: 11px; height: 11px; border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green); transform: rotate(45deg); flex-shrink: 0; margin-right: 4px; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 20px 20px 38px; font-size: 0.87rem; color: var(--text-light); line-height: 1.85; }

/* ── APPLY ── */
.apply-reassure { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 26px; }
.apply-reassure span { display: inline-flex; align-items: center; gap: 6px; background: var(--green-soft);
  color: var(--green-dark); border-radius: 50px; padding: 7px 15px; font-size: 0.8rem; font-weight: 700; }
.apply-reassure .ic { width: 15px; height: 15px; stroke-width: 2.6; }
.apply-methods { display: grid; gap: 14px; margin-bottom: 34px; }
.apply-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius);
  text-decoration: none; transition: transform .15s, box-shadow .2s; box-shadow: var(--shadow); }
.apply-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.apply-tel { background: var(--green); color: #fff; }
.apply-line { background: #06C755; color: #fff; }
.apply-card .a-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.apply-card .a-icon .ic { width: 26px; height: 26px; stroke: #fff; }
.apply-card .a-text { display: flex; flex-direction: column; line-height: 1.3; }
.apply-label { font-size: 0.76rem; font-weight: 700; opacity: 0.9; }
.apply-val { font-family: 'Noto Serif JP', serif; font-size: 1.32rem; font-weight: 700; }
.apply-note { font-size: 0.72rem; opacity: 0.82; margin-top: 1px; }

.apply-form { background: #fff; border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow); border: 1px solid var(--line); }
.apply-form h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--green-deep);
  font-family: 'Noto Serif JP', serif; }
.apply-form .form-lead { font-size: 0.84rem; color: var(--text-light); margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 7px; color: var(--green-deep); }
.required { background: var(--accent); color: #fff; font-size: 0.66rem; padding: 2px 7px;
  border-radius: 4px; margin-left: 7px; vertical-align: middle; font-weight: 700; }
.optional { color: var(--text-light); font-size: 0.7rem; margin-left: 7px; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; transition: border-color .2s, box-shadow .2s; appearance: none; background: var(--green-mist); color: var(--text); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px var(--green-soft); }
.form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233A8A6E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-note { text-align: center; font-size: 0.74rem; color: var(--text-light); margin-top: 14px; line-height: 1.6; }

/* ── ACCESS SPA VIEW ── */
.access-view-grid { display: grid; gap: 28px; }
.access-view-info { display: grid; gap: 16px; }
.access-view-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.access-view-card h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 700; color: var(--green-deep);
  margin-bottom: 8px;
}
.access-view-card h3 .ic { width: 18px; height: 18px; stroke: var(--green); }
.access-view-card p { font-size: 0.9rem; color: var(--text); line-height: 1.85; }
.access-view-card a { color: var(--green-dark); text-decoration: underline; }
.access-view-map iframe {
  width: 100%; height: 320px; border: 0;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
@media (min-width: 600px) {
  .access-view-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .access-view-map iframe { height: 420px; }
}

/* ── FOOTER ── */
.footer { background: #1E332B; color: rgba(255,255,255,.78); padding: 44px 0 96px; }
.footer-inner { display: grid; gap: 26px; margin-bottom: 26px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand .logo-mark { width: auto; height: 32px; }
.footer-info p { font-size: 0.84rem; line-height: 1.9; }
.footer-info a { color: #9FD3BE; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { font-size: 0.84rem; opacity: 0.78; }
.footer-nav a:hover { opacity: 1; color: #9FD3BE; }
.footer-copy { text-align: center; font-size: 0.74rem; opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }

/* ── FIXED CTA (mobile) ── */
.fixed-cta { position: fixed; bottom: 0; left: 0; right: 0; display: grid;
  grid-template-columns: 1fr 1.6fr; z-index: 98; box-shadow: 0 -4px 20px rgba(0,0,0,.12); }
.fixed-btn { padding: 15px 8px; text-align: center; font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; justify-content: center; gap: 7px; }
.fixed-btn .ic { width: 18px; height: 18px; stroke-width: 2.4; }
.fixed-tel { background: #fff; color: var(--green-dark); border-top: 1px solid var(--line); }
.fixed-apply { background: var(--accent); color: #fff; }

/* ── 会社案内（COMPANY） ── */
.company-block { max-width: 920px; margin: 0 auto; }
.ideology { display: grid; gap: 22px; align-items: center; background: var(--green-mist);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; margin-bottom: 28px; }
.ideology-logo { display: flex; justify-content: center; }
.ideology-logo img { width: 130px; height: auto; }
.ideology-text h3 { font-family: 'Noto Serif JP', serif; font-size: 1.2rem; color: var(--green-deep);
  margin-bottom: 14px; border-left: 3px solid var(--accent); padding-left: 14px; }
.ideology-text p { font-size: 0.93rem; color: var(--text); line-height: 1.95; margin-bottom: 10px; }
.ideology-rep { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 0.86rem; color: var(--text-light); }
.ideology-rep strong { color: var(--green-deep); font-family: 'Noto Serif JP', serif; font-size: 1rem; margin-left: 4px; }

.company-overview { display: grid; gap: 22px; margin-bottom: 28px; align-items: start; }
.company-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.company-photo figcaption { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 8px; }
.company-table { display: grid; }
.company-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 13px 2px;
  border-bottom: 1px solid var(--line); font-size: 0.9rem; align-items: start; }
.company-row:first-child { border-top: 1px solid var(--line); }
.company-row .k { font-weight: 700; color: var(--green-deep); }
.company-row .v { color: var(--text); line-height: 1.7; }
.company-row .v a { color: var(--green-dark); text-decoration: underline; }
.company-map { margin-top: 4px; }
.company-map iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.company-map .map-label { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem;
  font-weight: 700; color: var(--green); margin-bottom: 12px; }
.company-map .map-label .ic { width: 16px; height: 16px; }

/* ── 個人情報保護方針／会社案内（in-page view） ── */
.page-view { display: none; position: fixed; inset: 0; z-index: 200; background: var(--cream); overflow-y: auto; }
.page-view.open { display: block; }
.company-view .privacy-inner { max-width: 960px; }
.service-view .privacy-inner { max-width: 880px; }

/* 事業詳細ビュー（SERVICE SPA） */
.about-card.is-link { cursor: pointer; transition: transform .15s, box-shadow .2s; }
.about-card.is-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.about-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.82rem; font-weight: 700; color: #BFE6D6; }
.about-more .ic { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.4; }
.service-hero { margin: 0 0 4px; }
.service-hero img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.service-lead { font-family: 'Noto Serif JP', serif; font-size: 1.15rem; line-height: 1.85;
  color: var(--green-deep); margin: 18px 0 22px; font-weight: 600; text-wrap: pretty; }
.service-points { display: grid; gap: 14px; }
.service-point { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm); }
.service-point h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px;
  display: flex; align-items: center; gap: 9px; }
.service-point h3::before { content: ''; width: 9px; height: 9px; border-radius: 3px;
  background: var(--accent); flex-shrink: 0; }
.service-point p { font-size: 0.9rem; color: var(--text); line-height: 1.85; }
.service-point ul { list-style: none; margin-top: 8px; display: grid; gap: 7px; }
.service-point li { font-size: 0.88rem; color: var(--text-light); padding-left: 18px; position: relative; line-height: 1.7; }
.service-point li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green-soft); border: 1.5px solid var(--green); }
.service-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.service-cta .btn { width: 100%; }
.btn-line-green { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn-line-green:hover { background: var(--green-soft); }

/* サービス詳細CTAバンド */
.svc-cta-band { background: var(--green-mist); }
.svc-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.svc-cta-inner h2 { font-family: 'Noto Serif JP', serif; font-size: 1.3rem; color: var(--green-deep); margin-bottom: 10px; }
.svc-cta-inner p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-bottom: 22px; }
.svc-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 420px; padding: 18px 24px; border-radius: 14px; background: #fff;
  border: 2px solid var(--green); color: var(--green-deep); font-size: 1.02rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: transform .15s, box-shadow .2s, background .2s; box-shadow: var(--shadow-sm); }
.svc-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--green-soft); }
.svc-cta-btn .ic { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.4; }

/* 看多機ダイアグラム */
.kantaki-diagram { margin: 22px 0 8px; }
.kantaki-diagram img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* 料金表 */
.price-block { margin-top: 8px; }
.price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.92rem; margin-bottom: 12px; }
.price-table th, .price-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--green); color: #fff; font-weight: 700; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody th { font-weight: 700; color: var(--green-deep); background: var(--green-mist); }
.price-table td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text); }
.price-foot { font-size: 0.8rem; color: var(--text-light); line-height: 1.7; margin: 4px 0 18px; }
.price-foot span { display: block; }

/* 看多機CTA：ボタンを縦に並べる */
.svc-cta-btns { display: flex; flex-direction: column; gap: 14px; align-items: center; }

/* お悩みイラスト */
.home-worry { margin: 22px 0; }
.home-worry img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* 居室ギャラリー */
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0 8px; }
.room-gallery figure { margin: 0; }
.room-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px;
  box-shadow: var(--shadow-sm); display: block; }
.room-gallery figcaption { font-size: 0.8rem; color: var(--text-light); margin-top: 7px; text-align: center; }

/* 選ばれる理由（番号付き詳細） */
.reason-list { display: grid; gap: 16px; }
.reason-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm); }
.reason-item h4 { font-size: 0.98rem; font-weight: 700; color: var(--green-deep); line-height: 1.6;
  margin-bottom: 10px; padding-left: 38px; position: relative; min-height: 28px; }
.reason-item h4 .rnum { position: absolute; left: 0; top: -2px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: 'Noto Serif JP', serif; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; }
.reason-item p { font-size: 0.88rem; color: var(--text); line-height: 1.9; }
.notice-list { list-style: none; display: grid; gap: 8px; margin-top: 6px; }
.notice-list li { font-size: 0.88rem; color: var(--text); line-height: 1.7; padding-left: 22px; position: relative; }
.notice-list li::before { content: ''; position: absolute; left: 2px; top: 8px; width: 8px; height: 8px;
  border-radius: 2px; background: var(--green-soft); border: 1.5px solid var(--green); }

/* 体制スタッツ */
.svc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
.svc-stat { background: var(--green-mist); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 12px; text-align: center; }
.svc-stat .s-label { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 6px; }
.svc-stat .s-num { font-family: 'Noto Serif JP', serif; font-size: 1.7rem; font-weight: 700; color: var(--green-deep); line-height: 1; }
.svc-stat .s-unit { font-size: 0.8rem; font-weight: 700; color: var(--green); margin-left: 2px; }
.svc-stat .s-sub { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 5px; }
@media (max-width: 380px) { .svc-stats { grid-template-columns: 1fr 1fr; } }
.privacy-inner { max-width: 820px; margin: 0 auto; padding: 28px 20px 80px; }
.privacy-bar { position: sticky; top: 0; margin: -28px -20px 24px; padding: 14px 20px;
  background: rgba(251,247,241,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; }
.privacy-back { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1.5px solid var(--line);
  border-radius: 50px; padding: 9px 18px; font-size: 0.86rem; font-weight: 700; color: var(--green-dark); cursor: pointer; font-family: inherit; }
.privacy-back:hover { border-color: var(--green); }
.privacy-back .ic { width: 16px; height: 16px; stroke-width: 2.4; }
.privacy-bar .bar-title { font-size: 0.95rem; font-weight: 700; color: var(--green-deep); }
.privacy-title { font-family: 'Noto Serif JP', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 16px; }
.privacy-intro { font-size: 0.92rem; color: var(--text); line-height: 1.95; margin-bottom: 10px; }
.privacy-sec { margin-top: 26px; }
.privacy-sec h3 { background: #ffe8e8; border-left: 4px solid var(--accent); border-radius: 6px;
  padding: 12px 16px; color: var(--green-deep); font-size: 1.02rem; font-weight: 700; margin-bottom: 14px; }
.privacy-sec p { font-size: 0.92rem; color: var(--text); line-height: 1.95; margin-bottom: 8px; }
.privacy-contact { margin-top: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; font-size: 0.9rem; line-height: 1.9; }
.privacy-contact a { color: var(--green-dark); }

/* ── TABLET (600px〜) ── */
@media (min-width: 600px) {
  .section { padding: 72px 0; }
  .hero { padding: 110px 20px 64px; }
  .hero-title { font-size: 2.5rem; }
  .hero-cta { flex-direction: row; justify-content: center; }
  .hero-cta .btn { flex: 0 1 auto; }
  .hero-photo image-slot { height: 300px; }
  .hero-img { height: 300px; }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .appeal-grid { grid-template-columns: repeat(3, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-methods { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .ideology { grid-template-columns: 170px 1fr; gap: 32px; padding: 32px; }
  .company-overview { grid-template-columns: 1fr 1fr; gap: 32px; }
  .company-map iframe { height: 380px; }
  .service-points { grid-template-columns: 1fr 1fr; }
  .service-point:first-child { grid-column: 1 / -1; }
  .service-cta { flex-direction: row; }
  .service-cta .btn { width: auto; flex: 1; }
  .president-inner { grid-template-columns: 320px 1fr; align-items: center; gap: 44px; }
  .president-photo img { max-width: 100%; }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}

/* ── PC visual scaling (900px〜) ── */
@media (min-width: 900px) {
  .hero { padding: 140px 20px 80px; }
  .hero-inner { max-width: 720px; }
  .hero-title { font-size: 3rem; }
  .hero-photo image-slot { height: 360px; }
  .hero-img { height: 360px; }
  .section-title { font-size: 1.95rem; }
  .footer { padding-bottom: 44px; }
}

/* ── Full desktop nav (1080px〜) ── */
@media (min-width: 1080px) {
  .nav { display: flex; gap: 20px; }
  .header-actions { display: flex; }
  .header-tel { display: none; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .benefits-grid { grid-template-columns: repeat(6, 1fr); }
  .fixed-cta { display: none; }
}

@media (min-width: 1200px) {
  .nav { gap: 24px; }
  .header-tel { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
