@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700&display=swap');

:root {
  --C-black: #000;
  --C-white: #fff;
  --C-blue: #000080;
}

/* ===============================
	header
 =============================== */
#header {
  max-width: 1920px;
  margin: auto;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 6.04166666666667% 45px 3.64583333333333%;
}
.header-nav .nav_toggle {
  display: none;
}
.header-nav .nav_menu {
  display: flex;
}
.header-nav .nav_menu.sp {
  display: none ;
}
.header-nav .nav_list a {
  font-size: clamp(16px,24 / 1250 * 100vw,24px);
  display: block;
  padding: 0 clamp(6px,26 / 1250 * 100vw,26px);
}
.header-nav .nav_list.nav_mail a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-nav .nav_list.nav_mail a::before {
  content: '';
  width: 33px;
  height: 26px;
  background: url(../img/header_icon_mail.svg) no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 1250px) {
  .header_logo img {
    width: clamp(200px,365 / 1250 * 100vw,365px);
  }
  .header-nav .nav_list a {
    font-size: clamp(16px,20 / 1250 * 100vw,20px);
    padding: 0 clamp(8px,16 / 1250 * 100vw,16px);
  }
}
@media screen and (max-width: 767px) {
  #header {
    position: relative;
    z-index: 999;
  }
  .header_inner {
    padding: 0 6.66666666666667vw;
  }
  .header_logo {
    position: absolute;
    top: 11.46666666666667vw;
    z-index: -1;
  }
  .header_logo img {
    width: auto;
    height: 8.53333333333333vw;
  }
  .header-nav {
    margin-left: auto;
  }
  .header-nav .nav_toggle {
    display: block;
    position: fixed;
    right: 5.33333333333333vw;
    top: 10.66666666666667vw;
    width: 9.33333333333333vw;
    height: 9.33333333333333vw;
    border: var(--C-black) 1px solid;
    border-radius: 100px;
  }
  .header-nav .nav_toggle span {
    background: var(--C-black);
    width: 42.85714285714286%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
  }
  .header-nav .nav_toggle span:first-child {
    top: 34%;
  }
  .header-nav .nav_toggle span:nth-child(2) {
    top: 50%;
    bottom: 50%;
  }
  .header-nav .nav_toggle span:last-child {
    bottom: 34%;
  }
  .header-nav .nav_menu.pc {
    display: none ;
  }
  .header-nav .nav_menu.sp {
    display: block ;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #F5F5F5;
    /* height: 178vw; */
    height: 100vh;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: .5s;
    overflow: auto;
  }
  .header-nav .nav_menu_logo {
    position: absolute;
    top: 11.46666666666667vw;
    left: 6.66666666666667vw;
  }
  .header-nav .nav_menu_logo img {
    width: 38.4vw;
  }
  .header-nav .nav_menu > ul {
    margin-top: 16.6256157635468vh;
  }
  .header-nav .nav_list a {
    display: inline-block;
    padding: 0;
    margin: 2.94088669950739vh 13.33333333333333vw;
  }
  .header-nav .nav_list a span {
    font-size: 3.46666666666667vw;
    font-weight: 600;
    vertical-align: text-bottom;
    margin-left: 4.26666666666667vw;
  }
  .header-nav .nav_list.txt_b a span {
    padding-bottom: 1vw;
    display: inline-block;
  }
  .header-nav .nav_menu_recruit {
    background: #C2000B;
    width: 100%;
    text-align: center;
    padding-top: 12vw;
    padding-bottom: 10vw;
    margin-top: 10vw;
  }
  .header-nav .nav_menu_recruit strong {
    color: var(--C-white);
    font-size: 6.4vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.8vw;
  }
  .header-nav .nav_menu_recruit span {
    color: var(--C-white);
    font-size: 3.73333333333333vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    display: block;
    margin-bottom: 6.4vw;
  }
  .header-nav .nav_menu_recruit p {
    color: var(--C-white);
    font-size: 4.26666666666667vw;
    font-weight: 500;
    letter-spacing: 0.025em;
    margin-bottom: 2.66666666666667vw;
  }
  .header-nav .nav_menu_recruit a {
    font-size: 4.26666666666667vw;
    font-weight: 500;
    color: #C2000B;
    background: var(--C-white);
    border-radius: 100px;
    width: 53.33333333333333vw;
    height: 10.66666666666667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  /* ナビオープン時 */
  .nav-open .header-nav .nav_menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .nav-open .header-nav .nav_toggle {
    border-radius: 100px;
  }
  .nav-open .header-nav .nav_toggle span:first-child {
    transform: rotate(-35deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header-nav .nav_toggle span:nth-child(2) {
    display: none;
  }
  .nav-open .header-nav .nav_toggle span:last-child {
    transform: rotate(35deg);
    top: 0;
    bottom: 0;
  }
  .sp_contact_btn {
    border: 2px solid #000;
    border-radius: 100px;
    width: 53.33333333333333vw;
    height: 10.66666666666667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4vw auto 0;
  }
  .sp_contact_btn a {
    font-size: 4.26666666666667vw !important;
    font-weight: 500;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto !important;
    line-height: 0 !important;
    /* padding-top: 4px !important; */
  }
  .header-nav .nav_list.nav_mail a::before {
    content: '';
    width: 27px;
    height: 20px;
  }
}

/* ===============================
	footer
 =============================== */
#footer {
  background: #D4D7D8;
}
.footer_copyright {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    font-size: 2.13333333333333vw;
    margin-top: 0;
    padding-top: 10.66666666666667vw;
    padding-bottom: 5.33333333333333vw;
  }
}

