.calendar {
    margin: 9% auto 0;
    border-radius: 20px;
    padding: 10% 16%;
    background: #f8f8f8;
}
.calMonthSelect {
    position: relative;
    margin: 0 0 8%;
}
.calMonthSelect .prev,
.calMonthSelect .next {
    position: absolute;
    width: 13%;
    padding-top: 13%;
    background: url("/cematin/images/btn_arrow1.png") no-repeat center center;
    background-size: 44% auto;
    margin-bottom: -1%;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.calMonthSelect .prev {
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.calMonthSelect .next {
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.calMonthSelect .prev:hover,
.calMonthSelect .next:hover {
    background: url("/cematin/images/btn_arrow1_hover.png") no-repeat center center;
    background-size: 44% auto;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.calMonthSelect .calCurrentYM {
    text-align: center;
    color: #003B73;
}
.calMonthSelect .calCurrentYM .calCurrentY {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    -webkit-transform: rotate(0.05deg);
    transform: rotate(0.05deg);
    margin: 0 1% 0 0;
}
.calMonthSelect .calCurrentYM .calCurrentM {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.13em;
}
.calMonthly {
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 1%;
}
.calHeader .col,
.calDetail .col {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    -webkit-transform: rotate(0.05deg);
    transform: rotate(0.05deg);
    width: 13%;
    padding: 3.5% 0 4%;
}
.calHeader .col {
    background: #FFE500;
    border-radius: 50%;
    color: #003B73;
}
.calHeader .col:first-of-type {
    background: #F34473;
    color: #FFFFFF;
}
.calHeader .col:last-of-type {
    background: #2595D1;
    color: #FFFFFF;
}
.calDetail .col {
    color: #003B73;
}
.calDetail .col:first-of-type {
    color: #F34473;
}
.calDetail .col:last-of-type {
    color: #2595D1;
}
.calDetail .onAir {
    background: #E9E9E9;
    border-radius: 50%;
    color: #003B73;
    cursor: pointer;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.calDetail .onAir:hover {
    background: #fff;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
