/* ---------- カラートークン（既存サイトから抽出） ---------- */
:root {
    /* ブランドカラー */
    --bc-pink:        #E9547B;
    --bc-pink-light:  #F5B7C7;
    --bc-pink-bg:     #FDF0F4;
    --bc-pink-pale:   #FDF7F9;
    --bc-pink-deep:   #C2185B;

    --bc-purple:      #8B5A9F;
    --bc-purple-deep: #6A4378;
    --bc-gold-accent: #FFD54F;

    --bc-cyan:        #4FC3D9;
    --bc-cyan-deep:   #2FA8C4;

    --bc-mint:        #5FC9A6;
    --bc-mint-deep:   #3FA888;

    --bc-beige:       #D4B88A;
    --bc-beige-deep:  #B89968;
    --bc-beige-bg:    #FAF6EE;
    --bc-cream:       #FFF9E6;

    --bc-gold:        #C9A961;

    --bc-gray-bg:     #5A5A5A;
    --bc-gray-bg-d:   #4A4A4A;
    --bc-text:        #333;
    --bc-text-light:  #666;
    --bc-line:        #E8DCC0;

    /* タイポグラフィ */
    --bc-font-jp: "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    --bc-font-gothic: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, Meiryo, sans-serif;
}

/* ---------- 基本リセット（既存サイトに組み込む際は該当行を削除） ---------- */
.bc-flyer-wrap *,
.bc-flyer-wrap *::before,
.bc-flyer-wrap *::after {
    box-sizing: border-box;
}
.bc-flyer-wrap {
    font-family: var(--bc-font-gothic);
    font-size: 14px;
    line-height: 1.9;
    color: var(--bc-text);
    background: #fff;
}
.bc-flyer-wrap img { max-width: 100%; height: auto; vertical-align: bottom; display: block; }
.bc-flyer-wrap a { color: inherit; text-decoration: none; }
.bc-flyer-wrap ul { list-style: none; padding: 0; margin: 0; }
.bc-flyer-wrap p { margin: 0; }

/* ---------- セクション共通のラッパー ---------- */
.bc-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================================
   大見出し：パープルバー (既存サイトの「眉アートメイク 施術の流れ」「副作用とリスク」等と同じ仕様)
   上下に細いバンド＋本体＋下向き三角の装飾
   ============================================================= */
.bc-title-purple {
    position: relative;
    margin: 60px 0 50px;
    text-align: center;
    color: #fff;
}
.bc-title-purple::before {
    /* 上下の細いバンドと中央の太バーを一気にグラデで表現 */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(180deg,
            #9B72AE 0, #9B72AE 6px,
            transparent 6px, transparent 14px,
            #A47AB6 14px, var(--bc-purple) 50%, var(--bc-purple-deep) calc(100% - 14px),
            transparent calc(100% - 14px), transparent calc(100% - 6px),
            #9B72AE calc(100% - 6px), #9B72AE 100%
        );
    z-index: 0;
}
.bc-title-purple > * {
    position: relative;
    z-index: 1;
}
.bc-title-purple h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin: 0;
    padding: 30px 20px 8px;
    font-family: var(--bc-font-jp);
}
.bc-title-purple .en {
    display: block;
    font-size: 13px;
    font-style: italic;
    color: var(--bc-gold-accent);
    padding-bottom: 30px;
    letter-spacing: 0.3em;
    font-family: var(--bc-font-gothic);
}
/* 下向き三角（下のバンドからはみ出す形） */
.bc-title-purple::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--bc-purple-deep);
    z-index: 2;
}

/* =============================================================
   中見出し：水色グラデーションバー (既存サイトの料金表セクション大見出し)
   ============================================================= */
.bc-title-cyan {
    background: linear-gradient(90deg, var(--bc-cyan) 0%, var(--bc-cyan-deep) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 14px 20px;
    letter-spacing: 0.1em;
    margin: 40px 0 0;
    font-family: var(--bc-font-gothic);
}
.bc-title-cyan.with-desc { margin-bottom: 0; }
.bc-title-cyan .sub {
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    margin-left: 10px;
    letter-spacing: 0.05em;
}

/* =============================================================
   小見出し（ピンクラベル型：既存サイトのセクションラベル）
   ============================================================= */
.bc-label-pink {
    display: inline-block;
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 24px 6px 18px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    letter-spacing: 0.08em;
}

/* =============================================================
   ■ 1面：表紙セクション
   ============================================================= */
.bc-cover {
    padding: 40px 0 20px;
    background: linear-gradient(180deg, #FFF 0%, #FDF7F9 100%);
}

/* キャンペーンバナー */
.bc-campaign {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #FCEEF3 0%, #F8D5E0 100%);
    border: 1px solid var(--bc-pink-light);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 40px;
}
.bc-campaign-photo {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #EEE;
}
.bc-campaign-photo img { width: 100%; height: 100%; object-fit: cover; }
.bc-campaign-body { text-align: center; }
.bc-campaign-body .period {
    display: inline-block;
    background: #fff;
    color: var(--bc-pink);
    font-size: 12px;
    font-weight: bold;
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.bc-campaign-body h3 {
    font-size: 18px;
    color: var(--bc-pink-deep);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.bc-campaign-body h3 .time {
    font-size: 13px;
    color: var(--bc-text-light);
    margin-left: 4px;
}
.bc-campaign-body .price {
    font-family: var(--bc-font-gothic);
    font-size: 40px;
    font-weight: 900;
    color: var(--bc-pink);
    letter-spacing: 0.02em;
    line-height: 1;
}
.bc-campaign-body .price .strike {
    display: inline-block;
    font-size: 22px;
    color: #999;
    text-decoration: line-through;
    font-weight: bold;
    margin-right: 6px;
}
.bc-campaign-body .price .free {
    font-size: 26px;
    color: var(--bc-pink);
    margin-left: 6px;
}

/* 施術シーン + 3つの強み レイアウト */
.bc-cover-main {
display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}
.bc-cover-photo {
    position: relative;
    max-width: 490px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(233, 84, 123, 0.1);
}
.bc-cover-photo img { width: 100%; height: 100%; object-fit: cover; }
.bc-cover-lead h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--bc-pink-deep);
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: var(--bc-font-jp);
    letter-spacing: 0.03em;
}
.bc-cover-lead h2 .name {
    font-size: 40px;
    color: var(--bc-pink);
}
.bc-cover-lead .note {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}
.bc-cover-lead p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--bc-text-light);
}

