@charset "UTF-8";
/*!
 * Theme Name: Cocoon Child (TIGER LILY minimal)
 * Template:   cocoon-master
 * File:       style.css (clean + consolidated)
 * Note:
 * - 重複/競合を整理し、意図した優先順位で構成し直しています
 * - Cocoon の強い装飾は必要箇所のみピンポイントで打ち消し
 * - `!重要` の誤記は `!important` に修正済み
 * - `fontサイズ` → `font-size` の誤記修正済み
 */

/* =========================================================
   0) 基本レイアウト & ユーティリティ
   ========================================================= */
:root{
  --ink:#0f1b1d; --muted:#5b6b6e;
  --mint:#18a999; --mint-2:#0fb6a7;
  --gold:#d4af37; --sand:#faf8f3; --paper:#ffffff;
  --ring: 0 0 0 3px rgba(24,169,153,.18);
  --tl-bottom-pad: 88px;
}

html,body{ margin:0; padding:0; }
img, figure img{ max-width:100%; height:auto; }

.tl-wrap{ max-width:1180px; margin:0 auto; padding:32px 20px 80px; }
.tl-profile{ position:relative; overflow:visible; }

/* サイドバー排除（therapistのみ） */
body.single-therapist .l-sidebar,
body.single-therapist #sidebar{ display:none !important; }
body.single-therapist .l-main{
  width:100% !important; max-width:1180px; margin:0 auto;
}

/* Full-bleed helper */
.is-fullbleed,
.tl-fullbleed{
  position:relative; width:100vw;
  left:50%; right:50%; margin-left:-50vw; margin-right:-50vw;
}

