@charset "UTF-8";
/* =========================================================================
   わたしのネコのクリニック — 共通スタイル
   静的HTML/CSSによる再構築（WordPress非依存）
   配色は元サイト（dental-smart）のピンク基調を踏襲
   ========================================================================= */

/* ---- デザイントークン --------------------------------------------------- */
:root {
  --accent: #c31456;        /* メイン（濃ピンク） */
  --accent-active: #d20049; /* 強調・アクティブ */
  --pink: #fc87b1;          /* ソフトピンク */
  --coral: #ff8d7e;         /* コーラル */
  --base: #fff3f7;          /* 淡ピンク背景 */
  --cream: #fbf5e9;         /* クリーム背景 */
  --bg: #ffffff;
  --text: #222222;
  --gray: #707780;
  --gray-2: #999999;
  --gray-3: #dadbe0;
  --line: #e8d7df;

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  --font-en: "Asap", "Noto Sans JP", sans-serif;

  --container: 1100px;
  --container-wide: 1300px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(138, 160, 181, .18);
}

/* ---- リセット ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: var(--accent); text-decoration: none; transition: opacity .25s, color .25s, background-color .25s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p, figure { margin: 0; }
table { border-collapse: collapse; width: 100%; }
strong { color: var(--accent); font-weight: 700; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

/* ---- 共通レイアウト ------------------------------------------------------ */
.container { width: min(92%, var(--container)); margin-inline: auto; }
.container.wide { max-width: var(--container-wide); }
.section { padding: 88px 0; }
.pc-only { display: revert; }
.sp-only { display: none; }

/* 見出し（英＋和） */
.head-en { display: block; font-family: var(--font-en); font-weight: 700; color: var(--accent);
  letter-spacing: .12em; line-height: 1; }
.head-ja { display: block; font-feature-settings: "palt" 1; letter-spacing: .06em; }

/* セクション中央見出し（英大→和） */
.sec-title { text-align: center; margin-bottom: 56px; }
.sec-title .en { font-family: var(--font-en); font-weight: 700; color: var(--accent);
  font-size: clamp(46px, 7vw, 96px); letter-spacing: .12em; line-height: 1; display: block; }
.sec-title .ja { display: block; margin-top: 6px; font-size: 1.15rem; color: var(--text);
  font-feature-settings: "palt" 1; letter-spacing: .08em; }

/* ボタン */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-width: 260px; padding: 17px 34px; border-radius: 50px;
  background: var(--pink); color: #fff; font-weight: 600; font-size: .95rem;
  letter-spacing: .06em; line-height: 1.3; box-shadow: 0 8px 20px rgba(252, 135, 177, .35);
  transition: transform .25s, box-shadow .25s, background-color .25s; }
.btn::after { content: ""; width: 8px; height: 8px; border-top: 2px solid #fff; border-right: 2px solid #fff;
  transform: rotate(45deg); margin-left: .2em; }
.btn:hover { opacity: 1; background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(195, 20, 86, .35); }
.btn.ghost { background: #fff; color: var(--accent); border: 1px solid var(--pink); box-shadow: none; }
.btn.ghost::after { border-color: var(--accent); }

/* ============================ ヘッダー（ヒーロー上に透過配置／元サイト準拠） == */
#header { position: absolute; top: 0; left: 0; width: 100%; z-index: 50; }
/* 元サイト準拠：中央寄せの固定幅コンテナ。ナビ／TELは上端の帯に配置（ロゴはその下へ張り出す） */
#header .inner { display: flex; align-items: flex-start; width: min(94%, 1480px); margin: 0 auto;
  min-height: 115px; padding-right: 104px; /* 右上ハンバーガーの逃げ */ }
#header .logo { flex: 0 0 auto; align-self: flex-start; margin-right: auto; padding: 16px 0 0 0; line-height: 0; }
#header .logo img { width: 140px; height: auto; }
#header .seo { display: none; } /* 元サイト同様、ヘッダーの説明文は非表示（SEO用にHTMLには残す） */
#header #gnav { flex: 0 0 auto; margin-left: 1.6vw; margin-top: 34px; /* 上端の帯に合わせる */ }
#header .header-tel { flex: 0 0 auto; margin-left: 1.2vw; margin-top: 36px; font-family: var(--font-en); font-weight: 700;
  font-size: 1.3rem; color: var(--text); letter-spacing: .03em; white-space: nowrap; display: flex; align-items: center; }
#header .header-tel small { font-size: 1em; }

/* グローバルナビ（PC・横並び／日本語ラベルのみ／ホバーでアイコン付きドロップダウン） */
#gnav > ul { display: flex; align-items: center; gap: clamp(3px, .7vw, 12px); }
#gnav > ul > li { position: relative; }
#gnav > ul > li > a { display: block; padding: 8px clamp(4px, .7vw, 9px); color: var(--text);
  font-weight: 600; font-size: .8125rem; line-height: 1.5; cursor: pointer; white-space: nowrap; }
