@charset "UTF-8";
/* ============================================================
   store-clinic.css — 医療・健康テーマ(歯科・内科・眼科など)
   方向: ミニマルテック(6)。白×青緑、精密な整列、影を使わず罫で区切る
   シグネチャー: 曜日×午前午後の診療時間表を主役に置く
   ============================================================ */
:root {
  --st-bg: #ffffff;
  --st-surface: #f3f8f8;
  --st-ink: #1c2b31;
  --st-muted: #5b6b71;
  --st-line: #d7e3e5;
  --st-accent: #1d6b7a;
  --st-accent-ink: #ffffff;
  --mint: #e3f1ef;
  --st-font-display: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --st-font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --num: "Inter", "Noto Sans JP", sans-serif;
  --st-radius: 10px;
  --wrap: min(1120px, 100% - 40px);
}
h1, h2, h3 { font-weight: 700; line-height: 1.45; letter-spacing: 0.02em; }
.c-wrap { width: var(--wrap); margin-inline: auto; }
.c-wrap--narrow { width: min(760px, 100% - 40px); }
.c-section { padding-block: clamp(64px, 9vw, 112px); }
.c-eyebrow { font-family: var(--num); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; color: var(--st-accent); }
.c-h2 { margin-top: 8px; font-size: clamp(24px, 3vw, 34px); }