/* 3つの強みメダル */
.bc-strengths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.bc-strength {
    position: relative;
    background: radial-gradient(circle at 30% 30%, #FFE8EF 0%, #F8BBD0 55%, #E89AB5 100%);
    border: 3px solid var(--bc-gold);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(201, 169, 97, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.5);
}
.bc-strength::before {
    content: "★ ★ ★";
    color: var(--bc-gold);
    font-size: 13px;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}
.bc-strength .text {
    font-size: 26px;
    font-weight: bold;
    color: var(--bc-pink-deep);
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.bc-strength .text .big {
    display: inline-block;
    font-size: 22px;
    color: var(--bc-pink);
    line-height: 1;
    margin: 2px 0;
}
.bc-strength .quality {
    position: absolute;
    bottom: 14%;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--bc-gold);
    font-weight: bold;
}

.wsite{
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.wsite span{
  font-size: 24px;
  
}

/* QRコードブロック */
.bc-qr-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--bc-pink-light);
    border-radius: 6px;
    padding: 12px 18px;
    max-width: none;
    margin-top: 20px;
    width: 60%;
}
.bc-qr-wrap .qr-img {
    width: 70px;
    height: 70px;
    background: #F5F5F5;
    border: 1px solid #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAA;
    font-size: 10px;
    flex-shrink: 0;
}
.bc-qr-wrap .qr-img img { width: 100%; height: 100%; object-fit: contain; }
.bc-qr-wrap .qr-text {
    font-size: 13px;
    color: var(--bc-text);
    line-height: 1.6;
}
.bc-qr-wrap .qr-text .arrow {
    color: var(--bc-pink);
    font-weight: bold;
}

/* BEFORE/AFTER セクション */
.bc-ba-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    /* margin: 30px 0 40px; */
}
.bc-ba {
    background: #fff;
    border: 1px solid var(--bc-pink-light);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.bc-ba-cat {
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    padding: 9px 8px;
    letter-spacing: 0.06em;
}
.bc-ba-inner { padding: 12px; }
.bc-ba-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #F5F5F5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}
.bc-ba-photo:last-child { margin-bottom: 0; }
.bc-ba-photo img { width: 100%; height: 100%; object-fit: cover; }
.bc-ba-photo .tag {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.1em;
}
.bc-ba-photo.is-after .tag { background: var(--bc-pink); }
.bc-ba-arrow {
    text-align: center;
    color: var(--bc-pink);
    font-size: 16px;
    line-height: 1;
    margin: 6px 0;
}

/* 中面誘導バナー */
.bc-inner-banner {
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 18px;
    border-radius: 4px;
    margin: 0px 0 10px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(233, 84, 123, 0.22);
    position: relative;
}
.bc-inner-banner::after {
    content: "▼";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bc-pink);
    font-size: 16px;
}

/* =============================================================
   ■ 2面：中面セクション（Introduction & こだわり）
   ============================================================= */
.bc-inner {
    padding: 30px 0;
}

/* Introduction ブロック（ゴールドライン枠） */
.bc-intro {
    background: linear-gradient(180deg, #FFFDF8 0%, #FFF8ED 100%);
    border: 1px solid #F0E4D0;
    border-radius: 8px;
    padding: 36px 40px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 3px 14px rgba(200, 170, 110, 0.12);
}

.bc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 220px 1.3fr;
    gap: 30px;
    align-items: center;
}
.bc-intro-label {
    text-align: center;
    padding-right: 10px;
    border-right: 1px dashed var(--bc-pink-light);
}
.bc-intro-label .en {
    font-style: italic;
    font-size: 36px;
    color: var(--bc-pink);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 400;
}
.bc-intro-label .role {
    font-size: 13px;
    color: var(--bc-text-light);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: var(--bc-font-gothic);
}
.bc-intro-label .name {
    font-size: 30px;
    color: var(--bc-pink-deep);
    font-family: var(--bc-font-jp);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 500;
}
.bc-intro-label .name-en {
    font-size: 11px;
    color: #B49B8C;
    letter-spacing: 0.3em;
    font-style: italic;
}
.bc-intro-photo {
    aspect-ratio: 4 / 4;
    background: #F5F5F5;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.bc-intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.bc-intro-desc {
    font-size: 14px;
    line-height: 2;
    color: var(--bc-text);
}