#gnav > ul > li > a .en { display: none; } /* PC横並びは日本語のみ（元仕様） */
#gnav > ul > li:hover > a { color: var(--accent); opacity: 1; }
/* ドロップダウン（アイコン付き） */
#gnav .submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
  background: #fff; box-shadow: var(--shadow); border-radius: 14px; padding: 16px;
  display: flex; gap: 8px; opacity: 0; visibility: hidden; transition: .25s; z-index: 60; }
#gnav > ul > li:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
#gnav .submenu > li { width: 128px; }
#gnav .submenu > li > a { display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 16px 8px; border-radius: 12px; background: var(--base); color: var(--text);
  font-size: .82rem; font-weight: 600; line-height: 1.4; }
#gnav .submenu > li > a:hover { background: var(--pink); color: #fff; opacity: 1; }
#gnav .submenu > li > a:hover .svc-ico { background: #fff; }
#gnav .submenu > li > a:hover .svc-ico::before { background-image: var(--ico-h); }
#gnav .submenu .svc-ico { width: 54px; height: 54px; }

/* アイコン（背景画像方式：白アイコンPNGを丸の中に表示。file://でも確実に表示される）
   ホバー時はアクセント色のアイコンへ差し替え（--ico＝通常／--ico-h＝ホバー） */
.svc-ico { display: inline-block; width: 56px; height: 56px; border-radius: 50%; background: var(--pink);
  position: relative; flex: 0 0 auto; }
.svc-ico::before { content: ""; position: absolute; inset: 0; margin: auto; width: 52%; height: 52%;
  background-image: var(--ico);
  background-position: center; background-repeat: no-repeat; background-size: contain; }
.icon01 .svc-ico::before { --ico: url(../img/ico_01_white.png); --ico-h: url(../img/ico_01_accent.png); }
.icon02 .svc-ico::before { --ico: url(../img/ico_02_white.png); --ico-h: url(../img/ico_02_accent.png); }
.icon03 .svc-ico::before { --ico: url(../img/ico_03_white.png); --ico-h: url(../img/ico_03_accent.png); }
.icon04 .svc-ico::before { --ico: url(../img/ico_04_white.png); --ico-h: url(../img/ico_04_accent.png); }
.icon05 .svc-ico::before { --ico: url(../img/ico_05_white.png); --ico-h: url(../img/ico_05_accent.png); }
.icon06 .svc-ico::before { --ico: url(../img/ico_06_white.png); --ico-h: url(../img/ico_06_accent.png); }
.icon07 .svc-ico::before { --ico: url(../img/ico_07_white.png); --ico-h: url(../img/ico_07_accent.png); }
.icon08 .svc-ico::before { --ico: url(../img/ico_08_white.png); --ico-h: url(../img/ico_08_accent.png); }
.icon09 .svc-ico::before { --ico: url(../img/ico_09_white.png); --ico-h: url(../img/ico_09_accent.png); }
.icon10 .svc-ico::before { --ico: url(../img/ico_10_white.png); --ico-h: url(../img/ico_10_accent.png); }
.icon11 .svc-ico::before { --ico: url(../img/ico_11_white.png); --ico-h: url(../img/ico_11_accent.png); }

/* ハンバーガー（透過背景＋ピンクの3本線・右上に常時表示／元サイト準拠） */
#menuBtn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  position: fixed; top: 0; right: 0; z-index: 998; width: 90px; height: 100px; background: transparent;
  cursor: pointer; }
#menuBtn span { display: block; width: 40px; height: 3px; background: var(--accent); border-radius: 2px;
  transition: transform .3s, opacity .3s; }
#menuBtn.open span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
#menuBtn.open span:nth-child(2) { opacity: 0; }
#menuBtn.open span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }
@media (min-width: 751px) { #menuBtn { width: 110px; height: 115px; } #menuBtn span { width: 44px; } }

/* スライドインのメニューパネル */
#spNavOverlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 105; opacity: 0; visibility: hidden; transition: .35s; }
#spNavOverlay.open { opacity: 1; visibility: visible; }
#spNav { position: fixed; inset: 0 0 0 auto; width: min(88%, 380px); background: #fff; z-index: 110;
  transform: translateX(100%); transition: transform .35s; overflow-y: auto; padding: 96px 30px 48px;
  box-shadow: -10px 0 30px rgba(0,0,0,.18); }
#spNav.open { transform: translateX(0); }
#spNav .tel-btn { display: flex; align-items: center; justify-content: center; gap: .4em; background: var(--pink);
  color: #fff; border-radius: 30px; padding: 14px; font-weight: 700; margin-bottom: 22px; }
#spNav > ul > li { border-bottom: 1px solid var(--gray-3); }
#spNav > ul > li > a { display: flex; align-items: center; gap: 10px; padding: 16px 4px; color: var(--text); font-weight: 600; }
#spNav > ul > li > a .en { font-family: var(--font-en); font-size: .7rem; color: var(--pink); margin-left: auto; }
#spNav .submenu { padding: 2px 0 14px 14px; }
#spNav .submenu li a { display: block; padding: 9px 4px; font-size: .9rem; color: var(--gray); }
#spNav .submenu li a::before { content: "－ "; color: var(--pink); }

/* ============================ ヒーロー ================================== */
#hero { line-height: 0; }
#hero img { width: 100%; height: auto; object-fit: cover; }

