@charset "utf-8";

.calendar-title {
        font-family: 'Kiwi Maru', serif;
        position: absolute;
        top: 3.5vw;
        left: 10%;
        z-index: 1;
        color: #ffffff;
        font-size: 7vw;
        font-weight: normal;
}

.calendar-header {
        max-width: 1200px;
        width: 94%;
        margin: 3% auto;
        padding-bottom: 5px;
}

.calendar-header .header-inner {
        height: 23vw;
        position: relative;
        background-color: #20aee5;
        border-radius: 5px;
}

.calendar-header .calendar-img-ico {
        position: absolute;
        bottom: 10%;
        right: 10%;
        width: 20%;
        height: auto;
        object-fit: cover;
}

/* main */
#business-calendar {
        padding-top: 1%;
        background-color: #bae3f9;
        background-image: radial-gradient(#d3edfb 20%, transparent 20%), radial-gradient(#d3edfb 20%, transparent 20%);
        background-size: 40px 40px;
        background-position: 0 0, 20px 20px;
}

#business-calendar table.calendar {
        padding: 0;
        margin: 0 auto;
}

#business-calendar table.calendar td {
        width: 45px;
        height: 40px;
        line-height: normal;
        color: #333333;
        border-bottom: solid 1px #CCCCCC;
        text-align: center;
}

#business-calendar table.calendar td.Today {
        font-weight: bolder;
}

#business-calendar table.calendar td.Sat {
        color: #000099;
}

#business-calendar table.calendar td.Sun {
        color: #FF0000;
}

#business-calendar table.calendar td.xday {
        color: #662244;
        background-color: #ffbbdd;
}

#business-calendar .date {
        margin: 50px auto;
        text-align: center;
}

#business-calendar .date-title {
        display: block;
        margin: 1rem auto;
        font-size: 2rem;
        font-weight: bold;
        color: #036eb8;
}

#business-calendar .date-table {
        width: 90%;
        height: 48vh;
        margin: 0 auto;
        padding: 0.1rem;
        background-color: #ffffff;
}

@media screen and (min-width:768px) {

        .calendar-title {
                position: absolute;
                left: 27%;
                top: 12rem;
                z-index: 1;
                color: #036eb8;
                font-family: 'Kiwi Maru', serif;
                font-weight: bold;
                font-size: 1.3rem;
        }

        .calendar-header .header-inner {
                margin-top: 8rem;
                height: 7rem;
                background-color: #bae3f9;
                background-image:
                        radial-gradient(#d3edfb 20%, transparent 20%),
                        radial-gradient(#d3edfb 20%, transparent 20%);
                background-size: 40px 40px;
                background-position: 0 0, 20px 20px;
        }

        .pc-calendar-title {
                position: absolute;
                left: 10%;
                bottom: 0;
                color: #036eb8;
                font-family: 'Kiwi Maru', serif;
                font-size: 4rem;
        }

        .calendar-header .calendar-img-ico {
                position: absolute;
                bottom: 0;
                right: 10%;
                width: auto;
                height: 150%;
                object-fit: contain;
        }

        #business-calendar .calendar-flex {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                max-width: 1200px;
                width: 94%;
                margin: 0 auto;
        }

        #business-calendar .date {
                width: 48%;
        }

        #business-calendar .date-table {
                width: 100%;
        }
}

@media screen and (min-width:1024px) {

        #business-calendar .date {
                width: 24%;
        }

        #business-calendar .date-table {
                height: 45vh;
        }
}