.ts-animal-list {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.ts-animal-list__item {
	display: flex;
	flex-direction: column;
	text-align: center;
}

/* キャラクター画像は領域内で縦中央揃え（犬194px/猫184pxの高さ差を中央で吸収） */
.ts-animal-list__item-fig {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ts-animal-list__item-label {
	background-color: #eb4b55;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	border-radius: 40px;
	color: #fff;
	line-height: 1;
	padding: 3px 20px;
	min-width: 50px;
	width: fit-content;
	margin-inline: auto;
	margin-top: 10px;
}

/* 犬（AUNレビュー: 猫と足位置・サイズ感を揃えるため 200px→194px） */
.ts-animal-list__item:nth-child(1) img {
	height: 194px;
}

/* 猫（AUNレビュー: 200px→ではなく 165px→184px に拡大して犬と揃える） */
.ts-animal-list__item:nth-child(2) img {
	height: 153px;
	transform: translateY(8px);
}

/* 夜間診療料金ボックスの上余白 */
.bunin-i-nightfee {
	margin-top: 24px;
}

/* ご予約についてボックスの下余白（FLOWセクションとの間隔確保） */
.bunin-i-reserve {
	margin-bottom: 40px;
}

/* アクセス：左の住所情報を右の地図に対して垂直中央寄せ */
.bunin-i-access .bunin-accessbox-inner {
	align-items: center;
}

/* ── 専門外来のご案内カード（医師写真＋プロフィール形式） ── */
.bunin-ot {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 24px;
}
.bunin-ot__footlink {
	margin-top: 32px;
}
.bunin-ot__footlink .c-btn2 {
	width: 250px;
	height: auto;
	padding: 10px 20px;
}
.bunin-ot__item {
	border: 1px solid #5da4d6;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
}
.bunin-ot__head {
	background: #e8f6fa;
	padding: 16px 28px;
}
.bunin-ot .bunin-ot__head .bunin-ot__title {
	position: relative;
	margin: 0;
	padding: 0 0 0 16px;
	border: none;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4;
	color: #5da4d6;
}
.bunin-ot .bunin-ot__head .bunin-ot__title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 1.1em;
	border-radius: 3px;
	background: #5da4d6;
}
.bunin-ot__body {
	padding: 24px 28px 28px;
}
.bunin-ot__lead {
	margin: 0 0 22px;
	font-size: 0.95rem;
	line-height: 1.9;
	color: #333;
}
.bunin-ot__doctors {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
	gap: 18px;
}
.bunin-ot-doctor {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}
.bunin-ot-doctor__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	overflow: hidden;
	background: #eef4f6;
}
.bunin-ot-doctor__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bunin-ot-doctor__photo--empty {
	position: relative;
	background-color: #eef4f6;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23bcd4dd'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4.4 3.6-7 8-7s8 2.6 8 7z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center 36%;
	background-size: 46%;
}
.bunin-ot-doctor__photo--empty::after {
	content: '写真準備中';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10%;
	text-align: center;
	font-size: 0.68rem;
	letter-spacing: 0.05em;
	color: #9bb7c1;
}
.bunin-ot-doctor__role {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.4;
	color: #5da4d6;
}
.bunin-ot-doctor__name {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #333;
}
.bunin-ot__meta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 18px;
	margin: 0 0 22px;
	padding: 16px 20px;
	border-radius: 4px;
	background: #f7fbfd;
	font-size: 0.9rem;
}
.bunin-ot__meta > div {
	display: contents;
}
.bunin-ot__meta dt {
	color: #5da4d6;
	font-weight: 600;
	white-space: nowrap;
}
.bunin-ot__meta dd {
	margin: 0;
	color: #444;
	line-height: 1.7;
}

/* SP時はボタンを中央寄せ（「HPはこちら」と同じ挙動） */
@media screen and (max-width: 999px) {
	.bunin-ot .c-btn2-list {
		justify-content: center;
	}
	.bunin-ot__footlink .c-btn2 {
		margin-inline: auto;
	}
}

