/* 新卒採用サブナビ */
.nav-recruit_subnav {
  margin-bottom: 45px;
  padding-top: 30px;
}

.nav-recruit_subnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: .8;
}

@media (max-width: 736px) {
  .nav-recruit_subnav ul {
    row-gap: .5em;
  }
}

.nav-recruit_subnav li {
  position: relative;
  padding: 0 1.5em;
}

.nav-recruit_subnav li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #333;
}



.nav-recruit_subnav li:last-child::after {
  display: none;
}

.nav-recruit_subnav li a {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-recruit_subnav li.active a {
  background: #f08a07;
  background: url("../img/pattern-yellow01.png");
  color: #fff;
  pointer-events: none;
}

/* SP */
@media (max-width: 736px) {
  .nav-recruit_subnav {
    margin-bottom: 30px;
    padding-top: 0;
  }

  .nav-recruit_subnav li::after {
    display: none;
  }

  .nav-recruit_subnav li:nth-child(1)::after {
    display: block;
    height: 50%;
  }


  .nav-recruit_subnav li:nth-child(3) {
    width: 100%;
    text-align: center;
  }

  .nav-recruit_subnav li a {
    padding: 10px 10px;
    font-size: 15px;
  }
}


/* recruit_message */

.area-about01 .area-about01_inner.right_img.area-about01_inner--recruit p {
  font-size: 21px;
}

@media (max-width: 1024px) {
  .area-about01 .area-about01_inner.right_img.area-about01_inner--recruit p {
    font-size: 18px;
  }
}

@media (max-width: 736px) {
  .area-about01 .area-about01_inner.right_img.area-about01_inner--recruit p {
    font-size: 16px;
  }

}

@media (max-width: 736px) {
  .area-about01 .area-about01_inner.right_img.area-about01_inner--recruit {
    flex-direction: column;
    gap: 1.5em;
  }

  .area-about01 .area-about01_inner.right_img.area-about01_inner--recruit .img {
    margin-bottom: 0;
  }
}

.point-block__head {
  text-align: center;
  font-size: 21px;
  letter-spacing: .4em;
}

@media (max-width: 736px) {
  .point-block__head {
    font-size: 17px;
    padding-top: 20px;
    letter-spacing: .2em;
  }
}

.point-block {
  border-radius: 3em;
  padding: 45px 70px 70px;

  position: relative;
}

@media (max-width: 1024px) {
  .point-block {
    padding: 45px 40px 60px;
  }
}

@media (max-width: 736px) {
  .point-block {
    padding: 50px 20px 50px;
    margin-top: 80px;
  }
}

.point-block__circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -45px;
  left: 90px;

  background-color: #f08a07;
  background: url("../img/pattern-yellow01.png");
  display: grid;
  place-items: center;
}

@media (max-width: 1024px) {
  .point-block__circle {
    width: 120px;
    height: 120px;
    left: 60px;
  }
}

@media (max-width: 736px) {
  .point-block__circle {
    width: 100px;
    height: 100px;
    left: 20px;
  }
}

.point-block__circleInner {
  color: #fff;
  font-family: 'Oxygen', sans-serif;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 736px) {
  .point-block__circleInner {
    font-size: 16px;
  }
}


/* POINTリスト */
.point-list {
  margin: 0;
  padding: 0;
  margin-top: 45px;
}

@media (max-width: 736px) {
  .point-list {
    margin-top: 20px;
  }
}

.point-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
}

.point-item dt {
  font-family: 'Oxygen', sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-right: .8em;
  white-space: nowrap;
  color: #f08a07;
}

@media (max-width: 736px) {
  .point-item dt {
    font-size: 16px;
  }
}


.point-item dd {
  font-size: 21px;
  margin: 0;
}

@media (max-width: 736px) {
  .point-item dd {
    font-size: 15px;
  }
}

.point-item dd .marker {
  background: linear-gradient(transparent 60%, #fae70f 60%);
}

/* SP */
@media (max-width: 736px) {
  .point-item {
    flex-direction: column;
    margin-bottom: 1.2em;
  }

  .point-item dt {
    margin-right: 0;
    margin-bottom: .3em;
  }
}


/* キャッチコピー（斜線あしらい） */
.point-block__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 24px;
  font-weight: bold;
  color: #f08a07;
  text-align: center;
  line-height: 1.8;
  margin-top: 35px;
  letter-spacing: .2em;
}

.point-block__catch::before,
.point-block__catch::after {
  content: "";
  width: 2px;
  height: 80px;
  background: #f08a07;
}

.point-block__catch::before {
  transform: rotate(-15deg);
  margin-right: 1em;
}

.point-block__catch::after {
  transform: rotate(15deg);
  margin-left: 1em;
}

/* SP */
@media (max-width: 736px) {
  .point-block__catch {
    font-size: 15px;
    margin-top: 25px;
  }

  .point-block__catch::before,
  .point-block__catch::after {
    height: 60px;
  }
}


.area-recruit_message {
  margin-top: 60px;
}


.area-recruit_message p {
  text-align: justify;
}

.area-recruit_message p.center {
  text-align: center;
}

