@charset "utf-8";

/* 下層共通設定（oem.css等と共通） */
.lower-page .page-header {
    background-color: #162d50;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}
.lower-page .page-header .en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}
.lower-page .page-header h2 {
    font-size: 28px;
    font-weight: 500;
}

/* マップエリア */
.access-map {
    margin-top: 60px;
}
.map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 の比率 */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 情報テーブル */
.access-info {
    padding: 60px 0 100px;
}
.access-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #333;
}
.access-table th, 
.access-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}
.access-table th {
    width: 200px;
    background-color: #f9f9f9;
    font-weight: 600;
    color: #162d50;
    vertical-align: top;
}
.access-table td {
    color: #333;
}

/* 交通手段の補足 */
.transport {
    margin-top: 15px;
    font-size: 15px;
}
.transport p {
    margin-bottom: 5px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .access-table th, 
    .access-table td {
        display: block;
        width: 100%;
    }
    .access-table th {
        padding-bottom: 5px;
        background-color: transparent;
    }
    .access-table td {
        padding-top: 5px;
        padding-bottom: 25px;
    }
    .lower-page .page-header {
        margin-top: 60px;
        padding: 60px 0;
    }
}