@charset "UTF-8";



/*===============================

共通

================================*/

.main-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    text-align: center;
    display: table;
    background-size: cover;
    background-position: center top;
    color: #FFF;
    margin-bottom: 100px;
}

.main-image::before {
    /* 透過させた黒を重ねる */
    background-color: rgba(0, 0, 0, 0.3);
    /* どの範囲に重ねるかを指定 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

.main-image .box {
    display: table-cell;
    vertical-align: middle;
}

.main-image h2 {
    position: relative;
    width: 100%;
    color: #FFF;
    font-size: 4.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-align: center;
}

.main-image .box p {
    position: relative;
    font-size: 1.4rem;
}

.table-container {
    border: solid 1px #eee;
    padding: 30px;
    width: 94%;
    margin: 0 auto 40px;
    font-size: 90%;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;

}

.table-container table th,
.table-container table td {
    padding: 5px 2px;
    text-align: center;
    border: solid 1px rgb(218, 218, 218);
}

.table-container table th {
    background-color: #eee;
    width: 30%;
}


@media screen and (max-width: 560px) {
    .table-container {
        margin: 0 auto 30px;
        padding: 8px;
        width: 96%;
        font-size: 70%;
    }

    .table-container table th,
    .table-container table td {
        padding: 3px 1px;
    }
}

/*===============================

会社概要

================================*/

#company {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}


#company .main-image {
    background-image: url(/img/008.jpg);
}