@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;800&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=EB+Garamond:ital@0;1&display=swap');

/* ==================================================
   トークン
================================================== */
:root {
	--paper: #faf7f1;
	--paper-soft: #f2ede1;
	--ink: #243330;
	--ink-soft: #5c6864;
	--ink-faint: #8b948f;
	--teal: #0e6b5d;
	--teal-dark: #0a4f45;
	--teal-tint: #dcebe6;
	--teal-tint-2: #eef5f2;
	--sand: #b8874a;
	--sand-dark: #96692f;
	--sand-tint: #f1e4cc;
	--line: #ddd4c0;
	--white: #ffffff;
	--shadow: 0 12px 32px rgba(36, 51, 48, 0.10);
	--shadow-sm: 0 4px 14px rgba(36, 51, 48, 0.08);
	--radius-lg: 20px;
	--radius-md: 12px;
	--radius-sm: 6px;
	--font-mincho: 'Shippori Mincho', serif;
	--font-gothic: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
	--font-en: 'EB Garamond', serif;
	--container: 1080px;
}

/* ==================================================
   リセット / ベース
================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-gothic);
	font-size: 15px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 64px;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--sand-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-mincho); font-weight: 600; color: var(--ink); }
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 900px) {
	body { font-size: 16px; padding-bottom: 0; }
	.container { padding: 0 40px; }
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-en);
	font-style: italic;
	font-size: 14px;
	letter-spacing: 0.14em;
	color: var(--sand-dark);
	margin: 0 0 10px;
}

.section {
	padding: 56px 0;
}
.section--soft { background: var(--teal-tint-2); }
.section--sand { background: var(--sand-tint); }

.section-head {
	margin: 0 0 32px;
	text-align: center;
}
.section-head h2 {
	font-size: 24px;
	letter-spacing: 0.04em;
}
.section-head .eyebrow { display: block; margin-bottom: 8px; }

@media (min-width: 900px) {
	.section { padding: 88px 0; }
	.section-head h2 { font-size: 30px; }
}

/* ==================================================
   ボタン
================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
	background: var(--teal);
	color: var(--white);
}
.btn--primary:hover { background: var(--teal-dark); color: var(--white); }

.btn--ghost {
	background: transparent;
	border-color: var(--teal);
	color: var(--teal-dark);
}
.btn--ghost:hover { background: var(--teal-tint); color: var(--teal-dark); }

.btn--sand {
	background: var(--sand);
	color: var(--white);
}
.btn--sand:hover { background: var(--sand-dark); color: var(--white); }

/* ==================================================
   ヘッダー / ナビ
================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 247, 241, 0.94);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--line);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand-mark {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}
.brand-text .ja {
	font-family: var(--font-mincho);
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.02em;
}
.brand-text .en {
	font-family: var(--font-en);
	font-size: 10px;
	letter-spacing: 0.16em;
	color: var(--ink-faint);
}

.nav-desktop { display: none; }

@media (min-width: 1000px) {
	.nav-desktop {
		display: flex;
		align-items: center;
		gap: 20px;
		margin-right: 24px;
	}
	.nav-desktop a {
		font-size: 13.5px;
		color: var(--ink-soft);
		font-weight: 500;
		letter-spacing: 0.02em;
		position: relative;
		padding: 4px 0;
		white-space: nowrap;
	}
	.nav-desktop a:hover { color: var(--teal-dark); }
	.nav-desktop a.is-current { color: var(--teal-dark); }
	.nav-desktop a.is-current::after {
		content: '';
		position: absolute;
		left: 0; right: 0; bottom: -4px;
		height: 2px;
		background: var(--sand);
	}
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tel-pill {
	display: none;
}
@media (min-width: 640px) {
	.tel-pill {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 10px 18px;
		border-radius: 999px;
		background: var(--teal);
		color: var(--white);
		font-family: var(--font-en);
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 0.01em;
		white-space: nowrap;
		flex-shrink: 0;
	}
	.tel-pill:hover { background: var(--teal-dark); color: var(--white); }
	.tel-pill small { display: none; }
}
.nav-mobile .tel-pill small {
	display: block;
	font-family: var(--font-gothic);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.05em;
	white-space: normal;
}

.menu-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	cursor: pointer;
}
.menu-btn span {
	display: block;
	height: 2px;
	background: var(--ink);
	margin: 0 8px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1000px) {
	.menu-btn { display: none; }
}

.nav-mobile {
	max-height: 0;
	overflow: hidden;
	background: var(--white);
	border-bottom: 1px solid var(--line);
	transition: max-height 0.28s ease;
}
.nav-mobile.is-open { max-height: 520px; }
.nav-mobile ul { padding: 8px 24px 20px; }
.nav-mobile a {
	display: block;
	padding: 13px 4px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	color: var(--ink);
}
.nav-mobile a.is-current { color: var(--teal-dark); font-weight: 700; }
.nav-mobile .tel-pill { display: flex; margin: 16px 4px 0; justify-content: center; }

@media (min-width: 1000px) {
	.nav-mobile { display: none; }
}

/* ==================================================
   モバイル固定電話バー
================================================== */
.call-bar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 90;
	display: flex;
	background: var(--teal-dark);
	box-shadow: 0 -6px 18px rgba(0,0,0,0.14);
}
.call-bar a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	padding: 13px 8px;
}
.call-bar a.map-link {
	flex: 0 0 34%;
	background: rgba(255,255,255,0.08);
	font-size: 13px;
	font-weight: 500;
}
.call-bar svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (min-width: 1000px) {
	.call-bar { display: none; }
}

