/* ================================================
   テクノファーマ 別案 — 信頼感・わかりやすさ重視
   参考：薬局HPギャラリーサイト分析より
   ================================================ */

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── カラーパレット ── */
:root {
  --green:        #2e7d52;   /* メイングリーン（深め・信頼感） */
  --green-dark:   #1f5c3a;
  --green-mid:    #3d9162;
  --green-light:  #e8f5ee;
  --green-pale:   #f2faf5;
  --accent:       #f0820f;   /* オレンジアクセント（CTA・強調） */
  --accent-dark:  #d46d00;
  --blue:         #1a6fa8;
  --blue-light:   #e8f2fa;
  --text:         #1a2e24;   /* 濃いメインテキスト */
  --text-mid:     #445c4e;
  --text-light:   #7a9080;
  --border:       #d4e5db;
  --bg:           #ffffff;
  --bg-gray:      #f7f9f8;
  --bg-section:   #f2faf5;
  --white:        #ffffff;
  --shadow-sm:    0 1px 3px rgba(30,60,40,.08), 0 2px 8px rgba(30,60,40,.05);
  --shadow-md:    0 4px 16px rgba(30,60,40,.10), 0 2px 6px rgba(30,60,40,.06);
  --shadow-hover: 0 8px 28px rgba(30,60,40,.14);
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   all .22s cubic-bezier(.4,0,.2,1);
}

/* ── ベース ── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
  overflow-x: hidden;
}

/* ── 共通レイアウト ── */
.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 88px 0; }
.section--bg { background: var(--bg-section); }

/* ── ボタン ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  font-size: .92rem;
  padding: 12px 24px;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(46,125,82,.3);
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 16px rgba(46,125,82,.4);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green-light);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}
.btn--white:hover { opacity: .88; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }

.text-link {
  color: var(--green);
  font-size: .88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.text-link:hover { color: var(--green-dark); gap: 8px; }

/* ── セクション共通見出し ── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  opacity: .5;
}
.section-title {
  font-family: 'Noto Serif JP', 'Hiragino Mincho Pro', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title-sm {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--text);
}
.section-desc {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-top: 8px;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================================
   ヘッダー
   ================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
#site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(30,60,40,.10);
}

/* 上段：情報バー */
.header-top {
  background: var(--green);
  padding: 6px 0;
}
.header-top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-txt {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .08em;
}
.header-top-right {
  display: flex;
  gap: 20px;
}
.header-top-link {
  font-size: .7rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color .2s;
}
.header-top-link:hover { color: var(--white); }

/* 下段：ロゴ＋ナビ */
.header-main { background: var(--white); }
.header-main-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* ロゴ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-mark--sm { width: 36px; height: 36px; font-size: 1.1rem; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-ja {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  white-space: nowrap;
}
.logo-en {
  font-size: .58rem;
  color: var(--text-light);
  letter-spacing: .1em;
  white-space: nowrap;
}
.site-logo--white .logo-ja { color: var(--white); }
.site-logo--white .logo-en { color: rgba(255,255,255,.6); }

/* グローバルナビ */
#global-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list li a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-list li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  box-shadow: 0 2px 8px rgba(240,130,15,.3);
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 4px 12px rgba(240,130,15,.4);
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   ヒーロー
   ================================================ */
#hero {
  position: relative;
  background: var(--green-pale);
  padding: 80px 0 72px;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

/* 背景の装飾（写真の代わり） */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.hero-bg-shape--1 {
  width: 600px; height: 600px;
  background: var(--green);
  right: -120px; top: -160px;
}
.hero-bg-shape--2 {
  width: 300px; height: 300px;
  background: var(--green-mid);
  right: 280px; bottom: -100px;
}
.hero-bg-shape--3 {
  width: 180px; height: 180px;
  background: var(--accent);
  right: 80px; bottom: 40px;
  opacity: .08;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.hero-content { max-width: 660px; }

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green);
  background: rgba(46,125,82,.1);
  border: 1px solid rgba(46,125,82,.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--green);
  border-bottom: 3px solid var(--green);
  padding-bottom: 2px;
}

