/* =========================================================
   あべクリニック トップ デザインシステム（WPBakery 非依存）
   清潔系クリニックデザイン：白基調＋緑アクセント＋たっぷり余白＋カード
   フォント: BIZ UDPGothic（UDゴシック / functions.php で enqueue）
   全セレクタを .home-rebuild にスコープしグローバルCSSと衝突回避。
   ========================================================= */

.home-rebuild {
	padding-top: 100px;
	/* adios固定ヘッダー（.pt-100と同値）分のオフセット */
	overflow-x: clip;
	/* hidden と異なりスクロールコンテナを作らないのでナビ dropdown に影響しない */
	--green: #07913a;
	/* ブランド緑（見出し・テキスト・細アクセント用） */
	--green-d: #06762f;
	/* 濃緑：予備 */
	--green-bright: #00bb3d;
	/* ロゴ（サイトアイコン）の明るい緑：ボタン・タブの塗り用 */
	--green-tint: #eef6f1;
	/* セクション淡色背景 */
	--ink: #2c3331;
	/* 本文 */
	--sub: #5f6b66;
	/* 補助テキスト */
	--line: #e3e9e6;
	/* 罫線・カード枠 */
	--bg-soft: #f5f8f7;
	/* 交互セクション背景 */
	--orange: #e8902f;
	--blue: #2f76ad;
	--line-green: #4cae4a;

	/* 本文フォントは従来の Adobe Fonts（ちびゴシック）。テーマがグローバルで読込済み */
	font-family: tbchibirgothicplusk-pro, "Hiragino Sans", sans-serif;
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

.home-rebuild *,
.home-rebuild *::before,
.home-rebuild *::after {
	box-sizing: border-box;
}

.hp-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

.hp-container--narrow {
	max-width: 880px;
}

/* セクション余白：たっぷり取る（グローバルの .section !important を避け独自クラス） */
.hp-section {
	padding: 84px 0;
}

.hp-section--tint {
	background: var(--green-tint);
}

.hp-section--soft {
	background: var(--bg-soft);
}

/* ---------- セクション見出し（中央・緑のアイブロウ＋下線） ---------- */
.hp-head {
	text-align: center;
	margin: 0 0 48px;
}

.home-rebuild .hp-head__eyebrow {
	display: block;
	font-size: 13px;
	letter-spacing: .18em;
	font-weight: 700;
	color: var(--green);
	margin: 0 0 10px;
}

.home-rebuild .hp-head__title {
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.45;
}

.hp-head__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	border-radius: 3px;
	background: var(--green);
	margin: 16px auto 0;
}

/* ---------- ボタン ---------- */
.home-rebuild .hp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	border: 2px solid transparent;
	transition: opacity .2s, background .2s, color .2s, box-shadow .2s;
	cursor: pointer;
	line-height: 1.4;
}

.home-rebuild .hp-btn:hover {
	opacity: .9;
}

.hp-btn--green {
	background: var(--green-bright);
	color: #fff;
}

.hp-btn--green:hover {
	background: var(--green);
	opacity: 1;
}

.hp-btn--outline {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
}

.hp-btn--outline:hover {
	background: var(--green-d);
	border-color: var(--green-d);
	opacity: 1;
}

.hp-btn--ghost {
	background: rgba(255, 255, 255, .95);
	color: var(--green);
	border-color: #fff;
}

.hp-btnrow {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 28px;
}

/* ---------- ヒーロー ---------- */
.hp-hero {
	position: relative;
	overflow: hidden;
}

.hp-hero__track {
	position: relative;
}

.hp-hero__slide {
	display: none;
	min-height: 540px;
	background-size: cover;
	background-position: center;
	align-items: center;
	position: relative;
}

.hp-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .75) 38%, rgba(255, 255, 255, 0) 70%);
}

.hp-hero__slide.is-active {
	display: flex;
}

.hp-hero__panel {
	position: relative;
	z-index: 1;
	padding: 0 0 0 8%;
	max-width: 620px;
}

.hp-hero__eyebrow {
	display: inline-block;
	font-size: 13px;
	letter-spacing: .16em;
	font-weight: 700;
	color: var(--green);
	border-left: 4px solid var(--green);
	padding-left: 12px;
	margin: 0 0 18px;
}

.home-rebuild .hp-hero__lead {
	font-size: 25px;
	line-height: 1.7;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 28px;
}

.hp-hero__dots {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	z-index: 2;
}

.hp-hero__dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	background: rgba(0, 0, 0, .18);
	cursor: pointer;
	padding: 0;
	transition: background .2s;
}

.hp-hero__dot.is-active {
	background: var(--green);
}

