@charset "UTF-8";
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  background: transparent;
  list-style: none;
  font-weight: normal;
}

* {
  float: none;
  position: static;
  box-sizing: border-box;
}

img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
}

a {
  color: #0A5CAD;
  text-decoration: none;
}

/* header */
/* ======================================== */
#g-nav {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #g-nav {
    display: none;
    position: fixed;
    top: 70px;
    z-index: 999;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    transition: all 0.6s;
    font-size: 16px;
  }
  #g-nav.panelactive {
    display: block;
    opacity: 1;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
#g-nav #g-nav-list > ul {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #g-nav #g-nav-list > ul {
    display: block;
    position: absolute;
    z-index: 999;
    top: 2rem;
    left: 2rem;
    width: 90%;
  }
}
#g-nav li {
  position: relative;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #g-nav li {
    width: 100%;
    padding: 10px;
    text-align: left;
  }
}
#g-nav ul li a, #g-nav ul li p {
  display: block;
  text-decoration: none;
  padding: 28px 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #g-nav ul li a, #g-nav ul li p {
    padding: 0;
    font-size: 110%;
  }
}
#g-nav ul ul {
  display: block;
}
#g-nav li.has-child ul {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  width: 200px;
  background-color: #FFFFFF;
  border: #2C4681 1px solid;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #g-nav li.has-child ul {
    display: block;
    position: static;
    width: 100%;
    border: none;
  }
}
#g-nav li.has-child:hover ul {
  display: block;
}
#g-nav li.has-child p {
  padding-bottom: 10px;
}
#g-nav li.has-child ul::before, #g-nav li.has-child ul::after {
  position: absolute;
  top: -13px;
  left: 25px;
  width: 20px;
  height: 12px;
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
          clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: "";
}
@media screen and (max-width: 768px) {
  #g-nav li.has-child ul::before, #g-nav li.has-child ul::after {
    display: none;
  }
}
#g-nav li.has-child ul::before {
  background-color: #2C4681;
}
#g-nav li.has-child ul::after {
  top: -11px;
  background-color: #fff;
}
#g-nav li.has-child li {
  text-align: left;
}
#g-nav li.has-child li a {
  width: 100%;
  padding: 5px 20px;
}
#g-nav li.has-child li:nth-child(1) {
  padding-top: 10px;
}
#g-nav li.has-child li:nth-last-child(1) {
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #g-nav li.has-child li:nth-last-child(1) {
    padding-bottom: 0;
  }
}
#g-nav li, #g-nav li a, #g-nav li p {
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #000000;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #g-nav li, #g-nav li a, #g-nav li p {
    color: #0A5CAD;
  }
}
#g-nav li:hover, #g-nav li a:hover, #g-nav li p:hover {
  color: #0A5CAD;
}
@media screen and (max-width: 768px) {
  #g-nav li a::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0.6rem;
    width: 20px;
    height: 15px;
    background: url("../images/triangle.svg") 100% 100% no-repeat;
  }
}
@media screen and (max-width: 768px) {
  #g-nav li li a::after {
    right: 0;
  }
}
#g-nav li .out {
  padding-right: 1rem;
}
@media screen and (max-width: 768px) {
  #g-nav li .out::after {
    background: url("../images/open2.svg") 100% 100% no-repeat;
  }
}

.openbtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    background: #FFFFFF;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #2C4681;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

h1 {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  h1 {
    position: fixed;
    top: 0;
    width: 50%;
    max-width: 250px;
    padding-top: 12px;
  }
}

.lead {
  margin: 20px 0 0 0;
}

.btn-block {
  width: 200px;
  padding: 30px;
}

header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #707070;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header {
    display: block;
    height: 70px;
    border-bottom: none;
  }
}