@media screen and (max-width: 767px) {
	.bunin-ot__head {
		padding: 14px 18px;
	}
	.bunin-ot__body {
		padding: 20px 18px 22px;
	}
	.bunin-ot .bunin-ot__head .bunin-ot__title {
		font-size: 1.15rem;
	}
	.bunin-ot__doctors {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	.bunin-ot__meta {
		grid-template-columns: 1fr;
		gap: 2px 0;
	}
	.bunin-ot__meta dt {
		margin-top: 8px;
	}
}

/* 専門外来の診療科ボタンに、リンクであることを示す右矢印アイコンを表示 */
.bunin-ot .c-btn2-list .c-btn2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: auto;
	min-width: 150px;
	padding: 0 20px;
}
.bunin-ot .c-btn2-list .c-btn2::after {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	flex: 0 0 auto;
}

.bunin-ot .c-btn2 {
	border-radius: 4px;
}

/* ============================================================
   初めての方へ（FLOW）バナー
   Figma パーツ一覧 node 310:614 — 背景画像＋下方向グラデーション、
   画像内に白見出し、画像下に本文、中央にボタン
   ============================================================ */
#shonan-tsujido .bunin-i-flowbanner__visual {
	position: relative;
	aspect-ratio: 1160 / 409;
	border-radius: 16px;
	overflow: hidden;
}

#shonan-tsujido .bunin-i-flowbanner__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 下に向かって暗くなるオーバーレイ（白見出しの視認性確保） */
#shonan-tsujido .bunin-i-flowbanner__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

/* 画像内の白見出し（左下） */
#shonan-tsujido .bunin-i-flowbanner__title {
	position: absolute;
	left: 50px;
	bottom: 60px;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	color: #fff;
	font-family: var(--ts-font-gothic);
	font-weight: 700;
	font-size: 2rem; /* 32px */
	line-height: 1.5;
}

/* 画像下の本文 */
#shonan-tsujido .bunin-i-flowbanner__text {
	margin: 24px 0 0;
	color: var(--ts-text);
	font-size: 1rem;
	line-height: 1.7;
}

/* ボタン（中央寄せ） */
#shonan-tsujido .bunin-i-flowbanner__action {
	margin-top: 24px;
	text-align: center;
}

#shonan-tsujido .bunin-i-flowbanner__action .c-btn2 {
	margin-inline: auto;
}

@media screen and (max-width: 999px) {
	#shonan-tsujido .bunin-i-flowbanner__visual {
		aspect-ratio: 16 / 9;
	}
	#shonan-tsujido .bunin-i-flowbanner__title {
		left: 24px;
		bottom: 24px;
		font-size: 1.25rem; /* 20px */
	}
	#shonan-tsujido .bunin-i-flowbanner__text {
		margin-top: 20px;
	}
}

/* ============================================================
   診療時間カード(.ts-clinic) + 予約バー(.ts-reservation)
   トップページ(shonan-tsujido/top/css/index.css)と同一デザインを
   診療案内ページへ移植。--tsujido-* 変数は当ページが top/index.css を
   読み込まないため、night-time.css と同様にここで自前定義する。
   ※ .ts-pill-btn / .ts-circle-arrow の土台・緑矢印は
     shonan-tsujido/common/css/common.css に既定義のため再定義しない。
   ============================================================ */
#shonan-tsujido {
	--tsujido-accent: #5da4d6;
	--tsujido-navy: #1a3a5c;
}
:root {
	--tsujido-red: #dc5653;
	--tsujido-white: #fff;
	--tsujido-text-primary: #222;
	--tsujido-text-heading: #2d2d2d;
	--tsujido-bg-light: #f7f9fc;
	--tsujido-bg-pink: #fff1f2;
	--tsujido-border: #dde4ea;
	--tsujido-border-light: #ececec;
	--tsujido-font-mincho: 'Shippori Mincho', 'Yu Mincho', '游明朝', serif;
	--tsujido-font-en: 'Marcellus', serif;
}

/* 診療時間・アクセス — 2カラム（フルワイド） */
.ts-clinic {
	overflow: hidden;
}

.ts-clinic__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
}

