html,
body {
    margin: 0;
    padding: 0;
    padding-top: 40px;
    overflow-x: hidden;
}

/* 全体ヘッダー */
.gheader {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px 0px;
    margin-bottom: -16px;
    font-family: sans-serif;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-x: hidde
}



/* ロゴ画像 */
.gheader-logo img {
    height: 34px;
    width: auto;
}

.logo-pc {
    display: inline;
    height: 34px;
    width: auto;
}

.logo-sp {
    display: none;
    height: 28px;
    width: auto;
}

/* 右側の並び：電話・ボタン・アイコン */
.gheader-lineup {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-left: auto;
}

/* 電話番号部分 */
.gheader-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 5px;
}

.gheader-tel-wrap {
    display: flex;
    align-items: center;
    font-size: 17px;
    /* ← やや小さく */
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
}

.gheader-tel-wrap .icon {
    height: 18px;
    width: auto;
    margin-right: 4px;
    display: inline-block;
}


.gheader-tel-open {
    font-size: 11px;
    color: #333;
    margin-top: 1px;
}

/* LINE・メール見積りボタン */
.gheader-contact-button .image {
    height: 43px;
    /* ← 少しだけ縮小 */
    width: auto;
    display: block;
}

/* 支払い方法（クレカ、PayPay、auPay） */
.gheader-payment-button .image {
    height: 43px;
    width: auto;
    display: block;
}

.aupay-wrapper {
    display: inline-block;
    overflow: hidden;
    width: 100px;
    /* ← 見た目に合ったサイズに調整 */
}

.aupay-wrapper .image {
    height: 30px;
    /* ← auPay画像を小さく見せたい場合のサイズ */
    width: auto;
    display: block;
}


@media screen and (max-width: 900px) {
    .gheader {
        flex-direction: row;
        align-items: center;
    }



    .gheader-lineup {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 5px;
        margin-top: 0;
    }

    .gheader-tel {
        width: auto;
    }
}

@media screen and (max-width: 802px) {

    /* 支払い方法は非表示 */
    .gheader-payment-button,
    .aupay-wrapper {
        display: none !important;
    }

    /* ヘッダー内の並びを1段固定＆要素縮小 */
    .gheader {
        flex-wrap: nowrap;
        align-items: center;
        padding: 8px 8px 0;
        margin-bottom: 0;
    }

    .gheader-logo img {
        height: 28px;
        width: auto;
        /* 縦に合わせて横も自動調整 */
        max-width: 100%;
        /* 親の幅を超えない */
        object-fit: contain;
    }

    .gheader-lineup {
        flex-direction: row;
        flex-wrap: nowrap !important;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;
        margin-left: auto;
    }

    .gheader-lineup>* {
        flex-shrink: 1;
        white-space: nowrap;
    }

    .gheader-tel-wrap {
        font-size: 14px;
    }

    .gheader-tel-open {
        font-size: 10px;
    }

    .gheader-contact-button .image {
        height: 36px;
        max-width: 90px;
    }
}

