@charset "utf-8";

/*全体*/
.wrapper{
    max-width: 240px;
    max-height: 300px;
    margin-left:auto;
    margin-right:50px;
    color: #666;
}
#header {
    text-align: center;
    font-size: 20px;
    width: 100%;
    margin: 1rem 0 0;
    color:#000;
}


/*カレンダー*/
#calendar {
    text-align: center;
    width: 100%;
        
}
table {
    outline: 2px solid #ddd;
    border-collapse: collapse;
    width: 100%;
    height: 250px;    
}
th {
    color: #000;
}
th, td {
    outline: 0px solid #ddd;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}
/*日曜日*/
td:first-child {
    color: red;
}
/*土曜日*/
td:last-child {
    color: red;
}
/*祝日*/
td.holiday{
    color:red;
}
/*臨時開館*/
td.openday{
    color:black;
}
/*前後月の日付*/
td.disabled {
    color: #ccc;
}


/*ボタン*/
#next-prev-button {
    position: relative;
}
#next-prev-button button{
    cursor: pointer;   
    color: #090909;    
    font-size: 1rem;
    padding: 0.3rem 1.3rem;
    margin: 1rem 0;
}
#next-prev-button button:hover{
    background-color: #D4BB92;
    border-color: #020202;
}
#prev {
    float: left;
}
#next {
    float: right;
}