@charset "UTF-8";
.js-blur {
  will-change: filter;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

@media screen and (min-width: 961px) {
  .js-blur {
    will-change: filter;
  }
}
/* iOSデバイス向けの最適化 */
@supports (-webkit-touch-callout: none) {
  .js-blur {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  pointer-events: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}
.loading::after {
  background: #1a1a1a;
  mix-blend-mode: multiply;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: background 3s ease;
  transition: background 3s ease;
}
.loading.transparent-bg::after {
  background: transparent !important;
}

.loading__text {
  position: relative;
  width: 100%;
  height: 85px;
}
.loading__text svg {
  height: 85px;
  width: 100%;
}

.letter {
  color: #FFFFFF;
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 110.347px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.517px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .letter {
    font-size: 80px;
  }
}

.fv {
  height: 100vh;
}
.fv .inner {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}

.fv {
  position: relative;
  overflow: hidden;
}
.fv::after {
  background: rgba(23, 23, 23, 0.8);
  mix-blend-mode: multiply;
  content: "";
  position: absolute;
  width: 100%;
  height: 101%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* 白背景用 */
/* 基本スタイル */
/* 基本スタイル */
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  mix-blend-mode: normal;
  z-index: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  will-change: transform;
}

.fv::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  will-change: transform;
}

/* 1. 左から右に白背景が現れる */
.fv.return-dark::after {
  -webkit-animation: slideToRight 2s ease-in-out forwards;
          animation: slideToRight 2s ease-in-out forwards;
}

.fv.return-dark::before {
  -webkit-animation: slideFromLeft 2s ease-in-out forwards;
          animation: slideFromLeft 2s ease-in-out forwards;
}

/* 2. 同時に右から左へ：白背景が戻る＆黒背景が現れる */
.fv.return-original::before {
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 現在の位置からスタート */
  -webkit-animation: slideToLeft 2s ease-in-out forwards;
          animation: slideToLeft 2s ease-in-out forwards;
}

.fv.return-original::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%); /* 右端からスタート */
  -webkit-animation: slideFromRight 2s ease-in-out forwards;
          animation: slideFromRight 2s ease-in-out forwards;
}

/* アニメーションキーフレーム */
@-webkit-keyframes slideFromLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideFromLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slideToLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slideToLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slideFromRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideFromRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* パフォーマンス最適化のための追加設定 */
.fv::before,
.fv::after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-font-smoothing: antialiased;
}

