@charset "shift_jis";
*,*::before,*::after {
	box-sizing: border-box;
}

/* ===== ベース ===== */
body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #000;
}
a:link    { color: #0000ff; }
a:visited { color: #0D4154;}

/* ===== ページ全体 ===== */
.page-wrap {
    width: 780px;
    margin: 0 auto;
}

figure {
    margin: 10px auto;
}
figcaption {
    text-align: center;
}

/* ===== ページヘッダー ===== */
.page-header {
    background-color: #525252;
    padding: 4px 0 0;
}
.page-header img {
    display: block;
}
.page-header-nav {
    background-color: #fff;
    text-align: right;
    font-size: 10pt;
    padding: 4px 4px 0;
}
.page-header-nav a {
    font-size: 10pt;
}

/* ===== カテゴリ見出し ===== */
.category-heading {
    background-color: #e1f2f4;
    height: 34px;
    line-height: 34px;
    margin: 0 0 10px;
    padding-left: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #003366;
}

/* ===== 製品ブロック見出し ===== */
.product-heading {
    display: flex;
    flex-direction: row;
    border: 1px solid #333333;
}
.product-heading-name {
    display: inline-flex;
    align-items: center;
    background-color: #666666;
    color: #fff;
    font-weight: 700;
    width: 320px;
    min-height: 32px;
    padding: 0 6px;
    margin: 0;
}
.product-heading-cat {
    color: #003366;
    font-size: 10pt;
    line-height: 32px;
    padding: 0 6px;
    flex: 1;
    margin: 0;
}

/* ===== 製品ブロック共通 ===== */
.product-block {
    margin-bottom: 24px;
}

/* ===== 製品概要（画像＋説明 横並び） ===== */
.product-overview {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 8px;
}
.product-overview-img {
    flex-shrink: 0;
}
.product-overview-img img {
    display: block;
}
.product-overview-desc {
    flex: 1;
    font-size: 11pt;
    line-height: 1.5;
}

/* ===== セクション小見出し ===== */
.section-heading {
    background-color: #efefef;
    color: #003366;
    font-weight: 700;
    font-size: 11pt;
    height: 30px;
    line-height: 30px;
    padding-left: 6px;
    margin: 16px 0 0;
}

/* ===== 本文段落 ===== */
.section-body {
    font-size: 11pt;
    line-height: 1.5;
    padding: 8px 0;
}

/* ===== 特長リスト ===== */
.feature-list {
    list-style: none;
    margin: 8px 0 24px;
    padding: 0;
}
.feature-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 11pt;
    line-height: 1.5;
    padding: 6px 6px;
}
.feature-list li::before {
    content: "●";
    color: #006699;
    font-weight: bold;
    flex-shrink: 0;
    padding-right: 4px;
}


/* ===== PDF リンク行 ===== */
.pdf-link-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 16px auto 8px;
    justify-content: center;
    font-size: 11pt;
}
.pdf-link-row img {
    display: block;
    flex-shrink: 0;
}