#header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.head {
  width: 30%;
  max-width: 400px;
  margin: 0 auto;
  padding: 11px 0;
}
@media screen and (max-width: 1200px) {
  .head {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .head {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .head {
    max-width: 800px;
  }
}

/* footer */
/* ======================================== */
footer .footer-copyright {
  width: 100%;
  padding: 1em;
  color: #FFFFFF;
  text-align: center;
  background-color: #2C4681;
}

.footercookie {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2000;
  background-color: rgba(234, 246, 250, 0.8);
  padding: 5px 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

.footercookie-close {
  display: none !important;
}

.footercookie-flex {
  margin: 1em 0;
  display: flex;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-end;
}

.footercookie-explain {
  font-size: 14px;
  color: #333;
}

.footercookie-buttons {
  display: flex;
  width: 280px;
  justify-content: space-between;
}

.footercookie-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 40px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-radius: 3px;
}

.footercookie-buttons-accept {
  background-color: #048ED2;
  border: 2px solid #048ED2;
  color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.footercookie-buttons-setting {
  background-color: #bbb;
  border: 2px solid #bbb;
  cursor: pointer;
  color: #444;
}

.cookiepopup {
  display: none;
}

.cookiepopup-display {
  display: block !important;
}

.cookiepopup-outer {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10000;
  position: fixed;
}

.cookiepopup-inner {
  width: 750px;
  height: 500px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 1px #fff;
  border-radius: 5px;
  position: fixed;
  overflow: hidden;
}

.cookiepopup-flex {
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

.cookiepopup-menu {
  height: 100%;
  background-color: #eee;
}

.cookiepopup-menu li {
  height: 63px;
  display: flex;
  align-items: center;
  padding: 8px;
  color: #444;
  position: relative;
  font-size: 14px;
}

.cookiepopup-menu li::before {
  content: "";
  min-width: 32px;
  min-height: 32px;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  border: solid 2px #048ED2;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 16px;
  margin-right: 8px;
  color: #048ED2;
  font-weight: bold;
}

.cookiepopup-menu li.list_selected::before {
  background-color: #048ED2;
  color: #fff;
}

.cookiepopup-menu li:nth-child(1)::before {
  content: "1";
}

.cookiepopup-menu li:nth-child(2)::before {
  content: "2";
}

.cookiepopup-menu li:nth-child(3)::before {
  content: "3";
}

.cookiepopup-menu li:nth-child(4)::before {
  content: "4";
}

.cookiepopup-menu li:nth-child(4)::after {
  content: "";
  background: url("https://www.jfe-eng.co.jp/assets/images/icon_blank_01.svg") no-repeat 0 50%;
  width: 20px;
  height: 20px;
  top: 2px;
  right: 0;
  margin-left: 8px;
}

.cookiepopup-menu li a {
  color: #444;
}

.cookiepopup-menu li:hover {
  font-weight: bold;
  color: #048ED2;
}

.cookiepopup-menu-midashi {
  color: #048ED2;
  font-weight: bold;
  margin-top: 16px;
  margin-left: 10px;
  font-size: 16px;
}

.cookiepopup-save {
  width: 100%;
  height: 60px;
  background-color: #283C4D;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
}

.cookiepopup-save .button {
  background-color: #048ED2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

#popuptarget_a {
  display: none;
}

#popuptarget_b {
  display: none;
}

#popuptarget_c {
  display: none;
}

#popuptarget_d {
  display: none;
}

.cookiepopup-content {
  height: 100%;
  background-color: #fff;
  padding: 16px;
}

.cookiepopup-explain {
  max-width: 400px;
  /*width:400px;*/
  font-size: 14px;
  line-height: 1.6;
}

.cookiepopup-switch {
  background-color: #ccc;
  width: 120px;
  height: 40px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-around;
  border-radius: 10px;
  overflow: hidden;
}

.cookiepopup-switch::before {
  content: "";
  height: 34px;
  width: 60px;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  transition: 0.3s;
  top: 3px;
  left: 55px;
  /*          right:3px;*/
}

.cookiepopup-switch.switch_off::before {
  right: inherit;
  left: 3px;
}

.cookiepopup-switch.switch_on span {
  color: #fff;
}

.cookiepopup-switch.switch_on {
  background-color: #048ED2;
}

.cookiepopup-explain {
  margin-top: 16px;
}

.cookiepopup-explain p {
  color: #333;
  margin-top: 8px;
}

.cookiepopup-midashi {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.cookiepopup-close {
  font-weight: bold;
  position: absolute;
  font-size: 35px;
  color: #bbb;
  right: 8px;
  top: 0px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .footercookie-flex {
    width: 100%;
    flex-wrap: wrap;
    margin: 0px;
  }
  .footercookie-explain {
    width: 100%;
  }
  .footercookie-buttons {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
  .footercookie-buttons-accept {
    margin-right: 16px;
  }
  .cookiepopup-menu {
    display: none;
  }
  .cookiepopup-inner {
    width: 95%;
    height: 600px;
  }
  .cookiepopup-flex {
    height: 540px;
  }
  .cookiepopup-content {
    width: 100%;
  }
  #sptarget_a {
    display: block;
  }
  #sptarget_b {
    display: block;
  }
  #sptarget_c {
    display: block;
  }
  #sptarget_d {
    display: block;
  }
  #popuptarget_a.cookiepopup-display .cookiepopup-explain,
  #popuptarget_b.cookiepopup-display .cookiepopup-explain,
  #popuptarget_c.cookiepopup-display .cookiepopup-explain,
  #popuptarget_d.cookiepopup-display .cookiepopup-explain {
    height: auto;
    padding-bottom: 16px;
  }
  #popuptarget_a {
    display: block;
  }
  #popuptarget_b {
    display: block;
  }
  #popuptarget_c {
    display: block;
  }
  #popuptarget_d {
    display: block;
  }
  .cookiepopup-explain {
    /*display:none;*/
    height: 0px;
    overflow: hidden;
    transition: 0.3s;
  }
  .cookiepopup-explain.cookiepopup-display {
    height: auto;
    padding-top: 8px;
    padding-bottom: 16px;
  }
  /*           .cookiepopup-content .cookiepopup-display .cookiepopup-explain{
  display:block;
  margin-bottom:16px;
  }*/
  .cookiepopup-midashi {
    color: #048ED2;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    background-color: #eee;
    font-size: 16px;
  }
  .cookiepopup-content .cookiepopup-display .cookiepopup-midashi::before {
    background-color: #048ED2;
    color: #fff;
  }
  .cookiepopup-midashi::before {
    content: "1";
    color: #048ED2;
    min-width: 24px;
    min-height: 24px;
    width: 24px;
    height: 24px;
    border-radius: 40px;
    border: solid 2px #048ED2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-right: 8px;
    font-size: 15px;
  }
  .cookiepopup-content:nth-child(2) .cookiepopup-midashi::before {
    content: "2";
  }
  .cookiepopup-content:nth-child(3) .cookiepopup-midashi::before {
    content: "3";
  }
  .cookiepopup-content:nth-child(4) .cookiepopup-midashi::before {
    content: "4";
  }
  #popuptarget_b .cookiepopup-midashi::before {
    content: "2";
  }
  #popuptarget_c .cookiepopup-midashi::before {
    content: "3";
  }
  #popuptarget_d .cookiepopup-midashi::before {
    content: "4";
  }
  #popuptarget_d .cookiepopup-midashi::after {
    content: "";
    background: url("https://www.jfe-eng.co.jp/assets/images/icon_blank_01.svg") no-repeat 0 50%;
    width: 20px;
    height: 20px;
    top: 2px;
    right: 0;
    margin-left: 8px;
  }
}
/* main */
/* ======================================== */
#main {
  width: 100%;
  margin: 80px auto 0;
  line-height: 1.8rem;
}
@media screen and (max-width: 768px) {
  #main {
    padding-top: 70px;
  }
}
@media screen and (max-width: 576px) {
  #main {
    padding-top: 20px;
  }
}

