/* LINE相談トップセクション（最終調整版） */
.line-consult-top-final {
    /* 背景ストライプ */
    background: repeating-linear-gradient(
      45deg,
      #f0f9ff,
      #f0f9ff 10px,
      #e6f4ff 10px,
      #e6f4ff 20px
    );
    padding: 40px 20px;
    border-bottom: 4px solid #78BBE6;
}

.line-consult-container-final {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    /* 枠線は「青」だけに修正 */
    border: 4px solid #78BBE6;
    border-radius: 24px;
    padding: 35px 30px 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(120, 187, 230, 0.15);
}

/* 上部の青バッジ */
.consult-badge-blue {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #78BBE6;
    color: #fff;
    padding: 5px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* メインコピー */
.consult-main-text-final {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.text-orange { color: #f39c12; } /* オレンジは見出しのアクセントに */
.text-pink { color: #EF009C; }   /* ワードはピンク */

.consult-sub-text-final {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* お悩みタグ（すべてピンク） */
.consult-questions-final {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.q-item-final.pink {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    background: #fff0f9;
    color: #EF009C;
    border: 1px solid #EF009C;
}

/* LINEボタン（枠線なし・影で立体感） */
.line-btn-wrap-final {
    margin-bottom: 10px;
}

.line-cta-button-final {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #06C755, #05b34d);
    color: #fff !important;
    text-decoration: none !important;
    padding: 15px 30px;
    border-radius: 60px;
    width: 100%;
    max-width: 450px;
    /* 枠線は削除、影のみでボタンらしさを強調 */
    box-shadow: 0 6px 0 #04923f, 0 10px 20px rgba(6, 199, 85, 0.3);
    transition: all 0.2s ease;
    border: none !important;
}

.line-cta-button-final:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #04923f;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 4px;
    opacity: 0.9;
}

.btn-main {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 900;
}

.consult-note-final {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
}

/* スマホ調整 */
@media screen and (max-width: 600px) {
    .line-consult-top-final { padding: 30px 10px; }
    .line-consult-container-final { padding: 35px 15px 25px; }
}

/* ====================================
   洗濯機修理：おすすめする理由
   ==================================== */
.repair-reason-section {
    padding: 5rem 1rem;
    background-color: #ffffff; /* 清潔感のある白 */
}

/* 共通見出しの色調整 */
.repair-reason-section .common-title {
    color: #333;
    text-shadow: none;
}
.repair-reason-section .common-badge {
    background-color: #78BBE6;
    color: #fff;
}
.repair-reason-section .common-bar {
    background-color: #78BBE6;
}

.reason-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card {
    background: #f0f9ff; /* ほんのり水色の背景 */
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 2px solid #e6f4ff;
    box-shadow: 0 10px 30px rgba(120, 187, 230, 0.1);
}

.reason-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.reason-lead {
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* 黄色マーカー */
.marker-yellow {
    background: linear-gradient(transparent 60%, #fff9c4 60%);
    padding: 0 4px;
}

.reason-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* ポイントを強調するボックス */
.reason-point-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 8px solid #00897b; /* 誠実・安心を表す緑のアクセント */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.point-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00897b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.point-title::before {
    content: "●";
    margin-right: 8px;
    font-size: 0.8rem;
}

.reason-image {
    width: 100%;
    max-width: 400px;
}

.reason-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* PC用レイアウト */
@media (min-width: 768px) {
    .reason-content {
        flex-direction: row;
        text-align: left;
    }
    .reason-lead {
        text-align: left;
        font-size: 1.8rem;
    }
    .reason-text {
        flex: 1;
    }
    .reason-image {
        flex: 0.8;
    }
}

/* ====================================
   洗濯機修理メニュー専用スタイル
   ==================================== */
.repair-menu-section {
    padding: 3rem 1rem;
    background-color: #f0f9ff;
}

.repair-menu-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.repair-menu-card {
    background-color: #fff;
    border: 2px solid #9ACFF3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.repair-menu-header {
    background-color: #78BBE6;
    color: #ffffff;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}

.repair-menu-body {
    padding: 1.5rem;
}

/* 修理専用テーブル */
.repair-menu-table {
    width: 100%;
    border-collapse: collapse;
}
.repair-menu-table tr { border-bottom: 1px solid #e0f2fe; }
.repair-menu-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
    color: #444;
}
.repair-menu-table th p { font-size: 0.75rem; color: #666; margin: 0; font-weight: normal; }
.repair-menu-table td {
    text-align: right;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    color: #333;
    white-space: nowrap;
}

/* 部品代に関する注釈 */
.repair-billing-notice {
    margin-top: 2rem;
    background-color: #fff9f0;
    border: 1px solid #f39c12;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.billing-main { color: #e67e22; font-weight: 900; font-size: 1.1rem; margin: 0; }
.billing-sub { font-size: 0.85rem; color: #666; margin-top: 5px; }

/* PC用レイアウト調整 */
@media (min-width: 768px) {
    .repair-wide-card { grid-column: span 1; } /* 修理ページでは1列ずつ並べる場合 */
    
    /* 部品交換が必要なエリアを2列に */
    .parts-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* 1列に大きく表示したい場合はこちら */
    .repair-menu-grid { grid-template-columns: 1fr; }
}

/* 部品カテゴリのタイトル */
.parts-group-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #333;
    border-bottom: 2px solid #78BBE6;
    padding-bottom: 5px;
    margin: 1.5rem 0 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.parts-group-title span { font-size: 0.75rem; color: #78BBE6; font-weight: normal; }

/* ====================================
   キャンセル・調査費タイルの調整
   ==================================== */
.cancel-policy-card {
    margin-top: 2rem;
    text-align: left !important; /* 文言が長いので左寄せに */
}

.notice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.notice-icon {
    font-size: 1.2rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.policy-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: #e67e22; /* オレンジで強調 */
    font-weight: bold;
}

.policy-list strong {
    color: #EF009C; /* 金額はピンクで目立たせる */
    font-weight: 900;
    text-decoration: underline;
}

/* PC：幅を少し絞って読みやすく */
@media (min-width: 768px) {
    .cancel-policy-card {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}