@charset "shift-jis";

/* ==================================================
   畳ページ CSS
================================================== */


/* --------------------------------------------------
   基本設定
-------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif !important;

    color: #333;
    background: #fff;
}


/* --------------------------------------------------
   ページ本体
-------------------------------------------------- */

.tatami-page {
    width: 770px;
    max-width: 100%;
    margin: 0 auto;
    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif !important;
}

.tatami-page,
.tatami-page * {
    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif !important;
}


/* --------------------------------------------------
   ヘッダー
-------------------------------------------------- */

.tatami-header {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.tatami-header>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tatami-header-text {
    position: absolute;
    left: 45px;
    top: 75px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.header-small {
    margin: 0 0 10px;
    font-size: 18px !important;
    font-weight: 600;
}

.tatami-header h1 {
    margin: 0 0 15px;
    font-size: 38px !important;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.tatami-header-text>p:last-child {
    margin: 0;
    font-size: 20px !important;
    line-height: 1.8;
}


/* --------------------------------------------------
   共通セクション
-------------------------------------------------- */

.tatami-section {
    padding: 55px 38px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #73785b;
    color: #fff;

    font-size: 17px !important;
    font-weight: 700;
}

.section-title h2 {
    margin: 0;
    font-size: 30px !important;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.section-lead {
    margin: 0 0 28px;
    font-size: 18px !important;
    line-height: 1.9;
}


/* --------------------------------------------------
   対応エリア
-------------------------------------------------- */

.area-section {
    background: #f7f5ee;
}

.area-box {
    position: relative;
    padding: 35px 28px 25px;
    border: 1px solid #d4d0c0;
    background: #fff;
}

.area-decoration {
    text-align: center;
    color: #73785b;
    font-size: 17px !important;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.area-decoration-top {
    margin-bottom: 25px;
}

.area-prefectures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.area-item {
    padding: 14px 16px;
    border-left: 5px solid #73785b;
    background: #f4f3ed;
}

.area-item strong {
    display: inline-block;
    margin-right: 7px;
    font-size: 19px !important;
}

.area-item span {
    font-size: 15px !important;
    color: #666;
}

.area-note {
    margin: 22px 0 0;
    font-size: 14px !important;
    line-height: 1.7;
    color: #777;
}


/* --------------------------------------------------
   畳の構造
-------------------------------------------------- */

.structure-image {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.structure-image img {
    display: block;
    width: 100%;
    height: auto;
}

.structure-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 20px;
    padding: 13px 25px;

    background: #665a53;
    color: #fff;

    text-decoration: none;

    font-size: 17px !important;
    font-weight: 700;
}

.structure-link span {
    font-family: Arial, sans-serif !important;
    font-size: 24px !important;
}

/* --------------------------------------------------
   標準工事内容
-------------------------------------------------- */

.construction-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.construction-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 20px 22px;

    border: 1px solid #ddd;
    background: #fafafa;
}

.construction-number {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #73785b;
    color: #fff;

    border-radius: 50%;

    font-size: 15px !important;
    font-weight: 700;
}

.construction-item h3 {
    margin: 0 0 5px;
    font-size: 20px !important;
}

.construction-item p {
    margin: 0;
    font-size: 16px !important;
    line-height: 1.7;
}


/* --------------------------------------------------
   商品ラインナップ
-------------------------------------------------- */

.product-section {
    background: #f7f5ee;
}

.product-card {
    position: relative;

    margin-bottom: 35px;
    padding: 28px;

    background: #fff;
    border: 1px solid #d8d5c9;
    border-radius: 3px;
}


/* 商品番号 */

.product-number {
    display: inline-block;

    margin-bottom: 8px;
    padding: 6px 14px;

    background: #73785b;
    color: #fff;

    font-size: 15px !important;
    font-weight: 700;
}

.product-number.special {
    background: #8b8064;
}


/* 商品名 */

.product-name {
    margin: 0 0 20px;

    font-size: 26px !important;
    line-height: 1.5;

    color: #333;
}


/* 商品画像＋情報 */

.product-main {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* 商品画像 */

.product-photo {
    flex: 0 0 190px;
    width: 190px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f3eb;
}

.product-photo img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* 商品情報 */

.product-info {
    flex: 1;
}

.product-catch {
    margin: 0 0 12px;

    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.6;

    color: #555b42;
}

.thread {
    margin: 0 0 18px;

    font-size: 16px !important;
    line-height: 1.7;
}

.thread strong {
    font-weight: 700;
}


/* --------------------------------------------------
   価格
-------------------------------------------------- */

.price-box {
    border: 2px solid #8b8064;
    background: #fffdf5;
}

.price-row {
    display: flex;
    align-items: center;
    min-height: 58px;

    border-bottom: 1px solid #d8d2c2;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row>span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 78px;
    height: 100%;

    background: #8b8064;
    color: #fff;

    font-size: 17px !important;
    font-weight: 700;
}

.price-row strong {
    flex: 1;

    padding: 8px 10px;

    font-size: 15px !important;
    line-height: 1.3;
    text-align: center;

    white-space: nowrap;
}

.price-row strong span {
    font-size: 25px !important;
    color: #c44932;
    font-weight: 800;
}


/* --------------------------------------------------
   レーダーチャート
-------------------------------------------------- */

.radar-wrap {
    position: relative;

    width: 270px;
    height: 245px;

    margin: 20px auto 0;
}


/*
   SVG本体

   ★ここは変更しなくてOKです。

   すべての五角形が
   「中心100,100」
   「同じ5方向」
   を基準にしています。

   そのため、中央の五角形だけが
   ズレる問題が起きません。
*/

.radar-chart {
    position: absolute;

    left: 35px;
    top: 18px;

    width: 200px;
    height: 200px;

    overflow: visible;
}


/* グレーの五角形 */

.radar-grid {
    fill: none;
    stroke: #b8b8b8;
    stroke-width: 1;
}


/* 軸線 */

.radar-axis {
    stroke: #c7c7c7;
    stroke-width: 1;
}


/* 商品データ */

.radar-data {
    fill: rgba(115, 120, 91, 0.45);
    stroke: #73785b;
    stroke-width: 2;
}


/* チャート文字 */

.radar-label {
    position: absolute;

    color: #333;

    font-size: 15px !important;
    font-weight: 600;

    line-height: 1.2;

    white-space: nowrap;
}

.label-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.label-right-top {
    top: 49px;
    right: 0;
}

.label-right-bottom {
    bottom: 34px;
    right: 0;
}

.label-left-bottom {
    bottom: 34px;
    left: 0;
}

.label-left-top {
    top: 49px;
    left: 0;
}


/* --------------------------------------------------
   4商品目と5商品目の区切り
-------------------------------------------------- */

.product-category-title {
    display: flex;
    align-items: center;
    gap: 18px;

    margin: 55px 0 35px;
}

.category-line {
    flex: 1;
    height: 1px;
    background: #b9b6aa;
}

.product-category-title>div {
    text-align: center;
}

.product-category-title p {
    margin: 0 0 4px;

    font-size: 15px !important;
    color: #777;
}

.product-category-title h3 {
    margin: 0;

    font-size: 25px !important;
    color: #73785b;
}


/* --------------------------------------------------
   和紙畳26色
-------------------------------------------------- */

.washi-color-section {
    margin-top: 45px;
    padding: 30px 25px;

    background: #fff;
    border: 1px solid #d8d5ca;

    text-align: center;
}

.washi-color-section h3 {
    margin: 0 0 22px;

    font-size: 22px !important;
    line-height: 1.6;

    color: #555b42;
}

.washi-color-image {
    width: 100%;
}

.washi-color-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* --------------------------------------------------
   こんな症状ありませんか？
-------------------------------------------------- */

.symptom-section {
    background: #fff;
}

.symptom-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.symptom-item {
    display: flex;
    align-items: center;

    min-height: 65px;

    padding: 12px 18px;

    border: 1px solid #ddd;
    background: #fafafa;
}

.check-mark {
    position: relative;
    flex: 0 0 auto;

    width: 28px !important;
    height: 28px !important;

    margin-right: 10px;
}


/* CSSでチェックマークを描画 */
.check-mark::after {
    content: "";

    position: absolute;

    left: 7px;
    top: 2px;

    width: 10px;
    height: 18px;

    border-right: 4px solid #73785b;
    border-bottom: 4px solid #73785b;

    transform: rotate(45deg);
}

.symptom-item p {
    flex: 1;

    margin: 0;

    font-size: 18px !important;
    font-weight: 600;
}

.arrow {
    flex: 0 0 auto;

    color: #73785b;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 30px !important;
    line-height: 1;
}


/* --------------------------------------------------
   注意喚起
-------------------------------------------------- */

.symptom-warning {
    margin-top: 28px;
    padding: 24px;

    border: 2px solid #b9a89a;

    background: #f7f2ed;

    text-align: center;
}

.symptom-warning p {
    margin: 0 0 16px;

    font-size: 15px !important;
    line-height: 1.8;
    color: #665a53;
}

.warning-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 13px 25px;

    background: #665a53;
    color: #fff;

    text-decoration: none;

    font-size: 17px !important;
    font-weight: 700;
}

.warning-link span {
    font-family: Arial, sans-serif !important;
    font-size: 24px !important;
}


/* --------------------------------------------------
   お問い合わせ
-------------------------------------------------- */

.consult-section {
    padding: 60px 38px;

    background: #a9b085;

    color: #fff;

    text-align: center;
}

.consult-inner {
    max-width: 600px;
    margin: 0 auto;
}

.consult-small {
    margin: 0 0 12px;

    font-size: 17px !important;
    font-weight: 600;
}

.consult-section h2 {
    margin: 0 0 20px;

    font-size: 34px !important;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.consult-text {
    margin: 0 auto 30px;

    font-size: 17px !important;
    line-height: 1.9;
}

.consult-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 300px;

    padding: 17px 25px;

    background: #fff;
    color: #555b42;

    text-decoration: none;

    font-size: 19px !important;
    font-weight: 700;
}

.consult-button span {
    font-family: Arial, sans-serif !important;
    font-size: 30px !important;
    line-height: 1;
}


/* ==================================================
   スマートフォン向け
   ※完全なレスポンシブではなく、
   「スマホでも文字が小さくならない」ための調整
================================================== */

@media screen and (max-width: 600px) {

    .tatami-page {
        width: 100%;
    }


    /* ヘッダー */

    .tatami-header {
        height: 300px;
    }

    .tatami-header-text {
        left: 25px;
        top: 55px;
    }

    .header-small {
        font-size: 16px !important;
    }

    .tatami-header h1 {
        font-size: 30px !important;
    }

    .tatami-header-text>p:last-child {
        font-size: 17px !important;
    }


    /* セクション */

    .tatami-section {
        padding: 45px 20px;
    }

    .section-title {
        gap: 10px;
    }

    .section-number {
        width: 42px;
        height: 42px;

        font-size: 15px !important;
    }

    .section-title h2 {
        font-size: 25px !important;
    }

    .section-lead {
        font-size: 17px !important;
    }


    /* エリア */

    .area-box {
        padding: 25px 15px;
    }

    .area-prefectures {
        grid-template-columns: 1fr;
    }

    .area-item strong {
        font-size: 19px !important;
    }

    .area-item span {
        font-size: 15px !important;
    }


    /* 工事 */

    .construction-item h3 {
        font-size: 19px !important;
    }

    .construction-item p {
        font-size: 16px !important;
    }


    /* 商品 */

    .product-card {
        padding: 20px 15px;
    }

    .product-name {
        font-size: 24px !important;
    }

    .product-main {
        gap: 15px;
    }

    .product-photo {
        flex: 0 0 135px;
        width: 135px;
        height: 115px;
    }

    .product-catch {
        font-size: 17px !important;
    }

    .thread {
        font-size: 15px !important;
    }

    .price-row>span {
        flex: 0 0 65px;
        font-size: 15px !important;
    }

    .price-row strong {
        font-size: 13px !important;
    }

    .price-row strong span {
        font-size: 22px !important;
    }


    /* チャート */

    .radar-wrap {
        transform: scale(0.95);
        transform-origin: center top;

        margin-bottom: -5px;
    }


    /* 商品区切り */

    .product-category-title {
        gap: 10px;
    }

    .product-category-title h3 {
        font-size: 21px !important;
    }


    /* 和紙26色 */

    .washi-color-section {
        padding: 25px 12px;
    }

    .washi-color-section h3 {
        font-size: 19px !important;
    }


    /* 症状 */

    .symptom-item p {
        font-size: 17px !important;
    }

    /*.check-mark {
        font-size: 24px !important;
    }*/

    .check-mark {
        width: 28px !important;
        height: 28px !important;
    }

    .check-mark::after {
        left: 7px;
        top: 2px;

        width: 10px;
        height: 18px;

        border-right-width: 4px;
        border-bottom-width: 4px;
    }

    .arrow {
        font-size: 29px !important;
    }


    /* お問い合わせ */

    .consult-section {
        padding: 50px 20px;
    }

    .consult-section h2 {
        font-size: 29px !important;
    }

    .consult-text {
        font-size: 16px !important;
    }

    .consult-button {
        width: 100%;
        min-width: 0;
        font-size: 18px !important;
    }

}