/* ============================================================
   Hospital Portal - フロントエンドスタイル
   ============================================================ */

/* ---------- 検索フォーム（Figmaデザイン準拠） ---------- */
.hp-search-form {
	margin: 40px 0 32px;
}

.hp-sf-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* テーマの p / ul / li スタイルを無効化（single-post__content 内でのリセット） */
.hp-search-form p,
.hp-search-form ul,
.hp-search-form li {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* --- セクションカード --- */
.hp-sf-section {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	padding: 24px;
}

.hp-sf-section--inline {
	padding: 16px 24px;
}

/* --- セクションヘッダー --- */
.hp-sf-section-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

.hp-sf-section-header--nomargin {
	margin-bottom: 0;
}

/* --- こだわりトグル --- */
.hp-sf-section-header--toggle {
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
}

.hp-sf-toggle-arrow {
	display: flex;
	align-items: center;
	margin-left: auto;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

/* 開いている時：矢印を上向きに */
.hp-sf-section-header--toggle[aria-expanded="true"] .hp-sf-toggle-arrow {
	transform: rotate(180deg);
}

/* 閉じている時：ヘッダーのマージン削除 */
.hp-sf-section-header--toggle[aria-expanded="false"] {
	margin-bottom: 0;
}

.hp-sf-section-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.hp-sf-section-label {
	font-size: 16px;
	font-weight: 500;
	color: #0a0a0a;
	letter-spacing: -0.3px;
}

/* --- キーワード入力 --- */
.hp-sf-input {
	display: block;
	width: 100%;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	font-size: 16px;
	color: #0a0a0a;
	box-sizing: border-box;
	appearance: none;
}

.hp-sf-input::placeholder {
	color: rgba(10, 10, 10, 0.5);
}

.hp-sf-input:focus {
	outline: none;
	border-color: #28ad42;
	box-shadow: 0 0 0 3px rgba(40, 173, 66, 0.12);
}

/* --- ボタン型チェックボックスグリッド --- */
.hp-sf-btn-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.hp-sf-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 47px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
	position: relative;
	user-select: none;
}

.hp-sf-btn:hover {
	border-color: rgba(40, 173, 66, 0.4);
}

.hp-sf-btn__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hp-sf-btn__text {
	font-size: 16px;
	font-weight: 500;
	color: #0a0a0a;
	text-align: center;
	letter-spacing: -0.3px;
}

/* 選択状態 */
.hp-sf-btn--checked,
.hp-sf-btn:has(.hp-sf-btn__input:checked) {
	border-color: #28ad42;
	background: rgba(40, 173, 66, 0.06);
}

.hp-sf-btn--checked .hp-sf-btn__text,
.hp-sf-btn:has(.hp-sf-btn__input:checked) .hp-sf-btn__text {
	color: #28ad42;
}

/* こだわりボタンのフォントサイズを診療科目に合わせる */
.hp-sf-btn--sm .hp-sf-btn__text {
	font-size: 16px;
}

/* --- 地域: 現在地ボタン --- */
.hp-sf-geo-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 0 17px;
	height: 40px;
	background: #f4f5f7;
	border: 1px solid #030213;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #030213;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.15s;
}

.hp-sf-geo-btn:hover {
	background: #e8e9ec;
}

/* --- ドロップダウン --- */
.hp-sf-dropdown-wrap {
	position: relative;
}

.hp-sf-dropdown-wrap--half {
	flex: 1;
}

.hp-sf-dropdown {
	display: block;
	width: 100%;
	height: 47px;
	padding: 0 40px 0 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	font-size: 16px;
	color: #0a0a0a;
	appearance: none;
	cursor: pointer;
	box-sizing: border-box;
}

.hp-sf-dropdown:focus {
	outline: none;
	border-color: #28ad42;
}

.hp-sf-dropdown-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
}

/* --- 診療時間: 2列ドロップダウン --- */
.hp-sf-time-row {
	display: flex;
	gap: 10px;
}

/* --- オンライン診療対応 --- */
.hp-sf-online {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	width: 100%;
}

.hp-sf-online__check {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hp-sf-online__box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1.5px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	flex-shrink: 0;
	background: #fff;
	transition: background 0.15s, border-color 0.15s;
}

.hp-sf-online__check:checked + .hp-sf-online__box {
	background: #28ad42;
	border-color: #28ad42;
}

.hp-sf-online__check:checked + .hp-sf-online__box::after {
	content: '';
	display: block;
	width: 5px;
	height: 9px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translate(-1px, -1px);
}

/* --- 検索ボタン --- */
.hp-sf-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 56px;
	background: #28ad42;
	border: none;
	border-radius: 0;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	letter-spacing: -0.3px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
	transition: background 0.15s;
}

.hp-sf-search-btn:hover {
	background: #229b39;
}

@media (max-width: 600px) {
	.hp-sf-section {
		padding: 20px 16px;
	}
	.hp-sf-btn__text {
		font-size: 14px;
	}
	.hp-sf-time-row {
		flex-direction: column;
	}
}

/* ---------- 検索結果（Figmaデザイン準拠） ---------- */
.hp-results {
	display: flex;
	flex-direction: column;
	margin-top: 40px;
}

/* --- 検索条件バー --- */
.hp-results-filter-bar {
	background: #f4f5f7;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 16px 20px 14px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hp-results-filter-bar__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hp-results-filter-bar__label {
	font-size: 14px;
	font-weight: 500;
	color: #0a0a0a;
	letter-spacing: -0.15px;
}

.hp-results-filter-bar__refine-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 32px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #030213;
	text-decoration: none;
	letter-spacing: -0.15px;
	transition: background 0.15s;
}

.hp-results-filter-bar__refine-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}

.hp-results-filter-bar__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hp-results-filter-chip {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 13px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	font-size: 14px;
	font-weight: 500;
	color: #0a0a0a;
	white-space: nowrap;
	letter-spacing: -0.15px;
}

/* スティッキーフッター表示時に下部余白 */
.hp-results--has-sticky {
	padding-bottom: 80px;
}

