@charset "Shift_JIS";

/* ---- リセット・ベース ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 12pt;
    line-height: 1.6;
    color: #333;
}

a {
    color: #0000FF;
}

a:visited {
    color: #0000FF;
}

.main-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- レイアウト ---- */
.wrapper {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

/* ---- ジャンボトロン ---- */
.jumbotron img {
    width: 100%;
    height: auto;
}

/* ---- ニュース＆資料請求エリア ---- */
.news-request {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.news-request .news-area {
    flex: 1;
    min-width: 0;
}

.news-request .request-area {
    flex-shrink: 0;
    text-align: right;
}

/* ---- ニューステーブル ---- */
.news-table {
    display: flex;
    flex-wrap: wrap;
    font-size: 11pt;
    line-height: 1.25;
    margin: 0;
}
.news-table dt {
    flex-basis: 120px;
}
.news-table dd {
    margin: 0;
    width: calc(100% - 120px);
}

/* ---- ナビゲーション ---- */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
}

.page-nav nav {
    flex: 1;
}

.page-nav .cad-download {
    flex-shrink: 0;
}

/* ---- セクション見出し ---- */
.heading {
    background: #E9FFD2;
    font-size: 1.2em;
    font-weight: bold;
    padding: 2px 5px;
    color: #333;
    margin-top: 1.5em;
}

.heading::before {
    content: "\025A0";
    color: #339933;
}

/* ---- セクションコンテンツ ---- */
.sub-content {
    margin: 0.5em 0 1.5em 0;
}

/* ---- ページトップリンク ---- */
.back-to-top {
    display: block;
    text-align: right;
    font-size: 9pt;
}
/* ---- 特長セクション ---- */
.tokuchou-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
    flex-wrap: wrap;
    margin: 0.5em 0;
}

.tokuchou-layout .tokuchou-photo {
    flex-shrink: 0;
    text-align: right;
}

.tokuchou-list {
    color: #339933;
    font-weight: bold;
    padding-inline-start: 1em;
    margin: 0;
    list-style: none;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}

.tokuchou-description {
    padding-inline-start: 1.5em;
    margin: 0 0 1em 0;
    color: #393;
}

/* ---- 透水シート ---- */
.tosui-figure {
    text-align: center;
    margin: 1em 0;
}
.tosui-figure img {
    margin: 0 auto;
}

/* ---- 規格表 ---- */
.kikaku-note {
    text-align: center;
    margin: 1em 0 0 0;
}

.kikaku-table {
    border-collapse: collapse;
    table-layout: auto;
    text-align: center;
    font-size: 11pt;
    width: 95%;
    margin: 0 auto;
    line-height: 1.25;
}

.kikaku-table th {
    background: #DFEFFF;
    font-weight: normal;
    border: 1px solid #333;
    padding: 4px 6px;
}

.kikaku-table td {
    padding: 5px 0;
    border: 1px solid #333;
    line-height: 1.8;
}

.kikaku-table td:first-child {
    text-wrap: nowrap;
    padding: 5px;
}

/* レスポンシブ：規格表スクロール対応 */
.kikaku-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.kikaku-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
    margin: 1em 0;
}

.kikaku-images figure {
    margin: 0;
    text-align: center;
}

/* ---- 施工事例 ---- */
.sekourei-gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    gap: 1em;
}

.sekourei-gallery figure {
    margin: 0;
}

.sekourei-gallery figcaption {
    margin-bottom: 0.3em;
}

/* ---- お問い合わせ ---- */
.contact-heading {
    padding: 4px 5px;
    background: #339933;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.contact-block-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin: 12px 0;
}

.contact-block {
    border: 1px solid #333;
    padding: 5px 8px;
    text-align: center;
    font-size: 11pt;
    width: 100%;
    max-width: 360px;
}

.contact-company {
    font-size: 12pt;
    font-weight: bold;
}


/* ---- フッター ---- */
.site-footer {
    text-align: center;
    font-size: 8pt;
    margin: 1em 0;
    color: #0000A0;
}

/* ---- レスポンシブ対応 ---- */
@media screen and (max-width: 600px) {
    a {
        text-wrap: nowrap;
    }

    .wrapper {
        padding: 0 1em;
    }

    .news-request {
        flex-direction: column;
    }

    .news-request .request-area {
        width: 100%;
        text-align: center;
    }

    /* ---- ニューステーブル ---- */
    .news-table dt,
    .news-table dd {
        font-size: 10pt;
    }

    .page-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .tokuchou-layout {
        flex-direction: column;
        justify-content: center;
    }

    .tokuchou-layout .tokuchou-photo {
        text-align: center;
    }

    .contact-block-group {
        flex-direction: column;
        align-items: center;
    }

    .contact-block {
        max-width: 100%;
    }

    .kikaku-table {
        font-size: 9pt;
    }

    .sekourei-gallery {
        justify-content: center;
    }
}