/* ===================== トップ：こだわり（COMMITMENT） =================== */
.commitment { background: var(--base); }
.commitment .list { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.commitment .item { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.commitment .item figure { line-height: 0; }
.commitment .item figure img { width: 100%; aspect-ratio: 740/602; object-fit: cover; }
.commitment .txt { padding: 30px 34px 38px; position: relative; }
.commitment .numb { font-family: var(--font-en); font-weight: 700; font-size: 3.4rem; color: var(--coral);
  line-height: 1; display: block; }
.commitment .tit { margin: 6px 0 14px; }
.commitment .tit .en { font-family: var(--font-en); font-weight: 700; color: var(--coral); font-size: 1rem;
  letter-spacing: .08em; display: block; }
.commitment .tit .ja { font-size: 1.4rem; font-weight: 700; line-height: 1.5; font-feature-settings: "palt" 1; }
.commitment .txt p { font-weight: 400; font-size: 1rem; }

/* ===================== トップ：診療メニュー（MENU） ==================== */
.menubox { background: #fff; }
.menubox .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.menubox .card { display: flex; flex-direction: column; align-items: flex-start; height: 100%;
  background: var(--base); border-radius: 16px; padding: 32px 24px 30px; min-height: 360px;
  transition: background-color .3s; }
.menubox .card .svc-ico { width: 104px; height: 104px; margin: 0 auto 18px; background: var(--accent); }
.menubox .card .svc-ico::before { width: 47%; height: 47%; }
.menubox .card .ja { display: block; text-align: center; width: 100%; font-size: 1.2rem; font-weight: 700;
  font-feature-settings: "palt" 1; letter-spacing: .04em; line-height: 1.4; }
.menubox .card .en { display: block; margin-top: 16px; font-size: .9rem; font-weight: 400; line-height: 1.85;
  color: var(--text); letter-spacing: .04em; flex: 1; }
.menubox a.card:hover { background: var(--accent); opacity: 1; }
.menubox a.card:hover .ja, .menubox a.card:hover .en { color: #fff; }
.menubox a.card:hover .svc-ico { background: #fff; }
.menubox a.card:hover .svc-ico::before { background-image: var(--ico-h); }
.menubox .card.disabled { pointer-events: none; }
.menubox .card.disabled .svc-ico { background: var(--pink); }

/* ===================== トップ：特集ブロック（健康診断/歯科） =========== */
.feature { position: relative; overflow: hidden; }
.feature .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.feature .pic { line-height: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.feature .pic img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature .tit { margin-bottom: 18px; }
.feature .tit .en { font-family: var(--font-en); font-weight: 700; color: var(--coral); font-size: 1.05rem;
  letter-spacing: .1em; display: block; }
.feature .tit .ja { font-size: 1.9rem; font-weight: 700; line-height: 1.5; font-feature-settings: "palt" 1; }
.feature p { margin-bottom: 26px; }
.feature.reverse .pic { order: 2; }
.feature.light { background: var(--base); }

/* ===================== トップ：NEWS / BLOG ============================= */
.topinfo { background: var(--cream); }
.topinfo .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.info-block .info-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px;
  border-bottom: 2px solid var(--accent); padding-bottom: 12px; }
.info-block .info-head .en { font-family: var(--font-en); font-weight: 700; color: var(--pink); font-size: 1.6rem;
  letter-spacing: .08em; }
.info-block .info-head .ja { font-weight: 700; font-feature-settings: "palt" 1; }
.post-list li { border-bottom: 1px dashed var(--gray-3); }
.post-list li a, .post-list li .row { display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: center;
  padding: 16px 4px; color: var(--text); font-size: .92rem; }
.post-list li a:hover { opacity: 1; color: var(--accent); }
.post-list .date { font-family: var(--font-en); color: var(--gray); font-weight: 700; font-size: .85rem; }
.post-list .cat { background: var(--pink); color: #fff; font-size: .72rem; padding: 2px 12px; border-radius: 20px;
  font-weight: 600; }
.post-list .ttl { flex: 1 1 100%; }
.info-more { margin-top: 26px; text-align: right; }

/* ============================ 連絡バンド =============================== */
#contact { position: relative; padding: 70px 0; text-align: center; background: var(--pink); }
#contact .bg { position: absolute; inset: 0; background: url(../img/contact-bg.jpg) center/cover;
  opacity: .25; }
#contact .container { position: relative; }
#contact .tel-big { display: inline-flex; align-items: center; gap: .35em; font-family: var(--font-en);
  font-weight: 700; font-size: clamp(2rem, 5vw, 2.6rem); color: #fff; letter-spacing: .04em; }
#contact .tel-big:hover { opacity: .85; }
#contact .tel-big .ico { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: inline-flex;
  align-items: center; justify-content: center; }
#contact .tel-big .ico::before { content: "\260E"; color: var(--pink); font-size: 1rem; }
#contact .note { color: #fff; margin-top: 10px; font-size: .9rem; opacity: .95; }

/* ============================ フッター ================================= */
#footer { background: #fff; padding-top: 70px; }
#footer .container { width: min(94%, var(--container-wide)); }
#footer .logo-footer { text-align: center; margin-bottom: 22px; line-height: 0; }
#footer .logo-footer img { width: 360px; max-width: 80%; }
#footer .address { text-align: center; color: var(--text); margin-bottom: 34px; font-size: .95rem; }
#footer .address span { margin: 0 .4em; }
#footer .info { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: start; }

/* 診療時間表 */
.schedule table { border: 1px solid var(--gray-3); }
.schedule th, .schedule td { border: 1px solid var(--gray-3); text-align: center; padding: 10px 6px;
  font-size: .9rem; font-weight: 400; }
.schedule thead th, .schedule thead td { background: var(--accent); color: #fff; }
.schedule tbody th { background: var(--base); white-space: nowrap; font-weight: 600; }
.schedule .note { font-size: .85rem; color: var(--gray); margin-top: 10px; line-height: 1.6; }

/* フッターリンク */
.footer-links { columns: 2; column-gap: 30px; }
.footer-links > li { break-inside: avoid; margin-bottom: 10px; }
.footer-links > li > a { color: var(--text); font-weight: 600; font-size: .92rem; }
.footer-links > li > a:hover { color: var(--accent); }
.footer-links .submenu { margin: 6px 0 6px 14px; }
.footer-links .submenu li a { color: var(--gray); font-weight: 400; font-size: .86rem; padding: 3px 0; display: block; }
.footer-links .submenu li a::before { content: "- "; }

#footer .map { margin-top: 40px; line-height: 0; }
#footer .map iframe { width: 100%; height: 360px; border: 0; filter: grayscale(.1); }
#footer .copyright { text-align: center; background: var(--accent); color: #fff; font-family: var(--font-en);
  font-size: .72rem; letter-spacing: .1em; padding: 16px; margin: 40px 0 0; }

/* ============================ 固定ボタン（右下） ====================== */
#fixed { position: fixed; right: 18px; bottom: 28px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
#fixed .access { writing-mode: vertical-rl; text-orientation: upright; background: var(--pink); color: #fff;
  border-radius: 30px; padding: 22px 14px 18px; font-weight: 700; letter-spacing: .12em; min-height: 150px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
#fixed .access:hover { opacity: 1; background: var(--accent); }
#fixed #scrollUp { width: 50px; height: 50px; border-radius: 50%; background: var(--accent); color: #fff;
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow); }
#fixed #scrollUp.show { display: flex; }
#fixed #scrollUp::before { content: ""; width: 11px; height: 11px; border-top: 2px solid #fff;
  border-right: 2px solid #fff; transform: rotate(-45deg); margin-top: 4px; }

/* ===================== 下層：ページタイトル＋パンくず ================== */
/* 元サイト準拠(IdI層)：装飾バナー(pagetitle.jpg)はそのまま見せる（暗幕なし）。
   中央に EN(CLINIC＝大・ピンク・上) ＋ JA(濃色・小・下) を縦並び。線なし。 */
#pageTitle { position: relative; min-height: 380px; padding: 56px 0; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; }
#pageTitle .pic { position: absolute; inset: 0; z-index: 0; }
#pageTitle .pic img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
#pageTitle .ttl { position: relative; z-index: 2; }
#pageTitle .ttl .en { display: block; font-family: var(--font-en); font-weight: 700; font-size: clamp(48px, 7vw, 104px);
  color: var(--accent); letter-spacing: .05em; line-height: 1; }