/* --- 件数ヘッダー --- */
.hp-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.hp-results-header__count {
	font-size: 0; /* inline 要素を隙間なく並べるためリセット */
	margin: 0;
	line-height: 1;
}

.hp-results-header__count strong {
	font-size: 16px;
	font-weight: 700;
	color: #0a0a0a;
	letter-spacing: -0.3px;
}

.hp-results-header__count-sub {
	font-size: 14px;
	font-weight: 400;
	color: #717182;
	letter-spacing: -0.15px;
}

.hp-results-header__count-range {
	font-size: 12px;
	font-weight: 400;
	color: #717182;
}

/* 並び替えエリア */
.hp-results-header__sort {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.hp-results-sort-label {
	font-size: 14px;
	font-weight: 500;
	color: #717182;
	white-space: nowrap;
	letter-spacing: -0.15px;
}

.hp-results-sort-wrap {
	width: 148px;
}

/* --- 結果リスト --- */
.hp-results-list {
	list-style: none !important;
	margin: 0;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp-results-list li {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.hp-results-empty {
	padding: 48px 0;
	text-align: center;
	color: #717182;
	font-size: 14px;
}

/* ---------- 病院カード（Figmaデザイン準拠） ---------- */
.hp-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.15s;
	list-style: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.hp-card::before,
.hp-card::after {
	content: none !important;
	display: none !important;
}

.hp-card--pr {
	border-color: rgba(0, 0, 0, 0.3);
}

.hp-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* カード全体をリンク化 */
.hp-card__link {
	display: flex;
	align-items: stretch;
	padding: 24px 29px;
	gap: 20px;
	text-decoration: none !important;
	color: inherit;
	min-height: 208px;
	box-sizing: border-box;
}

/* 左: 情報エリア */
.hp-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

/* おすすめバッジ */
.hp-card .hp-card__pr-badge {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 12px !important;
	background: #fff;
	border: 1px solid rgba(3, 2, 19, 0.2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #030213;
	margin: 0 0 12px !important;
	align-self: flex-start;
}

/* 病院名 */
.hp-card .hp-card__name {
	font-size: 18px;
	font-weight: 500;
	color: #0a0a0a;
	padding: 0 !important;
	margin: 0 0 12px !important;
	letter-spacing: -0.44px;
	line-height: 1.5;
	text-decoration: none !important;
}

/* バッジなし時の上余白 */
.hp-card .hp-card__name:first-child {
	margin-top: 4px !important;
}

/* 診療科目タグ */
.hp-card__depts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.hp-card__dept-tag {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 12px;
	background: #eceef2;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: #030213;
	white-space: nowrap;
	letter-spacing: -0.15px;
	transition: background 0.15s, color 0.15s;
}
.hp-card__dept-tag[data-dept-url] {
	cursor: pointer;
}
.hp-card__dept-tag[data-dept-url]:hover {
	background: #2D6A4F;
	color: #fff;
}

.hp-card__dept-more {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 500;
	color: #717182;
	white-space: nowrap;
}

/* 住所 */
.hp-card__address {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #717182;
	font-size: 14px;
	letter-spacing: -0.15px;
	margin-top: auto;
}

.hp-card__address svg {
	flex-shrink: 0;
}

/* 診療状況 + 評価 行 */
.hp-card__meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

/* 診療中バッジ */
.hp-card__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.hp-card__status--open {
	background: #f0fdf4;
	border: 2px solid #7bf1a8;
	color: #008236;
}

.hp-card__status--closed {
	background: #f9fafb;
	border: 1px solid #d1d5dc;
	color: #6a7282;
}

.hp-card__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hp-card__status--open .hp-card__status-dot {
	background: #00c950;
}

.hp-card__status--closed .hp-card__status-dot {
	background: #99a1af;
}

/* 評価 */
.hp-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0 8px;
}

.hp-card__rating-score {
	font-size: 14px;
	font-weight: 700;
	color: #0a0a0a;
	letter-spacing: -0.15px;
}

.hp-card__rating-count {
	font-size: 12px;
	color: #717182;
}

/* 右: 画像エリア（PRカードのみ） */
.hp-card__image {
	flex-shrink: 0;
	width: 270px;
	height: 230px;
	border-radius: 4px;
	overflow: hidden;
	align-self: center;
}

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

.hp-card__no-image {
	width: 100%;
	height: 100%;
	background: #c4c4c4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	letter-spacing: -0.44px;
	text-decoration: none !important;
}

/* お気に入りボタン */
.hp-card__fav {
	position: absolute;
	top: 11px;
	right: 11px;
	width: 44px;
	height: 44px;
	background: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #9ca3af;
	transition: box-shadow 0.15s;
	z-index: 1;
}

.hp-card__fav:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hp-card__fav:focus,
.hp-card__fav:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.hp-card__fav svg path {
	stroke: #9ca3af;
}

.hp-card__fav--active {
	color: #e11d48;
}

.hp-card__fav--active svg path {
	fill: #e11d48;
	stroke: #EA3824;
}

/* ---------- ページネーション（Figmaデザイン準拠） ---------- */
.hp-pagination {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 32px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.hp-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 14px;
	color: #0a0a0a;
	text-decoration: none !important;
	transition: background 0.15s, border-color 0.15s;
}

.hp-pagination .page-numbers.current {
	background: #28ad42;
	border-color: #28ad42;
	color: #fff;
	font-weight: 700;
}

.hp-pagination .page-numbers:hover:not(.current) {
	background: #f4f5f7;
}

/* ---------- スティッキーフッター ---------- */
.hp-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 32px;
	height: 72px;
	background: rgba(255, 255, 255, 0.95);
	border-top: 1px solid #e5e5e5;
	backdrop-filter: blur(4px);
}

.hp-sticky-bar__chips {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.hp-sticky-bar__chips::-webkit-scrollbar {
	display: none;
}

.hp-sticky-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 34px;
	padding: 0 13px;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
	text-decoration: none !important;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.15s;
}

.hp-sticky-chip:hover {
	background: #e5e7eb;
}

.hp-sticky-chip__x {
	display: flex;
	align-items: center;
	color: #6b7280;
}

.hp-sticky-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 28px;
	background: #28ad42;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-decoration: none !important;
	white-space: nowrap;
	flex-shrink: 0;
	letter-spacing: -0.3px;
	transition: background 0.15s;
}

.hp-sticky-submit:hover {
	background: #22953a;
}

.hp-sticky-refine {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 16px;
	background: #fff;
	border: 1.5px solid #d1d5db;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.15s, border-color 0.15s;
}
.hp-sticky-refine:hover {
	background: #f3f4f6;
	border-color: #9ca3af;
}

@media (max-width: 640px) {
	/* カード全体を縦並びに */
	.hp-card__link {
		flex-direction: column;
		padding: 20px;
	}

	/* 病院名の右にお気に入りボタン分の余白を確保 */
	.hp-card .hp-card__name {
		padding-right: 44px;
	}

	/* 画像を病院名の下・情報の上に移動 */
	.hp-card__image {
		order: 1;
		width: 100%;
		height: 180px;
		align-self: auto;
	}
	.hp-card__body {
		order: 0;
	}
	/* 住所・診療科目エリアを画像の下に */
	.hp-card__body > *:not(.hp-card__pr-badge):not(.hp-card__name) {
		order: 2;
	}

	.hp-results-filter-bar {
		padding: 14px 16px 10px;
	}
}

/* ================================================
   病院詳細ページ
   ================================================ */
.hp-single {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 16px 48px;
}

/* カード共通 */
.hp-single__card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	padding: 28px 32px;
}

