/* ---- Hero ---- */
.cnt-hero { background: #003770; color: #fff; padding: 80px 40px; text-align: center; }
.cnt-hero-label { font-size: 12px; letter-spacing: .14em; color: #7bbfff; margin-bottom: 12px; text-transform: uppercase; font-weight: 600; }
.cnt-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: .04em; margin-bottom: 20px; color: #fff; }
.cnt-hero-sub { font-size: clamp(14px, 1.8vw, 17px); color: #cce0f5; line-height: 1.8; }

/* ---- Section ---- */
.s-inquiry { padding: 64px 40px 96px; }
.section-inner { max-width: 720px; margin: 0 auto; }

/* ---- ステップ ---- */
.cnt-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; }
.cnt-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cnt-step__num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #e0e0e0; color: #999;
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.cnt-step__label { font-size: 12px; color: #999; letter-spacing: .06em; }
.cnt-step.is-active .cnt-step__num { background: #E5004F; color: #fff; }
.cnt-step.is-active .cnt-step__label { color: #E5004F; font-weight: 600; }
.cnt-step.is-done .cnt-step__num { background: #004892; color: #fff; }
.cnt-step.is-done .cnt-step__label { color: #004892; }
.cnt-step-arrow { width: 48px; height: 1px; background: #ddd; margin: 0 4px 20px; }

/* ---- Honeypot ---- */
.cnt-honeypot { position: absolute; left: -9999px; visibility: hidden; }

/* ---- エラー ---- */
.cnt-error { background: #fff0f4; border: 1px solid #f9b3c8; color: #c00040; font-size: 14px; padding: 14px 20px; border-radius: 4px; margin-bottom: 32px; }

/* ---- フォーム ---- */
.cnt-form { display: flex; flex-direction: column; gap: 28px; }

.cnt-field { display: flex; flex-direction: column; gap: 8px; }

.cnt-label { font-size: 14px; font-weight: 600; color: #333; display: flex; align-items: center; gap: 8px; }
.cnt-required { font-size: 11px; font-weight: 600; color: #fff; background: #E5004F; padding: 2px 6px; border-radius: 2px; letter-spacing: .04em; }

.cnt-input,
.cnt-select,
.cnt-textarea {
    font-size: 15px;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    transition: border-color .2s;
    font-family: inherit;
}
.cnt-input:focus,
.cnt-select:focus,
.cnt-textarea:focus { outline: none; border-color: #003770; }
.cnt-field-note { font-size: 12px; color: #aaa; margin-top: 4px; text-align: right; }
.cnt-count-over { color: #E5004F; font-weight: 700; }
.cnt-input::placeholder,
.cnt-textarea::placeholder { color: #bbb; }
.cnt-textarea { resize: vertical; line-height: 1.7; }
.cnt-select { appearance: none; 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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ---- プライバシーポリシー ---- */
.cnt-field-recaptcha .g-recaptcha { margin-left: auto; }
.cnt-field-privacy { margin-top: 8px; }
.cnt-privacy-wrap { display: flex; justify-content: center; }
.cnt-privacy-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #333; cursor: pointer; }
.cnt-privacy-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: #003770; cursor: pointer; }
.cnt-privacy-label a { color: #003770; text-decoration: underline; }
.cnt-privacy-label a:hover { color: #E5004F; }

/* ---- 送信ボタン ---- */
.cnt-submit { margin-top: 8px; display: flex; justify-content: center; }

/* ---- ボタン ---- */
.cnt-btn {
    display: inline-block;
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none;
    text-align: center;
}
.cnt-btn:hover { opacity: .8; }
.cnt-btn-primary { background: #003770; color: #fff; }
.cnt-btn-outline { background: #fff; color: #333; border: 1px solid #ccc; }

/* ---- 確認画面 ---- */
.cnt-confirm-note { font-size: 14px; color: #555; margin-bottom: 32px; }

.cnt-confirm-list { margin: 0 0 40px; border-top: 1px solid #e8e8e8; }
.cnt-confirm-row { display: grid; grid-template-columns: 160px 1fr; gap: 0 24px; padding: 16px 0; border-bottom: 1px solid #e8e8e8; font-size: 14px; }
.cnt-confirm-row dt { font-weight: 600; color: #555; }
.cnt-confirm-row dd { color: #333; margin: 0; }
.cnt-confirm-message { line-height: 1.8; }

.cnt-confirm-actions { display: flex; gap: 16px; justify-content: center; }

/* ---- 完了画面 ---- */
.cnt-thanks { text-align: center; padding: 40px 0; }
.cnt-thanks-icon { font-size: 48px; color: #E5004F; margin-bottom: 16px; line-height: 1; }
.cnt-thanks-icon.cnt-thanks-icon--mark { font-size: 25px; font-weight: bold; }
.cnt-thanks h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.cnt-thanks p { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 40px; }

/* ---- Footer ---- */
.footer__menu li a { font-size: 14px; font-weight: 400; }

/* ---- Header offset ---- */
body { padding-top: 80px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .cnt-hero { padding: 56px 20px; }
    .s-inquiry { padding: 48px 20px 72px; }
    .cnt-step-arrow { width: 28px; }
    .cnt-confirm-row { grid-template-columns: 1fr; gap: 4px; }
    .cnt-confirm-row dt { color: #888; font-size: 12px; }
    .cnt-confirm-actions { flex-direction: column-reverse; align-items: stretch; }
    .cnt-btn { text-align: center; }
}
