@charset "utf-8";
/* CSS Document */

.wrapper{
    max-width: 220px;
    margin: 18px auto;
    color: #666;
	background: repeating-linear-gradient(135deg,blue,lightskyblue,blue);
	padding: 10px;
	border-radius: 8px;
}
#header {
    text-align: center;
    font-size: 18px;
	width: 60%;
    margin: 1px auto 12px;
	color: ghostwhite;
}

/*カレンダー*/
#calendar {
    text-align: center;
    width: 100%;
}
#calendar table {
    outline: 2px solid #ddd;
    border-collapse: collapse;
    width: 100%;
	background: white;
}
#calendar th {
    color: #777;
}
#calendar th, #calendar td {
    outline: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}
/*日曜日*/
#calendar td:first-child {
    color: red;
}
/*土曜日*/
#calendar td:last-child {
    color: blue;
}
/*前後月の日付*/
#calendar td.disabled {
    color: #ccc;
}

#calendar td.holiday {
	color: red;
}

/*本日*/
#calendar td.today {
    background-color:#3EA5F9;
    color: #fff;
}

/*ボタン*/
#next-prev-button {
    position: relative;
}
#next-prev-button button{
    cursor: pointer;
    background: #41EEF7;
    color: #000;
    border: 1px solid #41eef7;
    border-radius: 4px;
    font-size: 1rem;
    padding: 0.3rem 4%;
    margin: 1rem 0;
}
#next-prev-button button:hover{
    background-color:#28AFFB;
    border-color: #28affb;
}
#prev {
	position: absolute;
	z-index: 10;
	top: -51px;
	left: 0;
}
#next {
    position: absolute;
	z-index: 10;
	top: -51px;
	right: 0;
}

/*以下レスポンシヴ*/
@media screen and (max-width:480px){

.wrapper{
	display: none;
}
}