@charset "UTF-8";

/* --------------------------------------------------
 Day service-blc
-------------------------------------------------- */
#service-blc .txt-warning {
    color: #ff0000;
}

#day-blc .txt-detail {
    text-align: center;
}

#day-blc .day-flex {
    margin: 4rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#day-blc .day-flex>div {
    width: calc(100% / 2);
    margin-right: 4%;
}

#day-blc .day-flex>div:last-child {
    margin-right: 0;
}

/* Schedule Area --------------- */

.schedule-area {

    border: 2px solid #58a202;
    box-sizing: border-box;
}

.schedule-detail {

    padding: 2rem;
    box-sizing: border-box;
}

.schedule-area .ttl {
    background-color: #58a202;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    box-sizing: border-box;
    font-size: 150%;
    font-weight: 500;
}

.schedule-area .list>dl {
    display: flex;
    justify-content: flex-start;
    padding: 15px 2rem;
    box-sizing: border-box;
    background-color: #d6f196;
    border-bottom: 1px solid #58a202;
}

.schedule-area .list>dl dt {
    width: 100px;
    padding-right: 10px;
    line-height: 1.5;
    color: #58a202;
    font-weight: bold;
    box-sizing: border-box;
}

.schedule-area .list>dl dd {
    width: calc(100% - 100px);
    line-height: 1.5;
}

.schedule-area .list>dl:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

/* Schedule Detail --------------- */

.schedule-detail ul li .ttl {
    display: block;
    font-weight: bold;
    padding-left: 50px;
    position: relative;
    color: #58a202;
    box-sizing: border-box;
}

.schedule-detail ul li .ttl::before {
    content: "";
    background-image: url(../img/common/icn_menu.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 26px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 10px;
}

.schedule-detail ul li {
    margin-bottom: 4%;
}

.schedule-detail ul li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:1000px) {
    #day-blc .day-flex {
        flex-wrap: wrap;
    }

    #day-blc .day-flex>div {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4%;
    }

    #day-blc .day-flex>div:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width:767px) {
    .schedule-detail {
        padding: 6% 4%;
    }

    .schedule-area .list>dl {
        padding: 20px 4%;
    }

    .schedule-detail ul li .ttl::before {
        top: 5px;
    }
}

@media screen and (max-width:480px) {
    .schedule-detail ul li .ttl {
        padding-left: 40px;
    }

    .schedule-area .list>dl {
        padding: 10px 4%;
    }

    .schedule-area .list>dl dt {
        width: 80px;
    }

    .schedule-area .list>dl dd {
        width: calc(100% - 80px);
    }

    #day-blc .day-flex {
        margin: 2rem 0 0 0;
    }
}