@charset "UTF-8";

/* //////////////////////////////// 
スマホ
//////////////////////////////////*/
/* -------------------------------- 
メインビジュアル
-----------------------------------*/
.recruit_main_visual {
  width: 100%;
  height: 70vh;
  background: url(../img/recruit/bg/recruit_bg2.png),
    url(../img/recruit/bg/recruit_main_bg.svg),
    url(../img/recruit/bg/recruit_bg1.png);
  background-repeat: no-repeat;
  background-size: 65%, 150%, 70%;
  background-position: 200% 120%, 50%, -30% -30%;
  padding: 6em 0 0 1em;
}
.recruit_main_visual h2 {
  text-align: left;
  background: none;
  margin: 0;
  padding: 0 0 0 0.5rem;
}
.recruit_main_visual h2,
.recruit_main_visual h2 span {
  color: var(--text-color);
  text-shadow: none;
}
.recruit__concept {
  margin: 1.5rem 0;
}
.recruit__concept p {
  width: fit-content;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 0.3em 0 0.3em 0.5em;
  margin: 5px 0;
  border-radius: 3px;
  background: #fff;
}
.recruit__comment {
  color: #fff;
  font-weight: bold;
}
.recruit_main_visual h2,
.recruit__concept p,
.recruit__comment {
  opacity: 0;
}

/* -------------------------------- 
募集要項
-----------------------------------*/
.job__description {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
}
.job__description h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 3px;
  padding: 1rem 1.5rem;
  border-radius: 18px 18px 0 0;
  background: var(--primary-color);
}
.job__description-lists {
  padding: 1.5rem 1rem;
}
.job__description-lists div {
  margin: 2rem 0;
}
.job__description-lists div:last-of-type {
  margin: 0;
}
.job__description-lists div h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  padding-bottom: 3px;
}
.job__description-lists div p:nth-of-type(2) {
  margin-top: 1rem;
}
.job__description-lists div table {
  width: 100%;
}
.job__description-lists div table tr th {
  width: 6em;
  vertical-align: top;
  padding: 0 0 0.5em;
  margin: 0;
}
.job__description-lists div table tr td {
  vertical-align: top;
  padding: 0 0 1em 1em;
}

/* -------------------------------- 
選考フロー
-----------------------------------*/
.recruit__flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 3rem;
}
.recruit__flow div {
  width: 140px;
  height: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: var(--background-color);
  border-radius: 10px;
  position: relative;
  padding: 0.5em;
}
.recruit__flow div::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 0 auto;
  background: url(../img/icon/arrow.svg) no-repeat center;
  background-size: contain;
  transform: rotate(90deg) translateX(-39%);
  position: absolute;
  bottom: -45%;
  left: 39%;
}
.recruit__flow div:last-of-type::after {
  content: none;
}
.recruit__flow div h4 {
  font-weight: 1.2rem;
  font-weight: bold;
}
.recruit__flow div p {
  margin: 0 auto;
}
.recruit__flow div:first-of-type p {
  width: 30%;
}
.recruit__flow div:nth-of-type(2) p {
  width: 60%;
}
.recruit__flow div:nth-of-type(3) p {
  width: 53%;
}
.recruit__flow div:last-of-type p {
  width: 40%;
}
.btn {
  width: 15rem;
  margin: 0 auto;
}

/* //////////////////////////////// 
タブレット
//////////////////////////////////*/
@media screen and (width>=550px) {
  /* -------------------------------- 
メインビジュアル
-----------------------------------*/
  .recruit_main_visual {
    height: 90vh;
    max-height: 600px;
    background-size: 50%, 110%, 50%;
    background-position: 140% 100%, 50%, -30% -50%;
    padding: 15% 0 0 15%;
  }
  /* -------------------------------- 
募集要項
-----------------------------------*/
  .job__description h4 {
    padding-left: 2rem;
  }
  .job__description-lists {
    padding: 2rem 2rem 3rem;
  }
  .job__description-lists div {
    margin: 3rem 0;
  }
  /* -------------------------------- 
選考フロー
-----------------------------------*/
  .recruit__flow div {
    width: 170px;
    height: 170px;
  }
  .recruit__flow div h4 {
    font-size: 1.1rem;
  }
}

/* //////////////////////////////// 
PC
//////////////////////////////////*/
@media screen and (width>=870px) {
  /* -------------------------------- 
 メインビジュアル
-----------------------------------*/
  .recruit_main_visual {
    height: 100vh;
    max-height: none;
    background-size: 70vh, 1000px, 50%;
    background-position: 100% 110%, 50% -30px, -30% -300px;
    padding: 12% 0 0 25%;
  }
  .recruit__concept p {
    font-size: 1.3rem;
  }
  .recruit__comment {
    font-size: 1.1rem;
    text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.2);
  }
  /* -------------------------------- 
募集要項
-----------------------------------*/
  .job__description h4,
  h5 {
    font-size: 1.3rem;
  }
  /* -------------------------------- 
選考フロー
-----------------------------------*/
  section:nth-of-type(2) .section__wrap {
    width: 850px;
  }
  .recruit__flow {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .recruit__flow div::after {
    bottom: 65px;
    left: 180px;
    transform: rotate(0deg);
  }
}
