@charset "UTF-8";
/* =================================================
   Minatozaka Ortho Clinic  main stylesheet
   カラーはカスタマイザーの6配色から :root 変数で注入
   ================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
	font-family: var(--font-body);
	color: var(--c-ink, #1B2330);
	background: #fff;
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
iframe { border: 0; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px;
	clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.4; }

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.8em 2.2em; border-radius: 999px;
	font-weight: 700; font-size: 0.95rem; line-height: 1.4;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); }
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--white { background: #fff; color: var(--c-main); }
.btn--outline { border: 2px solid var(--c-main); color: var(--c-main); background: #fff; }
.btn--outline:hover { background: var(--c-main); color: #fff; }
.btn--outline-white { border: 2px solid #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--c-main); }
.btn--lg { padding: 1em 2.8em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* =================================================
   ヘッダー（PCはワイド幅でファーストビューを広く）
   ================================================= */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08); }
.site-header__inner {
	max-width: 1680px; /* ワイドヘッダー */
	margin: 0 auto;
	display: flex; align-items: center; gap: 24px;
	padding: 10px 28px;
}
.site-header__brand { margin-right: auto; }
.site-header__logo { display: flex; align-items: center; gap: 12px; }
.site-header__logo-mark {
	display: grid; place-items: center;
	width: 50px; height: 50px; border-radius: 14px;
	background: linear-gradient(135deg, var(--c-main) 0%, var(--c-sub) 100%);
	color: #fff; position: relative; overflow: hidden;
	font-weight: 900; font-size: 1.55rem; flex-shrink: 0;
	box-shadow: 0 4px 12px color-mix(in srgb, var(--c-main) 32%, transparent);
}
.site-header__logo-mark::after {
	content: ""; position: absolute; right: -7px; bottom: -7px;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--c-accent);
}
.site-header__logo-name {
	display: block; font-family: var(--font-head);
	font-weight: 900; font-size: 1.22rem; color: var(--c-main);
	line-height: 1.25; letter-spacing: 0.015em; white-space: nowrap;
}
.site-header__logo-sub {
	display: block; font-size: 0.66rem; color: #6a7280; letter-spacing: 0.14em;
	margin-top: 2px; white-space: nowrap;
}
.site-header__logo-sub::before {
	content: ""; display: inline-block; width: 16px; height: 2px;
	background: var(--c-accent); vertical-align: middle; margin-right: 7px;
}

/* --- グローバルナビ --- */
.gnav__list { display: flex; align-items: center; gap: 4px; }
.gnav__item { position: relative; }
.gnav__link {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 10px 12px; font-size: 0.92rem; font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: 8px; transition: background 0.2s ease, color 0.2s ease;
}
.gnav__link:hover { background: var(--c-bg); color: var(--c-main); }
.gnav__arrow {
	width: 7px; height: 7px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.25s ease;
}
.gnav__item--has-child:hover .gnav__arrow,
.gnav__toggle[aria-expanded="true"] .gnav__arrow { transform: rotate(225deg) translateY(-2px); }