@media (max-width: 736px) {
  .area-recruit_message {
    margin-top: 30px;
  }
}

.area-recruit_message .h-type10+p {
  margin-top: 20px;
}

@media (max-width: 736px) {
  .area-recruit_message .h-type10+p {
    margin-top: 10px;
  }
}

.area-recruit_message__inner:not(:first-of-type) {
  margin-top: 40px;
}

@media (max-width: 736px) {
  .area-recruit_message__inner:not(:first-of-type) {
    margin-top: 20px;
  }
}

.area-recruit_message p+p {
  margin-top: 25px;
}

@media (max-width: 736px) {
  .area-recruit_message p+p {
    margin-top: 10px;
  }
}


@media (max-width: 736px) {
  .area-recruit_message_02 {
    margin-top: 20px;
  }

}

.area-recruit_message_02 .h-type05.large p,
.area-recruit_message_02 .h-type05.large h3 {
  letter-spacing: .1em;
}



/* カードリスト03 */
.card-list03 {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.card-list03__item {
  width: 30.7%;
  /* 307/1000 */
}

.card-list03__title {
  font-size: 18px;
  font-weight: bold;
  color: #34a034;
  text-align: center;
  margin-bottom: .5em;
  white-space: nowrap;
}

.card-list03__img img {
  width: 100%;
  height: auto;
}

.card-list03__text {
  letter-spacing: .1em;
  font-weight: normal;
  margin-top: .5em;
  text-align: justify;

}

/* SP */
@media (max-width: 736px) {
  .card-list03 {
    flex-direction: column;
    gap: 30px;
  }

  .card-list03__item {
    width: 100%;
  }

  .card-list03__body {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .card-list03__img {
    flex-shrink: 0;
    width: 40%;
  }

  .card-list03__img img {
    width: 100%;
    height: 150px;
    /* 高さ固定 */
    object-fit: cover;
    object-position: center;
    /* 位置調整はここ */
  }

  .card-list03__text {
    flex: 1;
    margin-top: 0;
    font-size: 13px;
  }
}


/* Swiperスライド */
.swiper-recruit {
  position: relative;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 50px;
  /* 矢印のスペース */
}

.swiper-recruit .swiper-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-recruit .swiper-slide {
  width: 25%;
  /* 4枚で100% */
}

.swiper-recruit .swiper-slide img {
  width: 100%;
  aspect-ratio: 250 / 180;
  object-fit: cover;
  object-position: center;
}

/* 矢印 */
.swiper-recruit .swiper-button-prev,
.swiper-recruit .swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 30px;
  margin: auto;
  background-image: none;
}

.swiper-recruit .swiper-button-prev {
  left: 0;
}

.swiper-recruit .swiper-button-next {
  right: 0;
}

.swiper-recruit .swiper-button-prev::before,
.swiper-recruit .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.swiper-recruit .swiper-button-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.swiper-recruit .swiper-button-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* SP */
@media (max-width: 736px) {
  .swiper-recruit {
    padding: 0 40px;
    margin-top: 35px;
  }

  .swiper-recruit .swiper-slide {
    width: 100%;
  }

  .swiper-recruit .swiper-slide img {
    height: auto;
    aspect-ratio: 250 / 180;
  }

  .swiper-recruit .swiper-container {
    height: auto;
  }

  .swiper-recruit .swiper-wrapper {
    height: auto;
  }

  .swiper-recruit .swiper-slide {
    height: auto;
    background: none;
  }

  .swiper-recruit .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 250 / 180;
    object-fit: cover;
  }
}

.swiper-recruit.no-nav .swiper-button-prev,
.swiper-recruit.no-nav .swiper-button-next {
  display: none;
}

.swiper-recruit.swiper-recruit--sp-only {
  display: none;
}

@media (max-width: 736px) {
  .swiper-recruit.swiper-recruit--sp-only {
    display: block;
    /* もしくは flex が必要かも */
  }
}

.career-block {
  margin-top: 50px;
}

@media (max-width: 736px) {
  .career-block {
    margin-top: 30px;
  }
}

.career-block__inner {
  background-color: #e9f7e9;
  background: url("../img/pattern-uguisu.png");
  border-radius: 3em;
  padding: 50px 70px 55px 50px;
}

@media (max-width: 736px) {
  .career-block__inner {
    padding: 40px 25px 30px 35px;

  }
}

/* キャリアリスト */
.career-list {
  margin: 0;
  padding: 0;
}

.career-list__item {
  position: relative;
  padding-left: 35px;
  padding-bottom: 30px;
}

/* 縦線 */
.career-list__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #34a034;
}

@media (max-width: 736px) {
  .career-list__item::before {
    left: 8px;
  }
}


/* 最後のアイテムは縦線を見出しの高さまでに */
.career-list__item:last-child::before {
  bottom: auto;
  height: 21px;
}

@media (max-width: 736px) {
  .career-list__item:last-child::before {
    height: 18px;
  }
}

/* アイコン */
.career-list__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  background: url("../img/icon-career-list.png") no-repeat center / contain;
}

@media (max-width: 736px) {
  .career-list__item::after {
    width: 18px;
    height: 18px;
  }
}