/* こだわり／紹介の繰り返しブロック */
.bc-feature {
    margin-bottom: 28px;
}
.bc-feature-head {
    border-bottom: 1px dashed var(--bc-pink-light);
    padding-bottom: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bc-feature-head h3 {
    font-size: 17px;
    color: var(--bc-text);
    font-weight: bold;
    font-family: var(--bc-font-jp);
    letter-spacing: 0.05em;
    margin: 0;
}
.bc-feature-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: flex-start;
}
.bc-feature-body.no-photo { grid-template-columns: 1fr; }
.bc-feature-body p {
    font-size: 14px;
    line-height: 2;
    color: var(--bc-text);
}
.bc-feature-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.bc-feature-photo {
    aspect-ratio: 4 / 3;
    background: #F5F5F5;
    border-radius: 4px;
    overflow: hidden;
}
.bc-feature-photo img { width: 100%; height: 100%; object-fit: cover; }

/* おすすめチェックリスト（既存サイトの水色しずくアイコン風） */
.bc-recommend-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-top: 10px;
}
.bc-recommend-list li {
    position: relative;
    padding: 4px 0 4px 26px;
    font-size: 14px;
    color: var(--bc-text);
    border-bottom: 1px dotted var(--bc-pink-light);
}
.bc-recommend-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #7ED6EC 0%, var(--bc-cyan-deep) 100%);
    border-radius: 50% 50% 50% 0;
    transform: translateY(-50%) rotate(-45deg);
    box-shadow: 0 1px 2px rgba(47, 168, 196, 0.3);
}

/* =============================================================
   お客様の声（手紙 + 封筒） - CSSで再現
   ============================================================= */
.bc-voices-title {
    text-align: center;
    margin: 40px 0 30px;
}
.bc-voices-title h2 {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-family: var(--bc-font-jp);
    color: var(--bc-pink-deep);
    padding: 0 30px;
    letter-spacing: 0.1em;
}
.bc-voices-title h2::before,
.bc-voices-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--bc-pink);
}
.bc-voices-title h2::before { left: -30px; }
.bc-voices-title h2::after  { right: -30px; }
.bc-voices-title .en {
    display: block;
    font-size: 12px;
    color: var(--bc-pink);
    font-style: italic;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

.bc-voices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
    margin: 40px 0 60px;
    padding: 10px 20px 40px;
}

/* ---- 封筒＋手紙の合成（改良版） ---- */
/* 外側：封筒の土台と手紙を重ねるための relative container */
.bc-voice {
    position: relative;
    padding: 40px 20px 30px 20px;
}

/* 封筒本体（台形ベース） */
.bc-voice .bc-envelope {
    position: absolute;
    top: 25px;
    left: -8px;
    width: calc(100% + 30px);
    height: calc(100% - 40px);
    background: linear-gradient(135deg, #F5BFC9 0%, #F0A8B8 50%, #EA95A8 100%);
    border-radius: 3px;
    transform: rotate(-4deg);
    box-shadow:
        0 6px 20px rgba(220, 120, 140, 0.25),
        inset 0 -20px 30px rgba(180, 80, 100, 0.08);
    z-index: 0;
}
/* 封筒のフラップ（下側、両サイドから中央に傾斜） */
.bc-voice .bc-envelope::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, rgba(180, 80, 100, 0.08) 100%);
    clip-path: polygon(0 0, 100% 0, 50% 75%);
}
/* 封筒の開いたフラップ（上側） */
.bc-voice .bc-envelope::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 40%;
    background: linear-gradient(180deg, #EA95A8 0%, #F0A8B8 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* 2つ目の封筒は傾きと色を変える */
.bc-voice:nth-child(2) .bc-envelope {
    transform: rotate(3deg);
    background: linear-gradient(135deg, #F8CFD9 0%, #F2B9C6 50%, #EEA5B5 100%);
    left: -22px;
}
.bc-voice:nth-child(2) .bc-envelope::after {
    background: linear-gradient(180deg, #EEA5B5 0%, #F2B9C6 100%);
}

/* 手紙本体 */
.bc-voice-letter {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, #FFFEF9 0%, #FEF9EE 100%);
    padding: 30px 26px 28px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transform: rotate(-1.5deg);
    font-family: "Klee One", "Yuji Syuku", "Kiwi Maru", "Zen Kurenaido", var(--bc-font-jp);
    font-size: 14px;
    line-height: 2;
    color: #4A3A3A;
    min-height: 320px;
    /* 紙の上下にぎざぎざ（ちぎれたような）エッジ */
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0, #000 6px, #000 calc(100% - 6px), transparent 100%);
}
.bc-voice:nth-child(2) .bc-voice-letter {
    transform: rotate(2deg);
}
/* 手紙の内側に罫線（手書き便箋風） */
.bc-voice-letter::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 30px; bottom: 30px;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 27px,
        rgba(200, 130, 150, 0.12) 28px,
        rgba(200, 130, 150, 0.12) 29px
    );
    pointer-events: none;
    z-index: -1;
}
.bc-voice-letter .to {
    font-size: 15px;
    font-weight: bold;
    color: var(--bc-pink-deep);
    margin-bottom: 14px;
    letter-spacing: 0.08em;
}
.bc-voice-letter .photo-circle {
    float: right;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 8px 12px;
    background: #EEE;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bc-voice-letter .photo-circle img {
    width: 100%; height: 100%; object-fit: cover;
}
.bc-voice-letter p { margin-bottom: 8px; }
.bc-voice-letter .underline {
    background: linear-gradient(transparent 65%, #F8B5C5 65%, #F8B5C5 85%, transparent 85%);
    padding: 0 2px;
}

/* =============================================================
   「医療アートメイクのこだわり」6項目
   ============================================================= */
/* 「医療アートメイクのこだわり」タイトル */
.bc-kodawari-title {
    font-size: 30px;
    font-family: var(--bc-font-jp);
    letter-spacing: 0.06em;
    text-align: center;
    margin: 20px 0 40px;
    line-height: 1.3;
    color: #F08030;
    font-weight: 500;
    position: relative;
}
.bc-kodawari-title .orange {
    color: #F08030;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.bc-kodawari-title .kodawari {
    display: inline-block;
    font-size: 48px;
    color: #E85E1C;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-family: "Klee One", "Yuji Syuku", "Kiwi Maru", var(--bc-font-jp);
    margin-left: 12px;
    transform: rotate(-3deg) translateY(-4px);
    text-shadow: 2px 2px 0 rgba(255, 180, 120, 0.3);
}

.bc-kodawari-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-bottom: 40px;
}
.bc-kodawari-item {
    border-bottom: 1px dashed var(--bc-pink-light);
    padding-bottom: 20px;
}
.bc-kodawari-num {
    display: inline-block;
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 18px 4px 14px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.bc-kodawari-item h3 {
    font-size: 17px;
    color: var(--bc-pink-deep);
    font-weight: bold;
    font-family: var(--bc-font-jp);
    line-height: 1.5;
    margin: 0 0 8px;
    letter-spacing: 0.03em;
}
.bc-kodawari-item h3 .em { color: var(--bc-pink); }
.bc-kodawari-item p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--bc-text-light);
}

