/* =========================================================
   heartcenter global.css （デザイントークン・共通・ヘッダー・フッター）
   ========================================================= */

:root {
	/* 配色（デザインより。描画確認しながら微調整） */
	--cream:   #faf7eb;   /* ページ背景（クリーム） */
	--white:   #ffffff;
	--ink:     #3b3a38;   /* 本文テキスト */
	--ink-2:   #6a6862;
	--green:   #009655;   /* 主アクセント（ブランドグリーン） */
	--green-d: #0f9457;
	--pink:    #e4007f;   /* マゼンタ（一部装飾） */
	--pink-d:  #c30069;
	--crimson: #a71e41;   /* クリムゾン（ボタン帯・ハート・バッジ） */
	--crimson-d: #86182f;
	--line:    #e7e1cf;
	--footer:  #3c3b36;   /* フッター濃色 */

	/* メニュー各色（デザイン実測値） */
	--c-cyan:     #9fd9f6;
	--c-pink:     #f2c7dd;
	--c-purple:   #c9b6df;
	--c-tan:      #e1cb9c;
	--c-yellow:   #f8ef8b;
	--c-lavender: #cdb9d8;
	--c-gray:     #bfbebf;
	--c-green:    #bfdcad;
	--c-teal:     #b1d6d2;
	--c-orange:   #fcd998;

	/* フォント */
	--font-sans:  "Noto Sans JP", sans-serif;
	--font-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
	--font-mincho:"Shippori Mincho", "Noto Serif JP", serif;
	--font-en:    "Montserrat", sans-serif;

	--container: 1120px;
	--header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
body.hc-noscroll { overflow: hidden; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
p {
    font-size: 16px;
    line-height: 160%;
    letter-spacing: .02em;
    font-weight: 500;
}
.hc-container, .hc-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ハート仮マーク（正式ロゴ差し替えまで） */
.hc-logo__mark { color: var(--pink); }

/* Instagram 仮アイコン */
.hc-icon-insta {
	display: inline-block; width: 26px; height: 26px; border-radius: 8px;
	border: 2px solid var(--ink); position: relative;
}
.hc-icon-insta::before { content: ""; position: absolute; inset: 5px; border: 2px solid var(--ink); border-radius: 50%; }
.hc-icon-insta::after { content: ""; position: absolute; top: 4px; right: 4px; width: 3px; height: 3px; background: var(--ink); border-radius: 50%; }

/* ボタン共通（角丸ピル） */
.hc-btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--font-round); font-weight: 700;
	padding: 12px 34px; border-radius: 999px; text-align: center;
	transition: transform .2s, box-shadow .2s, background .2s;
}
.hc-btn--green { background: var(--green); color: #fff; }
.hc-btn--green:hover { background: var(--green-d); color:#fff; }
.hc-btn--pink { background: var(--crimson); color: #fff; }
.hc-btn--pink:hover { background: var(--crimson-d); color:#fff; }

/* 写真プレースホルダ（正式画像差し替えまで） */
.hc-ph {
	display: grid; place-items: center; width: 100%; height: 100%;
	background: repeating-linear-gradient(45deg, #e9e3d2, #e9e3d2 10px, #efe9d8 10px, #efe9d8 20px);
	color: #b7ad92; font-family: var(--font-en); font-weight: 600; letter-spacing: .1em; font-size: .8rem;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.hc-header {
	position: sticky; top: 0; z-index: 1300; /* ドロワー(1350)はヘッダーより前面。閉じるのはドロワー右上の× */
	background: var(--white);
	transition: box-shadow .3s;
}
.hc-header.is-scrolled { box-shadow: 0 4px 18px rgba(60,50,20,.10); }
.hc-header__inner {
	max-width: 1200px; margin-inline: auto; padding: 12px 24px;
	display: flex; align-items: center; gap: 20px; min-height: var(--header-h);
	transition: min-height .35s ease, padding .35s ease;
}
.hc-header.is-scrolled .hc-header__inner { min-height: 60px; padding-top: 8px; padding-bottom: 8px; }
.hc-logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.hc-logo img { height: 52px; width: auto; transition: height .35s ease; }
.hc-header.is-scrolled .hc-logo img { height: 36px; }
.hc-logo__mark { font-size: 1.8rem; line-height: 1; }
.hc-logo__text { font-family: var(--font-round); font-weight: 700; font-size: 1.15rem; line-height: 1.2; color: var(--ink); display: flex; flex-direction: column; }
.hc-logo__text small { font-size: .6rem; font-weight: 500; color: var(--ink-2); }

.hc-gnav { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.hc-gnav__list { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.hc-gnav__list li { position: relative; }
/* 項目間の縦線（#13ae67）※先頭は除く */
.hc-gnav__list li + li::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 1px; height: 16px; background: #13ae67;
}
.hc-gnav__list a {
	display: block; padding: 8px 16px; font-family: var(--font-round); font-weight: 700;
	font-size: .92rem; color: var(--ink); transition: color .2s;
}
.hc-gnav__list a:hover { color: #a71e41; }
.hc-gnav__sns { display: inline-flex; }
.hc-gnav__sns img, .hc-sns-sp img { width: 30px; height: 30px; display: block; }
/* SP用 Instagram アイコン（PCでは非表示） */
.hc-sns-sp { display: none; }

/* ハンバーガー（SP） */
.hc-burger { display: none; position: relative; z-index: 1200; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; padding: 0; margin-left: auto; }
.hc-burger span { display: block; width: 26px; height: 3px; margin: 0 auto; background: var(--ink); border-radius: 3px; transition: .3s; }
.hc-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hc-burger.is-open span:nth-child(2) { opacity: 0; }
.hc-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* SPドロワー（クリーム地＋白角丸カード）
   ※ヘッダー(1300)より前面に出し、パネル右上の×ボタンで閉じる */
.hc-drawer {
	position: fixed; top: 0; right: 0; height: 100dvh; width: min(94vw, 400px);
	background: #f7f3e6; z-index: 1350; padding: 72px 14px 16px;
	transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
	display: flex; flex-direction: column;
	border-top-left-radius: 22px; border-bottom-left-radius: 22px;
}
.hc-drawer.is-open { transform: none; }
/* 右上の×（閉じる）ボタン */
.hc-drawer__close {
	position: absolute; top: 14px; right: 16px;
	width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 0;
}
.hc-drawer__close span {
	position: absolute; left: 50%; top: 50%; width: 26px; height: 2.5px;
	background: var(--ink); border-radius: 2px;
}
.hc-drawer__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hc-drawer__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.hc-drawer__card {
	flex: 1 1 auto; display: flex; flex-direction: column;
	background: #fff; border-radius: 26px; padding: 16px 28px 26px;
	overflow-y: auto; min-height: 0;
}
/* メニュー：ラベル＋ピンク跳ね矢印＋区切り線（項目の下のみ） */
.hc-drawer__nav { flex: 1 1 auto; }
.hc-drawer__list { list-style: none; margin: 0; padding: 0; }
.hc-drawer__list li { border-bottom: 1px solid #c97d95; }
.hc-drawer__list a {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    transition: color .2s;
}
.hc-drawer__list a::after {
	/* デザイン準拠の「→」: 水平シャフト＋45°の対称アローヘッド（SVG線画） */
	content: ""; width: 20px; height: 19px; flex: 0 0 auto; margin-left: 12px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20'%3E%3Cg fill='none' stroke='%23c97d95' stroke-width='1.2' stroke-linecap='round'%3E%3Cline x1='0.6' y1='10' x2='19.8' y2='10'/%3E%3Cline x1='10.8' y1='1' x2='19.8' y2='10'/%3E%3Cline x1='10.8' y1='19' x2='19.8' y2='10'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.hc-drawer__list a:hover, .hc-drawer__list a:active { color: var(--crimson); }
/* 下部：Instagram＋コピーライト */
.hc-drawer__foot { flex: 0 0 auto; text-align: center; padding: 30px 0 6px; }
.hc-drawer__sns { display: inline-block; }
.hc-drawer__sns img { width: 30px; height: 30px; display: block; margin: 0 auto 14px; }
.hc-drawer__copy {font-size: .58rem; letter-spacing: .02em; color: #4a4844; margin: 0; font-weight: 700; }
/* オーバーレイ（暗くなりすぎないよう軽めに＋ぼかし） */
.hc-drawer-overlay { position: fixed; inset: 0; background: rgba(90,80,50,.14); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); z-index: 1050; opacity: 0; visibility: hidden; transition: .3s; }
.hc-drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   共通ボタン帯
   ========================================================= */
.hc-footcta { background: var(--cream); padding: 42px 24px 62px; }
.hc-footcta__inner {max-width:1000px; margin-inline: auto; display: flex; gap:2%; justify-content: center; flex-wrap: wrap; padding-inline: 24px;}
.hc-footcta__btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32%;
    height: 48px;
    padding: 0 10px;
    background: var(--crimson);
    color: #fff;
    font-weight: 900;
    font-size: 17px;
    border: 1px solid #231815;
    border-radius: 999px;
    transition: background .2s, transform .2s;
}
.hc-footcta__btn:hover { background: var(--crimson-d); color: #fff; transform: translateY(-2px); }

/* =========================================================
   フッター（白/クリーム地・デザイン準拠）
   ========================================================= */
.hc-footer { background: #fff; color: var(--ink); padding: 30px 24px 22px; }
.hc-footer__inner { max-width:1200px; margin-inline: auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
/* 左：ロゴ＋住所を横並び（デザイン準拠） */
.hc-footer__brand { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hc-footer__logo { display: block; }
.hc-footer__logo img { height: 56px; width: auto; }
.hc-footer__addr { font-size: .8rem; line-height: 1.7; margin: 0; color: var(--ink); font-weight: 500; }
.hc-addr-sep { display: none; }
/* 右：澄心会グループ（ラベル＋横線、ロゴ2つ、コピーライト右下） */
.hc-footer__group { text-align: left; min-width: 400px; }
.hc-footer__grouplabel { display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
    font-size: 15px; }
.hc-footer__grouplabel::after { content: ""; flex: 1 1 auto; height: 1px; background: #3b3a38; }
.hc-footer__grouplist { list-style: none; margin: 0 0 20px; padding: 0; display: flex; gap: 34px; flex-wrap: wrap; }
.hc-footer__grouplogo { height: 44px; width: auto; /* 白背景をCSSで消す（乗算合成） */ mix-blend-mode: multiply; }
.hc-footer__copy { font-size: .68rem; color: var(--ink); font-weight: 700; margin: 0; font-family: var(--font-en); text-align: right; }

/* =========================================================
   下層ページ 共通
   ========================================================= */
.hc-page { padding: 40px 0 20px; }
.hc-postlist { list-style: none; margin: 0; padding: 0; }
.hc-postlist__item { border-bottom: 1px dashed var(--line); }
.hc-postlist__item a { display: flex; gap: 16px; padding: 16px 4px; }
.hc-postlist__item time { color: var(--green-d); font-family: var(--font-en); font-weight: 600; flex: 0 0 auto; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1024px) {
	.hc-gnav { display: none; }
	.hc-sns-sp { display: inline-flex; margin-left: auto; }
	.hc-sns-sp img { width: 27px; height: 27px; }
	.hc-burger { display: flex; margin-left: 0; }
}
@media (max-width: 768px) {
	body { font-size: 15px; }
	.hc-container, .hc-inner { width:92%; padding-inline: 0; }
	.hc-header__inner { padding: 10px 18px; min-height: 60px; gap:8px; }
	.hc-logo img { height: 34px; }
	.hc-header.is-scrolled .hc-header__inner { min-height: 46px; padding-top: 6px; padding-bottom: 6px; }
	.hc-header.is-scrolled .hc-logo img { height: 34px; }
	.hc-logo__text { font-size: 1rem; }
	.hc-footcta { padding: 42px 24px 40px; }
	.hc-footcta__inner { flex-direction: column; align-items: center; gap:12px; }
	.hc-footcta__btn { width: 260px; height: 40px; font-size: .88rem; }
	.hc-footer { padding: 28px 42px 24px 46px; }
	.hc-footer__inner { flex-direction: column; gap: 15px; }
	.hc-footer__brand { flex-direction: column; align-items: flex-start; gap: 6px; }
	.hc-footer__logo img { height: 40px; }
	.hc-footer__addr { font-size: .64rem; letter-spacing: 0; white-space: nowrap; }
	.hc-br-pc { display: none; }
	.hc-addr-sep { display: inline; }
	.hc-footer__group { min-width: 0; width: 100%; }
	.hc-footer__grouplist { margin-bottom: 14px; gap: 20px; }
	.hc-footer__grouplogo { height: 30px; }
	.hc-footer__copy { font-size: .62rem; }
}

/* スクロール演出の初期状態（JS無効でも表示されるようフォールバック） */
.hc-reveal { }

/* =========================================================
   下層ページ 共通ヒーロー
   ========================================================= */
.hc-phero { padding:40px 0 10px; }
.hc-phero__photo {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
/* ヒーロー実画像は本来の縦幅で表示 */
.hc-phero__photo > img { width: 100%; height: auto; display: block; border-radius: 24px; }
/* プレースホルダ（画像未設定ページ）は明示高さ */
.hc-phero__photo .hc-ph { border-radius: 24px; height: 340px; }
.hc-phero__badge {
	position: absolute; top: 8px; right: 32px;
}
.hc-phero__head { max-width: 860px; margin: 0 auto; padding: 6px 24px 0; text-align: center; }
.hc-phero__head--nohero { padding-top: 30px; }
.hc-phero__en {
	font-family: var(--font-en); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--green); letter-spacing: .05em; margin: 0 0 14px;
}
.hc-phero__title { font-family: var(--font-mincho); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); margin: 0 0 12px; }
.hc-phero__lead { color: var(--ink);
    font-size: 17px;
    line-height: 2;
    margin: 0;
    font-weight: 700;
    margin: 15px 0 10px;
    font-family: var(--font-mincho);
}
.hc-phero__lead--mincho { font-family: var(--font-mincho); }
.hc-phero__date { font-family: var(--font-en); font-weight: 600; color: var(--ink-2); }
.hc-phero--article .hc-phero__head { padding-top: 30px; }

/* =========================================================
   セクション・本文
   ========================================================= */
.hc-section { padding: 40px 0 60px; }
.hc-content { max-width: 860px; }
.hc-content h2 {
	font-family: var(--font-round); font-weight: 700; font-size: 1.5rem; color: var(--ink);
	margin: 40px 0 16px; padding-left: 14px; border-left: 6px solid var(--green); border-radius: 2px;
}
.hc-content h3 { font-family: var(--font-round); font-weight: 700; font-size: 1.2rem; color: var(--green-d); margin: 28px 0 12px; }
.hc-content p { margin: 0 0 18px; }
.hc-content img { border-radius: 12px; }
.hc-content ul, .hc-content ol { margin: 0 0 18px; padding-left: 1.4em; }
.hc-content li { margin-bottom: 8px; }
.hc-content a { color: var(--green-d); text-decoration: underline; }
.hc-content table { width: 100%; border-collapse: collapse; margin: 0 0 24px; }
.hc-content th, .hc-content td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.hc-content th { background: #fbf8ee; width: 30%; }
.hc-content__thumb { margin: 0 0 28px; }
.hc-content__thumb img { width: 100%; border-radius: 16px; }
.hc-backlink { text-align: center; margin-top: 40px; }

/* =========================================================
   看護師インタビュー 一覧（丸型カード）
   ========================================================= */
.hc-intv__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 56px; max-width: 760px; margin: 0 auto; }
.hc-intvcard { width: 300px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hc-intvcard__num { font-family: var(--font-en); font-weight: 700; font-size: 2rem; color: var(--green); line-height: 1; margin-bottom: 6px; }
.hc-intvcard__photo { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; display: block; position: relative; }
.hc-intvcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.hc-intvcard__photo .hc-ph { border-radius: 50%; }
.hc-intvcard__tag {
	display: inline-block; margin: -16px auto 0; position: relative; z-index: 2;
	background: var(--green); color: #fff; font-family: var(--font-round); font-weight: 700;
	font-size: .82rem; padding: 4px 20px; border-radius: 999px;
}
.hc-intvcard__name { font-family: var(--font-round); font-weight: 700; font-size: 1.2rem; margin-top: 10px; color: var(--ink); }
.hc-intvcard:hover .hc-intvcard__photo { opacity: .9; }

/* =========================================================
   カードグリッド（ブログ等）
   ========================================================= */
.hc-cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hc-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.hc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(60,50,20,.12); }
.hc-card__thumb { aspect-ratio: 16/10; overflow: hidden; }
.hc-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hc-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.hc-card__date { font-family: var(--font-en); font-weight: 600; color: var(--green-d); font-size: .82rem; }
.hc-card__title { font-family: var(--font-round); font-weight: 700; color: var(--ink); line-height: 1.5; }

/* NEWS一覧 */
.hc-newslist { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 6px 24px; max-width: 860px; margin: 0 auto; }
.hc-newslist__item { display: flex; gap: 20px; align-items: baseline; padding: 16px 6px; border-bottom: 1px dashed var(--line); }
.hc-newslist__item:last-child { border-bottom: 0; }
.hc-newslist__date { font-family: var(--font-en); font-weight: 600; color: var(--ink-2); flex: 0 0 auto; }
.hc-newslist__item:hover .hc-newslist__title { color: var(--pink); }

/* ページネーション */
.pagination, .navigation .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-numbers { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-family: var(--font-en); font-weight: 600; color: var(--ink); }
.page-numbers.current { background: var(--green); color: #fff; border-color: var(--green); }

@media (max-width: 900px) {
	.hc-cardgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.hc-phero__photo { padding: 0px 18px 10px;}
	.hc-phero__photo .hc-ph { height: 220px; }
	.hc-phero__badge { right: 24px; }
	.hc-cardgrid { grid-template-columns: 1fr; }
	.hc-intv__grid { gap: 32px; }
	.hc-newslist__item { flex-direction: column; gap: 2px; }
	.hc-content h2 { font-size: 1.3rem; }
.hc-phero__lead{
	font-size: 15px;
    letter-spacing: 0;
    text-align: justify;
    line-height:160%;
	}

.hc-phero {
    padding: 25px 0 10px;
}
}

/* =========================================================
   EKGライン見出し（緑・心拍アイコン＋横線）※各コンテンツページ共通
   ========================================================= */
.hc-ekg {
	display: flex; align-items: center; gap: 12px;
font-weight: 900; font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--green); margin: 56px 0 22px;
}
.hc-ekg::before {
	content: ""; flex: 0 0 auto; width: 46px; height: 22px;
	background: no-repeat center/contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 22'%3E%3Cpath d='M0 11h10l3-8 5 16 4-13 3 7 4-2h14' fill='none' stroke='%237cc043' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hc-ekg::after { content: ""; flex: 1 1 auto; height: 2px; background: linear-gradient(90deg, var(--green), rgba(124,192,67,.15)); border-radius: 2px; }

/* 緑のサブ見出し（2行キャッチ） */
.hc-subhead {font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--green-d); line-height: 1.5; margin: 0 0 14px; }

/* テキスト＋写真の2カラム（交互配置対応） */
.hc-media { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: start; margin-bottom: 20px; }
.hc-media__body p { margin: 0 0 15px;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: .02em;
    font-weight: 500; }
.hc-media__photo { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.hc-media__photo .hc-ph { height: 100%; }
.hc-media--rev .hc-media__body { order: 2; }

/* 大きな図版プレースホルダ（STEP UP等・後日画像差し替え） */
.hc-figph { display: grid; place-items: center; border-radius: 16px; border: 2px dashed #d9cdbb; background: linear-gradient(135deg,#fbe7f2,#eaf6e6 60%,#e6f0f7); min-height: 280px; color: #9a8f79; font-family: var(--font-round); font-weight: 700; text-align: center; padding: 20px; margin: 20px 0 40px; }
.hc-figph small { display:block; font-family: var(--font-en); font-size: .72rem; color: #b3a88f; margin-top: 6px; }

/* 横スクロール表（スライドします） */
.hc-scrollnote { font-family: var(--font-round); font-weight: 700; color: #4aa3d6; font-size: .85rem; margin: 0 0 8px; }
.hc-scrollx { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
.hc-scrollx table { border-collapse: collapse; min-width: 780px; width: 100%; }

@media (max-width: 768px) {
	.hc-media { grid-template-columns: 1fr; gap: 16px; }
	.hc-media--rev .hc-media__body { order: 0; }
	.hc-ekg { margin: 40px 0 18px; }
}

/* =========================================================
   共通部品（複数ページ）
   ========================================================= */
/* 緑バー見出し（病院概要などの帯見出し） */
.hc-barhead { background: var(--green); color: #fff; font-family: var(--font-round); font-weight: 700; font-size: 1.2rem; text-align: center; padding: 12px 20px; border-radius: 999px; margin: 40px 0 20px; }

/* ノート風カード（穴あき） */
.hc-note { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px 28px; margin:45px 0 30px; box-shadow: 0 4px 14px rgba(60,50,20,.05); }
.hc-note::before { content: ""; position: absolute; top: 14px; left: 0; right: 0; height: 14px; background-image: radial-gradient(circle, #efe9d8 6px, transparent 7px); background-size: 16.6% 100%; background-repeat: repeat-x; background-position: center; }
.hc-note__title { font-weight: 900; font-size: 1.3rem; color: var(--ink); text-align: center; margin: 6px 0 18px; }
.hc-note__title .hc-note__accent { color: var(--pink); }

/* 数値アイコンカード（福利厚生など） */
.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin: 20px 0 10px; }
.hc-statcard { display: flex; align-items: center; gap: 16px; background: #fbf6df; border-radius: 16px; padding: 18px 22px; }
.hc-statcard__icon { flex: 0 0 auto; width: 56px; height: 56px; display: grid; place-items: center; color: var(--pink); font-size: 1.8rem; }
.hc-statcard__body { display: flex; flex-direction: column; }
.hc-statcard__label { font-family: var(--font-round); font-weight: 700; font-size: .9rem; color: var(--ink); }
.hc-statcard__label small { display: block; font-size: .62rem; color: var(--ink-2); font-weight: 500; }
.hc-statcard__num { font-family: var(--font-en); font-weight: 700; font-size: 2rem; color: var(--green); line-height: 1.1; }
.hc-statcard__num small { font-family: var(--font-round); font-size: .9rem; color: var(--ink); margin-left: 2px; }

@media (max-width: 768px) {
	.hc-stats { grid-template-columns: 1fr; }
	.hc-barhead { font-size: 1.05rem; }
}

/* =========================================================
   実画像対応・固定バッジ・ホバー演出
   ========================================================= */
/* ヘッダーロゴ画像 */
.hc-logo img { height:44px; width: auto; }
.hc-gnav__sns img { display: block; }
.hc-fixbadge {    position: fixed;
    top: 106px;
    right: max(24px, calc((100vw - 1200px) / 2 + 24px));
    z-index: 900;
    width: 140px;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .18));
    transform-origin: 50% 12%;
    animation: hc-badge-sway 3.2s ease-in-out infinite;
    /* JSで表示制御（少しスクロールで表示・フッター付近で非表示） */
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease; }
.hc-fixbadge.is-shown { opacity: 1; visibility: visible; pointer-events: auto; }
.hc-fixbadge img { width: 100%; height: auto; display: block; }
.hc-fixbadge:hover { animation-play-state: paused; transform: scale(1.06) rotate(-3deg); }
/* ゆらゆら揺れる */
@keyframes hc-badge-sway {
	0%, 100% { transform: rotate(-4deg); }
	50%      { transform: rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) { .hc-fixbadge { animation: none; } }
/* PC: 常時表示（JSスクロール制御を使わず常に visible） */
@media (min-width: 769px) {
	.hc-fixbadge { opacity: 1; visibility: visible; pointer-events: auto; }
}

/* デザイン内の旧バッジ枠は固定バッジに統一するため非表示 */
.hc-hero__badge, .hc-phero__badge { display: none !important; }

/* asset-16/17（岐阜・名古屋ロゴJPG）はコンテナ側で背景を消す */
img[src*="asset-16"], img[src*="asset-17"] { mix-blend-mode: multiply; }

/* ホバーで画像拡大（メニュー・カード類共通） */
.hc-menucard__thumb, .hc-card__thumb, .hc-media__photo, .hc-about-charm__item .hc-ph,
.hc-menucard__thumb img, .hc-card__thumb img { overflow: hidden; }
.hc-menucard__thumb img, .hc-card__thumb img {
	width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hc-menucard:hover .hc-menucard__thumb img,
.hc-card:hover .hc-card__thumb img { transform: scale(1.09); }

@media (max-width: 768px) {
	.hc-fixbadge { width: 92px; top: auto; bottom: 16px; right: 12px; opacity: 0; visibility: hidden; pointer-events: none; }
	.hc-fixbadge.is-shown { opacity: 1; visibility: visible; pointer-events: auto; }
	.hc-footer__copy { text-align: right; }
	.hc-footer__grouplist { gap: 22px; }
}

/* メディアフォト内の実画像 */
.hc-media__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