/* in-view animation */
.js-inview{ opacity:0; transform: translateY(12px); transition:.48s cubic-bezier(.2,.7,.2,1); }
.js-inview.is-in{ opacity:1; transform:none; }
@keyframes tl-fadeUp{ from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
.is-reveal{ opacity:0; transform:translateY(12px); transition:.6s ease; }
.is-reveal.is-in{ opacity:1; transform:none; }

/* =========================================================
   1) 上部ヘッダー（黒帯）/ ナビ / CTA
   ========================================================= */
.tl-topbar{
  position:sticky; top:0; z-index:1000;
  background:#0b0b0b; color:#f5f5f5;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tl-topbar__inner{
  max-width:1180px; margin:0 auto; padding:14px 16px;
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px;
}

.tl-logo{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
.tl-logo img, .tl-logo-svg{ height:72px; width:auto; display:block; }
@media (max-width:959.98px){ .tl-logo img, .tl-logo-svg{ height:52px; } }

.tl-logo__txt{
  font:800 18px/1.1 "Bebas Neue","Noto Sans JP",system-ui,-apple-system,sans-serif;
  letter-spacing:.04em; color:#fff;
}

/* ハンバーガー */
.tl-navtoggle{
  display:none; width:40px; height:40px; position:relative;
  border:1px solid rgba(255,255,255,.18); border-radius:10px; background:transparent; cursor:pointer;
}
.tl-navtoggle span{
  position:absolute; left:9px; right:9px; height:2px; background:#fff; border-radius:2px;
  transform-origin:center; transition:.25s;
}
.tl-navtoggle span:nth-child(1){ top:12px; }
.tl-navtoggle span:nth-child(2){ top:19px; }
.tl-navtoggle span:nth-child(3){ top:26px; }
.tl-navtoggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.tl-navtoggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.tl-navtoggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* メニュー（ヘッダー専用） */
.tl-nav{ justify-self:center; }
.tl-menu{
  display:flex; gap:22px; list-style:none; margin:0; padding:0; align-items:center; white-space:nowrap;
}
.tl-menu > li > a{
  display:inline-flex; align-items:center; height:42px; padding:0 8px;
  color:#e8e8e8; text-decoration:none; font-weight:700; letter-spacing:.02em;
  border-bottom:2px solid transparent;
}
.tl-menu > li > a:hover{ color:#ffd777; border-color:#ffd777; }

/* CTA（ヘッダー専用） */
.tl-cta-rail{ display:flex; gap:10px; flex-wrap:wrap; }
.tl-topbar .tl-cta{
  display:inline-flex; align-items:center; height:38px; padding:0 12px; border-radius:10px;
  text-decoration:none; font-weight:800; letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  color:#fff; box-shadow:0 6px 16px rgba(0,0,0,.24);
}
.tl-topbar .tl-cta:hover{ filter:brightness(1.08); }
.tl-topbar .tl-cta--book{ border-color:#f1c76b; color:#1f1606; background:linear-gradient(180deg,#f8d98c,#e7b84b); }
.tl-topbar .tl-cta--line{ border-color:#00b900; background:linear-gradient(180deg,#00d300,#00b400); color:#fff; }
.tl-topbar .tl-cta--tel::before{ content:"📞"; margin-right:.4em; filter:saturate(0) brightness(1.2); }

/* ヘッダー内の文字色は白を強制 */
.tl-topbar, .tl-topbar *{ color:#fff !important; }

/* SPレイアウト */
@media (max-width:959.98px){
  .tl-topbar__inner{
    grid-template-columns:auto auto 1fr;
    grid-template-areas:
      "logo toggle ."
      "nav  nav   nav"
      "ctas ctas  ctas";
    row-gap:8px;
  }
  .tl-navtoggle{ display:inline-block; grid-area:toggle; width:38px; height:38px; }
  .tl-nav{
    position:static !important; background:#0b0b0b;
    border-top:1px solid rgba(255,255,255,.08);
    overflow:hidden; max-height:0; transition:max-height .25s ease; padding:0;
    grid-area:nav;
  }
  body.tl-nav-open .tl-nav{ max-height:420px; }
  .tl-nav .tl-menu{ flex-direction:column; gap:0; }
  .tl-nav .tl-menu > li > a{ height:48px; padding:0 18px; border-bottom:1px solid rgba(255,255,255,.06); }

  .tl-cta-rail{
    grid-area:ctas; display:flex; gap:8px; overflow-x:auto; -webkit-overflow-scrolling:touch;
  }
  .tl-cta{ height:34px; padding:0 10px; font-size:13px; border-radius:8px; }
  .tl-cta--book,.tl-cta--line{ flex:1; text-align:center; }
  .tl-cta--tel{ min-width:40px; padding:0 10px; font-size:0; }
  .tl-cta--tel::before{ content:"📞"; font-size:16px; margin-right:0; filter:saturate(0) brightness(1.2); }
}

/* サブコピー帯（黒ヘッダー下） */
.tl-subline{ background:#000 !important; border-bottom:none !important; margin:0; }
.tl-subline__inner{
  max-width:1180px; margin:0 auto; padding:10px 16px;
  font-size:13px; line-height:1.5; color:#fff !important; letter-spacing:.03em; text-align:center;
}
@media (max-width:640px){ .tl-subline__inner{ font-size:12.5px; padding:8px 12px; } }

/* Cocoonデフォルトタイトル類を非表示 */
.site-title,.site-description{ display:none !important; }
#header .site-name,#header .site-title,#header .site-description,
.l-header .site-name,.l-header .site-title,.l-header .site-description,
.header-container .site-name,.header-container .site-title,.header-container .site-description,
.header-container .head-insert,#header-container .head-insert,.header .header-insert{ display:none !important; }

/* =========================================================
   2) ヒーロー / コンセプト・ヒーロー
   ========================================================= */
.tl-hero{ position:relative; width:100%; overflow:hidden; margin:8px 0 18px; }
.tl-hero__caption{
  position:absolute; bottom:12%; left:50%; transform:translateX(-50%);
  text-align:center; color:#fff; font-weight:700;
  font-size:clamp(1.6rem,3vw,2.2rem); text-shadow:0 2px 12px rgba(0,0,0,.5); z-index:5; padding:0 20px;
}
.tl-hero__btns{ display:flex; justify-content:center; gap:14px; margin-top:8px; flex-wrap:wrap; }
.tl-hero__btns a{
  background:#f7dc8b; padding:12px 32px; border-radius:50px; font-weight:700;
  box-shadow:0 6px 10px rgba(0,0,0,.15); color:#333; text-decoration:none;
}
.tl-hero img{ width:100%; height:100%; object-fit:cover; display:block; }
.home .tl-hero img,
.front-page .tl-hero img,
.page-template-front-page .tl-hero img{ object-position: top center !important; }

@media (max-width:767px){
  .tl-hero__caption{ bottom:8%; font-size:3.8vw; }
  .tl-hero__btns a{ padding:10px 24px; font-size:3.5vw; }
}

/* フルブリードヒーロー */
.tl-hero-fw{
  min-height:56vh; display:grid; place-items:center; text-align:center; color:#fff;
  background:
    linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.55)),
    var(--hero) center/cover no-repeat !important;
  isolation:isolate; overflow:hidden;
}
@media (max-width:959.98px){ .tl-hero-fw{ min-height:44vh; } }
.tl-hero-inner{ padding:6vh 4vw; animation:tl-fadeUp .9s ease-out both; }
.tl-hero-title{
  margin:0 0 .6rem;
  font:800 clamp(34px,5.6vw,72px)/1.05 "Bebas Neue","Noto Sans JP",system-ui,sans-serif;
  letter-spacing:.04em;
}
.tl-hero-lead{ margin:0; font-weight:700; letter-spacing:.04em; font-size:clamp(14px,1.8vw,18px); }

/* Concept hero（必ず表示） */
.concept-hero,
.page .tl-hero-fw{
  position:relative !important; display:block !important;
  min-height:clamp(320px,42vw,620px) !important; overflow:hidden !important;
}
.concept-hero{ background:var(--hero, none) center/cover no-repeat !important; }
.concept-hero > img,
.page .tl-hero-fw > img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  filter:saturate(1.02) contrast(1.05) brightness(.92);
}
.concept-hero .concept-hero__inner,
.page .tl-hero-fw .tl-hero-inner{
  position:absolute; inset:0; display:grid; place-items:center; text-align:center;
  padding:40px 16px; color:#fff;
}
.concept-hero .concept-hero__inner::before,
.page .tl-hero-fw .tl-hero-inner::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.18));
}
.concept-hero .concept-hero__title,
.page .tl-hero-title{
  margin:0 0 8px;
  font:800 clamp(32px,6vw,72px)/1.1 "Bebas Neue","Noto Sans JP",system-ui,sans-serif;
  letter-spacing:.06em; text-shadow:0 6px 22px rgba(0,0,0,.35);
}
.concept-hero .concept-hero__lead,
.page .tl-hero-lead{
  margin:0; font-weight:700; font-size:clamp(14px,2.1vw,18px); letter-spacing:.04em; opacity:.96;
}

/* =========================================================
   3) マルキー / チップ / ボタン / SNS
   ========================================================= */
.tl-marquee{
  --gap: 2.2rem; --speed: 24s;
  position:relative; overflow:hidden; width:min(1080px,92vw);
  margin:8px auto 18px; height:38px;
  border:1px solid #f0e6b3; border-radius:12px;
  background:linear-gradient(180deg,#fff7d9,#fff0b8);
  box-shadow:0 6px 18px rgba(0,0,0,.06); display:flex; align-items:center;
}
.tl-marquee::before,.tl-marquee::after{
  content:""; position:absolute; top:0; bottom:0; width:44px; pointer-events:none;
}
.tl-marquee::before{ left:0;  background:linear-gradient(90deg,#fff7d9,transparent); }
.tl-marquee::after { right:0; background:linear-gradient(270deg,#fff7d9,transparent); }
.tl-marquee__row{
  display:inline-flex; align-items:center; gap:var(--gap);
  white-space:nowrap; animation: tl-marquee-left var(--speed) linear infinite; will-change: transform;
}
.tl-marquee__row span{
  display:inline-block; line-height:1; font-weight:700; font-size:14px; letter-spacing:.08em;
  color:#6b5615; text-shadow:0 1px 0 rgba(255,255,255,.6);
}
@keyframes tl-marquee-left{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tl-marquee:hover .tl-marquee__row{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){
  .tl-marquee__row{ animation:none; }
  .tl-marquee::before,.tl-marquee::after{ display:none; }
}

.tl-chip{
  display:inline-flex; align-items:center; gap:8px; height:34px; padding:0 12px;
  border-radius:999px; background:#fff; color:#333;
  border:1px solid #e6e6e6; box-shadow:0 4px 10px rgba(0,0,0,.04);
}
.tl-badge{ display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%; font-size:12px; }
.tl-badge.ok{ background:#0fb15a; color:#fff; }
.tl-badge.maybe{ background:#f1c04a; color:#1b1204; }
.tl-badge.no{ background:#ef4b4b; color:#fff; }
.tl-badge.none{ background:#cacaca; color:#fff; }

.tl-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:42px; padding:0 16px; border-radius:10px;
  background:linear-gradient(180deg,#f4cd6e,#d9a62b); color:#281f0b; font-weight:700; text-decoration:none;
  box-shadow:0 8px 18px rgba(0,0,0,.15); border:1px solid #d2a84f;
}
.tl-btn:hover{ filter:brightness(1.05); }
.tl-btn--ghost{ background:#fff; color:#7a5c16; border:1px solid #e3c77a; }

.tl-social{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap; }
.tl-sns{
  display:inline-flex; align-items:center; height:32px; padding:0 12px; border-radius:999px;
  font-size:13px; font-weight:700; text-decoration:none; border:1px solid #eee; background:#fff; color:#222; box-shadow:0 4px 10px rgba(0,0,0,.04);
}
.tl-sns--ig{ border-color:#ffd3e0; } .tl-sns--x{ border-color:#d9d9d9; }
.tl-sns:hover{ filter:brightness(1.04); }

/* タグ（共通） */
.tl-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tl-tag{
  display:inline-flex; align-items:center; gap:.35em; padding:6px 10px; border-radius:999px;
  background:#fff7e0; color:#6b5615; border:1px solid #f0e0a8; font-size:13px; font-weight:700; text-decoration:none;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.tl-tag:hover{ filter:brightness(1.03); }

/* =========================================================
   4) セラピスト Single（2カラム・Edo-Komachi）
   ========================================================= */
.ek-grid{
  display:grid; grid-template-columns:minmax(0,1fr) 420px;
  gap:28px 36px; align-items:start;
}
.ek-left{ grid-area:left; min-width:0; }
.ek-right-content{ grid-area:content; }
.tl-head.ek-card{
  grid-area:card; position:sticky; top:84px;
  background:#fff; border:1px solid #f0e6d0; border-radius:16px;
  padding:22px; box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.ek-main{ margin:0; overflow:hidden; border-radius:14px; background:#fff; }
.ek-main img{ display:block; width:100%; height:auto; }
.ek-thumbs{
  display:flex; gap:10px; margin-top:12px; padding:6px 2px;
  list-style:none; overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.ek-thumb{
  width:92px; height:92px; border-radius:12px; overflow:hidden;
  border:2px solid transparent; background:#fff; cursor:pointer;
}
.ek-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.ek-thumb.is-active{ border-color:#f5c86b; }

.tl-name{
  margin:0 0 10px;
  font:700 clamp(26px,2.3vw,32px)/1.2 "Bebas Neue",system-ui,-apple-system,"Noto Sans JP",sans-serif;
  letter-spacing:.02em;
}
.tl-meta{ list-style:none; margin:8px 0 14px; padding:0; display:grid; gap:8px; }
.tl-meta li{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 12px; border:1px solid #f1e6c7; border-radius:10px; background:#fff;
}
.tl-meta li span{
  background:transparent !important; color:#a5883e; font-weight:600; font-size:.9rem; padding:0;
}

.tl-sec{ margin-top:40px; }
.tl-title{ margin:0 0 12px; font-weight:800; letter-spacing:.06em; color:#c4942a; }
.tl-content{ color:#1f1f1f; line-height:1.95; font-size:16px; }
.tl-content p{ margin:0 0 1.05em; }

@media (max-width:1023.98px){
  .ek-grid{ grid-template-columns:1fr; gap:18px; }
  .tl-head.ek-card{ position:static; margin-top:14px; }
  .ek-right-content{ margin-top:18px; }
  .ek-thumb{ width:86px; height:86px; }
}

/* =========================================================
   5) セラピスト アーカイブ（一覧）
   ========================================================= */

/* wrap/コンテナを全幅に */
body.post-type-archive-therapist .tl-wrap,
body.post-type-archive-therapist main{
  max-width:none !important; width:100% !important; margin:0 auto !important;
  padding:0 clamp(12px,3vw,28px) !important;
}
/* ヘッダー直下の余白をカット */
body.post-type-archive-therapist .l-header + *,
body.post-type-archive-therapist .site-header + *,
body.post-type-archive-therapist #header + *{ margin-top:0 !important; padding-top:0 !important; }

/* 見出し */
.tl-arch-head{ margin:12px 0 18px !important; }
.tl-arch-title{
  font:700 clamp(22px,3.6vw,36px)/1.15 "Bebas Neue","Noto Sans JP",system-ui,sans-serif;
  letter-spacing:.04em; color:#111; margin:0 0 4px; position:relative; text-align:left;
}
.tl-arch-title::after{
  content:""; display:block; width:clamp(140px,25vw,240px); height:5px; margin-top:8px; border-radius:999px;
  background:linear-gradient(90deg,#d2b169 0%, #edd9b0 55%, rgba(240,230,207,.6) 80%, rgba(240,230,207,0) 100%);
}

/* グリッド（SP2 / TB3 / PC5） */
.tl-grid.tl-grid--arch{
  display:grid !important; gap:18px !important; grid-template-columns:repeat(2, minmax(0,1fr)) !important;
}
@media (min-width:680px){
  .tl-grid.tl-grid--arch{ grid-template-columns:repeat(3, minmax(0,1fr)) !important; }
}
@media (min-width:1040px){
  .tl-grid.tl-grid--arch{ grid-template-columns:repeat(5, minmax(0,1fr)) !important; }
}

/* カード */
.tl-card{
  position:relative; border-radius:14px; overflow:hidden; background:#fff; border:1px solid #f0e6c0;
  box-shadow:0 10px 22px rgba(0,0,0,.06); display:flex; flex-direction:column;
}
.tl-card__img{
  display:block; width:100%; aspect-ratio:3/4;
  background:var(--img) center/cover no-repeat; position:relative; overflow:hidden;
}
/* 念のため img を隠す */
.tl-card__img img{ display:none !important; }

/* 出勤リボン（画像左上ピル型） */
.tl-card .tl-card__img > .tl-ribbon{
  position:absolute !important; top:12px !important; left:12px !important; z-index:5 !important;
  display:inline-flex !important; align-items:center !important; height:28px !important; padding:0 12px !important;
  background:linear-gradient(180deg,#ff5f4f,#e02e19) !important; color:#fff !important;
  font-weight:800 !important; font-size:12.5px !important; line-height:1 !important; border-radius:999px !important;
  box-shadow:0 4px 12px rgba(0,0,0,.18) !important; transform:none !important; width:auto !important; max-width:none !important;
}
.tl-card .tl-card__img > .tl-ribbon::before,
.tl-card .tl-card__img > .tl-ribbon::after{ content:none !important; }

.tl-card__body{ padding:12px 14px; display:flex; flex-direction:column; gap:10px; }
.tl-card__name{ margin:0; font-weight:800; font-size:16.5px; }
.tl-card__name a{ color:#111; text-decoration:none; }
.tl-card__name a:hover{ text-decoration:underline; }
.tl-card__meta{ display:flex; flex-wrap:wrap; gap:8px; color:#444; font-size:13.5px; }

/* ミニ・マルキー */
.tl-card__marq{ position:relative; overflow:hidden; border-top:1px dashed #f0e6c0; }
.tl-card__marq-row{
  display:flex; align-items:center; gap:26px; white-space:nowrap;
  animation: tl-card-marq 22s linear infinite; padding:8px 12px; color:#6b5b2a; font-size:12px; font-weight:700;
}
@keyframes tl-card-marq{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* 固定フッターに隠れない下余白 */
.tl-grid--arch{ padding-bottom:calc(var(--tl-bottom-pad) + 12px); }

/* =========================================================
   6) 出勤タブ / カード / 週表（ラグジュアリー）
   ========================================================= */
.tl-schedule-title{
  margin:4px 0 14px; font:800 clamp(28px,3.6vw,42px)/1.1 "Bebas Neue","Noto Sans JP",system-ui,sans-serif;
  letter-spacing:.06em; color:#0e0e0e; position:relative;
}
.tl-schedule-title:after{
  content:""; display:block; height:3px; width:min(220px,36vw); margin-top:10px;
  background:linear-gradient(90deg,#f5d98a 0%, #d0ac55 55%, rgba(208,172,85,0) 100%); border-radius:2px;
}
.tl-tabs{ margin:8px 0 14px; }
.tl-tabs__nav{ display:flex; gap:12px; flex-wrap:wrap; }
.tl-tabs__btn{
  border:1px solid rgba(208,172,85,.55); background:linear-gradient(180deg,#ffffff 0%,#faf6ea 100%);
  color:#4b3a15; padding:10px 14px; border-radius:999px; font-weight:800; letter-spacing:.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 4px 10px rgba(0,0,0,.06);
  transition:.25s ease;
}
.tl-tabs__btn:hover{ transform:translateY(-1px); filter:brightness(1.04); }
.tl-tabs__btn.is-active{
  background:linear-gradient(180deg,#f8e7b1 0%,#f0d67f 100%);
  color:#2a1e08; box-shadow:0 6px 18px rgba(208,172,85,.30), inset 0 1px 0 rgba(255,255,255,.8);
  border-color:#d0ac55;
}

/* カード */
.tl-schedule-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); gap:14px; }
.tl-schedule-card{
  background:linear-gradient(180deg,#ffffff,#fbf7ec);
  border:1px solid rgba(208,172,85,.45); border-radius:18px;
  box-shadow:0 14px 28px rgba(0,0,0,.08), 0 0 0 1px rgba(255,255,255,.6) inset;
  overflow:hidden; transition: transform .28s ease, box-shadow .28s ease;
}
.tl-schedule-card:hover{ transform:translateY(-6px); box-shadow:0 22px 42px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.75) inset; }
.tl-schedule-card img{ width:100%; height:320px; object-fit:cover; transform:scale(1.02); transition:transform .35s ease; }
.tl-schedule-card:hover img{ transform:scale(1.05); }
.tl-schedule-card__body{ padding:16px 18px 18px; text-align:center; }
.tl-schedule-card__name{ margin:2px 0 6px; font-weight:900; font-size:clamp(15px,1.7vw,18px); letter-spacing:.03em; }
.tl-schedule-card__name a{ color:#111; text-decoration:none; }
.tl-schedule-card__name a:hover{ color:#b5892e; }
.tl-schedule-card__time{ color:#3d2f12; font-weight:800; letter-spacing:.02em; margin-bottom:4px; }
.tl-schedule-card__room{ color:#7f704a; font-size:12.5px; }
.tl-schedule-card__badge{
  background:linear-gradient(90deg,#ff7a6a,#e4492e); color:#fff; font-weight:900; font-size:12px;
  border-radius:8px; padding:4px 10px; margin-top:8px; box-shadow:0 6px 14px rgba(228,73,46,.25);
}

/* 週表 */
.tl-weektbl-wrap{ margin-top:22px; }
.tl-weektbl{
  border-radius:16px; overflow:clip; border:1px solid rgba(208,172,85,.45);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  background:linear-gradient(180deg,#ffffff,#fbf7ec);
  width:100%; border-collapse:separate; border-spacing:0;
}
.tl-weektbl thead th{
  background:linear-gradient(180deg,#fff3c5,#ffe9a5);
  color:#3a2c18; letter-spacing:.02em; padding:12px 10px; font-weight:900; border-color:rgba(208,172,85,.45);
}
.tl-weektbl th, .tl-weektbl td{ border:1px solid rgba(208,172,85,.28); padding:12px 12px; }
.tl-weektbl tbody tr:nth-child(odd){ background:#fffdf6; }
.tl-weektbl tbody tr:hover{ background:#fff6dd; }
.tl-weektbl tbody th{
  position:sticky; left:0; z-index:1; background:#faf6ea;
  color:#2a1e08; font-weight:900; text-align:left; white-space:nowrap;
  box-shadow:6px 0 12px rgba(0,0,0,.04);
}

@media (max-width:959.98px){
  .tl-schedule-grid{ grid-template-columns:repeat(2, minmax(0,1fr)) !important; gap:14px !important; }
  .tl-schedule-card img{ height:auto !important; aspect-ratio:3/4 !important; }
  .tl-weektbl thead th{ font-size:13px; }
  .tl-weektbl td{ font-size:13px; }
}

/* =========================================================
   7) SP固定フッターバー（追従）
   ========================================================= */
.tl-bottombar{
  position:fixed; left:0; right:0; bottom:0; z-index:2147483647;
  display:none; grid-template-columns:repeat(4,1fr); gap:10px;
  padding:10px env(safe-area-inset-right) calc(10px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
  background:rgba(18,18,18,.92); backdrop-filter:blur(6px);
  border-top:1px solid rgba(255,255,255,.08); box-shadow:0 -10px 24px rgba(0,0,0,.25);
}
.tl-bbtn{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; height:56px; border-radius:12px; text-decoration:none; color:#fff; font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
}
.tl-bbtn__icon{ font-size:18px; line-height:1; }
.tl-bbtn__txt{ font-size:12px; line-height:1; letter-spacing:.02em; }
.tl-bbtn--tel { border-color:#f1c76b; background:linear-gradient(180deg,#f8d98c,#e7b84b); color:#1f1606; }
.tl-bbtn--line{ border-color:#00b900; background:linear-gradient(180deg,#00d300,#00b400); color:#fff; }
.tl-bbtn--web { border-color:#d1b36a; background:linear-gradient(180deg,#f0e2bb,#e3c976); color:#1f1606; }
.tl-bbtn--job { border-color:#6aa9ff; background:linear-gradient(180deg,#bcd7ff,#80b6ff); color:#0e2446; }
.tl-bbtn:active{ transform:translateY(1px); }

@media (max-width:959.98px){
  .tl-bottombar{ display:grid !important; }
  body{ padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important; }
  .tl-cta-rail{ display:none !重要; } /* ヘッダーCTAは下部に集約 */
}

/* =========================================================
   8) PRICE ページ
   ========================================================= */
.tl-price .tl-wrap{ max-width:1080px; padding:36px 24px 120px; }
.price-h1{ margin:36px 0 26px; }

.price-board{
  margin:0 auto 40px; padding:22px 26px; border-radius:12px;
  box-shadow:0 10px 28px rgba(0,0,0,.08); background:#fff;
}
.price-board__row{
  display:flex; align-items:center; justify-content:space-between; gap:10px; padding:14px 2px;
}
.price-board__min{ font-size:22px; white-space:nowrap; }
.price-board__price{ font-size:24px; white-space:nowrap; }
.price-board__dot{ flex:1 1 auto; border-bottom:1px dashed #d8c396; height:0; margin:0 6px; }

.price-twocol{ margin-top:50px; gap:36px; display:grid; grid-template-columns:1fr 1fr; }
.price-card{
  padding:20px 22px 14px; border-radius:12px; background:#fff;
  border:1px solid #c6a652; box-shadow:0 10px 24px rgba(0,0,0,.07); margin-bottom:40px;
}
.price-card__title{
  margin:0 0 14px; font-size:20px; letter-spacing:.04em; text-align:center; color:#8a6a22;
}
.price-card__list{ padding:8px 2px; }
.price-line{
  display:grid; grid-template-columns:1fr 160px; gap:16px; padding:14px 6px;
}
.price-line + .price-line{ border-top:1px solid #eee1bb; }
.price-line__label{ line-height:1.6; }
.price-line__price{ text-align:right; font-weight:800; }

@media (max-width:980px){ .price-twocol{ grid-template-columns:1fr; gap:28px; } .price-card{ margin-bottom:28px; } }
@media (max-width:640px){
  .tl-price .tl-wrap{ padding-left:16px; padding-right:16px; }
  .price-board__price{ font-size:22px; } .price-board__min{ font-size:20px; }
}

/* ページ背景はカスタマイザー設定を使用（強制上書きを撤廃） */
/* 旧: body.page-template-page-price{ background:#fdf9f2 !important; }  ← 削除 */
.page-template-page-price .price-card{
  background:var(--card-bg, rgba(255,255,255,.65));
  border:1px solid var(--card-border,#e0cfa7);
  border-radius:8px;
}

/* =========================================================
   9) ACCESS / CONTACT
   ========================================================= */
.tl-access{
  --gold1:#f8d98c; --gold2:#e7b84b; --ink:#1a1a1a;
  --line:#e9e2cd; --bg:#faf8f3; --card:#ffffff;
  max-width:1080px; margin:24px auto 80px; padding:0 16px; color:var(--ink);
}
.tl-access__title{
  margin:0 0 12px; font:800 clamp(24px,4vw,34px)/1.2 "Bebas Neue","Noto Sans JP",system-ui,sans-serif; letter-spacing:.06em; color:#2c2414;
}
.tl-access__lead{
  margin:0 0 18px; line高さ:1.9; line-height:1.9; color:#3a2c18;
  background:linear-gradient(180deg,#fff,#fff8e9);
  border:1px solid var(--line); border-radius:12px; padding:14px 16px; box-shadow:0 8px 22px rgba(0,0,0,.04);
}

.tl-access__cta{ display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 22px; }
.tl-access .tl-btn{ min-width:140px; height:40px; padding:0 16px; border-radius:10px; font-weight:800; letter-spacing:.02em; text-decoration:none; border:1px solid transparent; transition:.25s; cursor:pointer; box-shadow:0 8px 18px rgba(0,0,0,.12); }
.tl-access .tl-btn--gold{ background:linear-gradient(180deg,var(--gold1),var(--gold2)); color:#1f1606; border-color:#d2a84f; }
.tl-access .tl-btn--gold:hover{ filter:brightness(1.06); }
.tl-access .tl-btn--tel::before{ content:"📞"; margin-right:.45em; }
.tl-access .tl-btn--line{ background:linear-gradient(180deg,#00d300,#00b400); color:#fff; border-color:#00b900; }
.tl-access .tl-btn--line::before{ content:"💬"; margin-right:.45em; }

.tl-contact{ background:var(--card); border:1px solid var(--line); border-radius:14px; box-shadow:0 10px 24px rgba(0,0,0,.06); padding:18px; }
.tl-contact__title{ margin:0 0 10px; font-weight:800; letter-spacing:.06em; color:#8a6a22; }

.tl-alert{ border-radius:12px; padding:12px 14px; margin:6px 0 14px; font-weight:700; }
.tl-alert--success{ background:#edfbe7; border:1px solid #bfe4a8; color:#164a1e; }
.tl-alert--error{ background:#fff1f1; border:1px solid #f0c0c0; color:#7b1c1c; }

.tl-field{ margin:12px 0; }
.tl-field label{ display:inline-block; font-weight:800; color:#3a2c18; margin:0 0 6px; }
.tl-field .req{
  display:inline-grid; place-items:center; margin-left:.5em; min-width:32px; height:18px; padding:0 6px; border-radius:999px;
  background:linear-gradient(180deg,var(--gold1),var(--gold2)); color:#1f1606; font-size:12px; font-weight:900;
}
.tl-field input[type="text"],
.tl-field input[type="email"],
.tl-field input[type="tel"],
.tl-field select,
.tl-field textarea{
  width:100%; border:1px solid var(--line); background:#fff;
  border-radius:10px; padding:12px 12px; font-size:15px; line-height:1.6;
  transition:border-color .2s ease, box-shadow .2s ease; box-shadow: inset 0 0 0 rgba(0,0,0,0);
}
.tl-field textarea{ min-height:140px; resize:vertical; }
.tl-field select{
  appearance:none;
  background-image:
    linear-gradient(45deg,transparent 50%, #8a6a22 50%),
    linear-gradient(135deg,#8a6a22 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size:6px 6px; background-repeat:no-repeat;
}
.tl-field input:focus, .tl-field select:focus, .tl-field textarea:focus{
  outline:none; border-color:#d4b257; box-shadow:0 0 0 3px rgba(212,178,87,.18);
}

/* コース選択の折り返し防止 */
#tlc-course,
.tl-access .tl-field select#tlc-course{
  width:100% !important; max-width:540px !important; min-width:28ch !important;
  white-space:nowrap !important; text-overflow:ellipsis !important; overflow:hidden !important;
  font-size:15px; line-height:1.6; padding:10px 12px; border:1px solid #ddd; border-radius:6px; background:#fff;
  box-shadow:0 2px 4px rgba(0,0,0,.05);
}
#tlc-course option,
.tl-access .tl-field select#tlc-course option{ white-space:nowrap !important; }

.tl-submit{ margin-top:14px; display:flex; gap:10px; }
.tl-submit .tl-btn--gold{ min-width:160px; height:44px; }

@media (max-width:640px){
  .tl-access{ padding:0 12px; }
  .tl-access__lead{ padding:12px; }
  .tl-access .tl-btn{ flex:1; min-width:120px; }
}

/* SNSシェア・フォロー完全非表示（Access等） */
.single .sns-share, .page .sns-share, .single .sns-follow, .page .sns-follow,
.sns-share, .sns-follow, .sns-btn, .sns-area, .sns-group, .sns-wrap, .sns-top, .sns-bottom,
.share-button, .follow-button, .fb_iframe_widget, #sns, #share, #follow,
.sns-share-title, .sns-follow-title,
#sns, #sns-bottom, #sns-top{ display:none !important; visibility:hidden !important; opacity:0 !important; height:0 !important; margin:0 !important; padding:0 !important; }

/* 投稿日等の非表示（固定ページ） */
.post-date,.entry-date,.published,.updated,.date-tags,.meta,.meta-top,.post-meta,
.page .post-date,.page .entry-date{ display:none !important; visibility:hidden !important; opacity:0 !important; height:0 !important; margin:0 !important; padding:0 !important; }

/* パンくず/編集リンクの非表示（必要ページ） */
.breadcrumb,.breadcrumbs,.p-breadcrumb,#breadcrumb,#breadcrumbs,
.entry-footer,.post-author,.author-info,.edit-link,.page .edit-link{ display:none !重要; }

/* =========================================================
   10) フロントページ（NEWS / TODAY / NEW FACE など）
   ========================================================= */
.tl-front {
  color: var(--ink);
  background: var(--sand);
}
.tl-front .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.tl-headline {
  margin: 0 0 18px;
  font: 800 clamp(28px, 5vw, 48px)/1.08 "Bebas Neue","Noto Sans JP",system-ui,sans-serif;
  letter-spacing: .06em;
  text-align: center;
}
.tl-headline:after {
  content: "";
  display: block;
  height: 3px;
  width: min(280px, 38vw);
  margin: 10px auto 0;
  background: linear-gradient(90deg, #11b6a7 0%, #86e7df 60%, transparent 100%);
  border-radius: 2px;
}

/* NEWS（1行横すっきり） */
#news .tl-container { overflow: visible; }
#news .tl-news {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  max-width: 1180px;
  margin-inline: auto;
  border-top: 1px solid #e6dfd1;
}
#news .tl-news__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  border-bottom: 1px solid #e6dfd1;
  background: #fff;
}
#news .tl-news__date {
  flex: 0 0 160px;
  width: 160px;
  color: #7a6a4c;
  font-weight: 700;
}
#news .tl-news__ttl {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: initial !important;
  font-weight: 700;
}
#news .tl-news__ttl:hover {
  color: #8a6f3a;
  text-decoration: underline;
}

/* ===== TODAY / NEW FACE グリッド & カード（修正版） ===== */
#today .tl-container > :is(ul, ol, div, section),
#newface .tl-container > :is(ul, ol, div, section) {
  display: grid !important;
  gap: 28px !important;
  align-items: stretch !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
@media (max-width: 1024px) {
  #today .tl-container > :is(ul, ol, div, section),
  #newface .tl-container > :is(ul, ol, div, section) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767.98px) {
  #today .tl-container > :is(ul, ol, div, section),
  #newface .tl-container > :is(ul, ol, div, section) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* カード本体 */
#today .tl-container > :is(ul, ol, div, section) > *,
#newface .tl-container > :is(ul, ol, div, section) > * {
  background: #fff !important;
  border: 1px solid rgba(199, 165, 106, .28) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important; /* 伸び防止 */
}

/* PC固定高を撤廃し、可変に調整 */
@media (min-width: 1024px) {
  #today .tl-container > :is(ul, ol, div, section) > *,
  #newface .tl-container > :is(ul, ol, div, section) > * {
    min-height: auto !important;
  }
}

/* 画像比率を統一 */
#today .tl-container img,
#newface .tl-container img,
#today .tl-container picture img,
#newface .tl-container picture img {
  width: 100% !important;
  aspect-ratio: 3 / 4 !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
  line-height: 0 !important;
}

/* 本文部を自然に伸縮 */
#today .tl-container > :is(ul, ol, div, section) > * > :not(img):not(picture) {
  flex: 1 1 auto;
}

/* NEWバッジは赤で統一 */
#today .tl-container .badge,
#newface .tl-container .badge,
#today .tl-container .new,
#newface .tl-container .new,
#today .tl-container [class*="badge-"],
#newface .tl-container [class*="badge-"],
#today .tl-container [class*="NEW"],
#newface .tl-container [class*="NEW"],
#today .tl-container [data-badge="new"],
#newface .tl-container [data-badge="new"] {
  background: #e64646 !important;
  color: #fff !important;
  border: 0 !important;
  padding: .35em .65em !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 14px rgba(230, 70, 70, .25) !important;
  font-size: 13px !important;
}

/* 不要な右側の固定リボン類は非表示（ホーム） */
body.home :is(
  .floating_ribbon,
  .floating-ribbon,
  .float-banner,
  .c-floatbtn,
  .js-fixedbtn,
  .line-ribbon,
  .line__fixed,
  .s-float,
  .sticky-ribbon,
  [class*="float"][class*="ribbon"],
  [class*="ribbon"][style*="fixed"],
  [style*="position: fixed"][style*="right"]
):not(.tl-ribbon) {
  display: none !important;
}

/* =========================================================
   11) 小パーツ：メニュー/スケジュール/フォームなど
   ※ ここはヘッダーの .tl-menu を上書きしないようにクラス名を変更
   ========================================================= */
.tl-listmenu{ display:flex; gap:10px; flex-wrap:wrap; }            /* ← 旧 .tl-menu をリネーム */
.tl-schedule{ display:grid; gap:10px; grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .tl-schedule{ grid-template-columns:repeat(4,1fr); } }
@media (min-width:1024px){ .tl-schedule{ grid-template-columns:repeat(7,1fr); } }
.tl-schedule .cell{
  background:#fff; color:#222; border:1px solid #eee; border-radius:12px;
  padding:12px 12px 14px; text-align:center; box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.tl-schedule .date{ font-size:13.5px; letter-spacing:.04em; color:#b28100; font-weight:700; }
.tl-schedule .slot{ margin-top:8px; font-weight:800; letter-spacing:.02em; font-size:15px; }
.tl-note{ color:#8b8b8b; font-size:12.5px; margin-top:10px; }
.tl-more{ margin-top:14px; text-align:left; }

/* =========================================================
   12) テーマ/プラグイン由来の余白・上詰めの最小限調整
   ========================================================= */
/* ヘッダー直下要素の上余白を抑える（全体破壊はしない） */
.l-header + *,
.header + *,
#header + *,
.site-header + *{ margin-top:0 !重要; padding-top:0 !重要; }

/* 記事本文先頭の余白を抑制 */
.entry-content > *:first-child{ margin-top:0 !重要; }

/* Cocoon画像装飾の打ち消し（本文内） */
.entry-content img, .article img, .post img, .page img{
  max-width:100% !重要; height:auto !重要; border:none !重要; box-shadow:none !重要;
}

/* ===== Fix: パンくずと編集リンクを完全に消す（余白もゼロ） ===== */
/* どのページでも非表示にしたい場合 */
.breadcrumb,
.breadcrumbs,
.p-breadcrumb,
#breadcrumb,
#breadcrumbs,
.entry-footer,
.post-author,
.author-info,
.edit-link,
.page .edit-link {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cocoon がパンくず用に作るラッパーがあれば余白を潰す */
.breadcrumb-area,
.breadcrumb-wrap,
#breadcrumb:empty,
.breadcrumb:empty,
.breadcrumbs:empty,
#breadcrumbs:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   13) FOOTER BAR（PC/SP 共通デザイン）
   ========================================================= */

/* 背景色は PHP 側で用意した --tl-footer-bg を使う */
.tl-footerbar{
  background: var(--tl-footer-bg, #fff);
  border-top: 1px solid #efede7;
}

.tl-footerbar__inner{
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #2b2d3a;
  font: 600 14px/1.8 "Noto Sans JP", system-ui, -apple-system, sans-serif;
}

.tl-footerbar__left{
  flex: 1 1 auto;
}

/* フッターメニュー（PC 基本） */
.tl-footerbar .tl-footmenu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.tl-footerbar .tl-footmenu > li{
  margin: 0;
  list-style: none;
}

.tl-footerbar .tl-footmenu a{
  font-size: 13px;
  color: #7a6a2a;
  text-decoration: none;
  font-weight: 700;
  opacity: .9;
}

.tl-footerbar .tl-footmenu a:hover{
  opacity: 1;
  text-decoration: underline;
}

/* コピーライト（PC） */
.tl-footerbar__right{
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: .02em;
  color: #6e5a2d;
}

/* =========================================================
   FOOTER BAR（SP レイアウト）
   ========================================================= */
/* フッターメニューのレイアウト調整 */
.tl-footer-menu{
  padding: 10px 0 4px;
  text-align: center;
  font-family: 'Montserrat','Noto Sans JP',system-ui,-apple-system,sans-serif;
}

/* ・を消して横並びに */
.tl-footer-menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;  /* 横並び */
  flex-wrap: wrap;       /* 幅が足りない時は折り返し */
  gap: 14px;             /* リンク同士のすき間 */
}

.tl-footer-menu li{
  margin: 0;
}

/* リンクの見た目 */
.tl-footer-menu a{
  font-size: 13px;
  color: #7a6a2a;
  text-decoration: none;
}

.tl-footer-menu a:hover{
  text-decoration: underline;
  opacity: 0.8;
}

/* 余白を作るフッター枠ごと無効化 */
#footer,
.l-footer,
footer.footer,
footer .footer-inner,
footer .footer-container,
.footer-container,
.footer,
.l-footer-container {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  height: auto !important;
}

/* 下の白帯の原因となる min-height を無効化 */
#footer, .l-footer {
  min-height: 0 !important;
  line-height: 0 !important;
}

/* Cocoon が残す「空の div」も完全削除 */
#footer .footer-container:empty,
.l-footer .footer-container:empty,
footer:empty {
  display: none !important;
}

/* ===============================
   ⑭トップバナー（Swiper）
   =============================== */

.tl-topbanners {
  max-width: 1180px;
  margin: 32px auto 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.tl-topbanners .swiper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  background: #f5f5f5;
}

.tl-topbanners .swiper-slide {
  position: relative;
}

.slide-img {
  width: 100%;
  display: block;
}

/* キャプション（任意） */
.slide-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  background: rgba(0,0,0,.55);
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

/* ページネーション */
.tl-topbanners .swiper-pagination-bullet {
  background: #c1a263 !important;
}

/* ===== ヘッダーロゴを大きくする（最優先で上書き） ===== */

/* PC：ザ・リッツくらいのサイズ感 */
@media (min-width: 769px) {
  .tl-logo img,
  .tl-logo-svg {
    height: 90px !important;   /* ←ここを好みで 80〜100 に調整してOK */
    width: auto !important;
  }
}

/* スマホ：少しだけ小さめ */
@media (max-width: 768px) {
  .tl-logo img,
  .tl-logo-svg {
    height: 90px !important;
    width: 120px !important;
  }
}

/* ▼ヘッダーロゴ（PC）のサイズを調整 */
.tl-topbar .tlh-logo__img img,
.tl-topbar .tlh-logo img {
  height: 80px !important;   /* ← 好きな高さに。70〜90pxくらいで調整 */
  width: auto !important;
}

/* ロゴブロック自体の高さも合わせて広げる */
.tl-topbar .tlh-logo {
  display: inline-flex;
  align-items: center;
  height: 80px !important;   /* 上と揃えておくときれい */
}

/* ▼スマホ用（少し小さめ） */
@media (max-width: 768px) {
  .tl-topbar .tlh-logo__img img,
  .tl-topbar .tlh-logo img {
    height: 48px !important;
  }
  .tl-topbar .tlh-logo {
    height: 48px !important;
  }
}

/* ===========================
   ヘッダーバーを追従式にする
   =========================== */
.tl-headerbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* ログイン中（管理バー表示時）は少し下げる */
.admin-bar .tl-headerbar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .tl-headerbar {
    top: 46px;
  }
}

/* =========================================
   SP：ロゴ左／ハンバーガー右（.tlh-burger 直指定版）
   ========================================= */
@media (max-width: 959.98px){

  /* 黒帯の中身を横並びに */
  .tlh-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    position:relative !important;
  }

  /* 左ブロック（ロゴ＋電話）は左側 */
  .tlh-left{
    display:flex !important;
    align-items:center !important;
    flex:1 1 auto !important;
  }

  /* ロゴは左寄せ */
  .tlh-logo{
    margin-right:auto !important;
  }

  /* ハンバーガーを右端へ */
  .tlh-burger{
    position:relative !important;   /* まず absolute を打ち消す */
    left:auto !important;
    right:auto !important;
    top:auto !important;
    transform:none !important;

    margin-left:auto !important;    /* フレックスで右に押し出す */
    margin-right:8px !important;
    order:10 !important;            /* flex 順も一番右に */
  }

  /* スマホでは電話テキストを消す（不要ならコメントアウトでもOK） */
  .tlh-phone{
    display:none !important;
  }

  /* ヘッダー右上の Web/LINE ボタンは SP では非表示
     （下の固定フッターボタンと役割が被るため） */
  .tlh-right{
    display:none !important;
  }
}

/* =========================================
   ▼投稿（NEWS）ページ：高級サロンデザイン
   ========================================= */

.tl-single__wrap{
  max-width: 880px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.tl-article__head{
  text-align: center;
  margin-bottom: 36px;
}

.tl-article__date{
  font-size: 14px;
  color: #b9a875;
  letter-spacing: .05em;
}

.tl-article__cats{
  margin-left: 10px;
}

.tl-article__cat{
  background: #b9a875;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 3px;
  margin-left: 4px;
}

.tl-article__title{
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
  color: #333;
  line-height: 1.4;
}

.tl-article__thumb{
  margin: 20px 0 30px;
  text-align: center;
}

.tl-article__thumb img{
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.tl-article__body{
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.tl-article__body p{
  margin: 0 0 1.8em;
}

.tl-article__body h2{
  font-size: 22px;
  margin: 1.8em 0 0.8em;
  border-left: 5px solid #b9a875;
  padding-left: 12px;
}

.tl-article__body h3{
  font-size: 19px;
  margin: 1.6em 0 0.6em;
  color: #333;
}

.tl-article__body img{
  margin: 20px auto;
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

/* Cocoonの余計な要素を完全に削除 */
#related-entries,
#comments,
#comment-area,
.comment-form,
.wp-block-latest-comments,
.pager-post,
.tag-links,
.author-info{
  display:none !important;
}
/* ==========================================================
   投稿ページ：上部メタ情報（カテゴリ含む）非表示
========================================================== */
.tl-article__meta {
  text-align: center;
  margin-bottom: 10px;
}
.tl-article__cats,
.tl-article__cat {
  display: none !important;
}

/* ==========================================================
   上品×海外ホテル風のラグジュアリー見出し
========================================================== */

.tl-article__title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 35px auto 25px;
  padding-bottom: 12px;

  color: #333; /* クッキリ見えて高級感もある */
  letter-spacing: 0.04em;

  /* 立体感のある白＆金のシャドウ */
  text-shadow:
    0 1px 0 #fff,
    0 2px 4px rgba(0,0,0,0.18);
}

/* アンダーライン（極細ゴールド） */
.tl-article__title::after {
  content: "";
  display: block;
  width: 80px;                     /* 長すぎず上品 */
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #d7b46a, #f7e7c5, #d7b46a);
  border-radius: 2px;
  opacity: 0.9;
}

/* 日付（読みやすく） */
.tl-article__date {
  text-align: center;
  display: block;
  margin: 6px auto 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #9b875c;
}


/* ==========================================================
   アイキャッチ画像：高級感ある余白
========================================================== */
.tl-article__thumb {
  margin: 20px auto 30px;
  text-align: center;
}
.tl-article__thumb img {
  border-radius: 8px;
  max-height: 860px;
  object-fit: cover;
}

/* ==========================================================
   本文：高級感あるデザイン
========================================================== */
.tl-article__body {
  max-width: 820px;
  margin: 0 auto 80px;
  font-size: 17px;
  line-height: 1.9;
  color: #5a4b3b;
}

/* =========================================
   タイプタグを「飾り」にしてリンク無効化
   （therapist の詳細ページだけ）
   ========================================= */

/* /therapist/ 配下の単一ページで、
   /type/ を含むリンクを全部「クリック無効」にする */
.single-therapist a[href*="/type/"] {
  pointer-events: none;      /* クリック・タップを無効化 */
  cursor: default;           /* マウスカーソルも普通に */
  text-decoration: none;     /* 下線などがあれば消す */
}

/* ホバー時に余計な変化が出ないように保険 */
.single-therapist a[href*="/type/"]:hover {
  filter: none;
  transform: none;
}
/* =========================================
   在籍セラピスト一覧（/therapists/）専用
   ─ 背景は「サイト背景（body）」に完全おまかせ
     中の白い箱だけ透明 + サイドバー削除
   ========================================= */

/* 中の白い箱を透明にして、背景を見せる */
body.post-type-archive-therapist #wrapper,
body.post-type-archive-therapist #content,
body.post-type-archive-therapist .content,
body.post-type-archive-therapist .container,
body.post-type-archive-therapist .l-content,
body.post-type-archive-therapist .l-main,
body.post-type-archive-therapist .site-content,
body.post-type-archive-therapist .site-content-contain,
body.post-type-archive-therapist .wrap,
body.post-type-archive-therapist .main,
body.post-type-archive-therapist #content-in,
body.post-type-archive-therapist .container-fluid,
body.post-type-archive-therapist .main-inner {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* サイドバー削除 & メイン全幅 */
body.post-type-archive-therapist #sidebar,
body.post-type-archive-therapist #sidebar-scroll,
body.post-type-archive-therapist .l-sidebar {
  display: none !important;
}

body.post-type-archive-therapist .l-main {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

/* ここでは body や html の background は一切さわらない！
   → カスタマイザー「サイト背景（body）」がそのまま効く */
/* =========================================
   フロント：X埋め込み & 相互リンクバナー
   ========================================= */

#tl-front-sns-links{
  margin: 40px auto 60px;
}

.tl-front-sns-links__inner{
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 28px;
}
@media (max-width: 960px){
  .tl-front-sns-links__inner{
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Xセクション */
.tl-front-x__title,
.tl-front-partners__title{
  margin: 0 0 12px;
  font: 800 18px/1.4 "Bebas Neue","Noto Sans JP",system-ui,-apple-system,sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a6430;
}
.tl-front-x__embed{
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e4dac4;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 14px;
  overflow: hidden;
}

/* 相互リンクバナー */
.tl-front-partners__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tl-front-partners__item{
  margin: 0;
}
.tl-front-partners__link{
  display: block;
  border-radius: 10px;
  border: 1px solid #e4dac4;
  background: #fffdf7;
  padding: 8px 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  text-align: center;
}
.tl-front-partners__link img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.tl-front-partners__label{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #5f4c23;
}

/* =========================================================
   END
   ========================================================= */