/* 副作用とリスク（既存サイトのパープルヘッダー型ボックス） */
.bc-risk-box {
    background: var(--bc-cream);
    border-radius: 6px;
    margin: 40px 0;
    overflow: hidden;
    border: 1px solid #F0E6C8;
}
.bc-risk-head {
    background: linear-gradient(90deg, var(--bc-purple) 0%, var(--bc-purple-deep) 100%);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    letter-spacing: 0.1em;
    font-family: var(--bc-font-gothic);
}
.bc-risk-body {
    padding: 20px 24px;
    font-size: 13px;
    line-height: 2;
    color: var(--bc-text);
}
.bc-risk-body dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 4px 0;
    margin: 0;
}
.bc-risk-body dt {
    font-weight: bold;
    color: var(--bc-purple-deep);
}
.bc-risk-body dt::before { content: "【"; }
.bc-risk-body dt::after { content: "】"; }
.bc-risk-body dd { margin: 0; }
.bc-risk-body .note-last {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #DDD;
    color: var(--bc-text-light);
}

/* =============================================================
   ■ 3面：料金表セクション
   ============================================================= */
.bc-price-section { padding: 30px 0; }

.bc-price-lead {
    text-align: center;
    font-size: 16px;
    font-family: var(--bc-font-jp);
    color: var(--bc-text);
  /*   margin: 30px 0 30px; */
    letter-spacing: 0.05em;
}

/* コース大見出しバリエーション */
.bc-title-cyan.pink {
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
}
.bc-title-cyan.mint {
    background: linear-gradient(90deg, var(--bc-mint) 0%, var(--bc-mint-deep) 100%);
}

/* 中見出し（ベージュ） */
.bc-subhead-beige {
    background: linear-gradient(90deg, var(--bc-beige) 0%, var(--bc-beige-deep) 100%);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    letter-spacing: 0.08em;
    margin: 20px 0 0;
}
.bc-subhead-desc {
    background: var(--bc-beige-bg);
    padding: 12px 20px;
    font-size: 13px;
    color: var(--bc-text-light);
    border-left: 1px solid var(--bc-line);
    border-right: 1px solid var(--bc-line);
    margin: 0;
}
.bc-subhead-desc .em { color: var(--bc-pink); font-weight: bold; }

/* メニュー料金カード */
.bc-menu {
    background: #fff;
    border: 1px solid var(--bc-line);
    padding: 20px 22px;
    position: relative;
}
/* メニューカード：写真付きバージョン（眉コースの「2つの手法」で使用） */
.bc-menu.has-photo {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 20px;
    align-items: start;
}
.bc-menu-photo {
    aspect-ratio: 4 / 3;
    background: #F5F5F5;
    border-radius: 4px;
    overflow: hidden;
}
.bc-menu-photo img { width: 100%; height: 100%; object-fit: cover; }

/* 円形アイコン（眉・リップ・アイラインのサンプル） */
.bc-menu-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFF4E5;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.bc-menu-icon img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 0;
}

