@charset "utf-8";
/*--京calendar.css--*/
.page_title{
    margin-top: 4rem;
}

.msg_holiday{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

    .msg_holiday .legend_holiday{
        display: inline-block;
        width: 2em;
        height: 1em;
        background: #e42331;
        margin-right: 0.3em;
    }

.calendar_title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-bottom: 2em;
    line-height: 1;
}

    .calendar_title h3{
        margin: 0;
        line-height: 1;
        padding-top: 0.1em;
    }

    .calendar_title .nav a{
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2rem;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background: #1e3c7d;
        border: 1px solid #1e3c7d;
        color: #fff;
        text-decoration: none;
        transition: .3s all ease;
    }

    .calendar_title .nav a:hover{
        background: #fff;
        color: #1e3c7d;
    }

.outCalendar{
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 4em;
}

    .innerCalendar{
        width: calc((100% - 4em) / 3);
    }

    .innerCalendar p{
        font-weight: 600;
        margin: 0;
        text-align: center;
        font-size: 1.1em;
    }

    .innerCalendar table{
        width: 100%;
        table-layout: fixed;
        line-height: 1.7;
        font-size: 0.9em;
    }

    .innerCalendar table th,
    .innerCalendar table td{
        border: 1px solid rgba(0,0,0,0.1);
        text-align: center;
    }

    .innerCalendar table thead th{
        background: #fafafa;
    }

    .innerCalendar table thead th:nth-child(1),
    .innerCalendar table tbody td:nth-child(1){
        background: #ffe1e1;
        color: #e42331;
    }

    .innerCalendar table thead th:nth-child(7),
    .innerCalendar table tbody td:nth-child(7){
        background: #d7f0fd;
        color: #2878e6;
    }

    .innerCalendar table tbody td.holiday{
        background: #e42331;
        color: #fff;
    }



/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){



}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .outCalendar{
        gap: 1.5em;
    }

    .innerCalendar {
        width: calc((100% - 1.5em) / 2);
    }

}