@charset "UTF-8";
/* 下線が右から左へ消える
---------------------------------------------------------- */
/* 下線が左から右へ消える
---------------------------------------------------------- */
.recruit {
  padding: 50px 0 55px;
}
@media all and (min-width: 751px) {
  .recruit {
    padding: 130px 80px 160px;
  }
}

.tab_container {
  width: min(1000px, 100%);
  background-color: #fff;
  margin-inline: auto;
}

.tab_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab_btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #dbe2eb;
  border: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .tab_btn {
    font-size: 19px;
    padding: 27px;
  }
}
.tab_btn.is-active {
  background-color: #033C84;
  color: #fff;
  font-weight: bold;
}
@media (hover: hover) {
  .tab_btn:not(.is-active):hover {
    background-color: color-mix(in srgb, #033C84 20%, #dbe2eb);
  }
}

.tab_content {
  display: none;
  opacity: 0;
}
.tab_content.is-active {
  display: block;
  -webkit-animation: fadeUpAnime 0.6s forwards;
          animation: fadeUpAnime 0.6s forwards;
}

.recruit_contents {
  padding: 30px 10px 40px;
}
@media all and (min-width: 751px) {
  .recruit_contents {
    padding: 55px 85px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .recruit_contents {
    padding: 50px 40px;
  }
}
.recruit_contents .recruit_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media all and (min-width: 751px) {
  .recruit_contents .recruit_header {
    margin-bottom: 60px;
  }
}
.recruit_contents .recruit_header .recruit_cat {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  background: #033C84;
  padding: 4px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .recruit_contents .recruit_header .recruit_cat {
    font-size: 24px;
    padding: 6px 11px;
  }
}
.recruit_contents .recruit_header .recruit_title {
  color: #222;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .recruit_contents .recruit_header .recruit_title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
.recruit_contents .recruit_header .recruit_desc {
  color: #222;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media all and (min-width: 751px) {
  .recruit_contents .recruit_header .recruit_desc {
    font-size: 17px;
  }
}
.recruit_contents ul li {
  color: #222;
  border-top: 1px solid #cad2dd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 10px;
  gap: 0 25px;
}
@media all and (min-width: 751px) {
  .recruit_contents ul li {
    padding: 40px 0;
    gap: 0 80px;
  }
}
.recruit_contents ul li:last-child {
  padding-bottom: 0;
}
.recruit_contents ul li.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit_contents ul li .heading {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 4em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}
@media all and (min-width: 751px) {
  .recruit_contents ul li .heading {
    font-size: 17px;
    line-height: 2;
  }
}
.recruit_contents ul li .recruit_detail {
  font-size: 14px;
  line-height: 2;
}
@media all and (max-width: 750px) {
  .recruit_contents ul li .recruit_detail {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@media all and (min-width: 751px) {
  .recruit_contents ul li .recruit_detail {
    font-size: 16px;
  }
}
.recruit_contents ul li .recruit_detail a {
  color: #222;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
}
.recruit_contents ul li .recruit_detail a .line {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#222), to(#222));
  background-image: linear-gradient(90deg, #222, #222);
  background-repeat: no-repeat;
  background-position: left bottom 2px;
  background-size: 100% 1.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 751px) and (hover: hover) {
  .recruit_contents ul li .recruit_detail a:hover .line {
    background-size: 0% 1.2px;
  }
}

/* インターン
---------------------------------------------------------- */
.intern_contents {
  padding: 30px 20px 40px;
}
@media all and (min-width: 751px) {
  .intern_contents {
    padding: 55px 85px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .intern_contents {
    padding: 50px 40px;
  }
}

.intern_sec_ttl {
  text-align: center;
  font-size: 18px;
  margin-bottom: 17px;
}
@media all and (min-width: 751px) {
  .intern_sec_ttl {
    font-size: 24px;
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .intern_sec_ttl {
    font-size: 20px;
  }
}
.intern_sec_ttl span {
  color: #fff;
  background-color: red;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #033C84;
  padding: 3px 10px 4px;
  line-height: 2;
}

.intern_head {
  margin-bottom: 22px;
}
@media all and (min-width: 751px) {
  .intern_head {
    margin-bottom: 33px;
  }
}
.intern_head .copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: bold;
  color: #033C84;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.25;
  border: 1px solid #033C84;
  padding: 8px;
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .intern_head .copy {
    font-size: 24px;
    padding: 8px 11px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .intern_head .copy {
    font-size: 20px;
  }
}
.intern_head .ttl {
  text-align: center;
  margin-top: 12px;
}
@media all and (min-width: 751px) {
  .intern_head .ttl {
    margin-top: 20px;
  }
}
.intern_head .ttl img {
  width: min(218px, 80%);
}
@media all and (min-width: 751px) {
  .intern_head .ttl img {
    width: min(298px, 80%);
  }
}

.intern_main_img {
  margin-bottom: 28px;
}
@media all and (min-width: 751px) {
  .intern_main_img {
    margin-bottom: 38px;
  }
}

.necessary {
  margin-bottom: 24px;
}
@media all and (min-width: 751px) {
  .necessary {
    margin-bottom: 63px;
  }
}

.necessary_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
@media all and (min-width: 751px) {
  .necessary_list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.necessary_list > li {
  width: 126px;
}
@media all and (min-width: 751px) {
  .necessary_list > li {
    width: min(170px, 30%);
  }
}

.reason {
  margin-bottom: 26px;
}
@media all and (min-width: 751px) {
  .reason {
    margin-bottom: 42px;
  }
}

.reason_list {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.reason_list > li {
  counter-increment: number 1;
  color: #222;
  background-color: #dbe2eb;
  padding: 20px 18px;
}
@media all and (min-width: 751px) {
  .reason_list > li {
    padding: 30px 40px;
  }
}
.reason_list > li .heading {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding-left: 25px;
  margin-bottom: 12px;
}
@media all and (min-width: 751px) {
  .reason_list > li .heading {
    font-size: 22px;
    padding-left: 41px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .reason_list > li .heading {
    font-size: 18px;
  }
}
.reason_list > li .heading::before {
  position: absolute;
  content: counter(number);
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 21px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 13px;
  background-color: #222;
}
@media all and (min-width: 751px) {
  .reason_list > li .heading::before {
    top: 1px;
    width: 30px;
    font-size: 16px;
  }
}
.reason_list > li .text {
  line-height: 1.76;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  .reason_list > li .text {
    font-size: 15px;
    padding-left: 41px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .reason_list > li .text {
    font-size: 14px;
  }
}

.voice {
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .voice {
    margin-bottom: 54px;
  }
}

.voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media all and (min-width: 751px) {
  .voice_list {
    gap: 20px;
  }
}
.voice_list > li {
  width: min(360px, 100%);
  border: 1px solid #cad2dd;
  padding: 17px 17px 20px;
}
@media all and (min-width: 751px) {
  .voice_list > li {
    width: min(220px, 100%);
    padding: 20px 15px 23px;
  }
}
.voice_list > li .icon {
  text-align: center;
}
.voice_list > li .icon img {
  width: 73px;
}
@media all and (min-width: 751px) {
  .voice_list > li .icon img {
    width: 66px;
  }
}
.voice_list > li .text {
  color: #222;
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0.03em;
  margin-top: 14px;
}
.open_company .lead {
  text-align: center;
  margin-bottom: 24px;
}
@media all and (min-width: 751px) {
  .open_company .lead {
    margin-bottom: 26px;
  }
}
@media all and (min-width: 751px) {
  .open_company .lead img {
    width: min(600px, 90%);
  }
}
.open_company .container {
  background-color: #dbe2eb;
  padding: 20px 15px 30px;
}
@media all and (min-width: 751px) {
  .open_company .container {
    padding: 40px 50px 65px;
  }
}
.open_company .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media all and (min-width: 861px) {
  .open_company .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
  }
  .open_company .wrap .image {
    width: 38.9%;
  }
  .open_company .wrap .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.open_company .list {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.open_company .list > li {
  counter-increment: number 1;
  color: #222;
  padding-bottom: 14px;
}
@media all and (min-width: 751px) {
  .open_company .list > li {
    padding-bottom: 20px;
  }
}
.open_company .list > li:not(:last-child) {
  border-bottom: 1px solid #cad2dd;
  margin-bottom: 18px;
}
@media all and (min-width: 751px) {
  .open_company .list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.open_company .list > li .head_area {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
@media all and (min-width: 751px) {
  .open_company .list > li .head_area {
    padding-left: 41px;
    margin-bottom: 14px;
  }
}
.open_company .list > li .head_area::before {
  position: absolute;
  content: counter(number);
  top: -2px;
  left: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 21px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 13px;
  background-color: #222;
}
@media all and (min-width: 751px) {
  .open_company .list > li .head_area::before {
    top: -4px;
    width: 30px;
    font-size: 16px;
  }
}
.open_company .list > li .head_area .sub {
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
@media all and (min-width: 751px) {
  .open_company .list > li .head_area .sub {
    font-size: 14px;
  }
}
.open_company .list > li .head_area .ttl {
  font-size: 17px;
  letter-spacing: 0.02em;
}
@media all and (min-width: 751px) {
  .open_company .list > li .head_area .ttl {
    font-size: 22px;
  }
}
.open_company .list > li .text {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.76;
}
@media all and (min-width: 751px) {
  .open_company .list > li .text {
    line-height: 1.92;
    padding-left: 41px;
  }
}
/*# sourceMappingURL=recruit.css.map */