@charset "UTF-8";

/*-------------------------------- */
/*会社概要
---------------------------------- */
.gradation {
    /* 色の順番を逆にし、21%を79%に変更 */
    background-image: linear-gradient(to bottom, #001389, #1b94cb 79%, #37bbbd);
}

.subpage-title-header {
    background-color: var(--color-main);
    padding: 100px;
}

.title-heading {
    color: #fff;
    text-align: center;
    font-size: 3.5rem;
}

.overview {
    margin-top: 160px;
    margin-bottom: 160px;
}

.overview .max-width {
    max-width: 1000px;
}

.list li {
    display: flex;
    position: relative;
    margin-bottom: 16px;
    padding: 0px 0 13px 25px;
    font-size: 1.8rem;
    font-weight: bold;
}

.list p {
    font-size: 1.8rem;
}

.list li::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8em;
    height: 1px;
    background-color: var(--color-main);
    /*線の色①*/
}

.list li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 8em;
    width: calc(100% - 8em);
    height: 1px;
    background-color: #c3c3c3;
    /*線の色②*/
}

.list li span {
    display: block;
    margin-bottom: 4px;
    width: 10.5em;
}

@media screen and (max-width: 768px) {
    .overview {
        margin-top: 140px;
    }

    .list li {
        font-size: 1.4rem;
    }

    .list p {
        font-size: 1.4rem;
    }

}


@media screen and (max-width: 480px) {
    .title-heading {
        font-size: 2.8rem;
    }

    .subpage-title-header {
        padding: 60px 10px;
    }

    .overview {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .list li {
        font-size: 1.2rem;
        padding: 0px 0 13px 5px;
    }

    .list li span {
        width: 8em;
    }
}