@media screen and (max-width: 768px) {
    .gheader {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .gheader-logo {
        flex-shrink: 0;
    }

    .gheader-logo img {
        height: 28px;
        width: auto;
        max-width: 100px;
    }

    .logo-pc {
        display: none;
    }

    .logo-sp {
        display: inline;
        height: 34px;
        /* モバイル用ロゴの高さ調整 */
        max-width: 100px;
        width: auto;
    }

    .gheader-lineup {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 5px;
        margin-left: auto;
        /* ← ロゴの右側から押し出す */
        justify-content: flex-end;
    }

    .gheader-lineup>* {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .gheader-tel-wrap {
        font-size: 14px;
    }

    .gheader-tel-open {
        font-size: 10px;
    }

    .gheader-contact-button .image {
        height: 34px;
        max-width: 90px;
    }

    .gheader-payment-button,
    .aupay-wrapper {
        display: none !important;
    }
}




.gheader-logo .op {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

/* PCのみ会社名を表示 */
.logo-text-pc {
    display: none;
    margin-left: 8px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 1;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .logo-text-pc {
        display: inline-block;
    }
}






.mv {
    width: 100%;
    height: auto;
    /* 画面の高さいっぱい */
    overflow: hidden;
}

.mv-bg-wrap {
    width: 100%;
    height: 100%;
}

.mv-bg-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.mv-bg-image .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比を保って画面いっぱいにカバー */
    display: block;
}

/* スマホ対応：高さを固定したい場合の例 */
@media screen and (max-width: 768px) {
    .mv {
        height: auto;
        /* 高さを自動に切り替え */
    }

    .mv-bg-wrap,
    .mv-bg-image {
        height: auto;
    }

    .mv-bg-image .image {
        height: auto;
        /* 最大で画面高の60%程度に制限（調整可） */
    }
}

@media screen and (max-width: 630px) {
    .gheader-lineup {
        flex-wrap: nowrap !important;
        gap: 2px;
        overflow: hidden;
    }

    .gheader-tel-wrap {
        font-size: 14px;
    }

    .gheader-contact-button .image {
        height: 35px;
    }

    .gheader-logo img {
        height: 34px;
        margin-left: 10px;
    }

    .gheader-tel-open {
        font-size: 10px;
    }

    .gheader-tel {
        margin-right: 2px;
    }
}







/* ▼ セクション全体 */
.reason-block-section {
    padding: 40px 0;
    background-color: #e6f0ff;
    font-family: sans-serif;
    width: 100%;
    box-sizing: border-box;
}



.reason-block-header-inner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* ▼ 左：満足度アイコン */
.reason-block-medal {
    width: 200px;
    height: auto;
    flex-shrink: 0;
}

/* ▼ 中央：見出し */
.reason-block-title-group {
    max-width: 400px;
    text-align: center;
}

.reason-block-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}

.reason-block-title span {
    color: #0077cc;
}

.reason-block-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

.reason-block-subtitle span {
    font-weight: bold;
    color: #e38b06;
}


/* ▼ 理由カード一覧 */
.reason-block-list {
    padding: 40px 20px;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.reason-block-card {
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease;

    transform: scale(0.90);
    /* ← 全体を少し小さくする */
    transform-origin: center center;
    /* ← 中心から縮小 */
}

/* ✅ 900px以下は2列 */
@media (max-width: 900px) {
    .reason-block-card {
        width: calc(50% - 15px);
    }
}

.reason-block-card:hover {
    transform: translateY(-4px);
}

.reason-block-number {
    font-size: 14px;
    font-weight: bold;
    color: #0077cc;
    margin-bottom: 10px;
}

.reason-block-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.reason-block-heading {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
}

.reason-block-caption {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.reason-block-toggle {
    font-size: 18px;
    background: none;
    border: none;
    color: #0077cc;
    cursor: pointer;
    transition: transform 0.3s;
}

.reason-block-card.open .reason-block-toggle {
    transform: rotate(180deg);
}

.reason-block-detail {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    color: #555;
    text-align: left;
    line-height: 1.6;
}

.reason-block-card.open .reason-block-detail {
    display: block;
}

/* ▼ スマホ対応 */
@media (max-width: 768px) {


    .reason-block-header-inner-flex {
        flex-direction: column;
        text-align: center;
    }

    .reason-block-header-left {
        flex-direction: column;
    }

    .reason-block-title-group {
        text-align: center;
    }

    .reason-block-logo {
        width: 120px;
    }

    .reason-block-medal {
        width: 200px;
    }

    .reason-block-title {
        font-size: 20px;
    }

    .reason-block-subtitle {
        font-size: 14px;
    }

    .reason-block-card {
        width: calc(50% - 15px);
    }

    .plan-detail {
        padding-bottom: 30px;
    }
}





.plan-detail-block {
    background: #ffffff;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-family: sans-serif;
}

.plan-detail-block-head {
    background-color: #002d66;
    color: #fff;
    padding: 15px 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0;
}

.plan-detail-block-body {
    padding: 0;
    margin: 0;
}

.plan-detail-block-table {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 30px 20px;
}

.plan-detail-block-table-item {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.plan-detail-block-table-item img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.plan-detail-block-table-item .heading {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.plan-detail-block-table-item .plan {
    display: block;
    font-size: 20px;
    color: #0077cc;
    margin-top: 5px;
}

.plan-detail-block-table-item .description {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.plan-detail-block-table-item .description img {
    display: block;
    margin: 10px auto 0;
    max-width: 100%;
    width: 300px;
    /* ← 画像サイズ大きく */
    height: auto;
    border-radius: 8px;
}

.plan-detail-block-attention {
    font-size: 13px;
    color: #999;
    text-align: right;
    margin-top: 10px;
}

.plan-detail-block-emphasis {
    border: 2px solid #ff6ea5;
    color: #d6005a;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    margin: 30px auto;
    text-align: center;
    border-radius: 8px;
    background-color: #fff5f8;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

/* ▼ 料金詳細テーブル（画像下に表示） */
.plan-detail-block-table {
    display: flex;
    flex-direction: column;
    /* 縦並びに */
    align-items: center;
    /* 中央寄せ */
    background-color: #f1f8fd;
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.price-detail-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    color: #333;
}

.price-detail-table tr:last-child td {
    border-bottom: none;
}

/* ▼ 左列（水色背景）で項目を強調 */
.price-detail-table td:first-child {
    background-color: #e6f4ff;
    font-weight: bold;
    width: 65%;
}

.price-detail-table {
    margin-top: 30px;
    /* ← 画像と表の間隔 */
}

.plan-detail-block-attention {
    font-size: 13px;
    color: #999;
    text-align: left;
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ▼ 中央揃えブロック全体 */
.plan-image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* ▼ 画像 */
.plan-image-block .image {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 10px;
    margin: 0 auto 20px auto;
}

/* ▼ プラン名 */
.plan-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

/* ▼ 金額 */
.plan-price {
    font-size: 18px;
    color: #0077cc;
    font-weight: bold;
}

.price-detail-table {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

/* ▼ プランメインタイトル */
.plan-main-title {
    font-size: 40px;
    font-weight: bold;
    color: #0b3c7d;
    margin-bottom: 12px;
    text-align: center;
}

.plan-price-highlight {
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;

}

.price-main {
    font-size: 70px;
    font-weight: bold;
    color: #0099b2;
    letter-spacing: 1px;
    line-height: 1.2;
    display: block;
}

.tax-note {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: -30px;
    text-align: center;
    transform: translateX(40%);
}


@media (max-width: 768px) {
    .plan-detail-block {
        padding: 0 10px;
    }

    .plan-detail-block-head {
        font-size: 18px;
        padding: 12px 8px;
    }

    .plan-detail-block-table {
        padding: 20px 10px;
    }

    .plan-detail-block-table-item {
        padding: 10px;
    }

    .plan-main-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .price-main {
        font-size: 42px;
    }

    .tax-note {
        font-size: 13px;
        margin-top: -10px;
        text-align: center;
        display: block;
    }

    .price-detail-table {
        font-size: 13px;
        width: 100%;
    }

    .price-detail-table td {
        padding: 10px;
        font-size: 13px;
    }

    .plan-detail-block-emphasis {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .plan-main-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .price-main {
        font-size: 38px;
    }

    .tax-note {
        font-size: 12px;
    }

    .plan-price-highlight {
        flex-wrap: nowrap;
        flex-direction: row;
        flex-shrink: 1;
    }
}

.plan-highlight-block {
    position: relative;
    text-align: center;
    padding: 30px 20px 70px;
    .
}

.plan-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 600px;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}


.plan-main-title,
.plan-price-highlight {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}









.image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}





.payment-section {
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent;
    text-align: center;
    border-radius: 10px;
}

.payment-title span {
    font-size: 18px;
    font-weight: bold;
    color: #0077cc;
    border-bottom: 2px dotted #0077cc;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.payment-lead {
    font-size: 13px;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-box {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-column {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    min-width: 260px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.payment-heading {
    background-color: #0077cc;
    color: white;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    font-size: 20px;
    width: 100%;
    margin: -15px -15px 15px -15px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.payment-icons img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.payment-icons-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    height: 110px;
}


.payment-icons-2 img {
    width: 45%;
    height: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.payment-icons-2 img.credit-img {
    width: 120px;
}

.payment-icons-2 img.pay-img {
    height: 22px;
    width: auto;
}

/* ✅ PayPay → transformでサイズ調整して au PAY に見た目を揃える */
.payment-icons-2 img[alt="PayPay"] {
    height: 70px;
    transform: scale(1.15);
    margin: 0 4px;
    max-width: none;
}

/* ✅ au PAY */
.payment-icons-2 img[alt="auPay"],
.payment-icons-2 img[alt="au PAY"],
.payment-icons-2 img[alt="au-PAY"] {
    height: 45px;
    margin: 0 4px;
}

.payment-icons img.credit-img {
    width: 120px;
}

.payment-icons img.pay-img {
    height: 22px;
    width: auto;
}

/* ✅ PayPay → transformでサイズ調整して au PAY に見た目を揃える */
.payment-icons img[alt="PayPay"] {
    height: 70px;
    transform: scale(1.15);
    margin: 0 4px;
    max-width: none;
}

/* ✅ au PAY */
.payment-icons img[alt="auPay"],
.payment-icons img[alt="au PAY"],
.payment-icons img[alt="au-PAY"] {
    height: 45px;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .payment-box {
        flex-direction: column;
    }

}

@media (min-width: 768px) {
    .payment-section {
        margin-bottom: 40px;
    }
}








/* 🔵 セクション全体：背景を左右いっぱいに広げつつスライド防止 */
#region-service {
    background: #e6f0ff;
    width: 100vw;
    padding: 60px 0 80px;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #000;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.region-service-wapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 🟠 バッジ（信頼・迅速・実績） */
#region-service .front-service-point-block {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#region-service .front-service-point {
    background: #ff9900;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 🔠 セクションタイトル */
#region-service .section-title {
    font-size: 26px;
    color: #223370;
    margin-bottom: 6px;
}

#region-service .section-entitle {
    font-size: 13px;
    color: #0077cc;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

/* 🧱 カードグリッド：中身は max-width 制限で中央寄せ */
#region-service .region-service-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 📦 各カード */
#region-service .region-service-column {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    min-height: 100px;
}

/* 🖼️ 画像（高さ統一 + 間隔調整） */
#region-service .region-service-column img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center center;
    border-radius: 6px;
    margin-bottom: 0px;
    display: block;
}

/* 🆙 タイトル（写真の下）を大きく */
#region-service .region-service-column h3 {
    font-size: 16px;
    font-weight: bold;
    color: #223370;
    margin-bottom: 8px;
    line-height: 1.4;

    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

/* 📝 テキスト */
#region-service .region-service-text {
    margin-top: 4px;
    flex-grow: 1;
}

#region-service .region-service-text p {
    font-size: 13px;
    color: #333;
    text-align: left;
    line-height: 1.5;
}

/* 🔄 上下の段差 */
#region-service .region-service-column:nth-child(n+5) {
    margin-top: 32px;
}


/* 📱 レスポンシブ対応 */
/* ✅ 900px以下の調整：2カラム安定＆画像・テキスト高さ統一 */
@media (max-width: 900px) {
    #region-service .region-service-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    #region-service .region-service-column {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        min-height: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    #region-service .region-service-column img {
        height: 140px;
        object-fit: cover;
        object-position: center center;
        border-radius: 6px;
        width: 100%;
        display: block;
    }

    #region-service .region-service-text {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 10px;
    }

    #region-service .region-service-text p {
        font-size: 13px;
        line-height: 1.5;
        text-align: left;
        margin: 0;
    }

    #region-service .region-service-column h3 {
        font-size: 14px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    #region-service .region-service-column:nth-child(n+5) {
        margin-top: 0;

    }
}


@media screen and (max-width: 768px) {
    .region-service-text {
        display: none;
        transition: all 0.3s ease;
    }

    .region-service-column.active .region-service-text {
        display: block !important;
    }

    .region-service-toggle {
        margin-top: 10px;
        background: none;
        border: none;
        color: #0077cc;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        display: inline-block;
    }

    .region-service-toggle::after {
        content: " ▼";
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .region-service-column.active .region-service-toggle::after {
        transform: rotate(180deg);
    }

    .region-service-column .region-service-text {
        display: none !important;
    }
}




/* ▼ セクション全体 */
.contWrapIn {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;

}

/* ▼ タイトル */
.contWrapIn h2.title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    line-height: 1.6;
    color: #222;
}

.contWrapIn h2.title .mini {
    display: block;
    font-size: 20px;
    color: #0070c0;
    margin-bottom: 10px;
}

.contWrapIn h2.title .normal {
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    border-bottom: 4px solid #0070c0;
    padding-bottom: 8px;
}

/* ▼ strongタグだけ青に */
.contWrapIn strong.css_yellow {
    color: #0070c0;
}

.contWrapIn .css_red {
    color: #d63333;
}

.contWrapIn .css_br_s {
    white-space: nowrap;
}

/* ▼ ステップリスト全体 */
.contWrapIn .i01 {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.contWrapIn .i01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: #d3e8ff;
    z-index: 0;
}

/* ▼ 各STEPブロック（青枠で囲む） */
.contWrapIn .i01 li {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px 30px 30px 120px;
    margin-bottom: 60px;
    border: 2px solid #0070c0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

/* ▼ STEPバッジ（白背景＋青枠） */
.contWrapIn .i01 li::before {
    counter-increment: step-counter;
    content: "STEP";
    position: absolute;
    left: 5px;
    top: 18px;
    width: 100px;
    height: 100px;
    background: #fff;
    border: 3px solid #0070c0;
    border-radius: 50%;
    z-index: 1;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #0070c0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 18px;
    line-height: 1.2;
}

/* ▼ 数字（下部・赤） */
.contWrapIn .i01 li::after {
    content: counter(step-counter);
    position: absolute;
    left: 5px;
    top: 65px;
    width: 100px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #d63333;
    z-index: 2;
}

/* ▼ ステップ見出し（青＋下線） */
.contWrapIn .i01 h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0070c0;
    margin-bottom: 14px;
    border-bottom: 2px solid #0070c0;
    padding-bottom: 6px;
}

/* ▼ ステップ本文 */
.contWrapIn .i01 p {
    font-size: 18px;
    color: #333;
    line-height: 1.9;
    margin: 0;
}

/* ▼ モバイル対応 */
@media screen and (max-width: 768px) {
    .contWrapIn {
        padding: 30px 0;
    }

    .contWrapIn h2.title {
        font-size: 30px;
    }

    .contWrapIn h2.title .normal {
        font-size: 26px;
    }

    .contWrapIn .i01 li {
        padding: 8px 20px 8px 80px;
    }

    .contWrapIn .i01 li::before {
        width: 60px;
        height: 60px;
        font-size: 13px;
        padding-top: 10px;
        left: 5px;
    }

    .contWrapIn .i01 li::after {
        top: 42px;
        left: 5px;
        width: 60px;
        font-size: 18px;
    }

    .contWrapIn .i01 h3 {
        font-size: 20px;
    }

    .contWrapIn .i01 p {
        font-size: 16px;
    }

    .works .i01 {
        padding: 0;
    }
}







/* ▼ 実績紹介セクション全体 */
.i01 {
    padding: 40px 20px;
    background-color: #fff;
    box-sizing: border-box;
}

/* ▼ 実績紹介タイトル（h3）に下線を追加 */
.i01 h3#i-38 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-size: 28px;
    text-align: center;
    color: #222;
    font-weight: bold;
    margin: 0 auto 40px;
}

.i01 h3#i-38::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background-color: #0070c0;
    border-radius: 2px;
}

