/* ============================================================
   assets/css/business-hours.css
   営業時間テーブル・本日の営業状況
   ============================================================ */

.business-hours {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* 本日の営業状況バー */
.hours-today {
    background-color: var(--color-base);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border-radius: var(--radius-sm);
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-6);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hours-today::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--color-accent);
}

.hours-today--closed::before {
    background-color: var(--color-text-light);
}

.hours-today__status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hours-today__label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.hours-today__time {
    font-size: var(--font-size-lg);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-family-en, inherit);
}

.hours-today__divider {
    display: none !important;
}

.hours-today__note {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    background-color: var(--color-base-alt);
    padding: 2px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

/* 営業時間テーブル */
.hours-table {
    width: 100%;
    margin-bottom: var(--space-6);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-base);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hours-table__row {
    display: flex;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.hours-table__row:hover {
    background-color: var(--color-base-alt);
}

.hours-table__row:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.hours-table__day,
.hours-table__time {
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-base);
    color: var(--color-text);
}

.hours-table__day {
    font-weight: 600;
    width: 40%;
    letter-spacing: 0.05em;
}

.hours-table__time {
    text-align: right;
    width: 60%;
    font-family: var(--font-family-en, inherit);
}

.hours-table__closed {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    background-color: var(--color-base-alt);
    padding: 4px 12px;
    border-radius: 20px;
}

.hours-table__row--today .hours-table__day,
.hours-table__row--today .hours-table__time {
    background-color: color-mix(in srgb, var(--color-accent) 10%, var(--color-base));
    font-weight: 700;
}

/* 補足ブロック */
.hours-note-block {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background-color: var(--color-base-alt);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    line-height: var(--line-height-relaxed);
}

.hours-note-block p + p {
    margin-top: var(--space-2);
}