/*----------- h1 -----------*/
.title_area_TR {
  max-width: 1600px;
  margin: auto;
}

.TR_h1 {
  background: url(../img/to_recruiters/tr_h1_bg.png) center center / cover no-repeat;
  margin: 0 25px;
  border-radius: 12px;
  padding: 25px 0 0 25px;
  display: flex;
}

.h1_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h1_box .caveat_font {
  font-size: 500%;
  line-height: 1;
}

.h1_box .h1 {
  font-size: 150%;
  margin: 0;
}

.TR_wrap {
  display: flex;
}

.TR_wrap .text_wrap {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  width: 36%;
  padding-bottom: 25px;
}

.TR_wrap .text_wrap .text_box p {
  font-size: 125%;
}

.TR_wrap .btn_box p {
  margin-bottom: 12px;
  font-size: 112.5%;
  padding-left: 48px;
  position: relative;
}

.TR_wrap .btn_box p::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 17px;
  background: url(../img/common/arrow_t_orange.png) center center /contain no-repeat;
  transform: rotate(90deg);
  left: 12px;
  top: calc(50% - 8.5px);
}

.TR_wrap .img_wrap {
  width: 64%;
  display: flex;
  align-items: flex-end;
}

.TR_wrap .green_btn_arrow {
  width: 280px;
}

@media screen and (max-width: 991px) {
  .TR_h1 {
    padding: 20px;
  }

  .TR_wrap {
    flex-wrap: wrap;
  }
  .TR_wrap .img_wrap {
    display: none;
  }

  .TR_wrap .text_wrap {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .TR_wrap .text_wrap .text_box,
  .TR_wrap .text_wrap .btn_box {
    display: block;
  }

  .TR_wrap .text_wrap .btn_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 575px) {
  .h1_area .caveat_font {
    font-size: 250%;
  }

  .h1_area .h1 {
    font-size: 125%;
  }

  .TR_wrap .text_wrap .btn_box {
    justify-content: center;
    align-items: center;
  }

  .TR_wrap .text_wrap .btn_box .green_btn_arrow {
    width: 100%;
  }

  .TR_wrap .text_wrap .text_box p {
    font-size: 112.5%;
  }

  .TR_wrap .btn_box p {
    font-size: 100%;
  }

}

/*----------- Service details -----------*/
.SD_sec .text_box {
  text-align: center;
}

.SD_sec .SD_lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 52px;
  margin-top: 40px;
}

.SD_sec .SD_lists li {
  display: grid;
  grid-template-rows: subgrid;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-row: span 2;
  background-color: #F3F7DE;
  border-radius: 12px;
  padding: 28px 10px;
  position: relative;
}

.SD_sec .SD_lists li .step {
  font-size: 250%;
  position: absolute;
  top: -2.4rem;
  left: calc(50% - 1rem);
  color: #ADC054;
}

.SD_sec .SD_lists li img {
  display: inline-block;
}

.SD_sec .SD_lists li:nth-of-type(1) img {
  width: 81px;
}

.SD_sec .SD_lists li:nth-of-type(2) img {
  width: 54px;
}

.SD_sec .SD_lists li:nth-of-type(3) img {
  width: 100px;
}

.SD_sec .SD_lists li:nth-of-type(4) img {
  width: 100px;
}

.SD_sec .SD_lists li:nth-of-type(5) img {
  width: 106px;
}

.SD_sec .SD_lists li:nth-of-type(6) img {
  width: 100px;
}

.SD_sec .SD_lists li p {
  font-size: 112.5%;
}

@media screen and (max-width: 768px) {
  .SD_sec .SD_lists {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .SD_sec .SD_lists {
    grid-template-columns: 1fr;
  }
}

/*----------- Service details -----------*/

.SP_lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.SP_lists li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 20px;
  justify-content: center;
  background-color: #F3F7DE;
  position: relative;
}

.SP_lists li h3 {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 12px 0;
  padding: 20px 40px;
  position: absolute;
  left: 0;
  top: 0;
}

.SP_lists li .img_wrap {
  width: 100%;
}

.SP_lists li .text_box {
  padding: 0px 40px 20px;
}

.FR_area {
  position: relative;
  padding: 50px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 80px;
}

.FR_area::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/to_recruiters/SP_FR_bg.jpg) center center / cover no-repeat;
  left: 0;
  top: 0;
  z-index: -1;
}

.FR_area .FR_box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
}

