* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, fieldset, legend, input, textarea, select, button {
  margin: 0;
  padding: 0;
}

input, button, textarea, select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  width: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #222222;
  letter-spacing: 0.07rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
@media print {
  body {
    zoom: 0.8;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: 1130px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 570px;
  }
}
@media screen and (max-width: 574px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

.id-target {
  display: block;
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .id-target {
    scroll-margin-top: 7rem;
  }
}

br.pc {
  display: none;
}
@media screen and (max-width: 1400px) {
  br.pc {
    display: block;
  }
}
br.xl {
  display: none;
}
@media screen and (max-width: 1199px) {
  br.xl {
    display: block;
  }
}
br.lg {
  display: none;
}
@media screen and (max-width: 991px) {
  br.lg {
    display: block;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 767px) {
  br.md {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 574px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 450px) {
  br.xs {
    display: block;
  }
}

@media screen {
  .blur {
    filter: blur(15px);
    opacity: 0;
    transition-duration: 1.3s;
  }
  .blur.is-show {
    filter: blur(0);
    opacity: 1;
  }
  .fadein {
    opacity: 0;
    transition-duration: 1s;
  }
  .fadein.is-show {
    opacity: 1;
  }
  .fadein_top {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateY(-35px);
  }
  .fadein_top.is-show {
    transform: translateY(0);
    opacity: 1;
  }
  .fadein_bottom {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateY(35px);
  }
  .fadein_bottom.is-show {
    transform: translateY(0);
    opacity: 1;
  }
  .fadein_left {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateX(-35px);
  }
  .fadein_left.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .fadein_right {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateX(35px);
  }
  .fadein_right.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .delay1 {
    transition-delay: 0.1s;
  }
  .delay2 {
    transition-delay: 0.2s;
  }
  .delay3 {
    transition-delay: 0.3s;
  }
  .delay4 {
    transition-delay: 0.4s;
  }
  .delay5 {
    transition-delay: 0.5s;
  }
  .delay6 {
    transition-delay: 0.6s;
  }
  .delay7 {
    transition-delay: 0.7s;
  }
  .delay8 {
    transition-delay: 0.8s;
  }
  .delay9 {
    transition-delay: 0.9s;
  }
  .delay10 {
    transition-delay: 1s;
  }
  .delay11 {
    transition-delay: 1.1s;
  }
  .delay12 {
    transition-delay: 1.2s;
  }
  .delay13 {
    transition-delay: 1.3s;
  }
  .delay14 {
    transition-delay: 1.4s;
  }
  .delay15 {
    transition-delay: 1.5s;
  }
  .delay16 {
    transition-delay: 1.6s;
  }
  .delay17 {
    transition-delay: 1.7s;
  }
  .delay18 {
    transition-delay: 1.8s;
  }
  .delay19 {
    transition-delay: 1.9s;
  }
  .delay20 {
    transition-delay: 2s;
  }
}
main {
  overflow: hidden;
}

.pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 5rem;
  z-index: 99;
}
@media screen and (max-width: 574px) {
  .pagetop {
    width: 4rem;
  }
}
.pagetop img, .pagetop a {
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 2rem;
  z-index: 90;
}
header .logo {
  width: 354px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  header .logo {
    width: 25rem;
  }
}
header .logo a, header .logo img {
  display: block;
}
header.scroll .logo {
  width: 223px;
}
@media screen and (max-width: 991px) {
  header.scroll .logo {
    width: 20rem;
  }
}
header .nav_wrap {
  background: linear-gradient(0deg, #A5EB09 0%, #019506 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
header .nav_wrap.open {
  opacity: 1;
  pointer-events: all;
}
header nav {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  gap: 5rem 7rem;
}
@media screen and (max-width: 991px) {
  header nav {
    gap: 5rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  header nav {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}
header nav a {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  transition: 0.4s;
}
@media (hover: hover) {
  header nav a:hover .icon-circle {
    background: #019506;
  }
  header nav a:hover .icon-circle .icon-line {
    width: 3.2rem;
    transform: translateX(0.5rem);
  }
}
@media screen and (max-width: 574px) {
  header nav a {
    gap: 1rem;
  }
}
header nav a .icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  header nav a .icon-circle {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  header nav a .icon-circle {
    width: 4.5rem;
    height: 4.5rem;
  }
}
header nav a .icon-circle .icon-line {
  display: block;
  width: 2.2rem;
  height: 3px;
  border-radius: 1rem;
  background: #fff;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  header nav a .icon-circle .icon-line {
    width: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  header nav a .icon-circle .icon-line {
    width: 1.6rem;
  }
}
header nav a .icon-circle .icon-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  width: 0;
  height: 20px;
  align-items: center;
  justify-content: center;
}
header nav a .icon-circle .icon-arrow::before, header nav a .icon-circle .icon-arrow::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 14px;
  height: 3px;
}
@media screen and (max-width: 1199px) {
  header nav a .icon-circle .icon-arrow::before, header nav a .icon-circle .icon-arrow::after {
    width: 10px;
  }
}
header nav a .icon-circle .icon-arrow::before {
  top: calc(50% - 2.5px);
  right: 0;
  transform-origin: right center;
  transform: rotate(-45deg);
  border-radius: 1rem 0 0 1rem;
}
header nav a .icon-circle .icon-arrow::after {
  bottom: calc(50% - 2.9px);
  right: 0;
  transform-origin: right center;
  transform: rotate(45deg);
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 574px) {
  header nav a.has-sp-text .menu-text .ja {
    display: none;
  }
}
header nav a.has-sp-text .menu-text .ja.sp-only {
  display: none;
}
@media screen and (max-width: 574px) {
  header nav a.has-sp-text .menu-text .ja.sp-only {
    display: inline;
  }
}
header nav a .menu-text {
  display: flex;
  flex-direction: column;
}
header nav a .menu-text .ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  header nav a .menu-text .ja {
    font-size: 2.4rem;
  }
}
header nav a .menu-text .en {
  margin-top: 0.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  header nav a .menu-text .en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  header nav a .menu-text .en {
    font-size: 1.4rem;
  }
}
header .toggle {
  width: 9rem;
  height: 9rem;
  background: linear-gradient(0deg, #DAEB09 0%, #019506 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  position: relative;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  header .toggle {
    width: 7rem;
    height: 7rem;
  }
}
@media screen and (max-width: 574px) {
  header .toggle {
    width: 6rem;
    height: 6rem;
  }
}
header .toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #019506;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  header .toggle:hover::before {
    opacity: 1;
  }
  header .toggle:hover span:last-of-type {
    width: 3.2rem;
  }
}
@media screen and (hover: hover) and (max-width: 574px) {
  header .toggle:hover span:last-of-type {
    width: 100%;
  }
}
header .toggle.open {
  background: #fff;
}
header .toggle.open span {
  background: #019506;
}
header .toggle.open span:nth-of-type(2) {
  opacity: 0;
}
header .toggle.open span:first-of-type {
  top: 50%;
  transform: rotate(-45deg);
}
header .toggle.open span:last-of-type {
  top: 50%;
  transform: rotate(45deg);
  width: 3.2rem;
}
@media screen and (max-width: 574px) {
  header .toggle.open span:last-of-type {
    width: 100%;
  }
}
header .toggle.open::before {
  background: linear-gradient(0deg, #E3EB09 0%, #fff 100%);
}
header .toggle_inner {
  width: 3.2rem;
  height: 2.4rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  header .toggle_inner {
    width: 2.8rem;
    height: 2.2rem;
  }
}
@media screen and (max-width: 574px) {
  header .toggle_inner {
    width: 2.6rem;
    height: 1.6rem;
  }
}
header .toggle span {
  background: #fff;
  display: block;
  width: 3.2rem;
  height: 2px;
  position: absolute;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  header .toggle span {
    width: 100%;
  }
}
header .toggle span:first-of-type {
  top: 0;
  left: 0;
}
header .toggle span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .toggle span:last-of-type {
  width: 2.2rem;
  bottom: 0;
}
@media screen and (max-width: 574px) {
  header .toggle span:last-of-type {
    width: 100%;
  }
}

.more {
  display: flex;
  align-items: center;
  width: 20rem;
  height: 5.4rem;
  background: linear-gradient(0deg, #ABE609 0%, #019506 100%);
  color: #fff;
  border-radius: 6rem;
  gap: 1.4rem;
  padding: 0.3rem 2rem 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}
.more span {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  margin-bottom: 0.3rem;
  transition: 0.4s;
}
.more span::before, .more span::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.more span::before {
  content: "";
  width: 100%;
  height: 2px;
}
.more span::after {
  width: 2px;
  height: 100%;
}

@media (hover: hover) {
  a.more:hover {
    color: #fff;
  }
  a.more:hover span {
    transform: rotate(180deg);
  }
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.title h2 {
  font-size: 5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}
@media screen and (max-width: 574px) {
  .title h2 {
    font-size: 4rem;
    text-align: center;
  }
}
.title .en {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: #019506;
}
@media screen and (max-width: 574px) {
  .title .en {
    font-size: 1.7rem;
  }
}
.title.left {
  align-items: flex-start;
}
.title.left h2, .title.left .en {
  text-align: left;
}
.title.white h2, .title.white .en {
  color: #fff;
}

.footer {
  background: linear-gradient(180deg, #DAEB09 0%, #019506 55%, #019506 75%, #DAEB09 100%);
  padding: 10rem 0 4.2rem;
}
.footer_recruit-link {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .footer_recruit-link {
    margin-top: 5rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 574px) {
  .footer_recruit-link {
    flex-direction: column;
    align-items: center;
  }
}
.footer_recruit-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52.4rem;
  height: 15rem;
  background: #fff;
  border-radius: 50rem;
  color: #019506;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 2.4rem;
  border: 3px solid #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .footer_recruit-link a {
    width: 35rem;
    height: 10.4rem;
    font-size: 2.2rem;
  }
}
.footer_recruit-link a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(0deg, #88D36B 0%, #2DA200 100%);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
  border-radius: 50rem;
}
@media (hover: hover) {
  .footer_recruit-link a:hover {
    color: #fff;
  }
  .footer_recruit-link a:hover::after {
    opacity: 1;
    width: 100%;
  }
}
.footer_recruit .faq_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 6rem auto 0;
  width: 32rem;
  height: 6.6rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  border: 1px solid #fff;
  color: #fff;
  gap: 1rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.7rem;
  border-radius: 5rem;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .footer_recruit .faq_link {
    margin-top: 3rem;
  }
}
.footer_recruit .faq_link span {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  margin-bottom: 0.3rem;
  transition: 0.4s;
}
.footer_recruit .faq_link span::before, .footer_recruit .faq_link span::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_recruit .faq_link span::before {
  content: "";
  width: 100%;
  height: 2px;
}
.footer_recruit .faq_link span::after {
  width: 2px;
  height: 100%;
}
.footer_recruit .faq_link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(0deg, #88D36B 0%, #2DA200 100%);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
  border-radius: 50rem;
}
@media (hover: hover) {
  .footer_recruit .faq_link:hover::after {
    opacity: 1;
    width: 100%;
  }
  .footer_recruit .faq_link:hover span {
    transform: rotate(180deg);
  }
}
.footer_bottom {
  margin-top: 5.5rem;
}
.footer_bottom .logo {
  width: 30rem;
  margin: 0 auto;
}
@media screen and (max-width: 574px) {
  .footer_bottom .logo {
    width: 24.7rem;
  }
}
.footer_bottom .logo img {
  display: block;
}
.footer_nav {
  display: flex;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1199px) {
  .footer_nav {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr 1fr;
    display: grid;
    width: fit-content;
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 574px) {
  .footer_nav .sp-none {
    display: none;
  }
}
.footer_nav a {
  font-size: 1.4rem;
  position: relative;
}
.footer_nav a .before {
  transition: 0.3s;
}
.footer_nav a .after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 574px) {
  .footer_nav a .has-sp-text {
    display: none;
  }
}
.footer_nav a .sp-only {
  display: none;
}
@media screen and (max-width: 574px) {
  .footer_nav a .sp-only {
    display: inline;
  }
}
@media (hover: hover) {
  .footer_nav a:hover {
    text-decoration: underline;
  }
  .footer_nav a:hover .before {
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
  }
  .footer_nav a:hover .after {
    opacity: 1;
    pointer-events: all;
    text-decoration: underline;
  }
}
.footer .instagram {
  margin: 4rem auto 0;
  display: block;
  width: 5.8rem;
  transition: 0.3s;
}
.footer .instagram img {
  display: block;
}
@media (hover: hover) {
  .footer .instagram:hover {
    opacity: 0.8;
  }
}
.footer .corp_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 2rem auto 0;
  color: #fff;
  gap: 1rem;
}
.footer .corp_link p {
  font-size: 1.4rem;
}
@media (hover: hover) {
  .footer .corp_link:hover p {
    text-decoration: underline;
  }
  .footer .corp_link:hover .icon-external .arrow-unit {
    transform: translate(1px, -1px) scale(1.1);
  }
  .footer .corp_link:hover .icon-external .arrow-shaft {
    stroke-dashoffset: 0;
  }
  .footer .corp_link:hover .icon-external .arrow-tip {
    transform: translate(1px, -1px);
  }
}
.footer .icon-external {
  width: 18px;
  height: 18px;
  overflow: visible;
}
.footer .icon-external line, .footer .icon-external polyline, .footer .icon-external path {
  fill: none;
  stroke: #f1f823;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.footer .icon-external .arrow-unit {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 9.3px 10.7px;
}
.footer .copy {
  text-align: center;
  margin-top: 7rem;
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}

#recruit .fv_bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh + 96.5rem);
}
@media screen and (max-width: 991px) {
  #recruit .fv_bg {
    height: calc(100vh + 20rem);
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (max-width: 574px) {
  #recruit .fv_bg {
    height: calc(100% + 25rem);
  }
}
#recruit .fv_bg::after {
  content: "";
  width: 17%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1680px) {
  #recruit .fv_bg::after {
    width: 20%;
  }
}
@media screen and (min-width: 1921px) {
  #recruit .fv_bg::after {
    width: 30%;
  }
}
@media screen and (max-width: 991px) {
  #recruit .fv_bg::after {
    display: none;
  }
}
#recruit .fv_bg img {
  display: block;
  width: 83%;
  height: calc(100vh + 96.5rem);
}
@media screen and (min-width: 1680px) {
  #recruit .fv_bg img {
    width: 80%;
  }
}
@media screen and (min-width: 1921px) {
  #recruit .fv_bg img {
    width: 70%;
  }
}
@media screen and (max-width: 991px) {
  #recruit .fv_bg img {
    object-fit: 100% auto;
    object-position: right bottom;
    width: 100%;
    height: 50rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .fv_bg img.pc {
    display: none;
  }
}
#recruit .fv_bg img.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  #recruit .fv_bg img.sp {
    display: block;
  }
}
#recruit .mv {
  width: 100%;
  height: 100vh;
  position: relative;
}
#recruit .mv_video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -2;
}
#recruit .mv_video video {
  height: 100vh;
  object-fit: cover;
  width: 83%;
}
@media screen and (max-width: 991px) {
  #recruit .mv_video video {
    width: 100%;
  }
}
#recruit .mv_video::after {
  content: "";
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
@media screen and (max-width: 1199px) {
  #recruit .mv_video::after {
    width: 70%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 70%, #fff 100%);
  }
}
@media screen and (max-width: 991px) {
  #recruit .mv_video::after {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, #fff 100%);
  }
}
@media screen and (max-width: 767px) {
  #recruit .mv_video::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #fff 100%);
  }
}
#recruit .mv_text {
  position: absolute;
  right: 7.2vw;
  bottom: 12vw;
}
@media screen and (max-width: 991px) {
  #recruit .mv_text {
    bottom: 5rem;
  }
}
#recruit .mv_text h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #recruit .mv_text h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .mv_text h1 {
    font-size: 4rem;
  }
}
#recruit .mv_text .en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.7rem;
  font-weight: 2.7rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  #recruit .mv_text .en {
    line-height: 1.4;
  }
}
@media screen and (max-width: 574px) {
  #recruit .mv_text .en {
    font-size: 2.2rem;
  }
}
#recruit .recruit_lead {
  margin-top: 36.5rem;
}
@media screen and (max-width: 991px) {
  #recruit .recruit_lead {
    background: #fff;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .recruit_lead {
    margin-top: 25rem;
  }
}
#recruit .recruit_lead p {
  width: fit-content;
  margin-left: auto;
  font-weight: bold;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  #recruit .recruit_lead p {
    margin-left: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .recruit_lead p {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 0;
    margin: 0 auto;
    max-width: 33rem;
  }
}
#recruit .recruit_lead p span {
  display: inline-block;
  transition-delay: 0.2s;
}
#recruit .links {
  background: #fff;
  padding-top: 6.7rem;
}
@media screen and (max-width: 767px) {
  #recruit .links {
    overflow: hidden;
  }
}
#recruit .links .container.large {
  max-width: 1498px;
}
#recruit .links_bg {
  margin-top: 7rem;
}
@media screen and (max-width: 574px) {
  #recruit .links_bg {
    margin-top: 25rem;
  }
}
#recruit .links_item {
  display: block;
  position: relative;
  width: fit-content;
}
@media (hover: hover) {
  #recruit .links_item:hover .more span {
    transform: rotate(180deg);
  }
  #recruit .links_item:hover .links_image img {
    transform: scale(1.1);
  }
}
#recruit .links_item.history {
  margin-left: auto;
}
#recruit .links_item.about {
  margin-top: -30rem;
}
@media screen and (max-width: 1199px) {
  #recruit .links_item.about {
    margin-top: -20rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .links_item.about {
    margin-top: -5rem;
  }
}
@media screen and (max-width: 767px) {
  #recruit .links_item.about {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_item.about {
    margin-right: 2rem;
    margin-top: 26rem;
    margin-left: calc(-1 * (100vw - 100%) / 2 - (40rem - 100vw) - 2rem);
  }
}
#recruit .links_item.about .links_text {
  left: auto;
  right: -4rem;
}
@media screen and (max-width: 991px) {
  #recruit .links_item.about .links_text {
    right: -8rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_item.about .links_text {
    right: 0;
    width: 225px;
  }
}
#recruit .links_item.about .links_text::after {
  content: "";
  background: url("../images/recruit/about_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
}
#recruit .links_item.about .links_text-inner {
  margin-right: -6.5rem;
}
@media screen and (max-width: 1199px) {
  #recruit .links_item.about .links_text-inner {
    margin-right: -5.5rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_item.about .links_text-inner {
    margin-right: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_item.about .links_text p br {
    display: none;
  }
}
#recruit .links_item.about .links_image {
  margin-right: auto;
}
#recruit .links_image {
  border-radius: 50%;
  width: 65.4rem;
  height: 65.4rem;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  #recruit .links_image {
    width: 42vw;
    height: 42vw;
  }
}
@media screen and (max-width: 991px) {
  #recruit .links_image {
    width: 40rem;
    height: 40rem;
  }
}
#recruit .links_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
#recruit .links_text {
  position: absolute;
  left: -4rem;
  bottom: -1rem;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  #recruit .links_text {
    left: -3rem;
    bottom: -2rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .links_text {
    left: -7rem;
    bottom: -5rem;
  }
}
@media screen and (max-width: 767px) {
  #recruit .links_text {
    bottom: -8.5rem;
    left: -5rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_text {
    left: 0;
    bottom: 0;
    transform: translateY(100%);
  }
}
#recruit .links_text::after {
  content: "";
  width: 29rem;
  height: 29rem;
  z-index: -1;
  background: url("../images/recruit/history_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1199px) {
  #recruit .links_text::after {
    width: 25rem;
    height: 25rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_text::after {
    width: 29rem;
    height: 29rem;
    bottom: auto;
    top: 40%;
    transform: translateY(-50%);
  }
}
#recruit .links_text h2 {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  #recruit .links_text h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .links_text h2 {
    font-size: 2.8rem;
  }
}
#recruit .links_text h2 .span_wrap {
  position: relative;
  display: inline-block;
}
#recruit .links_text h2 .span_wrap .after {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
#recruit .links_text p {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
#recruit .links_text .more {
  margin-top: 2rem;
}
#recruit .business {
  background: #F7F7F7;
  padding: 10rem 0 15rem;
}
#recruit .business_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 3.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 991px) {
  #recruit .business_flex {
    gap: 6rem 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .business_flex {
    margin-top: 5rem;
    gap: 3.4rem;
  }
}
#recruit .business_item {
  width: calc(33.3333% - 2.26666rem);
}
@media screen and (max-width: 991px) {
  #recruit .business_item {
    width: calc(33.3333% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  #recruit .business_item {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 574px) {
  #recruit .business_item {
    width: 100%;
  }
}
#recruit .business_image {
  position: relative;
}
#recruit .business_image::after {
  content: "";
  width: 79.2%;
  height: 9rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/recruit/business_title.png") no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  #recruit .business_image::after {
    bottom: -1px;
  }
}
@media screen and (max-width: 574px) {
  #recruit .business_image::after {
    background-position: center top;
  }
}
@media screen and (max-width: 450px) {
  #recruit .business_image::after {
    background-position: center bottom;
  }
}
#recruit .business_text {
  margin-top: -5.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  #recruit .business_text {
    margin-top: -4rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .business_text {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .business_text {
    margin-top: -4rem;
  }
}
#recruit .business_text h3 {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 2.4rem;
  color: #019506;
}
@media screen and (max-width: 1199px) {
  #recruit .business_text h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .business_text h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .business_text h3 {
    font-size: 2.4rem;
  }
}
#recruit .business_text p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.66;
  max-width: 39rem;
  margin: 2rem auto 0;
  letter-spacing: 0;
}
#recruit .interview {
  background: #fff;
}
#recruit .interview .title {
  margin-top: -7rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview .title {
    margin-top: -3rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview .title {
    margin-top: 0;
  }
}
#recruit .interview .title_wrap {
  margin-left: 10rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview .title_wrap {
    margin-left: 5rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview .title_wrap {
    margin-left: 0;
  }
}
#recruit .interview_lead {
  margin-top: 2.5rem;
  font-weight: bold;
  font-size: 1.7rem;
}
@media screen and (max-width: 574px) {
  #recruit .interview_container {
    width: 100vw;
    margin-left: -2rem;
    margin-top: 1.5rem;
  }
}
#recruit .interview_flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.5rem;
  gap: 6.5rem 0;
}
@media screen and (max-width: 991px) {
  #recruit .interview_flex {
    justify-content: space-between;
    gap: 4rem 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_flex {
    flex-wrap: nowrap;
    justify-content: inherit;
    margin-top: 0;
  }
}
#recruit .interview .swiper {
  overflow: visible;
}
@media screen and (max-width: 574px) {
  #recruit .interview .swiper {
    overflow: hidden;
    padding: 0 2rem;
  }
}
#recruit .interview .swiper .swiper-button-next:after, #recruit .interview .swiper .swiper-button-prev:after {
  display: none;
}
#recruit .interview .swiper .swiper-button-prev, #recruit .interview .swiper .swiper-button-next {
  width: 6.6rem;
  height: 6.6rem;
  transform: translateY(-50%);
  top: 40%;
  display: none;
}
@media screen and (max-width: 574px) {
  #recruit .interview .swiper .swiper-button-prev, #recruit .interview .swiper .swiper-button-next {
    display: block;
  }
}
#recruit .interview .swiper .swiper-button-prev {
  left: -1rem;
}
#recruit .interview .swiper .swiper-button-next {
  right: -1rem;
}
#recruit .interview_item {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
}
@media (hover: hover) {
  #recruit .interview_item:hover .interview_more span {
    transform: rotate(180deg);
  }
  #recruit .interview_item:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  #recruit .interview_item {
    zoom: 0.86;
  }
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item {
    zoom: 0.8;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview_item {
    zoom: 0.9;
  }
}
@media screen and (max-width: 767px) {
  #recruit .interview_item {
    zoom: 0.7;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item {
    zoom: 1;
    justify-content: center;
  }
}
#recruit .interview_item img {
  transition: 0.5s;
  position: relative;
  z-index: 0;
}
#recruit .interview_item .item01_image {
  width: 19rem;
}
#recruit .interview_item .item02_image {
  width: 18.5rem;
}
#recruit .interview_item .item03_image {
  width: 21.7rem;
}
#recruit .interview_item .item04_image {
  width: 17.8rem;
}
#recruit .interview_item .item05_image {
  width: 25rem;
}
#recruit .interview_item .item06_image {
  width: 19.8rem;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item01 {
    align-items: flex-end;
  }
}
#recruit .interview_item.item01 .interview_text {
  margin-left: -9rem;
  margin-top: auto;
  margin-bottom: 3rem;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item01 .interview_text {
    margin-left: -15rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item01 .interview_text .name {
    margin-right: 4rem;
  }
}
#recruit .interview_item.item02 {
  margin-left: 3.9rem;
  margin-top: -5rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item02 {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item02 {
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
}
#recruit .interview_item.item02 .interview_text {
  margin-left: -8rem;
  margin-top: auto;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item02 .interview_text {
    margin-left: -12rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item02 .interview_text {
    margin-left: 0;
    margin-right: -11rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
  }
}
#recruit .interview_item.item02 .interview_text h3 span:last-of-type {
  margin-left: 5em;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item02 .interview_text h3 span:last-of-type {
    margin-left: 3em;
  }
}
#recruit .interview_item.item02 .interview_text .name {
  margin-left: 4rem;
}
#recruit .interview_item.item03 {
  margin-left: 3rem;
  margin-top: -25rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item03 {
    margin-left: -2rem;
    margin-top: -20rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item03 {
    margin-top: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item03 {
    position: relative;
    justify-content: flex-start;
  }
}
#recruit .interview_item.item03 .interview_text {
  margin-left: -10rem;
  margin-top: auto;
  margin-bottom: 18rem;
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item03 .interview_text {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item03 .interview_text {
    position: absolute;
    margin: 0;
    bottom: 0;
    right: 0;
  }
}
#recruit .interview_item.item03 .interview_text h3 span:last-of-type {
  margin-left: 1em;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item03 .interview_text .name {
    margin-right: 3rem;
  }
}
#recruit .interview_item.item04 {
  margin-left: 6.5rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item04 {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item04 {
    margin-left: 0;
    margin-top: -8rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item04 {
    position: relative;
    justify-content: flex-end;
  }
}
#recruit .interview_item.item04 .interview_text {
  margin-left: -10rem;
  margin-top: auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item04 .interview_text {
    margin-left: -13rem;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item04 .interview_text {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item04 .interview_text {
    position: absolute;
    left: 0;
    bottom: -2rem;
    margin: 0;
  }
}
#recruit .interview_item.item04 .interview_text h3 span:last-of-type {
  margin-left: 4em;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item04 .interview_text h3 span:last-of-type {
    margin-left: 3em;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item04 .interview_text .name {
    margin-left: 4rem;
  }
}
#recruit .interview_item.item05 {
  margin-top: -7rem;
  margin-left: 2.5rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item05 {
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item05 {
    margin-top: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item05 {
    position: relative;
    justify-content: flex-start;
  }
}
#recruit .interview_item.item05 .interview_text {
  margin-left: -14rem;
  margin-top: auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item05 .interview_text {
    position: absolute;
    bottom: 1rem;
    right: 0;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item05 .interview_text .name {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item05 .item05_image {
    margin-left: -2rem;
  }
}
#recruit .interview_item.item06 {
  margin-left: auto;
  margin-top: -25rem;
}
@media screen and (max-width: 991px) {
  #recruit .interview_item.item06 {
    margin-top: -15rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item06 {
    position: relative;
    justify-content: flex-end;
  }
}
#recruit .interview_item.item06 .interview_text {
  margin-left: -10rem;
  margin-top: auto;
  margin-bottom: 14rem;
}
@media screen and (max-width: 1199px) {
  #recruit .interview_item.item06 .interview_text {
    margin-bottom: 10rem;
    margin-left: -14rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item06 .interview_text {
    position: absolute;
    left: 0;
    bottom: 1rem;
    margin: 0;
  }
}
#recruit .interview_item.item06 .interview_text h3 span:last-of-type {
  margin-left: 4em;
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.item06 .interview_text .name {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .interview_item.swiper-slide {
    margin: 0;
  }
}
#recruit .interview_text {
  width: fit-content;
  position: relative;
  z-index: 1;
}
#recruit .interview_text h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Zen Old Mincho", serif;
}
#recruit .interview_text h3 span {
  display: block;
  padding: 1rem 2rem;
  background: #3FBA14;
  border-radius: 6rem;
  width: fit-content;
}
#recruit .interview_text h3 span:last-of-type {
  margin-left: 2em;
}
@media screen and (max-width: 574px) {
  #recruit .interview_text h3 span {
    white-space: nowrap;
  }
}
#recruit .interview_text .name {
  margin: 3.4rem auto 0;
  width: fit-content;
}
@media screen and (max-width: 574px) {
  #recruit .interview_text .name {
    margin-top: 1.6rem;
  }
}
#recruit .interview_text .name_ini {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
#recruit .interview_text .name .join {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
#recruit .interview_more {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 1.6rem;
}
#recruit .interview_more span {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  margin-bottom: 0.3rem;
  transition: 0.4s;
}
#recruit .interview_more span::before, #recruit .interview_more span::after {
  content: "";
  display: block;
  background: #3FBA14;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#recruit .interview_more span::before {
  content: "";
  width: 100%;
  height: 2px;
}
#recruit .interview_more span::after {
  width: 2px;
  height: 100%;
}
#recruit .interview .more {
  margin: 5.4rem auto 0;
}
@media screen and (max-width: 574px) {
  #recruit .interview .more {
    margin-top: 2rem;
  }
}
#recruit .cross {
  padding: 4.2rem 0 2.4rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #recruit .cross {
    padding-top: 14.2rem;
  }
}
#recruit .cross_container {
  max-width: 1526px;
}
@media screen and (max-width: 574px) {
  #recruit .cross_container {
    padding: 0 1rem;
  }
}
#recruit .cross_box {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recruit .cross_box {
    flex-direction: column;
  }
}
#recruit .cross_box .title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  #recruit .cross_box .title {
    top: 45%;
  }
}
@media screen and (max-width: 767px) {
  #recruit .cross_box .title {
    position: static;
    width: 100%;
    margin-bottom: 5rem;
    transform: translate(0);
  }
}
@media screen and (min-width: 768px) {
  #recruit .cross_box .title h2, #recruit .cross_box .title .en {
    color: #fff;
  }
}
#recruit .cross_item {
  flex: 1;
  border-radius: 6rem 0 0 6rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #recruit .cross_item {
    border-radius: 3.5rem 3.5rem 0 0;
  }
}
#recruit .cross_item:last-of-type {
  border-radius: 0 6rem 6rem 0;
}
@media screen and (max-width: 767px) {
  #recruit .cross_item:last-of-type {
    border-radius: 0 0 3.5rem 3.5rem;
  }
}
#recruit .cross_item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}
#recruit .cross_item::before {
  content: "";
  background: linear-gradient(0deg, #88DD00 0%, #007B04 100%);
  width: 0;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.4s;
}
@media (hover: hover) {
  #recruit .cross_item:hover::after {
    opacity: 0;
  }
  #recruit .cross_item:hover::before {
    opacity: 0.8;
    width: 100%;
  }
  #recruit .cross_item:hover img {
    opacity: 1;
    transform: scale(1.2);
  }
  #recruit .cross_item:hover .cross_text h3::after {
    transform: translateX(1.5rem);
  }
}
#recruit .cross_item img {
  opacity: 0.7;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  #recruit .cross_item img {
    height: 55rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  #recruit .cross_item img {
    height: 46rem;
  }
}
#recruit .cross_text {
  position: absolute;
  left: 10.4rem;
  bottom: 6rem;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  #recruit .cross_text {
    left: 0;
    width: 100%;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 574px) {
  #recruit .cross_text {
    bottom: 3.5rem;
    padding: 0 2.5rem;
  }
}
#recruit .cross_text h3 {
  font-size: 4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 2.7rem;
}
@media screen and (max-width: 574px) {
  #recruit .cross_text h3 {
    width: calc(100% - 1.2rem);
    justify-content: space-between;
    font-size: 3.5rem;
  }
}
#recruit .cross_text h3 .span_wrap {
  position: relative;
  display: inline-block;
}
#recruit .cross_text h3 .span_wrap .after {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
#recruit .cross_text h3::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 2.2rem;
  background: url("../images/recruit/arrow.png") no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #recruit .cross_text h3::after {
    width: 1rem;
  }
}
#recruit .cross_text p {
  margin-top: 1.4rem;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 574px) {
  #recruit .cross_text p {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1199px) {
  #recruit .cross_text p br {
    display: none;
  }
}