.career-list__title {
  font-size: 18px;
  font-weight: bold;
  color: #34a034;
  margin: 0 0 20px;
  line-height: 21px;
  /* アイコンと高さを合わせる */
}

@media (max-width: 736px) {
  .career-list__title {
    font-size: 16px;
    line-height: 18px;

  }
}

.career-list__text {
  font-weight: normal;
  margin: 0;
}


/* スタッフリスト */
.staff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 25px;
}

.staff-list__item {}

.staff-list__title {
  font-size: 18px;
  font-weight: bold;
  color: #34a034;
  margin: 0 0 15px;
}

@media (max-width: 736px) {
  .staff-list__title {
    font-size: 16px;
  }
}

.staff-list__body {
  display: flex;
  align-items: flex-start;
  gap: 31px;
  /* 900 - 283 - 586 = 31 */
}

.staff-list__img {
  width: 31.4%;
  /* 283 / 900 */
  flex-shrink: 0;
  margin: 0;
}

.staff-list__img img {
  width: 100%;
  aspect-ratio: 283 / 196;
  object-fit: cover;
  object-position: center;
}

.staff-list__text {
  flex: 1;
  margin: 0 !important;
}

/* SP */
@media (max-width: 736px) {
  .staff-list__body {
    flex-direction: column;
    gap: 15px;
  }

  .staff-list__img {
    width: 100%;
  }

  .staff-list__text {
    width: 100%;
  }
}

.area-recruit_message--contact {
  margin-top: 85px;

}

@media (max-width: 736px) {
  .area-recruit_message--contact {
    margin-top: 40px;

  }
}

.area-recruit_message--contact .area-recruit_message__inner {
  padding-bottom: 100px;
}

@media (max-width: 736px) {
  .area-recruit_message--contact .area-recruit_message__inner {
    padding-bottom: 50px;
  }
}

.area-recruit_message--contact .btn-type01 a {
  display: inline-block;
}

.area-contact01--recruit_contact .area-contact-form dd ul {
  flex-direction: column;
}


/* フローリスト */
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 55px;
}

@media (max-width: 736px) {
  .flow-list {
    margin-top: 25px;
  }
}

.flow-list__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flow-list__number {
  width: 50px;
  height: 50px;
  background: #34a034;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Oxygen', sans-serif;
  padding-left: 3px;

}

.flow-list__content {
  flex: 1;
  padding-top: 12px;
  /* 丸と見出しの上揃え調整 */
}

.flow-list__title {
  font-size: 18px;
  font-weight: bold;
  color: #34a034;
  margin: 0 0 20px;
}

@media (max-width: 736px) {
  .flow-list__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.flow-list__title:last-child {
  margin-bottom: 0;
}

.flow-list__text {
  margin: 0;
}

.flow-list__text a {
  color: #00a1c0;
  text-decoration: underline;
}

/* SP */
@media (max-width: 736px) {
  .flow-list__number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .flow-list__content {
    padding-top: 3px;
  }
}


/* 採用情報リスト */
.info-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 55px;
}

@media (max-width: 736px) {
  .info-list {
    margin-top: 25px;
  }
}

.info-list__item {
  display: flex;
  gap: 25px;
}

.info-list__title {
  font-size: 18px;
  font-weight: bold;
  color: #34a034;
  white-space: nowrap;
}

@media (max-width: 736px) {
  .info-list__title {
    font-size: 16px;
  }
}

.info-list__text {
  margin: 0;
}


/* テーブルリスト */
.table-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #f0f0f0;
}

.table-list__item {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.table-list__title {
  width: 205px;
  flex-shrink: 0;
  background: #f0f0f0;
  padding: 15px;
  border-bottom: 1px solid #fff;
  margin: 0;
  font-size: 15px;
  font-weight: bold;
}

.table-list__item:last-child .table-list__title {
  border-bottom: none;
}

.table-list__text {
  flex: 1;
  padding: 15px;
  margin: 0;
  font-size: 14px;
}

.table-list__subtitle {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px;
}

/* SP */
@media (max-width: 736px) {
  .table-list {
    border-top: none;
  }

  .table-list__item {
    flex-direction: column;
    border-bottom: none;
  }

  .table-list__title {
    width: 100%;
    border-bottom: none;
    padding: 5px 15px;
  }

  .table-list__text {
    padding: 15px;
  }
}

.table-list--recruit_info {
  margin-top: 50px;
}

@media (max-width: 736px) {
  .table-list--recruit_info {
    margin-top: 25px;
  }
}

.table-list--recruit_info .h-type09 {
  font-size: 20px;
  text-indent: -1.5em;
  margin-bottom: 20px;
}

.table-list+.h-type09 {
  margin-top: 50px;
}

@media (max-width: 736px) {
  .table-list+.h-type09 {
    margin-top: 25px;
  }
}

@media (max-width: 736px) {
  .table-list--recruit_info .h-type09 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

.table-list--recruit_info .h-type09::before {
  width: 20px;
  height: 20px;
  margin-right: .5em;
}

@media (max-width: 736px) {
  .table-list--recruit_info .h-type09::before {
    width: 18px;
    height: 18px;
  }
}
