@charset "UTF-8";
/* ============================================================
   お問い合わせページ（page-entry.php 専用スタイル）
   ※ 1rem = 10px（html font-size: 62.5%）
   ※ body#contact 配下にスコープ（読み込みは /entry/ のみ）
   ============================================================ */

/* 注意ボックス（新卒採用にご応募の方へ） */
#contact .contact-notice {
    max-width: 800px;
    margin-inline: auto;
    padding: 20px 24px;
    background: #eef2fb;
    border-radius: 8px;
    text-align: center;
}
#contact .contact-notice__ttl {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002f7c;
    margin-bottom: 8px;
}
#contact .contact-notice__txt {
    font-size: 1.4rem;
    line-height: 1.9;
}
#contact .contact-notice__txt a {
    color: #002f7c;
    font-weight: 700;
    text-decoration: underline;
}
@media (min-width: 768px) {
    #contact .contact-notice { padding: 24px 32px; }
    #contact .contact-notice__ttl { font-size: 1.7rem; }
    #contact .contact-notice__txt { font-size: 1.5rem; }
}

/* 当社を知った方法：「その他」自由記述欄 */
#contact .know-other {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}
#contact .know-other__label {
    flex-shrink: 0;
    font-size: 1.4rem;
}
#contact .know-other__field {
    flex: 1;
}
#contact .know-other__field .form-input {
    width: 100%;
}
