/* ===== Contact page ===== */
.container {
    padding: 0 4%;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f2d4d;
}

.contact-lead {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ボタンブロック */
.contact-btn-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.contact-reserve-btn {
    background: #26a69a;
    max-width: 500px;
    width: 100%;
}

.contact-reserve-btn:hover {
    background: #0a867a;
}

.contact-note {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

/* プライバシーポリシー同意 */
.contact-policy {
    text-align: center;
    margin-bottom: 30px;
}

.contact-policy a {
    color: #1d80c5;
    text-decoration: underline;
}

/* トップへ戻る */
.btn--secondary {
    background: #f0f4f8;
    color: #1d80c5;
    border: 1px solid #c9dbea;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--secondary:hover {
    background: #e3eef7;
    border-color: #b7cbe2;
}

.back-to-top {
    display: block;
    max-width: 260px;
    margin: 20px auto 0;
    text-align: center;
}

/* SP対応 */
@media (max-width: 768px) {
    .contact-title {
        font-size: 26px;
    }

    .contact-lead {
        font-size: 16px;
    }

    .btn--large {
        padding: 18px 10px;
        font-size: 16px;
    }
}