@charset "UTF-8";

/* about */

.about_table {
    width: 100%;
}

.about_table tbody tr {
    border-bottom: solid 1px #B7B7B7;
}

.about_table tbody tr th {
    padding: 17px 15px;
    border-bottom: solid 2px #036EB8;
    width: 112px;
    vertical-align: middle;
}

.about_table tbody tr td {
    flex: 1;
    padding: 17px 30px;
}

.about_table tbody tr td .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #2EA7E0;
    border: solid 2px #2EA7E0;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    width: 330px;
}

.about_table tbody tr td .contact::before {
    content: "\e900";
    color: #fff;
    font-family: 'icomoon';
}

.about_table tbody tr td .contact:hover {
    opacity: 1;
    color: #2EA7E0;
    background: #fff;
}

.about_table tbody tr td .contact:hover::before {
    color: #2EA7E0;
}


/* privacy */

.privacy_intro {
    margin-bottom: 50px;
}

.privacy_list_item {
    margin-bottom: 30px;
}

.privacy_list_item_ttl {
    margin-bottom: 10px;
    color: #036EB8;
}


@media screen and (max-width:767px) {
    

    .about_table tbody tr {
        display: flex;
        flex-flow: column;
        margin-bottom: 20px;
    }

    .about_table tbody tr th {
        width: 100%;
    }

    .about_table tbody tr th,
    .about_table tbody tr td {
        padding: 10px 15px;
    }

    .about_table tbody tr td .contact {
        width: 100%;
        font-size: 15px;
        margin-top: 5px;
    }
}