/*--------------------------------------------------------------------------------
　▼ 管理委託プラン sec01
--------------------------------------------------------------------------------*/
.sec01 {
    padding: 100px 0 50px;
}

.sec01 .inner-box {
    width: 1000px;
}

.sec01 h2 {
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
}


/*--------------------------------------------------------------------------------
　▼ sec02
--------------------------------------------------------------------------------*/
.sec02 {
    background-color: #efefef;
    padding: 50px 0 40px;
}

.sec02 .inner-box {
    width: 1000px;
}

table {
    border: 6px solid #000;
    margin: 0 0 10px;
}

table thead tr th {
    border-bottom: 6px solid #000;
    font-size: 30px;
    width: 31%;
}

table thead tr td {
    border-bottom: 6px solid #000;
    font-size: 30px;
}

table tr th {
    background-color: #f9ad5c;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    font-size: 24px;
    padding: 15px 10px;
}

table tr td {
    background-color: #ffdebb;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    font-size: 18px;
    text-align: center;
    padding: 15px 10px;
}

.sec02 ul {
    font-size: 0;
    margin: 0;
}

.sec02 ul li {
    display: inline-block;
    font-size: 18px;
    padding: 0 0 5px;
    width: 30%;
}

/*---------------------------------タブレット用----------------------------------*/
/*-----------------------------------------------------------------------------*/
@media screen and (max-width:900px) {


    .sec01 .inner-box {
        width: 90%;
    }

    .sec02 .inner-box {
        width: 90%;
    }

}

/*---------------------------------スマホ用-------------------------------------*/
/*-----------------------------------------------------------------------------*/
@media screen and (max-width:640px) {

    .sec01 {
        padding: 50px 0;
    }

    .sec01 h2 {
        font-size: 20px;
    }

    .sec02 .font18 {
        font-size: 15px !important;
    }

    table thead tr th,
    table thead tr td {
        font-size: 14px;
        padding: 5px;
    }

    table tr th,
    table tr td {
        font-size: 14px;
        padding: 5px;
    }

    .sec02 ul li {
        display: block;
        font-size: 16px;
        width: 100%;
    }

}