/* ===========================
   SYSTEM PAGE
=========================== */

.system-page {
    background: url("../images/bg/washi-light.jpg");
}

/* セクション全体 */
.system {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* リード文 */
.system-lead {
    text-align: center;
    margin-bottom: 50px;
    line-height: 2.1;
    font-size: 17px;          /* ← 16 → 17 */
    color: #3a2f2f;           /* ← 黒ではなく“濃い茶” */
    font-weight: 500;         /* ← わずかに太く */
}

/* 補足テキスト */
.system-lead .small {
    margin-top: 18px;
    font-size: 14px;          /* ← 13 → 14 */
    color: #555;              /* ← #666 より一段濃く */
}

/* 料金ブロック */
.price-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* 見出し */
.price-title {
    text-align: center;
    font-size: 22px;
    color: var(--azuki);
    margin-bottom: 25px;
}

.price-title span {
    display: block;
    font-size: 13px;
    color: var(--wakakusa);
    margin-top: 5px;
    letter-spacing: 0.1em;
}

/* テーブル */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.price-table th,
.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-table th {
    width: 35%;
    text-align: left;
    color: var(--azuki);
    font-weight: bold;
}

.price-table td {
    text-align: right;
    font-weight: bold;
}

/* 延長だけ少し強調 */
.price-table .extension th,
.price-table .extension td {
    color: var(--wakakusa);
}

/* 交通費用 */
.price-table.small td {
    text-align: left;
    font-weight: normal;
}

/* スマホ */
@media screen and (max-width: 768px) {

    .system {
        padding: 40px 15px 60px;
    }

    .price-box {
        padding: 20px;
    }

    .price-table th {
        width: 40%;
    }

    .price-table td {
        text-align: right;
    }
}
/* ===========================
   PCのみ：料金テーブル調整
=========================== */
@media screen and (min-width: 769px) {

    /* テーブル全体を中央寄りに */
    .price-table {
        width: 80%;              /* ← 枠内で少し中央に寄せる */
        margin: 0 auto;
        font-size: 18px;         /* ← 文字サイズアップ */
    }

    /* 左右の文字配置を中央寄りに */
    .price-table th {
        text-align: center;
        font-size: 18px;
    }

    .price-table td {
        text-align: center;
        font-size: 20px;         /* 金額は少し大きめ */
        letter-spacing: 0.05em;
    }

    /* 延長はさらに強調 */
    .price-table .extension td {
        font-size: 22px;
        font-weight: 900;
    }
}
/* ===========================
   システムページ リード背景（確定版）
=========================== */
.system-lead {
    position: relative;
    padding: 40px 30px;
    background-image: url("https://www.hitoduma-otetsudai.com/2/images/systembg0001.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* PCのみ：高さを確保するだけ */
@media screen and (min-width: 769px) {
    .system-lead {
        min-height: 260px;
    }
}

/* 白レイヤー（PCは少しだけ薄く） */
.system-lead::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.70);
    z-index: 0;
}

/* テキストを前面に */
.system-lead > * {
    position: relative;
    z-index: 1;
}