/* 仕様ブロック：テーブル＋画像 横並び */
.spec-layout {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.spec-layout-tables {
    flex: 1;
}
.spec-layout-tables .spec-table {
    width: 100%;
}
.spec-layout-img {
    flex-shrink: 0;
    text-align: center;
    padding-top: 60px;
}
.spec-layout-img img {
    max-width: 100%;
}

/* 仕様テーブル内サブ見出し */
.spec-block-heading {
    font-size: 11pt;
    font-weight: bold;
    margin: 12px 0 4px;
}
.spec-block-heading:first-child {
    margin-top: 16px;
}


/* ===== 仕様テーブル ===== */
.spec-table-wrap {
    overflow-x: auto;
    margin-bottom: 8px;
    text-align: center;
}
.spec-table {
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 10pt;
}
.spec-table th {
    background-color: #dbeff4;
    border: 1px solid #333;
    padding: 3px 6px;
    text-align: center;
    font-weight: normal;
    word-break: keep-all;
}
.spec-table td {
    background-color: #dbeff4;
    border: 1px solid #333;
    padding: 3px 6px;
    text-align: center;
    font-size: 10pt;
    line-height: 1.4;
}

/* 仕様テーブル注釈 */
.spec-note {
    font-size: 10pt;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.6;
}

/* 仕様テーブル上部キャプション */
.spec-caption {
    text-align: center;
    font-size: 11pt;
    margin: 16px 0 4px;
}

/* 仕様テーブル 行色 */
.spec-table td.row-light {
    background-color: #fff;
}
.spec-table th.head-light {
    background-color: #dbeff4;
    font-weight: normal;
}

/* ソイルガード テーブルヘッダー（濃グレー） */
.th-dark {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 5px 8px;
    border: 1px solid #ddd;
    font-weight: normal;
}

/* 画像センタリング */
.img-center {
    text-align: center;
    margin: 16px 0 24px;
}
.img-center img {
    display: block;
    width: fit-content;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.img-center-link {
    text-align: center;
    font-size: 11pt;
    margin-bottom: 8px;
}

/* 注釈リスト（※付き） */
.caution-list {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0;
    font-size: 10pt;
    line-height: 1.8;
}

/* 注意事項テキスト */
.notes-section {
    font-size: 11pt;
    line-height: 1.6;
}
.notes-section .note-bullet {
    color: #2f67b3;
    font-weight: bold;
}

/* ===== 付属部品画像 ===== */
.parts-img-wrap {
    text-align: center;
    margin: 16px 0 24px;
}
.parts-img-wrap img {
    display: inline-block;
    max-width: 381px;
}

/* ===== AS345 種別ボックス 2列 ===== */
.spec-boxes {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
}
.spec-box {
    flex: 1;
    border: 1px solid #666666;
}
.spec-box-heading {
    background-color: #efefef;
    color: #003366;
    font-weight: 700;
    font-size: 11pt;
    height: 30px;
    line-height: 30px;
    padding-left: 6px;
    margin: 0;
    border-bottom: 1px solid #666666;
}
.spec-box-body {
    padding: 6px 8px;
    font-size: 11pt;
    line-height: 1.7;
}

/* ベルキャップ 特長リスト（番号マーク） */
.feature-list-num {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0;
}
.feature-list-num li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 11pt;
    line-height: 1.5;
    padding: 4px 6px;
}
.feature-list-num li .feat-num {
    color: #006699;
    font-weight: bold;
    flex-shrink: 0;
    min-width: 2.4em;
}
/* 青太字の項目見出し */
.feat-title {
    color: #006699;
    font-weight: bold;
}

/* 試験セクション共通 */
.test-section {
    margin-bottom: 16px;
}

/* 試験結果：テキスト＋グラフ 横並び */
.test-results-layout {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.test-results-left {
    flex: 1;
}
.test-results-right {
    flex-shrink: 0;
    text-align: center;
}
.test-results-right figure {
    margin: 0;
}
.test-results-right figcaption {
    font-size: 10pt;
    margin-top: 4px;
}
.test-results-right img {
    display: block;
    max-width: 100%;
}

/* ===== ページ内ナビ ===== */
.page-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 10pt;
    margin: 8px 0 0;
}
.page-nav-right {
    text-align: right;
    font-size: 10pt;
    margin: 8px 0;
}

/* ===== ページ区切り ===== */
.page-break {
    page-break-before: always;
}

/* ===== フッター（i-footer.htm） ===== */
.contact-footer {
    width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-footer-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-rule {
    flex: 1;
    border: none;
    border-top: 1px solid #006699;
    margin: 0;
}

.contact-footer-title {
    color: #006699;
    font-size: 11pt;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
}

.contact-footer-body {
    border: 1px solid #ccc;
    padding: 0 12px 8px;
    text-align: center;
    font-size: 10pt;
    line-height: 1.8;
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-footer-body p {
    margin: 0;
}
.contact-footer-body strong {
    font-size: 1rem;
}



/* ===== レスポンシブ（〜780px） ===== */
@media screen and (max-width: 780px) {

    /* ===== ページ全体 ===== */
    .page-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 0 8px;
    }

    /* ===== ページヘッダー ===== */
    .page-header img {
        width: 100%;
        height: auto;
    }
    .page-header-nav a {
        word-break: keep-all;
    }

    /* ===== セクション小見出し ===== */
    .section-heading {
        height: auto;
    }

    /* ===== 製品ブロック見出し ===== */
    .product-heading {
        flex-direction: column;
    }
    .product-heading-name {
        width: 100%;
        box-sizing: border-box;
    }
    .product-heading-cat {
        line-height: 1.6;
        padding: 4px 6px;
    }

    /* ===== 製品概要（画像＋説明） ===== */
    .product-overview {
        flex-direction: column;
        align-items: center;
    }
    .product-overview-img img {
        width: 100%;
        height: auto;
    }
    .product-overview-desc {
        width: 100%;
    }

    /* ===== 仕様テーブル ===== */
    .spec-layout {
        flex-direction: column;
    }
    .spec-layout-tables {
        margin: auto;
    }
    .spec-layout-img {
        padding-top: 0;
        width: 100%;
    }
    
    .spec-table-wrap {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .spec-table {
        min-width: 560px;
        font-size: 9pt;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 2px 4px;
    }

    /* ===== AS345 種別ボックス ===== */
    .spec-boxes {
        flex-direction: column;
        gap: 12px;
    }
    .spec-box {
        width: 100%;
        box-sizing: border-box;
    }

    /* 試験結果：テキスト＋グラフ 横並び */
    .test-results-layout {
        flex-direction: column;
    }
    .test-results-right {
        width: 100%;
    }
    .test-results-right img {
        margin: 0 auto;
    }
    
    /* ===== PDFリンク行 ===== */
    .pdf-link-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 4px;
        margin: 12px 0 8px;
    }

    /* ===== 付属部品画像 ===== */
    .parts-img-wrap img {
        width: 100%;
        height: auto;
    }

    /* ===== ページ内ナビ ===== */
    .page-nav-right {
        margin: 6px 0;
    }

    /* ===== フッター（i-footer.htm） ===== */
    .contact-footer {
        width: 100%;
        padding: 0 8px;
    }
    .contact-rule {
        min-width: 0;
    }
}