@charset "UTF-8";

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

  個別css

=======================================*/
:root {
  --color-primary: #182D7B;
  --color-secondary: #C8DDEF;
  --color-base: #222;
}

/* アイコンフォント */
@font-face {
  font-family: recop-iconfonts;
  src: url("/jobfind-pc/original/css/option/font/recop-iconfont.eot") format("eot"), url("/jobfind-pc/original/css/option/font/recop-iconfont.woff") format("woff"), url("/jobfind-pc/original/css/option/font/recop-iconfont.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

/* 共通要素（可変） */
.cnt {
  max-width: 1140px;
}

/* 共通見出し */
.common-title {
  font-size: 36px;
  color: var(--color-primary) !important;
  margin-bottom: 35px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .common-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

/* 共通リード文 */
.common-lead {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .common-lead {
    text-align: left;
  }
}

.common-lead_small {
  font-size: 15px;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .common-lead_small {
    margin-top: 42px;
  }
}

/* 共通背景 */
.bg-blue {
  background-color: var(--color-secondary);
}

#main .space {
  padding-bottom: 160px !important;
}

@media screen and (max-width: 767px) {
  #main .space {
    padding-bottom: 135px !important;
  }
}

/* message */
@media screen and (max-width: 767px) {
  .message-title {
    margin-bottom: -206px;
  }
}

/**************************************************************
	job
***************************************************************/
.job {
  padding-top: 55px;
  background: linear-gradient(to bottom, #C8DDEF 80%, #ffffff 80%);
}

@media screen and (max-width: 767px) {
  .job {
    background: linear-gradient(to bottom, #C8DDEF 20%, #ffffff 20%);
  }
}

.job-logistics {
  padding-top: 72px;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .job-logistics {
    padding-top: 55px;
    padding-bottom: 30px;
  }
}

.job-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 767px) {
  .job-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.job-item {
  flex: 0 0 auto;
  background-color: var(--color-primary);
}

.col-2 .job-item {
  max-width: 424px;
  width: calc((100% - 40px) / 2);
}

.col-3 .job-item {
  max-width: 340px;
  width: calc((100% - 80px) / 3);
}

@media (max-width: 767px) {

  .col-2 .job-item,
  .col-3 .job-item {
    width: 100%;
  }
}

.job-image img {
  width: 100%;
  height: auto;
}

.job-desc {
  padding: 20px 25px 15px;
}

.job-ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #fff !important;
}

.job-txt {
  color: #fff !important;
}

.job-logistics_img {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .job-logistics_img {
    margin-top: 30px;
    text-align: left;
  }
}

.job-logistics_img img {
  margin: auto;
}

.job-logistics_img figcaption {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .job-logistics_img figcaption {
    margin-top: 20px;
    padding: 0 20px;
  }
}

.job-logistics .btn-wrapper {
  margin: 60px auto 0;
}

@media screen and (max-width: 767px) {
  .job-logistics .btn-wrapper {
    margin: 30px auto 0;
  }
}


/**************************************************************
	career
***************************************************************/
.career {
  padding: 72px 0 0;
  background-color: var(--color-secondary);
}

/*member*/

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

.career-member .cnt {
  max-width: 1080px;
}

@media screen and (max-width: 767px) {
  .career-member .cnt {
    padding: 0;
  }
}

.career-member-wrap {
  margin-top: 80px;
}

@media (max-width: 1000px) {
  .career-member-wrap {
    margin-top: 100px;
  }
}

.career-member-wrap.first {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .career-member-wrap.first {
    margin-top: 90px;
  }
}

.career-member-step {
  display: flex;
  gap: 30px;
  width: 100%;
}

@media (max-width: 1000px) {
  .career-member-step {
    flex-direction: column;
  }
}

.career-member-profile {
  background-color: var(--color-primary);
  color: #fff;
  padding: 30px 20px 60px;
  flex: 0 0 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1000px) {
  .career-member-profile {
    flex: none;
    padding: 90px 30px 50px;
  }
}

.career-member-profile-image {
  max-width: 140px;
  width: 38%;
}

@media screen and (max-width: 1000px) {
  .career-member-profile-image {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.career-member-profile-image img {
  border-radius: 50%;
}

.career-member-profile-body {
  width: 62%;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .career-member-profile-body {
    width: 100%;
    padding-left: 0;
  }
}

.career-member-profile-ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .career-member-profile-ttl {
    text-align: center;
  }
}

.career-member-profile-txt {
  color: #fff !important;
}

a.int-btn {
  min-height: 50px;
  max-height: 50px;
  min-width: 260px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--color-primary);
  background-color: #fff;
  color: var(--color-primary) !important;
}

a.int-btn::before {
  border-color: var(--color-primary);
}

.career-member-flow {
  flex: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .career-member-flow {
    margin-top: 30px;
    padding: 0 30px;
  }
}

.career-member-flow-list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .career-member-flow-list {
    flex-direction: column;
  }
}

.career-member-flow-item {
  background-color: #fff;
  padding: 75px 10px 20px;
  text-align: center;
  flex: 1;
  position: relative;
}

@media (max-width: 1000px) {
  .career-member-flow-item {
    width: 100%;
    padding: 30px;
  }
}

.career-member-flow-item+.career-member-flow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 22px;
  background: url("/content/job-career/img/icon_arrow.png") no-repeat center/contain;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .career-member-flow-item+.career-member-flow-item::before {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.career-member-flow-term {
  font-weight: bold;
  margin: 0 10px 10px 10px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
}

@media  (max-width: 1000px) {
  .career-member-flow-term {
    margin: 0 0 10px 0;
  }
}

.career-member-flow-desc {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary) !important;
}

/*step*/
.career-step {
  margin-top: 85px;
  padding-top: 45px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .career-step {
    margin-top: 50px;
    padding-top: 25px;
  }
}

.career-step::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 190px 370px 0px 370px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .career-step::before {
    border: none;
    width: 100%;
    height: 190px;
    background: url("/content/job-career/img/bg_triangle.png") no-repeat center/contain;
  }
}

.career-step .cnt {
  max-width: 1040px;
}

.career-step-flow-list {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

@media (max-width: 767px) {
  .career-step-flow-list {
    flex-direction: column;
  }
}

.career-step-flow-item {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  flex: 1;
  position: relative;
}

@media (max-width: 767px) {
  .career-step-flow-item {
    width: 100%;
  }
}

.career-step-flow-item+.career-step-flow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 22px;
  background: url(/content/job-career/img/icon_arrow.png) no-repeat center / contain;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .career-step-flow-item+.career-step-flow-item::before {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.career-step-flow-term {
  background-color: #fff;
  color: var(--color-primary) !important;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  margin-bottom: 15px;
}

.career-step-flow-desc {
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
}

.career-step_lead {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .career-step_lead {
    text-align: left;
  }
}

@media screen and (max-width: 767px){
  .message-box{
    padding-top: 198px;
  }
}