/* =========================
   ベース（これ超重要）
========================= */

body {
  font-family: "Noto Serif JP", serif;
  color: #111;
  margin: 0;
  padding: 0;
  background: #fff;
}

* {
  box-sizing: border-box;
}

/* =========================
   共通
========================= */

.inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   ファーストビュー
========================= */

.fv-career {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 10px;
}

.fv-inner {
  max-width: 700px;
}

.fv-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 24px;
}

.fv-catch {
  font-size: 34px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fv-sub {
  font-size: 16px;
  color: #666;
}

.fv-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ボタン */

.btn-main {
  padding: 14px 34px;
  background: #111;
  color: #fff !important;
  border: 1px solid #111;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.btn-main:hover {
  background: #fff;
  color: #111 !important;
}

.btn-sub {
  padding: 14px 34px;
  background: #fff;
  border: 1px solid #111;
  color: #111 !important;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.btn-sub:hover {
  background: #111;
  color: #fff !important;
}

.btn-main,
.btn-sub {
  transition: all 0.3s ease;
}

.btn-main:hover,
.btn-sub:hover {
  transform: translateY(-2px);
}

/* =========================
   メッセージ
========================= */

.career-message {
  padding: 50px 0 80px;
}

.career-message .inner {
  max-width: 640px;
  margin: 0 auto;
}

.career-message h2 {
  font-size: 26px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.career-message p {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 24px;
}


/* =========================
   スマホ対応
========================= */

@media screen and (max-width: 768px) {

  .fv-catch {
    font-size: 24px;
  }

  .fv-sub {
    font-size: 14px;
  }

  .fv-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-main,
  .btn-sub {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }

  .career-message,
  .career-env,
  .career-dorm,
  .career-note,
  .career-form {
    padding: 70px 0;
    font-size: 18px;
  }

}