/* テーブル全体のスタイル（フォントサイズ1.5rem版） */
.schedule-table-sm {
    width: 100%;
    margin-top: 20px;
    border: solid 1px #451700;
    border-collapse: collapse;
    font-size: 1.5rem;
}

/* テーブルのセル共通スタイル */
.schedule-table-sm td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #451700;
}

/* 文字・背景装飾ユーティリティ */
.font-bold { font-weight: bold; }
.saturday { color: #000ac4; }
.holiday { color: red; }
.bg-holiday { background: #ffe7e7; }

/* 丸囲み文字のベーススタイル */
.circle-text {
    display: inline-block;
    border-radius: 50%;
    color: #451700;
    border: 1px solid #451700;
    font-weight: bold;
    text-align: center;
}

/* 丸囲み文字のサイズ（中：短用） */
.circle-md {
    width: 30px;
    height: 28px;
    line-height: 25px;
}

/* 丸囲み文字のサイズ（小：空白用） */
.circle-sm {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

/* 注釈画像（幅広版） */
.annotation-img-wide {
    width: 90%;
    margin-top: 5px;
}