﻿/* ◆libCalのミニカレンダー（図書館ウェブサイトトップに使用）の日本語化を行うCSS */
/* 初期設定 20220805長谷川 */
/* ミニカレンダーの基本cssはlibcal_css_minicalendarで定義。ここでは、日本語に関わる部分のみを定義している */

/* -----　全体　----- */
/* <en>～</en>で囲まれたタグを非表示 */
en {
    display: none;
}
/* -----　以上：全体　----- */

/* -----　開館時間（日別）　----- */
/* 日付の後ろの補記 */
.s-lc-w-head span::after {
    content: "の開館時間";
    font-size: 14px;
}
/* -----　以上：開館時間（日別）　----- */

/* -----　開館時間（月別）　----- */
/* 月曜日、火曜日・・・の見出しを月、火・・・に変更 */
tr.s-lc-mhw-days th {
    font-size: 0px;
}
tr.s-lc-mhw-days th:nth-child(1)::before {
    font-size: 10px;
    content: "日";
}
tr.s-lc-mhw-days th:nth-child(2)::before {
    font-size: 10px;
    content: "月";
}
tr.s-lc-mhw-days th:nth-child(3)::before {
    font-size: 10px;
    content: "火";
}
tr.s-lc-mhw-days th:nth-child(4)::before {
    font-size: 10px;
    content: "水";
}
tr.s-lc-mhw-days th:nth-child(5)::before {
    font-size: 10px;
    content: "木";
}
tr.s-lc-mhw-days th:nth-child(6)::before {
    font-size: 10px;
    content: "金";
}
tr.s-lc-mhw-days th:nth-child(7)::before {
    font-size: 10px;
    content: "土";
}
/* -----　以上：開館時間（月別）　----- */