#pageTitle .ttl .ja { display: block; margin-top: 8px; font-family: var(--font-jp); font-weight: 600;
  font-size: clamp(15px, 1.3vw, 20px); color: var(--text); font-feature-settings: "palt" 1; letter-spacing: .08em; }

#breadcrumb { background: var(--base); }
#breadcrumb ul { display: flex; flex-wrap: wrap; gap: 6px; width: min(92%, var(--container)); margin-inline: auto;
  padding: 12px 0; font-size: .8rem; color: var(--gray); }
#breadcrumb li + li::before { content: ">"; margin-right: 6px; color: var(--gray-2); }
#breadcrumb a { color: var(--accent); }

/* ============================ 下層：本文 ============================== */
#main { padding: 80px 0; }
#main .container { width: min(92%, var(--container)); }
.lead { font-size: 1.05rem; margin-bottom: 40px; }

/* セクション見出し ui_tit02 相当（左の縦バー） */
.tit02 { position: relative; font-size: 1.6rem; font-weight: 700; padding-left: 20px; margin-bottom: 28px;
  line-height: 1.5; font-feature-settings: "palt" 1; }
.tit02::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 6px;
  border-radius: 3px; background: var(--pink); }

/* 中央見出し ui_tit03 相当（元IdI層＝JA大・濃色が上／EN小・ピンクが下） */
.tit03 { text-align: center; margin-bottom: 48px; display: flex; flex-direction: column; align-items: center; }
.tit03 .ja { order: 1; font-family: var(--font-jp); font-weight: 700; color: var(--text);
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.4; font-feature-settings: "palt" 1; letter-spacing: .06em; }
.tit03 .en { order: 2; margin-top: 10px; font-family: var(--font-en); font-weight: 700; color: var(--accent);
  font-size: clamp(15px, 1.3vw, 20px); letter-spacing: .12em; line-height: 1; }