.ts-clinic__photo {
	position: relative;
	overflow: hidden;
}

.ts-clinic__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ts-clinic__panel {
	background: var(--tsujido-bg-light);
	display: flex;
	align-items: center;
}

.ts-clinic__panel-inner {
	padding: clamp(32px, 5vw, 64px);
	width: 100%;
	max-width: 500px;
	margin-right: auto;
	text-align: center;
}

.ts-clinic__logo {
	margin-bottom: 20px;
}

.ts-clinic__logo img {
	width: clamp(240px, 70%, 331px);
	height: auto;
	display: inline-block;
}

/* 「Clinic Schedule」: Marcellus Regular */
.ts-clinic__title-en {
	font-family: var(--tsujido-font-en);
	font-weight: 400;
	font-size: clamp(2rem, 3.4vw, 2.375rem);
	color: var(--tsujido-accent);
	letter-spacing: 0.05em;
	line-height: 1.2;
}

/* 「診察時間」: Shippori Mincho SemiBold 16px */
.ts-clinic__title-ja {
	font-family: var(--tsujido-font-mincho);
	font-weight: 600;
	font-size: 16px;
	color: var(--tsujido-text-primary);
	margin-bottom: 12px;
}

.ts-clinic__badges {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

/* 「全診療科」: 背景・枠線なしのプレーンテキスト */
.ts-clinic__badge {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--tsujido-text-heading);
}

/* 「完全予約制」: 角丸なしの長方形・赤背景タグ */
.ts-clinic__badge--accent {
	font-weight: 700;
	padding: 5px 10px;
	background: var(--tsujido-red);
	color: var(--tsujido-white);
}

/* 診療時間グリッド：テーマ共通の定義表スタイル（table:not(.table-schedule)）は
   PCで列幅27%固定・SPでセル縦積み(display:block)を強制し当グリッドを壊すため、
   テーブルに table-schedule クラスを付与して除外している。
   その上で .table-schedule 既定（td幅55px / padding 33px!important 等）を
   #shonan-tsujido スコープ＋必要箇所のみ !important で当カード用に上書きする。 */
#shonan-tsujido .ts-clinic__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 14px;
}

#shonan-tsujido .ts-clinic__table thead th,
#shonan-tsujido .ts-clinic__table tbody td {
	border: 0;
	border-bottom: 1px solid var(--tsujido-border);
	padding: 9px 2px !important; /* common-bunin の .table-schedule td 33px!important を打ち消す */
	text-align: center;
	vertical-align: middle;
	width: auto;
	background: transparent;
}

/* 1列目（時間ラベル）を広めに確保し、曜日7列で残りを等分 */
#shonan-tsujido .ts-clinic__table thead th:first-child,
#shonan-tsujido .ts-clinic__table tbody td:first-child {
	width: 33%;
}

#shonan-tsujido .ts-clinic__table thead th {
	color: var(--tsujido-text-primary);
	font-weight: 400;
	font-size: 13px;
}

#shonan-tsujido .ts-clinic__table tbody td.ts-clinic__time-label {
	text-align: left;
	font-size: 12px;
	font-weight: 400;
	color: var(--tsujido-accent);
	white-space: normal; /* 狭幅では折り返して右端の曜日の見切れを防ぐ */
	word-break: normal;
	line-height: 1.4;
}

#shonan-tsujido .ts-clinic__table .ts-clinic__time-label span {
	margin: 0 1px;
}

#shonan-tsujido .ts-clinic__table tbody td:not(.ts-clinic__time-label) {
	color: var(--tsujido-accent);
	font-weight: 400;
	font-size: 13px;
}

#shonan-tsujido .ts-clinic__table tbody tr.ts-clinic__row--night td.ts-clinic__time-label,
#shonan-tsujido .ts-clinic__table tbody tr.ts-clinic__row--night td:not(.ts-clinic__time-label) {
	color: var(--tsujido-navy);
	font-weight: 700;
}

.ts-clinic__schedule-note {
	font-size: 12px;
	color: var(--tsujido-text-primary);
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: left;
}

