@charset "Shift_JIS";

/* company Style */
.sec-title {
    font-size: 26px;
    line-height: 160%;
    font-weight: 600;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .sec-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

#outline {
    margin-top: 100px;
}

#outline .sec-title {
    width: 15%;
    text-align: left;
}

#outline .sec-contents {
    width: 75%;
    padding-left: 10%;
    text-align: left;
}

.list-table .item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #d5d5d5;
    padding: 20px 0;
    font-size: 15px;
}

.list-table .item .title {
    width: 15%;
    border-right: solid 1px #d5d5d5;
    padding: 0 5px;
}

.list-table .item .comment {
    width: 85%;
    padding-left: 40px;
}

.btn-bl {
    cursor: pointer;
    display: inline-block;
    margin: 10px auto 0;
    padding: 12px 20px;
    background: #333;
    color: #fff;
    border: solid 1px #333;
    border-radius: 0;
    font-family: 'Shippori Mincho';
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    position: relative;
    transition: all 300ms 0s ease;
}

.btn-bl span {
    display: inline-block;
    margin-left: 12px;
}

.btn-bl span img {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5)) invert(100%) sepia(0%) saturate(3156%) hue-rotate(357deg) brightness(117%) contrast(100%);
    transition: all 300ms 0s ease;
}

.btn-bl:hover {
    background: #fff;
    color: #333;
}

.btn-bl:hover span img {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}

/*==== mobile スマフォ横?用css ===*/
@media screen and (max-width: 768px) {

    #outline .sec-title,
    #outline .sec-contents {
        width: 100%;
    }

    #outline .sec-contents {
        padding: 0;
        margin-top: 40px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    #outline {
        margin-top: 40px;
    }

    #outline .sec-contents {
        margin-top: 0;
    }

    .list-table .item .title,
    .list-table .item .comment {
        width: 100%;
        padding: 0;
    }

    .list-table .item .title {
        border: none;
        font-weight: 600;
        margin-bottom: .5em;
    }

    .list-table .item .comment {
        padding: 0;
    }
}