/*
Theme Name: QUEEN Child
Theme URI:
Description: Astra child theme for QUEEN. 白×ラベンダー(#d4bae4) パステル清楚トーン。
Author: シモちゃん
Template: astra
Version: 0.1.0
Text Domain: queen-child
*/

/* =========================================================
   デザイントークン（白 × ラベンダー #d4bae4 / パステル清楚）
   ========================================================= */
:root {
  --qc-base:        #ffffff;   /* ベース背景 */
  --qc-base-tint:   #faf7fc;   /* ごく淡いラベンダー地 */
  --qc-lavender:    #d4bae4;   /* メインアクセント（面） */
  --qc-lavender-lt: #e6d6f0;   /* 見出しバーグラデ上 */
  --qc-deep:        #9b7cb8;   /* 濃色（文字・CTA・強調） */
  --qc-text:        #4a4548;   /* 基本テキスト（純黒回避） */
  --qc-text-mute:   #8a8288;   /* 補助テキスト */
  --qc-badge-new:   #f5b7c4;   /* NEW = パステルピンク */
  --qc-badge-photo: #b7e4c7;   /* 写真更新 = パステルミント */
  --qc-badge-tag:   #d4bae4;   /* タグ = パステルパープル */
  --qc-line:        #ece4f2;   /* 罫線 */

  --qc-container:   640px;     /* ※要CSS実測。暫定640px */
}

/* コンテナ：モバイルファースト単一カラムを中央寄せ */
.qc-container {
  width: 100%;
  max-width: var(--qc-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

/* =========================================================
   ベース
   ========================================================= */
body {
  background: #e7dff0;               /* 列の外側に見えるページ背景（PC時） */
  color: var(--qc-text);
  font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
/* サイト全体を中央寄せの単一カラムに（cocore踏襲。FVも本文も同じ幅） */
.qc-site {
  position: relative;
  max-width: var(--qc-container);
  margin: 0 auto;
  background: var(--qc-base);
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(120,90,150,.12);
}
/* カラム上部に貼り付く0高さバー。中のロゴ／ハンバーガーが列の左右端に追従する */
.qc-navbar { position: sticky; top: 0; height: 0; z-index: 130; }

/* 下層ページ左上のロゴ（TOPへリンク） */
.qc-navbar__logo {
  position: absolute; top: 12px; left: 12px; z-index: 130;
  display: flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 14px; border-radius: 4px;
  background: var(--qc-deep);
  box-shadow: 0 2px 8px rgba(155,124,184,.35);
  text-decoration: none;
}
.qc-navbar__logo img { display: block; height: 42px; width: auto; max-width: 150px; object-fit: contain; }
/* コンパクト版が無く、縦長のフルロゴを使う場合は少し大きめに */
.qc-navbar__logo.is-full { height: 62px; padding: 0 10px; }
.qc-navbar__logo.is-full img { height: 46px; max-width: 120px; }
body.qc-nav-open .qc-navbar__logo { opacity: 0; pointer-events: none; }
.qc-main { min-height: 20vh; }
a { color: var(--qc-deep); }

/* セクション見出し（cocore式: 帯なし・中央に 日本語大＋英語小） */
.qc-sec-head {
  background: none;
  text-align: center;
  padding: 6px 10px 14px;
  margin: 0;
  line-height: 1.25;
}
.qc-sec-head__ja {
  display: block;
  font-size: 19px; font-weight: 600; letter-spacing: .06em;
  line-height: 1.25;
  color: var(--qc-text);
}
.qc-sec-head__en {
  display: block;
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 10px; letter-spacing: .2em;
  color: var(--qc-deep);
  margin-top: 1px;
  line-height: 1.2;
}

/* 追従ハンバーガー（三本線のみ・紫背景・白線。カラム右端に固定） */
.qc-nav-toggle {
  position: absolute; top: 12px; right: 12px; z-index: 130;
  border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 56px; height: 56px; border-radius: 4px;
  background: var(--qc-deep);
  box-shadow: 0 2px 8px rgba(155,124,184,.35);
}
.qc-nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: .25s; }
/* 開いたらドロワーの × に閉じるを任せる */
body.qc-nav-open .qc-nav-toggle { opacity: 0; pointer-events: none; }

/* =========================================================
   スライドインナビ
   ========================================================= */
.qc-drawer {
  position: fixed; top: 0; right: 0; z-index: 120;
  width: 100%; max-width: var(--qc-container); height: 100%;
  background: rgba(255,255,255,.98);
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto; padding-bottom: 48px;
}
body.qc-nav-open .qc-drawer { transform: translateX(0); }

.qc-drawer__head {
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid var(--qc-line);
}
.qc-drawer__headtext { flex: 1; min-width: 0; align-self: center; padding: 12px 16px; text-align: left; }
.qc-drawer__catch { font-size: 11px; color: var(--qc-text-mute); margin: 0 0 4px; }
.qc-drawer__name  { font-size: 14px; color: var(--qc-deep); font-weight: 600; margin: 0; }
.qc-drawer__close {
  flex: 0 0 auto; width: 64px; align-self: stretch; z-index: 2;
  border: 0; border-radius: 0; cursor: pointer;
  background: var(--qc-deep); color: #fff; font-size: 28px; line-height: 1;
}

.qc-menu { list-style: none; margin: 0; padding: 0; }
.qc-menu li { border-bottom: 1px solid var(--qc-line); }
.qc-menu a {
  display: block; padding: 15px 18px 15px 36px; position: relative;
  color: var(--qc-text); text-decoration: none; font-size: 15px;
}
.qc-menu a::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--qc-lavender); box-sizing: border-box;
}
.qc-menu a:hover { background: var(--qc-base-tint); color: var(--qc-deep); }

