/* Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.5em;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

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

/* Lists */
ul, ol {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Forms */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Base Styles */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  width: 100vw;
}

body {
  color: #262626;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.625;
  font-size: 1.4rem;
  overflow-x: hidden;
}

* {
  letter-spacing: 0.17em;
}

.mincho {
  font-family: "Noto Serif JP", serif !important;
}

.inter {
  font-family: "Inter", sans-serif;
}

.fadeIn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.recruit_default_btn {
  display: inline-flex;
  align-items: center;
  width: 320px;
  height: 60px;
  padding: 0 28px;
  border: 1px solid #262626;
  text-decoration: none;
  background-color: #fff;
  background-image: url(../images/link-arrow.svg);
  background-size: auto 24px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.recruit_default_btn:hover {
  text-decoration: none;
  background-color: #262626;
  background-image: url(../images/link-arrow-white.svg);
  color: #fff;
  background-size: auto 40px;
  background-position: right 0 bottom;
}
.recruit_default_btn.dark {
  background-color: #262626;
  background-image: url(../images/link-arrow-white.svg);
  color: #fff;
}
.recruit_default_btn.dark:hover {
  background-color: #fff;
  background-image: url(../images/link-arrow.svg);
  color: #262626;
}

.recruit_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .recruit_header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    padding: 0 4vw;
    transition: all 0.5s ease;
  }
}
.recruit_header .recruit_header_title {
  margin: 0;
  position: absolute;
  left: 4vw;
  top: 50%;
  transform: translateY(-50%);
}
.recruit_header .recruit_header_title a img {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_title a img {
    width: 186px;
    height: auto;
  }
}
.recruit_header .sp-menu-button {
  display: flex;
  width: 60px;
  height: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .recruit_header .sp-menu-button {
    display: none;
  }
}
.recruit_header .sp-menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #262626;
  transition: all 0.5s ease;
}
.recruit_header .sp-menu-button span:last-child {
  margin: 0;
}
.recruit_header .sp-menu-button.open span:first-child {
  transform: rotate(45deg);
}
.recruit_header .sp-menu-button.open span:nth-child(2) {
  opacity: 0;
}
.recruit_header .sp-menu-button.open span:last-child {
  margin-top: -14px;
  transform: rotate(-45deg);
}
.recruit_header .open ~ .recruit_header_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.5s ease;
}
.recruit_header .recruit_header_nav {
  background-color: #262626;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav {
    display: block;
    height: 100px;
    background: inherit;
    width: 100%;
    flex-direction: row;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.recruit_header .recruit_header_nav .recruit_header_entry_sp {
  text-decoration: none;
  padding: 24px;
  margin: 0 auto 24px;
  display: block;
  font-size: 2rem;
  background-color: #F5CC00;
  background-image: url(../images/header-entry-bg.svg);
  background-size: auto 34px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  width: 280px;
  border-radius: 100px;
  padding-left: 20px;
  font-weight: 700;
  transition: all 0.5s ease;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.recruit_header .recruit_header_nav .recruit_header_entry_sp:hover {
  background-position: right 16px center;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav .recruit_header_entry_sp {
    display: none;
  }
}
.recruit_header .recruit_header_nav > ul {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
    margin: 0;
    gap: 54px;
  }
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub {
    position: relative;
  }
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub span {
  display: none;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub span {
    display: inline-flex;
    align-items: center;
    height: 100px;
    padding: 0 20px;
    background-image: url(../images/header-arrow-under.svg);
    background-repeat: no-repeat;
    background-position: left top 46px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub span:hover {
    background-position: left top 50px;
  }
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub span:hover ~ .recruit_header_sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub .recruit_header_sub_menu {
  opacity: 1;
  visibility: visible;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub .recruit_header_sub_menu {
    color: #262626;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 248px;
    border-radius: 0 0 10px 10px;
    transition: all 0.5s ease;
    transform: translateY(10px);
  }
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub .recruit_header_sub_menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub h3 {
  border-bottom: 1px solid #fff;
  margin: 0 0 24px;
  padding-bottom: 8px;
  font-size: 1.8rem;
  background-image: url(../images/header-menu-bg-right.svg);
  background-position: left top 8px;
  background-repeat: no-repeat;
  padding-left: 20px;
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub h3 a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub h3 {
    background: none;
    margin: 0 0 12px;
    padding-bottom: 8px;
    padding-left: 0;
    font-size: 1.6rem;
    border-bottom: 1px solid #262626;
  }
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub ul li {
  margin: 0;
}
.recruit_header .recruit_header_nav > ul li.recruit_header_sub ul li a {
  text-decoration: none;
  background-image: url(../images/header-menu-bg-right.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub ul li a {
    background: none;
    padding: 12px;
    display: block;
    font-size: 1.6rem;
    transition: all 0.5s ease;
    border-radius: 4px;
  }
  .recruit_header .recruit_header_nav > ul li.recruit_header_sub ul li a:hover {
    background-color: #D9D9D9;
  }
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav > ul .recruit_header_entry a {
    text-decoration: none;
    padding: 12px;
    display: block;
    font-size: 1.6rem;
    background-color: #F5CC00;
    background-image: url(../images/header-entry-bg.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    width: 152px;
    border-radius: 100px;
    padding-left: 20px;
    font-weight: 700;
    transition: all 0.5s ease;
  }
  .recruit_header .recruit_header_nav > ul .recruit_header_entry a:hover {
    background-position: right 16px center;
  }
}
.recruit_header .recruit_header_nav .home-entry-btn {
  text-decoration: none;
  padding: 16px;
  margin: 0 auto 24px;
  display: block;
  font-size: 1.6rem;
  background-color: #F5CC00;
  background-image: url(../images/header-entry-bg.svg);
  background-size: auto 21px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  width: 280px;
  border-radius: 100px;
  padding-left: 20px;
  font-weight: 700;
  transition: all 0.5s ease;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit_header .recruit_header_nav .home-entry-btn {
    display: none;
  }
}
.recruit_header .recruit_header_nav .home-entry-btn:hover {
  background-position: right 16px center;
}
.recruit_header.transparent, .recruit_header.open {
  background-color: rgba(255, 255, 255, 0);
}
.recruit_header.transparent .recruit_header_title a img, .recruit_header.open .recruit_header_title a img {
  filter: brightness(10000);
}
.recruit_header.transparent .sp-menu-button span, .recruit_header.open .sp-menu-button span {
  background-color: #fff;
}
.recruit_header.transparent .recruit_header_nav li.recruit_header_sub span, .recruit_header.open .recruit_header_nav li.recruit_header_sub span {
  color: #fff;
}

footer {
  background-color: #262626;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
footer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  footer p {
    font-size: 1.4rem;
  }
}

.home_recruit_main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100vh;
  overflow: hidden;
}
.home_recruit_main::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/home/home-main.jpg);
  background-size: cover;
  background-position: right -400px center;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .home_recruit_main::before {
    background-position: center;
  }
}
.home_recruit_main.blurIn::before {
  filter: blur(0px) !important;
}
@media screen and (min-width: 768px) {
  .home_recruit_main {
    padding: 0 6vw;
  }
}
.home_recruit_main h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin: 0;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s ease;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .home_recruit_main h2 {
    font-size: 8rem;
    margin-left: 0;
  }
}
.home_recruit_main .recruit_main_arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .home_recruit_main .recruit_main_arrow {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.home_recruit_main .recruit_main_arrow span {
  color: #fff;
  font-weight: 700;
}
.home_recruit_main .recruit_main_arrow img {
  animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@media screen and (min-width: 768px) {
  @keyframes arrowMove {
    0%, 100% {
      transform: translateX(0) translateY(-10px);
    }
    50% {
      transform: translateX(0) translateY(10px);
    }
  }
}
.home_recruit_about {
  padding: 80px 24px;
}
@media screen and (min-width: 768px) {
  .home_recruit_about {
    padding: 178px 0;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.home_recruit_about h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home_recruit_about h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.home_recruit_about h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_about h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .home_recruit_about h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.home_recruit_about h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_about h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .home_recruit_about h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.home_recruit_about h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: -1;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .home_recruit_about h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: -1;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.home_recruit_about h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_about h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_about h2.fade-in:before {
  transform: translateX(0);
}
.home_recruit_about .home_recruit_about_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home_recruit_about .home_recruit_about_box {
    margin-top: 0;
    display: flex;
    align-items: end;
    gap: 165px;
    text-align: left;
  }
}
.home_recruit_about .home_recruit_about_box p {
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home_recruit_about .home_recruit_about_box p {
    line-height: 3;
  }
}
.home_recruit_about .home_recruit_about_box .recruit_default_btn {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .home_recruit_about .home_recruit_about_box .recruit_default_btn {
    transform: translate(0, -12px);
    margin-top: 0;
  }
}

.home_recruit_president_greeding {
  padding: 360px 24px 24px;
  background-image: url(../images/home/philosophy_bg01.jpg);
  background-size: cover;
  background-position: left -180px center;
  background-repeat: no-repeat;
  transition: all 0.7s ease;
  filter: blur(10px);
}
@media screen and (min-width: 768px) {
  .home_recruit_president_greeding {
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.home_recruit_president_greeding.fade-in {
  filter: blur(0px);
}
.home_recruit_president_greeding > div {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 24px;
  opacity: 0;
  transition: all 0.7s ease 0.7s;
}
@media screen and (min-width: 768px) {
  .home_recruit_president_greeding > div {
    padding: 48px;
    max-width: 655px;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  .home_recruit_president_greeding > div {
    transform: translateX(40%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .home_recruit_president_greeding > div {
    transform: translateX(30%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1060px) {
  .home_recruit_president_greeding > div {
    transform: translateX(20%);
  }
}
.home_recruit_president_greeding > div.fade-in {
  opacity: 1;
}
.home_recruit_president_greeding > div h2 {
  margin: 0 0 1em;
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .home_recruit_president_greeding > div h2 {
    font-size: 6.4rem;
  }
}
.home_recruit_president_greeding > div h3 {
  margin: 0 0 1em;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .home_recruit_president_greeding > div h3 {
    font-size: 3.2rem;
  }
}
.home_recruit_president_greeding > div p {
  margin: 0 0 2em;
}
@media screen and (min-width: 768px) {
  .home_recruit_president_greeding > div p {
    font-size: 1.6rem;
  }
}
.home_recruit_president_greeding > div .button-wrap {
  text-align: center;
  margin: 0 auto;
}

.home_recruit_president_movie-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.home_recruit_president_movie-wrap.open {
  visibility: visible;
  opacity: 1;
}
.home_recruit_president_movie-wrap > div {
  width: 100%;
  max-width: 1280px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home_recruit_president_movie-wrap > div {
    width: 96%;
  }
}
.home_recruit_president_movie-wrap > div video {
  width: 100%;
  height: auto;
}
.home_recruit_president_movie-wrap .close-button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home_recruit_president_movie-wrap .close-button img {
  width: 100%;
  height: 100%;
}
.home_recruit_president_movie-wrap .play-button {
  border: 1px solid #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  display: none;
}
.home_recruit_president_movie-wrap .play-button img {
  width: 20px;
  height: auto;
}
.home_recruit_president_movie-wrap .stop-button {
  border: 1px solid #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
}
.home_recruit_president_movie-wrap .stop-button img {
  width: 14px;
  height: auto;
}

.home_recruit_business {
  padding: 80px 24px;
}
@media screen and (min-width: 768px) {
  .home_recruit_business {
    padding: 178px 0;
  }
}
.home_recruit_business h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home_recruit_business h2 {
    margin: 0 0 32px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_business h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_business h2 > span:first-child > span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .home_recruit_business h2 > span:first-child > span {
    font-size: 2.4rem;
  }
}
.home_recruit_business h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_business h2 > span:last-child > span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .home_recruit_business h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.home_recruit_business h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: -1;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .home_recruit_business h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: -1;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.home_recruit_business h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_business h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_business h2.fade-in:before {
  transform: translateX(0);
}
.home_recruit_business > p {
  margin-top: 40px;
  padding-bottom: 80px;
  opacity: 0;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .home_recruit_business > p {
    margin: 0 0 64px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_business .home_recruit_business_box {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
.home_recruit_business .home_recruit_business_box h3 {
  margin-top: 0;
}
.home_recruit_business .home_recruit_business_box:nth-child(even) {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box:nth-child(even) {
    flex-direction: row-reverse;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box:nth-child(even) h3 {
    width: 467px;
  }
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.7s ease;
    transform: translateY(10px);
  }
}
.home_recruit_business .home_recruit_business_box > div h3 {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box > div h3 {
    font-size: 3.2rem;
  }
}
.home_recruit_business .home_recruit_business_box > div p {
  line-height: 2.8;
  margin: 0 0 2em;
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box > div p {
    max-width: 467px;
  }
}
.home_recruit_business .home_recruit_business_box figure {
  margin: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all 0.7s ease;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .home_recruit_business .home_recruit_business_box figure {
    width: 50%;
  }
}
.home_recruit_business .home_recruit_business_box figure img {
  width: 100%;
  height: auto;
  filter: grayscale(80%);
  transition: all 0.5s ease;
}
.home_recruit_business .home_recruit_business_box:hover figure img {
  filter: grayscale(0%);
}

.home_recruit_interview {
  background-color: #262626;
  padding: 80px 24px;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview {
    padding: 178px 0;
  }
}
.home_recruit_interview h2 {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview h2 {
    margin: 0 0 32px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_interview h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_interview h2 > span:first-child > span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .home_recruit_interview h2 > span:first-child > span {
    font-size: 2.4rem;
  }
}
.home_recruit_interview h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_interview h2 > span:last-child > span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .home_recruit_interview h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.home_recruit_interview h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow-white.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -120px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .home_recruit_interview h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow-white.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: 10;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.home_recruit_interview h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_interview h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_interview h2.fade-in:before {
  transform: translateX(0);
}
.home_recruit_interview > p {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview > p {
    margin: 0 0 64px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_interview .home_recruit_interview_box {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview .home_recruit_interview_box {
    padding: 0 4vw;
  }
}
.home_recruit_interview .home_recruit_interview_box ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview .home_recruit_interview_box ul {
    display: flex;
    flex-direction: row;
    gap: 48px;
  }
}
.home_recruit_interview .home_recruit_interview_box ul li {
  opacity: 0;
  transition: all 0.7s ease;
  transform: translateY(10px);
}
.home_recruit_interview .home_recruit_interview_box ul li a img {
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.home_recruit_interview .home_recruit_interview_box ul li a img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(1) {
  transition-delay: 1s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(2) {
  transition-delay: 1.2s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(3) {
  transition-delay: 1.4s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(4) {
  transition-delay: 1.6s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(5) {
  transition-delay: 1.8s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(6) {
  transition-delay: 2s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(7) {
  transition-delay: 2.2s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(8) {
  transition-delay: 2.4s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(9) {
  transition-delay: 2.6s;
}
.home_recruit_interview .home_recruit_interview_box ul li:nth-child(10) {
  transition-delay: 2.8s;
}
.home_recruit_interview .home_recruit_interview_button_wrap {
  text-align: center;
  margin: 60px auto 0;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_interview .home_recruit_interview_button_wrap {
    margin: 120px auto 0;
  }
}
.home_recruit_interview .home_recruit_interview_button_wrap .recruit_default_btn:hover {
  border: 1px solid #fff;
}

.home_recruit_gallery {
  padding: 80px 24px;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery {
    padding: 178px 0;
  }
}
.home_recruit_gallery h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery h2 {
    margin: 0 0 32px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_gallery h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_gallery h2 > span:first-child > span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery h2 > span:first-child > span {
    font-size: 2.4rem;
  }
}
.home_recruit_gallery h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.home_recruit_gallery h2 > span:last-child > span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.home_recruit_gallery h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: -1;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: -1;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.home_recruit_gallery h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_gallery h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.home_recruit_gallery h2.fade-in:before {
  transform: translateX(0);
}
.home_recruit_gallery > p {
  margin-top: 40px;
  margin-bottom: 40px;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery > p {
    margin: 0 0 64px 4vw;
    padding-bottom: 20px;
  }
}
.home_recruit_gallery .gallery_scroll_wrapper {
  width: 100vw;
  margin-left: -24px;
  overflow: hidden;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1.2s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery .gallery_scroll_wrapper {
    margin-top: 60px;
  }
}
.home_recruit_gallery .gallery_scroll_wrapper ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery .gallery_scroll_wrapper ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
    animation: galleryScroll 40s linear infinite;
    width: max-content;
  }
  .home_recruit_gallery .gallery_scroll_wrapper ul:hover {
    animation-play-state: paused;
  }
}
.home_recruit_gallery .gallery_scroll_wrapper ul li {
  flex-shrink: 0;
}
.home_recruit_gallery .gallery_scroll_wrapper ul li img {
  height: 200px;
  width: auto;
  object-fit: cover;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery .gallery_scroll_wrapper ul li img {
    height: 320px;
    width: auto;
  }
}
.home_recruit_gallery .gallery_scroll_wrapper ul li img:hover {
  transform: scale(1.05);
}
.home_recruit_gallery .home_recruit_gallery_button_wrap {
  text-align: center;
  margin: 60px auto 0;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1.2s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_gallery .home_recruit_gallery_button_wrap {
    margin: 120px auto 0;
  }
}

@keyframes galleryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home_recruit_recruitment {
  padding: 80px 24px;
  width: 104vw;
  margin-left: -2vw;
  background-image: url(../images/home/home-recruut-entry-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1.5s ease;
  filter: blur(10px);
}
@media screen and (min-width: 768px) {
  .home_recruit_recruitment {
    padding: 178px 0;
  }
}
.home_recruit_recruitment.blurIn {
  filter: blur(0px) !important;
}
.home_recruit_recruitment > div {
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transition: all 0.7s ease;
}
@media screen and (min-width: 768px) {
  .home_recruit_recruitment > div {
    max-width: 990px;
    margin: 0 auto;
    padding: 80px 40px;
  }
}
.home_recruit_recruitment > div.fade-in {
  opacity: 1;
}
.home_recruit_recruitment > div h2 {
  color: #fff;
  margin: 0 0 2em;
}
@media screen and (min-width: 768px) {
  .home_recruit_recruitment > div h2 {
    font-size: 4.2rem;
  }
}
.home_recruit_recruitment > div p {
  color: #fff;
  line-height: 2;
}
.home_recruit_recruitment > div .home_recruit_recruitment_button_wrap {
  text-align: center;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .home_recruit_recruitment > div .home_recruit_recruitment_button_wrap {
    margin: 64px auto 0;
  }
}
.home_recruit_recruitment > div .home_recruit_recruitment_button_wrap .home-entry-btn {
  text-decoration: none;
  padding: 16px;
  margin: 0 auto 24px;
  display: block;
  font-size: 1.6rem;
  background-color: #F5CC00;
  background-image: url(../images/header-entry-bg.svg);
  background-size: auto 21px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  width: 280px;
  border-radius: 100px;
  padding-left: 20px;
  font-weight: 700;
  transition: all 0.5s ease;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home_recruit_recruitment > div .home_recruit_recruitment_button_wrap .home-entry-btn {
    width: 320px;
    font-size: 2rem;
    padding: 20px;
    background-size: auto 28px;
  }
}
.home_recruit_recruitment > div .home_recruit_recruitment_button_wrap .home-entry-btn:hover {
  background-position: right 16px center;
}

.recruit-contacts-wrap {
  position: fixed;
  z-index: 10001;
  bottom: -50vh;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .recruit-contacts-wrap {
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    bottom: 0;
  }
}
.recruit-contacts-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recruit-contacts-wrap ul li a {
  text-decoration: none;
  padding: 16px;
  margin: 0 auto;
  display: block;
  font-size: 1.4rem;
  background-color: #F5CC00;
  background-image: url(../images/header-entry-bg.svg);
  background-size: auto 21px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  width: 320px;
  border-radius: 100px;
  padding-left: 20px;
  font-weight: 700;
  transition: all 0.5s ease;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-contacts-wrap ul li a {
    width: 400px;
    font-size: 1.6rem;
    padding: 20px;
    background-size: auto 28px;
  }
}
.recruit-contacts-wrap ul li a:hover {
  background-position: right 16px center;
}
.recruit-contacts-wrap ul li .close-button {
  text-decoration: none;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 10px;
  width: 160px;
  height: 40px;
  font-weight: 700;
  transition: all 0.5s ease;
  text-align: center;
  position: relative;
}
.recruit-contacts-wrap ul li .close-button img {
  width: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.recruit-contacts-wrap.open {
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .recruit-contacts-wrap.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.company_recruit_main {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: center;
  height: 480px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_main {
    height: 680px;
  }
}
.company_recruit_main::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/company/company-img01.jpg);
  background-size: cover;
  background-position: right -400px center;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_main::before {
    background-position: center;
  }
}
.company_recruit_main.blurIn::before {
  filter: blur(0px) !important;
}
@media screen and (min-width: 768px) {
  .company_recruit_main {
    padding: 0 10vw;
  }
}
.company_recruit_main h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #fff;
  margin: 0;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s ease;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .company_recruit_main h2 {
    font-size: 8rem;
    margin-left: 0;
  }
}
.company_recruit_main h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #fff;
  margin-left: 20px;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_main h3 {
    font-size: 1.6rem;
  }
}
.company_recruit_main .recruit_main_arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .company_recruit_main .recruit_main_arrow {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.company_recruit_main .recruit_main_arrow span {
  color: #fff;
  font-weight: 700;
}
.company_recruit_main .recruit_main_arrow img {
  animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@media screen and (min-width: 768px) {
  @keyframes arrowMove {
    0%, 100% {
      transform: translateX(0) translateY(-10px);
    }
    50% {
      transform: translateX(0) translateY(10px);
    }
  }
}
.company_recruit_purpose {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose {
    padding: 178px 10vw;
    margin: 0 auto;
  }
}
.company_recruit_purpose::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/company/company-img02.jpg);
  background-size: cover;
  background-position: right -400px center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose::before {
    background-position: center;
  }
}
.company_recruit_purpose.blurIn::before {
  filter: blur(0px) !important;
}
.company_recruit_purpose h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.company_recruit_purpose h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.company_recruit_purpose h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.company_recruit_purpose h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.company_recruit_purpose h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.company_recruit_purpose h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: 10;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.company_recruit_purpose h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_purpose h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_purpose h2.fade-in:before {
  transform: translateX(0);
}
.company_recruit_purpose .company_recruit_purpose_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose .company_recruit_purpose_box {
    margin-top: 0;
    text-align: left;
  }
}
.company_recruit_purpose .company_recruit_purpose_box h3 {
  font-size: 2.1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose .company_recruit_purpose_box h3 {
    font-size: 4rem;
  }
}
.company_recruit_purpose .company_recruit_purpose_box p {
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company_recruit_purpose .company_recruit_purpose_box p {
    line-height: 3;
    font-size: 1.8rem;
  }
}

.company_recruit_vision {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision {
    padding: 178px 0 178px 50vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1369px) {
  .company_recruit_vision {
    padding: 178px 0 178px calc(100% - 690px);
  }
}
.company_recruit_vision::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/company/company-img03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision::before {
    background-position: center;
  }
}
.company_recruit_vision.blurIn::before {
  filter: blur(0px) !important;
}
.company_recruit_vision h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.company_recruit_vision h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.company_recruit_vision h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .company_recruit_vision h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.company_recruit_vision h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.company_recruit_vision h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .company_recruit_vision h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.company_recruit_vision h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow-white.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .company_recruit_vision h2:before {
    height: 78px;
    bottom: 0;
    right: -400px;
  }
}
.company_recruit_vision h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_vision h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_vision h2.fade-in:before {
  transform: translateX(0);
}
.company_recruit_vision .company_recruit_vision_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision .company_recruit_vision_box {
    margin-top: 0;
    text-align: left;
  }
}
.company_recruit_vision .company_recruit_vision_box h3 {
  font-size: 2.1rem;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision .company_recruit_vision_box h3 {
    font-size: 4rem;
  }
}
.company_recruit_vision .company_recruit_vision_box p {
  margin: 0;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_vision .company_recruit_vision_box p {
    line-height: 3;
    font-size: 1.8rem;
  }
}

.company_recruit_value {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_value {
    padding: 178px 10vw;
    margin: 0 auto;
  }
}
.company_recruit_value::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/company/company-img04.jpg);
  background-size: cover;
  background-position: right -400px center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_value::before {
    background-position: center;
  }
}
.company_recruit_value.blurIn::before {
  filter: blur(0px) !important;
}
.company_recruit_value h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company_recruit_value h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.company_recruit_value h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.company_recruit_value h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .company_recruit_value h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.company_recruit_value h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.company_recruit_value h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .company_recruit_value h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.company_recruit_value h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .company_recruit_value h2:before {
    height: 78px;
    bottom: 0;
    right: -480px;
  }
}
.company_recruit_value h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_value h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_value h2.fade-in:before {
  transform: translateX(0);
}
.company_recruit_value .company_recruit_value_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company_recruit_value .company_recruit_value_box {
    margin-top: 0;
    text-align: left;
  }
}
.company_recruit_value .company_recruit_value_box h3 {
  font-size: 2.1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company_recruit_value .company_recruit_value_box h3 {
    font-size: 4rem;
  }
  .company_recruit_value .company_recruit_value_box h3 br {
    display: none;
  }
}
.company_recruit_value .company_recruit_value_box h4 {
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company_recruit_value .company_recruit_value_box h4 {
    font-size: 2.8rem;
  }
  .company_recruit_value .company_recruit_value_box h4 br {
    display: none;
  }
}
.company_recruit_value .company_recruit_value_box p {
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company_recruit_value .company_recruit_value_box p {
    line-height: 3;
    font-size: 1.8rem;
  }
}

.company_recruit_spilits {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits {
    padding: 178px 0 178px 50vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1369px) {
  .company_recruit_spilits {
    padding: 178px 0 178px calc(100% - 690px);
  }
}
.company_recruit_spilits::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-image: url(../images/company/company-img05.jpg);
  background-size: cover;
  background-position: right -400px center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: -1;
  transition: all 1s ease;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits::before {
    background-position: center;
  }
}
.company_recruit_spilits.blurIn::before {
  filter: blur(0px) !important;
}
.company_recruit_spilits h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.company_recruit_spilits h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.company_recruit_spilits h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.company_recruit_spilits h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.company_recruit_spilits h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.company_recruit_spilits h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow-white.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits h2:before {
    height: 78px;
    bottom: 0;
    right: -400px;
  }
}
.company_recruit_spilits h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_spilits h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_spilits h2.fade-in:before {
  transform: translateX(0);
}
.company_recruit_spilits .company_recruit_spilits_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits .company_recruit_spilits_box {
    margin-top: 0;
    text-align: left;
  }
}
.company_recruit_spilits .company_recruit_spilits_box h3 {
  font-size: 2.1rem;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits .company_recruit_spilits_box h3 {
    font-size: 4rem;
  }
}
.company_recruit_spilits .company_recruit_spilits_box p {
  margin: 0;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_spilits .company_recruit_spilits_box p {
    line-height: 3;
    font-size: 1.8rem;
  }
}

.company_recruit_future {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company_recruit_future {
    padding: 178px 10vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1369px) {
  .company_recruit_future {
    padding: 178px 0 178px calc(100% - 690px);
  }
}
.company_recruit_future video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.company_recruit_future.blurIn::before {
  filter: blur(0px) !important;
}
.company_recruit_future h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_future h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.company_recruit_future h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.company_recruit_future h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .company_recruit_future h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.company_recruit_future h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.company_recruit_future h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(150px);
}
@media screen and (min-width: 768px) {
  .company_recruit_future h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.company_recruit_future h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow-white.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 10;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .company_recruit_future h2:before {
    height: 78px;
    bottom: 0;
    right: -400px;
  }
}
.company_recruit_future h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_future h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.company_recruit_future h2.fade-in:before {
  transform: translateX(0);
}
.company_recruit_future .company_recruit_future_box {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 1.7s;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company_recruit_future .company_recruit_future_box {
    margin-top: 0;
    text-align: left;
  }
}
.company_recruit_future .company_recruit_future_box h3 {
  font-size: 2.1rem;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_future .company_recruit_future_box h3 {
    font-size: 4rem;
  }
}
.company_recruit_future .company_recruit_future_box p {
  margin: 0;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company_recruit_future .company_recruit_future_box p {
    line-height: 3;
    font-size: 1.8rem;
  }
}

.gallery_recruit_title {
  padding: 80px 24px 0;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_title {
    padding: 178px 6vw 0;
    margin: 0 auto;
  }
}
.gallery_recruit_title h2 {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_title h2 {
    margin: 0 0 64px;
    padding-bottom: 20px;
  }
}
.gallery_recruit_title h2 > span:first-child {
  display: inline-block;
  overflow: hidden;
}
.gallery_recruit_title h2 > span:first-child > span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 0.7s;
  transform: translateY(50px);
}
@media screen and (min-width: 768px) {
  .gallery_recruit_title h2 > span:first-child > span {
    font-size: 3.2rem;
  }
}
.gallery_recruit_title h2 > span:last-child {
  display: inline-block;
  overflow: hidden;
}
.gallery_recruit_title h2 > span:last-child > span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  margin: 0;
  letter-spacing: 0.1em;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s 1s;
  transform: translateY(90px);
}
@media screen and (min-width: 768px) {
  .gallery_recruit_title h2 > span:last-child > span {
    font-size: 6.4rem;
  }
}
.gallery_recruit_title h2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 64px;
  background-image: url(../images/jinjib-arrow.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: -10px;
  right: -140px;
  z-index: -1;
  transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
  transform: translateX(-100vw);
}
@media screen and (min-width: 768px) {
  .gallery_recruit_title h2:before {
    width: 100vw;
    height: 78px;
    background-image: url(../images/jinjib-arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    bottom: 0;
    right: -480px;
    z-index: -1;
    transition: cubic-bezier(0, 0.64, 0.35, 1) 0.7s;
    transform: translateX(-100vw);
  }
}
.gallery_recruit_title h2.fade-in span:first-child {
  opacity: 1;
  transform: translateY(0);
}
.gallery_recruit_title h2.fade-in span:last-child {
  opacity: 1;
  transform: translateY(0);
}
.gallery_recruit_title h2.fade-in:before {
  transform: translateX(0);
}

.gallery_recruit_content_wrapper {
  padding: 0 24px 80px;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_content_wrapper {
    padding: 0 6vw 160px;
    margin: 0 auto;
  }
}
.gallery_recruit_content_wrapper .gallery_recruit_content:after {
  content: "";
  display: block;
  clear: both;
}
.gallery_recruit_content_wrapper .gallery_recruit_content .grid-sizer {
  width: 33.333%;
  padding: 1vw;
}
.gallery_recruit_content_wrapper .gallery_recruit_content .recruit_gallery_item {
  float: left;
  width: 33.333%;
  padding: 1vw;
}
.gallery_recruit_content_wrapper .gallery_recruit_content .recruit_gallery_item.width2 {
  width: 66.6666%;
  padding: 1vw;
}
.gallery_recruit_content_wrapper .gallery_recruit_content .recruit_gallery_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_content_wrapper .gallery_recruit_content .recruit_gallery_item img {
    filter: grayscale(80%);
  }
}
.gallery_recruit_content_wrapper .gallery_recruit_content .recruit_gallery_item img:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}
.gallery_recruit_content_wrapper .hover-comment {
  position: fixed;
  background: #fff;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #262626;
  padding: 1em 1.5em;
  border-radius: 6px;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(10px, 10px);
  display: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_content_wrapper .hover-comment {
    font-size: 1.8rem;
  }
}
.gallery_recruit_content_wrapper .hover-comment::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 13px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #262626;
}
.gallery_recruit_content_wrapper .hover-comment::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
@media screen and (min-width: 768px) {
  .gallery_recruit_content_wrapper .hover-comment::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    top: -10px;
    left: 14px;
  }
}
