        /* フォントウェイトを追加して表現力を向上 */
        @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Manrope:wght@200;300;400;500&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap');
        
        :root {
            --color-bg: #0d0d12; /* 真っ黒ではなく、ごく僅かに浮かせることで高級感を出す */
            --color-text-main: #f4f4f5;
            --color-primary: #9e314b;
            --color-accent: #d08c49;
            --color-border: rgba(255, 255, 255, 0.08);
            --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
            --film-glow-color: #d08c49;
            --film-glow-light: #ffce99;
            --film-glow-shadow:
                0 0 1px var(--film-glow-light),
                0 0 3px var(--film-glow-color),
                0 0 8px rgba(208, 140, 73, 0.82),
                0 0 14px rgba(208, 140, 73, 0.28);
        }

        body { 
            background-color: var(--color-bg); 
            color: var(--color-text-main); 
            font-family: 'Manrope', sans-serif; 
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.045), transparent 30%),
                radial-gradient(circle at 82% 34%, rgba(208, 140, 73, 0.12), transparent 32%),
                radial-gradient(circle at 52% 72%, rgba(255, 255, 255, 0.024), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent 22%, rgba(255, 255, 255, 0.014) 74%, transparent);
            opacity: 1;
        }

        #ladies,
        #schedule,
        #updates,
        main > section:not(:first-of-type) {
            position: relative;
        }

        #ladies::before,
        #schedule::before,
        #updates::before,
        main > section:not(:first-of-type)::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: -1px;
            height: 2px;
            pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), rgba(196, 0, 24, 0.5), rgba(255, 255, 255, 0.2), transparent);
            opacity: 0.95;
            box-shadow: 0 0 18px rgba(196, 0, 24, 0.2);
        }
        
        .font-mincho { 
            font-family: 'Noto Serif JP', serif; 
        }
        
        /* PDF保存・印刷時は装飾エフェクト(blur系)が崩れることがあるため非表示に */
        @media print {
            [class*="blur-"] {
                display: none !important;
            }
        }

        /* すべてのフィルム枠を、最もスタイリッシュで無駄のないデザインへ統一 */
        .film-strip {
            position: relative;
            background-color: #000;
            padding: 20px 10px;
            border: 1px solid var(--color-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: all 0.5s var(--ease-elegant);
        }

        .film-stamp {
            font-family: 'Courier Prime', monospace;
            font-size: 8px;
            letter-spacing: 0.25em;
            color: #777;
            text-transform: uppercase;
        }

        .kodak-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 6px 8px;
            background: #050505;
            border-bottom: 1px solid #1e1e1e;
        }
        .kodak-label,
        .kodak-frame-num {
            font-family: 'Courier Prime', monospace;
            font-size: 8px;
            line-height: 1.5;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .kodak-label {
            letter-spacing: 0.25em;
            color: transparent;
            text-shadow:
                0 0 1px #ffce99,
                0 0 3px #d08c49,
                0 0 8px rgba(208, 140, 73, 0.8);
        }
        .kodak-frame-num {
            letter-spacing: 0.25em;
            color: transparent;
            text-shadow:
                0 0 1px #ffce99,
                0 0 3px #d08c49,
                0 0 8px rgba(208, 140, 73, 0.8);
        }
        .top-kodak-header #film-name,
        .top-kodak-header #frame-info {
            transition: opacity 0.3s var(--ease-elegant);
        }

        /* 6枚横並びでもスマホで窮屈にならないよう調整 */
        @media (max-width: 768px) {
            .film-strip { padding: 10px 5px; }
            .film-stamp { font-size: 6px; letter-spacing: 0.1em; }
            .kodak-header { gap: 8px; padding: 5px 6px; }
            .kodak-label,
            .kodak-frame-num { font-size: 5.5px; letter-spacing: 0.16em; }
            .kodak-label { white-space: normal; }
        }

        /* 初代の美しく怪しく光るオレンジグローを完全に復元 */
        .glow-orange {
            color: transparent; 
            text-shadow: var(--film-glow-shadow);
        }

        /* PDF保存・印刷時はぼかしが固まって文字が読めなくなるため、通常表示に切り替え */
        @media print {
            .glow-orange {
                color: #d08c49 !important;
                text-shadow: none !important;
            }
        }
        
        /* クロスフェードの滑らかさを向上 */
        #main-visual-container img, .concept-slider img {
            transition: opacity 0.8s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail img {
            transition: all 0.6s var(--ease-elegant);
            filter: grayscale(100%);
        }
        .thumbnail:hover img, .thumbnail.thumbnail-active img {
            filter: grayscale(0%);
        }
        
        /* サムネイルのホバーを上品に */
        .thumbnail { 
            cursor: pointer; 
            transition: all 0.5s var(--ease-elegant); 
        }
        .thumbnail:hover { 
            transform: translateY(-4px);
            border-color: rgba(208, 140, 73, 0.5); /* #d08c49 base */
            box-shadow: 0 12px 30px rgba(208, 140, 73, 0.15);
        }

        .thumbnail-active {
            border-color: var(--color-accent) !important;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(208, 140, 73, 0.2);
        }

        /* ナビゲーションリンクのホバーエフェクト */
        .nav-link {
            position: relative;
            padding-bottom: 2px;
            transition: color 0.4s var(--ease-elegant);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 50%;
            background-color: var(--color-primary);
            transition: all 0.4s var(--ease-elegant);
            transform: translateX(-50%);
        }
        .nav-link:hover::after, .nav-link-active::after {
            width: 100%;
        }

        /* バナーエフェクトのディテール */
        .banner-glow {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all 0.6s var(--ease-elegant);
        }
        .banner-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            transform: skewX(-20deg);
            transition: 0.8s;
        }
        .banner-glow:hover::after {
            left: 150%;
        }
        .banner-glow:hover {
            border-color: rgba(158, 49, 75, 0.6); /* primary base */
            box-shadow: 0 8px 25px rgba(158, 49, 75, 0.25);
            transform: translateY(-2px);
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary);
        }