/* ==================================================
   パンくず / ページヘッダー(下層ページ)
================================================== */
.page-hero {
	padding: 40px 0 36px;
	background: var(--teal-tint-2);
	border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
	font-size: 12px;
	color: var(--ink-faint);
	margin-bottom: 14px;
}
.page-hero .crumb a { color: var(--ink-faint); }
.page-hero .crumb a:hover { color: var(--teal-dark); }
.page-hero h1 {
	font-size: 28px;
	letter-spacing: 0.03em;
}
.page-hero p.lead {
	margin: 12px 0 0;
	color: var(--ink-soft);
	max-width: 640px;
}
@media (min-width: 900px) {
	.page-hero { padding: 64px 0 52px; }
	.page-hero h1 { font-size: 36px; }
}

/* ==================================================
   ホームヒーロー
================================================== */
.hero {
	padding: 44px 0 56px;
	overflow: hidden;
}
.hero .container {
	display: grid;
	gap: 36px;
}
.hero-copy .eyebrow { display: block; }
.hero-copy h1 {
	font-size: 30px;
	line-height: 1.55;
	margin: 6px 0 20px;
	letter-spacing: 0.02em;
}
.hero-copy h1 em {
	font-style: normal;
	color: var(--teal-dark);
	position: relative;
}
.hero-copy p.lead {
	color: var(--ink-soft);
	max-width: 480px;
	margin-bottom: 26px;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-visual {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 14px;
	align-items: end;
}
.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow);
}
.hero-visual .ph-a { aspect-ratio: 4 / 5; }
.hero-visual .ph-b { aspect-ratio: 3 / 4; margin-top: 34px; }

.seal {
	position: absolute;
	width: 92px;
	height: 92px;
	left: -10px;
	bottom: -18px;
	z-index: 5;
	filter: drop-shadow(0 6px 10px rgba(36,51,48,0.18));
}

@media (min-width: 860px) {
	.hero .container {
		grid-template-columns: 1fr 0.92fr;
		align-items: center;
	}
	.hero-copy h1 { font-size: 40px; }
	.seal { width: 116px; height: 116px; left: -20px; bottom: -24px; }
}

/* ==================================================
   お知らせボックス
================================================== */
.notice {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: var(--white);
	border: 1px solid var(--line);
	border-left: 4px solid var(--sand);
	border-radius: var(--radius-sm);
	padding: 20px 22px;
	margin-bottom: 20px;
}
.notice .tag {
	flex-shrink: 0;
	font-family: var(--font-mincho);
	font-weight: 700;
	font-size: 13px;
	color: var(--sand-dark);
	background: var(--sand-tint);
	padding: 5px 12px;
	border-radius: 999px;
}
.notice .body { font-size: 14px; color: var(--ink-soft); line-height: 1.85; }
.notice .body strong { color: var(--ink); }