/* メニュー見出し行（h4 + 円形アイコン） */
.bc-menu-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px dotted var(--bc-beige);
}
.bc-menu-title-row h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--bc-text);
    margin: 0;
    padding: 0;
    border: none;
    font-family: var(--bc-font-jp);
    letter-spacing: 0.03em;
    flex: 1;
}
.bc-menu-title-row h4 small {
    font-size: 11px;
    color: #999;
    font-weight: normal;
    margin-left: 4px;
    display: block;
    margin-top: 2px;
}

.bc-menu h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--bc-text);
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 2px dotted var(--bc-beige);
    font-family: var(--bc-font-jp);
    letter-spacing: 0.03em;
}
.bc-menu h4 small { font-size: 11px; color: #999; font-weight: normal; margin-left: 4px; }
.bc-menu .menu-desc {
    font-size: 13px;
    color: var(--bc-text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}
.bc-menu .menu-desc .em { color: var(--bc-pink); font-weight: bold; }
.bc-menu .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dotted var(--bc-line);
}
.bc-menu .price-row:last-child { border-bottom: none; }
.bc-menu .price-row .row-label {
    font-size: 13px;
    color: var(--bc-text);
}
.bc-menu .price-row .row-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--bc-pink);
    font-family: var(--bc-font-gothic);
}
.bc-menu .price-row .row-price .tax {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
    font-weight: normal;
}

/* 3カラム料金（1つの手法で仕上げる） */
.bc-menu-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

