@charset "utf-8";

/* company */

.page_title_company {
    width: 100%;
    height: 30vw;
    position: relative;
    background-image: url("https://souwa-service.jp/wp-content/themes/souwa_theme/assets/img/page_title_company.jpg");
    background-size: 100%;
    background-position: top;
    overflow: hidden;
}
.greeting {
    padding: 30px;
    display: flex;
    background-color: #e5f1f6;
}
.president_img p {
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
}
.president_img {
    width: 50%;
    margin: auto 0;
}
.president {
    width: 50%;
    margin: 0px auto;
    background-image: url("https://souwa-service.jp/wp-content/themes/souwa_theme/assets/img/president_img.png");
    background-size: 100%;
    background-position: center;
    border: solid 5px #0084cc;
    border-radius: 50%;
}
.president_img p {
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
}
.greeting_img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.greeting_img img {
    width: 100%;
}
table {
    width: 80%;
    margin: 30px auto;
    text-align: center;
    border-collapse: collapse;
}
table tr {
    border-bottom: solid 2px #ffffff;
}
table tr:last-child {
    border-bottom: none;
}
table th {
    width: 30%;
    height: 100px;
    padding: 10px 0;
    vertical-align: middle;
    color: #ffffff;
    text-align: center;
    background-color: #0084cc;
}
table td {
    width: 70%;
    padding-left: 10px;
    vertical-align: middle;
    text-align: left;
    background-color: #eeeeee;
}

/* responsive */
@media screen and (max-width: 690px) {
    .greeting {
        padding: 30px;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .president_img {
        width: 100%;
    }
    .greeting_img {
        width: 100%;
        margin-top: 20px;
    }
}