@charset "UTF-8";
/* =========================================================
   採用情報（page-recruit.php）専用スタイル
   ページヘッダー（レッド）/ メッセージ / 魅力 /
   募集要項 / 応募の流れ / エントリーCTA
   ========================================================= */

/* ===== ページヘッダー（レッド・中央寄せ） ===== */
.ph-recruit {
  height: 440px;
}

.ph-recruit .ph-bg {
  background: linear-gradient(115deg, rgba(22, 25, 34, 0.88), rgba(120, 20, 15, 0.6)), var(--ink);
}

.ph-recruit::after {
  display: none;
}

.ph-recruit .page-hero-inner {
  width: 100%;
  text-align: center;
  padding: 0 24px;
}

.ph-recruit .page-hero-inner .en {
  justify-content: center;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  color: #ff9a93;
  margin-bottom: 14px;
}

.ph-recruit .page-hero-inner .en::before {
  display: none;
}

.ph-recruit .page-hero-inner h1 {
  /* 画面幅に応じて自動縮小（狭い端末では小さく）＋1行維持 */
  font-size: clamp(1.05rem, 5vw, 3.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: 14px;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: none;
}

.ph-recruit .page-hero-inner h1 .accent {
  background-image: linear-gradient(120deg, #ff9a93, #ff3b30 55%, #ff6a62);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ph-recruit .page-hero-inner p {
  font-size: 1rem;
  opacity: 0.92;
}

/* ===== メッセージ ===== */
#message {
  padding: 90px 0;
  text-align: center;
}

#message .en {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.7rem;
  display: block;
}

#message h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 6px 0 24px;
  line-height: 1.5;
}

#message p {
  max-width: 680px;
  margin: 0 auto 16px;
  color: #444;
  font-size: 0.96rem;
}

/* ===== 働く魅力 ===== */
#merit {
  padding: 90px 0;
  background: var(--paper);
}

.merit-head {
  text-align: center;
  margin-bottom: 46px;
}

.merit-head .en {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.7rem;
  display: block;
}

.merit-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
}

.merit-head .bar {
  width: 50px;
  height: 3px;
  background: var(--grad-red);
  margin: 14px auto 0;
  border-radius: 2px;
}

.merit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.merit-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 79, 208, 0.08);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.merit-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 44px rgba(255, 59, 48, 0.18);
}

.merit-card .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #fff;
  background: var(--grad-red);
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.3);
}

.merit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}

.merit-card p {
  font-size: 0.88rem;
  color: #555;
}

/* ===== 募集要項 ===== */
#requirements {
  padding: 90px 0;
}

.req-head {
  text-align: center;
  margin-bottom: 46px;
}

.req-head .en {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.7rem;
  display: block;
}

.req-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
}

.req-head .bar {
  width: 50px;
  height: 3px;
  background: var(--grad-red);
  margin: 14px auto 0;
  border-radius: 2px;
}

.req-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(11, 79, 208, 0.1);
}

.req-card .req-top {
  background: var(--grad-red);
  color: #fff;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.req-card .req-top h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.req-card .req-top .badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
}

.req-table {
  background: #fff;
}

.req-table dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--silver-light);
}

.req-table dl:last-child {
  border-bottom: 0;
}

.req-table dt {
  padding: 20px 28px;
  font-weight: 700;
  color: var(--red-deep);
  background: #fff7f6;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-table dd {
  padding: 20px 28px;
  font-size: 0.92rem;
  color: #333;
}

/* ===== 応募の流れ ===== */
#flow {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--ink), #2a2f3a);
  color: #fff;
}

.flow-head {
  text-align: center;
  margin-bottom: 50px;
}

.flow-head .en {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.7rem;
  display: block;
  color: #fff;
}

.flow-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
}

.flow-head .bar {
  width: 50px;
  height: 3px;
  background: var(--grad-red);
  margin: 14px auto 0;
  border-radius: 2px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.flow-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.flow-step .no {
  font-family: "Comfortaa", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #ff9a93;
  font-weight: 700;
}

.flow-step .ic {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin: 12px 0;
}

.flow-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.82rem;
  opacity: 0.82;
}

/* ===== エントリーCTA ===== */
#entry {
  padding: 90px 0;
  text-align: center;
  background: var(--grad-red);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#entry h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

#entry p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.entry-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.entry-btn {
  background: #fff;
  color: var(--red-deep);
  padding: 17px 44px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.entry-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.entry-tel {
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.entry-tel b {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.6rem;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .merit-cards {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .req-table dl {
    grid-template-columns: 120px 1fr;
  }

  .ph-recruit .page-hero-inner p {
    font-size: 0.9rem;
  }
}