/* 小見出し */
.tit04 { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 14px;
  border-bottom: 2px solid var(--base); padding-bottom: 10px; }

/* コンテンツブロック */
.box { margin-bottom: 64px; }
.box:last-child { margin-bottom: 0; }
.box p { margin-bottom: 1em; }
.box p:last-child { margin-bottom: 0; }

/* 画像カラム（院内紹介など） */
.col-grid { display: grid; gap: 26px; }
.col-grid.col2 { grid-template-columns: repeat(2, 1fr); }
.col-grid.col3 { grid-template-columns: repeat(3, 1fr); }
.col-grid.col4 { grid-template-columns: repeat(4, 1fr); }
.col-grid .cell figure { line-height: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.col-grid .cell figure img { width: 100%; aspect-ratio: 700/540; object-fit: cover; }
.col-grid .cell .cap { text-align: center; margin-top: 10px; font-weight: 600; font-size: .95rem; }

/* 表 ui_table01 相当 */
.table01 { border-top: 2px solid var(--accent); }
.table01 th, .table01 td { border-bottom: 1px solid var(--gray-3); padding: 16px 18px; text-align: left;
  vertical-align: top; font-size: .98rem; }
.table01 th { width: 26%; background: var(--base); font-weight: 700; white-space: nowrap; }
.table01.price th { width: auto; }
.table01.price td { text-align: right; white-space: nowrap; }

/* チェックリスト */
.check-list { background: var(--base); border-radius: 14px; padding: 24px 28px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.8; }
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px;
  border-radius: 50%; background: var(--pink); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: .62em; width: 6px; height: 10px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }

/* 番号付きフロー */
.flow { counter-reset: flow; display: grid; gap: 20px; }
.flow .step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 26px 22px 78px; }
.flow .step::before { counter-increment: flow; content: counter(flow); position: absolute; left: 20px; top: 22px;
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--font-en); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.flow .step h4 { color: var(--accent); margin-bottom: 6px; }

/* バナー */
.banner { display: block; line-height: 0; border-radius: 12px; overflow: hidden; margin: 30px 0; }

/* 注釈 */
.annotation { font-size: .85rem; color: var(--gray); text-indent: -1em; padding-left: 1em; }

/* アクセス地図 */
#access iframe { width: 100%; height: 460px; border: 0; }

/* 単一画像 */
.single-img { text-align: center; margin: 24px 0; }
.single-img img { border-radius: 12px; }

/* ===================== 下層末尾：診療メニュー（共通） ================= */
.page-menubox { background: var(--base); padding: 80px 0; }

/* ============================ ニュース/ブログ ========================= */
.list-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 50px; align-items: start; }
.article-list .item { display: flex; gap: 4px 16px; flex-wrap: wrap; align-items: center; padding: 22px 4px;
  border-bottom: 1px dashed var(--gray-3); }
.article-list .item .date { font-family: var(--font-en); font-weight: 700; color: var(--gray); font-size: .85rem; }
.article-list .item .cat { background: var(--pink); color: #fff; font-size: .72rem; padding: 2px 12px;
  border-radius: 20px; font-weight: 600; }
.article-list .item .ttl { flex: 1 1 100%; font-weight: 600; }
.article-list .item .ttl a { color: var(--text); }
.article-list .item .ttl a:hover { color: var(--accent); }

/* サイドバー */
.sidebar .widget { margin-bottom: 34px; }
.sidebar .widget-title { color: var(--accent); font-weight: 700; border-bottom: 2px solid var(--base);
  padding-bottom: 10px; margin-bottom: 12px; }
.sidebar .cat-list li a { display: block; padding: 10px 12px; border-bottom: 1px solid var(--gray-3);
  color: var(--text); font-size: .9rem; }
.sidebar .cat-list li a:hover { background: var(--base); color: var(--accent); }

/* 記事本文 */
.article-body .article-head { border-bottom: 2px solid var(--base); padding-bottom: 16px; margin-bottom: 30px; }
.article-body .article-head .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.article-body .article-head .date { font-family: var(--font-en); font-weight: 700; color: var(--gray); font-size: .85rem; }
.article-body .article-head h1 { font-size: 1.7rem; line-height: 1.5; }
.article-body p { margin-bottom: 1.4em; }
.article-body img { border-radius: 12px; margin: 18px 0; }
.article-body h2 { font-size: 1.4rem; border-left: 6px solid var(--pink); padding-left: 14px; margin: 36px 0 16px; }
.article-body h3 { font-size: 1.2rem; color: var(--accent); margin: 28px 0 12px; }
.back-link { text-align: center; margin-top: 48px; }