.ts-clinic__access {
	border-top: 1px solid var(--tsujido-border);
	padding-top: 20px;
	text-align: left;
}

.ts-clinic__access-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--tsujido-text-primary);
	margin: 0;
}

.ts-clinic__address {
	font-size: 16px;
	color: var(--tsujido-text-primary);
	line-height: 1.7;
	margin: 0;
}

.ts-clinic__map-link {
	display: inline-block;
	font-size: 15px;
	color: var(--tsujido-accent);
	text-decoration: underline;
	margin-bottom: 16px;
}

/* 予約・お問い合わせ CTAバー */
.ts-reservation {
	padding: 40px 0;
}

.ts-reservation__inner {
	display: flex;
	gap: 30px;
	background: var(--tsujido-bg-pink);
}

.ts-reservation__method {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--tsujido-red);
	padding: 13px 20px;
	flex-shrink: 0;
}

.ts-reservation__method-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--tsujido-white);
	line-height: 1.5;
}

.ts-reservation__method-badge {
	border: 1px solid var(--tsujido-border-light);
	color: var(--tsujido-white);
	font-size: 16px;
	line-height: 1.5;
	padding: 3px 12px;
}

.ts-reservation__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

.ts-reservation__phone {
	min-width: 0;
}

.ts-reservation__tel {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.ts-reservation__tel:hover {
	opacity: 0.85;
}

.ts-reservation__tel-label {
	font-size: 18px;
	color: var(--tsujido-accent);
	font-weight: 700;
}

.ts-reservation__tel-num {
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	letter-spacing: 0.04em;
	text-decoration: underline;
}

.ts-reservation__note {
	font-size: 13px;
	color: var(--tsujido-text-heading);
	line-height: 1.7;
	margin: 8px 0 0;
}

.ts-reservation__note .sp-only {
	display: none;
}

.ts-reservation__web-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--tsujido-red);
	border: 1px solid var(--tsujido-red);
	color: var(--tsujido-white);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	padding: 5px 10px 5px 32px;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition:
		opacity 0.2s,
		transform 0.2s;
}

.ts-reservation__web-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
	color: var(--tsujido-white);
}

/* Web予約（赤背景）の矢印は「白円＋赤シェブロン」画像。
   common.css の .ts-pill-btn--red と同じ実体を参照（パスは information/css 基準） */
.ts-reservation__web-btn .ts-circle-arrow {
	background-color: transparent;
	background-image: url(../../top/images/arrow-red.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 21px 21px;
}

/* レスポンシブ: SP（〜999px） */
@media screen and (max-width: 999px) {
	.ts-clinic__inner {
		grid-template-columns: 1fr;
	}

	.ts-clinic__photo {
		height: 240px;
	}

	/* 狭幅で表の使える横幅を確保するためパネル左右余白を縮小 */
	.ts-clinic__panel-inner {
		padding: 28px 20px;
		max-width: none;
	}

	.ts-reservation__inner {
		flex-direction: column;
		text-align: center;
		padding: 0 0 28px;
		gap: 0;
		overflow: hidden;
		border: 1px solid var(--tsujido-red);
	}

	.ts-reservation__method {
		flex-direction: row;
		width: 100%;
		box-sizing: border-box;
		justify-content: center;
		align-items: center;
		gap: 16px;
		padding: 14px 20px;
		margin-bottom: 24px;
	}

	.ts-reservation__phone {
		padding: 0 20px;
	}

	.ts-reservation__tel {
		justify-content: center;
	}

	.ts-reservation__web-btn {
		margin: 24px 20px 0;
		justify-content: center;
	}

	.ts-reservation__panel {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.ts-reservation__note {
		text-align: left;
	}

	.ts-reservation__note .sp-only {
		display: inline;
	}
}

/* レスポンシブ: PC（1000px〜） */
@media (min-width: 1000px) {
	.ts-reservation__inner {
		padding-right: 40px;
	}
	.ts-reservation__web-btn {
		margin-left: auto;
	}
}

/* 診療科サブリストの下余白 */
#shonan-tsujido .bunin-p-top__consultation-sublist {
	margin-bottom: 3em;
}
