@charset "utf-8";

/* -----------------------------
   全体
----------------------------- */
#content {
    width: 80%;
    margin: 0 auto;
    padding-top: 130px;
    font-family: "Zen Old Mincho", serif;
    margin-bottom: 250px; 
}

.sp-br {
    display: none;
}

/* SPではpaddingを消す */
@media(max-width: 768px){
    #content {
        padding-top: 0;
    }
}

/* -----------------------------
   タイトル
----------------------------- */
.recruitTitle {
    width: 100%;
    text-align: center; /* タイトル全体を中央寄せ */
    margin: 40px 0 30px;
}

.recruitTitle .title {
    font-size: 40px;        /* PC用文字サイズ */
    font-weight: 400;       /* 太さ統一 */
    line-height: 1.35;
    letter-spacing: 1.4px;
    margin-bottom: 32px;
    display: inline-block;
    text-align: center;     /* タイトル文字も中央寄せ */
}

.areaCompanyWrap p {
    font-size: 18px;
    line-height: 1.94;   /* ← PCだけここが適用される */
    color: #333;
    margin-bottom: 1.5em;
}

/* SP用文字サイズ */
@media(max-width: 768px){
    .recruitTitle .title {
        font-size: clamp(28px, 6vw, 40px); /* ← ここでSPだけ大きくする */
          margin-bottom: clamp(18px, 3.4vw, 26px);
    }
}

/* -----------------------------
   送信完了メッセージ
----------------------------- */
.areaCompanyWrap {
    width: 640px;
    margin: 0 auto;
    text-align: center; /* メッセージ中央寄せ */
}

.areaCompanyWrap p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5em;
}

/* 電話リンク */
.areaCompanyWrap a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* SP対応 */
@media(max-width: 768px){
    .areaCompanyWrap {
        width: 100%;
        padding: 0 20px;
    }
    .areaCompanyWrap p {
        font-size: clamp(14px, 3.5vw, 18px);
        line-height: 1.86;
    }
    #content {
         padding-top: 0;
         margin-bottom: 80px; /* SPは少し小さめに */
     }
     .sp-br {
          display: block;
      }
}

/* -----------------------------
   SPハンバーガー色変更
----------------------------- */
.hamburger span {
    background: #fff;
}
@media(max-width: 768px){
    .hamburger span {
        background: #000; /* SPでは黒 */
    }
}
