/*smile_one_academy.css*/
@charset "utf-8";
.header_title{
    background-image: url("../img/header/pc-dailyroutine-header.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1920px;
    background-position: 50% 80%;    
    margin: 0 auto;
    width: 100%;
    height: 600px;
    z-index: -10;
    padding-top: 70px;
}
.job-expamle tr:nth-child(odd){
    background-color: #B9F3FC;
}
.job-expamle th{
    width: auto;
}

.job-expamle td{
    width: auto;
}

.staff-dailyroutine{
    margin: 0 0;
    padding: 0 0;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;   
}

.staff-dailyroutine li{
    padding: 1em 1em;
    width: calc(100% / 2 - 2%);
    list-style-type: none;
    border: 2px solid #B9F3FC;
    border-radius: 5px;
}

.staff-dailyroutine li h3{
    text-align: center;
    margin-top: 0.5em;
    color: #00BCE3;
    padding: 0 0;

}

.staff-dailyroutine li h5{
    text-align: center;
    margin-bottom: 1em;
}

@media only screen and ( max-width: 869px ) {
    .header_title{
        background-image: url("../img/header/tablet-dailyroutine-header.jpg");
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
    }
    .staff-dailyroutine{
        flex-wrap: wrap;
    }
    .staff-dailyroutine li{
        width: 100%;
        margin-bottom: 2em;
    }
}

@media only screen and ( max-width: 480px ) {
    .header_title{
        background-image: url("../img/header/mobile-dailyroutine-header.jpg");
        height: 360px;
    }
    
}