.box1 {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    border: 7px solid #015379;
    padding: 60px 20px;
    box-sizing: border-box;
    background: #fff;
}

/* ===========================
   製品仕様テーブル
=========================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    table-layout: auto;
}

table th,
table td {
    border: 1px solid #cfd8dc;
    padding: 12px 16px;
    vertical-align: middle;
}

table th {
    background: #015379;
    color: #fff;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

table td {
    background: #fff;
}

table tr:nth-child(even) td {
    background: #f8fafb;
}

table tr:hover td {
    background: #eef6fa;
}

@media only screen and (max-width:768px) {
    table {
        width: 100%;
        table-layout: fixed;
    }

    table th,
    table td {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        padding: 8px;
        font-size: 13px;
    }
}

/* ==================================================
   会社概要ページ ここから
================================================== */

.ncc-company-layout,
.ncc-company-layout * {
    box-sizing: border-box;
}

/* パソコン：左に表と地図、右に写真 */
.ncc-company-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
        "table photos"
        "access photos";
    align-items: start;
    column-gap: 28px;
    row-gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.ncc-company-table-area {
    grid-area: table;
    min-width: 0;
}

.ncc-company-photo-area {
    grid-area: photos;
    display: grid;
    gap: 24px;
    min-width: 0;
}

.ncc-company-access-area {
    grid-area: access;
    display: grid;
    gap: 16px;
    min-width: 0;
}

/* ==================================================
   会社概要表
================================================== */

.ncc-company-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
    background: #fff;
    border: 1px solid #cfd8dc;
    border-radius: 7px;
}

.ncc-company-table th,
.ncc-company-table td {
    padding: 18px 20px;
    vertical-align: middle;
    border-right: 1px solid #cfd8dc;
    border-bottom: 1px solid #cfd8dc;
}

.ncc-company-table tr:last-child th,
.ncc-company-table tr:last-child td {
    border-bottom: 0;
}

.ncc-company-table td:last-child {
    border-right: 0;
}

/* 左側の項目欄 */
.ncc-company-table th {
    width: 122px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    background: #015379;
}

/* 右側の内容欄 */
.ncc-company-table td {
    color: #333;
    font-size: 14px;
    line-height: 1.85;
    text-align: center;
    background: #fff;
}

/* 1行おきに薄いグレー */
.ncc-company-table tr:nth-child(even) td {
    background: #f8fafb;
}

/* マウスを載せた行 */
.ncc-company-table tr:hover td {
    background: #eef6fa;
}

/* 左側の項目欄は青色を維持 */
.ncc-company-table tr:hover th {
    color: #fff;
    background: #015379;
}

/* ==================================================
   本社・柏工場写真
================================================== */

.ncc-location-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5ea;
    border-radius: 7px;
    box-shadow: 0 5px 18px rgba(0, 54, 82, 0.10);
}

.ncc-location-photo__media {
    position: relative;
    overflow: hidden;
    background: #eef3f6;
}

/*
   写真の高さを固定せず、元画像の縦横比で全体表示する。
   object-fit: cover や aspect-ratio は使用しない。
*/
.ncc-location-photo__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
}

/* 写真上の青いラベル */
.ncc-location-photo__label {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 8px 17px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    background: #00638f;
    border-radius: 4px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

/* ==================================================
   アクセスマップ
================================================== */

.ncc-access-card {
    display: grid;
    grid-template-columns: 43% minmax(0, 1fr) 42px;
    align-items: stretch;
    min-height: 148px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #bfd0da;
    border-radius: 7px;
}

.ncc-access-card__map {
    min-height: 148px;
    overflow: hidden;
    background: #edf2f5;
}

.ncc-access-card__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 148px;
    border: 0;
    pointer-events: none;
}

.ncc-access-card__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 17px 14px 17px 18px;
}

.ncc-access-card__text h3 {
    margin: 0 0 9px;
    padding: 0;
    color: #00638f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.ncc-access-card__text p {
    margin: 0;
    color: #444;
    font-size: 13px;
    line-height: 1.8;
}

/* 右端の丸い矢印ボタン */
.ncc-access-card__button {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    margin-right: 11px;
    color: #fff !important;
    font-size: 24px;
    line-height: 1;
    text-decoration: none !important;
    background: #00638f;
    border-radius: 50%;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.ncc-access-card__button:hover {
    color: #fff !important;
    background: #004f73;
    transform: translateX(2px);
}

/* ==================================================
   中間幅：PC版2列のまま左右余白を確保
================================================== */

@media only screen and (min-width: 901px) and (max-width: 1211px) {
    .ncc-company-layout {
        width: calc(100% - 32px);
    }
}

/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 900px) {
    .ncc-company-layout {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "table"
            "photos"
            "access";
        gap: 22px;
    }

    .ncc-company-photo-area {
        gap: 18px;
    }
}

/* ==================================================
   スマートフォン
================================================== */

@media only screen and (max-width: 600px) {
    .ncc-company-table th,
    .ncc-company-table td {
        padding: 14px 11px;
    }

    .ncc-company-table th {
        width: 94px;
        font-size: 13px;
        white-space: normal;
    }

    .ncc-company-table td {
        font-size: 13px;
        line-height: 1.75;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .ncc-location-photo__label {
        top: 10px;
        left: 10px;
        padding: 7px 13px;
        font-size: 13px;
    }

    .ncc-access-card {
        grid-template-columns: minmax(0, 1fr) 44px;
        min-height: 0;
    }

    .ncc-access-card__map {
        grid-column: 1 / -1;
        height: 165px;
        min-height: 165px;
    }

    .ncc-access-card__map iframe {
        min-height: 165px;
    }

    .ncc-access-card__text {
        padding: 15px;
    }

    .ncc-access-card__text h3 {
        font-size: 16px;
    }

    .ncc-access-card__button {
        margin-right: 10px;
    }
}

/* ==================================================
   会社概要ページ ここまで
================================================== */