/* 1枚目（白背景の線画・ほぼ正方形）はPCでは全体を引きで右寄せ表示。cover の拡大を回避 */
@media (min-width: 769px) {
	.hp-hero__slide--illust {
		background-size: contain;
		background-position: right center;
		background-color: #fff;
	}
}

/* ---------- 予約CTA（3カード）：ヒーロー直下に余白を空けて配置 ---------- */
.hp-cta {
	background: #fff;
	padding-top: 56px;
}

.hp-cta__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hp-cta__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	border-radius: 14px;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
	transition: transform .2s, box-shadow .2s;
}

.hp-cta__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.hp-cta__card--tel {
	background: var(--orange);
}

.hp-cta__card--web {
	background: var(--blue);
}

.hp-cta__card--line {
	background: var(--line-green);
}

.home-rebuild .hp-cta__label {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 4px;
}

.hp-cta__sub {
	font-size: 12.5px;
	opacity: .95;
}

.hp-cta__num {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .02em;
}

/* ---------- お知らせ ---------- */
.hp-news__list {
	margin: 0;
	border-top: 1px solid var(--line);
}

.hp-news__row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 22px;
	padding: 20px 6px;
	border-bottom: 1px solid var(--line);
}

.hp-news__date {
	font-weight: 700;
	color: var(--sub);
	margin: 0;
	min-width: 8em;
	font-size: 14px;
}

.hp-news__body {
	margin: 0;
	font-size: 15px;
}

.hp-news__body a {
	color: var(--green);
	text-decoration: none;
}

.hp-news__body a:hover {
	text-decoration: underline;
}

.hp-news__new {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 3px;
	padding: 2px 8px;
	margin-right: 10px;
	vertical-align: middle;
}

/* 初診予約状況（CPT booking の最新1件・毎日更新の重要情報） */
.hp-booking {
	margin-top: 30px;
	background: var(--green-tint);
	border: 1px solid #cfe6d6;
	border-left: 5px solid var(--green-bright);
	border-radius: 10px;
	padding: 22px 24px;
}

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

.home-rebuild .hp-booking__badge {
	display: inline-block;
	background: var(--green-bright);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 4px;
	padding: 4px 12px;
}

.hp-booking__date {
	font-size: 12.5px;
	color: var(--sub);
}

.hp-booking__text {
	font-size: 15px;
	line-height: 1.85;
	margin: 0 0 12px;
	color: var(--ink);
}

.hp-booking__link {
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
}

.hp-booking__link:hover {
	text-decoration: underline;
}

/* ---------- カードグリッド（汎用） ---------- */
.hp-cards {
	display: grid;
	gap: 26px;
}

.hp-cards--4 {
	grid-template-columns: repeat(4, 1fr);
}

.hp-cards--3 {
	grid-template-columns: repeat(3, 1fr);
}

.hp-cards--2 {
	grid-template-columns: repeat(2, 1fr);
}

.hp-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* ホバーアニメーションはリンクカード（クリック可能）のみ */
.hp-card--link {
	transition: transform .2s, box-shadow .2s;
}

.hp-card--link:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.hp-card__top {
	height: 6px;
	background: var(--green);
}

.hp-card__body {
	padding: 24px 22px;
}

.home-rebuild .hp-card__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--green);
	margin: 0 0 12px;
}

.hp-card__text {
	font-size: 14px;
	line-height: 1.85;
	color: var(--ink);
	margin: 0;
}

/* 画像付きカード（デイケア／グループ施設） */
.hp-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.hp-card--link {
	text-decoration: none;
	color: inherit;
}

.home-rebuild .hp-card--link .hp-card__title {
	margin: 0;
}

.hp-card--link .hp-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.hp-card__arrow {
	color: var(--green);
	font-weight: 700;
}

/* ---------- タブ（診療時間 / 担当医表） ---------- */
.hp-tabs__nav {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 0;
}

.hp-tabs__btn {
	border: 1px solid var(--line);
	border-bottom: 0;
	background: #fff;
	color: var(--sub);
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	font-family: inherit;
}

.hp-tabs__btn.is-active {
	background: var(--green-bright);
	color: #fff;
	border-color: var(--green-bright);
}

.hp-tabs__panel {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0 0 14px 14px;
}

.hp-tabs__panel[hidden] {
	display: none;
}

/* ---------- 院長あいさつ ---------- */
.hp-greeting {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 44px;
	align-items: start;
}

.hp-greeting__photo {
	text-align: center;
}

.hp-greeting__photo img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.hp-greeting__name {
	display: block;
	margin-top: 14px;
	font-weight: 700;
	color: var(--green);
}

.hp-greeting__body p {
	font-size: 15px;
	line-height: 1.95;
	margin: 0 0 1.2em;
	color: var(--ink);
}