/* ===============================
	site utility
 =============================== */
body *{font-family: "ヒラギノ角ゴ ProN";}
img { max-width: 100%; height: auto;}
a {transition: 0.4s;}
a:hover {transition: 0.4s; opacity: 0.7;}

/* 最大width幅 */
.w900,.w1000,.w1380,.w1600,.w1640_w {max-width: 100%;}
.w900 {width: 900px;}
.w1000 {width: 1000px;}
.w1380 {width: 1380px;}
.w1600 {width: 1600px;}
.w1640_w { width: calc(20px * 2 + 1680px);padding-left: 20px;padding-right: 20px;}

/* ===============================
	mv
 =============================== */
#mv {
  background-size: 1920px auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 340px;
  display: flex;
  align-items: center;
}
#mv .wrap {
  text-align: center;
}
#mv h1 {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--C-white);
  filter: drop-shadow(0 0 5px var(--C-black));
}
@media screen and (min-width: 1920px) {
  #mv {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #mv {
    height: 36vw;
    background-size: cover;
    background-position: 96% bottom;
    margin-top: 100px;
  }
  #mv h1 {
    font-size: 8.53333333333333vw;
    filter: drop-shadow(0 0 3px var(--C-black));
  }
}

/* ===============================
	mv_top
 =============================== */
#mv.mv_top {
  background-image: url(../img/mv.webp);
  background-size: 1920px auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 796px;
  display: block;
}
#mv.mv_top .wrap {
  text-align: left;
}
#mv.mv_top h1 {
  font-size: 44px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--C-white);
  filter: drop-shadow(0 0 3px var(--C-black));
  padding-top: 218px;
}
#mv.mv_top h1 img {
  display: block;
}
@media screen and (min-width: 1920px) {
  #mv {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #mv.mv_top {
    height: 82.13333333333333vw;
    background-size: 152% auto;
    background-position: 96% bottom;
    margin-top: 100px;
  }
  #mv.mv_top h1 {
    font-size: 3.73333333333333vw;
    color: var(--C-black);
    filter: none;
    padding-top: 4.2vw;
    padding-bottom: 10px;
    margin-left: 2%;
  }
  #mv.mv_top h1 img {
    width: 66.66666666666667vw;
  }
}

/* ===============================
	about
 =============================== */