/* ===== ヘッダーロゴ設定 ここを変更すると調整できます ===== */
:root {
    --header-logo-width: 290px;   /* ロゴ画像の横幅 */
    --header-logo-offset-y: 5px;  /* ロゴの縦位置（プラスで下、マイナスで上） */
}
.header-title-wrap {
    position: relative;
    display: inline-block;
}
.header-logo {
    position: absolute;
    inset: 0;
    margin: auto 0;
    width: var(--header-logo-width);
    height: auto;
    transform: translateY(var(--header-logo-offset-y));
    pointer-events: none;
}

.harmony-didot-logo {
    font-family: Didot, "Bodoni 72", "Times New Roman", serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.24em !important;
}

/* TOP INFORMATION：スライド下のお知らせ欄 */
.top-information {
    position: relative;
    margin: -0.5rem 0 3rem;
    padding: 1.35rem 1.5rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)),
        rgba(1, 3, 2, 0.72);
}
.top-information::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(196, 0, 24, 0.9), rgba(208, 140, 73, 0.65), transparent);
}
.top-information::after {
    content: 'HARMONY';
    position: absolute;
    right: -0.5rem;
    bottom: -1.5rem;
    font-family: Didot, "Bodoni 72", "Times New Roman", serif;
    font-size: clamp(4.5rem, 10vw, 9rem);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
}
.top-information-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
}
.top-information-kicker {
    color: rgba(232, 173, 99, 0.98);
    text-shadow: 0 0 12px rgba(208, 140, 73, 0.45);
    font-family: "Courier New", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.42em;
}
.top-information-head h2 {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.28em;
}
.top-information-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
}
.top-information-item {
    display: grid;
    grid-template-columns: 7.5rem 6.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.top-information-item time {
    color: rgba(255, 255, 255, 0.55);
    font-family: "Courier New", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}
.top-information-tag {
    color: #c40018;
    font-family: "Courier New", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.top-information-item h3 {
    color: rgba(255, 255, 255, 0.92);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.7;
}
.top-information-item p {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .top-information {
        margin: 0 0 2.5rem;
        padding: 1.1rem 1rem;
    }
    .top-information-head {
        display: block;
    }
    .top-information-head h2 {
        margin-top: 0.4rem;
    }
    .top-information-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 1rem 0;
    }
}

/* TOPスケジュールはschedule.htmlのtoday-cardを貼るだけでフィルム表示になる */
#schedule .grid {
    counter-reset: top-schedule-card;
}

