#calender_contain{
    background-image: url(../img/background/AdobeStock_1025377788.webp);
    background-size: cover;
    background-color: rgba(255,255,255,0.7);
    background-blend-mode: lighten;
    width: 98%;
    margin: 0 auto;
    padding: 2vw;
}
#calender_day_list{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    justify-content: space-around;
    width: 80%;
    column-gap: 0.5vw;
    margin: 0 auto;
}
.calender_day{
    width: 100%;
    /* height: 2vw; */
    text-align: center;
    align-content: center;
    background-color: #b80837;
    color: white;
    font-size: 1.3vw;
    padding: 0.2vw;
}
#calender_date_list{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    justify-content: space-around;
    width: 80%;
    column-gap: 0.5vw;
    row-gap: 0.5vw;
    margin: 0 auto;
}
#calender_date_contain{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0.1vw solid;
    padding: 0.2vw;
    aspect-ratio: 1/1;
    background-color: white;
}
#calender_date{
    font-size: 2.5vw;
}
#calender_date_count{
    display: flex;
    justify-content: center;
}
.calender_date_count1{
    font-size: 1.5vw;
    align-self:flex-end;
    transform: translateY(-0.5vw);
}
#calender_date_count2{
    font-size: 4vw;
    color: #b80837;;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    #calender_day_list{
        display: grid;
        grid-template-columns: repeat(7,1fr);
        justify-content: space-around;
        width: 95%;
        column-gap: 0.5vw;
        margin: 0 auto;
    }
    .calender_day{
        width: 100%;
        /* height: 2vw; */
        text-align: center;
        align-content: center;
        background-color: #b80837;
        color: white;
        font-size: 2.5vw;
        padding: 0.2vw;
    }
    #calender_date_list{
        display: grid;
        grid-template-columns: repeat(7,1fr);
        justify-content: space-around;
        width: 95%;
        column-gap: 0.5vw;
        row-gap: 0.5vw;
        margin: 0 auto;
    }
    #calender_date{
        font-size: 3vw;
    }
    .calender_date_count1{
        font-size: 2vw;
        align-self:flex-end;
        transform: translateY(-0.5vw);
    }
    #calender_date_count2{
        font-size: 5vw;
        color: #b80837;;
        font-weight: bold;
    }
}