#about {
  padding: 90px 0;
  background: #000;
  z-index: +3;
  position: relative;
}
#about .grid {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: auto auto;
}
#about .about_img {
  grid-column:1 / 2;
  grid-row:1 / 3;
}
#about .about_title {
  grid-column:2 / 3;
  grid-row:1 / 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 32px;
  padding-left: 11.76470588235294%;
}
#about .about_title h2 span {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-left: 16px;
  margin-right: 30px;
}
#about .about_main {
  grid-column:2 / 3;
  grid-row:2 / 3;
  padding-left: 11.76470588235294%;
}
#about .about_main p {
  font-size: 30px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #fff;
  padding-right: 2.82352941176471%;
}
@media screen and (max-width: 767px) {
  #about {
    padding: 19.2vw 0 11.2vw;
  }
  #about .about_img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  #about .about_title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-bottom: 7.46666666666667vw;
    padding-left: 6.66666666666667vw;
  }
  #about .about_title h2 span {
    font-size: 3.46666666666667vw;
    margin-left: 4.8vw;
    margin-right: 4.26666666666667vw;
  }
  #about .about_title h2 img:nth-child(1) {
    width: 38.66666666666667vw;
  }
  #about .about_title h2 span + img {
    width: 9.6vw;
  }
  #about .about_main {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding-top: 8vw;
    padding-left: 6.66666666666667vw;
    padding-right: 6.66666666666667vw;
  }
  #about .about_main p {
    font-size: 3.73333333333333vw;
    line-height: 1.857142857142857;
    letter-spacing: 0.12em;
    padding-right: 0;
  }
}

/* ===============================
	service
 =============================== */
#service {
  padding-top: calc(72px + 176px);
  padding-bottom: 42px;
  background: #C2000B;
  position: relative;
  z-index: +2;
  margin-top: -176px;
}
#service::after {
  content: '';
  background: #C2000B;
  height: calc(200px / 2);
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -99px;
}
#service h2 {
  margin-bottom: 76px;
}
#service h2 span {
  font-size: 26px;
  color: #fff;
  margin-left: 34px;
}
#service .disFlex {
  display: flex;
}
#service .service_1,
#service .service_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#service .service_1 {
  width: calc(100% - 37.8125%);
  padding-left: 3.75%;
  padding-right: 6.875%;
}
#service .service_2 {
  width: 37.8125%;
}
#service .service_img {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
#service .service_1 .absol,
#service .service_2 .absol {
  position: absolute;
  top: -214px;
  left: 0;
}
#service .service_1 .service_txt,
#service .service_2 .service_txt {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 2.083333333333333;
  color: #fff;
  position: relative;
  margin-top: 40px;
}
#service .service_1 .service_txt {
  width: 51.93236714975845%;
  margin-left: 46px;
}
#service .service_2 .service_txt {
  width: 58.67768595041322%;
  margin-left: 50px;
}
@media screen and (max-width: 1050px) {
  #service .disFlex {
    display: block;
  }
  #service .service_1,
  #service .service_2 {
    width: 100%;
    padding-left: 6.66666666666667vw;
    padding-right: 6.66666666666667vw;
    display: block;
  }
  #service .service_1 {
    margin-top: 10.66666666666667vw;
  }
  #service .service_2 {
    margin-top: 8.26666666666667vw;
  }
  #service .service_img {
    justify-content: right;
  }
  #service .service_1 .service_img {
    margin-right: 6.66666666666667vw;
  }
  #service .service_2 .service_img {
    margin-right: 14.4vw;
  }
  #service .service_1 .service_img img {
    width: 36.53333333333333vw;
  }
  #service .service_2 .service_img img {
    width: 21.33333333333333vw;
  }
  #service .service_1 .service_txt,
  #service .service_2 .service_txt {
    margin-top: auto;
    margin-left: 0;
    width: 100%;
  }
  #service .service_1 .service_txt {
    margin-top: 10.66666666666667vw;
  }
  #service .service_2 .service_txt {
    margin-top: 8.53333333333333vw;
  }
  #service .service_1 .absol,
  #service .service_2 .absol {
    top: -33.86666666666667vw;
    left: 9.06666666666667vw;
  }
  #service .service_1 .service_txt img,
  #service .service_2 .service_txt img {
    width: 25.33333333333333vw;
    height: 25.33333333333333vw;
  }
}
@media screen and (max-width: 767px) {
  #service {
    padding-top: 14.4vw;
    padding-bottom: 16.53333333333333vw;
    margin-top: 0;
  }
  #service::after {
    height: 15.46666666666667vw;
    bottom: -15.3vw;
  }
  #service h2 {
    margin-bottom: 0;
    margin-left: 6.66666666666667vw;
  }
  #service h2 img {
    width: 29.86666666666667vw;
  }
  #service h2 span {
    font-size: 3.46666666666667vw;
    margin-left: 4.8vw;
  }
  #service .service_1 .service_txt,
  #service .service_2 .service_txt {
    font-size: 3.73333333333333vw;
    letter-spacing: 0.1em;
    line-height: 1.857142857142857;
  }
}

