@charset "UTF-8";

/*------------------------------------------------------------
  職種と募集要項（/recruit/kyujin/）
------------------------------------------------------------*/

/* ページヒーロー */
.page-hero {
  position: relative;
  width: 100%;
  height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: 0;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}
.page-hero__h1 {
  font-size: 5.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .page-hero {
    height: 26rem;
  }
  .page-hero__h1 {
    font-size: 3.6rem;
  }
}

/* セクション共通 */
.kyujin-section {
  padding: 6rem 0;
}
.kyujin-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.kyujin-section--bg {
  background: #f8f8f8;
}

@media screen and (max-width: 768px) {
  .kyujin-inner {
    padding: 0 2rem;
  }
  .kyujin-section {
    padding: 4rem 0;
  }
}

/* 募集要項 */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  margin-top: 4rem;
}
.jobs-col {
  border: 2px solid #29b5a8;
  padding: 3.2rem 2.8rem 2.8rem;
  background: #fff;
}
.jobs-col__ttl {
  display: block;
  color: #29b5a8;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.jobs-col__desc {
  font-size: 1.45rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}
.jobs-col__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.jobs-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  color: #fff;
  padding: 1.8rem 2.2rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: background 0.25s;
  text-align: center;
}
.jobs-card:hover {
  background: #333;
}
.jobs-card__label {
  flex: 1;
  text-align: center;
  line-height: 1.5;
}
.jobs-card__arrow {
  flex-shrink: 0;
  margin-left: 1.2rem;
  font-size: 1.6rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

/* グレード比較表 */
.grade-img-wrap {
  text-align: center;
  margin-top: 4rem;
}
.grade-img-wrap img {
  max-width: 86rem;
  width: 100%;
  height: auto;
}

/* ENTRY バナー */
.entry-banner-wrap {
  padding: 6rem 2rem;
  text-align: center;
  background: #fff;
}
.entry-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #29b5a8;
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 2rem 8rem;
  min-width: 32rem;
  transition: background 0.3s;
  border-radius: 0.2rem;
}
.entry-banner:hover {
  background: #1d9e92;
}
.entry-banner__icon {
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.entry-banner__icon::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-0.1rem, 0.1rem);
}

@media screen and (max-width: 768px) {
  .entry-banner {
    padding: 1.8rem 4rem;
    min-width: 24rem;
  }
}
