/* 1. 外側の枠線を完全に丸めて、中身のはみ出しを防止 */
.schedule {
    border: 2px solid #333333 !important;
    border-radius: 15px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
	overflow: hidden !important; /* これで後ろの角を隠します */
	 background-color: #fff;
}

/* 2. セル自体の設定（外枠と重複する線を消すため、上と左だけ線を引く） */
.schedule th,
.schedule td {
    border-top: 1px solid #333333 !important;
    border-left: 1px solid #333333 !important;
    border-right: none !important;
    border-bottom: none !important;
    text-align: center !important;
    vertical-align: middle !important;
    padding: 12px 5px !important;
}

/* 3. 一番上の一行目と、一番左の列の不要な線を調整 */
.schedule tr:first-child th,
.schedule tr:first-child td {
    border-top: none !important;
}
.schedule th:first-child,
.schedule td:first-child {
    border-left: none !important;
}

/* 4. ヘッダーと土日の設定 */
.schedule thead th { 
    background-color: #f2f2f2 !important; 
    font-weight: bold; 
}
.schedule .column-7 { color: #0070c0 !important; } /* 土曜 */
.schedule .column-8 { color: #c00000 !important; font-weight: bold; } /* 日曜 */

/* 5. 記号(●▲)をピンク・特大に */
.schedule .ico-pink {
    color: #e5007f !important;
    font-size: 32px !important;
    display: inline-block;
    line-height: 1;
}

/* 6. 土曜の補足文字(第2・第4) */
.schedule .sat-text {
    font-size: 11px !important;
    font-weight: normal !important;
    color: #333333 !important;
}