/* ===============================
	recruit
 =============================== */
#recruit {
  background: #fff;
  padding-top: 176px;
  padding-bottom: 144px;
  z-index: +1;
  position: relative;
}
#recruit h2 {
  margin-bottom: 40px;
}
#recruit h2 span {
  font-size: 26px;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 20px;
}
#recruit h2 + p {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.2;
  color: #C2000B;
}
.recruit_list {
  display: flex;
  justify-content: space-between;
  margin-top: 86px;
}
.recruit_con {
  width: 46.875%;
  text-align: center;
}
.recruit_con h3 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 98px;
}
.recruit_con .btn {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
  background: #959595;
  border-radius: 100px;
  width: 56%;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.recruit_con .btn a {
  color: #C2000B;
  background: #fff;
  border: #C2000B 4px solid;
  border-radius: 100px;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit_con .btn a:hover {
  opacity: 1;
  color: #fff;
  background: #C2000B;
}
@media screen and (max-width: 767px) {
  #recruit {
    margin-top: 32.53333333333333vw;
    padding-top: 0;
    padding-bottom: 24vw;
  }
  #recruit .wrap {
    padding-left: 6.66666666666667vw;
    padding-right: 6.66666666666667vw;
  }
  #recruit h2 {
    margin-bottom: 8.53333333333333vw;
  }
  #recruit h2 img {
    width: 30.4vw;
  }
  #recruit h2 span {
    font-size: 3.46666666666667vw;
    margin-left: 6.4vw;
    margin-right: 3.2vw;
  }
  #recruit h2 span + img {
    width: 11.73333333333333vw;
  }
  #recruit h2 + p {
    font-size: 3.73333333333333vw;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.714285714285714;
  }
  .recruit_list {
    display: block;
    margin-top: 0;
  }
  .recruit_con {
    width: 100%;
    display: grid;
    margin-top: 14.93333333333333vw;
  }
  .recruit_img {
    margin-bottom: 8vw;
  }
  .recruit_con h3 {
    font-size: 5.33333333333333vw;
    letter-spacing: 0.02em;
    text-align: left;
    margin-top: 0;
    margin-bottom: 4.8vw;
    grid-row: 1 / 2;
  }
  .recruit_con .btn {
    font-size: 4.26666666666667vw;
    font-weight: 500;
    letter-spacing: 0.16em;
    width: 53.33333333333333vw;
    height: 10.66666666666667vw;
  }
  .recruit_con .btn a {
    border: #C2000B 2px solid;
  }
}

/* ===============================
	profile
 =============================== */