/* ==================================================
   カード類
================================================== */
.grid {
	display: grid;
	gap: 20px;
}
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; }
.card .card-body { padding: 16px 18px 18px; }
.card .card-body .label {
	font-size: 13px;
	font-weight: 700;
	color: var(--teal-dark);
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.card .card-body p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ==================================================
   セクション見出し(本文内)
================================================== */
.h-line {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-family: var(--font-mincho);
	font-size: 19px;
	font-weight: 700;
	color: var(--ink);
}
.h-line::before {
	content: '';
	width: 5px;
	height: 22px;
	background: var(--teal);
	border-radius: 2px;
	flex-shrink: 0;
}
.h-line .sub {
	font-family: var(--font-en);
	font-style: italic;
	font-size: 12px;
	color: var(--ink-faint);
	letter-spacing: 0.06em;
}

.prose { color: var(--ink-soft); margin-bottom: 40px; }
.prose:last-child { margin-bottom: 0; }

/* ==================================================
   診療方針(番号付きリスト)
================================================== */
.policy-list {
	counter-reset: policy;
	margin-bottom: 44px;
}
.policy-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.policy-item:first-child { padding-top: 0; }
.policy-num {
	font-family: var(--font-mincho);
	font-size: 30px;
	color: var(--sand);
	line-height: 1;
}
.policy-item h3 {
	font-size: 16px;
	margin-bottom: 6px;
}
.policy-item p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ==================================================
   診療の流れ(縦フロー)
================================================== */
.flow {
	position: relative;
	margin: 0 0 8px;
	padding-left: 46px;
}
.flow::before {
	content: '';
	position: absolute;
	left: 17px; top: 10px; bottom: 10px;
	width: 1px;
	background: var(--line);
}
.flow-step {
	position: relative;
	padding-bottom: 30px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-kanji {
	position: absolute;
	left: -46px; top: -4px;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	font-family: var(--font-mincho);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.flow-step h4 { font-size: 15.5px; margin-bottom: 2px; }
.flow-step p { margin: 0; font-size: 13px; color: var(--ink-soft); }

/* ==================================================
   表
================================================== */
.table-wrap { overflow-x: auto; margin-bottom: 20px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.tbl { font-size: 13.5px; }
.tbl th, .tbl td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
	text-align: left;
}
.tbl th:last-child, .tbl td:last-child { border-right: none; }
.tbl tr:last-child th, .tbl tr:last-child td { border-bottom: none; }
.tbl thead th {
	background: var(--teal-tint);
	color: var(--teal-dark);
	font-weight: 700;
	text-align: center;
}
.tbl tbody th {
	background: var(--paper-soft);
	white-space: nowrap;
	font-weight: 700;
}
.tbl td.center { text-align: center; }
.tbl caption { caption-side: bottom; text-align: left; padding-top: 8px; font-size: 12px; color: var(--ink-faint); }

.compare-block { margin-bottom: 32px; }
.compare-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.compare-head .icon {
	width: 54px; height: 54px;
	flex-shrink: 0;
	background: var(--teal-tint-2);
	border-radius: var(--radius-sm);
	display: flex; align-items: center; justify-content: center;
}
.compare-head .icon svg { width: 30px; height: 30px; }
.compare-head h3 { font-size: 17px; }

.pros-cons { display: grid; gap: 12px; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pc-box { border-radius: var(--radius-sm); padding: 14px 16px; }
.pc-box.pro { background: var(--teal-tint-2); }
.pc-box.con { background: var(--sand-tint); }
.pc-box .pc-title { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.pc-box.pro .pc-title { color: var(--teal-dark); }
.pc-box.con .pc-title { color: var(--sand-dark); }
.pc-box ul { padding-left: 18px; list-style: disc; font-size: 13px; color: var(--ink-soft); }
.pc-box li { margin-bottom: 4px; }

/* ==================================================
   設備一覧
================================================== */
.equip-list { display: grid; gap: 28px; }
.equip-row {
	display: grid;
	gap: 16px;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
}
.equip-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.equip-row .txt { padding: 4px 20px 20px; }
@media (min-width: 700px) {
	.equip-row { grid-template-columns: 240px 1fr; }
	.equip-row img { aspect-ratio: auto; height: 100%; }
	.equip-row .txt { padding: 20px 24px 20px 0; }
}
.equip-row h3 { font-size: 16px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.equip-row h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.equip-row p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

/* ==================================================
   スタンプ / シール
================================================== */
.stamp-note {
	display: flex;
	gap: 16px;
	align-items: center;
	background: var(--teal-tint-2);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin: 32px 0;
}
.stamp-note svg { width: 58px; height: 58px; flex-shrink: 0; }
.stamp-note p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.stamp-note strong { color: var(--teal-dark); }

/* ==================================================
   スタッフ / 院長
================================================== */
.profile {
	display: grid;
	gap: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin-bottom: 8px;
}
.profile img {
	width: 140px;
	border-radius: var(--radius-md);
	margin: 0 auto;
}
.profile .name {
	font-family: var(--font-mincho);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 2px;
}
.profile .name .en {
	display: block;
	font-family: var(--font-en);
	font-style: italic;
	font-size: 13px;
	color: var(--ink-faint);
	font-weight: 400;
	margin-top: 3px;
}
.profile .role { font-size: 13px; color: var(--sand-dark); margin-bottom: 14px; }
.profile dl { font-size: 13.5px; color: var(--ink-soft); }
.profile dl div { display: flex; gap: 10px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.profile dl dt { flex: 0 0 76px; color: var(--ink-faint); }
.profile dl div:last-child { border-bottom: none; }
.profile .assoc { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); line-height: 1.9; }

@media (min-width: 700px) {
	.profile { grid-template-columns: 160px 1fr; padding: 32px; }
	.profile img { margin: 0; }
}

/* ==================================================
   求人
================================================== */
.job-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.job-card .job-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}
.job-card .job-head h3 { font-size: 19px; }
.job-card .status {
	font-size: 12px;
	font-weight: 700;
	color: var(--teal-dark);
	background: var(--teal-tint);
	padding: 5px 14px;
	border-radius: 999px;
}
.job-card dl { display: grid; gap: 0; }
.job-card dl div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}
.job-card dl div:last-child { border-bottom: none; }
.job-card dt { color: var(--ink-faint); }
.job-card dd { margin: 0; color: var(--ink); }

/* ==================================================
   アクセス
================================================== */
.access-grid {
	display: grid;
	gap: 24px;
}
@media (min-width: 860px) {
	.access-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.map-frame {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--white);
}
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }
.map-frame .map-link-row {
	padding: 12px 16px;
	font-size: 13px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.map-static {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--white);
	padding: 12px;
}

.info-table div {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}
.info-table div:last-child { border-bottom: none; }
.info-table dt { color: var(--ink-faint); }
.info-table dd { margin: 0; }

/* ==================================================
   フッター
================================================== */
.site-footer {
	background: var(--ink);
	color: #cfd8d4;
	padding: 48px 0 24px;
	margin-top: 40px;
}
.footer-grid {
	display: grid;
	gap: 32px;
	margin-bottom: 32px;
}
@media (min-width: 760px) {
	.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand .brand-text .ja { color: var(--white); }
.footer-brand .brand-text .en { color: #94a19c; }
.footer-brand p { font-size: 12.5px; color: #9aa6a1; margin-top: 14px; line-height: 1.9; }
.site-footer h5 {
	font-family: var(--font-gothic);
	font-size: 13px;
	color: #9aa6a1;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}
.footer-nav a, .footer-info div {
	display: block;
	font-size: 13.5px;
	color: #dbe3df;
	padding: 6px 0;
}
.footer-nav a:hover { color: var(--white); }
.footer-info div { color: #b7c1bc; padding: 4px 0; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 20px;
	font-size: 11.5px;
	color: #7c8985;
	text-align: center;
}

/* ==================================================
   ユーティリティ
================================================== */
.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.center { text-align: center; }
