@charset "utf-8";

/* ===============
titleスタイル
=============== */
.company-bg-img {
    background-image: url(../images/company/company-bg-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 100%;
    opacity: 0.7;
    height: 310px;
}

.title {
    text-align: center;
    margin-top: 60px;
}

.title::after{
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============
tableスタイル
=============== */
table {
    width: 930px;
    max-width: 90%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;

    border-collapse: collapse;
}

table tr {
    border-bottom: solid 2px white;
}

table tr:last-child {
    border-bottom: none;
}

table th {
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #00a1e9;
    color: white;
    text-align: center;
    padding: 10px 0;
}

table th:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
    border-left: 10px solid #00a1e9;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

table td {
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}

/* ===============
footerスタイル
=============== */
.footer {
    margin-top: 60px;
}

@media (max-width: 800px) {
    table {
        width: 100%;
    }
}