/**********************************
カレンダーについてのCSSはこちら
**********************************/
div.cal_wrapper {
    padding: 10px 0px;
}
div.schedule_wrapper {
    padding: 10px 0px;
    width: calc(100% - 10px);
    border: solid 1px #ccc;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #666;
    margin-bottom: 20px;
}
div.schedule_wrapper h3 {
    padding: 8px 10px;
    font-weight: normal;
    margin: 0px;
    font-size: 18px;
    color: #666;
}
div.schedule_wrapper div.schedule_list {
    padding: 0px 10px;
    margin: 0px;
}
div.schedule_wrapper div.schedule_list ol {
    padding: 0px;
    margin: 5px auto;
    border-top: solid 1px #ccc;
}
div.schedule_wrapper div.schedule_list ol li {
    padding: 10px 10px 5px 0px;
    margin: 0px 0px 0px 30px;
    font-size: 14px;
    line-height: 1.5em;
}
div.schedule_wrapper div.schedule_list ol li:hover {
    text-decoration: underline;
}
div.cal_wrapper table.cal tr th p {
    float: left;
    padding: 5px;
    margin: 0px;
    color: #666;
    font-size: 18px;
}

div.cal_wrapper table.cal tr th.month-title {
    padding: 16px 0;
}

div.cal_wrapper table.cal tr th div.cal_ui {
    float: right;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
    border: solid 1px #ccc;
    background-color: #fff;
    font-size: 18px;
    margin: 0px 1px;
    padding: 1px 5px;
    border-radius: 3px;
}
div.cal_wrapper table.cal tr td {
    border-top: solid 1px #eee;
}
div.cal_wrapper table.cal tr td {
    font-size: 16px;
    text-align: center;
}
div.cal_wrapper table.cal tr.headline td {
    padding: 5px 0px;
    color: #666;
}
div.cal_wrapper table.cal tr.headline {
    background-color: #eee;
}
div.cal_wrapper table.cal tr td div {
    position: relative;
    padding: 5px 15px;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
}
div.cal_wrapper table.cal tr td div span {
    display: none;
    position: absolute;
    top: 20px;
    left: 0px;
    width: 180px;
    border: solid 1px #eee;
    background-color: #fff;
    text-align: left;
    padding: 5px;
    z-index: 10;
    color: #000;
    font-weight: normal;
    line-height: 1.5em;
    box-shadow: 1px 1px 3px #666;
}
div.cal_wrapper table.cal {
    width: 80%;
}
div.cal_wrapper table.cal tr td div {
    padding: 24px;
}
div.cal_wrapper table.cal tr td div.Sat {
    color: #00f;
}
div.cal_wrapper table.cal tr td div.Sun {
    color: #f00;
}
div.cal_wrapper table.cal tr td div.Today {
    font-weight: bolder;
}
div.cal_wrapper table.cal tr td div.Deli {
    background-color: #efe;
}
div.cal_wrapper table.cal tr td div.Holyday {
    font-weight: bolder;
    color: #f00;
    background-color: #fee;
}
div.cal_wrapper table.cal tr td div.Birthday {
    font-weight: bolder;
    background-color: #eef;
    color: #090;
    border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.backward {
    color: #ccc;
    font-weight: normal;
    background-color: #fff;
    border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.pointer {
    cursor: pointer;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
    background-color: #eee;
}