.hero-desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ヒーロー実績数字 */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  align-self: flex-start;
}
.hero-stat {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.hero-stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.hero-stat-unit {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .06em;
}
.hero-stat-label {
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .04em;
  margin-top: 4px;
}

/* ================================================
   店舗を探す（笹川薬局風 左パネル＋地図）
   ================================================ */
#store-section {
  background: var(--bg-gray);
  padding: 72px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ヘッダー部分 */
.store-section-head {
  text-align: center;
  margin-bottom: 36px;
}
.store-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  margin-bottom: 10px;
}
.store-section-en {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.store-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--text);
}
.store-title-deco {
  display: block;
  width: 60px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg, var(--border) 0px, var(--border) 4px, transparent 4px, transparent 8px
  );
  flex-shrink: 0;
}

/* 地図ラッパー */
.store-map-wrap {
  position: relative;
  height: 440px;
  max-width: 1160px;
  margin: 0 auto 28px;
  padding: 0 40px;
  display: flex;
}

/* 左パネル */
.store-panel {
  position: relative;
  z-index: 10;
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.store-panel-search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .04em;
}
.store-panel-search svg { color: var(--text-light); flex-shrink: 0; }

/* 2カラムグリッド */
.store-groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}
.store-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.store-col:last-child { border-right: none; }

/* エリアグループ */
.store-group {
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
  flex: 1;
}
.store-group:last-child { border-bottom: none; }

