﻿@charset "utf-8";

/*
##########################################################################
  /schedule ページ専用CSS
##########################################################################*/

/* ==========================================================================
   ページタイトル（schedule-title-*）
   ========================================================================== */

.schedule-section-header {
    margin: 1.2rem 0 1.5rem;
    padding: 0 1rem;
}

.schedule-title-wrap {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 0, 180, 0.20);
    position: relative;
}

.schedule-title-wrap::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 240px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 180, 230, 0.55) 55%, transparent 100%);
}

.schedule-title-en {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 3px rgba(80, 0, 50, 0.30);
}

.schedule-title-main {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.schedule-title-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff00b4, #9000ff);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(255, 0, 180, 0.4);
}

.schedule-title-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(80, 0, 50, 0.35);
}

@media (max-width: 480px) {
    .schedule-title-text { font-size: 0.95rem; }
    .schedule-title-en { font-size: 0.55rem; }
}

/* ==========================================================================
   カレンダーセクション
   ========================================================================== */

.calendar-section {
    margin: 2rem 0 4rem;
    padding: 0 1rem;
}

/* PC用：2カラム横並び */
.calendar-container-pc {
    gap: 2rem;
    justify-content: center;
}

.calendar-wrapper {
    flex: 1;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

/* 年月ヘッダー（PC） */
.calendar-header {
    height: 50px;
    background: #f4f4f4;
    color: #444;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.03em;
}

.calendar-header .next-month {
    text-align: center;
    flex: 1;
}

/* ナビボタン */
.nav-btn {
    background: transparent !important;
    border: none;
    padding: 0 !important;
    box-sizing: border-box;
    color: #888;
    width: 28px !important;
    height: 28px !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: #e8e8e8;
    color: #444;
}

.nav-btn-placeholder {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    visibility: hidden;
}

.calendar-grid {
    padding: 0.5rem;
}

/* SP用：スライド式 */
.calendar-container-sp {
    position: relative;
}

.calendar-header-sp {
    background: #f4f4f4;
    color: #444;
    padding: 0.6rem 0.8rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-slider {
    position: relative;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    border-top: none;
    overflow: hidden;
}

/* アクティブなスライドは relative → 親が高さを追う（見切れ防止） */
.calendar-slide {
    width: 100%;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.calendar-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.calendar-slide:not(.active) {
    transform: translateX(100%);
}

/* 1週間スライド時のアニメーション */
.calendar-slide.slide-in {
    animation: calendarSlideIn 0.25s ease;
}

@keyframes calendarSlideIn {
    from {
        opacity: 0.4;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   FullCalendar カスタム（.calendar-grid スコープで限定）
   ========================================================================== */

.calendar-grid .fc {
    font-family: inherit;
}

.calendar-grid .fc-toolbar {
    display: none;
}

/* 日付セル：幅と高さを1:1に保つ（正方形） */
.calendar-grid .fc-daygrid-day {
    cursor: pointer;
    transition: background 0.15s;
}

.calendar-grid .fc-daygrid-day:hover {
    background-color: #f0f0f0 !important;
}

.calendar-grid .fc-daygrid-day-frame,
.calendar-container-sp .fc-daygrid-day-frame {
    padding: 1px !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 ;
    overflow: hidden;
}
/* 日付番号 */
.calendar-grid .fc-daygrid-day-number {
    font-size: 0.78rem !important;
    font-weight: 500;
    color: #444 !important;
    padding: 1px 4px !important;
    line-height: 1.4;
}

/* 今日 */
.calendar-grid .fc-daygrid-day.fc-day-today {
    background-color: #eaffc3 !important;
}

.calendar-grid .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: #222 !important;
    font-weight: 700;
}

/* 選択日 */
.calendar-grid .fc-daygrid-day.fc-day-selected {
    background-color: #ffecac !important;
}

.calendar-grid .fc-daygrid-day.fc-day-selected .fc-daygrid-day-number {
    color: white !important;
}

/* 曜日ヘッダー（PC・SP統一） */
.calendar-grid .fc-col-header-cell {
    background: #f4f4f4;
    font-weight: 600;
    padding: 0.25rem 0;
    font-size: 0.72rem;
}

.calendar-grid .fc-col-header-cell .fc-col-header-cell-cushion,
.calendar-grid .fc-col-header-cell a {
    color: #666 !important;
    text-decoration: none;
}

/* 祝日：薄いピンク背景 */
.fc-holiday-bg {
    background-color: rgba(255, 240, 245, 0.7) !important;
    opacity: 1 !important;
    font-size: 0.65rem !important;
    padding-top:1rem;
    color: #f57bc6 !important;
}

/* 祝日の日付番号をローズ系に */
.calendar-grid .fc-daygrid-day:has(.fc-bg-event) .fc-daygrid-day-number {
    color: #f57bc6 !important;
}

/* ==========================================================================
   タイムラインセクション
   ========================================================================== */

.modern-timeline {
    padding: 0 1rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(90deg, #fafcff 0%, #f7faff 50%);
    border: 1px solid #eef5ff;
    border-radius: 5px;
    /* box-shadow: 0 5px 15px rgba(231, 148, 194, 0.1); */
}

.timeline-header .date {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    margin: 0;
}

.timeline-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.schedule {
    background: linear-gradient(135deg, #87ceeb 0%, #75c3e2 100%);
}

.legend-color.reservation {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

/* セクションタイトル */

.other-schedule a {
    font-size: 0.9rem;
    border:1px solid #e794c2;
    padding: 0.2rem 0.6rem;
    margin-right: 1.5rem;
    background: #fff9fc ;
    color: #e794c2;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.other-schedule a:hover {
    color: #e794c2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.other-schedule a:hover {
    border-color: #e794c2;
}

@media (max-width: 768px) {
    .other-schedule {
        margin: auto;
        text-align: center;
        flex-shrink: 0;
    }
    .other-schedule a {
        font-size: 0.7rem;
        white-space: nowrap;
        padding: 0.15rem 0.45rem;
        margin-right: 0.5rem;
    }
    .timeline-legend {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .legend-item {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* ==========================================================================
   キャストカード
   ========================================================================== */

.equipment-section,
.cast-section {
    margin-bottom: 3rem;
}

/* カードグリッド（備品用） */
.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
/* cast-card / cast-grid / status-badge は item_card.css で定義 */

/* ==========================================================================
   モダンタイムライン（出勤・予約バー）
   ========================================================================== */

.timeline-container-modern {
    position: relative;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.timeline-hours-display {
    display: flex;
    height: 20px;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.hour-number {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #495057;
    border-right: 1px solid #dee2e6;
}

.hour-number:last-child {
    border-right: none;
}

.timeline-background-modern {
    display: flex;
    height: 60px;
    position: relative;
}

.timeline-hour-modern {
    flex: 1;
    position: relative;
    background: #f8f9fa;
    height: 100%;
}

.timeline-half-hour {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}

.timeline-half-hour.first-half  { left: 0;  background: #f8f9fa; }
.timeline-half-hour.second-half { right: 0; background: #f1f3f4; }

.timeline-bars-modern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.reservation-bar-modern {
    position: absolute;
    height: 25px;
    top: 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.reservation-bar-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reservation-bar {
    background: #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.schedule-bar-modern {
    position: absolute;
    height: 10px;
    bottom: 5px;
    background: #87ceeb;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.schedule-time,
.reservation-time {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    text-align: center;
}

/* 予約ボタン */
.cast-action {
    margin-top: 1rem;
    text-align: center;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff9ed2 0%, #e794c2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 148, 194, 0.3);
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 148, 194, 0.4);
    color: white;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */


@media (max-width: 1024px) {
    .timeline-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .calendar-grid .fc-daygrid-day-number {
        font-size: 0.72rem !important;
    }
}

@media (max-width: 768px) {
    .calendar-grid .fc-daygrid-day-number {
        font-size: 0.65rem !important;
        padding: 1px 2px !important;
    }
}

@media (max-width: 768px) {
    .calendar-section {
        padding: 0 0.5rem;
    }
}

/* ==========================================================================
   Dark theme overrides（タイムライン固有）
   ========================================================================== */
.equipment-card {
    background: #1e0e18;
    border: 1px solid #1e1018;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    color: #fce8f4;
}
.equipment-card:hover {
    box-shadow: 0 8px 32px rgba(255,0,180,0.15);
    border-color: rgba(255,0,180,0.3);
}
.timeline-container-modern { background: #0e0e12; }
.timeline-hours-display    { background: #160d13; border-bottom-color: #1e1018; }
.hour-number               { color: #7d7d8e; font-size: 0.6rem; }
.timeline-half-hour        { border-right-color: #1e1018; }
/* cast-footer / work-time-display / cast-btns は item_card.css で定義 */

/* タイムラインボタン */
.timeline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.28rem 0.6rem;
    background: #1e0e1c;
    border: 1px solid #30303e;
    border-radius: 4px;
    color: #fce8f4;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    white-space: nowrap;
    flex: 1;
}
.timeline-btn:hover {
    background: #2a1428;
    border-color: #ff00b4;
    color: #fc88d3;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.28rem 0.6rem;
    background: linear-gradient(135deg, #ff00b4, #9000ff);
    border: none;
    border-radius: 4px;
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.18s, box-shadow 0.18s;
    white-space: nowrap;
    flex: 1;
    box-shadow: 0 2px 8px rgba(255,0,180,0.30);
}
.reservation-btn:hover { opacity: 0.88; box-shadow: 0 4px 14px rgba(255,0,180,0.50); color: #fff !important; }

/* ==========================================================================
   タイムラインモーダル
   ========================================================================== */
.timeline-modal {
    position: fixed;
    inset: 0;
    z-index: 9900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.timeline-modal[hidden] { display: none !important; }

.timeline-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    cursor: pointer;
}

.timeline-modal__panel {
    position: relative;
    background: #1e0e18;
    border: 1px solid rgba(255,0,180,0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
    animation: tl-modal-in 0.28s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes tl-modal-in {
    from { opacity: 0; transform: scale(.95) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.timeline-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}
.timeline-modal__date {
    font-size: 0.75rem;
    color: rgba(252, 195, 228, 0.55);
    margin-bottom: 2px;
}
.timeline-modal__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fce8f4;
}
.timeline-modal__close {
    background: none;
    border: 1px solid #30303e;
    color: #7d7d8e;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}
.timeline-modal__close:hover { border-color: #ff00b4; color: #fc88d3; }

.timeline-modal__legend {
    display: flex;
    gap: 1rem;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: rgba(252, 195, 228, 0.55);
}
.timeline-modal__body .timeline-container-modern {
    margin-top: 0;
}
.timeline-modal__worktime {
    margin-top: 12px;
    font-size: 0.82rem;
    color: #fce8f4;
}

/* ==========================================================================
   トップページ 新セクション共通
   ========================================================================== */
.top-section {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid rgba(255, 0, 180, 0.10);
    margin-bottom: 1.5rem;
}
.top-section-inner {
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(14, 4, 16, 0.78);
    border: 1px solid rgba(255, 0, 180, 0.14);
    border-radius: 12px;
    padding: 1.25rem 1.5rem 1.4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255,0,180,0.06);
}
.section-title-sub {
    font-size: 0.65em;
    font-weight: 400;
    color: rgba(252, 195, 228, 0.55);
    letter-spacing: 0.1em;
    margin-left: 0.5rem;
}
.top-section-more { text-align: right; margin-top: 1.25rem; }
.top-more-link {
    font-size: 0.82rem;
    color: #fc88d3;
    text-decoration: none;
    font-weight: 600;
}
.top-more-link:hover { color: #ff00b4; }



/* ── ランキング ── */
.top-ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.top-rank-card {
    background: #160d13;
    border: 1px solid #1e1018;
    border-radius: 12px;
    padding: 1.25rem 1rem;
}
.top-rank-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fce8f4;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,0,180,0.3);
}
.top-rank-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.top-rank-item { display: flex; align-items: center; gap: 0.6rem; }
.top-rank-no {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    font-size: 0.7rem; font-weight: 700;
    background: #30303e; color: #7d7d8e;
    flex-shrink: 0;
}
.top-rank-no--1 { background: #c9a227; color: #fff; }
.top-rank-no--2 { background: #8a8a96; color: #fff; }
.top-rank-no--3 { background: #7a4a28; color: #fff; }
.top-rank-cast {
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none; flex: 1; min-width: 0;
}
.top-rank-cast img {
    width: 40px; height: 40px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid #1e1018;
    flex-shrink: 0;
}
.top-rank-name { font-size: 0.85rem; color: #fce8f4; transition: color 0.18s; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.top-rank-cast:hover .top-rank-name { color: #fc88d3; }
.top-rank-more {
    margin-top: 0.75rem;
    text-align: right;
    font-size: 0.78rem;
}
.top-rank-more a { color: #fc88d3; text-decoration: none; }
.top-rank-more a:hover { color: #ff00b4; }

/* ==========================================================================
   日付ストリップ（7日間ずつスライド） schedule / prof 共通
   ネオンナイトテーマ（ダーク背景＋ネオンピンク）
   ========================================================================== */
.dstrip {
    display: flex;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}
.dstrip-nav {
    flex: 0 0 auto;
    width: 40px;
    border: 1px solid rgba(255, 0, 180, 0.35);
    border-radius: 12px;
    background: rgba(22, 4, 18, 0.82);
    color: #ff9ee0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.dstrip-nav:hover {
    background: linear-gradient(160deg, #ff00b4, #9000ff);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 14px rgba(255, 0, 180, 0.55);
}
.dstrip-track {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    min-width: 0;
}
.dstrip-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    padding: 8px 2px;
    border-radius: 12px;
    background: rgba(22, 4, 18, 0.82);
    border: 1px solid rgba(255, 0, 180, 0.28);
    text-decoration: none;
    color: #fff;
    min-height: 62px;
    transition: transform 0.14s, box-shadow 0.14s, border-color 0.14s, background 0.14s;
}
a.dstrip-day:hover,
.dstrip-day.has-sch:hover {
    transform: translateY(-2px);
    background: rgba(38, 10, 30, 0.92);
    border-color: rgba(255, 0, 180, 0.55);
    box-shadow: 0 6px 16px rgba(50, 0, 35, 0.35);
}
.dstrip-day.has-sch { cursor: pointer; }
.dstrip-dow { font-size: 0.72rem; font-weight: 600; color: rgba(255, 220, 240, 0.85); line-height: 1; }
.dstrip-date { font-size: 0.95rem; font-weight: 700; line-height: 1.1; color: #fff; }
.dstrip-day.sun .dstrip-dow, .dstrip-day.sun .dstrip-date { color: #ff8fa8; }
.dstrip-day.sat .dstrip-dow, .dstrip-day.sat .dstrip-date { color: #8ec8ff; }
.dstrip-day.is-today { background: rgba(38, 10, 30, 0.92); border-color: rgba(255, 0, 180, 0.55); }
.dstrip-day.is-today .dstrip-date { color: #ff9ee0; }
.dstrip-day.is-active {
    background: linear-gradient(160deg, #ff00b4, #9000ff);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(255, 0, 180, 0.45);
}
.dstrip-day.is-active .dstrip-dow,
.dstrip-day.is-active .dstrip-date { color: #fff; }

/* prof：出勤情報（時間・ステータス） */
.dstrip--prof .dstrip-day { min-height: 98px; justify-content: flex-start; gap: 4px; }
.dstrip-time { font-size: 0.66rem; font-weight: 700; color: #ffd6ef; line-height: 1.25; text-align: center; }
.dstrip-rest { font-size: 0.72rem; color: rgba(255, 255, 255, 0.32); margin-top: 4px; }
.dstrip--prof .dstrip-day.has-sch {
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.08);
}
.dstrip--prof .dstrip-day.has-sch:hover {
    border-color: rgba(74, 222, 128, 0.7);
    box-shadow: 0 6px 16px rgba(74, 222, 128, 0.2);
}
.dstrip-status {
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    padding: 1px 6px;
    border-radius: 9999px;
    line-height: 1.4;
    white-space: nowrap;
    margin-top: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.dstrip-status.request   { background: #16a34a; }
.dstrip-status.tel       { background: #d97706; }
.dstrip-status.closed    { background: #6b7280; }
.dstrip-status.holiday   { background: #4b5563; }
.dstrip-status.sold      { background: #dc2626; }
.dstrip-status.available { background: #2563eb; }

/* スライドアニメーション */
.dstrip-anim { animation: dstripFade 0.22s ease; }
@keyframes dstripFade { from { opacity: 0.45; } to { opacity: 1; } }

@media (max-width: 640px) {
    .dstrip { gap: 4px; }
    .dstrip-track { gap: 4px; }
    .dstrip-nav { width: 26px; border-radius: 9px; font-size: 0.8rem; }
    .dstrip-day { padding: 6px 1px; border-radius: 9px; min-height: 56px; }
    .dstrip-date { font-size: 0.8rem; }
    .dstrip-dow { font-size: 0.62rem; }
    .dstrip--prof .dstrip-day { min-height: 90px; }
    .dstrip-time { font-size: 0.56rem; }
    .dstrip-status { font-size: 0.52rem; padding: 1px 4px; }
}