/* セクションヘッド（タイトル + バッジ横並び） */
.hp-single__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.hp-single__section-head--reviews {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding-bottom: 16px;
}

.hp-single__section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 20px;
}

.hp-single__section-head .hp-single__section-title {
	margin-bottom: 0;
}

/* ── HERO ───────────────────────────────────────── */
.hp-single__hero {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 10px;
}

.hp-single__hero-left {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp-single__hero-image {
	width: 300px;
	flex-shrink: 0;
}

.hp-single__hero-image--noimg {
	background-color: #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-height: 260px;
	min-height: 230px;
	border-radius: 6px;
}

.hp-single__noimg-label {
	color: #aaa;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.hp-single__hero-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* 名前 + お気に入り */
.hp-single__name-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.hp-single__name {
	font-size: 22px;
	font-weight: 600;
	color: #0a0a0a;
	margin: 0;
	line-height: 1.4;
}

.hp-single__fav-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 6px 14px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: #6b7280;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.15s, color 0.15s;
}

.hp-single__fav-btn:hover {
	border-color: #9ca3af;
	color: #374151;
}

/* 評価 */
.hp-single__rating-row {
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding-bottom: 14px;
}

.hp-single__stars {
	display: flex;
	gap: 2px;
}

.hp-single__star {
	color: #d1d5db;
}

.hp-single__star--on {
	color: #f59e0b;
}

.hp-single__rating-score {
	font-size: 20px;
	font-weight: 700;
	color: #0a0a0a;
	line-height: 1;
}

.hp-single__rating-count {
	font-size: 14px;
	color: #717182;
}

/* 診療科目タグ */
.hp-single__dept-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hp-single__dept-tag {
	background: #eceef2;
	color: #030213;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 16px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}
.hp-single__dept-tag[data-dept-url] {
	cursor: pointer;
}
.hp-single__dept-tag[data-dept-url]:hover {
	background: #2D6A4F;
	color: #fff;
}

/* 住所・電話 */
.hp-single__info-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hp-single__info-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: #0a0a0a;
}

.hp-single__info-icon {
	flex-shrink: 0;
	color: #717182;
	margin-top: 1px;
}

.hp-single__phone-links {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
}

.hp-single__phone-link {
	font-weight: 600;
	color: #030213;
}

/* 予約ボタンエリア（カード全幅） */
.hp-single__actions {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 10px;
	border-top: none;
}

.hp-single__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	border: none;
	transition: opacity 0.15s;
	white-space: nowrap;
}

.hp-single__btn:hover,
.hp-single__btn:focus,
.hp-single__btn:visited,
.hp-single__btn:active {
	opacity: 0.88;
	text-decoration: none !important;
}

.hp-single__btn--primary {
	background: #030213;
	color: #fff;
	width: 100%;
}

.hp-single__btn--outline {
	background: #fff;
	color: #030213;
	border: 2px solid #030213;
	flex: 1;
}

.hp-single__btn--line {
	background: #06c755;
	color: #fff;
	flex: 1;
}

.hp-single__btn--ghost {
	background: rgba(233, 235, 239, 0.5);
	color: #0a0a0a;
	font-weight: 500;
	border: 1px solid rgba(0, 0, 0, 0.08);
	flex: 1;
}

.hp-single__btn-row {
	display: flex;
	gap: 10px;
}

/* 設備バッジエリア（カード全幅） */
.hp-single__badges {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding-top: 16px;
}

/* 公式サイト・オンライン診療リンクエリア（カード全幅） */
.hp-single__links {
	grid-column: 1 / -1;
	display: flex;
	gap: 10px;
	padding-top: 10px;
}

