/**
 * Clinic Calendar フロントスタイル v2
 */

.clinic-cal {
    box-sizing: border-box;
    max-width: 712px;
    margin: 0 auto;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
}
.clinic-cal *,
.clinic-cal *::before,
.clinic-cal *::after {
    box-sizing: border-box;
}
.clinic-cal__inner { width: 100%; }

.clinic-cal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 4px 0 16px;
}
.clinic-cal__title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    min-width: 120px;
    color: #A3A3A3;
}
.clinic-cal__nav {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #D6CDA1;
    border-radius: 50%;
    padding: 0;
    transition: background 0.15s ease;
}
.clinic-cal__nav:hover { background: rgba(255, 255, 255, 1); border: 1px solid #D6CDA1; }

.clinic-cal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 2px;
}
.clinic-cal__weekday {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: #D6CDA1;
    color: #fff;
    border-radius: 4px;
    padding: 10px 0;
}
.clinic-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.clinic-cal__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 400;
    color: #A3A3A3;
    background: transparent;
    text-align: center;
    line-height: 1;
    gap: 8px;
    padding: 19px 8.5px 8px;
    box-sizing: border-box;
}
.clinic-cal__cell--empty { background: transparent; }
.clinic-cal__cell--set { background: #FFF; }
.clinic-cal__cell--unset { background: #FFF; }
.clinic-cal__cell--today { box-shadow: inset 0 0 0 2px #ff3b30; }

.clinic-cal__cell--bg {
    background: transparent;
    width: 100%;
    height: 18px;
    border-radius: 4px;
}

.clinic-cal__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}
.clinic-cal__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.clinic-cal__legend-dot {
    display: inline-block;
    width: 15px; height: 15px;
    border-radius: 4px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .clinic-cal__title { font-size: 14px; }
    .clinic-cal__cell { font-size: 10px; padding: 4px; gap: 4px;}
    .clinic-cal__weekday { font-size: 10px; padding: 2px 0;}
    .clinic-cal__legend { font-size: 10px; gap: 6px 12px; }
    .clinic-cal__cell--bg { height: 9px; border-radius: 2px; }
    .clinic-cal__legend-dot { width: 8px; height: 8px; border-radius: 2px;}
}