#profile {
  background: #D4D7D8;
  z-index: 0;
  position: relative;
  padding-top: 176px;
  margin-top: -176px;
}
#profile .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
}
#profile .grid > div {
  width: 93.75%;
}
#profile .grid .logo {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
#profile .grid .map {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
  height: 500px;
}
#profile .grid .map iframe {
  width: 100%;
  height: 100%;
}
#profile .grid .title,
#profile .grid .company_profile,
#profile .grid .company_name,
#profile .grid .address {
  margin-left: auto;
}
#profile .grid .title {
  grid-column: 2 / 3;
  margin-top: 114px;
  margin-bottom: 30px;
}
#profile .grid .title span {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  margin-left: 26px;
  margin-right: 32px;
}
#profile .grid .title img {
  margin-bottom: 14px;
}
#profile .grid .company_profile {
  grid-column: 2 / 3;
  margin-bottom: 44px;
}
#profile .grid .company_profile dl {
  display: flex;
}
#profile .grid .company_profile dt,
#profile .grid .company_profile dd {
  font-size: 24px;
  letter-spacing: 0.025em;
  line-height: 1.846153846153846;
}
#profile .grid .company_profile dt {
  font-weight: 600;
  width: 28.26666666666667%;
}
#profile .grid .company_profile dd {
  font-weight: 400;
  width: calc(100% - 28.26666666666667%);
}
#profile .grid .company_name {
  grid-column: 2 / 3;
  margin-bottom: 24px;
}
#profile .grid .company_name h1 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 44px;
}
#profile .grid .address {
  grid-column: 2 / 3;
}
#profile .grid .address li dl {
  margin-bottom: 44px;
}
#profile .grid .address li:last-child dl {
  margin-bottom: 0;
}
#profile .grid .address dt,
#profile .grid .address dd,
#profile .grid .address a,
#profile .grid .address address {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.92;
}
@media screen and (min-width: 767px) {
  #profile .grid .address a {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  #profile {
    padding-top: 17.6vw;
    margin-top: 0;
  }
  #profile .wrap {
    padding-left: 6.66666666666667vw;
    padding-right: 6.66666666666667vw;
  }
  #profile .grid {
    grid-template-columns: 1fr;
  }
  #profile .grid > div {
    width: 100%;
  }
  #profile .grid .logo {
    grid-row: 2 / 3;
    margin-top: 9.6vw;
    margin-bottom: 9.6vw;
  }
  #profile .grid .logo img {
    width: 29.33333333333333vw;
  }
  #profile .grid .map {
    grid-row: 3 / 4;
    height: 58.66666666666667vw;
    margin-bottom: 13.33333333333333vw;
  }
  #profile .grid .title {
    grid-row: 1 / 2;
    margin-top: 0;
    margin-bottom: 4.53333333333333vw;
  }
  #profile .grid .title img {
    margin-bottom: 0;
    width: 53.6vw;
  }
  #profile .grid .title span {
    font-size: 3.46666666666667vw;
    margin-bottom: 1.5vw;
    margin-left: 2.46666666666667vw;
    margin-right: 3.26666666666667vw;
  }
  #profile .grid .title span + img {
    width: 11.73333333333333vw;
  }
  #profile .grid .company_profile {
    grid-row: 4 / 5;
    margin-bottom: 13.33333333333333vw;
  }
  #profile .grid .company_profile dl {
    border-bottom: var(--C-black) 1px solid;
    padding-top: 6.4vw;
    padding-bottom: 6.4vw;
  }
  #profile .grid .company_profile dl:first-child {
    border-top: var(--C-black) 1px solid;
  }
  #profile .grid .company_profile dt,
  #profile .grid .company_profile dd {
    font-size: 3.46666666666667vw;
    letter-spacing: 0;
  }
  #profile .grid .company_profile dt {
    width: 30.93333333333333vw;
  }
  #profile .grid .company_name {
    grid-row: 5 / 6;
  }
  #profile .grid .company_name h1 {
    font-size: 5.33333333333333vw;
    margin-top: 0;
  }
  #profile .grid .address {
    grid-row: 6 / 7;
  }
  #profile .grid .address dt,
  #profile .grid .address dd,
  #profile .grid .address a,
  #profile .grid .address address {
    font-size: 3.46666666666667vw;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.692307692307692;
  }
  #profile .grid .address li dl {
    margin-bottom: 5.86666666666667vw;
  }
  #profile .grid .title,
  #profile .grid .company_profile,
  #profile .grid .company_name,
  #profile .grid .address {
    grid-column: 1 / 2;
  }
}

/* ===============================
	recruit_box
 =============================== */
