#recruit_header {
  position: absolute;
  transition: all 0.3s ease;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu {
  display: block;
}
@media screen and (max-width: 1000px) {
  #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu {
    display: none;
  }
}
#recruit_header .header-nav-layout .btn-menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  #recruit_header .header-nav-layout .btn-menu {
    display: block;
  }
}
#recruit_header.closed {
  position: fixed;
  animation: slideUp 0.3s ease forwards;
}
#recruit_header.closed .btn-menu {
  display: block;
}
#recruit_header.fixed {
  position: fixed;
  animation: slideDown 0.3s ease forwards;
}
@media screen and (max-width: 1280px) {
  #recruit_header.fixed .header-layout-main .header-nav .header-nav-layout .parent-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #recruit_header.fixed .header-layout-main .header-nav .header-nav-layout .parent-menu {
    display: none;
  }
}
#recruit_header.fixed .btn-menu {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
main {
  position: relative;
  padding-bottom: 50px;
  background: url(/assets/image/top/bg-wave.webp) no-repeat center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  main {
    background: url(/assets/image/top/bg-wave-sp.webp) no-repeat center bottom;
    background-size: 100% auto;
  }
}
main .top-menu {
  width: 37%;
  position: absolute;
  z-index: 1;
  right: 3%;
  top: 0;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}
main .top-menu.top-menu-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  main .top-menu.top-menu-pc {
    display: none;
  }
  main .top-menu.top-menu-sp {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 16px;
  }
}
main .top-menu .col1 {
  position: relative;
  background-color: #fff;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  main .top-menu .col1 {
    width: 100%;
  }
}
main .top-menu .col1 a:hover {
  background-color: #008B3E;
  color: #fff;
}
main .top-menu .col1::after {
  content: url(/assets/image/corner-white.svg);
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  bottom: -15px;
  transform: scaleX(-1);
}
main .top-menu .col2 {
  position: relative;
  background-color: #fff;
  padding: 0 0 0 16px;
  border-radius: 0 0 0 15px;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  main .top-menu .col2 {
    display: none;
  }
}
main .top-menu .col2::after {
  content: url(/assets/image/corner-white.svg);
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  bottom: -15px;
  transform: scaleX(-1);
}
main .top-menu a {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.55rem, 1.224rem + 0.4vw, 1.8rem);
  border-radius: 15px;
  border: 1px solid #008B3E;
  color: #008B3E;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1210px) {
  main .top-menu a {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
@media screen and (max-width: 767px) {
  main .top-menu a {
    font-size: min(14px, 3vw);
    margin-bottom: 0;
    height: 60px;
  }
}
main .top-menu a:hover {
  opacity: 0.8;
}
main .top-menu a small {
  display: block;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  margin-right: 4%;
  padding-right: 4%;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1210px) {
  main .top-menu a small {
    font-size: clamp(0.95rem, 0.856rem + 0.1vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  main .top-menu a small {
    font-size: min(11px, 2vw);
  }
}
main .top-menu a.btn1 {
  background-color: #E13000;
  color: #fff;
  border: none;
}
main .top-menu a.btn2 {
  background-color: #018B3E;
  color: #fff;
  border: none;
  outline: 1px solid #fff;
  outline-offset: -4px;
}
main .top-menu a.btn3 {
  background-color: #0088AB;
  color: #fff;
  border: none;
  outline: 1px solid #fff;
  outline-offset: -4px;
}
main #content-block .inner {
  position: relative;
}
main #content-block .row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  main #content-block .row {
    flex-direction: column;
  }
}
main #content-block .row .box {
  position: relative;
  height: 100%;
}
main #content-block .row .box .image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
main #content-block .row .box .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
main #content-block .row .box .image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}
main #content-block .row .box .cat {
  background-color: #fff;
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
  color: #008B3E;
  font-weight: 600;
  position: absolute;
  top: -1px;
  left: -1px;
  line-height: 1;
  padding: 15px 18px;
}
main #content-block .row .box .title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  main #content-block .row .box .title {
    font-size: min(16px, 4vw);
  }
}
main #content-block .row .box .mark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #008B3E;
}
main #content-block .row .box .mark::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  main #content-block .row .box .mark {
    width: 26px;
    height: 26px;
  }
  main #content-block .row .box .mark::after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: -4px;
  }
}
main #content-block #row1 {
  align-items: flex-end;
  height: 590px;
}
@media screen and (max-width: 1200px) {
  main #content-block #row1 {
    height: 500px;
  }
}
@media screen and (max-width: 1000px) {
  main #content-block #row1 {
    height: auto;
  }
}
main #content-block #row1 #box1 {
  width: 59%;
}
@media screen and (max-width: 1000px) {
  main #content-block #row1 #box1 {
    width: 100%;
    margin-bottom: 16px;
  }
}
main #content-block #row1 #box1 .image:after {
  display: none;
}
main #content-block #row1 #box1 .title {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
main #content-block #row1 #box1 .title span {
  background-color: #fff;
  display: inline;
  line-height: 1.8;
  font-size: clamp(3.35rem, 2.328rem + 1.3vw, 4.2rem);
  color: #008B3E;
  font-weight: 600;
  padding: 0 22px;
}
@media screen and (max-width: 767px) {
  main #content-block #row1 #box1 .title span {
    font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
    padding: 0 0 0 15px;
  }
}
main #content-block #row1 #box2 {
  width: 40%;
  height: 397px;
}
@media screen and (max-width: 1200px) {
  main #content-block #row1 #box2 {
    height: 290px;
  }
}
@media screen and (max-width: 1000px) {
  main #content-block #row1 #box2 {
    width: 100%;
  }
}
main #content-block #row2 {
  margin-top: 16px;
  height: 526px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 {
    flex-direction: column;
    height: auto;
  }
}
main #content-block #row2 .left {
  width: 59%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 .left {
    flex-direction: row;
    width: 100%;
  }
}
main #content-block #row2 .left .box {
  width: 49%;
  margin-bottom: 24px;
  height: 280px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 .left .box {
    height: auto;
    height: 230px;
  }
}
main #content-block #row2 .left #box5 {
  width: 100%;
  height: 230px;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 .left #box5 {
    width: 49%;
  }
}
main #content-block #row2 .left #box6-tab {
  display: none;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 .left #box6-tab {
    display: block;
    width: 49%;
    height: 230px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  main #content-block #row2 .left #box3,
  main #content-block #row2 .left #box6-tab,
  main #content-block #row2 .left #box5 {
    width: 100%;
    height: auto;
    aspect-ratio: 23/11;
  }
}
main #content-block #row2 .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  main #content-block #row2 .right {
    display: none;
  }
}
main #content-block #row3 {
  display: flex;
  gap: 1%;
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  main #content-block #row3 {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  main #content-block #row3 {
    flex-direction: column;
    margin-top: 0;
  }
}
main #content-block #row3 .box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main #content-block #row3 .box {
    width: 100%;
    height: auto;
    aspect-ratio: 23/11;
    margin-bottom: 16px;
  }
}
main #content-block #row4 {
  display: flex;
  gap: 1%;
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  main #content-block #row4 {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  main #content-block #row4 {
    flex-direction: column;
    margin-top: 0;
  }
}
main #content-block #row4 .box {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  main #content-block #row4 .box {
    width: 100%;
    height: auto;
    aspect-ratio: 23/11;
    margin-bottom: 16px;
  }
}