.fv__copy {
  position: relative;
  text-align: center;
  visibility: hidden;
  mix-blend-mode: difference;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fv__copy.visible {
  visibility: visible;
  opacity: 1;
}

.fv__copy--en {
  font-family: "Marcellus", serif;
  font-size: 240px;
  line-height: 100%;
  letter-spacing: 12px;
  display: inline-block;
  mix-blend-mode: difference;
}
@media screen and (max-width: 960px) {
  .fv__copy--en {
    font-size: 160px;
    letter-spacing: 8px;
  }
}

.fv__copy--jp {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;
  display: inline-block;
  mix-blend-mode: difference;
}
@media screen and (max-width: 960px) {
  .fv__copy--jp {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.vision {
  padding-left: 3.33%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .vision {
    padding-left: 0;
  }
}
.vision .inner {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .vision .inner {
    padding-top: 20px;
  }
}

.vision__box .pin-spacer {
  mix-blend-mode: difference;
}

.vision__box-left {
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 2;
}

.vision__description {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.4px;
  mix-blend-mode: difference;
}
@media screen and (max-width: 960px) {
  .vision__description {
    margin-top: 32px;
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}

.vision__box-right {
  margin-top: 400px;
  max-width: 592px;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .vision__box-right {
    margin-top: 56px;
    max-width: 100%;
  }
}

.vision__text {
  line-height: 200%;
}
.vision__text + .vision__text {
  margin-top: 24px;
}

.vision .btn-wrapper {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.vision-swiper_wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.vision-swiper {
  margin-right: calc(50% - 50vw);
  padding-top: 50px;
  padding-bottom: 150px;
  padding-left: 20px;
}
@media screen and (max-width: 960px) {
  .vision-swiper {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.vision-slide {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  /* &.swiper-slide-nextの次の.vision-slideにスタイルを適用 */
}

.vision-slide.swiper-slide-next,
.vision-slide.swiper-slide-prev,
.vision-slide.swiper-slide-next + .vision-slide + .vision-slide {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  /* 初期位置からのアニメーション */
}
@media screen and (max-width: 960px) {
  .vision-slide.swiper-slide-next,
  .vision-slide.swiper-slide-prev,
  .vision-slide.swiper-slide-next + .vision-slide + .vision-slide {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

.vision-slide picture {
  width: 100%;
}

.vision-slide img {
  aspect-ratio: 330/440;
}
@media screen and (max-width: 960px) {
  .vision-slide img {
    max-width: 200px;
  }
}

.service--01 .btn-wrapper {
  margin-top: 40px;
}

.service--01 .inner {
  padding-bottom: 0;
}

.service--02 .inner {
  padding-top: 56px;
}

.service--02 {
  position: relative;
}

.sticky {
  position: relative;
}
.sticky .service--02 {
  position: sticky;
  top: 0;
}

.service--02.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.service--02 .service__box {
  width: 100%;
  z-index: 2;
}

.service__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: background-color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, -webkit-filter 0.3s ease;
  transition: filter 0.3s ease, background-color 0.3s ease;
  transition: filter 0.3s ease, background-color 0.3s ease, -webkit-filter 0.3s ease;
  will-change: filter, background-color;
  gap: 20px;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service__box {
    margin-top: 4.6666666667vw;
    gap: 1.6666666667vw;
  }
}
@media screen and (max-width: 960px) {
  .service__box {
    margin-top: 56px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service__box.is-blurred {
  backdrop-filter: blur(16px);
}
.service__box.is-pinned {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
}

.service__box-left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .service__box-left {
    width: 100%;
  }
}

.service-swiper {
  width: 100%;
  height: 100%;
}
.service-swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.service-swiper.swiper-fade .swiper-slide {
  pointer-events: auto;
  -webkit-transition-property: none;
  transition-property: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.service-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 0;
  will-change: transform, z-index;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  /* 追加 */
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.service-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 399px;
}
.service-slide picture {
  position: relative;
  display: block;
  width: 100%;
  max-width: 399px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service-slide picture {
    max-width: 33.25vw;
  }
}
.service-slide picture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.service-slide picture.no-overlay::before {
  opacity: 0;
}
.service-slide:nth-child(1) picture::before {
  background: #C2B9B9;
}
.service-slide:nth-child(2) picture {
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
.service-slide:nth-child(2) picture::before {
  background: #282828;
}
.service-slide:nth-child(3) picture {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.service-slide:nth-child(3) picture::before {
  background: #636363;
}
.service-slide.swiper-slide-active picture::before {
  opacity: 0;
}

.service__box-right {
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 544px;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service__box-right {
    min-height: 45.3333333333vw;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service__item {
  padding: 20px 16px;
  position: relative;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service__item {
    padding: 1.6666666667vw 1.3333333333vw;
  }
}
.service__item::before {
  content: "";
  position: absolute;
  background: #282828;
  mix-blend-mode: difference;
  top: 0;
  width: 100%;
  left: 0;
  height: 1px;
}
.service__item:last-child::after {
  content: "";
  position: absolute;
  background: #282828;
  mix-blend-mode: difference;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 1px;
}

.service__item.is-active .service__title,
.service__item.is-active .service__text {
  color: #282828;
}

.service__title {
  color: #C2B9B9;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.4px;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service__title {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 960px) {
  .service__title {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #282828;
    color: #282828;
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.service__text {
  margin-top: 16px;
  color: #C2B9B9;
  line-height: 150%;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .service__text {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 960px) {
  .service__text {
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #282828;
    font-size: 15px;
    color: #282828;
  }
}

.service__block {
  margin: auto;
  max-width: 500px;
}
.service__block:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .service__block:not(:first-child) {
    margin-top: 56px;
  }
}
.service__block picture {
  position: relative;
  will-change: transform;
  display: block;
  width: 100%;
  max-width: 399px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .service__block picture {
    max-width: 280px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    --before-opacity: 0;
    --after-opacity: 0;
  }
}
.service__block picture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
@media screen and (max-width: 960px) {
  .service__block picture::before {
    -webkit-transform: rotate(calc(var(--before-rotate) * 1deg));
            transform: rotate(calc(var(--before-rotate) * 1deg));
    -webkit-transition: none;
    transition: none;
  }
}
.service__block picture::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -2;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
@media screen and (max-width: 960px) {
  .service__block picture::after {
    -webkit-transform: rotate(calc(var(--after-rotate) * 1deg));
            transform: rotate(calc(var(--after-rotate) * 1deg));
    -webkit-transition: none;
    transition: none;
  }
}
.service__block picture.no-overlay::before {
  opacity: 0;
}
.service__block:nth-child(1) picture::before {
  background: #282828;
}
.service__block:nth-child(1) picture::after {
  background: #636363;
}
.service__block:nth-child(2) picture::before {
  background: #C2B9B9;
}
.service__block:nth-child(2) picture::after {
  background: #636363;
}
.service__block:nth-child(3) picture::before {
  background: #C2B9B9;
}
.service__block:nth-child(3) picture::after {
  background: #282828;
}
.service__block.swiper-slide-active picture::before {
  opacity: 0;
}

.service-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: auto;
  will-change: transform, opacity;
}
.service-slide picture {
  position: relative;
  display: block;
  width: 100%;
  max-width: 399px;
  margin: 0 auto;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  will-change: transform;
}
.service-slide picture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.service-slide picture.no-overlay::before {
  opacity: 0;
}
.service-slide picture img {
  width: 100%;
  height: auto;
  display: block;
}

.service-slide:first-child {
  opacity: 1;
  z-index: 3;
}

.service-slide:nth-child(1) picture::before {
  background: #C2B9B9;
}

.service-slide:nth-child(2) picture::before {
  background: #282828;
}

.service-slide:nth-child(3) picture::before {
  background: #636363;
}

.company {
  min-width: 100vw;
  min-height: 100vh;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.company .section__title--en {
  font-size: 70px;
}

.horizontal-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}

.horizontal-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .horizontal-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

/* 必要に応じて内部のコンテンツ配置調整 */
.company__img {
  margin-top: 64px;
  text-align: center;
}
.company__img img {
  max-width: 320px;
  -webkit-transition: max-width 2s ease;
  transition: max-width 2s ease;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .company__img img {
    max-width: 26.6666666667vw;
  }
}
@media screen and (max-width: 960px) {
  .company__img img {
    max-width: 200px;
  }
}

.company__text {
  margin: 24px auto 0;
  line-height: 180%;
  mix-blend-mode: difference;
  max-width: 900px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .company__text {
    margin-top: 14px;
  }
}

.company .btn-wrapper {
  margin: 56px auto 0;
  text-align: right;
  max-width: 900px;
}

.recruit {
  min-width: 100vw;
}
@media (min-width: 1201px) {
  .recruit .section__title--en {
    font-size: 100px;
  }
}
@media (max-width: 1200px) and (min-width: 961px) {
  .recruit .section__title--en {
    font-size: 8.3333333333vw;
  }
}

.recruit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .recruit__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit__wrapper {
  width: 50%;
  min-height: 100vh;
}
@media screen and (max-width: 960px) {
  .recruit__wrapper {
    width: 100%;
    min-height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .recruit__wrapper:nth-child(1) .inner {
    padding-bottom: 0;
  }
  .recruit__wrapper:nth-child(1) .btn-wrapper {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .recruit__wrapper:nth-child(2) .inner {
    padding-top: 40px;
  }
  .recruit__wrapper:nth-child(2) .section__title {
    display: none;
    margin-top: 0;
  }
  .recruit__wrapper:nth-child(2) .recruit__title {
    margin-top: 0;
  }
}
.recruit__wrapper .inner {
  padding-top: 190px;
  padding-bottom: 315px;
}
@media screen and (max-width: 960px) {
  .recruit__wrapper .inner {
    padding-top: 60px;
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 961px) {
  .recruit__wrapper:nth-child(1) .inner {
    padding-right: 150px;
  }
}
@media (max-width: 1440px) and (min-width: 961px) {
  .recruit__wrapper:nth-child(1) .inner {
    padding-right: 10.4166666667vw;
  }
}
@media screen and (min-width: 961px) {
  .recruit__wrapper:nth-child(2) .inner {
    padding-left: 150px;
  }
}
@media (max-width: 1440px) and (min-width: 961px) {
  .recruit__wrapper:nth-child(2) .inner {
    padding-left: 10.4166666667vw;
  }
}
@media screen and (max-width: 960px) {
  .recruit__wrapper.common-bg02::after {
    background: rgba(23, 23, 23, 0.8);
  }
}

.recruit__box-left {
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .recruit__box-left {
    padding-bottom: 40px;
    position: relative;
    margin: auto;
  }
  .recruit__box-left::after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    mix-blend-mode: difference;
  }
}

.recruit__box-right {
  margin-right: auto;
}

.recruit__box-left,
.recruit__box-right {
  max-width: 423px;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .recruit__box-left,
  .recruit__box-right {
    max-width: 35.25vw;
  }
}
@media screen and (max-width: 960px) {
  .recruit__box-left,
  .recruit__box-right {
    max-width: 100%;
  }
}

.recruit__title {
  margin-top: 54px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.9px;
  mix-blend-mode: difference;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .recruit__title {
    margin-top: 4.5vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 960px) {
  .recruit__title {
    margin-top: 40px;
    font-size: 18px;
  }
}

.recruit__text {
  margin-top: 16px;
  mix-blend-mode: difference;
}
@media (max-width: 1200px) and (min-width: 961px) {
  .recruit__text {
    margin-top: 1.3333333333vw;
    font-size: 1.25vw;
  }
}

.recruit .btn-wrapper {
  margin-top: 64px;
  text-align: right;
}