@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.recruit {
  overflow-x: hidden;
  padding-top: 95px;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .recruit .pageKV__imgWrapper::before {
    background: url(../../img/renew/recruit/recruit_KV.jpg) center / cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .recruit .pageKV__imgWrapper::before {
    background: url(../../img/renew/recruit/recruit_KV_sp.jpg) center / cover no-repeat;
  }
}

/* w_BtnList__content */
@media screen and (min-width: 768px) {
  .w_BtnList__content {
    width: calc(100% / 5);
  }
}
@media screen and (max-width: 767px) {
  .w_BtnList__inner .w_BtnList__content:nth-of-type(n + 3) {
    width: calc(100% / 3);
  }
  .w_BtnList__content:nth-of-type(4)::after {
    display: none;
  }
  .w_BtnList__inner .w_BtnList__content:nth-of-type(n + 3) .w_BtnList__link {
    line-height: calc(18 / 15);
    height: 50px;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .w_BtnList__inner .w_BtnList__content:nth-of-type(n + 3)::before,
  .w_BtnList__content:last-of-type::after {
    height: 50px;
  }
}

/* profile */
.profile {
  padding: 120px 0 126px;
}
.profile_inner {
  width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.profile_img {
  width: 506px;
}
.profile_img img {
  overflow: hidden;
  border-radius: 20px;
}
.profile_contens {
  width: 584px;
}
.profile_tit1 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(51 / 30);
  margin-bottom: 38px;
}
.profile_txt1 {
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: calc(34 / 17);
  font-family: "Noto Sans JP";
}
.profile_txt1 + .profile_txt1 {
  margin-top: 20px;
}
.profile_txt1 .bold {
  font-size: 20px;
  font-weight: 600;
}
.profile_name {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: right;
  line-height: 1.19;
  padding-top: 40px;
}
.profile_name .bold {
  font-size: 28px;
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
  top: 2px;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 24px 30px 63px;
  }
  .profile_inner {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
  }
  .profile_img {
    width: 100%;
    order: 2;
    display: flex;
    align-items: flex-end;
    gap: 0 19px;
    margin-top: 15px;
  }
  .profile_img img {
    width: 168px;
    border-radius: 10px;
  }
  .profile_contens {
    width: 100%;
    order: 1;
  }
  .profile_tit1 {
    font-size: 21px;
    line-height: calc(34 / 21);
    margin-bottom: 22px;
  }
  .profile_txt1 {
    font-size: 15px;
    letter-spacing: 0;
    line-height: calc(25.5 / 15);
  }
  .profile_txt1 + .profile_txt1 {
    margin-top: 12px;
  }
  .profile_txt1 .bold {
    font-size: 15px;
    font-weight: 600;
  }
  .profile_name {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.4;
    text-align: left;
    padding-top: 0;
    padding-bottom: 3px;
  }
  .profile_name .bold {
    font-size: 22px;
    letter-spacing: 0.05em;
    padding-left: 0;
    position: static;
    display: block;
    margin-top: 4px;
  }
}

/* message */
.message {
  width: 1000px;
  margin: 0 auto 100px;
  padding: 80px 0 90px;
  position: relative;
  background-color: #f7f7f7;
}
.message::before,
.message::after {
  content: "";
  width: 113px;
  height: 2px;
  background-color: #b2b2b2;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: -30px;
  z-index: 1;
}
.message::after {
  top: auto;
  left: auto;
  bottom: 24px;
  right: -32px;
}
.message_inner::before,
.message_inner::after {
  content: "";
  width: 80px;
  height: 80px;
  background-color: #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: -43px;
  left: -43px;
}
.message_inner::after {
  top: auto;
  left: auto;
  bottom: -43px;
  right: -43px;
}
.message_tit {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: calc(31.5 / 24);
  margin-bottom: 40px;
}
.message_txt {
  font-family: "Noto Sans JP";
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(34 / 17);
}
.message_txt .bold {
  font-size: 20px;
  font-weight: 600;
}
.message_txt + .message_txt {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .message {
    width: calc(100% - 60px);
    margin-bottom: 35px;
    padding: 50px 30px 40px;
  }
  .message::before,
  .message::after {
    width: 73px;
    top: 16px;
    left: -19px;
  }
  .message::after {
    top: auto;
    left: auto;
    bottom: 16px;
    right: -19px;
  }
  .message_inner::before,
  .message_inner::after {
    width: 52px;
    height: 52px;
    top: -28px;
    left: -28px;
  }
  .message_inner::after {
    top: auto;
    left: auto;
    bottom: -28px;
    right: -28px;
  }
  .message_tit {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .message_txt {
    font-size: 15px;
    text-align: justify;
    letter-spacing: 0;
    line-height: calc(25.5 / 15);
  }
  .message_txt .bold {
    font-size: 15px;
    font-weight: 600;
  }
  .message_txt + .message_txt {
    margin-top: 10px;
  }
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* ミヤウチPMVV */
@media screen and (min-width: 768px) {
  .pmvv {
    margin-top: 100px;
  }
  .pmvv_box2 {
    padding-top: 68px;
    padding-bottom: 10px;
  }
  .pmvv_box2_item {
    width: 1150px;
    margin: 0 auto;
    display: flex;
  }
  .pmvv_box2_item + .pmvv_box2_item {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #b2b2b2;
  }
  .pmvv_titBlock2 {
    width: 435px;
    padding-left: 75px;
    display: flex;
    flex-flow: column;
    gap: 10px 0;
  }
  .pmvv_titBlock2_label {
    width: 217px;
    height: 40px;
    font-size: 22px;
    margin: 0;
    order: 2;
  }
  .pmvv_titBlock2_eng1 {
    max-width: none;
    color: #383f41;
    font-size: 60px;
    position: static;
    margin: 0;
    order: 1;
  }
  .pmvv_box2 .pmvv_box2_item:nth-of-type(even) .pmvv_titBlock2_eng1 {
    text-align: left;
  }
  .pmvv_box2_item_in {
    width: calc(100% - 435px);
  }
  .mission_text1 {
    font-size: 44px;
    text-align: left;
    line-height: calc(60 / 44);
    margin-top: 0;
  }
  .vision_text1 {
    font-size: 20px;
    text-align: left;
    margin-top: 0;
  }
  .vision_contents {
    justify-content: flex-start;
    margin-top: 25px;
  }
  .vision_contents_list1_item + .vision_contents_list1_item {
    margin-top: 20px;
  }
  .vision_contents_list1_num {
    font-size: 58px;
  }
  .vision_contents_list1_text1 {
    font-size: 18px;
    line-height: calc(35 / 18);
    top: 2px;
  }
  .vision_contents_list1_text1 strong {
    font-size: 22px;
  }
  .vision_contents_list1_text2 {
    font-size: 24px;
    line-height: calc(35 / 24);
  }
}
@media screen and (max-width: 767px) {
  .pmvv {
    margin-top: 30px;
  }
}

/* recruit_tit1 */
.recruit_tit1 {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
}
.recruit_tit1.white {
  color: #fff;
}
.recruit_tit1::before {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #b2b2b2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.recruit_tit1::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #b90f0f;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .recruit_tit1 {
    font-size: 24px;
    padding-bottom: 6px;
  }
  .recruit_tit1::before {
    width: 104px;
  }
  .recruit_tit1::after {
    width: 24px;
  }
}

/* person */
.person {
  padding: 140px 0 120px;
  background: url(../../img/renew/recruit/eng_text1.svg) no-repeat center top / 1390.99px;
}
.person_list1 {
  width: 1150px;
  margin: 76px auto 0;
  display: flex;
  justify-content: space-between;
}
.person_list1_item {
  width: 360px;
  padding: 54px 30px 42px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #626161;
  color: #fff;
  position: relative;
}
.person_list1_num {
  color: #9f9f9f;
  font-size: 139px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: -24px;
  right: 10px;
}
.person_list1_ico {
  width: 90px;
  margin: 0 auto;
}
.person_list1_tit {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(33 / 22);
}
.person_list1_txt {
  font-family: "Noto Sans JP";
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: calc(28 / 16);
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .person {
    padding: 50px 0 60px;
    background-size: 370.93px;
  }
  .person_list1 {
    width: 100%;
    margin-top: 52px;
    padding: 0 30px;
    display: block;
  }
  .person_list1_item {
    width: 100%;
    padding: 34px 30px;
    border-radius: 10px;
  }
  .person_list1_item + .person_list1_item {
    margin-top: 35px;
  }
  .person_list1_num {
    font-size: 102px;
    top: -18px;
    right: 6px;
  }
}

/* job */
.job {
  padding: 140px 0 170px;
  background: #f4f4f4 url(../../img/renew/recruit/eng_text2.svg) no-repeat center top -3px / 1431.83px;
  border-radius: 20px 20px 0 0;
}
.job_contents {
  padding-top: 150px;
  display: flex;
  flex-flow: column;
  gap: 200px 0;
  overflow: clip;
}
.job_box1 {
  padding-bottom: 40px;
  position: relative;
}
.job_box1_inner {
  width: 1150px;
  margin: 0 auto;
  position: relative;
}
.job_box1_tit {
  font-size: 34px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: calc(57 / 34);
}
.job_box1_img {
  width: 535px;
  height: 465px;
  border-radius: 15px;
  overflow: clip;
  position: absolute;
  z-index: 1;
  right: -130px;
  top: -66px;
}
.job_box1_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job_box1_img_tit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 45px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(39 / 30);
}
.job_box1_img_tit .small {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  display: block;
}
.job_box2 {
  width: calc(1150px + ((100% - 1150px) / 2));
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 75px;
  padding-left: calc((100% - 1150px) / 2);
}
.job_box2_inner {
  position: relative;
}
.job_box2_clm1 {
  display: flex;
  gap: 0 40px;
}
.job_box2_data_tit {
  font-size: 26px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: calc(41 / 26);
  margin-bottom: 20px;
  padding-left: 19px;
  position: relative;
}
.job_box2_data_tit::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #b90f0f;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 100%;
}
.job_box2_data_list {
  display: flex;
  flex-flow: column;
  gap: 10px 0;
  font-family: "Noto Sans JP";
}
.job_box2_data_list_item {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0;
  line-height: calc(27.2 / 16);
}
.job_box2_data_list_item::before {
  content: "";
  background: url(../../img/renew/recruit/check1.svg) no-repeat center / contain;
  width: 23px;
  height: 21px;
  position: absolute;
  top: 1px;
  left: 0;
}
.job_box2_data_list_txt {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: calc(17.2 / 12);
}
.job_box2_link1 {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
.job_box2_link1_link {
  width: 384px;
  height: 93px;
  border-radius: 100px;
  background-color: #576265;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  position: relative;
  transition: 0.3s ease;
}
.job_box2_link1_link.type2 {
  background-color: #889090;
}
.job_box2_link1_link .arrow {
  transition:
    right 0.4s,
    background 0.4s;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  border-radius: 100%;
  background: #ebebeb;
}
.job_box2_link1_link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  transition: border-color 0.4s;
}
.job_manga1 {
  display: block;
  width: 204px;
  position: absolute;
  top: -267px;
  right: 0;
  z-index: 1;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  a.job_box2_link1_link:hover .arrow {
    right: 28px;
    background: var(--red-color);
  }
  a.job_box2_link1_link:hover .arrow::before {
    border-color: #fff;
  }
  /* add */
  .job_contents .job_item:nth-of-type(odd) .job_box1_tit {
    padding-left: 456px;
  }
  .job_contents .job_item:nth-of-type(odd) .job_box1_img {
    right: auto;
    left: -130px;
    border-radius: 15px;
  }
  .job_contents .job_item:nth-of-type(odd) .job_box2 {
    padding-left: 0;
    padding-right: calc((100% - 1150px) / 2);
    margin-left: calc((100% - 1150px) / 2);
  }
  .job_contents .job_item:nth-of-type(odd) .job_box2_clm1 {
    padding-left: 456px;
  }
}
@media screen and (max-width: 767px) {
  .job {
    padding: 50px 0 60px;
    background-size: 353.82px;
    background-position-y: -1px;
  }
  .job_contents {
    padding-top: 40px;
    gap: 60px 0;
  }
  .job_box1 {
    background-color: #fff;
    padding-top: 57px;
    padding-bottom: 0;
    margin-top: calc(((186 / 375) * 100vw) - 34px);
    position: relative;
  }
  .job_box1_inner {
    width: 100%;
    padding: 0 30px;
    position: static;
  }
  .job_box1_tit {
    font-size: 21px;
    text-align: justify;
    letter-spacing: 0;
    line-height: calc(33 / 21);
  }
  .job_box1_img {
    width: calc(100% - 30px);
    height: calc((186 / 375) * 100vw);
    border-radius: 15px 0 0 15px;
    right: 0;
    top: calc(((186 / 375) * -100vw) + 34px);
  }
  .job_box1_img_tit {
    font-size: 24px;
    line-height: calc(30 / 24);
  }
  .job_box1_img_tit .small {
    font-size: 18px;
  }
  .job_box2 {
    width: 100%;
    padding-top: 26px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .job_box2_clm1 {
    display: flex;
    flex-flow: column;
    gap: 30px 0;
  }
  .job_box2_data_tit {
    font-size: 18px;
    margin-bottom: 16px;
    padding-left: 16px;
  }
  .job_box2_data_tit::before {
    width: 7px;
    height: 7px;
  }
  .job_box2_data_list {
    gap: 14px 0;
  }
  .job_box2_data_list_item {
    font-size: 14px;
    line-height: calc(25 / 15);
  }
  .job_box2_data_list_item::before {
    top: 1px;
  }
  .job_box2_data_list_txt {
    margin-top: 14px;
  }
  .job_box2_link1 {
    margin-top: 30px;
    gap: 0 20px;
  }
  .job_box2_link1_link {
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding-right: 6px;
  }
  .job_box2_link1_link .arrow {
    right: 12px;
    width: 16px;
    height: 12px;
  }
  .job_box2_link1_link .arrow::before {
    width: 4px;
    height: 4px;
  }
  .job_manga1 {
    width: 263px;
    margin: 30px auto 0;
    position: static;
  }
  .job_contents .job_item:nth-of-type(odd) .job_box1_img {
    border-radius: 0 15px 15px 0;
    left: 0;
    right: auto;
  }
}

/* number */
.number {
  padding: 140px 0 120px;
  background: #fff url(../../img/renew/recruit/eng_text4.svg) no-repeat center top -8px / 1338.98px;
}
.number_inner {
  width: 1150px;
  margin: 32px auto 0;
  font-family: "Noto Sans JP";
}
.number_sml1 {
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.number_data {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 15px;
}
.number_data_item {
  width: calc((100% - 30px) / 3);
  min-height: 280px;
  background-color: #f4f4f4;
  border-radius: 4px;
  padding: 30px 0 35px;
  display: flex;
  flex-flow: column;
}
.number_data_item.data1 {
  background-size: 244.25px;
  background-image: url(../../img/renew/recruit/number_ico1.svg);
  background-position: -32px 50px;
  background-repeat: no-repeat;
}
.number_data_item.data3 {
  background-size: 215px;
  background-image: url(../../img/renew/recruit/number_ico2.svg);
  background-position: right -74px top 42px;
  background-repeat: no-repeat;
}
.number_data_tit1 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.number_data_txt1 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(25 / 15);
}
.number_data_txt1 .sml1 {
  font-size: 12px;
}
.number_data_main {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.data_item1 {
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.data_item1 .num {
  min-width: 63px;
  min-height: 100px;
  font-size: 110px;
  font-weight: 600;
  letter-spacing: 0;
  color: #b90f0f;
  position: relative;
  top: 4px;
}
.data_item1 .txt1 {
  font-size: 64px;
  letter-spacing: 0.05em;
  color: #b90f0f;
  position: relative;
  top: 2px;
}
.data_item1 .txt2 {
  font-size: 30px;
  display: inline-block;
  margin-left: -8px;
}
.data_item1 .txt2 .sml1 {
  font-size: 14px;
  position: relative;
  top: -6px;
  right: -3px;
}
.data_kenko {
  width: 186px;
  margin: 18px auto 6px;
}
.data_list1 {
  width: 100%;
  padding: 15px 40px 18px;
  display: flex;
  flex-flow: column;
  gap: 15px 0;
}
.data_list1_li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  min-height: 40px;
}
.data_list1_li .in1 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.data_list1_li .line1 {
  flex-grow: 1;
  height: 2px;
  border-top: 2px dotted #889090;
}
.data_list1_li .in2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.data_list1_li .in2 .num {
  padding-right: 4px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  color: #b90f0f;
  position: relative;
  top: -1px;
  width: 32px;
  display: flex;
  justify-content: center;
}
.data_list1_li .in3 {
  width: 107px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.data_list1_li .in3 .num {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .number_data_item.data4,
  .number_data_item.data5,
  .number_data_item.data6 {
    min-height: 505px;
  }
}
@media screen and (max-width: 767px) {
  .number {
    padding: 50px 0 60px;
    background-size: 357.06px;
    background-position-y: -2px;
  }
  .number_inner {
    width: 100%;
    margin-top: 20px;
  }
  .number_sml1 {
    text-align: center;
    margin-bottom: 50px;
  }
  .number_data {
    display: flex;
    flex-flow: column;
    gap: 15px 0;
    padding: 0 30px;
  }
  .number_data_item {
    width: 100%;
    min-height: 195px;
    padding: 25px 0;
    display: block;
  }
  .number_data_item.data1 {
    background-size: 182.31px;
    background-position: -29px 21px;
  }
  .number_data_item.data3 {
    background-size: 151px;
    background-position: right -40px top 18px;
  }
  .number_data_tit1 {
    font-size: 25px;
  }
  .number_data_txt1 {
    font-size: 12px;
    line-height: calc(20 / 12);
  }
  .number_data_main {
    display: block;
  }
  .data_item1 {
    padding: 4px 0 12px;
    font-size: 38px;
  }
  .data_item1 .num {
    min-width: 40px;
    min-height: 70px;
    font-size: 70px;
    top: 4px;
  }
  .data_item1 .txt1 {
    font-size: 48px;
    letter-spacing: 0.1em;
    top: 2px;
  }
  .data_item1 .txt2 {
    font-size: 28px;
    letter-spacing: 0.2em;
  }
  .data_item1 .txt2 .sml1 {
    top: -5px;
    right: -4px;
  }
  .data_kenko {
    width: 122px;
    margin: 0;
  }
  .data_kenko_sp {
    width: 100%;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
  }
  .data_kenko_sp .number_data_txt1 {
    font-size: 14px;
    text-align: left;
  }
  .data_list1 {
    width: 100%;
    padding: 10px 30px 15px;
    gap: 12px 0;
  }
  .data_list1_li {
    gap: 0 10px;
    min-height: 32px;
  }
  .data_list1_li .in1 {
    font-size: 18px;
  }
  .data_list1_li .in2 {
    font-size: 21px;
  }
  .data_list1_li .in2 .num {
    padding-right: 4px;
    font-size: 32px;
    top: 0px;
    width: 22px;
  }
  .data_list1_li .in3 {
    width: 100px;
    font-size: 18px;
  }
}

/* environment */
.foot {
  margin-top: -70px;
}
.environment {
  background: no-repeat center / cover;
  overflow: hidden;
  color: #fff;
}
.environment_inner {
  background: url(../../img/renew/recruit/eng_text3.svg) no-repeat center top -3px / 1136.13px;
  height: 1098px;
  padding-top: 137px;
}
.environment_tit {
  margin-top: 65px;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(57.8 / 30);
}
.environment_txt {
  width: 874px;
  margin: 40px auto 0;
  font-family: "Noto Sans JP";
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: calc(34 / 17);
}
@media screen and (min-width: 768px) {
  .environment {
    background-image: url(../../img/renew/recruit/environment_bg1.jpg);
  }
}
@media screen and (max-width: 767px) {
  .foot {
    margin-top: -20px;
  }
  .environment {
    background-image: url(../../img/renew/recruit/environment_bg1_sp.jpg);
  }
  .environment_inner {
    background-size: 302.97px;
    background-position-y: -1px;
    padding-top: 53px;
    height: calc((949 / 375) * 100vw);
  }
  .environment_tit {
    margin-top: 30px;
    font-size: 21px;
    line-height: calc(31.5 / 21);
  }
  .environment_txt {
    width: 100%;
    margin-top: 24px;
    padding: 0 30px;
    font-size: 15px;
    letter-spacing: 0;
    line-height: calc(30 / 15);
  }
}

/* entry_btn1 */
.entry_btn1 {
  width: 164px;
  position: fixed;
  z-index: 5;
  right: 32px;
  bottom: 40px;
  display: block;
  transition: 0.3s ease;
}
.entry_btn1.hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .entry_btn1:hover {
    opacity: 1;
    filter: brightness(1.3);
  }
}
@media screen and (max-width: 767px) {
  .entry_btn1 {
    width: 101px;
    right: 9px;
    bottom: 55px;
  }
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}

/* コンテンツ */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}