#schedule .today-card {
    counter-increment: top-schedule-card;
    position: relative;
    display: block;
    min-width: 0;
    padding: 42px 10px 18px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
    color: var(--color-text-main);
    overflow: hidden;
    transition: border-color 0.45s var(--ease-elegant), box-shadow 0.45s var(--ease-elegant), filter 0.45s var(--ease-elegant);
}

#schedule .today-card::before,
#schedule .today-card::after {
    position: absolute;
    top: 18px;
    z-index: 2;
    font-family: 'Courier Prime', monospace;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: transparent;
    text-shadow:
        0 0 1px #ffce99,
        0 0 3px #d08c49,
        0 0 8px rgba(208, 140, 73, 0.8);
}

#schedule .today-card::before {
    left: 14px;
    content: "#" counter(top-schedule-card);
}

#schedule .today-card::after {
    right: 14px;
    max-width: 52%;
    overflow: hidden;
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    content: attr(data-code);
}

#schedule .today-card:hover {
    border-color: rgba(208, 140, 73, 0.75);
    box-shadow:
        0 0 0 1px rgba(208, 140, 73, 0.18),
        0 18px 42px rgba(208, 140, 73, 0.14),
        0 22px 50px rgba(0, 0, 0, 0.45);
}

#schedule .today-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center center;
    background: #111;
    border-radius: 2px;
    filter: brightness(0.96);
    transform: none !important;
    transition: filter 0.45s var(--ease-elegant);
}

#schedule .today-card:hover img {
    filter: brightness(1.08);
    transform: none !important;
}

#schedule .today-card h3,
#schedule .today-card p {
    margin: 0;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#schedule .today-card h3 {
    margin-top: 14px;
    color: #f4f4f5;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#schedule .today-card h3::before {
    content: "NAME: ";
    color: #f4f4f5;
    margin-right: 0.55em;
}

#schedule .today-card p {
    margin-top: 5px;
    color: #d08c49;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#schedule .today-card p::before {
    content: "TIME: ";
    margin-right: 0.55em;
}

#schedule .today-card.schedule-lady-card,
#schedule .today-card.schedule-banner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 14px 14px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
        #030303;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
    color: inherit;
    overflow: hidden;
    transform: none;
    transition: transform 450ms ease, border-color 450ms ease, box-shadow 450ms ease, background 450ms ease;
}

#schedule .today-card.schedule-banner-card {
    --banner-rgb: 208, 140, 73;
    --banner-accent: #d08c49;
}

#schedule .today-card.banner-blue {
    --banner-rgb: 56, 110, 190;
    --banner-accent: #74a9ff;
}

#schedule .today-card.banner-wine {
    --banner-rgb: 158, 49, 75;
    --banner-accent: #d85b7b;
}

#schedule .today-card.banner-gold {
    --banner-rgb: 208, 140, 73;
    --banner-accent: #d08c49;
}

#schedule .today-card.banner-green {
    --banner-rgb: 62, 145, 115;
    --banner-accent: #7bd7b1;
}

#schedule .today-card.banner-silver {
    --banner-rgb: 175, 180, 188;
    --banner-accent: #d8dde7;
}

#schedule .today-card.banner-violet {
    --banner-rgb: 122, 88, 176;
    --banner-accent: #b59aff;
}

#schedule .today-card.banner-rose {
    --banner-rgb: 198, 78, 108;
    --banner-accent: #ef86a1;
}

#schedule .today-card.banner-amber {
    --banner-rgb: 214, 120, 46;
    --banner-accent: #f0a75f;
}