.store-group-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.4;
}
.store-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.store-group-head--purple .store-dot { background: #9c6fd4; }
.store-group-head--sky    .store-dot { background: #3a9ecf; }
.store-group-head--green  .store-dot { background: #2e7d52; }
.store-group-head--orange .store-dot { background: #e07020; }
.store-group-head--red    .store-dot { background: #c84040; }

.store-names { display: flex; flex-direction: column; gap: 1px; padding-left: 16px; }
.store-names li a {
  display: block;
  font-size: .78rem;
  color: var(--green);
  padding: 3px 0;
  border-bottom: 1px dotted var(--border);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--transition);
  line-height: 1.5;
}
.store-names li:last-child a { border-bottom: none; }
.store-names li a:hover {
  color: var(--green-dark);
  padding-left: 4px;
  text-decoration-color: var(--green);
}

/* 吹き出し */
.store-panel-balloon {
  margin: 16px 18px 16px auto;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 8px 14px;
  border-radius: 100px;
  position: relative;
  align-self: flex-end;
  white-space: nowrap;
}
.store-panel-balloon::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: -6px;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--green);
}

/* 地図エリア */
.store-map {
  flex: 1;
  position: relative;
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: none;
}
.store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(.85) brightness(1.04);
}

/* 地図ピン */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
  transition: transform .15s;
}
.map-pin:hover { transform: translate(-50%, -100%) scale(1.15); }
.map-pin span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  font-size: .65rem;
  font-weight: 900;
  color: var(--white);
}
.map-pin span { transform: none; border-radius: 50% 50% 0 50%; }
.map-pin::after {
  content: '';
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.map-pin--purple span { background: #9c6fd4; }
.map-pin--sky     span { background: #3a9ecf; }
.map-pin--green   span { background: #2e7d52; }
.map-pin--orange  span { background: #e07020; }
.map-pin--red     span { background: #c84040; }
.map-pin--purple::after { border-top: 7px solid #9c6fd4; }
.map-pin--sky::after    { border-top: 7px solid #3a9ecf; }
.map-pin--green::after  { border-top: 7px solid #2e7d52; }
.map-pin--orange::after { border-top: 7px solid #e07020; }
.map-pin--red::after    { border-top: 7px solid #c84040; }

/* 一覧ボタン */
.store-section-cta { text-align: center; }
.btn--store-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 16px 56px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(46,125,82,.3);
  transition: var(--transition);
}
.btn--store-list:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 18px rgba(46,125,82,.4);
  transform: translateY(-1px);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .store-map-wrap {
    height: auto;
    flex-direction: column;
    padding: 0 20px;
  }
  .store-panel {
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .store-map {
    height: 300px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-left: 1px solid var(--border);
    border-top: none;
  }
  .store-section-title { font-size: 1.1rem; gap: 12px; }
  .store-title-deco { width: 32px; }
  .map-pin { display: none; } /* SP は地図ピン省略 */
}

/* ================================================
   サービス
   ================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card--highlight {
  background: var(--green);
  border-color: var(--green);
}
.service-card--highlight .service-card-title,
.service-card--highlight .service-card-desc,
.service-card--highlight .service-card-more { color: var(--white); }
.service-card--highlight .service-card-more { opacity: .8; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon--green { background: var(--green-light); color: var(--green); }
.service-icon--blue  { background: var(--blue-light);  color: var(--blue);  }
.service-icon--orange{ background: #fff4e8;            color: var(--accent);}
.service-icon--white { background: rgba(255,255,255,.2); color: var(--white); }

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}
.service-card-desc {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.85;
  flex: 1;
}
.service-card-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
}

/* ================================================
   選ばれる理由
   ================================================ */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 48px;
  border-bottom: 1px solid var(--border);
}
.reason-item:last-child { border-bottom: none; }

.reason-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  padding-top: 4px;
  letter-spacing: -.02em;
  /* 数字に色のラインアクセントを加える */
  -webkit-text-stroke: 2px var(--green);
  color: transparent;
}

.reason-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.reason-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ================================================
   薬局ブランド
   ================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.brand-card--purple { background: #f5f0fa; border-color: #c9b0e8; }
.brand-card--yellow { background: #fffbf0; border-color: #e8d48a; }
.brand-card--sky    { background: #f0f7ff; border-color: #a0c4e8; }
.brand-card--pink   { background: #fff0f5; border-color: #e8a8c0; }

.brand-flower {
  font-size: 2rem;
  margin-bottom: 4px;
}
.brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .04em;
}
.brand-area {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .04em;
}
.brand-tel {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}
.brand-hours {
  font-size: .72rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 10px;
  margin-top: 4px;
}

/* ================================================
   開業支援バナー
   ================================================ */
#clinic-banner {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#clinic-banner::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: rgba(255,255,255,.04);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.clinic-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.clinic-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.clinic-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,.4);
}
.clinic-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.clinic-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 500px;
}
.clinic-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  min-width: 220px;
}
.clinic-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-left: 2px solid rgba(255,255,255,.2);
  position: relative;
}
.clinic-step::before {
  content: '';
  position: absolute;
  left: -5px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.step-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  width: 52px;
}
.step-txt {
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* ================================================
   お知らせ＆採用情報（トップページ複合セクション）
   ================================================ */
.info-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.info-recruit {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.info-recruit .section-label { margin-bottom: 8px; }
.info-recruit .section-title-sm { margin-bottom: 16px; }

.info-recruit-lead {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.info-recruit-positions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.recruit-pos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.recruit-pos-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.recruit-pos-txt {
  font-size: .83rem;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 900px) {
  .info-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================
   お知らせ
   ================================================ */
.news-wrap { }
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.news-list {
  border-top: 2px solid var(--green);
}
.news-item {
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.news-item:hover { background: var(--green-pale); }
.news-date {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}
.news-cat {
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
}
.news-cat--info    { background: var(--green-light); color: var(--green-dark); }
.news-cat--health  { background: var(--blue-light);  color: var(--blue); }
.news-cat--seminar { background: #fff4e8;            color: var(--accent-dark); }
.news-title {
  font-size: .9rem;
  color: var(--text);
  transition: color .15s;
}
.news-title:hover { color: var(--green); }

/* ================================================
   お問い合わせCTA
   ================================================ */
#contact-cta {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.cta-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 2;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  color: var(--text);
  transition: border-color .2s;
}
.cta-tel:hover { border-color: var(--green); }
.cta-tel svg { color: var(--green); flex-shrink: 0; }
.cta-tel small {
  display: block;
  font-size: .65rem;
  color: var(--text-light);
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.cta-tel span {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text);
}

/* ================================================
   フッター
   ================================================ */
#site-footer { background: var(--text); }

.footer-main { padding: 64px 0 48px; }
.footer-main-inner {
  display: flex;
  gap: 64px;
}
.footer-brand { flex-shrink: 0; max-width: 260px; }

.footer-address {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
  margin-top: 20px;
}
.footer-tel-wrap,
.footer-mail-wrap {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}
.footer-tel,
.footer-mail {
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.footer-tel:hover,
.footer-mail:hover { color: var(--white); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-left: auto;
}
.footer-nav-head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav li a {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav li a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 16px 0;
}
.footer-copy {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
}

/* ================================================
   レスポンシブ
   ================================================ */
@media (max-width: 1024px) {
  .service-grid  { grid-template-columns: repeat(2, 1fr); }
  .brand-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-nav    { grid-template-columns: repeat(2, 1fr); }
  .clinic-inner  { grid-template-columns: 1fr; }
  .clinic-steps  { flex-direction: row; flex-wrap: wrap; gap: 8px; min-width: auto; }
  .clinic-step   { border-left: none; border-top: 2px solid rgba(255,255,255,.2); padding: 10px 16px; }
  .clinic-step::before { display: none; }
}

@media (max-width: 768px) {
  .inner { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* ヘッダー */
  .header-top .inner { flex-direction: column; gap: 4px; text-align: center; }
  .header-top-right  { gap: 16px; }
  .nav-toggle        { display: flex; }
  #global-nav {
    position: fixed;
    inset: 0;
    top: 100px;
    background: var(--white);
    padding: 32px 20px;
    display: none;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 199;
  }
  #global-nav.is-open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list li a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; }
  .header-main .logo-ja { font-size: .82rem; }
  .header-main .logo-en { display: none; }

  /* ヒーロー */
  #hero { padding: 56px 0 48px; min-height: auto; }
  .hero-title { font-size: 2rem; }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: row; align-self: stretch; border-radius: var(--radius); }
  .hero-stat  { padding: 18px 16px; flex: 1; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { display: none; }

  /* 店舗検索バー */
  .store-search-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .store-search-btns  { gap: 6px; }
  .store-btn { font-size: .75rem; padding: 6px 12px; }

  /* サービス */
  .service-grid { grid-template-columns: 1fr; }

  /* 選ばれる理由 */
  .reason-item { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .reason-num  { width: auto; text-align: left; font-size: 1.6rem; }

  /* 薬局ブランド */
  .brand-grid { grid-template-columns: 1fr 1fr; }

  /* お知らせ */
  .news-item { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; row-gap: 8px; }
  .news-date  { grid-column: 1; }
  .news-cat   { grid-column: 2; justify-self: end; }
  .news-title { grid-column: 1 / -1; }

  /* CTA */
  .cta-inner { flex-direction: column; gap: 32px; }
  .cta-actions { justify-content: flex-start; width: 100%; flex-direction: column; align-items: stretch; }
  .cta-tel { justify-content: center; }

  /* フッター */
  .footer-main-inner { flex-direction: column; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 1.7rem; }
  .brand-grid  { grid-template-columns: 1fr; }
  .hero-stats  { flex-direction: column; }
  .hero-stat-div { width: 80%; height: 1px; align-self: center; }
  .footer-nav  { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   サブページ共通
   ================================================ */

/* パンくず */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .5; }

/* サブページヒーロー */
.page-hero {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  margin-top: 0;
}
.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
}
.page-hero-en {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.page-hero-desc {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 2;
  max-width: 560px;
}

/* ================================================
   service.html
   ================================================ */
.service-detail {
  padding: 80px 0;
}
.service-detail + .service-detail {
  border-top: 1px solid var(--border);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-icon-wrap {
  background: var(--green-light);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.service-detail-num {
  font-family: 'Noto Serif JP', serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--green);
  margin-bottom: 8px;
}
.service-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.service-detail-body {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 16px;
}
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.service-detail-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-icon-wrap { max-width: 120px; aspect-ratio: 1; }
  .service-detail-inner.reverse { direction: ltr; }
}

/* ================================================
   pharmacy.html
   ================================================ */
.pharmacy-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pharmacy-tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--text-mid);
  transition: var(--transition);
}
.pharmacy-tab.is-active,
.pharmacy-tab:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.store-card-head {
  background: var(--green);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.store-card-brand-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.store-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.store-card-area {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  margin-left: auto;
}
.store-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.store-card-info {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.store-card-info:last-child { border-right: none; }
.store-info-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.store-info-label::before {
  content: '';
  display: block;
  width: 3px; height: 12px;
  background: var(--green);
  border-radius: 2px;
}
.store-info-val {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
}
.store-info-val a { color: var(--green); }
.store-info-val a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .store-card-body { grid-template-columns: 1fr; }
  .store-card-info { border-right: none; border-bottom: 1px solid var(--border); }
  .store-card-info:last-child { border-bottom: none; }
  .store-card-head { padding: 16px 20px; }
  .store-card-info { padding: 20px; }
}

/* ================================================
   staff.html
   ================================================ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.staff-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.staff-card-photo {
  background: var(--green-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 4rem;
}
.staff-card-body {
  padding: 24px;
}
.staff-card-store {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.staff-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.staff-card-kana {
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.staff-card-license {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.staff-card-msg {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 10px;
  font-style: italic;
}

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

/* ================================================
   health.html
   ================================================ */
.health-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.health-filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--text-mid);
  transition: var(--transition);
}
.health-filter-btn.is-active,
.health-filter-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.health-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.health-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.health-card-thumb {
  background: var(--green-light);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
}
.health-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.health-card-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.health-card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  flex: 1;
}
.health-card-date {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: auto;
}

@media (max-width: 900px) { .health-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .health-grid { grid-template-columns: 1fr; } }

/* ================================================
   clinic-support.html
   ================================================ */
.support-step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.support-step-list::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px; bottom: 28px;
  width: 2px;
  background: var(--border);
}
.support-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}
.support-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-gray);
}
.support-step-content { flex: 1; padding-top: 8px; }
.support-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.support-step-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 2;
}

.support-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.support-reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--green);
}
.support-reason-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.support-reason-desc {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .support-reasons-grid { grid-template-columns: 1fr; }
  .support-step-list::before { left: 22px; }
  .support-step-num { width: 44px; height: 44px; font-size: .95rem; }
}

/* ================================================
   contact.html / recruit.html 共通フォーム
   ================================================ */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.form-row:last-of-type { border-bottom: none; }
.form-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 10px;
  line-height: 1.6;
}
.form-required {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-gray);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,82,.12);
  background: var(--white);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-gray);
  cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--green); }
