@charset "UTF-8";

:root {
    --primary-white: #FFFFFF;
    --primary-gray: #F2F2F2;
    --primary-blue: #016FD7;
    --primary-orange: #FE9028;
    --primary-black: #222222;
    --section-padding: 72px 5.3%;
}

@media screen and (min-width: 768px) {
    :root {
        --section-padding: 108px 3em;
    }
}

/* ----------------------------------------------
メッセージ
----------------------------------------------*/
.name {
    font-size: 2.2rem;
    /* font-weight: 700; */
}


@media screen and (min-width:1024px) {
    .company-message .secImg {
        width: 45%;
    }

    .company-message .secTxtWrapper {
        width: 55%;
    }
}





/* ----------------------------------------------
会社情報
----------------------------------------------*/

.company-information {
    background-color: var(--primary-gray, #F2F2F2);
}

.secImg.information {
    margin-top: 40px;
}

.table {
    margin: 0 auto;
    width: 100%;
    max-width: 720px;
}

.table:nth-child(2) {
    margin-top: 3em;
}

.table__content {
    display: flex;
    flex-direction: column;
}

.tableTitle {
    color: #016FD7;
    padding: 1em 1em 0;
    text-align: left;
    font-weight: 700;
}

.tableTxt {
    padding: 0 1em 1em;
    text-align: left;
    border-bottom: solid 1px #d8d8d8;
}

.secImg {
    width: 100%;
}

.secImg img {
    width: 100%;
    height: auto;
}


@media screen and (min-width:768px) {

    .company-information .inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1em;
    }

    .company-information .inner .titleWrapper {
        width: 30%;
        display: block;
    }

    .company-information .inner .titleWrapper .mainTitle {
        margin-bottom: 0.5em;
    }

    .company-information .inner .secWrapper {
        width: 70%;
        margin-top: 0;
    }

    .table {
        max-width: 100%;
    }

    .table__content {
        flex-direction: row;
        border-bottom: solid 1px #d8d8d8;
    }


    .tableTitleList,
    .tableList {
        display: flex;
    }

    .tableTitle {
        text-align: left;
        padding: 1.5em;
        width: 25%;
    }


    .tableTxt {
        padding: 1.5em;
        width: 70%;
        text-align: left;
        border-bottom: none;
    }
}

@media screen and (min-width:1024px) {
    .secWrapper {
        justify-content: center;
        gap: 3em;
    }

    .secWrapper.information {
        flex-direction: column;
        align-items: center;
    }

    .secImg.information {
        width: 100%;
        height: auto;
        margin-top: 64px;
    }

    .secImg {
        width: 50%;
        margin: 0;
    }

    .secImg img {
        width: 100%;
        height: auto;
    }
}


@media screen and (min-width:1224px) {
    .company-message .inner {
        padding: 10em 8em;
    }

    .company-information .inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1em;
        padding: 10em 0em 10em 8em;
    }

    .tableTitle {
        width: 20%;
    }
}