@charset "UTF-8";

main {
  padding-top: 0;
}

#header {
  background-color: transparent;
  position: static;
}
#header .inner {
  height: 128px;
}
#header .logo {
  max-width: clamp(240px, 37vw, 458px);
}
#header .navi .menu {
  border: solid 1px #9FCACF;
}

.section-title {
  line-height: 1.2;
  margin-bottom: 40px;
}
.section-title .ja {
  color: #414141;
  display: block;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 50px
}
.section-title .ja::before {
  content: "";
  width: 38px;
  height: 1px;
  background-color: #01459A;
  position: absolute;
  top: 50%;
  left: 0;
}
.section-title .en {
  color: #003577;
  display: block;
  font-size: 56px;
  font-weight: 500;
}
.section-title-center {
  text-align: center;
}
.section-title-center .ja {
  padding-left: 0;
}
.section-title-center .ja::before {
  content: none;
  /* width: 1px;
  height: 50px;
  margin: 0 auto;
  top: -65px;
  left: 0;
  right: 0; */
}

/*-------------------------------------------
メインビジュアル
-------------------------------------------*/
.mv-slider {
  margin-bottom: 80px !important;
}
.mv-slider .slider-item img {
  border-radius: 10px;
}
.mv-slider .slick-arrow.prev,
.mv-slider .slick-arrow.next {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
}
.mv-slider .slick-arrow.prev {
  left: -20px;
}
.mv-slider .slick-arrow.next {
  right: -20px;
}
.mv-slider .slick-dots {
  bottom: -30px;
}
.mv-slider .slick-dots li button:before {
  color: #fff;
  font-size: 12px;
  opacity: 1;
}
.mv-slider .slick-dots li.slick-active button:before {
  color: #01459A;
  opacity: 1;
}

/*-------------------------------------------
Job Search
-------------------------------------------*/
.job-search {
  margin-bottom: 80px;
}
.job-search .search-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1.5%;
  margin-bottom: 35px;
}
.job-search .search-list li {
  width: calc(95.5% / 4);
  max-width: 270px;
  background-color: #fff;
  border: solid 1px #A0CBCF;
  border-radius: 10px;
  position: relative;
}

/* .job-search .search-list li:hover {
  outline: solid 3px #FAF3C4;
} */
.job-search .search-list li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #003577;
  border-right: solid 2px #003577;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 18px;
}
.job-search .search-list li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}
.job-search .search-list li .img {
  max-width: 74px;
  margin-right: 10px;
}
.job-search .search-list li .text .ja {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  margin-bottom: 2px;
}
.job-search .search-list li .text .en {
  display: block;
  color: #003577;
  font-size: 11px;
  font-weight: 500;
}

/*-------------------------------------------
New Jobs
-------------------------------------------*/
.new-jobs {
  margin-bottom: 50px;
}
.new-jobs .section-title {
  margin-bottom: 15px;
}
.new-jobs .new-company-area {
  width: 100%;
  background-color: #EDF1FA;
  padding: 40px 0;
  overflow-x: hidden;
}
.new-jobs .new-company-area .new-company-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  justify-content: start;
  gap: 12px;
  margin: 0 auto 25px;
  overflow-x: auto;
}
.new-jobs .new-company-area .new-company-list li {
  width: 180px;
  height: 180px;
  background-color: #fff;
}
.new-jobs .new-company-area .new-company-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
}

/*-------------------------------------------
Pick Up
-------------------------------------------*/
.pick-up {
  background-color: #fff;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  padding: 100px 0 120px;
  margin-bottom: 40px;
}

/*-------------------------------------------
company
-------------------------------------------*/
.company {
  margin-bottom: 80px;
  position: relative;
}
.company::before {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #003577;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 10;
}
.company .inner {
  background-color: #fff;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  padding: 140px 0;
}
.company .section-title-company {
  color: #003577;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
}
.company .company-slider {
  margin-bottom: 60px;
}

/*-------------------------------------------
バナー
-------------------------------------------*/
.banner-area {
  max-width: 834px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }

  #header {
    background-color: #fff;
    position: fixed;
  }
  #header .inner {
    height: 60px;
  }
  #header .logo {
    max-width: 230px;
  }

  .section-title {
    margin-bottom: 20px;
  }
  .section-title .ja {
    font-size: 14px;
    padding-left: 37px
  }
  .section-title .ja::before {
    width: 25px;
  }
  .section-title .en {
    font-size: 32px;
  }
  .section-title-center .ja {
    padding-left: 0;
  }
  .section-title-center .ja::before {
    /* width: 1px;
    height: 35px;
    top: -50px; */
  }

  /*-------------------------------------------
  メインビジュアル
  -------------------------------------------*/
  .wrapper.mv-wrapper {
    padding: 0;
  }
  .mv-slider {
    margin-bottom: 40px !important;
  }
  .mv-slider .slider-item img {
    border-radius: 0;
  }
  .mv-slider .slick-arrow.prev,
  .mv-slider .slick-arrow.next {
    width: 25px;
    height: 25px;
    top: calc(50% - 3.5px);
  }
  .mv-slider .slick-arrow.prev {
    left: 8px;
  }
  .mv-slider .slick-arrow.next {
    right: 8px;
  }

  /*-------------------------------------------
  Job Search
  -------------------------------------------*/
  .job-search {
    margin-bottom: 30px;
  }
  .job-search .search-list {
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
  }
  .job-search .search-list li {
    width: calc((100% - 5px) / 2);
    border-radius: 5px;
  }
  .job-search .search-list li::after {
    width: 8px;
    height: 8px;
    right: 8px;
  }
  .job-search .search-list li a {
    padding: 10px 5px;
  }
  .job-search .search-list li .img {
    max-width: 35px;
    margin: 0 5px 0 0;
  }
  .job-search .search-list li .text .ja {
    font-size: 14px;
  }
  .job-search .search-list li .text .en {
    font-size: 10px;
  }

  /*-------------------------------------------
  New Jobs
  -------------------------------------------*/
  .new-jobs {
    margin-bottom: 30px;
  }
  .new-jobs .new-company-area {
    padding: 35px 0;
  }
  .new-jobs .new-company-area .new-company-list {
    gap: 8px;
  }
  .new-jobs .new-company-area .new-company-list li {
    width: 130px;
    height: 130px;
  }
  .new-jobs .new-company-area .new-company-list li a {
    padding: 10px;
  }

  /*-------------------------------------------
  Pick Up
  -------------------------------------------*/
  .pick-up {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 80px 0;
  }

  /*-------------------------------------------
  company
  -------------------------------------------*/
  .company {
    margin-bottom: 80px;
  }
  .company::before {
    top: 5px;
  }
  .company .inner {
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    padding: 100px 0;
  }
  .company .section-title-company {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .company .company-slider {
    margin-bottom: 30px;
  }
}