/* --------------------
   基本設定（フォーム用）
-------------------- */
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    background: #fdf6f5;
    color: #084d46;
}

/* フォーム全体をセンターに配置しつつ、中身は左揃え */
.contact-form-section {
    width: 92%;
    max-width: 700px;
    margin: 80px auto 100px;   /* 上に余白をとってヘッダーと被らないように */
    padding: 10px;
    box-sizing: border-box;
    text-align: left;          /* 中身は左寄せ */
}

/* テキスト系のラベル共通 */
.contact-form label {
    display: block;
    margin-bottom: 22px;
    font-weight: 700;
    color: #084d46;
}

/* テキスト入力・textarea 共通 */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

/* お問い合わせ内容のテキストエリア */
.contact-form textarea {
    height: 180px;
}

/* --------------------
   ラジオボタン（お問い合わせ種別）
-------------------- */
.form-block {
    margin: 30px 0;
}

/* 「お問い合わせ種別（必須）」のタイトル */
.form-block .label-title {
    font-weight: 700;
    margin-bottom: 12px;
}

/* 各ラジオ行：丸＋テキストを横並びにする */
.form-block label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    margin-bottom: 10px;
}

/* ラジオボタン自体 */
.form-block input[type="radio"] {
    width: auto;
    height: auto;
    margin: 0;
    transform: scale(1.3);
}

/* --------------------
   プライバシーポリシー同意
-------------------- */
.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0;
    font-weight: normal;
}

.privacy-check input[type="checkbox"] {
    width: auto;
    height: auto;
    margin: 0;
    transform: scale(1.3);
}

/* --------------------
   送信ボタン
-------------------- */
.submit-btn {
    display: block;
    width: 100%;
    background: #c23b8a;
    color: #fff;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;   /* ボタンの文字は中央 */
}

.submit-btn:hover {
    background: #a62871;
}

/* 送信完了メッセージ */
.contact-complete {
    background: #e8f6ec;
    border-left: 6px solid #ffffff;
    padding: 18px 20px;
    margin: 20px auto 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 6px;
    color: #a62871;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
}

/* --------------------
   スマホ用（ヘッダー被り対策）
-------------------- */
@media (max-width: 768px) {
    .page-header {
        margin-top: 90px;
    }
}




/* reCAPTCHA を中央寄せ＋周囲に余白 */
.recaptcha-area {
    text-align: center;
    padding: 20px 0; /* 上下の余白 */
}

.recaptcha-area .g-recaptcha {
    display: inline-block;
    margin: 0 auto;
}