#schedule .today-card.banner-white {
    --banner-rgb: 230, 230, 218;
    --banner-accent: #f5f1df;
}

#schedule .today-card.schedule-lady-card::before,
#schedule .today-card.schedule-lady-card::after,
#schedule .today-card.schedule-banner-card::before,
#schedule .today-card.schedule-banner-card::after {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 78px;
    width: 5px;
    background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 0 5px, transparent 5px 13px);
    opacity: 0.28;
    transition: opacity 450ms ease;
    z-index: 1;
    max-width: none;
    text-shadow: none;
    color: inherit;
    letter-spacing: 0;
}

#schedule .today-card.schedule-lady-card::before,
#schedule .today-card.schedule-banner-card::before {
    left: 4px;
}

#schedule .today-card.schedule-lady-card::after,
#schedule .today-card.schedule-banner-card::after {
    right: 4px;
}

#schedule .today-card.schedule-lady-card:hover,
#schedule .today-card.schedule-banner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 140, 73, 0.68);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(208, 140, 73, 0.12),
        0 0 34px rgba(208, 140, 73, 0.16);
    background:
        linear-gradient(180deg, rgba(208, 140, 73, 0.09), rgba(255, 255, 255, 0.01)),
        #030303;
}

#schedule .today-card.schedule-lady-card:hover::before,
#schedule .today-card.schedule-lady-card:hover::after,
#schedule .today-card.schedule-banner-card:hover::before,
#schedule .today-card.schedule-banner-card:hover::after {
    opacity: 0.46;
}

#schedule .schedule-film-stamp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    min-height: 18px;
    margin: 4px 4px 12px;
    font-family: 'Courier Prime', monospace;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: transparent;
    text-shadow: var(--film-glow-shadow, 0 0 1px #ffce99, 0 0 3px #d08c49, 0 0 8px rgba(208, 140, 73, 0.82));
}

#schedule .schedule-lady-photo {
    position: relative;
    display: block;
    width: calc(100% - 16px);
    margin: 0 8px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #000;
    border: 0;
    border-radius: 0;
}

#schedule .schedule-lady-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.24) 100%),
        radial-gradient(circle at 50% 5%, rgba(255, 255, 255, 0.18), transparent 34%);
    opacity: 0.55;
    pointer-events: none;
}

#schedule .schedule-lady-photo img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain !important;
    object-position: center center !important;
    background: #000;
    border-radius: 0;
    filter: saturate(0.86) contrast(1.04) brightness(0.96);
    transform: none !important;
    transition: transform 650ms ease, filter 650ms ease;
}

#schedule .today-card.schedule-lady-card:hover .schedule-lady-photo img {
    filter: saturate(0.92) contrast(1.06) brightness(1.02);
    transform: none !important;
}

#schedule .today-card.schedule-banner-card .schedule-banner-visual {
    position: relative;
    display: block;
    width: calc(100% - 16px);
    margin: 0 8px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--banner-rgb, 208, 140, 73), 0.32), rgba(5, 5, 5, 0.96) 42%, #010101);
    border: 1px solid rgba(var(--banner-rgb, 208, 140, 73), 0.55);
    box-shadow: inset 0 0 36px rgba(var(--banner-rgb, 208, 140, 73), 0.12), 0 0 20px rgba(var(--banner-rgb, 208, 140, 73), 0.08);
}

#schedule .today-card.schedule-banner-card .schedule-banner-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 20%, rgba(var(--banner-rgb, 208, 140, 73), 0.3), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.4));
}

#schedule .today-card.schedule-banner-card .schedule-banner-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: none !important;
}

#schedule .today-card.schedule-banner-card .schedule-banner-text {
    position: absolute;
    inset: 18px 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#schedule .today-card.schedule-banner-card .schedule-banner-tag,
#schedule .today-card.schedule-banner-card .schedule-banner-main,
#schedule .today-card.schedule-banner-card .schedule-banner-sub {
    font-family: 'Courier Prime', monospace !important;
    font-weight: 700;
    text-transform: uppercase;
    word-break: keep-all;
    overflow-wrap: normal;
}