.qc-drawer__info { padding: 18px 18px 0; font-size: 13px; line-height: 2; }
.qc-drawer__info .qc-di-area { color: var(--qc-deep); font-weight: 600; margin: 0 0 6px; }
.qc-drawer__info a, .qc-drawer__info p { margin: 0; color: var(--qc-text); text-decoration: none; }
.qc-drawer__info i { font-style: normal; margin-right: 6px; }

.qc-drawer-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(74,69,72,.4); opacity: 0; pointer-events: none; transition: opacity .3s;
}
body.qc-nav-open .qc-drawer-overlay { opacity: 1; pointer-events: auto; }

/* =========================================================
   電話受付CTA
   ========================================================= */
.qc-cta { text-align: center; padding: 28px 10px 20px; background: var(--qc-base-tint); }
.qc-cta__btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(135deg, var(--qc-deep), var(--qc-lavender));
  color: #fff; text-decoration: none; font-size: 11px; line-height: 1.4;
  box-shadow: 0 3px 10px rgba(155,124,184,.35);
}
.qc-cta__btn i { font-style: normal; font-size: 18px; }
.qc-cta__open { margin: 10px 0 0; font-size: 13px; color: var(--qc-deep); }

/* =========================================================
   フッター
   ========================================================= */
.qc-footer { background: #fff; padding: 26px 0 40px; border-top: 1px solid var(--qc-line); }
.qc-fnav, .qc-fnav-wrap .qc-menu {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--qc-line);
}
.qc-fnav li, .qc-fnav-wrap .qc-menu li { border-bottom: 1px solid var(--qc-line); }
.qc-fnav a, .qc-fnav-wrap .qc-menu a { display: block; padding: 12px 8px; font-size: 13px; color: var(--qc-text); text-decoration: none; text-align: center; }
.qc-shopinfo { text-align: center; font-size: 13px; line-height: 1.9; }
.qc-shopinfo__name { color: var(--qc-deep); font-weight: 600; }
.qc-copyright { text-align: center; font-size: 11px; color: var(--qc-text-mute); margin-top: 18px; }

/* =========================================================
   ENTER（年齢認証ゲート）
   ========================================================= */