.FR_area .FR_box .h3 {
  font-size: 150%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.FR_area .FR_box .text_box {
  margin-bottom: 40px;
}

.FR_area .FR_box .green_btn_arrow {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .SP_lists li .text_box {
    padding: 0px 20px 20px;
  }

  .SP_lists li h3 {
    padding: 20px 20px;
  }

  .FR_area {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .SP_lists {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .FR_area .FR_box .text_box {
    text-align: left;
  }
}

/*----------- Supported areas -----------*/
.SA_sec {
  position: relative;
  overflow: hidden;
}

.SA_sec::before {
  content: '';
  position: absolute;
  background: url(../img/to_recruiters/map_bg.png) center center / contain no-repeat;
  width: 832px;
  height: 460px;
  top: 0;
  right: 0;
  z-index: -1;
}

.SA_sec .text_wrap {
  text-align: left;
  padding-left: 50px;
}

.SA_sec .text_wrap .h2_box {
  align-items: baseline;
}

.SA_sec .text_wrap .text_box {
  background-color: #F3F7DE;
  display: inline-block;
  padding: 30px;
}

.SA_sec .text_wrap .text_box p strong{
  font-weight: 700;
  font-size: 125%;
  padding-left: 30px;
  position: relative;
  display: inline-block;
}

.SA_sec .text_wrap .text_box p strong::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 30px;
  background: url(../img/to_recruiters/icon_map_pin.png) center center /contain no-repeat;
  left: 0;
  top: calc(50% - 15px);
}

.SA_sec .text_wrap .text_box .important {
  padding-left: 30px;
  position: relative;
}

.SA_sec .text_wrap .text_box .important::before {
  content: '※';
  position: absolute;
  color: #FF7600;
  left: 0;
}

@media screen and (max-width: 1199px) {
  .SA_sec::before {
    width: 630px;
    height: 348px;
  }
}

@media screen and (max-width: 991px) {
  .SA_sec .text_wrap {
    padding-left: 0;
  }

  .SA_sec::before {
    width: 500px;
    height: 276px;
  }

  .SA_sec .text_wrap .text_box {
    background-color: rgba(243, 247, 222, 0.6);
  }
}

@media screen and (max-width: 768px) {
  .SA_sec::before {
    width: 400px;
    height: 222px;
  }
}

@media screen and (max-width: 575px) {
  .SA_sec::before {
    width: 300px;
    height: 166px;
  }

  .SA_sec::before {
    top: 10%;
  }

  .SA_sec .text_wrap .text_box {
    padding: 20px;
  }
}

/*　◆----------- foreign_talent -----------◆ */
/*----------- Support Program -----------*/
.SP_sec {
  background-color: #f3f7de;
  padding-top: 70px;
  padding-bottom: 70px;
}

.SP_sec .sp_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 50px;
}

.SP_sec .text_wrap {
  width: calc(100% - 445px);
}

.SP_sec .img_wrap {
  width: 425px;
}

.SP_sec .img_wrap img {
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.SP_sec .h2_box {
  align-items: baseline;
}

@media screen and (max-width: 992px) {
  .SP_sec .sp_wrap {
    padding: 0;
  }
}

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

  .SP_sec .text_wrap,
  .SP_sec .img_wrap {
    width: 100%;
  }

  .SP_sec .h2_box {
    align-items: center;
  }
}

/*----------- Specific skill foreigner -----------*/

.SSF_container {
  padding: 0 150px;
}

.SSF_lists {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  position: relative;
}

.SSF_lists::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 30px;
  background: url(../img/common/arrow_t_orange.png) center center / contain no-repeat;
  right: calc(50% - 9px);
  bottom: -48px;
  transform: rotate(90deg);
}

.SSF_lists .text_wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: calc(50% - 20px);
}

.SSF_lists .text_wrap .caveat_font {
  font-size: 250%;
}

.SSF_lists .text_wrap strong {
  background-color: #dae9b5;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.SSF_lists .text_wrap .text_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.SSF_lists .text_wrap .text_box h3 {
  font-size: 125%;
  font-weight: 700;
}

.SSF_D_list {
  margin-top: 80px;
  margin-bottom: 80px;
}

.SSF_D_list dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.SSF_D_list dl dt {
  background-color: #dae9b5;
  font-size: 112.5%;
  font-weight: 700;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 326px;
  margin: 0;
}

.SSF_D_list dl dd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 40px 18px 52px;
  margin: 0;
  width: calc(100% - 326px);
}

.SSF_merit_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  margin: 0 167px;
  margin-top: 60px;
  margin-bottom: 90px;
}

.SSF_merit_wrap .img_box {
  width: calc(300px - 40px);
}

.SSF_merit_wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  width: calc(100% - (300px + 40px));
}

.SSF_merit_wrap ul li {
  padding-left: 40px;
  position: relative;
  font-size: 112.5%;
  font-weight: 700;
}

