@charset "utf-8";
.calendar_base {
   width: 50%;
   margin: 0 ;
   background-color: rgba(255, 255, 255, 0.7);
   padding-bottom: 5px;
   box-shadow: 0px 0px 8px #bbbaba8e;
}
.calendar_base h2{
   font-weight: 600;
   letter-spacing: .2vh;
   color: #333;
   background-color:#d1d1d1;
   font-size: 1.2rem;
   padding: 10px 20px;
}
.calendar_base h2 span {
   font-weight: normal;
   font-size: .85rem;
   letter-spacing: normal;
   margin-left: 20px;
}
.cld-main{
    width: 90%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0px auto 50px;
 }
 .cld-main a{
    color: #004b88;
 }
 .cld-main svg{
    fill: #004b88;
 }
 .cld-datetime{
    position: relative;
    padding: 20px 0px;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
 }
 .cld-datetime .today{
    position: relative;
    float: left;
    width: calc(100% - 40px);
    margin: auto;
    text-align: center;
 }
 .cld-nav{
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
 }
 .cld-nav:hover{
   cursor: pointer;
 }
 .cld-nav:hover svg{
    fill: #004b88;
 }
 .cld-rwd{
    float: left;
 }
 .cld-fwd{
    float: right;
 }
 .cld-labels,
 .cld-days{
    padding-left: 0;
 }
 .cld-label,
 .cld-day{
    box-sizing: border-box;
    display: inline-block;
    width: 14.28%;
    text-align: center;
 }
 .cld-day{
    border: 1px solid #eee;
 }
 /* .cld-day.today .cld-number{
    background: #004b88;
    color: #fff;
 } */

.cld-day.today .cld-number{
   font-weight: bold;
   color: #004b88;
}
 .cld-day.disableDay{
    opacity: 0.5;
 }
 .cld-day.nextMonth,
 .cld-day.prevMonth{
    opacity: 0.33;
 }
 .cld-number{
    position: relative;
    margin: 0;
    padding: 10px;
 }
 .cld-title{
    position: absolute;
    z-index: 5;
    display: none;
    top: 35px;
    left: -35px;
    padding: 5px 10px;
    background: #fff;
    white-space: nowrap;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: .9rem;
    font-weight: bold;
    color: #333;
 }
 .cld-number:hover .cld-title{
    display: block;
 }
 .cld-title::before{
    content: '';
    position: absolute;
    top: -7.5px; left: 30px;
    width: 0;
    height: 0;
    border-left: 7.5px solid transparent;
    border-right: 7.5px solid transparent;
    border-bottom: 7.5px solid #ccc;
 }
 /* .cld-number.eventday{
    font-weight: bold;
    color: #004b88;
 } */
 .cld-number.eventday{
   background: #1362a3;
   color: #fff;
}
 .cld-number.eventday:hover{
    cursor: pointer;
    background: #014277;
 }
 /* .today .cld-number.eventday:hover{
    background: #004b88;
 } */
 .eventday::after {
    position:absolute;
 }
 .cld-title a {
   pointer-events: none;
 }
 .cld-label:nth-of-type(1){
    color: #fd6767;
 }
 .cld-label:nth-of-type(7){
   color: #678afd;
}
.cld-days li:nth-child(4),
.cld-days li:nth-child(11),
.cld-days li:nth-child(18),
.cld-days li:nth-child(25),
.cld-days li:nth-child(32),
.cld-days li:nth-child(39)
{
   background-color: #aaa;
   position: relative;
}
.cld-days li:nth-child(4)::after,
.cld-days li:nth-child(11)::after,
.cld-days li:nth-child(18)::after,
.cld-days li:nth-child(25)::after,
.cld-days li:nth-child(32)::after,
.cld-days li:nth-child(39)::after{
   content: "休";
   font-weight: bold;
   font-size: .7rem;
   margin: 0;
   position: absolute;
   bottom:0px;
   left: calc(50% - .3rem);
}
.cld-number.eventday::after{
   content: "イベント";
   font-weight: bold;
   letter-spacing: -0.1rem;
   font-size: .7rem;
   margin: 0;
   position: absolute;
   bottom:0px;
   left: calc(50% - 1.3rem);
}
@media(max-width:450px){
   .cld-number.eventday::after{
      content: "";
   }
}