.qc-enter {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 16px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.10) 0 1px, transparent 1px 17px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.10) 0 1px, transparent 1px 17px),
    radial-gradient(120% 80% at 50% 36%, rgba(150,110,190,.32) 0%, rgba(150,110,190,0) 62%),
    linear-gradient(160deg, #dcc6ee 0%, #c8a9e0 45%, #b493d4 100%);
}
/* シルクの光沢（静止） */
.qc-enter::before {
  content: ""; position: absolute; top: -50%; left: 20%; z-index: 1;
  width: 55%; height: 200%; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.26), rgba(255,255,255,0));
  transform: rotate(18deg);
}
/* きらめき（静止） */
.qc-enter::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle 2.4px at 14% 20%, #fff, transparent),
    radial-gradient(circle 1.6px at 26% 66%, rgba(255,255,255,.9), transparent),
    radial-gradient(circle 2px   at 36% 38%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 1.3px at 46% 82%, rgba(255,255,255,.8), transparent),
    radial-gradient(circle 2.6px at 60% 24%, #fff, transparent),
    radial-gradient(circle 1.5px at 66% 60%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 2px   at 78% 42%, rgba(255,255,255,.9), transparent),
    radial-gradient(circle 1.4px at 86% 76%, rgba(255,255,255,.8), transparent),
    radial-gradient(circle 2.2px at 90% 28%, #fff, transparent),
    radial-gradient(circle 1.6px at 52% 10%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 26px  at 22% 32%, rgba(255,255,255,.14), transparent),
    radial-gradient(circle 30px  at 76% 64%, rgba(255,246,252,.12), transparent);
}
.qc-enter__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--qc-container);
  text-align: center;
}
/* NEWS */
.qc-enter__news {
  display: inline-flex; align-items: center; gap: 10px;
  max-width: 100%; margin: 0 auto 22px; padding: 7px 14px 7px 7px;
  background: rgba(255,255,255,.9); border-radius: 999px;
  font-size: 11px; color: var(--qc-text); text-align: left; line-height: 1.5;
}
.qc-enter__news span {
  flex: 0 0 auto; padding: 3px 9px; border-radius: 999px;
  background: var(--qc-deep); color: #fff; font-size: 10px; letter-spacing: .08em;
}

.qc-enter__logo { margin-bottom: 20px; }

/* 営業時間・受付番号 */
.qc-enter__info {
  margin: 0 auto 20px; max-width: 340px;
  background: rgba(255,255,255,.85); border-radius: 6px; padding: 12px 16px;
}
.qc-enter__info > div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 4px 0; }
.qc-enter__info dt { margin: 0; font-size: 12px; color: var(--qc-text-mute); }
.qc-enter__info dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--qc-deep); }
.qc-enter__info dd a { color: inherit; text-decoration: none; }

/* 18禁マーク */
.qc-enter__r18 {
  display: block; width: 66px; height: auto;
  margin: 0 auto 12px;
}

/* 店舗紹介 */
.qc-enter__about {
  margin-top: 26px; padding: 18px 16px;
  background: rgba(255,255,255,.85); border-radius: 6px; text-align: left;
}
.qc-enter__shopname { font-size: 14px; color: var(--qc-deep); font-weight: 600; margin: 0 0 8px; text-align: center; }
.qc-enter__intro { font-size: 12px; line-height: 1.95; color: var(--qc-text); margin: 0; }
.qc-enter__logo img {
  width: 100%; max-width: 300px; height: auto;
  filter: drop-shadow(0 2px 7px rgba(96,62,132,.42));
}
.qc-enter__logotext { color: #fff; font-family: "Times New Roman", serif; font-size: 46px; letter-spacing: .08em; }
.qc-enter__warn {
  color: #fff; font-size: 12px; line-height: 1.85; letter-spacing: .02em;
  max-width: 420px; margin: 0 auto 24px;
  text-shadow: 0 1px 2px rgba(120,90,150,.35);
}

.qc-enter__btns { display: flex; gap: 14px; justify-content: center; max-width: 420px; margin: 0 auto; }
.qc-enter__btn {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 8px; border-radius: 4px; text-decoration: none;
  background: rgba(255,255,255,.95); color: var(--qc-deep);
  box-shadow: 0 3px 12px rgba(140,100,170,.25);
  transition: transform .15s, box-shadow .15s;
}
.qc-enter__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(140,100,170,.3); }
.qc-enter__btn .en { font-family: "Times New Roman", serif; font-size: 22px; letter-spacing: .08em; line-height: 1.2; }
.qc-enter__btn .ja { font-size: 11px; margin-top: 4px; color: var(--qc-text-mute); }
.qc-enter__leave { background: rgba(255,255,255,.75); }
.qc-enter__leave .en { color: var(--qc-text-mute); }