.hp-greeting__banners {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 12px;
}

.hp-greeting__banners img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	border: 1px solid var(--line);
}

/* ---------- 特長バンド ---------- */
.hp-feature__points {
	list-style: none;
	margin: 0 auto 8px;
	padding: 0;
	max-width: 760px;
}

.hp-feature__points li {
	position: relative;
	padding: 10px 0 10px 1.6em;
	font-size: 15px;
	line-height: 1.85;
}

.hp-feature__points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 700;
}

/* ---------- アクセス ---------- */
.hp-access {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	align-items: start;
}

.hp-access__info p {
	font-size: 15px;
	line-height: 1.9;
	margin: 0 0 14px;
}

.hp-access__tel a {
	color: var(--ink);
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
}

.hp-access__fax {
	font-size: 15px;
	color: var(--sub);
}

.hp-maplink {
	color: var(--blue);
	text-decoration: none;
	font-weight: 700;
}

.hp-access__map iframe {
	width: 100%;
	height: 380px;
	border: 0;
	border-radius: 14px;
}

/* =========================================================
   下層ページ共通パーツ（page-{slug}.php で再利用）
   ========================================================= */
/* ページヘッダー（タイトル帯） */
/* adios の `header{position:fixed}` がページ内 <header> にも効くのを打ち消す。
   position:static にして塗り順を最下層に置き、グローバルナビのドロップダウンより手前に来ないようにする。 */
.hp-page-header {
	background: var(--green-tint);
	padding: 52px 0;
	text-align: center;
	position: static;
	height: auto;
}

/* グローバルナビ（adios style-2）のドロップダウンを本文より確実に前面へ。
   親テーマは .drop-menu に z-index 未指定のため、本文側に positioned 要素があっても負けないよう明示する。 */
.style-2 .drop-menu,
.style-2 .drop-menu-next {
	z-index: 1001;
}

.home-rebuild .hp-page-header__eyebrow {
	display: block;
	font-size: 13px;
	letter-spacing: .18em;
	font-weight: 700;
	color: var(--green);
	margin: 0 0 10px;
}

.home-rebuild .hp-page-header__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.4;
}

.hp-page-header__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	border-radius: 3px;
	background: var(--green-bright);
	margin: 16px auto 0;
}

/* レスポンシブテーブルラッパー（担当医表など横長テーブル用） */
.hp-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	display: block;
	width: 100%;
	max-width: 100%;
}

/* 本文ブロック（見出し＋本文／箇条書き） */
.hp-block {
	margin-bottom: 42px;
}

.hp-block:last-child {
	margin-bottom: 0;
}

.home-rebuild .hp-block__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--green);
	margin: 0 0 18px;
	padding: 0 0 10px;
	border-bottom: 2px solid var(--line);
	position: relative;
}

.hp-block__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 64px;
	height: 2px;
	background: var(--green-bright);
}

/* リッチテキスト（段落） */
.hp-rich p {
	font-size: 16px;
	line-height: 1.95;
	margin: 0 0 1.2em;
	color: var(--ink);
}

.hp-rich p:last-child {
	margin-bottom: 0;
}

.hp-rich a {
	color: var(--blue);
}

/* 箇条書き（緑のドット） */
.hp-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hp-list li {
	position: relative;
	padding: 9px 0 9px 1.5em;
	font-size: 16px;
	line-height: 1.9;
	color: var(--ink);
}

.hp-list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 1.05em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green-bright);
}

/* ---------- 下部固定バー：スクロールが進んでから出現（CTAカードとの二重表示回避） ---------- */
/* 位置・レイアウト・配色・表示切替をすべてここで完結させる。
   以前は位置/配色をカスタマイザー追加CSSに依存していたが、追加CSSの貼り替えで
   消えるリスクがあったため、テーマ側(home.css)に集約した。 */
.fixed-contact-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	display: flex;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, .15);
	transform: translateY(110%); /* 初期は画面外。スクロール後 .is-visible で出現 */
	transition: transform .35s ease;
	will-change: transform;
}

.fixed-contact-bar.is-visible {
	transform: translateY(0);
}

.fixed-contact-bar a {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 22px 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .05em;
	color: #fff;
	transition: opacity .2s ease;
}