/* ページャ */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pager a, .pager span { display: flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  border: 1px solid var(--pink); border-radius: 50%; color: var(--pink); font-family: var(--font-en); font-weight: 700; }
.pager .current { background: var(--pink); color: #fff; }
.pager a:hover { background: var(--pink); color: #fff; opacity: 1; }

/* ============================ レスポンシブ ============================ */
@media (max-width: 950px) {
  .menubox .grid { grid-template-columns: repeat(3, 1fr); }
  #header .seo { display: none; }
}

@media (max-width: 750px) {
  body { font-size: 15px; line-height: 1.85; }
  .section { padding: 56px 0; }
  .pc-only { display: none !important; }
  .sp-only { display: revert; }

  /* ヘッダー（SP）。seo/gnav/header-tel は .pc-only で自動的に非表示、ハンバーガーは固定ボタン */
  #header .inner { min-height: 80px; padding-right: 88px; }
  #header .logo { padding: 16px 0 0 16px; }
  #header .logo img { width: 118px; }

  /* SPナビパネル */
  #spNav { display: block; position: fixed; inset: 0 0 0 auto; width: min(86%, 360px); background: #fff; z-index: 110;
    transform: translateX(100%); transition: transform .35s; overflow-y: auto; padding: 84px 24px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,.15); }
  #spNav.open { transform: translateX(0); }
  #spNavOverlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 105; opacity: 0; visibility: hidden;
    transition: .35s; }
  #spNavOverlay.open { opacity: 1; visibility: visible; }
  #spNav .tel-btn { display: flex; align-items: center; justify-content: center; gap: .4em; background: var(--pink);
    color: #fff; border-radius: 30px; padding: 14px; font-weight: 700; margin-bottom: 22px; }
  #spNav > ul > li { border-bottom: 1px solid var(--gray-3); }
  #spNav > ul > li > a { display: flex; align-items: center; gap: 10px; padding: 16px 4px; color: var(--text);
    font-weight: 600; }
  #spNav > ul > li > a .en { font-family: var(--font-en); font-size: .7rem; color: var(--pink); }
  #spNav .submenu { padding: 0 0 12px 14px; }
  #spNav .submenu li a { display: block; padding: 10px 4px; font-size: .9rem; color: var(--gray); }

  /* ヒーロー */
  .sec-title { margin-bottom: 36px; }

  /* こだわり */
  .commitment .list { grid-template-columns: 1fr; gap: 30px; }

  /* メニュー */
  .menubox .grid { grid-template-columns: 1fr; gap: 14px; }
  .menubox .card { flex-direction: row; align-items: center; min-height: auto; padding: 18px; gap: 16px; }
  .menubox .card .svc-ico { width: 64px; height: 64px; margin: 0; }
  .menubox .card .text-wrap { text-align: left; }
  .menubox .card .ja { text-align: left; width: auto; font-size: 1.05rem; }
  .menubox .card .en { margin-top: 4px; font-size: .82rem; }

  /* 特集 */
  .feature .container { grid-template-columns: 1fr; gap: 24px; }
  .feature.reverse .pic { order: 0; }
  .feature .tit .ja { font-size: 1.5rem; }

  /* NEWS/BLOG */
  .topinfo .cols { grid-template-columns: 1fr; gap: 40px; }

  /* フッター */
  #footer .info { grid-template-columns: 1fr; gap: 30px; }
  #footer .logo-footer img { width: 280px; }
  .footer-links { columns: 1; }
  .schedule th, .schedule td { padding: 8px 3px; font-size: .8rem; }

  /* 固定ボタン → 下部バー */
  #fixed { right: 0; left: 0; bottom: 0; flex-direction: row; gap: 0; }
  #fixed .access { writing-mode: horizontal-tb; text-orientation: initial; border-radius: 0; min-height: auto;
    flex: 1; padding: 16px; background: #d491f0; }
  #fixed .tel-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .3em;
    background: var(--pink); color: #fff; font-weight: 700; padding: 16px; }
  #fixed #scrollUp { position: fixed; right: 14px; bottom: 70px; }

  /* 下層 */
  #pageTitle { min-height: 230px; padding: 36px 0; }
  #main { padding: 48px 0; }
  .list-layout { grid-template-columns: 1fr; gap: 40px; }
  .col-grid.col3, .col-grid.col4 { grid-template-columns: repeat(2, 1fr); }
  .table01 th { width: auto; white-space: normal; }
}

@media (max-width: 420px) {
  .col-grid.col3, .col-grid.col4 { grid-template-columns: 1fr; }
}

/* =========================================================================
   v2 追加 — インラインstyle置換用のクリーンなクラス
   ========================================================================= */
