@charset "utf-8";

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

	recruit

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

.recruit_main .btns {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  max-width: 1160px;
  margin: 0 auto 0;
  padding: 0 30px;
} 
.recruit_main .btns a {
  height: 6rem;
  width: 32rem;
}
.recruit_main .btns .form_btn a:before {
  transform: rotate(90deg);
}
.job_wrap {margin-top: 100px;margin-bottom: 70px;}
.job_wrap .jobs {
  border-top: 1px solid #CCBCA4;
  padding-top: 50px;
  margin-bottom: 70px;
}
.job_wrap .jobs > .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
.job_wrap .jobs h2 {
    color: var(--br);
    font-size: 3rem;
    margin-bottom: 20px;
}
.job_wrap .jobs .job_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job_wrap .jobs .job_list h3 {
    color: var(--wt);
    font-size: 1.6rem;
    /* margin-bottom: 10px; */
    background-color: #CCBCA4;
    padding: 20px 40px;
    border-radius: 10px;
}
.job_wrap .jobs .job_list .desc {
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 30px;
}
.job_wrap .jobs .job_list .job_detail {
  margin-top: 20px;
  padding: 0 50px;
}
.job_wrap .jobs .job_list .job_detail .item {
  /* margin-top: 20px; */
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #CCBCA4;
  padding-top: 20px;
  padding-bottom: 20px;
}
.job_wrap .jobs .job_list .job_detail .item:first-of-type {
  border-top: 1px solid #CCBCA4;  
}
.job_wrap .jobs .job_list .job_detail h4 {
    width: 206px;
    color: #958663;
    font-size: 1.4rem;
    font-weight: 600;
}
.job_wrap .jobs .job_list .job_detail p {
    width: calc(100% - 206px);
    font-size: 1.3rem;
}
.job_wrap .jobs .job_list .job_detail .form_btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.job_wrap .jobs .job_list .job_detail .form_btn a {
  width: 32rem;
}
.job_wrap .jobs .job_list .job_detail .form_btn a:before {
  transform: rotate(90deg);
}
.job_wrap .jobs .job_list .toggle-box {
  display: none;
  padding-bottom: 60px;
  padding: 0 0px 60px;
}

.job_wrap .jobs .job_list .toggle-btn {
  cursor: pointer;
  position: relative;
}
.job_wrap .jobs .job_list .toggle-btn:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transform: rotate(90deg);
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../../common/img/arrow-r-br-w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.job_wrap .jobs .job_list .toggle-btn.is-active:after {
  transform: rotate(270deg);
}

.entry_box {
  margin-bottom: 150px;
}
.entry_box .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
.entry_box h2 {
    color: var(--wt);
    font-size: 1.6rem;
    background-color: var(--GN);
    padding: 20px 40px;
    border-radius: 5px;
}
.entry_box .text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 40px;
}
.entry_box .btn {
  display: flex;
  justify-content: center;
}

.new_graduates .job_wrap {
  margin-top: 0;
}
.new_graduates .job_wrap .jobs {
  border-top: none;
  padding-top: 0;
}
.new_graduates .job_wrap .jobs .job_list h3 {
  background-color: var(--br);
  padding-right: 20px;
}
.new_graduates .job_wrap .jobs .job_list .job_detail .item:first-of-type {
  border-top: none;
}
.new_graduates .job_wrap .jobs .job_list .job_detail .item:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 736px) {

  .recruit_main .btns {
    flex-direction: column;
    gap: 10px;
  }
  .recruit_main .btns a {
    width: 100%;
    height: 5.5rem;
  }
  .job_wrap {
    margin-top:60px;
  }
  .job_wrap .jobs h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
}
  .job_wrap .jobs .job_list .job_detail {
    padding: 0;
  }
.job_wrap .jobs .job_list h3 {
    font-size: 1.5rem;
    padding: 10px 40px 10px 20px;
}
  .job_wrap .jobs .job_list .toggle-btn:after {
    right: 10px;
  }
  .job_wrap .jobs .job_list .toggle-box {
    padding: 0 0 60px;
  }
  .job_wrap .jobs .job_list .job_detail h4 {
    width: 100%;
    margin-bottom: 10px;
}
  .job_wrap .jobs .job_list .job_detail p {
    width: 100%;
}
  .job_wrap .jobs .job_list .job_detail .form_btn a {
    width: 100%;
    height: 5.5rem;
  }

  .entry_box {
    margin-bottom: 100px;
  }
  .entry_box .text {
    text-align: left;
}
  .entry_box h2 {
    font-size: 1.5rem;
    padding: 10px 40px 10px 20px;
}
  .entry_box .btn {
    padding: 0 25px;
  }
  .new_graduates .job_wrap {
    margin-bottom: 60px;
  }
}