/* 公式サイトバナー */
.hp-single__official-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #1a3d2e;
	border-radius: 12px;
	padding: 20px 24px;
	text-decoration: none !important;
	gap: 16px;
	position: relative;
	overflow: hidden;
	transition: opacity 0.15s;
}
.hp-single__official-banner:hover { opacity: 0.88; text-decoration: none !important; }
.hp-single__official-banner::before,
.hp-single__official-banner::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.6s ease;
}
.hp-single__official-banner:hover::before {
	transform: translateY(-50%) translateX(-20px);
}
.hp-single__official-banner:hover::after {
	transform: translateY(-50%) translateX(20px);
}
.hp-single__official-banner::before {
	right: -70px;
	top: 200px;
	width: 660px;
	height: 620px;
	background: rgba(255, 255, 255, 0.05);
}
.hp-single__official-banner::after {
	right: -60px;
	top: -10px;
	width: 440px;
	height: 370px;
	background: rgba(255, 255, 255, 0.05);
}
.hp-single__official-banner-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hp-single__official-banner-label {
	font-size: 11px;
	color: #5c96af;
	letter-spacing: 0.06em;
}
.hp-single__official-banner-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.hp-single__official-banner-desc {
	font-size: 12px;
	color: #828f87;
	margin: 0;
}
.hp-single__official-banner-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* こだわりグリッド（旧 hero-left 内用・後方互換） */
.hp-single__commitments {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.hp-single__commitment {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(233, 235, 239, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 500;
	color: #0a0a0a;
}

.hp-single__commitment-icon {
	flex-shrink: 0;
	color: #555;
}

/* ── 診療時間 ────────────────────────────────────── */
.hp-single__status-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	border: 2px solid #d1d5dc;
	background: #f9fafb;
	color: #4a5565;
	white-space: nowrap;
}

.hp-single__status-badge--open {
	border-color: #6ee7b7;
	background: #ecfdf5;
	color: #065f46;
}

.hp-single__status-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #99a1af;
}

.hp-single__status-badge--open .hp-single__status-dot {
	background: #10b981;
}

/* 診療時間テーブル：カード端まで伸ばす */
.hp-single__hours-section .hp-single__hours-table-wrap {
	margin-left: -32px;
	margin-right: -32px;
}

.hp-single__hours-table-wrap {
	overflow-x: auto;
	margin-bottom: 20px;
}

.hp-single__hours-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 480px;
}

.hp-single__hours-table thead th {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.hp-single__hours-th {
	padding: 12px 8px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #0a0a0a;
}

.hp-single__hours-th--label {
	width: 48px;
	text-align: left;
	padding-left: 40px;
}

.hp-single__hours-th:last-child {
	padding-right: 40px;
}

.hp-single__hours-th--today {
	background: #0a0a0a;
	color: #fff;
}

.hp-single__hours-table tbody tr td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hp-single__hours-td {
	padding: 16px 8px;
	text-align: center;
	font-size: 13px;
}

.hp-single__hours-td--label {
	font-weight: 700;
	font-size: 14px;
	text-align: left;
	padding-left: 40px;
	color: #0a0a0a;
}

.hp-single__hours-td--today {
	background: #f4f5f7;
}

.hp-single__hours-td:last-child {
	padding-right: 40px;
}

.hp-single__hours-range {
	font-weight: 500;
	color: #0a0a0a;
	white-space: nowrap;
}

.hp-single__hours-closed {
	color: #717182;
}

/* 診療時間テキスト・ノート */
.hp-single__hours-text {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 12px;
}

.hp-single__hours-notes {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 8px;
}

.hp-single__hours-note {
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.7;
}

.hp-single__hours-note--primary {
	background: rgba(233, 235, 239, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.05);
	font-weight: 600;
	color: #0a0a0a;
}

.hp-single__hours-note--secondary {
	background: rgba(233, 235, 239, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.03);
	font-size: 13px;
	color: #717182;
}

/* ── アクセス ────────────────────────────────────── */
.hp-single__access-cards {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}

.hp-single__access-info {
	background: rgba(233, 235, 239, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	line-height: 1.7;
	color: #0a0a0a;
}

.hp-single__access-row {
	display: flex;
	gap: 8px;
	font-size: 14px;
	color: #0a0a0a;
	padding: 4px 0;
}

.hp-single__access-label {
	font-weight: 700;
	white-space: nowrap;
	min-width: 52px;
}

/* ── 口コミ ─────────────────────────────────────── */
.hp-single__review-post-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	background: #28ad42;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: opacity 0.15s;
}

.hp-single__review-post-btn:hover {
	opacity: 0.88;
}

.hp-single__reviews-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 16px;
}