.SSF_merit_wrap ul li::before {
  content: "";
  position: absolute;
  background: url(../img/foreign_talent/icon_check.png) center center / contain no-repeat;
  width: 18px;
  height: 12px;
  left: 0;
  top: 12px;
}

.SSF_16 .SSF_16_p {
  font-size: 112.5%;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.SSF_16_icon_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.SSF_16_icon_lists li {
  width: calc((100% - 20px * 5) / 6);
}

.SSF_16 p.small {
  padding-left: 1.5rem;
  position: relative;
}

.SSF_16 p.small::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1199px) {
  .SSF_container {
    padding: 0 100px;
  }

  .SSF_merit_wrap {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media screen and (max-width: 992px) {
  .SSF_container {
    padding: 0;
  }

  .SSF_16_icon_lists li {
    width: calc((100% - 20px * 3) / 4);
  }

  .SSF_merit_wrap {
    margin-left: 0;
    margin-right: 0;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .SSF_D_list dl dt {
    width: 200px;
  }

  .SSF_D_list dl dd {
    width: calc(100% - 200px);
    padding: 18px 20px 18px 20px;
  }

  .SSF_merit_wrap {
    justify-content: center;
    margin-top: 40px;
  }

  .SSF_merit_wrap ul {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .SSF_lists {
    flex-wrap: wrap;
    gap: 20px;
  }

  .SSF_lists .text_wrap {
    width: 100%;
  }

  .SSF_D_list dl dt,
  .SSF_D_list dl dd {
    width: 100%;
    padding: 10px;
  }

  .SSF_16_icon_lists li {
    width: calc((100% - 20px * 2) / 3);
  }
}

/*----------- flow -----------*/
.Flow_sec {
  background-color: #f3f7de;
}

.Flow_sec .flow_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.flow_wrap .h2_box {
  width: 20%;
  align-items: baseline;
  justify-content: flex-start;
}

.flow_wrap .flow_step {
  width: calc(80% - 80px);
}

.flow_wrap .flow_step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.flow_wrap .flow_step ul li {
  width: 100%;
  background-color: #fff;
  padding: 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  border-radius: 12px;
}

.flow_wrap .flow_step ul li::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 30px;
  background: url(../img/common/arrow_t_orange.png) center center / contain no-repeat;
  right: calc(50% - 9px);
  bottom: -46px;
  transform: rotate(90deg);
}

.flow_wrap .flow_step ul li:last-child::after {
  content: none;
}

.flow_wrap .flow_step ul li > p {
  width: 76%;
  font-size: 112.5%;
  padding-left: 40px;
}

.flow_wrap .flow_step ul li p.caveat_font {

  font-size: 250%;
  text-align: center;
  display: inline-block;
  width: 24%;
  padding-left: 0;
}

.flow_wrap .flow_step ul li p.caveat_font > strong{
  position: relative;
  padding-right: 40px;
}

.flow_wrap .flow_step ul li p.caveat_font > strong::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #ccc;
  top: calc(50% - 20px);
  right: 0px;
  transform: rotate(20deg);
}

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

  .flow_wrap .h2_box,
  .flow_wrap .flow_step {
    width: 100%;
  }

  .Flow_sec .flow_wrap {
    gap: 0;
  }
}

@media screen and (max-width: 768px){
  .flow_wrap .flow_step ul li>p {
    width: 100%;
    padding-left: 0;
  }
}

/*----------- Information on status of residence -----------*/
.IOSOR_sec h2{
  text-align: center;
}

.IOSOR_wrap {
  padding: 0 190px;
}

.IOSOR_wrap ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.IOSOR_wrap ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}

.IOSOR_wrap ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.IOSOR_wrap ul li:nth-of-type(2) .text_box {
  width: 300px;
}

.IOSOR_wrap ul li .img_box {
  aspect-ratio: 1/1;
  width: 280px;
}

.IOSOR_wrap ul li .text_box {
  width: calc(100% - (280px + 40px));
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.IOSOR_wrap ul li .text_box h3 {
  font-size: 112.5%;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .IOSOR_wrap {
    padding: 0 100px;
  }
}

@media screen and (max-width: 992px) {
  .IOSOR_wrap {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .IOSOR_wrap ul li:nth-of-type(2) .text_box {
    width: calc(100% - (280px + 40px));
  }

  .IOSOR_wrap ul li {
    gap: 40px 20px;
  }
}

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

  .IOSOR_wrap ul li .text_box,
  .IOSOR_wrap ul li:nth-of-type(2) .text_box {
    width: 100%;
  }

  .IOSOR_wrap ul li .text_box h3 {
    text-align: center;
  }
}