/* ENTERページ(=フロント)ではハンバーガー・下部CTA・フッターナビを隠す */
.home .qc-nav-toggle,
.home .qc-cta,
.home .qc-fnav-wrap { display: none; }
.home .qc-main { min-height: 0; }
.home .qc-footer { border-top: 0; }

/* =========================================================
   TOP: FV
   ========================================================= */
.qc-fv {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 72vh; padding: 40px 16px; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.10) 0 1px, transparent 1px 17px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.10) 0 1px, transparent 1px 17px),
    radial-gradient(115% 80% at 50% 46%, rgba(146,104,188,.36) 0%, rgba(146,104,188,0) 60%),
    radial-gradient(90% 60% at 16% 8%, rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(160deg, #dcc6ee 0%, #c8a9e0 45%, #b493d4 100%);
}
/* シルクを横切る光のスイープ */
.qc-fv::before {
  content: ""; position: absolute; top: -50%; left: 22%; z-index: 1;
  width: 55%; height: 200%; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.20), rgba(255,255,255,0));
  transform: rotate(18deg);
}
/* きらめき（ボケ玉／グリッター・微トゥインクル） */
.qc-fv::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle 2.4px at 12% 22%, #fff, transparent),
    radial-gradient(circle 1.6px at 22% 68%, rgba(255,255,255,.9), transparent),
    radial-gradient(circle 2px   at 34% 40%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 1.3px at 44% 80%, rgba(255,255,255,.8), transparent),
    radial-gradient(circle 2.6px at 58% 26%, #fff, transparent),
    radial-gradient(circle 1.5px at 64% 62%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 2px   at 76% 44%, rgba(255,255,255,.9), transparent),
    radial-gradient(circle 1.4px at 84% 74%, rgba(255,255,255,.8), transparent),
    radial-gradient(circle 2.2px at 90% 30%, #fff, transparent),
    radial-gradient(circle 1.6px at 50% 12%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 1.8px at 16% 48%, rgba(255,255,255,.85), transparent),
    radial-gradient(circle 1.5px at 70% 86%, rgba(255,255,255,.8), transparent);
}
/* 漂うボケ玉（静止） */
.qc-fv__orbs {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle 26px at 20% 30%, rgba(255,255,255,.16), transparent),
    radial-gradient(circle 34px at 78% 62%, rgba(255,246,252,.14), transparent),
    radial-gradient(circle 20px at 60% 20%, rgba(255,255,255,.12), transparent),
    radial-gradient(circle 16px at 40% 78%, rgba(255,255,255,.12), transparent);
}
.qc-fv__logo { position: relative; z-index: 3; }
.qc-fv__logo img {
  width: 100%; max-width: 300px; height: auto;
  filter: drop-shadow(0 2px 7px rgba(96,62,132,.42));
}
.qc-fv__logotext { color: #fff; font-family: "Times New Roman", serif; font-size: 44px; letter-spacing: .08em; }

.qc-top { padding: 8px 12px 32px; }

/* FV下バナー */
.qc-banners { display: flex; flex-direction: column; gap: 8px; padding: 14px 12px 0; }
.qc-banner { display: block; line-height: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 6px rgba(155,124,184,.18); }
.qc-banner img { width: 100%; height: auto; display: block; }
.qc-banner:hover { opacity: .9; }
/* ENTERページ内のバナー（ボタン下） */
.qc-banners--enter { padding: 22px 0 0; }

/* セクション */
.qc-sec { margin-top: 30px; }
.qc-empty { text-align: center; color: var(--qc-text-mute); font-size: 13px; padding: 22px 0; }

/* グリッド */
.qc-grid { display: grid; gap: 8px; }
.qc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* =========================================================
   キャストカード
   ========================================================= */
.qc-card { display: block; min-width: 0; text-decoration: none; color: var(--qc-text); }
.qc-card__thumb {
  position: relative; width: 100%; padding-top: 130%;
  background-size: cover; background-position: center top;
  background-color: var(--qc-base-tint);
  border: 1px solid var(--qc-line); border-radius: 3px; overflow: hidden;
}
.qc-card__noimg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--qc-text-mute); font-size: 11px;
}
.qc-card__badges { position: absolute; left: 4px; bottom: 4px; display: flex; flex-wrap: wrap; gap: 3px; }
.qc-badge { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 2px; line-height: 1.4; }
.qc-badge.is-new   { background: #e8697c; color: #fff; }
.qc-badge.is-photo { background: #b7e4c7; color: #2f6b47; }
.qc-badge.is-tag   { background: #d4bae4; color: #6a4a86; }
.qc-card__rank {
  position: absolute; top: 0; left: 0; padding: 3px 8px 4px;
  background: linear-gradient(135deg, var(--qc-deep), var(--qc-lavender)); color: #fff;
  font-size: 9px; letter-spacing: .05em; border-bottom-right-radius: 6px;
}
.qc-card__rank em { display: block; font-style: normal; font-size: 12px; font-weight: 700; }
.qc-card__body { padding: 6px 3px 2px; text-align: left; }
.qc-card__name {
  font-size: 10.5px; font-weight: 600; margin: 0; color: var(--qc-text);
  line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.qc-card__time {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  margin: 5px 0 0; padding: 5px 3px;
  background: var(--qc-lavender-lt); color: var(--qc-deep);
  border-radius: 3px;
  font-size: 12px; font-weight: 700; letter-spacing: .01em; line-height: 1.35;
}
.qc-card__time.is-off { background: #f1eff4; color: #a9a2b0; font-weight: 500; }
.qc-card__specs { font-size: 10px; color: var(--qc-text-mute); margin: 3px 0 0; line-height: 1.5; }

/* 店舗情報 */
.qc-shopname { text-align: center; color: var(--qc-deep); font-weight: 600; font-size: 14px; margin: 4px 0 14px; }
.qc-shoptable { margin: 0; font-size: 13px; }
.qc-shoptable dt { color: var(--qc-text-mute); font-size: 11px; padding: 12px 4px 2px; border-top: 1px solid var(--qc-line); }
.qc-shoptable dd { margin: 0 0 8px; padding: 0 4px 8px; }
.qc-shoptable dd a { color: var(--qc-deep); }

/* =========================================================
   ページタイトル帯（CAST / SYSTEM / PROFILE）
   ========================================================= */
.qc-page-title {
  background: linear-gradient(135deg, var(--qc-deep), var(--qc-lavender));
  color: #fff; text-align: center; padding: 16px 10px;
}
.qc-page-title__en {
  display: block; font-family: "Times New Roman", "Georgia", serif;
  font-size: 26px; letter-spacing: .08em; line-height: 1.2;
}
.qc-page-title__ja { display: block; font-size: 12px; letter-spacing: .1em; margin-top: 2px; }

/* 在籍一覧 */
.qc-archive { padding: 16px 12px 32px; }

/* =========================================================
   プロフィール
   ========================================================= */
.qc-profile { padding: 0 0 32px; }

/* 写真スライダー */
.qc-slider { position: relative; overflow: hidden; background: var(--qc-base-tint); }
.qc-slider__track { display: flex; transition: transform .3s ease; touch-action: pan-y; cursor: grab; }
.qc-slider__track:active { cursor: grabbing; }
.qc-slider__slide { flex: 0 0 100%; }
.qc-slider__slide img { display: block; width: 100%; height: auto; -webkit-user-drag: none; user-select: none; pointer-events: none; }

/* インジケーター（ドット） */
.qc-slider__dots {
  position: absolute; left: 0; right: 0; bottom: 8px; z-index: 2;
  display: flex; justify-content: center; gap: 6px; pointer-events: auto;
}
.qc-slider__dots button {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.6); box-shadow: 0 0 2px rgba(0,0,0,.25);
}
.qc-slider__dots button.is-active { background: #fff; }
.qc-slider__noimg { display: flex; align-items: center; justify-content: center; height: 360px; color: var(--qc-text-mute); }
.qc-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 46px; border: 0; cursor: pointer;
  background: rgba(155,124,184,.55); color: #fff; font-size: 16px;
}
.qc-slider__prev { left: 0; } .qc-slider__next { right: 0; }

/* 名前・スペック */
.qc-prof-head { text-align: center; padding: 16px 12px 8px; }
.qc-prof-name { font-size: 22px; margin: 0 0 6px; color: var(--qc-text); }
.qc-prof-spec { font-size: 13px; color: var(--qc-text-mute); margin: 2px 0; }

/* 週間スケジュール */
.qc-prof-sche { margin: 14px 12px; border: 1px solid var(--qc-line); border-radius: 4px; overflow: hidden; }
.qc-prof-sche__row { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; border-bottom: 1px solid var(--qc-line); font-size: 13px; }
.qc-prof-sche__row:last-child { border-bottom: 0; }
.qc-prof-sche__row.is-today { background: var(--qc-base-tint); }
.qc-prof-sche__day { color: var(--qc-deep); }
.qc-prof-sche__time { color: var(--qc-text); }

/* 詳細表 */
.qc-prof-table { margin: 18px 12px; font-size: 13px; }
.qc-prof-table dt { background: var(--qc-base-tint); color: var(--qc-deep); font-size: 11px; padding: 8px 12px; }
.qc-prof-table dd { margin: 0; padding: 9px 12px; border-bottom: 1px solid var(--qc-line); }

/* 紹介文 */
.qc-prof-intro { padding: 6px 14px 8px; font-size: 13px; line-height: 1.95; color: var(--qc-text); }
.qc-prof-intro__catch { color: var(--qc-deep); font-weight: 600; margin: 0 0 10px; }

/* 対応オプション */
.qc-prof-opt { margin-top: 24px; }
.qc-optlist { list-style: none; margin: 12px 12px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.qc-optlist__item {
  border: 1px solid var(--qc-lavender); border-radius: 3px;
  padding: 9px 6px; text-align: center; font-size: 12px; color: var(--qc-deep);
}
.qc-optlist__item.is-off { color: #cfcfcf; border-color: #eee; background: #fafafa; }

/* =========================================================
   料金システム
   ========================================================= */
.qc-system { padding: 8px 12px 32px; }
.qc-price { margin: 8px 0 0; }
.qc-price__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 6px; border-bottom: 1px solid var(--qc-line);
}
.qc-price__row dt { margin: 0; color: var(--qc-text); font-size: 14px; }
.qc-price__row dd { margin: 0; color: var(--qc-deep); font-weight: 600; font-size: 15px; }
.qc-notes { font-size: 11px; color: var(--qc-text-mute); line-height: 1.9; margin: 12px 0 0; }
.qc-banlist { list-style: none; margin: 8px 0 0; padding: 0; }
.qc-banlist li {
  position: relative; padding: 8px 6px 8px 22px; font-size: 13px;
  border-bottom: 1px dashed var(--qc-line); color: var(--qc-text);
}
.qc-banlist li::before {
  content: "◆"; position: absolute; left: 4px; top: 8px;
  color: var(--qc-lavender); font-size: 11px;
}

/* スマホ: FVを低めに（PCは72vhのまま） */
@media (max-width: 767px) {
  .qc-fv { min-height: 48vh; padding: 28px 16px; }
}

@media (min-width: 720px) {
  .qc-enter__logo img { max-width: 340px; }
  .qc-fv__logo img { max-width: 340px; }
}