.form-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.7;
}
.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-privacy-note {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 20px;
  line-height: 1.8;
}
.form-privacy-note a { color: var(--green); text-decoration: underline; }

@media (max-width: 640px) {
  .form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .form-label { padding-top: 0; }
}

/* ================================================
   news.html
   ================================================ */
.news-page-list { border-top: 2px solid var(--green); }
.news-page-item {
  display: grid;
  grid-template-columns: 120px 100px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.news-page-item:hover { background: var(--green-pale); }
@media (max-width: 640px) {
  .news-page-item { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; row-gap: 8px; }
  .news-page-item .news-date { grid-column: 1; }
  .news-page-item .news-cat  { grid-column: 2; justify-self: end; }
  .news-page-item .news-title { grid-column: 1 / -1; }
}

/* ================================================
   profile.html
   ================================================ */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-table th,
.profile-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  line-height: 1.8;
  vertical-align: top;
}
.profile-table tr:last-child th,
.profile-table tr:last-child td { border-bottom: none; }
.profile-table th {
  width: 200px;
  background: var(--bg-section);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.profile-table td { color: var(--text-mid); }

@media (max-width: 640px) {
  .profile-table th,
  .profile-table td { display: block; width: 100%; padding: 12px 16px; }
  .profile-table th { border-bottom: none; background: var(--green-light); }
}

/* ================================================
   privacy.html
   ================================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-section {
  margin-bottom: 48px;
}
.privacy-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-left: 3px solid var(--green);
  padding-left: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.privacy-section p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 12px;
}
.privacy-section ul {
  list-style: disc;
  padding-left: 24px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ================================================
   recruit.html
   ================================================ */
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.recruit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.recruit-card-head {
  background: var(--green);
  padding: 20px 28px;
}
.recruit-card-type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.recruit-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.recruit-table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-table th,
.recruit-table td {
  padding: 14px 20px;
  font-size: .85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}
.recruit-table tr:last-child th,
.recruit-table tr:last-child td { border-bottom: none; }
.recruit-table th {
  width: 110px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  background: var(--bg-section);
}
.recruit-table td { color: var(--text-mid); }

@media (max-width: 768px) {
  .recruit-cards { grid-template-columns: 1fr; }
}