#recruit_box {
  margin-top: 120px;
  margin-bottom: 60px;
}
#recruit_box > .wrap {
  background: #F5F5F5;
  padding: 60px 100px 100px;
}
#recruit_box h2 {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 46px;
}
#recruit_box dl {
  display: flex;
  flex-wrap: wrap;
}
#recruit_box dt,
#recruit_box dd {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  padding: 22px 14px;
}
#recruit_box dt {
  width: 205px;
  margin-right: 10px;
  border-bottom: #707070 2px solid;
}
#recruit_box dd {
  width: calc(100% - (205px + 10px));
  border-bottom: #707070 1px solid;
  padding-left: 54px;
  padding-right: 9.32203389830508%;
}
@media screen and (max-width: 767px) {
  #recruit_box {
    margin-top: 16vw;
    margin-bottom: 8vw;
  }
  #recruit_box > .wrap {
    padding: 8vw 6% 13.33333333333333vw;
  }
  #recruit_box h2 {
    font-size: 5.6vw;
    margin-bottom: 6.13333333333333vw;
  }
  #recruit_box dt,
  #recruit_box dd {
    font-size: 3.2vw;
    line-height: 1.6;
    padding: 3vw 3.2vw;
  }
  #recruit_box dt {
    width: auto;
    margin-right: 0;
  }
  #recruit_box dd {
    width: 100%;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
}
.recruit_link_box {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}
.recruit_link_box .btn {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
  background: #959595;
  border-radius: 100px;
  width: 420px;
  max-width: 50%;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit_link_box .btn a {
  color: #C2000B;
  background: #fff;
  border: #C2000B 4px solid;
  border-radius: 100px;
  display: block;
  width: 420px;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit_link_box .btn a:hover {
  opacity: 1;
  color: #fff;
  background: #C2000B;
}
@media screen and (max-width: 767px) {
  .recruit_link_box {
    display: block;
    margin-top: 8vw;
  }
  .recruit_link_box .btn {
    font-size: 4.26666666666667vw;
    font-weight: 500;
    letter-spacing: 0.16em;
    width: 53.33333333333333vw;
    max-width: 100%;
    height: 10.66666666666667vw;
    margin: auto;
    margin-top: 20px;
  }
  .recruit_link_box .btn:first-child {
    margin-top: 0;
  }
  .recruit_link_box .btn a {
    border: #C2000B 2px solid;
  }
}

/* ===============================
	recruit_img_list
 =============================== */
#recruit_img_list {
  margin-bottom: 120px;
}
#recruit_img_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc((100% - (30.43478260869565% * 3)) / 2);
}
@media screen and (max-width: 767px) {
  #recruit_img_list ul {
    gap: 10px;
  }
}
#recruit_img_list li {
  width: 30.43478260869565%;
}
@media screen and (max-width: 767px) {
  #recruit_img_list li {
    width: 70%;
  }
}
#recruit_img_list li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #recruit_img_list {
    margin-bottom: 16vw;
  }
}

#recruit_img_list + #profile {
  padding-top: 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #recruit_img_list + #profile {
    padding-top: 17.6vw;
  }
}

/* ===============================
	recruit_driver
 =============================== */
#mv.mv_recruit.driver {
  background-image: url(../img/recruit/driver/mv.webp);
  background-position: 88%;
}

/* ===============================
	recruit_seika
 =============================== */
#mv.mv_recruit.seika {
  background-image: url(../img/recruit/seika/mv.webp);
  background-position: 37%;
}


/* ===============================
	福利厚生
 =============================== */
