/* ===== style_okabe5.css ===== */

/* ===== ASパッカー(=asp) 固有テーブル ===== */
.asp-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 10pt;
}

/* ヘッダーセル：ダークレッド背景 */
.th-dark {
    background: #900000;
}

/* データセル */
.asp-td {
    text-align: center;
    padding: 5px 8px;
    border: 1px solid #ddd;
}

/* ===== 品名・織巾テーブル＋画像 横並び ===== */
.asp-spec-wrap {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin: 16px 0 24px;
    justify-content: center;
}
.asp-table-col {
    flex: 1;
}
.asp-img-col {
    flex-shrink: 0;
    text-align: center;
}
.asp-img-col img {
    display: block;
    max-width: 100%;
}

/* ===== 適用ロックボルト・材質形状 横並び ===== */
.asp-sub-wrap {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    margin: 0 0 24px;
}

/* ===== レスポンシブ（〜780px） ===== */
@media screen and (max-width: 780px) {

    .asp-spec-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .asp-img-col {
        width: 100%;
    }
    .asp-img-col img {
        margin: 0 auto;
    }

    .asp-sub-wrap {
        flex-direction: column;
        gap: 12px;
    }
    .asp-table-col {
        width: 100%;
    }
}


/* ===== style_okabe5p.css ===== */

/* ===== 青帯セクション見出し ===== */
.as345p-section {
    margin-bottom: 24px;
}

.as345p-section-heading {
    background-color: #2f67b3;
    color: #ffffff;
    font-size: 11pt;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    padding-left: 8px;
    margin: 16px 0 0;
}

.as345p-section-body {
    padding: 8px 0;
}

/* ===== 仕様テーブル 緑行（左列見出し用） ===== */
.spec-table td.head-green {
    background-color: #e6ffe6;
    text-align: center;
    border: 1px solid #808080;
    padding: 3px 6px;
}
.spec-table th.head-green {
    background-color: #e6ffe6;
    text-align: center;
    border: 1px solid #808080;
    padding: 3px 6px;
    font-weight: normal;
}

/* ===== 結果ボックス ===== */
.result-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 2px solid #ff5050;
    margin: 12px 0 24px;
}
.result-box-label {
    background-color: #ff5050;
    color: #ffffff;
    font-weight: bold;
    font-size: 11pt;
    padding: 8px 12px;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.result-box-body {
    padding: 8px 12px;
    font-size: 11pt;
    line-height: 1.6;
    margin: 0;
}

/* test-results-right 内の figure */
.test-results-right figure {
    text-align: center;
}
.test-results-right img {
    margin: 0 auto;
}


/* ===== レスポンシブ（〜780px） ===== */
@media screen and (max-width: 780px) {
    .result-box {
        flex-direction: column;
    }
    .result-box-label {
        justify-content: center;
        padding: 6px;
    }
}