/* リタッチ料金ボックス */
.bc-retouch {
    background: var(--bc-pink-bg);
    border: 1px solid var(--bc-pink-light);
    padding: 16px 20px;
    margin-top: 15px;
}
.bc-retouch .title {
    display: inline-block;
    background: var(--bc-pink);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.bc-retouch ul li {
    font-size: 13px;
    color: var(--bc-text);
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted var(--bc-pink-light);
}
.bc-retouch ul li:last-child { border-bottom: none; }
.bc-retouch ul li::before {
    content: "●";
    color: var(--bc-pink);
    font-size: 9px;
    margin-right: 6px;
    flex-shrink: 0;
}
.bc-retouch .item-label { flex: 1; }
.bc-retouch .item-price {
    color: var(--bc-pink);
    font-weight: bold;
    font-family: var(--bc-font-gothic);
}
.bc-retouch.mint {
    background: #EDF9F4;
    border-color: #C5E8D8;
}
.bc-retouch.mint .title { background: var(--bc-mint-deep); }
.bc-retouch.mint ul li::before { color: var(--bc-mint-deep); }
.bc-retouch.mint .item-price { color: var(--bc-mint-deep); }

/* 注記 */
.bc-notes {
    font-size: 12px;
    color: var(--bc-text-light);
    margin-top: 16px;
    line-height: 1.9;
}
.bc-notes p {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0;
}

/* コースブロック間隔 */
.bc-course-block { margin-bottom: 40px; }

/* =============================================================
   クリニックフッター情報
   ============================================================= */
.bc-clinic {
    background: linear-gradient(135deg, var(--bc-pink-pale) 0%, #FCEEF3 100%);
    border: 2px solid var(--bc-pink-light);
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
}
.bc-clinic-msg {
    background: linear-gradient(90deg, #EC6A8E 0%, var(--bc-pink) 100%);
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
}
.bc-clinic-grid {
    display: grid;
    grid-template-columns: 220px 1fr 150px;
    gap: 24px;
    align-items: center;
}
.bc-clinic-logo { text-align: center; }
.bc-clinic-logo .mark {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    background: var(--bc-purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: var(--bc-font-jp);
}
.bc-clinic-logo .name {
    font-size: 19px;
    font-weight: bold;
    color: var(--bc-purple);
    line-height: 1.3;
    font-family: var(--bc-font-jp);
    letter-spacing: 0.05em;
}
.bc-clinic-logo .name-en {
    font-size: 11px;
    color: #B8A0C8;
    font-style: italic;
    margin-top: 4px;
    letter-spacing: 0.15em;
}
.bc-clinic-logo .payment {
    font-size: 10px;
    color: #999;
    margin-top: 8px;
}

.bc-clinic-details { font-size: 13px; }
.bc-clinic-details .top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--bc-text-light);
}
.bc-clinic-details .tag {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--bc-pink);
    color: var(--bc-pink);
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.bc-clinic-details .tag.purple {
    border-color: var(--bc-purple);
    background: var(--bc-purple);
    color: #fff;
}
.bc-clinic-details .tel-row {
    background: #fff;
    border: 2px solid var(--bc-pink);
    border-radius: 30px;
    padding: 8px 22px;
    display: inline-block;
    margin-bottom: 10px;
}
.bc-clinic-details .tel-label {
    font-size: 11px;
    color: var(--bc-pink);
    font-weight: bold;
    letter-spacing: 0.1em;
}
.bc-clinic-details .tel-num {
    font-size: 24px;
    font-weight: bold;
    color: var(--bc-pink);
    letter-spacing: 0.05em;
    font-family: var(--bc-font-gothic);
}
.bc-clinic-details .address {
    display: block;
    font-size: 12px;
    color: var(--bc-text-light);
    line-height: 1.7;
}

.bc-clinic-line {
    text-align: center;
    background: #fff;
    border: 1px solid var(--bc-pink-light);
    border-radius: 6px;
    padding: 12px 10px;
}
.bc-clinic-line .title {
    font-size: 12px;
    color: #00B900;
    font-weight: bold;
    margin-bottom: 6px;
}
.bc-clinic-line .qr {
    width: 80px;
    height: 80px;
    margin: 0 auto 6px;
    background: #F5F5F5;
    border: 1px solid #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAA;
    font-size: 10px;
}
.bc-clinic-line .qr img { width: 100%; height: 100%; object-fit: contain; }
.bc-clinic-line .id-label {
    font-size: 11px;
    color: var(--bc-text-light);
}
.bc-clinic-line .id {
    font-size: 13px;
    font-weight: bold;
    color: #00B900;
}

/* フッター注記 */
.bc-footer-notes {
    margin: 30px 0;
    padding: 18px 22px;
    background: #FAFAFA;
    border-left: 3px solid var(--bc-beige);
    font-size: 12px;
    color: var(--bc-text-light);
    line-height: 1.9;
    border-radius: 0 4px 4px 0;
}
.bc-footer-notes p {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0 0 4px;
}
.bc-footer-notes p:last-child { margin-bottom: 0; }
.bc-footer-notes p::before {
    content: "●";
    color: var(--bc-beige);
    margin-right: 6px;
    font-size: 10px;
}

/* =============================================================
   レスポンシブ対応
   ============================================================= */

/* 1024px以下：タブレット */
@media (max-width: 1024px) {
    .bc-container { padding: 0 24px; }

    .bc-title-purple h2 { font-size: 21px; }
    .bc-title-cyan { font-size: 17px; }

    /* 表紙 */
    .bc-campaign { grid-template-columns: 1fr 1.3fr; gap: 22px; padding: 22px 24px; }
    .bc-campaign-body .price { font-size: 34px; }

    .bc-cover-main { grid-template-columns: 1fr 1fr; gap: 30px; }
    .bc-cover-lead h2 { font-size: 20px; }
    .bc-cover-lead h2 .name { font-size: 26px; }

    .bc-strengths { gap: 12px; }
    .bc-strength .text { font-size: 13px; }
    .bc-strength .text .big { font-size: 20px; }

    /* 中面 */
    .bc-intro-grid { grid-template-columns: 160px 180px 1fr; gap: 20px; }
    .bc-intro-label .en { font-size: 26px; }
    .bc-intro-label .name { font-size: 24px; }

    .bc-feature-body { grid-template-columns: 1fr 240px; gap: 20px; }

    .bc-kodawari-title { font-size: 24px; }
    .bc-kodawari-title .kodawari { font-size: 36px; }

    .bc-voices { gap: 24px; }

    /* 料金 */
    .bc-menu-3col { gap: 12px; }
    .bc-menu { padding: 16px; }
    .bc-menu.has-photo { grid-template-columns: 1fr 180px; gap: 14px; }
    .bc-menu h4 { font-size: 15px; }
    .bc-menu-title-row h4 { font-size: 15px; }
    .bc-menu-icon { width: 60px; height: 60px; }
    .bc-menu .price-row .row-price { font-size: 18px; }

    /* クリニック */
    .bc-clinic-grid { grid-template-columns: 1fr 1.3fr 140px; gap: 18px; }
}

/* 599px以下：スマートフォン */
@media (max-width: 599px) {
    .bc-flyer-wrap { font-size: 13px; }
    .bc-container { padding: 0 16px; }

    .bc-title-purple { padding: 18px 14px 20px; margin: 40px 0 36px; }
    .bc-title-purple h2 { font-size: 18px; letter-spacing: 0.1em; }
    .bc-title-purple .en { font-size: 11px; letter-spacing: 0.2em; }

    .bc-title-cyan { font-size: 15px; padding: 12px 14px; letter-spacing: 0.06em; }
    .bc-title-cyan .sub { display: block; margin-left: 0; margin-top: 4px; font-size: 12px; }

    /* ---- 表紙 ---- */
    .bc-campaign {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 18px;
    }
    .bc-campaign-photo { aspect-ratio: 16 / 9; }
    .bc-campaign-body h3 { font-size: 16px; }
    .bc-campaign-body .price { font-size: 30px; }
    .bc-campaign-body .price .strike { font-size: 18px; }
    .bc-campaign-body .price .free { font-size: 22px; }

    .bc-cover-main { grid-template-columns: 1fr; gap: 20px; }
    .bc-cover-lead h2 { font-size: 18px; text-align: center; }
    .bc-cover-lead h2 .name { font-size: 22px; }
    .bc-cover-lead p { font-size: 13px; }

    .bc-strengths {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .bc-strength {
        aspect-ratio: auto;
        border-radius: 10px;
        padding: 18px 20px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        text-align: left;
    }
    .bc-strength::before {
        margin-bottom: 0;
        font-size: 12px;
    }
    .bc-strength .text { flex: 1; font-size: 14px; }
    .bc-strength .text .big { font-size: 20px; }
    .bc-strength .quality { position: static; margin-left: auto; }

    .bc-qr-wrap { max-width: 100%; }

    .bc-ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bc-ba-cat { font-size: 12px; padding: 7px 4px; }
    .bc-ba-inner { padding: 8px; }

    .bc-inner-banner { font-size: 15px; padding: 14px; letter-spacing: 0.05em; }

    /* ---- 中面 ---- */
    .bc-intro { padding: 22px 18px; }
    .bc-intro-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .bc-intro-label .en { font-size: 26px; }
    .bc-intro-label .name { font-size: 26px; }
    .bc-intro-photo { max-width: 200px; margin: 0 auto; aspect-ratio: 1 / 1.1; }
    .bc-intro-desc { font-size: 13px; text-align: left; }

    .bc-feature-body { grid-template-columns: 1fr; gap: 16px; }
    .bc-feature-body p { font-size: 13px; line-height: 1.9; }
    .bc-feature-head h3 { font-size: 15px; }

    .bc-recommend-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    /* お客様の声 */
    .bc-voices-title h2 { font-size: 19px; padding: 0 20px; }
    .bc-voices-title h2::before,
    .bc-voices-title h2::after { width: 20px; }
    .bc-voices-title h2::before { left: -20px; }
    .bc-voices-title h2::after { right: -20px; }

    .bc-voices {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bc-voice-letter {
        padding: 22px 18px 20px;
        font-size: 13px;
        line-height: 1.95;
        min-height: 280px;
    }
    .bc-voice-letter .photo-circle { width: 70px; height: 70px; }
    .bc-voice-letter .to { font-size: 14px; }

    /* こだわり */
    .bc-kodawari-title { font-size: 19px; line-height: 1.5; }
    .bc-kodawari-title .kodawari {
        font-size: 28px;
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    .bc-kodawari-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .bc-kodawari-item h3 { font-size: 15px; }
    .bc-kodawari-item p { font-size: 13px; }

    .bc-risk-body { padding: 16px 18px; font-size: 12px; }
    .bc-risk-body dl { grid-template-columns: 100px 1fr; }

    /* ---- 料金 ---- */
    .bc-price-lead { font-size: 14px; margin: 20px 0; }
    .bc-menu-3col { grid-template-columns: 1fr; gap: 12px; }
    .bc-menu { padding: 16px; }
    .bc-menu.has-photo { grid-template-columns: 1fr; gap: 12px; }
    .bc-menu-photo { max-width: 260px; margin: 0 auto; }
    .bc-menu h4 { font-size: 15px; }
    .bc-menu-title-row { flex-wrap: wrap; }
    .bc-menu-title-row h4 { font-size: 15px; }
    .bc-menu-icon { width: 54px; height: 54px; }
    .bc-menu .price-row { flex-wrap: wrap; }
    .bc-menu .price-row .row-price { font-size: 18px; }

    .bc-retouch { padding: 14px 16px; }
    .bc-retouch ul li {
        flex-wrap: wrap;
        font-size: 12px;
    }

    /* クリニック */
    .bc-clinic { padding: 20px 18px; }
    .bc-clinic-msg { font-size: 14px; padding: 10px; }
    .bc-clinic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .bc-clinic-details { text-align: center; }
    .bc-clinic-details .top-row { justify-content: center; }
    .bc-clinic-details .tel-num { font-size: 22px; }
    .bc-clinic-line { max-width: 200px; margin: 0 auto; }

    .bc-footer-notes { padding: 14px 16px; font-size: 11px; }
}

.lp-merit.mti-0{
  margin-top: 0px !Important;
}

.bc-price-section.pti-0{
  padding-top: 0px !Important;
}

.pti-0-02{
  padding-top: 0px !Important;
}

/* 使用しているCSS変数（既存サイトのトークンに合わせてください） */
/*
    --bc-purple:      #8B5A9F;
    --bc-purple-deep: #6A4378;
    --bc-cream:       #FFF9E6;
    --bc-text:        #333;
    --bc-text-light:  #666;
    --bc-font-gothic: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, Meiryo, sans-serif;
*/
 
/* 副作用とリスク本体 */
.bc-risk-box {
    background: var(--bc-cream);
    border: 1px solid #F0E6C8;
    border-radius: 6px;
    margin: 40px 0;
    position: relative;
}
 
/* パープル見出し */
.bc-risk-head {
    background: linear-gradient(90deg, var(--bc-purple) 0%, var(--bc-purple-deep) 100%);
    color: #fff;
    font-family: var(--bc-font-gothic);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 10px;
    border-radius: 6px 6px 0 0;
}
 
/* 本文エリア（右下に女性画像が入る分、右パディング確保） */
.bc-risk-body {
    padding: 20px 24px;
    padding-right: 180px;
    min-height: 200px;
    font-size: 13px;
    line-height: 2;
    color: var(--bc-text);
}
 
/* 項目リスト（dt:dd の2カラムグリッド） */
.bc-risk-body dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 4px 0;
    margin: 0;
}
.bc-risk-body dt {
    font-weight: bold;
    color: var(--bc-purple-deep);
}
.bc-risk-body dt::before { content: "【"; }
.bc-risk-body dt::after  { content: "】"; }
.bc-risk-body dd { margin: 0; }
 
/* 最下部の注意書き */
.bc-risk-body .note-last {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #DDD;
    color: var(--bc-text-light);
}
 
/* 右下の女性画像（枠からはみ出す配置） */
.bc-risk-model {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 180px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
.bc-risk-model img {
    width: 100%;
    height: auto;
    display: block;
}
 
 
/* ===== レスポンシブ対応 ===== */
 
/* 1024px以下：タブレット */
@media (max-width: 1024px) {
    .bc-risk-body { padding-right: 150px; }
    .bc-risk-model { width: 150px; }
}
 
/* 599px以下：スマートフォン */
@media (max-width: 599px) {
    .bc-risk-box { padding-bottom: 90px; position: relative; }
    .bc-risk-body {
        padding: 16px 18px;
        padding-right: 18px;
        font-size: 12px;
        min-height: 0;
    }
    .bc-risk-body dl { grid-template-columns: 100px 1fr; }
    /* 注意書きと画像が横並びになるので、注意書きの右側を確保 */
    .bc-risk-body .note-last { padding-right: 110px; }
    /* 女性画像はボックス右下に控えめに配置 */
    .bc-risk-model {
        width: 120px;
        right: 8px;
        bottom: 0;
    }
}

#artmaketest .lp-mainvisual-inner:before{
  padding-top: 65%;
}

@media screen and (max-width:599px) {
#artmaketest .lp-mainvisual-inner:before{
  padding-top: 95%;
} 

.bc-cover-photo{
  margin-left: auto;
  margin-right: auto;
}

.bc-cover-lead{
    width: 96%;
    margin: auto;  
}

    .bc-qr-wrap {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        width: 80%;
    }
}

/* ---- 開催日告知ブロック ---- */
.bc-schedule {
    background: linear-gradient(135deg, #FDF7F9 0%, #FCEEF3 100%);
    border: 2px solid var(--bc-pink-light, #F5B7C7);
    border-radius: 10px;
    padding: 30px 30px 26px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 3px 14px rgba(233, 84, 123, 0.08);
}
/* ゴールドのアクセントライン */
.bc-schedule::before {
    content: "";
    position: absolute;
    top: -1px; left: 30px; right: 30px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--bc-gold, #C9A961) 20%,
        #E8C878 50%,
        var(--bc-gold, #C9A961) 80%,
        transparent 100%);
}
 
/* 見出しエリア */
.bc-schedule-head {
    text-align: center;
    margin-bottom: 22px;
}
.bc-schedule-label {
    display: inline-block;
    font-style: italic;
    font-size: 24px;
    color: var(--bc-pink, #E9547B);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 400;
}
.bc-schedule-title {
    font-size: 20px;
    color: var(--bc-pink-deep, #C2185B);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 0;
}
.bc-schedule-month {
    font-size: 38px;
    color: var(--bc-pink, #E9547B) !Important;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    margin-right: 2px;
}
.bc-schedule-month small {
    font-size: 18px;
    margin-left: 2px;
}
 
/* 日付リスト（4つ横並び） */
.bc-schedule-dates {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.bc-schedule-dates li {
    background: #fff;
    border: 1px solid var(--bc-pink-light, #F5B7C7);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bc-schedule-dates li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 84, 123, 0.15);
}
/* 日付を強調 */
.bc-schedule-day {
    font-family: var(--bc-font-gothic, sans-serif);
    font-size: 36px;
    font-weight: bold;
    color: var(--bc-pink, #E9547B);
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
}
.bc-schedule-unit {
    font-size: 13px;
    color: var(--bc-pink, #E9547B);
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 6px;
}
.bc-schedule-weekday {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    background: var(--bc-pink, #E9547B);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
 
/* 注意書き */
.bc-schedule-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.7;
    margin: 0;
}
 
/* スマホ表示制御 */
.bc-sp-only { display: none; }
 
 
/* ===== レスポンシブ対応 ===== */
 
/* 1024px以下：タブレット */
@media (max-width: 1024px) {
    .bc-schedule { padding: 26px 22px 22px; }
    .bc-schedule-title { font-size: 18px; }
    .bc-schedule-month { font-size: 34px; }
    .bc-schedule-dates { gap: 10px; }
    .bc-schedule-day { font-size: 32px; }
}
 
/* 599px以下：スマートフォン */
@media (max-width: 599px) {
    .bc-schedule {
        padding: 24px 16px 20px;
        margin: 30px 0;
    }
    .bc-schedule::before { left: 16px; right: 16px; }
 
    .bc-schedule-label { font-size: 20px; }
    .bc-schedule-title { font-size: 16px; line-height: 1.5; }
    .bc-schedule-month { font-size: 30px; }
    .bc-schedule-month small { font-size: 15px; }
 
    .bc-sp-only { display: inline; }
 
    /* スマホでは2列×2行の配置 */
    .bc-schedule-dates {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bc-schedule-dates li { padding: 12px 8px; }
    .bc-schedule-day { font-size: 30px; }
    .bc-schedule-unit { font-size: 12px; margin-top: 2px; margin-bottom: 4px; }
    .bc-schedule-weekday { font-size: 10px; padding: 2px 7px; }
 
    .bc-schedule-note { font-size: 11px; }
}

.schedule.pti-0{
  padding-top: 0px;
}

.schedule.pbi-0{
  padding-bottom: 0px;
}
