@charset "utf-8";
/*=============================================================

	Date         : 2026-06-08
	CSS Document : RECRUIT設定

=============================================================*/

#main.recruit {
  padding: 0 0 80px;
  color: #222;
}

.recruit section {
  box-sizing: border-box;
}

/* message */

.recruit-message {
  margin: 0 auto;
  padding-top: 56px;
}

.recruit-message__title {
  position: relative;
  margin: 0 0 48px;
  padding-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.recruit-message__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 320px;
  height: 1px;
  background: #999;
  transform: translateX(-50%);
}

.recruit-message__visual {
  position: relative;
  overflow: hidden;
}

.recruit-message__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-message__texts {
  position: absolute;
  top: 96px;
  right: 34px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.recruit-message__texts p {
  margin: 0 0 4px;
}

.recruit-message__texts span {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.92);
}

.recruit-message__space {
  margin-top: 24px !important;
}

/* section heading */

.section-heading {
  margin: 52px 0 32px;
  text-align: center;
}

.section-heading h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading p {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.section-heading--requirements {
  margin-top: 92px;
  margin-bottom: 22px;
}

.section-heading--requirements h3 {
  font-size: 28px;
}

/* flow */

.recruit-flow {
  margin: 0 auto;
}

.recruit-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-flow__item h4 {
  margin: 0;
  padding: 10px 8px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.recruit-flow__item p {
  min-height: 110px;
  margin: 0;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.recruit-flow__item--entry h4 {
  background: #12aeea;
}

.recruit-flow__item--entry p {
  background: #70d8ff;
}

.recruit-flow__item--document h4 {
  background: #ff6267;
}

.recruit-flow__item--document p {
  background: #ffb4b4;
}

.recruit-flow__item--interview h4 {
  background: #82e600;
}

.recruit-flow__item--interview p {
  background: #d7ff91;
}

.recruit-flow__item--offer h4 {
  background: #ffc928;
}

.recruit-flow__item--offer p {
  background: #ffeaa6;
}

/* requirements */

.recruit-requirements {
  margin: 0 auto;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.8;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid #ddd;
  vertical-align: middle;
}

.recruit-table th {
  width: 150px;
  padding: 28px 18px;
  background: #f7f7f7;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}

.recruit-table td {
  padding: 20px 26px;
  font-size: 16px;
}

.recruit-table ul {
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

.recruit-table p {
  margin: 0 0 4px;
}

.recruit-entry {
  margin-top: 38px;
  text-align: center;
}

.recruit-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  min-height: 52px;
  background: #0d5f7a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}


/* ------------------------------
  responsive
------------------------------ */

@media (max-width: 767px) {
  #main.recruit {
    padding: 0 20px 60px;
  }

  .recruit-message {
    max-width: none;
    padding-top: 42px;
  }

  .recruit-message__title {
    margin-bottom: 34px;
    font-size: 20px;
  }

  .recruit-message__title::after {
    width: 240px;
  }

  .recruit-message__visual {
    margin: 0 -20px;
  }

  .recruit-message__visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

  .recruit-message__texts {
    top: 72px;
    right: 18px;
    left: 18px;
    font-size: 13px;
  }

  .recruit-message__texts span {
    padding: 2px 6px;
  }

  .section-heading {
    margin: 44px 0 24px;
  }

  .section-heading h3 {
    font-size: 26px;
  }

  .recruit-flow {
    max-width: none;
  }

  .recruit-flow__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recruit-flow__item p {
    min-height: 0;
  }

  .recruit-requirements {
    max-width: none;
  }

  .section-heading--requirements {
    margin-top: 64px;
  }

  .recruit-table {
    display: block;
    font-size: 13px;
  }

  .recruit-table tbody,
  .recruit-table tr,
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }

  .recruit-table th {
    padding: 12px 16px;
    text-align: left;
  }

  .recruit-table td {
    padding: 16px;
    border-top: 0;
  }

  .recruit-entry__button {
    width: 240px;
  }
}