

   /* ── お問い合わせ方法カード ── */
   .contact-methods {
    background: var(--white);
    padding: 72px 0 56px;
   }
   .method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
   }
   .method-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
   }
   .method-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
   }
   .method-card.card-tel {
    border-color: #b3dff5;
   }
   .method-card.card-tel::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
   }
   .method-card.card-web {
    border-color: #ffd9a8;
   }
   .method-card.card-web::before {
    background: linear-gradient(90deg, var(--accent), #ff9800);
   }
   .method-card.card-line {
    border-color: #b5e8b5;
   }
   .method-card.card-line::before {
    background: linear-gradient(90deg, #00b900, #00d400);
   }
   .method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
   }
   .method-icon {
    font-size: 48px;
    margin: 0 auto;
    margin-bottom: 16px;
    display: block;
    width: 64px;
   }
   .method-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
   }
   .method-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
   }
   .method-tel-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
   }
   .method-tel-num:hover {
    color: var(--primary-dark);
   }
   .method-hours {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
   }
   .btn-method {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
   }
   .btn-method.orange {
    background: var(--accent);
    color: #fff;
   }
   .btn-method.orange:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
   }
   .btn-method.green {
    background: #00b900;
    color: #fff;
   }
   .btn-method.green:hover {
    background: #009900;
    transform: translateY(-1px);
   }

   /* ── フォームセクション ── */
   .form-section {
    background: var(--primary-light);
    padding: 80px 0;
   }
   .form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 52px 56px;
    box-shadow: 0 8px 32px rgba(87, 186, 231, 0.12);
   }
   .form-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
   }
   .form-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--border);
   }

   /* フォームフィールド */
   .field {
    margin-bottom: 24px;
   }
   .field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
   }
   .badge-req {
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    background: #fee2e2;
    padding: 2px 8px;
    border-radius: 8px;
   }
   .badge-opt {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 8px;
   }
   .field input[type="text"],
   .field input[type="email"],
   .field input[type="tel"],
   .field select,
   .field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
    color: var(--text);
    background: #fafeff;
    transition:
     border-color 0.2s,
     box-shadow 0.2s;
    outline: none;
    appearance: none;
   }
   .field input:focus,
   .field select:focus,
   .field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(87, 186, 231, 0.15);
    background: #fff;
   }
   .field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
   }
   .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2362bff1' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
   }

   /* ラジオ・チェックボックス */
   .radio-group,
   .check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
   }
   .radio-item,
   .check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
   }
   .radio-item input[type="radio"],
   .check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
   }
   .radio-item label,
   .check-item label {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
   }

   /* 希望時間帯グリッド */
   .time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
   }
   .time-item {
    position: relative;
   }
   .time-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
   }
   .time-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0;
   }
   .time-item input:checked + label {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
   }
   .time-item label:hover {
    border-color: var(--primary);
    color: var(--primary);
   }

   /* プライバシー */
   .privacy-box {
    background: #f8fdff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    max-height: 120px;
    overflow-y: auto;
    margin-bottom: 14px;
   }
   .privacy-box a {
    color: var(--primary);
   }

   /* 送信ボタン */
   .btn-submit {
    width: 100%;
    background: linear-gradient(
     135deg,
     var(--primary) 0%,
     var(--primary-dark) 100%
    );
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 36px;
    font-size: 17px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(87, 186, 231, 0.4);
    letter-spacing: 0.03em;
   }
   .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(87, 186, 231, 0.5);
   }
   .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
   }
   .form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 14px;
   }

   /* 送信完了メッセージ */
   .thanks-msg {
    display: none;
    text-align: center;
    padding: 48px 20px;
   }
   .thanks-msg .thanks-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
   }
   .thanks-msg h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
   }
   .thanks-msg p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
   }

   /* ── 注意事項・サンプル告知 ── */
   .notice-section {
    background: var(--white);
    padding: 40px 0;
   }
   .notice-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff8e1;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
   }
   .notice-box strong {
    color: var(--accent-dark);
   }

   /* ── フィールドグループ（横並び） ── */
   .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
   }

   /* ── responsive ── */
   @media (max-width: 768px) {
    .method-grid {
     grid-template-columns: 1fr;
    }
    .form-wrap {
     padding: 36px 24px;
    }
    .time-grid {
     grid-template-columns: repeat(2, 1fr);
    }
    .field-row {
     grid-template-columns: 1fr;
    }
   }