.hp-single__review {
	padding: 24px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hp-single__review:last-child {
	border-bottom: none;
}

.hp-single__review--hidden {
	display: none;
}

.hp-single__review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.hp-single__review-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hp-single__review-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	color: #555;
	border: 1px solid rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.hp-single__review-name {
	font-size: 16px;
	font-weight: 700;
	color: #0a0a0a;
}

.hp-single__review-date {
	font-size: 12px;
	color: #717182;
	margin-top: 2px;
}

.hp-single__review-stars {
	display: flex;
	gap: 2px;
}

.hp-single__review-body {
	background: #f8f9fa;
	border: 1px solid rgba(0, 0, 0, 0.03);
	border-radius: 10px;
	padding: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: #0a0a0a;
	margin-left: 60px;
}

.hp-single__more-btn {
	display: block;
	width: 100%;
	margin-top: 16px;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #0a0a0a;
	cursor: pointer;
	transition: background 0.15s;
}

.hp-single__more-btn:hover {
	background: #f9fafb;
}

/* 口コミ投稿フォーム */
.hp-single__review-form-wrap {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hp-single__review-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hp-single__review-form-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hp-single__review-form-label {
	font-size: 14px;
	font-weight: 600;
	color: #0a0a0a;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hp-single__review-input,
.hp-single__review-textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.15s;
}

.hp-single__review-input:focus,
.hp-single__review-textarea:focus {
	outline: none;
	border-color: #030213;
}

.hp-single__review-textarea {
	resize: vertical;
	min-height: 100px;
	line-height: 1.6;
}

/* 星評価（5→1 逆順で flex-direction:row-reverse） */
.hp-single__rating-input {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 4px;
}

.hp-single__rating-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hp-single__rating-star-label {
	font-size: 28px;
	color: #d1d5db;
	cursor: pointer;
	transition: color 0.1s;
	line-height: 1;
}

.hp-single__rating-radio:checked ~ .hp-single__rating-star-label,
.hp-single__rating-star-label:hover,
.hp-single__rating-star-label:hover ~ .hp-single__rating-star-label {
	color: #f59e0b;
}

.hp-single__rating-input:hover .hp-single__rating-star-label {
	color: #d1d5db;
}

.hp-single__review-form-msg {
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 6px;
}

.hp-single__review-form-msg:empty {
	display: none;
}

.hp-single__review-form-msg--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.hp-single__review-form-msg--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

/* ── レスポンシブ ────────────────────────────────── */
@media (max-width: 700px) {
	.hp-single {
		padding: 16px 0 16px;
	}

	.hp-single__card {
		padding: 20px 16px;
	}

	.hp-single__hours-section .hp-single__hours-table-wrap {
		margin-left: -16px;
		margin-right: -16px;
	}

	.hp-single__hours-th--label {
		padding-left: 24px;
	}

	.hp-single__hours-th:last-child {
		padding-right: 24px;
	}

	.hp-single__hours-td--label {
		padding-left: 24px;
	}

	.hp-single__hours-td:last-child {
		padding-right: 24px;
	}

	.hp-single__hero {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hp-single__hero-image {
		order: -1;
		width: 100%;
	}

	.hp-single__hero-img {
		height: auto;
	}

	.hp-single__hero-image--noimg {
		max-height: 200px;
	}

	.hp-single__name {
		font-size: 20px;
		flex: 1;
	}

	/* 名前行を縦並びに */
	.hp-single__name-row {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.hp-single__dept-tag {
		padding: 6px 12px;
	}

	/* お気に入りボタンを小さく・右寄り */
	.hp-single__fav-btn,
	.hp-single__fav-btn--active {
		align-self: flex-end !important;
		padding: 5px 10px !important;
		font-size: 11px !important;
		gap: 4px !important;
	}

	.hp-single__fav-btn svg {
		width: 14px !important;
		height: 14px !important;
	}

	.hp-single__commitments,
	.hp-single__badges {
		grid-template-columns: 1fr;
	}

	.hp-single__links {
		flex-direction: column;
	}

	/* 電話予約・公式サイト上のボーダー非表示・余白を詰める */
	.hp-single__actions {
		border-top: none;
		padding-top: 8px;
		gap: 8px;
	}

	.hp-single__links {
		border-top: none;
		padding-top: 4px;
		gap: 8px;
	}

	.hp-single__review-body {
		margin-left: 0;
	}

	.hp-sf-dropdown {
		display: block;
		width: 100%;
		height: 36px;
		padding: 0 12px 0 12px;
		background: #fff;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 10px;
		font-size: 14px;
		color: #0a0a0a;
		appearance: none;
		cursor: pointer;
		box-sizing: border-box;
	}

	.hp-results-sort-wrap {
		width: 120px;
	}

	.hp-single__btn {
		padding: 10px 14px;
		font-size: 14px;
	}

	.hp-single__official-banner::before {
		right: -30px;
		top: auto;
		bottom: -60px;
		width: 200px;
		height: 200px;
	}
	.hp-single__official-banner::after {
		right: 50px;
		top: -50px;
		width: 160px;
		height: 160px;
	}
}

@media (max-width: 480px) {
	.hp-single__hours-table thead th {
		border-bottom-width: 1px;
	}
}

/* ---------- 地図（iframe 埋め込み） ---------- */
.hp-map-wrap {
	margin-bottom: 16px;
}

.hp-map-iframe {
	width: 100%;
	height: 400px;
	border: 0;
	border-radius: 6px;
	display: block;
}

.hp-map-distance {
	margin: 8px 0 0;
	font-size: 14px;
	color: #555;
}

/* ---------- 口コミ一覧 ---------- */
.hp-reviews__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hp-reviews__empty {
	color: #888;
	font-size: 14px;
	margin-bottom: 24px;
}

.hp-review {
	background: #f9f9f9;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 16px;
}

.hp-review__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.hp-review__author {
	font-weight: 600;
	font-size: 14px;
}

.hp-review__rating {
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1;
}

.hp-review__star {
	color: #ccc;
}

.hp-review__star--on {
	color: #f4a800;
}

.hp-review__date {
	font-size: 12px;
	color: #999;
	margin-left: auto;
}

.hp-review__body {
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

/* ---------- 口コミ投稿フォーム ---------- */
.hp-review-form {
	background: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 24px;
	margin-top: 24px;
}

.hp-review-form__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 6px;
}

.hp-review-form__note {
	font-size: 13px;
	color: #888;
	margin: 0 0 20px;
}

.hp-review-form__message {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	font-size: 14px;
}

.hp-review-form__message--success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.hp-review-form__message--error {
	background: #fce4ec;
	color: #b71c1c;
	border: 1px solid #f8bbd0;
}

.hp-review-form__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.hp-review-form__label {
	min-width: 80px;
	font-size: 14px;
	font-weight: 600;
	padding-top: 6px;
	flex-shrink: 0;
}

.hp-review-form__required {
	color: #e53935;
}

.hp-review-form__input {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	max-width: 320px;
}

.hp-review-form__textarea {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.6;
	resize: vertical;
	min-height: 120px;
}

/* 星評価: HTML は 5→1 の逆順、flex-direction:row-reverse で視覚上は 1→5 */
.hp-review-form__stars {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 2px;
	padding-top: 2px;
}

.hp-review-form__star-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hp-review-form__star-label {
	font-size: 28px;
	color: #ccc;
	cursor: pointer;
	transition: color 0.1s;
	line-height: 1;
	user-select: none;
}

/* チェック済み: その星より HTML 後方（＝視覚上は左）の星もすべて色付け */
.hp-review-form__star-radio:checked ~ .hp-review-form__star-label {
	color: #f4a800;
}

/* ホバー: コンテナに乗ったら全てリセット → ホバー対象とその HTML 後方を色付け */
.hp-review-form__stars:hover .hp-review-form__star-label {
	color: #ccc;
}

.hp-review-form__star-label:hover,
.hp-review-form__star-label:hover ~ .hp-review-form__star-label {
	color: #f4a800;
}

.hp-review-form__actions {
	margin-top: 8px;
}

.hp-review-form__submit {
	padding: 10px 32px;
	background: #1a73e8;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}

.hp-review-form__submit:hover {
	background: #1558b0;
}

.hp-review-form__submit:disabled {
	background: #9e9e9e;
	cursor: not-allowed;
}

@media (max-width: 600px) {
	.hp-review-form__row {
		flex-direction: column;
		gap: 6px;
	}
	.hp-review-form__input,
	.hp-review-form__textarea {
		max-width: 100%;
		width: 100%;
	}
}

/* ── インタビューバナー ──────────────────────────────── */
.interview-banner {
	background: #ffffff;
	border-radius: 10px;
	border: 1.5px solid #b8d4c0;
	overflow: hidden;
	transition: box-shadow 0.25s ease, border-color 0.25s ease,
	            transform 0.25s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.interview-banner:hover {
	border-color: #2a5c40;
	box-shadow: 0 8px 32px rgba(42, 92, 64, 0.13);
	transform: translateY(-3px);
}

.interview-banner__head {
	background: #2a5c40;
	padding: 8px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.interview-banner__head-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.interview-banner__logo {
	font-size: 9px;
	letter-spacing: 0.22em;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 700;
}
.interview-banner__divider {
	display: block;
	width: 1px;
	height: 10px;
	background: rgba(255, 255, 255, 0.25);
}
.interview-banner__tag {
	font-size: 9px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.12em;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 2px 10px;
	white-space: nowrap;
}
.interview-banner__exclusive {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.15em;
	white-space: nowrap;
	margin-left: auto;
}

.interview-banner__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px;
	text-decoration: none;
	color: inherit;
}

.interview-banner__image {
	flex-shrink: 0;
	width: 110px;
	height: 110px;
	border-radius: 6px;
	overflow: hidden;
	order: -1;
}

.interview-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.interview-banner__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.interview-banner__eyebrow {
	font-size: 10px;
	font-weight: 700;
	color: #2a5c40;
	letter-spacing: 0.18em;
}
.interview-banner__title {
	font-family: 'Noto Serif JP', serif;
	font-size: 15px;
	color: #1a1a1a;
	line-height: 1.75;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}
.interview-banner__doctor {
	display: flex;
	align-items: center;
	gap: 8px;
}
.interview-banner__doctor-line {
	display: block;
	width: 20px;
	height: 2px;
	background: #2a5c40;
	flex-shrink: 0;
}
.interview-banner__doctor-name {
	font-size: 11px;
	color: #888888;
}

.interview-banner__cta {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.interview-banner__btn {
	display: block;
	background: #2a5c40;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 12px 22px;
	border-radius: 6px;
	letter-spacing: 0.08em;
	min-width: 108px;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}
.interview-banner:hover .interview-banner__btn {
	background: #1f4430;
	transform: scale(1.03);
}
.interview-banner__domain {
	font-size: 9px;
	color: #bbbbbb;
	letter-spacing: 0.12em;
}

@media (max-width: 400px) {
	.interview-banner__exclusive {
		display: none;
	}
}

@media (max-width: 640px) {
	.interview-banner__head {
		padding: 8px 14px;
	}
	.interview-banner__body {
		flex-wrap: wrap;
		padding: 14px;
		gap: 12px;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.interview-banner__image {
		width: 72px;
		height: 72px;
		flex-shrink: 0;
	}
	.interview-banner__text {
		flex: 1;
		min-width: 0;
		gap: 6px;
	}
	.interview-banner__title {
		font-size: 13px;
	}
	.interview-banner__cta {
		width: 100%;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
	}
	.interview-banner__btn {
		flex: 1;
		padding: 12px 16px;
		min-width: unset;
		text-align: center;
	}
}

/* ============================================================
   認証ページ（ログイン・新規登録）- Figma デザイン準拠
   ============================================================ */

.hp-auth {
	max-width: 544px;
	margin: 48px auto;
	padding: 0 16px;
}

.hp-auth__header {
	text-align: center;
	margin-bottom: 32px;
}

.hp-auth__title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 10px;
}

.hp-auth__subtitle {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

.hp-auth__card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 32px;
	margin-bottom: 24px;
}

.hp-auth__error {
	background: #fff3f3;
	border: 1px solid #f5c6c6;
	border-radius: 6px;
	color: #c0392b;
	font-size: 13px;
	padding: 12px 16px;
	margin-bottom: 20px;
}

.hp-auth__notice {
	background: #f0fff4;
	border: 1px solid #9ae6b4;
	border-radius: 6px;
	color: #276749;
	font-size: 13px;
	padding: 12px 16px;
	margin-bottom: 20px;
}

.hp-auth__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp-auth__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hp-auth__label {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
}

.hp-auth__required {
	color: #e53e3e;
	margin-left: 2px;
}

.hp-auth__input-wrap {
	position: relative;
}

.hp-auth__input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	display: flex;
	pointer-events: none;
}

.hp-auth__input {
	width: 100%;
	box-sizing: border-box;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 13px 14px 13px 44px;
	font-size: 14px;
	color: #1a1a1a;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.hp-auth__input:focus {
	border-color: #1a1a1a;
	background: #fff;
}

.hp-auth__input::placeholder {
	color: #bbb;
}

.hp-auth__hint {
	font-size: 12px;
	color: #888;
	margin: 0;
}

.hp-auth__forgot {
	text-align: center;
	margin: 0;
}

.hp-auth__forgot a {
	font-size: 13px;
	color: #555;
	text-decoration: underline;
}

.hp-auth__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.hp-auth__agree-check {
	margin-top: 3px;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.hp-auth__agree-text {
	font-size: 13px;
	color: #444;
	line-height: 1.6;
}

.hp-auth__agree-text a {
	color: #1a1a1a;
	text-decoration: underline;
}

.hp-auth__submit {
	display: block;
	width: 100%;
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 16px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
}

.hp-auth__submit:hover {
	opacity: 0.85;
}

.hp-auth__switch-text {
	text-align: center;
	font-size: 13px;
	color: #666;
	margin: 0 0 12px;
}

.hp-auth__switch-link {
	color: #1a1a1a;
	font-weight: 700;
	text-decoration: underline;
}

.hp-auth__switch-btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	color: #1a1a1a;
	border: 1.5px solid #1a1a1a;
	border-radius: 6px;
	padding: 15px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.hp-auth__switch-btn:hover {
	background: #1a1a1a;
	color: #fff;
}

.hp-auth-link {
	color: #1a1a1a;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.hp-auth__card {
		padding: 24px 20px;
	}
}

/* ============================================================
   お気に入りボタン（病院詳細）
   ============================================================ */

.hp-single__fav-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1.5px solid #ccc;
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 13px;
	color: #555;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
	z-index: 1;
}

.hp-single__fav-btn:hover {
	border-color: #e53e3e;
	color: #e53e3e;
}

.hp-single__fav-btn--active {
	border-color: #e53e3e;
	color: #e53e3e;
	background: #fff5f5;
}

.hp-single__fav-btn--active svg path {
	fill: #e53e3e;
	stroke: #e53e3e;
}

.hp-single__fav-btn:focus,
.hp-single__fav-btn:focus-visible {
	outline: none;
	box-shadow: none;
}

.hp-single__fav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ============================================================
   マイページ
   ============================================================ */

.hp-mypage {
	max-width: 720px;
	margin: 40px auto;
}

/* ── プロフィールカード ── */
.hp-mypage__profile {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 28px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.hp-mypage__avatar {
	width: 72px;
	height: 72px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.hp-mypage__name {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1px;
}

.hp-mypage__email {
	font-size: 13px;
	color: #888;
	margin: 0;
}

/* ── タブ ── */
.hp-mypage__tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #e5e5e5;
	margin-bottom: 20px;
}

.hp-mypage__tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	color: #888;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.hp-mypage__tab--active {
	color: #1a1a1a;
	border-bottom-color: #1a1a1a;
}

/* ── タブパネル ── */
.hp-mypage__tab-panel[hidden] {
	display: none;
}

/* ── お気に入りリスト ── */
.hp-mypage__fav-list {
	list-style: none !important;
	margin: 0;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hp-mypage__fav-item {
	position: relative;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	padding-left: 20px !important;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hp-mypage__fav-item:hover {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.2);
}

.hp-mypage__fav-item::before,
.hp-mypage__fav-item::after {
	content: none !important;
	display: none !important;
}

.hp-mypage__fav-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.hp-mypage__fav-name {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
}

.hp-mypage__fav-name::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 10px;
}

.hp-mypage__fav-name:hover {
	text-decoration: none;
}

.hp-mypage__fav-delete {
	position: relative;
	z-index: 1;
	background: none;
	border: none;
	color: #D4183D;
	cursor: pointer;
	padding: 2px;
	flex-shrink: 0;
	transition: color 0.2s ease;
	line-height: 1;
}

.hp-mypage__fav-delete:hover {
	color: #a8102e;
}

.hp-mypage__fav-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.hp-mypage__fav-tag {
	background: #f0f0f0;
	color: #555;
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 100px;
}

.hp-mypage__fav-addr {
	font-size: 13px;
	color: #777;
	margin: 0 0 8px !important;
}

.hp-mypage__fav-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.hp-mypage__fav-stars {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
}

.hp-mypage__fav-review-count {
	font-weight: 400;
	color: #888;
}

.hp-mypage__fav-status {
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 100px;
	border: 1.5px solid;
}

.hp-mypage__fav-status--open {
	color: #1c8c4f;
	border-color: #1c8c4f;
	background: #f0faf5;
}

.hp-mypage__fav-status--closed {
	color: #888;
	border-color: #ccc;
	background: #f8f8f8;
}

.hp-mypage__fav-date {
	font-size: 12px;
	color: #aaa;
	margin: 0;
}

/* ── 空状態 ── */
.hp-mypage__empty {
	text-align: center;
	padding: 48px 16px;
	color: #888;
	font-size: 14px;
}

/* ── フッター（ログアウト） ── */
.hp-mypage__footer {
	text-align: center;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

.hp-mypage__logout {
	font-size: 13px;
	color: #888;
	text-decoration: underline;
}

.hp-mypage__logout:hover {
	color: #555;
}

/* ── アバター画像 ── */
.hp-mypage__avatar-img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

/* ── プロフィール編集フォーム ── */
.hp-mypage__profile-form {
	padding: 8px 0 24px;
}

.hp-mypage__profile-notice {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 20px;
}

.hp-mypage__profile-notice--success {
	background: #f0fdf4;
	border: 1px solid #86efac;
	color: #166534;
}

.hp-mypage__profile-notice--error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
}

.hp-mypage__profile-avatar-field {
	margin-bottom: 24px;
}

.hp-mypage__profile-avatar-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	margin-bottom: 10px;
}

.hp-mypage__profile-avatar-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hp-mypage__profile-avatar-preview {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.hp-mypage__profile-avatar-preview .hp-mypage__avatar-img {
	width: 64px;
	height: 64px;
}

.hp-mypage__profile-avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-mypage__profile-avatar-btn {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 13px;
	color: #444;
	background: #fff;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}

.hp-mypage__profile-avatar-btn:hover {
	background: #f5f5f5;
	border-color: #aaa;
}

.hp-mypage__profile-avatar-hint {
	font-size: 11px;
	color: #aaa;
	margin: 8px 0 0;
}

.hp-mypage__profile-field {
	margin-bottom: 20px;
}

.hp-mypage__profile-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	margin-bottom: 6px;
}

.hp-mypage__profile-input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	color: #1a1a1a;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.hp-mypage__profile-input:focus {
	outline: none;
	border-color: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.hp-mypage__profile-section-label {
	font-size: 13px;
	font-weight: 600;
	color: #666;
	padding: 8px 0 4px;
	border-top: 1px solid #e5e5e5;
	margin-top: 8px;
}

.hp-mypage__profile-submit {
	display: block;
	width: 100%;
	padding: 14px;
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
	margin-top: 8px;
}

.hp-mypage__profile-submit:hover {
	background: #333;
}

@media (max-width: 600px) {
	.hp-mypage__fav-item {
		padding: 16px;
	}
	.hp-mypage__tab {
		padding: 10px 13px;
		font-size: 13px;
	}
}

/* WithMind-block の h2::after 装飾を病院ポータルのタイトルから除去 */
.hp-single__section-title::after {
	display: none !important;
	content: none !important;
}

/* WithMind-block の h2 margin を病院ポータルのセクションタイトルでリセット */
.hp-single__section-head .hp-single__section-title,
.hp-single__card .hp-single__section-title {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* バッジと横並びの場合はmargin-bottomも0に */
.hp-single__section-head .hp-single__section-title {
	margin-bottom: 0 !important;
}

/* ================================================
   レスポンシブ追加修正
   ================================================ */

/* 検索結果カード: 病院名がお気に入りボタンと被らないよう右余白 */
.hp-card .hp-card__name {
	padding-right: 44px !important;
}

/* スティッキーバー: レスポンシブ時に縦並び・ボタンを小さく */
@media (max-width: 640px) {
	.hp-sticky-bar {
		flex-direction: column;
		height: auto;
		padding: 10px 16px 14px;
		gap: 8px;
		align-items: stretch;
	}
	.hp-sticky-bar__chips {
		flex: none;
	}
	.hp-sticky-submit {
		height: 44px;
		font-size: 14px;
		padding: 0 20px;
		border-radius: 8px;
		text-align: center;
	}
	.hp-sticky-refine {
		width: 100%;
		justify-content: center;
		height: 38px;
		font-size: 12px;
	}
}

@media (max-width: 500px) {
	.hp-results-header {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		gap: 0;
		margin-bottom: 12px;
	}
	.hp-results-header__sort {
		align-self: flex-end;
	}
}

/* マイページ: ゴミ箱ボタンをカード右下に配置 */
.hp-mypage__fav-header {
	justify-content: flex-start;
}
.hp-mypage__fav-delete {
	position: absolute;
	bottom: 14px;
	right: 16px;
	top: auto;
}

/* ========== 絞り込みモーダル ========== */
.hp-refine-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.hp-refine-modal.is-open {
  display: block;
}
.hp-refine-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hp-refine-modal__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.hp-refine-modal.is-open .hp-refine-modal__panel {
  transform: translateX(0);
}
.hp-refine-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.hp-refine-modal__title {
  font-size: 1rem;
  font-weight: 700;
}
.hp-refine-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-refine-modal__body {
  overflow-y: auto;
  flex: 1;
  padding: 0 24px 24px;
}
.hp-refine-modal__body .hp-sf-search-btn {
  position: sticky;
  bottom: 0;
  width: 100%;
  margin-top: 24px;
}

/* ============================================================
   フローティング検索ボタン
   ============================================================ */
.hp-sf-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.hp-sf-floating-bar__inner {
  max-width: 640px;
  margin: 0 auto;
}
.hp-sf-floating-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: #28ad42;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.15s;
}
.hp-sf-floating-bar__btn:hover {
  background: #229b39;
}

/* ============================================================
   診療科目「もっと見る」ボタン（検索フォーム）
   ============================================================ */
[data-more-hidden] {
  display: none !important;
}
.hp-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.hp-more-btn:hover {
  background: #f4f5f7;
  border-color: rgba(0, 0, 0, 0.25);
}
.hp-more-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.hp-more-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* ============================================================
   写真引用元URL
   ============================================================ */
.hp-single__photo-source {
  margin: 4px 0 0;
  font-size: 11px;
  color: #888;
  word-break: break-all;
  line-height: 1.5;
}
.hp-single__photo-source a {
  color: #888;
  text-decoration: underline;
}
.hp-single__photo-source a:hover {
  color: #555;
}

/* ============================================================
   [hp_search_link] ショートコード（次回リリースで有効化）
   ============================================================ */
/*
.hp-search-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #28ad42;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hp-search-link:hover {
  color: #1d8a33;
}
*/

/* ============================================================
   [hp_inline_results] 記事内埋め込み検索結果（次回リリースで有効化）
   ============================================================ */
/*
.hp-inline-results {
  margin: 32px 0;
}
.hp-inline-results__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #28ad42;
  color: #0a0a0a;
}
.hp-inline-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.hp-inline-card {
  background: #fff;
  position: relative;
}
.hp-inline-card--pr {
  background: #fffbf0;
}
.hp-inline-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hp-inline-card:last-child .hp-inline-card__link {
  border-bottom: none;
}
.hp-inline-card__link:hover {
  background: #f8fafb;
}
.hp-inline-card__body {
  flex: 1;
  min-width: 0;
}
.hp-inline-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 4px;
  line-height: 1.4;
}
.hp-inline-card__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}
.hp-inline-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-inline-card__phone {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}
.hp-inline-results__more {
  margin-top: 12px;
  text-align: right;
}
.hp-inline-results__more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #28ad42;
  text-decoration: none;
}
.hp-inline-results__more-link:hover {
  color: #1d8a33;
  text-decoration: underline;
}
.hp-inline-results__empty {
  color: #888;
  font-size: 14px;
  padding: 24px 0;
  text-align: center;
}
*/

/* ============================================================
   [hp_geo_btn] 現在地検索ボタン（記事内）（次回リリースで有効化）
   ============================================================ */
/*
.hp-geo-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
}
.hp-geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}
.hp-geo-btn:hover {
  background: #333;
}
.hp-geo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.hp-geo-btn-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

@media (max-width: 480px) {
  .hp-inline-card__link {
    padding: 14px 16px;
  }
  .hp-inline-card__image {
    width: 64px;
    height: 64px;
  }
  .hp-geo-btn {
    width: 100%;
    justify-content: center;
  }
}
*/