#fukuri {
  padding-bottom: 144px;
  z-index: +1;
  position: relative;
  background: #fff;
}
#fukuri .w1600 {
  border: 4px solid #d3d7d8;
  border-radius: 30px;
  padding: 3.5vw 5.3125vw;
}
#fukuri h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 28px;
}
#fukuri h2 + p {
  font-size: 24px;
  line-height: 1.66;
  text-align: center;
  margin-bottom: 70px;
}
.fukuri_col_right {
  width: 698px;
  font-size: 24px;
  line-height: 1.66;
}
.fukuri_col_right h3 {
  font-weight: bold;
  margin-bottom: 19px;
}
.fukuri_col_right h3 span:first-child {
  font-size: 36px;
  line-height: 1.2;
}
.fukuri_col_right h3 span:first-child em {
  font-style: normal;
  font-size: 24px;
}
.fukuri_col_right h3 span:last-child {
  font-size: 16px;
  padding: 0 19px;
  background: rgba(195, 0, 10, 0.3);
  display: flex;
  align-items: center;
}
.retio {
  text-align: right;
  font-size: 18px;
  margin: 15px 0 40px;
}
.retio a {
  text-decoration: underline;
}
.fukuri_voice {
  display: flex;
  align-items: flex-end;
}
.fukuri_voice::after {
  content: "";
  width: 52px;
  height: 65px;
  display: block;
  background: url(../img/fukuri_voice.svg) no-repeat;
  margin-left: 30px;
}
.fukuri_voice p {
  width: 600px;
  font-size: 18px;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px 30px;
  position: relative;
}
.fukuri_voice p::after {
  content: "";
  width: 26px;
  height: 19px;
  display: block;
  background: url(../img/fukuri_fukidashi.svg) no-repeat;
  position: absolute;
  right: -23px;
  top: 50%;
  margin-top: -9px;
}
@media screen and (max-width: 1599px) {
  #fukuri h2 {
    font-size: 2.25vw;
    margin-bottom: 1.75vw;
  }
  #fukuri h2 + p {
    font-size: 1.5vw;
    margin-bottom: 4.375vw;
  }
  .fukuri_col_left {
    width: 42.1875vw;
  }
  .fukuri_col_right {
    width: 43.625vw;
    font-size: 1.5vw;
  }
  .fukuri_col_right h3 {
    margin-bottom: 1.1875vw;
  }
  .fukuri_col_right h3 span:first-child {
    font-size: 2.25vw;
  }
  .fukuri_col_right h3 span:first-child em {
    font-size: 1.5vw;
  }
  .fukuri_col_right h3 span:last-child {
    font-size: 1.0vw;
    padding: 0 1.1875vw;
  }
  .retio {
    font-size: 1.125vw;
    margin: 0.9375vw 0 2.5vw;
  }
  .fukuri_voice::after {
    width: 3.25vw;
    height: 4.0625vw;
    margin-left: 1.875vw;
  }
  .fukuri_voice p {
    width: 37.5vw;
    font-size: 1.125vw;
    padding: 0.9375vw 1.875vw;
  }
  .fukuri_voice p::after {
    content: "";
    width: 1.625vw;
    height: 1.1875vw;
    right: -1.4375vw;
    margin-top: -0.5625vw;
  }
}
@media screen and (max-width: 767px) {
  #fukuri {
    padding-left: 6.66666666666667vw;
    padding-right: 6.66666666666667vw;
    padding-bottom: 24vw;
  }
  #fukuri h2 {
    font-size: 5.33333333333333vw;
  }
  #fukuri h2 + p {
    font-size: 2.7vw;
  }
  .fukuri_col_left {
    width: 100%;
    margin-bottom: 3.1875vw;
  }
  .fukuri_col_right {
    width: 100%;
    font-size: 2.7vw;
  }
  .fukuri_col_right h3 span:first-child {
    font-size: 5.33333333333333vw;
  }
  .fukuri_col_right h3 span:first-child em {
    font-size: 2.7vw;
  }
  .fukuri_col_right h3 span:last-child {
    font-size: 2.0vw;
  }
  .retio {
    font-size: 2vw;
  }
  .fukuri_voice::after {
    width: 8.6065vw;
    height: 9.2704vw;
    margin-left: 3.875vw;
  }
  .fukuri_voice p {
    width: 59.5vw;
    font-size: 2.2vw;
  }
  .fukuri_voice p::after {
    content: "";
    width: 3.625vw;
    height: 3.1875vw;
    right: -2.9vw;
    margin-top: -0.5625vw;
  }
}