/* ボタンとメニューの間の「見えない橋」：カーソル移動中に閉じるのを防ぐ */
.gnav__item--has-child::after {
	content: ""; position: absolute;
	left: -16px; right: -16px; top: 100%; height: 18px;
}
.gnav__dropdown {
	position: absolute; top: calc(100% + 12px); left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 280px; padding: 12px;
	background: #fff; border-radius: 14px;
	box-shadow: 0 12px 36px rgba(15, 30, 60, 0.16);
	opacity: 0; visibility: hidden; pointer-events: none;
	/* 閉じるときは0.25秒待ってから（多少カーソルが外れても閉じない） */
	transition: opacity 0.22s ease 0.25s, transform 0.22s ease 0.25s, visibility 0.22s ease 0.25s;
}
.gnav__item--has-child:hover .gnav__dropdown,
.gnav__item--has-child:focus-within .gnav__dropdown {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition-delay: 0s; /* 開くときは即時 */
}
.gnav__dropdown a {
	display: block; padding: 13px 16px; font-size: 0.92rem; font-weight: 500;
	border-radius: 10px; transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.gnav__dropdown a:hover { background: var(--c-bg); color: var(--c-main); padding-left: 22px; }

/* --- ヘッダーCTA --- */
.site-header__cta { display: flex; align-items: center; gap: 14px; }
.site-header__tel { text-align: right; line-height: 1.3; }
.site-header__tel-label { display: block; font-size: 0.65rem; color: #6a7280; }
.site-header__tel-num {
	font-family: var(--font-en);
	font-size: 1.35rem; font-weight: 600; color: var(--c-main); letter-spacing: 0.03em;
}
.site-header__reserve { padding: 0.7em 1.7em; }

/* --- ドロワー --- */
.drawer-btn { display: none; }
.drawer {
	position: fixed; top: 0; right: 0; z-index: 200;
	width: min(84vw, 360px); height: 100dvh;
	background: var(--c-main); color: #fff;
	transform: translateX(105%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close {
	position: absolute; top: 12px; right: 14px; z-index: 5;
	display: grid; place-items: center;
	width: 46px; height: 46px; border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.2s ease;
}
.drawer__close:active { background: rgba(255, 255, 255, 0.22); }
.drawer__close-line {
	grid-area: 1 / 1;
	display: block; width: 20px; height: 2px; border-radius: 1px; background: #fff;
}
.drawer__close-line:nth-child(1) { transform: rotate(45deg); }
.drawer__close-line:nth-child(2) { transform: rotate(-45deg); }
.drawer__inner { padding: 74px 22px 40px; }
.drawer__brand {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-weight: 700;
	margin-bottom: 22px; font-size: 0.92rem; line-height: 1.4;
}
.drawer__brand-mark {
	display: grid; place-items: center; flex-shrink: 0;
	width: 34px; height: 34px; border-radius: 10px;
	background: var(--c-accent); color: #fff; font-size: 1.1rem;
}
.drawer__label {
	font-family: var(--font-en);
	font-size: 0.75rem; font-weight: 600; letter-spacing: 0.24em;
	color: var(--c-accent); margin: 22px 0 10px;
}
.drawer__label:first-of-type { margin-top: 0; }

/* メニュー：2列のタイル */
.drawer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer__tile {
	display: flex; flex-direction: column; gap: 2px;
	padding: 13px 14px; border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.88rem; font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease;
}
.drawer__tile:active { background: rgba(255, 255, 255, 0.16); transform: scale(0.98); }
.drawer__tile-en {
	font-family: var(--font-en);
	font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
	color: var(--c-accent); opacity: 0.95;
}

/* 症状：チップ */
.drawer__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer__chip {
	display: inline-block; padding: 7px 14px;
	border-radius: 999px; font-size: 0.78rem; font-weight: 500;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	transition: background 0.2s ease;
}
.drawer__chip:active { background: var(--c-accent); }

.drawer__cta { display: grid; gap: 12px; margin-top: 28px; }
.drawer-overlay {
	position: fixed; inset: 0; z-index: 150;
	background: rgba(10, 18, 34, 0.5);
	opacity: 0; transition: opacity 0.3s ease;
}
.drawer-overlay.is-visible { opacity: 1; }

/* =================================================
   ファーストビュー
   ================================================= */
.hero {
	position: relative; overflow: hidden;
	min-height: min(92vh, 960px);
	display: grid; align-items: center;
	background: var(--c-main);
}
.hero__media { position: absolute; inset: 0; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__placeholder {
	width: 100%; height: 100%;
	background:
		linear-gradient(120deg, color-mix(in srgb, var(--c-main) 88%, #fff) 0%, var(--c-main) 55%, color-mix(in srgb, var(--c-sub) 70%, var(--c-main)) 100%);
}
.hero__placeholder::after {
	content: ""; position: absolute; inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 120px, rgba(255, 255, 255, 0.045) 120px 124px);
}
.hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(10, 20, 40, 0.62) 0%, rgba(10, 20, 40, 0.34) 48%, rgba(10, 20, 40, 0.08) 100%);
}

/* --- フィルターの濃さ（カスタマイザーで選択） --- */
.hero--scrim-none .hero__scrim { background: none; }
.hero--scrim-light .hero__scrim {
	background: linear-gradient(100deg, rgba(10, 20, 40, 0.38) 0%, rgba(10, 20, 40, 0.18) 48%, rgba(10, 20, 40, 0.02) 100%);
}
.hero--scrim-dark .hero__scrim {
	background: linear-gradient(100deg, rgba(10, 20, 40, 0.8) 0%, rgba(10, 20, 40, 0.52) 48%, rgba(10, 20, 40, 0.22) 100%);
}

/* --- キャッチコピーの手書き風書体（カスタマイザーで選択） --- */
.hero--catch-klee .hero__catch {
	font-family: "Klee One", var(--font-head), cursive;
	font-weight: 600; letter-spacing: 0.06em; line-height: 1.45;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.hero--catch-yomogi .hero__catch {
	font-family: "Yomogi", var(--font-head), cursive;
	font-weight: 400; letter-spacing: 0.07em; line-height: 1.5;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.hero--catch-klee .hero__sub,
.hero--catch-yomogi .hero__sub { letter-spacing: 0.03em; }

/* --- スライダー本体 --- */
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; }
.hero-slide picture, .hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* アニメーション1：フェード */
.hero--anim-fade .hero-slide { opacity: 0; transition: opacity 1.4s ease; }
.hero--anim-fade .hero-slide.is-active { opacity: 1; }

/* アニメーション2：スライド */
.hero--anim-slide .hero-slide { transform: translateX(100%); transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1); z-index: 1; }
.hero--anim-slide .hero-slide.is-active { transform: translateX(0); z-index: 2; }
.hero--anim-slide .hero-slide.is-leaving { transform: translateX(-100%); z-index: 1; }

/* アニメーション3：ズーム（ケンバーンズ） */
.hero--anim-zoom .hero-slide { opacity: 0; transition: opacity 1.6s ease; }
.hero--anim-zoom .hero-slide img { transform: scale(1); }
.hero--anim-zoom .hero-slide.is-active { opacity: 1; }
.hero--anim-zoom .hero-slide.is-active img { animation: heroZoom 7s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

/* アニメーション4：ワイプ */
.hero--anim-wipe .hero-slide { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1); z-index: 1; }
.hero--anim-wipe .hero-slide.is-active { clip-path: inset(0 0 0 0); z-index: 2; }
.hero--anim-wipe .hero-slide.is-leaving { clip-path: inset(0 0 0 0); z-index: 1; transition: none; }

/* --- ドット --- */
.hero-slider__dots {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 10px; z-index: 5;
}
.hero-slider__dot {
	width: 34px; height: 4px; border-radius: 2px;
	background: rgba(255, 255, 255, 0.4); transition: background 0.3s ease;
}
.hero-slider__dot.is-active { background: var(--c-accent); }

/* --- FVコンテンツ --- */
.hero__content {
	position: relative; z-index: 3;
	width: min(1680px, 100%); margin: 0 auto;
	padding: 140px 28px 90px;
	color: #fff;
}
.hero__eyebrow {
	font-family: var(--font-en);
	font-size: 0.95rem; letter-spacing: 0.28em; font-weight: 600;
	color: var(--c-accent);
	margin-bottom: 18px;
	opacity: 0; animation: heroIn 0.9s ease 0.15s forwards;
}
.hero__eyebrow::before {
	content: ""; display: inline-block; width: 42px; height: 2px;
	background: var(--c-accent); vertical-align: middle; margin-right: 12px;
}
.hero__catch {
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.6vw, 4.3rem);
	font-weight: 900; letter-spacing: 0.045em; line-height: 1.32;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}
.hero__catch-line {
	display: block;
	opacity: 0; transform: translateY(26px);
	animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(0.3s + var(--d, 0s));
}
.hero__sub {
	max-width: 560px; margin-top: 22px;
	font-size: clamp(0.9rem, 1.2vw, 1.02rem);
	opacity: 0; animation: heroIn 0.9s ease 0.75s forwards;
}
.hero__cta {
	display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px;
	opacity: 0; animation: heroIn 0.9s ease 0.95s forwards;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
	position: absolute; right: 30px; bottom: 20px; z-index: 4;
	color: #fff; font-family: var(--font-en);
	font-size: 0.72rem; letter-spacing: 0.3em;
	writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px;
}
.hero__scroll::after {
	content: ""; width: 1px; height: 56px;
	background: linear-gradient(#fff, transparent);
	animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =================================================
   共通セクション
   ================================================= */
.site-main { display: block; }
.section { padding: 96px 0; }
.section--news { padding: 64px 0; background: #fff; }
.section--symptoms { background: var(--c-bg); }
.section--services { background: #fff; }
.section--facility { background: var(--c-bg); }
.section--column { background: #fff; }
.section--instagram { background: var(--c-bg); }
.section--access { background: #fff; }

.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section__inner--narrow { max-width: 860px; }
.section__inner--archive, .section__inner--single { max-width: 1100px; margin: 0 auto; padding: 40px 24px 90px; }

.section__head { margin-bottom: 44px; }
.section__eyebrow {
	font-family: var(--font-en);
	font-size: 0.88rem; font-weight: 600; letter-spacing: 0.26em;
	color: var(--c-accent); margin-bottom: 8px;
}
.section__eyebrow::before {
	content: ""; display: inline-block; width: 30px; height: 2px;
	background: var(--c-accent); vertical-align: middle; margin-right: 10px;
}
.section__title {
	position: relative;
	font-size: clamp(1.55rem, 2.7vw, 2.2rem); font-weight: 900; color: var(--c-main);
	letter-spacing: 0.02em; padding-bottom: 16px;
}
.section__title::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 48px; height: 4px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-sub) 100%);
}
.section__head--invert .section__title::after { background: linear-gradient(90deg, var(--c-accent) 0%, rgba(255,255,255,0.6) 100%); }
.section__lead { margin-top: 14px; max-width: 640px; color: #4b5563; font-size: 0.95rem; }
.section__head--invert .section__title, .section__head--invert .section__lead { color: #fff; }
.section__head--invert .section__lead { opacity: 0.85; }
.section__more { margin-top: 38px; text-align: center; }

/* ---------- お知らせリスト ---------- */
.news-list { border-top: 1px solid #e5e9f0; }
.news-list__item { border-bottom: 1px solid #e5e9f0; }
.news-list__item a {
	display: flex; gap: 22px; align-items: baseline;
	padding: 16px 8px; transition: background 0.2s ease;
}
.news-list__item a:hover { background: var(--c-bg); }
.news-list__item time { font-family: var(--font-en); font-size: 0.95rem; color: var(--c-sub); flex-shrink: 0; letter-spacing: 0.04em; }
.news-list__title { font-size: 0.95rem; }

/* ---------- 症状別グリッド ---------- */
.symptom-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.symptom-card {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 20px 22px; min-height: 84px;
	background: #fff; border-radius: 14px;
	border-left: 4px solid var(--c-accent);
	box-shadow: 0 3px 14px rgba(20, 40, 80, 0.06);
	font-weight: 700; font-size: 0.95rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.symptom-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(20, 40, 80, 0.13); }
.symptom-card__arrow { color: var(--c-accent); transition: transform 0.25s ease; }
.symptom-card:hover .symptom-card__arrow { transform: translateX(4px); }

/* ---------- 診療案内 ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
	display: flex; flex-direction: column;
	padding: 28px 28px 24px; border-radius: 16px;
	background: var(--c-bg); border-top: 4px solid var(--c-main);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20, 40, 80, 0.12); }
.service-card__en {
	font-family: var(--font-en);
	font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
	color: var(--c-accent); margin-bottom: 4px;
}
.service-card__title { font-size: 1.2rem; color: var(--c-main); margin-bottom: 10px; }
.service-card__text { font-size: 0.92rem; color: #4b5563; }
.service-card__more {
	margin-top: 16px; align-self: flex-end;
	font-size: 0.82rem; font-weight: 700; color: var(--c-main);
	transition: color 0.2s ease, transform 0.2s ease;
}
.service-card:hover .service-card__more { color: var(--c-accent); transform: translateX(4px); }

/* ---------- スポーツ整形（シグネチャーセクション） ---------- */
.section--sports {
	position: relative; overflow: hidden;
	background: var(--c-main); color: #fff;
}
.section--sports::before {
	content: ""; position: absolute; inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 140px, rgba(255, 255, 255, 0.04) 140px 144px);
	pointer-events: none;
}
.section--sports::after {
	content: ""; position: absolute; right: -80px; top: -80px;
	width: 340px; height: 340px; border-radius: 50%;
	border: 46px solid color-mix(in srgb, var(--c-accent) 30%, transparent);
	pointer-events: none;
}
.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.sports-card {
	padding: 30px 26px; border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(2px);
	transition: transform 0.25s ease, background 0.25s ease;
}
.sports-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); }
.sports-card__num {
	font-family: var(--font-en);
	font-size: 2.2rem; font-weight: 600; color: var(--c-accent); line-height: 1;
	margin-bottom: 12px;
}
.sports-card__title { font-size: 1.08rem; margin-bottom: 10px; }
.sports-card__text { font-size: 0.9rem; opacity: 0.88; }

/* ---------- 院内紹介 ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.facility-item__img {
	aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden;
	background: #dfe5ee; display: grid; place-items: center;
}
.facility-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.facility-item:hover .facility-item__img img { transform: scale(1.06); }
.facility-item__placeholder { font-family: var(--font-en); letter-spacing: 0.2em; color: #9aa6b8; }
.facility-item__cap { margin-top: 10px; font-size: 0.9rem; font-weight: 500; color: var(--c-main); }
.facility-item__cap::before { content: "— "; color: var(--c-accent); }

/* ---------- 記事カード ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.post-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 3px 14px rgba(20, 40, 80, 0.07); border: 1px solid rgba(20, 40, 80, 0.05); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(20, 40, 80, 0.13); }
.post-card__thumb { aspect-ratio: 3 / 2; overflow: hidden; background: #e6ebf2; display: grid; place-items: center; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__noimg { font-family: var(--font-en); letter-spacing: 0.2em; color: #9aa6b8; }
.post-card__body { padding: 18px 20px 22px; }
.post-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 0.8rem; }
.post-card__meta time { font-family: var(--font-en); font-size: 0.9rem; color: var(--c-sub); letter-spacing: 0.04em; }
.post-card__cat { background: var(--c-bg); color: var(--c-main); padding: 2px 10px; border-radius: 999px; font-weight: 500; }
.post-card__title { font-size: 0.98rem; line-height: 1.6; }

/* ---------- Instagram ---------- */
.instagram-feed { max-width: 1000px; margin: 0 auto; }

/* ---------- アクセス ---------- */
.access-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: start; }
.access-grid__map { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 10; background: #dfe5ee; }
.access-grid__map iframe { width: 100%; height: 100%; }
.access-grid__map-placeholder { display: grid; place-items: center; height: 100%; font-family: var(--font-en); letter-spacing: 0.3em; color: #9aa6b8; }
.access-grid__name { font-size: 1.25rem; color: var(--c-main); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--c-main); }
.access-grid__note { font-size: 0.85rem; color: #4b5563; margin: 10px 0 18px; }
.access-grid__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* 住所・アクセス・電話のdl */
.access-dl { margin-bottom: 20px; }
.access-dl__row {
	display: grid; grid-template-columns: 88px 1fr; gap: 12px;
	padding: 12px 4px; border-bottom: 1px dashed #dfe5ee;
	font-size: 0.92rem;
}
.access-dl__row dt { font-weight: 700; color: var(--c-main); }
.access-dl__row dt::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--c-accent); margin-right: 8px; vertical-align: baseline; }
.access-dl__tel {
	font-family: var(--font-en);
	font-size: 1.5rem; font-weight: 600; color: var(--c-main); letter-spacing: 0.04em; line-height: 1;
}

/* ---------- 診療時間表 ---------- */
.hours-table-wrap { overflow-x: auto; }
.hours-table { border-collapse: collapse; width: 100%; font-size: 0.85rem; background: #fff; }
.hours-table th, .hours-table td { border: 1px solid #dfe5ee; padding: 9px 6px; text-align: center; white-space: nowrap; }
.hours-table tr:first-child th { background: var(--c-main); color: #fff; font-weight: 700; }
.hours-table tr:not(:first-child) th { background: var(--c-bg); color: var(--c-main); font-weight: 700; font-size: 0.8rem; }
.hours-table td.is-open { color: var(--c-accent); font-weight: 700; }
.hours-table td.is-closed { color: #9aa6b8; background: #f7f8fa; }

/* ---------- CTAバンド（全ページ共通・フッター直前） ---------- */
.cta-band {
	position: relative; overflow: hidden;
	background: linear-gradient(105deg, var(--c-main) 0%, color-mix(in srgb, var(--c-main) 72%, var(--c-sub)) 100%);
	color: #fff; text-align: center;
	padding: 74px 24px;
}
.cta-band::before {
	content: ""; position: absolute; inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 120px, rgba(255, 255, 255, 0.045) 120px 124px);
	pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 860px; margin: 0 auto; }
.cta-band__eyebrow { font-family: var(--font-en); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.26em; color: var(--c-accent); margin-bottom: 10px; }
.cta-band__title { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 700; margin-bottom: 12px; }
.cta-band__text { font-size: 0.93rem; opacity: 0.88; margin-bottom: 28px; }
.cta-band__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- お問い合わせ（CF7） ---------- */
.contact-form { background: #fff; color: var(--c-ink); border-radius: 18px; padding: 40px 36px; }
.contact-form--page { border: 1px solid #e5e9f0; box-shadow: 0 6px 24px rgba(20, 40, 80, 0.06); }
.contact-info { margin-bottom: 28px; }
.contact-info__item {
	display: grid; gap: 4px; justify-items: center; text-align: center;
	padding: 24px; background: var(--c-bg); border-radius: 16px;
}
.contact-info__label { font-size: 0.85rem; font-weight: 700; color: var(--c-main); }
.contact-info__tel { font-family: var(--font-en); font-size: 2.1rem; font-weight: 600; color: var(--c-main); letter-spacing: 0.04em; line-height: 1.1; }
.contact-info__note { font-size: 0.8rem; color: #6a7280; }
.contact-form label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 20px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	display: block; width: 100%; margin-top: 6px;
	padding: 12px 14px; font: inherit;
	border: 1.5px solid #d4dae4; border-radius: 10px;
	background: #fbfcfe;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
	outline: none; border-color: var(--c-sub);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-sub) 20%, transparent);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .cf7-note { font-size: 0.82rem; color: #6a7280; margin-bottom: 18px; }
.contact-form input[type="submit"] {
	display: block; width: 100%; padding: 16px;
	background: var(--c-accent); color: #fff;
	border: none; border-radius: 999px;
	font-weight: 700; font-size: 1.02rem; cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.contact-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
.cf7-missing { padding: 20px; background: #fff6f0; border: 1px solid #f0c8ad; border-radius: 12px; font-size: 0.9rem; color: #8a4b23; }

/* =================================================
   下層ページ共通
   ================================================= */
.page-hero {
	margin-top: 64px;
	background:
		linear-gradient(105deg, var(--c-main) 0%, color-mix(in srgb, var(--c-main) 75%, var(--c-sub)) 100%);
	color: #fff; position: relative; overflow: hidden;
}
.page-hero::after {
	content: ""; position: absolute; inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 120px, rgba(255, 255, 255, 0.045) 120px 124px);
}
.page-hero__inner { max-width: 1100px; margin: 0 auto; padding: 64px 24px 52px; position: relative; z-index: 1; }
.page-hero__eyebrow { font-family: var(--font-en); font-size: 0.85rem; letter-spacing: 0.28em; color: var(--c-accent); margin-bottom: 6px; font-weight: 600; }
.page-hero__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
.page-hero__title--article { font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.5; }
.page-hero__sub { margin-top: 8px; font-size: 0.9rem; opacity: 0.85; }
.page-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 14px; font-size: 0.85rem; }
.page-hero__meta time { font-family: var(--font-en); font-size: 1rem; letter-spacing: 0.05em; opacity: 0.9; }
.page-hero__cat { background: rgba(255, 255, 255, 0.16); padding: 3px 14px; border-radius: 999px; transition: background 0.2s ease; }
.page-hero__cat:hover { background: var(--c-accent); }

/* ---------- パンくず ---------- */
.breadcrumb { margin-bottom: 28px; font-size: 0.8rem; color: #6a7280; }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb__list li:not(:last-child)::after { content: "›"; margin-left: 6px; color: #b3bcc9; }
.breadcrumb__list a { color: var(--c-sub); }
.breadcrumb__list a:hover { text-decoration: underline; }

/* ---------- アーカイブレイアウト ---------- */
.archive-layout { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: start; }

.year-block { margin-bottom: 44px; }
.year-block__title { display: flex; align-items: baseline; gap: 6px; font-size: 1.15rem; color: var(--c-main); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-main); }
.year-block__num { font-family: var(--font-en); font-size: 1.9rem; font-weight: 600; color: var(--c-accent); line-height: 1; }

.archive-list { border-top: 1px solid #e5e9f0; }
.archive-row { border-bottom: 1px solid #e5e9f0; }
.archive-row__link {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px;
	padding: 15px 8px; transition: background 0.2s ease;
}
.archive-row__link:hover { background: var(--c-bg); }
.archive-row__date { font-family: var(--font-en); font-size: 0.95rem; color: var(--c-sub); letter-spacing: 0.04em; flex-shrink: 0; }
.archive-row__cat { font-size: 0.75rem; background: var(--c-bg); color: var(--c-main); padding: 2px 10px; border-radius: 999px; flex-shrink: 0; }
.archive-row__title { font-size: 0.95rem; }
.archive-empty { padding: 24px 0; color: #6a7280; font-size: 0.92rem; }

/* ---------- 年アコーディオン ---------- */
.year-acc { border: 1px solid #e0e5ee; border-radius: 14px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.year-acc__summary {
	display: flex; align-items: center; gap: 8px;
	padding: 16px 20px; cursor: pointer; list-style: none;
	font-weight: 700; color: var(--c-main);
	transition: background 0.2s ease;
}
.year-acc__summary::-webkit-details-marker { display: none; }
.year-acc__summary:hover { background: var(--c-bg); }
.year-acc__year { font-family: var(--font-en); font-size: 1.4rem; font-weight: 600; color: var(--c-accent); line-height: 1; }
.year-acc__count { margin-left: auto; font-size: 0.78rem; font-weight: 400; color: #6a7280; }
.year-acc__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.year-acc__icon::before, .year-acc__icon::after {
	content: ""; position: absolute; top: 50%; left: 0;
	width: 14px; height: 2px; background: var(--c-main);
	transform: translateY(-50%); transition: transform 0.3s ease;
}
.year-acc__icon::after { transform: translateY(-50%) rotate(90deg); }
.year-acc[open] .year-acc__icon::after { transform: translateY(-50%) rotate(0); }
.year-acc .archive-list { border-top: 1px solid #e5e9f0; padding: 0 20px 8px; }

/* ---------- カテゴリーナビ ---------- */
.term-nav { background: var(--c-bg); border-radius: 16px; padding: 24px 22px; position: sticky; top: 90px; }
.term-nav__title { font-size: 1rem; color: var(--c-main); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-main); }
.term-nav__item {
	display: flex; align-items: center; justify-content: space-between; gap: 8px;
	padding: 10px 12px; margin-bottom: 6px;
	background: #fff; border-radius: 10px; font-size: 0.88rem; font-weight: 500;
	transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.term-nav__item:hover { transform: translateX(4px); color: var(--c-main); box-shadow: 0 4px 12px rgba(20, 40, 80, 0.08); }
.term-nav__count { font-family: var(--font-en); font-size: 0.82rem; font-weight: 500; color: #9aa6b8; letter-spacing: 0.04em; }
.term-nav__item:hover .term-nav__count { color: var(--c-accent); }
.term-description { margin-bottom: 28px; font-size: 0.92rem; color: #4b5563; }

/* ---------- 記事詳細 ---------- */
.entry__thumb { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.entry__content { font-size: 1rem; }
.entry__content > * + * { margin-top: 1.4em; }
.entry__content h2 {
	font-size: 1.35rem; color: var(--c-main);
	padding: 10px 16px; border-left: 5px solid var(--c-accent);
	background: var(--c-bg); border-radius: 0 10px 10px 0;
	margin-top: 2.2em;
}
.entry__content h3 {
	font-size: 1.15rem; color: var(--c-main);
	padding-bottom: 8px; border-bottom: 2px solid color-mix(in srgb, var(--c-accent) 55%, transparent);
	margin-top: 2em;
}
.entry__content a { color: var(--c-sub); text-decoration: underline; }
.entry__content ul { padding-left: 1.4em; list-style: disc; }
.entry__content ol { padding-left: 1.4em; list-style: decimal; }
.entry__content blockquote { padding: 16px 20px; background: var(--c-bg); border-left: 4px solid var(--c-sub); border-radius: 0 10px 10px 0; color: #4b5563; }
.entry__content img { border-radius: 12px; }
.entry__content table { border-collapse: collapse; width: 100%; }
.entry__content th, .entry__content td { border: 1px solid #dfe5ee; padding: 10px 14px; font-size: 0.92rem; }
.entry__content th { background: var(--c-bg); color: var(--c-main); }

.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid #e5e9f0; font-size: 0.88rem; }
.post-nav a { color: var(--c-sub); }
.post-nav a:hover { text-decoration: underline; }
.post-nav__next { text-align: right; }

/* ---------- 院長紹介 ---------- */
.doctor { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: start; margin-bottom: 48px; }
.doctor__photo {
	aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden;
	background: #dfe5ee; display: grid; place-items: center;
	position: sticky; top: 90px;
}
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor__photo-placeholder { font-family: var(--font-en); letter-spacing: 0.2em; color: #9aa6b8; font-size: 0.85rem; }
.doctor__title { font-size: 0.85rem; font-weight: 700; color: var(--c-accent); margin-bottom: 6px; }
.doctor__name { font-size: 1.7rem; color: var(--c-main); margin-bottom: 20px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.doctor__name-en { font-family: var(--font-en); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; color: #9aa6b8; }
.doctor__message { font-size: 0.97rem; }

.doctor-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.doctor-detail__block { background: var(--c-bg); border-radius: 16px; padding: 26px 26px; }
.doctor-detail__heading { font-size: 1.02rem; color: var(--c-main); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-main); }
.doctor-detail__list li {
	position: relative; padding: 8px 0 8px 20px; font-size: 0.9rem;
	border-bottom: 1px dashed #dfe5ee;
}
.doctor-detail__list li::before {
	content: ""; position: absolute; left: 2px; top: 1.05em;
	width: 8px; height: 8px; border-radius: 2px; background: var(--c-accent);
}

/* ---------- リンクカード（症状ページ→診療案内） ---------- */
.link-card {
	margin-top: 2.2em; padding: 26px 28px;
	background: var(--c-bg); border-radius: 16px;
	border-left: 5px solid var(--c-accent);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.link-card__label { font-weight: 700; color: var(--c-main); font-size: 0.95rem; margin: 0 !important; }
.link-card__btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.75em 1.9em; border-radius: 999px;
	background: var(--c-main); color: #fff !important;
	font-weight: 700; font-size: 0.9rem; text-decoration: none !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.link-card__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); background: var(--c-accent); }

/* ---------- ページネーション ---------- */
.pagination { margin-top: 36px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
	border-radius: 10px; background: var(--c-bg); font-size: 0.9rem; font-weight: 500;
	transition: background 0.2s ease, color 0.2s ease;
}
.pagination .page-numbers.current { background: var(--c-main); color: #fff; }
.pagination .page-numbers:hover:not(.current) { background: var(--c-sub); color: #fff; }

/* =================================================
   フッター
   ================================================= */
.site-footer { background: var(--c-main); color: #fff; padding: 70px 0 0; border-top: 4px solid var(--c-accent); }
.site-footer__inner {
	max-width: 1280px; margin: 0 auto; padding: 0 24px 48px;
	display: grid; grid-template-columns: 1.55fr 1.3fr 0.7fr 1fr; gap: 40px;
}
.site-footer__name {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-size: clamp(0.95rem, 0.55vw + 0.62rem, 1.1rem); font-weight: 700;
	margin-bottom: 4px; line-height: 1.4;
	white-space: nowrap; /* クリニック名はPC幅で折り返さない */
}
.site-footer__mark {
	display: grid; place-items: center; flex-shrink: 0;
	width: 36px; height: 36px; border-radius: 10px;
	background: var(--c-accent); color: #fff; font-size: 1.2rem;
}
.site-footer__sub { font-size: 0.73rem; opacity: 0.72; margin-bottom: 18px; letter-spacing: 0.04em; }
.site-footer__address, .site-footer__access { font-size: 0.85rem; opacity: 0.9; margin-bottom: 6px; }
.site-footer__tel {
	display: inline-block; margin-top: 14px;
	font-family: var(--font-en);
	font-size: 1.9rem; font-weight: 600; letter-spacing: 0.04em; line-height: 1;
	color: #fff;
}
.site-footer__tel::before { content: "TEL "; font-size: 0.85rem; color: var(--c-accent); letter-spacing: 0.14em; }
.site-footer__tel-note { font-size: 0.72rem; opacity: 0.65; margin-top: 6px; }

.site-footer__heading {
	font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
	padding-bottom: 8px; margin-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer__heading:not(:first-child) { margin-top: 26px; }
.site-footer__heading::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--c-accent); margin-right: 8px; }
.site-footer__links { display: grid; gap: 2px; }
.site-footer__links--2col { grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.site-footer__links a {
	display: inline-block; padding: 4px 0; font-size: 0.83rem; opacity: 0.88;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-footer__links a::before { content: "› "; color: var(--c-accent); }
.site-footer__links a:hover { opacity: 1; transform: translateX(4px); }

.site-footer__hours-col { display: grid; gap: 12px; align-content: start; min-width: 0; }
.site-footer__col { min-width: 0; }
.site-footer__table th, .site-footer__table td { border-color: rgba(255, 255, 255, 0.22); padding: 8px 4px; font-size: clamp(0.68rem, 0.55vw + 0.5rem, 0.82rem); }
.site-footer__table { background: transparent; color: #fff; }
.site-footer__table tr:first-child th { background: rgba(255, 255, 255, 0.12); color: #fff; }
.site-footer__table tr:not(:first-child) th { background: rgba(255, 255, 255, 0.06); color: #fff; }
.site-footer__table td.is-open { color: var(--c-accent); }
.site-footer__table td.is-closed { color: rgba(255, 255, 255, 0.4); background: rgba(0, 0, 0, 0.12); }
.site-footer__hours-note { font-size: 0.78rem; opacity: 0.85; }

.site-footer__copy { text-align: center; padding: 18px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.75rem; opacity: 0.7; }

/* ---------- スマホ追従フッター ---------- */
.sticky-footer {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
	display: none;
	grid-template-columns: 1fr 1fr;
	box-shadow: 0 -4px 18px rgba(10, 20, 40, 0.18);
	transform: translateY(110%);
	transition: transform 0.35s ease;
}
.sticky-footer.is-visible { transform: translateY(0); }
.sticky-footer__btn {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	padding: 15px 8px; font-size: 0.92rem; font-weight: 700; color: #fff;
}
.sticky-footer__btn--reserve { background: var(--c-accent); }
.sticky-footer__btn--tel { background: var(--c-main); }
.sticky-footer__icon { width: 19px; height: 19px; flex-shrink: 0; }

/* =================================================
   スクロール演出
   ================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--d, 0s); }
.reveal.is-inview { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.reveal { opacity: 1; transform: none; }
	.hero__eyebrow, .hero__catch-line, .hero__sub, .hero__cta { opacity: 1; transform: none; }
}

/* =================================================
   レスポンシブ
   ================================================= */
@media (max-width: 1680px) {
	.gnav__link { padding: 9px 9px; font-size: 0.86rem; }
	.site-header__logo-name { font-size: 1.08rem; }
	.site-header__logo-mark { width: 44px; height: 44px; font-size: 1.35rem; }
}

@media (max-width: 1560px) {
	.site-header__tel { display: none; } /* 中間幅はWEB予約ボタンのみ */
	.gnav__link { padding: 9px 8px; font-size: 0.84rem; }
	.site-header__inner { gap: 16px; }
}

@media (max-width: 1360px) {
	.gnav__link { padding: 8px 6px; font-size: 0.8rem; }
	.site-header__logo-name { font-size: 0.98rem; }
	.site-header__logo-sub { font-size: 0.58rem; letter-spacing: 0.08em; }
	.site-header__logo-mark { width: 40px; height: 40px; font-size: 1.2rem; }
	.site-header__reserve { padding: 0.65em 1.3em; font-size: 0.86rem; }
	.site-header__inner { gap: 12px; padding: 10px 18px; }
}

@media (max-width: 1179px) {
	.gnav { display: none; }
	.drawer-btn {
		display: grid; place-items: center; gap: 5px;
		width: 48px; height: 48px; z-index: 300; position: relative;
	}
	.drawer-btn__line { display: block; width: 24px; height: 2px; background: var(--c-main); transition: transform 0.3s ease, opacity 0.3s ease; }
}

@media (max-width: 1280px) {
	/* フッター4カラム→2カラム：診療時間表の横スクロールを防ぐ */
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px 44px; }
}

@media (max-width: 900px) {
	.site-header__cta { display: none; }
	.symptom-grid { grid-template-columns: repeat(2, 1fr); }
	.sports-grid { grid-template-columns: 1fr; }
	.card-grid { grid-template-columns: repeat(2, 1fr); }
	.facility-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.news-list__item time { min-width: 76px; }
	.access-grid { grid-template-columns: 1fr; }
	.archive-layout { grid-template-columns: 1fr; }
	.term-nav { position: static; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
	.doctor { grid-template-columns: 1fr; gap: 28px; }
	.doctor__photo { position: static; max-width: 340px; }
	.doctor-detail { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	html { scroll-padding-top: 72px; }
	body { font-size: 15px; }
	.section { padding: 60px 0; }
	.section__inner { padding: 0 18px; }
	.section__inner--archive, .section__inner--single { padding: 28px 18px 70px; }

	.site-header__inner { padding: 8px 14px; gap: 10px; }
	.site-header__logo { gap: 8px; min-width: 0; }
	.site-header__logo-name { font-size: 0.92rem; }
	.site-header__logo-sub { font-size: 0.55rem; letter-spacing: 0.03em; }
	.site-header__logo-sub::before { width: 10px; margin-right: 5px; }
	.site-header__logo-mark { width: 38px; height: 38px; border-radius: 11px; font-size: 1.2rem; }
	.site-header__logo-mark::after { width: 14px; height: 14px; right: -5px; bottom: -5px; }

	.hero { min-height: 88svh; }
	.hero__content { padding: 110px 22px 90px; }
	.hero__cta .btn { width: 100%; }
	.hero__cta { flex-direction: column; }
	.hero__scroll { display: none; }

	.symptom-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.symptom-card { padding: 14px 14px; min-height: 72px; font-size: 0.82rem; border-radius: 12px; }
	.service-grid { grid-template-columns: 1fr; }
	.card-grid { grid-template-columns: 1fr; }
	.facility-grid { grid-template-columns: 1fr 1fr; }
	.facility-item__cap { font-size: 0.8rem; }

	.contact-form { padding: 28px 20px; }
	.page-hero__inner { padding: 44px 18px 36px; }
	.archive-row__link { padding: 13px 4px; }
	.year-acc .archive-list { padding: 0 14px 6px; }

	.cta-band { padding: 56px 20px; }
	.cta-band__btns { flex-direction: column; }
	.cta-band__btns .btn { width: 100%; }

	.site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
	.site-footer__links--2col { grid-template-columns: 1fr 1fr; }

	.access-dl__row { grid-template-columns: 76px 1fr; font-size: 0.88rem; }
	.access-grid__btns .btn { width: 100%; }
	.hours-table { font-size: 0.78rem; }
	.hours-table th, .hours-table td { padding: 8px 4px; }

	/* コラムはスマホでは3件表示（4件目はスクロール負担軽減のため非表示） */
	.section--column .card-grid > .post-card:nth-child(4) { display: none; }

	.link-card { flex-direction: column; align-items: stretch; text-align: center; padding: 22px 18px; }
	.link-card__btn { width: 100%; }

	.contact-info__tel { font-size: 1.8rem; }
	.doctor__name { font-size: 1.4rem; }

	/* 追従フッター表示＋被り防止 */
	.sticky-footer { display: grid; }
	body { padding-bottom: 58px; }
	.site-footer { padding-bottom: 10px; }
}