/* 余白ユーティリティ */
.mt-10 { margin-top: 10px; }
.mt-18 { margin-top: 18px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* クリニック「こだわり」2カラム */
.commit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.commit figure { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.commit figure img { width: 100%; aspect-ratio: 740/602; object-fit: cover; }

/* 404ページ */
.notfound { text-align: center; padding: 40px 0; }
.notfound .num { font-family: var(--font-en); font-weight: 700; color: var(--accent);
  font-size: clamp(60px, 12vw, 120px); line-height: 1; }

/* 下層ページ末尾の診療メニュー（トップMenuBoxと同じ見た目を流用） */
.page-menubox .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.page-menubox .card { display: flex; flex-direction: column; align-items: flex-start; height: 100%;
  background: #fff; border-radius: 16px; padding: 32px 24px 30px; min-height: 300px; transition: background-color .3s; }
.page-menubox .card .svc-ico { width: 104px; height: 104px; margin: 0 auto 18px; background: var(--accent); }
.page-menubox .card .svc-ico::before { width: 47%; height: 47%; }
.page-menubox .card .ja { display: block; text-align: center; width: 100%; font-size: 1.15rem; font-weight: 700;
  font-feature-settings: "palt" 1; line-height: 1.4; }
.page-menubox .card .en { display: block; margin-top: 14px; font-size: .88rem; font-weight: 400; line-height: 1.8;
  color: var(--text); flex: 1; }
.page-menubox a.card:hover { background: var(--accent); opacity: 1; }
.page-menubox a.card:hover .ja, .page-menubox a.card:hover .en { color: #fff; }
.page-menubox a.card:hover .svc-ico { background: #fff; }
.page-menubox a.card:hover .svc-ico::before { background-image: var(--ico-h); }

/* お知らせ・ブログ：記事なしの空状態 */
.empty-state { text-align: center; color: var(--gray); padding: 40px 0; font-size: .95rem; }

@media (max-width: 950px) {
  .page-menubox .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 750px) {
  .commit-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-menubox .grid { grid-template-columns: 1fr; gap: 14px; }
  .page-menubox .card { flex-direction: row; align-items: center; min-height: auto; padding: 18px; gap: 16px; }
  .page-menubox .card .svc-ico { width: 64px; height: 64px; margin: 0; }
  .page-menubox .card .ja { text-align: left; width: auto; font-size: 1.05rem; }
  .page-menubox .card .en { margin-top: 4px; font-size: .82rem; }
}

/* ============================================================================
   コーポレートサイト用 追加スタイル（2026-06-29）
   ========================================================================== */

/* ヘッダー：テキスト型ドロップダウン（当院について） */
#gnav .submenu.submenu-text { flex-direction: column; gap: 0; padding: 10px; min-width: 232px; }
#gnav .submenu.submenu-text > li { width: auto; }
#gnav .submenu.submenu-text > li > a { display: block; text-align: left; padding: 11px 16px; border-radius: 8px;
  background: transparent; color: var(--text); font-size: .92rem; font-weight: 600; white-space: nowrap; line-height: 1.5; }
#gnav .submenu.submenu-text > li > a:hover { background: var(--base); color: var(--accent); opacity: 1; }

/* 連絡帯：オープン告知（電話番号なし） */
#contact .contact-lead { display: block; font-family: var(--font-jp); font-weight: 700; color: #fff;
  font-size: clamp(19px, 2.7vw, 30px); line-height: 1.55; letter-spacing: .02em; }

/* フッター：会社情報・中央寄せ（診療時間表／地図なし） */
#footer .address .corp-name { font-weight: 700; font-size: 1.05rem; }
#footer .footer-links.footer-center { columns: 2; column-gap: 40px; max-width: 600px; margin: 0 auto; padding-bottom: 54px; }
#footer .footer-links.footer-center > li > a { font-size: .95rem; }

/* オープン告知バッジ */
.open-badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-en); font-weight: 700;
  padding: 9px 24px; border-radius: 999px; letter-spacing: .05em; font-size: 1.02rem; margin-bottom: 22px; }
.open-badge .ja { font-family: var(--font-jp); margin-left: .5em; }

/* Coming soon / 準備中ブロック */
.coming-soon { text-align: center; padding: 24px 0 8px; }
.coming-soon .cs-en { display: block; font-family: var(--font-en); font-weight: 700; color: var(--accent);
  font-size: clamp(42px, 8vw, 88px); line-height: 1.05; letter-spacing: .04em; }
.coming-soon .cs-ja { display: block; margin-top: 14px; font-size: 1.08rem; color: var(--text); font-weight: 600; }

/* 社長メッセージ */
.message-box { background: var(--base); border-radius: 18px; padding: clamp(28px, 5vw, 56px); }
.message-box p { margin-bottom: 1.3em; }
.message-box p:last-child { margin-bottom: 0; }
.message-sign { text-align: right; font-weight: 700; margin-top: 26px; }
.message-sign small { display: block; font-weight: 400; color: var(--gray); font-size: .8rem; margin-bottom: 4px; }

/* ミッション・ビジョン／ステートメント */
.statement { text-align: center; font-size: clamp(18px, 2.6vw, 26px); font-weight: 700; color: var(--accent);
  line-height: 1.7; padding: 6px 0; }
.mv-list { display: grid; gap: 14px; margin-top: 10px; list-style: none; }
.mv-list li { background: #fff; border: 2px solid var(--base); border-left: 6px solid var(--accent);
  border-radius: 10px; padding: 16px 22px; font-weight: 600; }

/* 役員リスト */
.officer-list { display: grid; gap: 16px; margin-top: 10px; list-style: none; }
.officer { background: #fff; border: 2px solid var(--base); border-radius: 12px; padding: 20px 24px; }
.officer .role { display: inline-block; font-size: .8rem; font-weight: 700; color: #fff; background: var(--pink);
  border-radius: 999px; padding: 3px 13px; margin-bottom: 9px; }
.officer .nm { font-size: 1.12rem; font-weight: 700; }
.officer .nm small { font-weight: 400; color: var(--gray); font-size: .8rem; margin-left: .5em; }
.officer .bio { margin-top: 8px; font-size: .9rem; color: var(--text); line-height: 1.8; }

/* アクセス地図（下層共通） */
.access-map { line-height: 0; margin-top: 18px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.access-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* 院案内カード（高輪・奈良などの拠点紹介） */
.clinic-note { background: var(--cream); border-radius: 14px; padding: 22px 26px; margin-top: 18px; font-size: .95rem; }

@media (max-width: 750px) {
  #footer .footer-links.footer-center { columns: 1; max-width: 320px; }
  .access-map iframe { height: 280px; }
}

/* ============================================================================
   コーポレートTOP・ナビ再編 追加スタイル（2026-06-30）
   ========================================================================== */

/* 読み物ドロップダウン（猫の予防/病気をグループ見出し付きで） */
#gnav .submenu.submenu-read { min-width: 290px; }
#gnav .submenu.submenu-read .rg-head { display: block; padding: 9px 16px 5px; font-family: var(--font-en);
  font-weight: 700; color: var(--accent); font-size: .72rem; letter-spacing: .08em; }
#gnav .submenu.submenu-read .rg-head:not(:first-child) { margin-top: 6px; border-top: 1px solid var(--base); padding-top: 13px; }

/* 事業紹介・院案内カード（コーポレートTOP／臨床事業） */
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
.biz-card { display: flex; flex-direction: column; background: #fff; border: 2px solid var(--base);
  border-radius: 18px; padding: clamp(26px, 4vw, 40px); color: var(--text); }
a.biz-card { transition: transform .25s, box-shadow .25s, border-color .25s; }
a.biz-card:hover { opacity: 1; border-color: var(--pink); transform: translateY(-3px); box-shadow: var(--shadow); }
.biz-card > .en { font-family: var(--font-en); font-weight: 700; color: var(--accent); font-size: 1.5rem;
  letter-spacing: .06em; line-height: 1; }
.biz-card h3 { font-size: 1.35rem; margin-top: 8px; }
.biz-card p { margin-top: 14px; flex: 1 0 auto; font-size: .95rem; }
.biz-card .more { margin-top: 20px; color: var(--accent); font-weight: 700; font-size: .92rem; }
.badge-mini { align-self: flex-start; background: var(--accent); color: #fff; font-family: var(--font-en);
  font-weight: 700; font-size: .8rem; padding: 4px 14px; border-radius: 999px; margin-bottom: 10px; letter-spacing: .03em; }

/* コーポTOP：想い帯のリード・CTA中央寄せ */
.home-lead { text-align: center; max-width: 780px; margin: 22px auto 0; }
.center-cta { text-align: center; margin-top: 30px; }

@media (max-width: 750px) {
  .biz-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================================
   修正対応 第2弾（2026-06-30）
   ========================================================================== */

/* キービジュアル：テキストはHTML、背景はブランド配色のグラデ＋装飾（非・病院的） */
#hero.hero-key { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: radial-gradient(125% 120% at 50% -10%, #ffffff 0%, var(--base) 52%, var(--cream) 100%); }
#hero.hero-key .deco { position: absolute; border-radius: 50%; pointer-events: none; }
#hero.hero-key .deco1 { width: 210px; height: 210px; background: var(--pink); top: -46px; left: -52px; opacity: .32; }
#hero.hero-key .deco2 { width: 132px; height: 132px; background: var(--coral); bottom: 34px; left: 7%; opacity: .38; }
#hero.hero-key .deco3 { width: 92px; height: 92px; background: #c7b2ef; top: 17%; right: 11%; opacity: .42; }
#hero.hero-key .deco4 { width: 260px; height: 260px; background: var(--accent); bottom: -96px; right: -64px; opacity: .16; }
#hero.hero-key .deco5 { width: 60px; height: 60px; background: var(--pink); top: 22%; left: 14%; opacity: .35; }
#hero.hero-key .hero-inner { position: relative; z-index: 2; padding: 48px 22px; max-width: 920px; }
#hero.hero-key .hero-en { display: block; font-family: var(--font-en); font-weight: 700; color: var(--accent);
  letter-spacing: .12em; font-size: clamp(12px, 1.5vw, 17px); }
#hero.hero-key .hero-copy { font-family: var(--font-jp); font-weight: 700; color: var(--text);
  font-size: clamp(27px, 4.4vw, 50px); line-height: 1.55; margin-top: 16px; letter-spacing: .04em; }
#hero.hero-key .hero-sub { margin-top: 22px; color: var(--text); font-size: clamp(13px, 1.4vw, 16px); line-height: 1.95; }

/* コラム冒頭の注記（一般情報である旨） */
.column-note { background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 20px; margin-bottom: 30px; font-size: .86rem; color: var(--gray); line-height: 1.85; }

/* 高輪院コンセプト（1カラム・写真なし） */
.concept-list { display: grid; gap: 16px; margin-top: 10px; }
.concept-item { background: var(--base); border-radius: 14px; border-left: 6px solid var(--accent); padding: 22px 26px; }
.concept-item h3 { font-size: 1.15rem; color: var(--accent); margin-bottom: 8px; }

@media (max-width: 750px) {
  #hero.hero-key { min-height: 440px; }
  #hero.hero-key .deco1 { width: 130px; height: 130px; }
  #hero.hero-key .deco4 { width: 170px; height: 170px; }
}