.fixed-contact-bar .btn-tel  { background-color: #E99239; opacity: .90; }
.fixed-contact-bar .btn-mail { background-color: #337ab7; opacity: .90; }
.fixed-contact-bar .btn-line { background-color: #53B74E; opacity: .90; }
.fixed-contact-bar a:hover   { opacity: 1; }

.fixed-contact-bar .circle-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #fff;
	font-size: 16px;
	margin-right: 8px;
	flex-shrink: 0;
}

/* コンテンツが固定バーに隠れないよう余白を確保（バーがあるPHPページは home.css を読込む） */
body { padding-bottom: 70px; }

/* ---------- 下層ページ：医師紹介 ---------- */
.hp-doctor__card {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 28px;
	align-items: start;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	margin-bottom: 24px;
}

.hp-doctor__card:last-child {
	margin-bottom: 0;
}

.hp-doctor__photo {
	text-align: center;
}

.hp-doctor__photo img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--green-tint);
}

.hp-doctor__photo--placeholder {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: var(--green-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: var(--green);
	font-size: 40px;
}

.home-rebuild .hp-doctor__name {
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 3px;
}

.hp-doctor__role {
	font-size: 13px;
	color: var(--sub);
	font-weight: 700;
	margin: 0 0 10px;
	letter-spacing: .04em;
}

.hp-doctor__quals {
	font-size: 13px;
	color: var(--sub);
	margin: 0 0 14px;
	line-height: 1.75;
}

.hp-doctor__bio {
	font-size: 14px;
	line-height: 1.95;
	color: var(--ink);
	margin: 0;
}

/* ---------- 下層ページ：ブログ一覧 ---------- */
.hp-blog__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.hp-blog__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform .2s, box-shadow .2s;
}

.hp-blog__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}

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

.hp-blog__thumb--none {
	width: 100%;
	height: 160px;
	background: var(--green-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 32px;
}

.hp-blog__body {
	padding: 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hp-blog__date {
	font-size: 16px;
	color: #333333;
	margin: 0 0 4px;
}

.home-rebuild .hp-blog__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 6px;
	line-height: 1.5;
}

.hp-blog__cat {
	font-size: 11px;
	background: var(--green-tint);
	color: var(--green);
	border-radius: 3px;
	padding: 2px 7px;
	display: inline-block;
	font-weight: 700;
}

.hp-blog__pager {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 36px;
	flex-wrap: wrap;
}

.hp-blog__pager a,
.hp-blog__pager span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid var(--line);
	text-decoration: none;
	color: var(--ink);
}

.hp-blog__pager a:hover {
	background: var(--green-tint);
	border-color: var(--green);
	color: var(--green);
}

.hp-blog__pager span {
	background: var(--green-bright);
	color: #fff;
	border-color: var(--green-bright);
}

/* ---------- QA（こんなときに）各ブロック ---------- */
.hp-qa__tag {
	display: inline-block;
	background: var(--green-bright);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	padding: 3px 10px;
	margin-bottom: 8px;
}

.hp-qa__diag {
	font-size: 13px;
	color: var(--sub);
	font-weight: 700;
	margin: 8px 0 0;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
	.hp-cards--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-greeting {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hp-greeting__photo {
		text-align: center;
	}

	.hp-access {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hp-section {
		padding: 56px 0;
	}

	.hp-container {
		padding: 0 18px;
	}

	.hp-head {
		margin-bottom: 34px;
	}

	.home-rebuild .hp-head__title {
		font-size: 22px;
	}

	.hp-page-header {
		padding: 36px 0;
	}

	.home-rebuild .hp-page-header__title {
		font-size: 22px;
	}

	.home-rebuild .hp-block__title {
		font-size: 18px;
	}

	.hp-hero__slide {
		min-height: 420px;
	}

	.hp-hero__slide::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .7) 60%, rgba(255, 255, 255, .55) 100%);
	}

	.hp-hero__panel {
		padding: 0 20px;
		max-width: none;
	}

	.home-rebuild .hp-hero__lead {
		font-size: 20px;
	}

	.hp-cta {
		padding-top: 36px;
	}

	.hp-cta__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hp-cta__card {
		padding: 22px;
	}

	.hp-cards--4,
	.hp-cards--3,
	.hp-cards--2 {
		grid-template-columns: 1fr;
	}

	/* デイケア・関連施設の画像カード（--3）は巨大になりすぎるので約60%幅で中央寄せ */
	.hp-cards--3 {
		max-width: 62%;
		margin-left: auto;
		margin-right: auto;
	}

	.hp-greeting__banners {
		grid-template-columns: 1fr;
	}

	.hp-tabs__nav {
		gap: 4px;
	}

	.hp-tabs__btn {
		padding: 12px 18px;
		font-size: 15px;
	}

	.hp-tabs__panel {
		padding: 18px;
	}

	.hp-access__map iframe {
		height: 280px;
	}

	/* 担当医表: インラインの min-width:600px をモバイルで打ち消して縦スタック表示を有効化 */
	.hp-table-wrap .tbl-r05 {
		min-width: 0 !important;
	}
}