.flex, .flex_even {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex, .flex_even {
    display: block;
  }
}

/* common */
/* ======================================== */
.out::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 10px;
  padding-top: 9px;
  background: url("../images/open.svg") 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .out::after {
    right: auto;
  }
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  h3 {
    font-size: 1.3rem;
  }
}

.text p {
  margin-bottom: 1rem;
}
.text p:nth-last-child(1) {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

a.btn, .btn {
  position: relative;
  display: inline-block;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid #2C4681;
  border-radius: 10px;
  transition: all 0.3s;
}
a.btn::after, .btn::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  transition: all 0.3s;
}
a.btn:hover, .btn:hover {
  color: #FFFFFF;
  background-color: #2C4681;
}
a.btn:hover::after, .btn:hover::after {
  color: #FFFFFF;
  transform: translate(10px, 0);
}

@media screen and (max-width: 1200px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline-block;
  }
}

.pt100 {
  padding-top: 100px;
}

.pb300 {
  padding-bottom: 300px;
}

/* top */
/* ======================================== */
.top h2 {
  margin-bottom: 80px;
  text-align: center;
  color: #2C4681;
}
@media screen and (max-width: 576px) {
  .top h2 {
    margin-bottom: 40px;
  }
}
.top section {
  max-width: 1400px;
  padding: 80px 60px 0;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .top section {
    padding: auto 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .top section {
    padding: 40px 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .top section {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .top .text {
    padding: 0 30px;
  }
}
.top .flex, .top .flex_even {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.top .flex a, .top .flex_even a {
  width: auto;
  height: auto;
}
.top .flex .flex-img, .top .flex_even .flex-img {
  display: inline-block;
  width: 65%;
  height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top .flex .flex-img, .top .flex_even .flex-img {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .top .flex .flex-img, .top .flex_even .flex-img {
    width: 100%;
    height: 260px;
  }
}
@media screen and (max-width: 576px) {
  .top .flex .flex-img, .top .flex_even .flex-img {
    height: 200px;
  }
}
.top .flex .flex-img img, .top .flex_even .flex-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.top .flex .flex-img:hover img, .top .flex_even .flex-img:hover img {
  transform: scale(1.1);
}
.top .flex .flex-txt, .top .flex_even .flex-txt {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .top .flex .flex-txt, .top .flex_even .flex-txt {
    width: 100%;
  }
}
.top .flex .flex-txt h3, .top .flex_even .flex-txt h3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top .flex .flex-txt h3, .top .flex_even .flex-txt h3 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .top .flex .flex-txt h3, .top .flex_even .flex-txt h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.top .flex:nth-last-child(1), .top .flex_even:nth-last-child(1) {
  margin-bottom: 0;
}
.top .flex .flex-txt {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .top .flex .flex-txt {
    padding-right: 0;
  }
}
.top .flex_even .flex-txt {
  order: 1;
  text-align: right;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .top .flex_even .flex-txt {
    text-align: left;
    padding-left: 0;
  }
}
.top .flex_even .flex-img {
  order: 2;
}
.contact {
  width: 100%;
  padding: 40px;
  text-align: center;
  background-color: #F1F1F1
}
@media screen and (max-width: 576px) {
  .contact {
    padding: 80px 0;
  }
}

/* recruit */
/* ======================================== */
.recruit {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding: 80px 60px 0;
}
@media screen and (max-width: 1200px) {
  .recruit {
    padding: auto 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 40px 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .recruit {
    padding: 40px 30px 30px;
  }
}
.recruit .side-menu {
  order: 1;
  width: 25%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .recruit .side-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .recruit .side-menu {
    width: 21%;
    max-width: 200px;
  }
}
.recruit .side-menu ul {
  position: fixed;
}
.recruit .side-menu li {
  margin-bottom: 1rem;
}
.recruit .side-menu li a {
  position: relative;
  display: block;
  padding: 20px 0;
  color: #0A5CAD;
  font-weight: 700;
  transition: all 0.3s;
}
.recruit .side-menu li a::after {
  content: "→";
  position: absolute;
  right: -7.5rem;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .recruit .side-menu li a::after {
    right: -2.5rem;
    width: 35px;
  }
}
.recruit .side-menu li a:hover {
  color: #0099E8;
}
.recruit .side-menu li a:hover::after {
  transform: translate(10px, 0);
}
.recruit .contents {
  order: 2;
  width: 75%;
}
@media screen and (max-width: 1200px) {
  .recruit .contents {
    width: 79%;
  }
}
@media screen and (max-width: 768px) {
  .recruit .contents {
    width: 100%;
  }
}
.recruit section {
  margin-bottom: 80px;
}
.recruit section:nth-last-child(1) {
  margin-bottom: 100px;
}
.recruit h2 {
  position: relative;
  margin-bottom: 50px;
  padding: 0 0 1.5rem 1.5rem;
  border-bottom: #0099E8 2px solid;
}
@media screen and (max-width: 768px) {
  .recruit h2 {
    margin-bottom: 30px;
    padding: 0 0 1rem 0;
  }
}
.recruit h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: #AEAEAE 2px solid;
  right: 0;
  bottom: -2px;
  width: 80%;
}
.recruit .cont_innner {
  padding-top: 160px;
  margin-top: -160px;
}
@media screen and (max-width: 768px) {
  .recruit .cont_innner {
    padding-top: 150px;
    margin-top: -150px;
  }
}
.recruit .text {
  margin: 0 50px;
}
@media screen and (max-width: 1200px) {
  .recruit .text {
    margin: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit .text {
    margin: 0;
  }
}
.recruit ul.list {
  margin: 0 50px;
}
@media screen and (max-width: 1200px) {
  .recruit ul.list {
    margin: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .recruit ul.list {
    margin: 0;
  }
}
.recruit ul.list li {
  display: flex;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit ul.list li {
    display: block;
  }
}
.recruit ul.list li:nth-child(odd) {
  background-color: #EFF8FF;
}
.recruit ul.list li:nth-child(even) {
  background-color: #FFFFFF;
}
.recruit ul.list li > span, .recruit ul.list li > div {
  padding: 1.2rem;
}
.recruit ul.list .item {
  display: block;
  width: 20%;
  text-align: right;
  font-weight: 700;
  font-size: 110%;
}
@media screen and (max-width: 768px) {
  .recruit ul.list .item {
    width: 100%;
    padding-bottom: 0;
    text-align: left;
    font-size: 120%;
  }
}
.recruit ul.list .cont {
  display: block;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .recruit ul.list .cont {
    width: 100%;
  }
}
.recruit ul.list .cont_flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.recruit ul.list .icon_1, .recruit ul.list .icon_2 {
  display: block;
  width: 60px;
  height: 30px;
  margin-right: 10px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 90%;
  text-align: center;
}
.recruit ul.list .icon_1 {
  background-color: #2C4681;
  margin-bottom: 5px;
}
.recruit ul.list .icon_2 {
  background-color: #0B8FD5;
}
.recruit ul.list .txt {
  display: block;
  width: 100%;
}/*# sourceMappingURL=style.css.map */

.intro h2{
	color:#223B8C;
}

.intro p{
	font-weight: bold;
}

.intro h2 {
  margin-bottom: 50px;
  padding: 0 0 1.5rem 1.5rem;
  border-bottom: #223B8C 2px solid;
}

.intro h2::after {
  border-bottom: #223B8C 2px solid;
}