/* section calendar */
.sec_cal {
    width: 360px;
    margin: 0 auto;
    font-family: "NotoSansR";
}

.sec_cal .cal_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 78px;
}

.sec_cal .cal_nav .year-month {
    width: 300px;
    text-align: center;
    line-height: 1;
}

.sec_cal .cal_nav .nav {
    display: flex;
    border: 1px solid #333333;
    border-radius: 5px;
}

.sec_cal .cal_nav .go-prev,
.sec_cal .cal_nav .go-next {
    display: block;
    width: 50px;
    height: 78px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_cal .cal_nav .go-prev::before,
.sec_cal .cal_nav .go-next::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-width: 3px 3px 0 0;
    transition: border 0.1s;
}

.sec_cal .cal_nav .go-prev:hover::before,
.sec_cal .cal_nav .go-next:hover::before {
    border-color: #ed2a61;
}

.sec_cal .cal_nav .go-prev::before {
    transform: rotate(-135deg);
}

.sec_cal .cal_nav .go-next::before {
    transform: rotate(45deg);
}

.sec_cal .cal_wrap {
    padding-top: 20px;
    position: relative;
    margin: 0 auto;
}

.sec_cal .cal_wrap .days {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.sec_cal .cal_wrap::after {
    top: 368px;
}

.sec_cal .cal_wrap .day {
    display:flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 7);
    text-align: left;
    color: #2F2F2F;
    font-size: 12px;
    text-align: center;
    border-radius:5px;
    font-weight: bold;
}

.current.today {
	box-shadow: 0 0 0 4px #B6DAEF inset;
	
}

.sec_cal .cal_wrap .dates {
    display: flex;
    flex-flow: wrap;
    height: 290px;
}

.sec_cal .cal_wrap .day:nth-child(7n) {
    color: #3c6ffa;
}

.sec_cal .cal_wrap .day:nth-child(7n + 1) {
    color: #ed2a61;
}

.sec_cal .cal_wrap .holiday{
    color: #ed2a61;
}

.sec_cal .cal_wrap .day.disable {
    color: #ddd;
    background-color: #F1F1F1;
}

.day.vacation {
    color: white;
    background-color: #F1F1F1;
}

.day.readyRes {
    color: #ddd;
    background-color: #B6DAEF;
}

.day.doneRes {
    color: #ddd;
    background-color: #FBCFD0;
}

.sec_cal .cal_wrap .holiday{
    color: #ed2a61;
}

.current:hover {
	background-color: #FFEC99;
}

@media screen and (max-width:400px){
	.sec_cal {
    width: 300px;
	}
	
}


dt {
 font-size: 1rem;
 line-height: 3rem;
 color: #696868;
 cursor: pointer;
}

body > dl > dt:first-child {
 background: rgb(50, 192, 145);
}

body > dl > dt:nth-child(3) {
 background: rgb(126, 126, 126);
}

dd {
 padding-left: 1.5rem;
 font-size: 0.8rem;
 color: #696868;
}