.i01 {
    text-align: center;
}



.i01 .i01-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0070c0;
    border-radius: 2px;
}

/* ● ← 左上の黒点（リストマーカー）対策 */
.i01 ul,
.i01 ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.i01 ul li::marker,
.i01 ul li::before,
.i01 ul li::after {
    content: none;
    display: none;
}

/* ▼ ビフォーアフター画像並び */
.middle.css_columnSet {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    /* ← wrap → nowrap に変更して常に横並びに */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.middle.css_columnSet .sample_a,
.middle.css_columnSet .sample_b {
    flex: 0 1 48%;
    /* ← 横並びを維持しつつ幅自動調整 */
    max-width: 420px;
}

/* BEFOREボックス（白） */
.middle.css_columnSet .sample_b {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    border: 1px #0070c0 solid;
}

.middle.css_columnSet .sample_b p {
    font-weight: bold;
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.middle.css_columnSet .sample_b img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* AFTERボックス（濃い青で目立たせ） */
.middle.css_columnSet .sample_a {
    background: #0070c0;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(0, 80, 160, 0.3);
    text-align: center;
    box-sizing: border-box;
}

.middle.css_columnSet .sample_a p {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.middle.css_columnSet .sample_a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    border: 2px solid #fff;
}

/* モバイルでも横並びを維持（修正済み） */
@media screen and (max-width: 768px) {
    .middle.css_columnSet {
        gap: 10px;
    }

    .middle.css_columnSet {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .middle.css_columnSet .sample_a,
    .middle.css_columnSet .sample_b {
        max-width: 48%;
    }

    .i01 .i01-title {
        font-size: 24px;
    }
}







.review-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

/* 下線を中央に表示 */
.review-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 210px;
    /* ← 下線の長さ。調整OK */
    height: 4px;
    background-color: #0070c0;
    border-radius: 2px;
}


.review-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
}

.review-item {
    background: #fff;
    border: 1px solid #d4e8ff;
    border-radius: 12px;
    padding: 30px;
    width: calc(50% - 30px);
    box-sizing: border-box;
    box-shadow: 0 6px 12px rgba(0, 80, 200, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 540px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

/* VOICE 非表示 */
.review-label {
    display: none !important;
}

.review-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2c5aa0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.review-area {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-top: 5px;
}

/* タイトル＋本文をまとめて囲う */
.review-title,
.review-body {
    background-color: #f5f9fd;
    border-left: 1px solid #b7c9e8;
    border-right: 1px solid #b7c9e8;
    padding-left: 20px;
    padding-right: 20px;
}

/* タイトル */
.review-title {
    font-size: 17px;
    font-weight: bold;
    color: #2c5aa0;
    padding-top: 18px;
    padding-bottom: 10px;
    border-top: 1px solid #b7c9e8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0;
}

/* 本文 */
.review-body {
    padding-top: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid #b7c9e8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.review-body p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .review-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .review-item {
        width: 100%;
        min-height: auto;
    }

    .review-section {
        padding: 30px 10px;
    }

    .review-photo {
        width: 80px;
        height: 80px;
    }

    .review-name {
        font-size: 17px;
    }

    .review-area {
        font-size: 14px;
    }

    .review-title {
        font-size: 16px;
    }

    .review-body p {
        font-size: 14px;
    }

    .review-body {
        min-height: auto;
    }
}








body {
    background-color: #fff;
    font-size: 16px;
    /* 全体のベースサイズを大きく */
}

h3 {
    text-align: center;
    font-size: 32px;
    /* タイトルサイズUP */
    margin-bottom: 36px;
    color: #222;
}

.question-box__main {
    max-width: 800px;
    margin: 0 auto;
}

.accordion h3 {
    text-align: left;
}

.items {
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion {
    background-color: #4da3ff;
    color: #fff;
    padding: 18px 24px;
    /* パディング拡大 */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion:hover {
    background-color: #3995f4;
}

.accordion::after {
    content: "▼";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.items.is_active .accordion::after {
    transform: rotate(180deg);
}

.accordion h3 {
    margin: 0;
    font-size: 17px;
    /* 見出し大きく */
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.accordion h3::before {
    content: "Q";
    display: flex;
    justify-content: center;
    background: white;
    color: #4da3ff;
    font-weight: bold;
    font-size: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}


.panel {
    display: none;
    background-color: #f9f9f9;
    padding: 20px 24px;
    /* パディングUP */
    font-size: 16px;
    /* 本文大きく */
    line-height: 1.8;
    border-top: 1px solid #ddd;
    animation: fadeIn 0.3s ease-in-out;
    color: #333;
}

.items.is_active .panel {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}






/* === お問い合わせタイトル画像を中央に === */
.inquiry-box .head-box h2 {
    display: block !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.inquiry-box .head-box h2 img {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    position: static !important;
    max-width: 100% !important;
    height: auto !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

/* === フォーム本体 === */
.contact-form {
    max-width: 900px;
    margin: -4px auto 40px auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 16px;
}

/* === 各入力ブロック === */
.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
}

.labels {
    width: 180px;
    font-weight: bold;
    color: #0070c0;
    white-space: nowrap;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 必須マークのスタイル */
.form-group.required .labels::after {
    content: "必須";
    background: #0070c0;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
}

/* 入力エリア */
.input {
    flex: 1;
}

.input input[type="text"],
.input input[type="email"],
.input textarea,
.input select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f2f2f2;
    box-sizing: border-box;
}

.input textarea {
    resize: vertical;
    min-height: 120px;
}

.input label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

.input input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

/* === 同意と送信ボタン === */
.more-box {
    margin-top: 36px;
    font-size: 14px;
    text-align: center;
    color: #333;
}

.more-box label a {
    color: #0070c0;
    text-decoration: underline;
}

.more-submit {
    margin-top: 24px;
    background: linear-gradient(to bottom, #0099ff, #0066cc);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s;
}

.more-submit:hover {
    background: linear-gradient(to bottom, #33adff, #0073e6);
}

.more-submit img {
    max-height: 28px;
    vertical-align: middle;
}


.privacy-policy-box {
    max-height: 200px;
    overflow: auto;
    border: 1px solid #c4c4c4;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
    background: #fff;
}

.privacy-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    margin: 20px 0 10px;
    text-align: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.privacy-heading::before,
.privacy-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #007bff;

}

#submit_btn_1 {
    display: block;
    margin: 0 auto;
}




/* === スマホ対応 === */
@media screen and (max-width: 768px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .labels {
        width: 100%;
        margin-bottom: 8px;
        font-size: 15px;
        flex-direction: row;
        gap: 6px;
    }

    .input {
        width: 100%;
    }

    .input input[type="text"],
    .input input[type="email"],
    .input textarea,
    .input select {
        font-size: 17px;
        padding: 14px;
    }

    .more-submit {
        width: 100%;
        font-size: 17px;
    }
}









/* セクション全体 */
.parts-cvcontact-section {
    width: 100vw;
    background: linear-gradient(to bottom, #e6f0ff);
    font-family: sans-serif;
    text-align: center;
    padding: 40px 0;
}

.parts-cvcontact-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* タイトル */
.parts-cvcontact-title {
    font-size: 22px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 25px;
}

.parts-cvcontact-title .emphasis .large,
.parts-cvcontact-title .emphasis {
    color: orange;
}

/* ブロック全体：左と右で分割 */
.parts-cvcontact-block {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 60px;
}

/* 左側：電話とLINE・メール */
.parts-cvcontact-block-main {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.parts-cvcontact-block-main-button-wrap {
    width: 100%;
}

/* 電話ボタン */
.parts-cvcontact-block-tel {
    background: #007bff;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.parts-cvcontact-block-tel .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.parts-cvcontact-block-tel .number {
    font-size: 18px;
    margin: 0;
}

.parts-cvcontact-block-tel .opentime {
    font-size: 12px;
    margin: 0;
}

/* LINE + メールボタンを横並びに */
.line-mail-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ボタン共通スタイル（LINE・メール） */
.estimate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    min-width: 200px;
    gap: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.estimate-btn .icon {
    font-size: 22px;
}

.estimate-btn .text {
    font-size: 18px;
}

.estimate-btn.line {
    background-color: #00c300;
    /* LINEグリーン */
}

.estimate-btn.mail {
    background-color: #c8003d;
    /* メールレッド */
}

.estimate-btn:hover {
    opacity: 0.85;
}

/* 右側：支払い方法（クレカ・PayPay・auPay） */
.parts-cvcontact-block-sub {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parts-cvcontact-block-payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}


.parts-cvcontact-block-payment-item {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
}

.parts-cvcontact-block-payment-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.parts-cvcontact-block-payment-item .text {
    font-size: 13px;
    color: #000;
    line-height: 1.3;
    text-align: left;
}

@media (max-width: 900px) {
    .parts-cvcontact-block {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
    }

    .parts-cvcontact-block-main {
        width: 100%;
        max-width: 100%;
        padding: 15px 0%;
    }

    .parts-cvcontact-block-main-button-wrap,
    .line-mail-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .parts-cvcontact-block-tel {
        width: 100%;
        max-width: 400px;
    }

    .estimate-btn {
        width: 100%;
        max-width: 300px;
    }

    .parts-cvcontact-block-sub {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .parts-cvcontact-block-payment-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding-bottom: 20px;
    }

    .parts-cvcontact-block-payment-item {
        padding: 12px 14px;
        width: calc(50% - 12px);
        min-width: 140px;
        justify-content: flex-start;
        width: 80%;
    }

}







.about {
    width: 100vw;
    background: repeating-linear-gradient(45deg, #4A90E2, #4A90E2 2px, #4385CD 2px, #4385CD 4px);
    /* 背景レイヤーの基準にする */
}

.about-wapper {
    width: 900px !important;
    margin: 0 auto;
}

.i01.css_bg01.css_radius {
    width: 100vw;
    background: repeating-linear-gradient(45deg,
            #4A90E2,
            #4A90E2 2px,
            #4385CD 2px,
            #4385CD 4px);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.i01.css_bg01.css_radius>h2 {
    color: white;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.i01.css_bg01.css_radius .body.css_radiusIn_bottom {
    background: white;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
}

.i01.css_bg01.css_radius .body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.i01.css_bg01.css_radius .body th,
.i01.css_bg01.css_radius .body td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
    box-sizing: border-box;
}

.i01.css_bg01.css_radius .body .css_iBlock {
    display: inline;
    white-space: nowrap;
}

.i01.css_bg01.css_radius .gmap iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
}

/* ▼ 768px以下のモバイル対応 */
@media screen and (max-width: 768px) {
    .i01.css_bg01.css_radius {
        padding: 30px 15px;
        width: 100%;
        margin: 0 auto
    }

    .i01.css_bg01.css_radius>h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .i01.css_bg01.css_radius .body.css_radiusIn_bottom {
        padding: 15px;
    }

    .i01.css_bg01.css_radius .body table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .i01.css_bg01.css_radius .body th,
    .i01.css_bg01.css_radius .body td {
        font-size: 13px;
        padding: 10px;
        white-space: nowrap;
    }

    .i01.css_bg01.css_radius .gmap iframe {
        height: 200px;
    }



    .reason-block-header,
    .plan-detail,
    .payment-section,
    .plan-detail-block,
    .region-service-wapper,
    .contWrapIn,
    .i01css_radius,
    .review-section-wrapper,
    .question-box__main,
    .inquiry-box,
    .contact-form,
    .parts-cvcontact-inner,
    .i01css_bg01css_radius,
    .works,
    .about-wapper,
    header {
        width: 95%;
        margin: 0 auto;
    }

    .about-wapper {
        width: 95% !important;
    }

    .parts-cvcontact-inner {
        padding: 0;
    }

    .parts-cvcontact-title {
        padding-top: 50px;
    }

    .parts-cvcontact-section {
        width: 100vw;

        background-color: #e6f0ff;

    }

    .parts-cvcontact-block-main-button-wrap,
    .line-mail-wrap {
        width: 90%;
    }

    .line-mail-wrap a {
        width: 80%;
    }

    .list {
        width: 100%;
        margin: 0;
    }

    .list table {
        width: 100%;
        height: auto;
    }

    .list th {
        width: 20%;
    }

    .list td {
        width: 80%;
    }

    .reason-block-section {
        width: 100%;
        background-color: #e6f0ff;
    }

    .list tbody,
    .css_columnSet {
        width: 100%;
    }

    .list tbody {
        margin: 0 auto;
    }


    /* ▼ 理由カード一覧 */
    .reason-block-list {
        width: 100%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
    }

    .reason-block-card {
        padding: 10px;
    }

    .contact-form {
        padding: 40px 10px;
    }
}

br.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    br.sp {
        display: inline;
    }
}

.region-service-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .region-service-toggle {
        display: inline-block;
    }
}