.c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 12px 24px;
  border-radius: var(--st-radius); background: var(--st-accent); color: #fff; border: 1.5px solid var(--st-accent);
  font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.2s, color 0.2s;
}
.c-btn:hover { background: #15525e; }
.c-btn--line { background: #fff; color: var(--st-accent); }
.c-btn--line:hover { background: var(--mint); }
.c-btn svg { width: 18px; height: 18px; }

/* ヘッダー: 診療科目と電話を常に見せる */
.c-header { position: sticky; top: 0; z-index: var(--z-header); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--st-line); }
.c-header__inner { width: var(--wrap); margin-inline: auto; min-height: 70px; display: flex; align-items: center; gap: 28px; }
.c-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.c-logo__mark { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--st-accent); color: #fff; font-family: var(--num); font-size: 24px; font-weight: 700; }
.c-logo small { display: block; font-size: 11px; color: var(--st-muted); }
.c-logo b { display: block; font-size: 18px; line-height: 1.3; }
.c-header__nav { margin-left: auto; display: flex; gap: 22px; font-size: 14px; }
.c-header__nav a { text-decoration: none; }
.c-header__nav a:hover { color: var(--st-accent); }
.c-header__tel { display: grid; text-decoration: none; text-align: right; line-height: 1.2; }
.c-header__tel small { font-size: 11px; color: var(--st-muted); }
.c-header__tel b { font-family: var(--num); font-size: 22px; color: var(--st-accent); }

/* ヒーロー */
.c-hero { padding: clamp(36px, 5vw, 64px) 0; background: linear-gradient(180deg, var(--mint), #fff 70%); }
.c-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.c-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.c-hero__chips span { padding: 3px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--st-line); font-size: 13px; color: var(--st-accent); font-weight: 700; }
.c-hero__name { margin-top: 16px; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.3; }
.c-hero__name.c-name--m { font-size: clamp(26px, 3.4vw, 40px); }
.c-hero__name.c-name--l { font-size: clamp(22px, 2.6vw, 32px); }
.c-hero__lead { margin-top: 16px; color: var(--st-muted); }
.c-hero__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.c-hero__photo { position: relative; margin: 0; }
.c-hero__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; }
.c-hero__photo figcaption { position: absolute; left: 12px; bottom: 12px; padding: 3px 10px; border-radius: 6px; background: rgba(28, 43, 49, 0.7); color: #fff; font-size: 12px; }

/* 診療時間表(シグネチャー) */
.c-hours { background: #fff; }
.c-hours__wrap { margin-top: 28px; padding: clamp(18px, 3vw, 32px); border: 1px solid var(--st-line); border-radius: 16px; }
.c-hours__table { width: 100%; border-collapse: collapse; text-align: center; font-size: 15px; }
.c-hours__table th, .c-hours__table td { padding: 14px 6px; border-bottom: 1px solid var(--st-line); }
.c-hours__table thead th { font-weight: 700; color: var(--st-muted); font-size: 13px; }
.c-hours__table tbody th { text-align: left; font-weight: 700; white-space: nowrap; }
.c-pending { display: inline-block; padding: 2px 8px; border-radius: 4px; background: var(--st-surface); color: var(--st-muted); font-size: 12px; }
.c-hours__note { margin-top: 16px; font-size: 14px; color: var(--st-muted); }

.c-guide { background: var(--st-surface); }
.c-call { background: var(--st-accent); color: #fff; }
.c-call__inner { padding-block: 36px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.c-call__tel { display: inline-flex; align-items: center; gap: 10px; font-family: var(--num); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #fff; text-decoration: none; }
.c-call__tel svg { width: 0.8em; height: 0.8em; }

.c-access__grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.c-dl { display: grid; grid-template-columns: 7em 1fr; border-top: 1px solid var(--st-line); align-self: start; }
.c-dl dt, .c-dl dd { padding: 14px 0; border-bottom: 1px solid var(--st-line); }
.c-dl dt { color: var(--st-muted); font-size: 14px; }
.c-dl a { color: var(--st-accent); }
.c-access .st-map { border-radius: 16px; }
.c-faq-sec { padding-top: 0; }
.c-faq { margin-top: 24px; display: grid; gap: 10px; }
.c-faq details { border: 1px solid var(--st-line); border-radius: var(--st-radius); }
.c-faq summary { padding: 16px 44px 16px 18px; font-weight: 700; position: relative; }
.c-faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-family: var(--num); color: var(--st-accent); font-size: 20px; }
.c-faq details[open] summary::after { content: "−"; }
.c-faq details p { padding: 0 18px 18px; color: var(--st-muted); }

.c-footer { padding: 40px 0; border-top: 1px solid var(--st-line); font-size: 14px; color: var(--st-muted); }
.c-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.c-footer b { color: var(--st-ink); font-size: 17px; }
.call-bar a { background: var(--st-accent); color: #fff; }
.call-bar a + a { background: #fff; color: var(--st-accent); border: 1.5px solid var(--st-accent); }

@media (max-width: 1023px) {
  .c-header__nav { display: none; }
  .c-header__tel { margin-left: auto; }
  .c-hero__grid, .c-access__grid { grid-template-columns: 1fr; }
  .c-hero__photo { order: -1; }
}
@media (max-width: 767px) {
  .c-header__tel small { display: none; }
  .c-header__tel b { font-size: 18px; }
  .c-hero__actions .c-btn { flex: 1 1 100%; }
  .c-hours__wrap { padding: 12px; overflow-x: auto; }
  .c-hours__table { min-width: 520px; font-size: 13px; }
  .c-dl { grid-template-columns: 5.5em 1fr; }
}

/* 店主のお知らせ帯・キャッチコピー(受け取り後に店主が入れたときだけ出る) */
.c-notice { background: var(--st-surface); border-bottom: 1px solid var(--st-line); }
.c-notice__inner { width: var(--wrap); margin-inline: auto; padding: 16px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; font-size: 14px; }
.c-notice__label { font-weight: 700; color: var(--st-accent); letter-spacing: 0.12em; }
.c-hero__catch { margin-top: 12px; font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; color: var(--st-accent); }

/* ヘッダーの電話: PC は番号(元の見た目)、スマホは「電話」ボタン。長い院名は2行まで */
.c-header__tel { flex: none; }
.c-header__tel .tel-pc { display: grid; }
.c-logo { min-width: 0; }
.c-logo > span { min-width: 0; }
@media (max-width: 767px) {
  .c-header__inner { gap: 12px; }
  .c-header__tel {
    display: inline-flex; align-items: center; white-space: nowrap;
    min-height: 44px; padding: 8px 14px; border-radius: 999px; background: var(--st-accent); color: #fff; font-weight: 700; font-size: 14px;
  }
  .c-logo b { font-size: 16px; overflow-wrap: anywhere; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .c-logo small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