#schedule .today-card.schedule-banner-card .schedule-banner-tag {
    font-size: clamp(9px, 0.62vw, 11px);
    line-height: 1.45;
    letter-spacing: 0.12em;
    color: var(--banner-accent, #d08c49) !important;
    -webkit-text-fill-color: var(--banner-accent, #d08c49) !important;
    text-shadow: 0 0 12px rgba(var(--banner-rgb, 208, 140, 73), 0.45) !important;
}

#schedule .today-card.schedule-banner-card .schedule-banner-main {
    font-size: clamp(12px, 0.86vw, 15px);
    line-height: 1.48;
    letter-spacing: 0.09em;
    color: #f5f5f6;
}

#schedule .today-card.schedule-banner-card .schedule-banner-sub {
    font-size: clamp(9px, 0.62vw, 11px);
    line-height: 1.45;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.68);
}

#schedule .today-card.schedule-banner-card h3,
#schedule .today-card.schedule-banner-card p {
    font-family: 'Courier Prime', monospace !important;
    font-size: clamp(12px, 0.86vw, 15px);
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: 0.09em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: keep-all;
    overflow-wrap: normal;
}

#schedule .today-card.schedule-banner-card h3 {
    color: #f5f5f6;
}

#schedule .today-card.schedule-banner-card p {
    color: #d08c49;
}

#schedule .today-card.schedule-banner-card h3::before,
#schedule .today-card.schedule-banner-card p::before {
    content: none !important;
    display: none !important;
}

#schedule .schedule-lady-meta {
    min-height: 74px;
    margin-top: 0;
    padding: 13px 4px 0;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

#schedule .schedule-lady-meta h3,
#schedule .schedule-lady-meta p {
    margin: 0;
    font-family: 'Courier Prime', monospace !important;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    text-transform: uppercase;
}

#schedule .schedule-lady-meta h3 {
    min-height: 0;
    color: #f5f5f6;
    font-size: clamp(12px, 0.86vw, 15px);
    line-height: 1.48;
    font-weight: 700;
    letter-spacing: 0.09em;
}

#schedule .today-card.schedule-lady-card .schedule-lady-meta h3::before,
#schedule .today-card.schedule-lady-card h3::before {
    content: none !important;
    display: none !important;
    margin-right: 0 !important;
}

#schedule .schedule-lady-meta p {
    margin-top: 7px;
    color: #d08c49;
    font-family: 'Courier Prime', monospace !important;
    font-size: clamp(12px, 0.86vw, 15px);
    line-height: 1.48;
    font-weight: 700;
    letter-spacing: 0.09em;
}

#schedule .today-card.schedule-lady-card .schedule-lady-meta p::before,
#schedule .today-card.schedule-lady-card p::before {
    content: none !important;
    display: none !important;
    margin-right: 0 !important;
}

@media (max-width: 768px) {
    #schedule .today-card {
        padding: 32px 8px 14px;
    }

    #schedule .today-card.schedule-lady-card,
    #schedule .today-card.schedule-banner-card {
        padding: 10px 9px 14px;
    }

    #schedule .today-card.schedule-lady-card::before,
    #schedule .today-card.schedule-lady-card::after,
    #schedule .today-card.schedule-banner-card::before,
    #schedule .today-card.schedule-banner-card::after {
        display: none;
    }

    #schedule .today-card::before,
    #schedule .today-card::after {
        top: 12px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    #schedule .today-card::before {
        left: 9px;
    }

    #schedule .today-card::after {
        right: 9px;
    }

    #schedule .today-card h3 {
        margin-top: 12px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    #schedule .today-card p {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    #schedule .schedule-film-stamp {
        font-size: 7px;
        margin-bottom: 9px;
        letter-spacing: 0.16em;
    }

    #schedule .schedule-lady-meta {
        min-height: 66px;
        padding: 10px 4px 0;
    }

    #schedule .schedule-lady-meta h3 {
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    #schedule .schedule-lady-meta p {
        font-size: 11px;
        letter-spacing: 0.04em;
    }
}
