@charset "UTF-8";
/**********************
* ヘッダボタン
*************************/
body.home:not(.is-header-bg-none) .top-hamburger-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
}

.top-hamburger-wrap {
  position: fixed;
  content: "";
  top: 28px;
  right: 2%;
  left: auto;
  z-index: 101;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1200px) {
  .top-hamburger-wrap {
    display: none;
  }
}

.top-hamburger-info {
  display: flex;
  width: 360px;
  height: 105px;
  padding-left: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 96px;
}
.top-hamburger-info .dev {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.top-hamburger-info .tel {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.top-hamburger-info .small {
  font-size: 75%;
}
.top-hamburger-info .icon-tel {
  position: relative;
  padding-left: 1.25em;
  display: inline-block;
}
.top-hamburger-info .icon-tel::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/tel.svg) no-repeat center/contain;
}

.top-hamburger {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: 0;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  border-radius: 100%;
  border: 4px solid var(--primary-color);
  width: 105px;
  height: 105px;
  transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  cursor: pointer;
}
.top-hamburger .icon {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}
.top-hamburger .text {
  margin-top: 4px;
  display: block;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 600;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, width, margin;
}

.top-hamburger__line {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  margin: auto;
  border-radius: 0.25em;
  background-color: var(--primary-color);
  width: 27px;
  height: 1px;
}

.top-hamburger__line:after,
.top-hamburger__line:before {
  display: block;
  position: absolute;
  content: "";
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
  border-radius: inherit;
  background-color: inherit;
  width: 100%;
  height: 100%;
}

.top-hamburger__line:before {
  top: -8px;
}

.top-hamburger__line:after {
  top: 8px;
}

.is-drawerActive .top-hamburger::after {
  color: var(--primary-color);
}

.is-drawerActive .top-hamburger__line {
  background-color: transparent;
}

.is-drawerActive .top-hamburger__line:after,
.is-drawerActive .top-hamburger__line:before {
  top: 0;
  background-color: var(--primary-color);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
}

.is-drawerActive .top-hamburger__line:before {
  transform: rotate(-45deg);
}

.is-drawerActive .top-hamburger__line:after {
  transform: rotate(45deg);
}

/**********************
* mv
*************************/
.mv {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: url(../img/top/mv.webp) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .mv {
    aspect-ratio: 375/731;
    background-image: url(../img/top/mv_sp.webp);
    background-size: contain;
  }
}
.mv .l-inner {
  width: 81.25%;
  max-width: 100%;
}

.mv-title {
  margin-top: 16.5%;
  font-size: 52px;
  font-size: 3.25vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-feature-settings: "palt";
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .mv-title {
    margin-top: 31.5%;
    font-size: 30px;
    font-size: 8vw;
  }
}
.mv-title span {
  position: relative;
  opacity: 0;
  transform: translateX(-0.5em);
  transition: 1s ease-in 0s;
  transition-property: opacity, transform;
}
.mv-title span::after {
  content: "";
  border-bottom: 1px solid;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 1s ease-in 0.8s width;
}
.mv-title.is-show span {
  opacity: 1;
  transform: translateX(0);
}
.mv-title.is-show span::after {
  width: 100%;
}
.mv-title.is-show span:nth-child(2) {
  transition-delay: 0.2s;
}

.mv-swiper {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
}
@media (max-width: 768px) {
  .mv-swiper {
    top: auto;
    bottom: 0;
    width: 93.6%;
  }
}

/* about */
.sec-top-about {
  position: relative;
  padding-top: 83px;
  padding-bottom: 260px;
}
@media (max-width: 960px) {
  .sec-top-about {
    padding-bottom: 80px;
  }
}
@media (max-width: 960px) {
  .sec-top-about .l-inner {
    width: 100%;
  }
}

.about-grid01 {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-rows: auto;
  grid-template-columns: 43.25% auto;
  grid-template-rows: auto auto auto;
  gap: 76px 12%;
  grid-template-areas: "g03 g01" "g03 g02" ". g04";
}
.about-grid01 .g01 {
  grid-area: g01;
}
.about-grid01 .g03 {
  grid-area: g03;
}
.about-grid01 .g04 {
  grid-area: g04;
}
.about-grid01 .g02 {
  grid-area: g02;
}
@media (max-width: 960px) {
  .about-grid01 {
    display: grid;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 29px 5%;
  }
  .about-grid01 .g03 {
    grid-area: 1/1/2/2;
  }
  .about-grid01 .g01 {
    grid-area: 1/1/3/3;
  }
  .about-grid01 .g02 {
    grid-area: 3/1/4/3;
  }
  .about-grid01 .g04 {
    grid-area: 4/1/5/3;
  }
}

.about-title {
  margin-top: auto;
}
@media (max-width: 960px) {
  .about-title.--left {
    position: relative;
    margin-left: auto;
    margin-top: 27px;
    margin-bottom: auto;
    margin-right: 6.5%;
    z-index: 2;
    align-items: flex-end;
    align-self: flex-start;
  }
}

.about-text {
  max-width: 640px;
}
@media (max-width: 960px) {
  .about-text {
    margin-left: auto;
    margin-right: auto;
    width: 87%;
  }
}

.about-thumb01 {
  position: relative;
  left: -13.5%;
}
@media (max-width: 960px) {
  .about-thumb01 {
    position: relative;
    top: 1em;
    left: 0;
    z-index: 1;
  }
}

.about-button {
  text-align: right;
  margin-top: 60px;
}
.about-button > * {
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .about-button {
    margin: 40px auto 0;
    width: 87%;
  }
}

.about-thumb02 {
  position: absolute;
  right: 0;
  bottom: -255px;
  width: 68.3125%;
  max-width: 1093px;
  height: auto;
}
@media (max-width: 960px) {
  .about-thumb02 {
    position: static;
    margin-left: auto;
    width: 92%;
  }
}
/*  strong */
.sec-top-strong {
  padding: 316px 0 216px;
  background: url(../img/top/bg_strong.webp) no-repeat top/cover;
}
@media (max-width: 960px) {
  .sec-top-strong {
    padding: 70px 0 216px;
    background-image: url(../img/top/bg_strong_sp.webp);
  }
}
.sec-top-strong .l-inner {
  max-width: 932px;
}

.strong-grid01 {
  margin-top: 8px;
  counter-reset: number 0;
}
@media (max-width: 960px) {
  .strong-grid01 {
    margin-top: 30px;
  }
}

.strong-item {
  position: relative;
  display: block;
  padding: 70px 9em 70px 2em;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #BDBDBD;
}
@media (max-width: 960px) {
  .strong-item {
    padding: 20px 4% 34px 0;
  }
}
.strong-item::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2em;
  height: 2em;
  background: url(../img/common/arrow01.svg) no-repeat center/contain;
  transition: right 0.3s ease-in-out;
}
@media (max-width: 960px) {
  .strong-item::after {
    position: static;
    margin: 26px 0 0 auto;
    width: 1.5em;
    height: 1.5em;
    transform: translateY(0);
  }
}
.strong-item:hover::after, .strong-item:focus::after {
  right: 0;
}

.strong-title {
  position: relative;
  padding-left: 110px;
  font-size: 38px;
  font-weight: 700;
  line-height: 190%;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .strong-title {
    padding-left: 24%;
    font-size: 24px;
  }
}
.strong-title::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  counter-increment: number 1;
  content: "#" counter(number, decimal-leading-zero);
  font-family: "Hanken Grotesk";
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
}
@media (max-width: 960px) {
  .strong-title::before {
    top: 0.15em;
    font-size: 24px;
  }
}

.strong-text {
  margin-top: 0.75em;
  padding-left: 110px;
  font-feature-settings: "palt";
}
@media (max-width: 960px) {
  .strong-text {
    padding-left: 24%;
    font-size: 16px;
  }
}

/* service */
.sec-top-service {
  position: relative;
  padding: 71px 0 156px;
}
@media (max-width: 960px) {
  .sec-top-service {
    padding-top: 77.8666666667%;
    padding-bottom: 75px;
  }
}

.service-grid01 {
  display: flex;
  width: 100%;
  max-width: 1920px;
}
@media (max-width: 960px) {
  .service-grid01 {
    flex-direction: column;
  }
}

.service-grid01 .g01 {
  width: 37.3125%;
  aspect-ratio: 896/1620;
}
@media (max-width: 960px) {
  .service-grid01 .g01 {
    position: absolute;
    margin: 0 auto 0 0;
    width: 93%;
    top: -6.8%;
    aspect-ratio: 702/734;
  }
}

.service-detail {
  margin-right: auto;
  margin-left: 4%;
  padding-top: 48px;
  width: 53.8125%;
}
@media (max-width: 960px) {
  .service-detail {
    margin-left: auto;
    width: 92%;
  }
}

.service-text {
  margin-top: 74px;
}
@media (max-width: 960px) {
  .service-text {
    margin-top: 40px;
  }
}

.service-menu-wrapper {
  margin-top: 74px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: number 0;
}
@media (max-width: 960px) {
  .service-menu-wrapper {
    margin-top: 52px;
  }
}

.service-menu {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  transition: color 0.3s ease-in-out;
  transition-property: color, background;
}
@media (max-width: 960px) {
  .service-menu {
    justify-content: center;
  }
}
.service-menu.service-menu01 {
  width: 100%;
  aspect-ratio: 861/261;
  background: url(../img/top/bg_service_button01.webp) no-repeat center/cover;
}
@media (max-width: 960px) {
  .service-menu.service-menu01 {
    height: 261px;
  }
}
.service-menu:hover, .service-menu:focus {
  background: url(../img/top/bg_service_button01.webp) lightgray 141.469px -150.356px/100% 418.182% no-repeat, #2A73BA;
  background-blend-mode: multiply, normal;
}
.service-menu:nth-child(n+2) {
  margin-top: 7px;
  aspect-ratio: 427/105;
  width: calc(50% - 3px);
  background: url(../img/top/bg_service_button02.webp) no-repeat center/cover;
}
@media (max-width: 960px) {
  .service-menu:nth-child(n+2) {
    width: 100%;
  }
}
@media (max-width: 960px) and (max-width: 960px) {
  .service-menu:nth-child(n+2) {
    height: 105px;
  }
}
.service-menu:nth-child(2), .service-menu:nth-child(3) {
  aspect-ratio: 427/201;
}
@media (max-width: 960px) {
  .service-menu:nth-child(2), .service-menu:nth-child(3) {
    height: 201px;
  }
}
.service-menu:nth-child(2) {
  background: url(../img/top/bg_service_button02.webp) no-repeat center/cover;
}
.service-menu:nth-child(3) {
  background: url(../img/top/bg_service_button03.webp) no-repeat center/cover;
}
.service-menu:nth-child(4) {
  background: url(../img/top/bg_service_button04.webp) no-repeat center/cover;
}
.service-menu:nth-child(5) {
  background: url(../img/top/bg_service_button05.webp) no-repeat center/cover;
}
.service-menu:nth-child(6) {
  background: url(../img/top/bg_service_button06.webp) no-repeat center/cover;
}
.service-menu:nth-child(7) {
  background: url(../img/top/bg_service_button07.webp) no-repeat center/cover;
}
.service-menu::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 4%;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: var(--primary-color);
  -webkit-mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/common/arrow01.svg);
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.service-menu:hover, .service-menu:active, .service-menu:focus {
  background-color: rgba(42, 115, 186, 0.8);
  background-blend-mode: multiply;
}
.service-menu:hover::after, .service-menu:active::after, .service-menu:focus::after {
  background: #fff;
}
.service-menu:hover .service-title, .service-menu:active .service-title, .service-menu:focus .service-title {
  color: #fff;
}
.service-menu:hover .service-title::before, .service-menu:active .service-title::before, .service-menu:focus .service-title::before {
  color: rgba(255, 255, 255, 0.2);
}

.service-title {
  padding-left: 3em;
  font-feature-settings: "palt";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
}
@media (max-width: 960px) {
  .service-title {
    padding-left: 0;
    font-size: 22px;
    text-align: center;
  }
}
.service-title span {
  display: block;
  font-size: 16px;
}
@media (max-width: 960px) {
  .service-title span {
    font-size: 14px;
  }
}
.service-title::before {
  position: absolute;
  top: 0;
  left: 0.025em;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Hanken Grotesk";
  font-size: 46px;
  font-style: italic;
  font-weight: 600;
  line-height: 150%;
  z-index: 2;
}

.service-menu.service-menu01 .service-title {
  padding-left: 1.25em;
  font-size: 36px;
  line-height: 105%;
}
@media (max-width: 960px) {
  .service-menu.service-menu01 .service-title {
    padding-left: 0;
    font-size: 30px;
  }
}
@media (max-width: 960px) {
  .service-menu.service-menu01 .service-title span {
    font-size: 16px;
  }
}
.service-menu.service-menu01 .service-title::before {
  font-size: 58px;
}
.service-menu.service-menu02 .service-title, .service-menu.service-menu03 .service-title {
  padding-left: 2.5em;
  font-size: 30px;
  line-height: 105%;
}
@media (max-width: 960px) {
  .service-menu.service-menu02 .service-title, .service-menu.service-menu03 .service-title {
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  .service-menu.service-menu02 .service-title span, .service-menu.service-menu03 .service-title span {
    font-size: 14px;
  }
}
.service-menu.service-menu02 .service-title::before, .service-menu.service-menu03 .service-title::before {
  font-size: 46px;
}

.service-slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-swiper {
  width: 100%;
  height: 100%;
}

.service-swiper:not(.swiper-initialized) {
  margin-right: 0;
  margin-left: 0;
}
.service-swiper:not(.swiper-initialized) .swiper-wrapper {
  position: relative;
}
.service-swiper:not(.swiper-initialized) .swiper-slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.service-swiper:not(.swiper-initialized) .swiper-slide.is-active {
  opacity: 1;
}

.spacer {
  position: relative;
  aspect-ratio: 5/1;
  overflow: hidden;
}
@media (max-width: 960px) {
  .spacer {
    aspect-ratio: 375/200;
  }
}

.bg-spacer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  z-index: -1;
}

.bg-spacer::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../img/top/bg_achievements.webp) bottom/cover no-repeat;
}
@media (max-width: 960px) {
  .bg-spacer::before {
    background-image: url(../img/top/bg_achievements_sp.webp);
  }
}

/* Achievements */
.sec-top-achievements {
  padding: 209px 0 120px;
}
@media (max-width: 960px) {
  .sec-top-achievements {
    padding: 65px 0 80px;
  }
}

.achievements-grid01 {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 960px) {
  .achievements-grid01 {
    flex-direction: column;
  }
}

.achievements-text {
  width: 52.0769230769%;
}
@media (max-width: 960px) {
  .achievements-text {
    width: 100%;
  }
}

.top-anchor-menu {
  margin-top: 64px;
}
@media (max-width: 960px) {
  .top-anchor-menu {
    margin-top: 30px;
  }
}

.tab__content-text {
  display: none;
}

/* news */
.grid-news01 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: auto;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 40px 5%;
  grid-template-areas: "g02 g01" "g02 g03";
  max-width: 1240px;
}
@media (max-width: 960px) {
  .grid-news01 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 25px 5%;
    grid-template-areas: "g01" "g02" "g03";
  }
}
.grid-news01 .g01 {
  grid-area: g01;
}
.grid-news01 .g02 {
  grid-area: g02;
  align-content: center;
}
.grid-news01 .g03 {
  grid-area: g03;
}

.top-newslist {
  margin-top: 0;
}
.top-newslist.newslist a {
  padding: 2em 1.5em 2em 0.5em;
}
@media (max-width: 960px) {
  .top-newslist.newslist a {
    padding: 1em 1.5em 1em 0.5em;
  }
}

.top-news-button {
  text-align: right;
}

/* company  */
.sec-top-company {
  padding: 300px 0 195px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 190px, rgb(246, 246, 244) 190px, rgb(246, 246, 244) 100%);
  overflow-x: hidden;
}
@media (max-width: 960px) {
  .sec-top-company {
    padding: 400px 0 65px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 147px, rgb(246, 246, 244) 147px, rgb(246, 246, 244) 100%);
  }
}
.sec-top-company .l-inner {
  max-width: 1016px;
}

.grid-company01 {
  margin: 0 auto;
  display: flex;
}
@media (max-width: 960px) {
  .grid-company01 {
    flex-direction: column-reverse;
  }
}

.company-text01 {
  margin-top: 40px;
}

.company-detail {
  max-width: 500px;
}
@media (max-width: 960px) {
  .company-detail {
    margin-top: 60px;
  }
}

.company-thumb {
  margin-top: -260px;
  margin-left: 17.8149606299%;
  margin-right: -7%;
}
@media (max-width: 960px) {
  .company-thumb {
    margin-top: -320px;
    margin-left: 31.814961%;
    margin-right: 4%;
  }
}

.menu-company {
  margin-top: 110px;
  display: flex;
  width: 100%;
  max-width: 877px;
}
@media (max-width: 960px) {
  .menu-company {
    margin-top: 45px;
    flex-direction: column;
  }
}
.menu-company a {
  position: relative;
  padding: 0.25em 3em;
  display: block;
  width: 33.3333333333%;
  height: 100px;
  font-size: 20px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.01em;
  border-left: 1px solid #BDBDBD;
  background: rgba(255, 255, 255, 0);
  transition: background ease-in-out 0.3s;
  transition-property: color, background;
}
@media (max-width: 960px) {
  .menu-company a {
    padding: 0.25em 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid #BDBDBD;
    height: 110px;
    width: 100%;
  }
}
.menu-company a:last-child {
  border-right: 1px solid #BDBDBD;
}
@media (max-width: 960px) {
  .menu-company a:last-child {
    border-right: 0;
    border-bottom: 1px solid #BDBDBD;
  }
}
.menu-company a::after {
  content: "";
  display: block;
  margin-top: 0.25em;
  width: 1.5em;
  height: 1.5em;
  background: var(--primary-color);
  -webkit-mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/common/arrow01.svg);
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background ease-in-out 0.3s;
}
@media (max-width: 960px) {
  .menu-company a::after {
    width: 1em;
    height: 1em;
  }
}
.menu-company a:hover, .menu-company a:active, .menu-company a:focus {
  color: #fff;
  background: var(--primary-color);
}
.menu-company a:hover::after, .menu-company a:active::after, .menu-company a:focus::after {
  background: #fff;
}

/* recruit */
.sec-top-recruit {
  padding-top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(246, 246, 244) 0%, rgb(246, 246, 244) 140px, rgb(255, 255, 255) 140px, rgb(255, 255, 255) 100%);
}
@media (max-width: 960px) {
  .sec-top-recruit {
    background: rgb(255, 255, 255);
    padding-top: 110px;
  }
}
@media (max-width: 960px) {
  .sec-top-recruit .l-inner {
    width: 100%;
  }
}

.grid-recruit01 {
  color: #FFF;
}

.grid-recruit02 {
  margin-top: 3px;
  display: flex;
}
@media (max-width: 960px) {
  .grid-recruit02 {
    margin-top: 1px;
    flex-direction: column;
  }
}

.recruit-title01 {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #FFF;
}
@media (max-width: 960px) {
  .recruit-title01 {
    font-size: 34px;
    line-height: 130%;
    letter-spacing: 0.08em;
  }
}
.recruit-title01::after {
  margin-top: 54px;
  content: attr(data-title);
  text-transform: capitalize;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--main-langEn, "Hanken Grotesk", sans-serif);
  line-height: 150%;
}
@media (max-width: 960px) {
  .recruit-title01::after {
    margin-top: 5px;
    font-size: 16px;
  }
}

.recruit-text01 {
  margin-left: auto;
  padding-right: 57px;
  width: 50.6923076923%;
}
.recruit-text01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: #fff;
  -webkit-mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: contain;
  mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: right ease-in-out 0.3s;
}
@media (max-width: 960px) {
  .recruit-text01 {
    position: relative;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 25%;
    width: 100%;
  }
  .recruit-text01::after {
    right: 2%;
    width: 1.5em;
    height: 1.5em;
  }
}

.recruit-title02 {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  height: 100%;
  color: #FFF;
}
@media (max-width: 960px) {
  .recruit-title02 {
    font-size: 20px;
  }
}
.recruit-title02::after {
  margin-top: auto;
  display: block;
  content: attr(data-title);
  text-transform: capitalize;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--main-langEn, "Hanken Grotesk", sans-serif);
  line-height: 150%;
}
@media (max-width: 960px) {
  .recruit-title02::after {
    font-size: 10px;
  }
}

.recruit-menu__large {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3.5% 3%;
  aspect-ratio: 1440/480;
  overflow: hidden;
}
@media (max-width: 960px) {
  .recruit-menu__large {
    padding: 3.5% 3% 10%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    aspect-ratio: 375/380;
  }
}
.recruit-menu__large::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/recruit01.webp) no-repeat center/cover;
  transition: transform 0.3s ease;
}
.recruit-menu__large.g01::before {
  background: url(../img/top/recruit01.webp) no-repeat center/cover;
}
@media (max-width: 960px) {
  .recruit-menu__large.g01::before {
    background-image: url(../img/top/recruit01_sp.webp);
  }
}
.recruit-menu__large:hover::before, .recruit-menu__large:focus::before {
  transform: scale(1.05);
}
.recruit-menu__large:hover .recruit-text01::after, .recruit-menu__large:focus .recruit-text01::after {
  right: 0%;
}
.recruit-menu__large > * {
  position: relative;
  z-index: 1;
}

.recruit-menu__small {
  position: relative;
  padding: 3.5% 3%;
  display: block;
  width: calc((100% - 6px) / 3);
  aspect-ratio: 478/312;
  overflow: hidden;
}
@media (max-width: 960px) {
  .recruit-menu__small {
    padding: 6.5% 7%;
    aspect-ratio: 375/112;
    width: 100%;
  }
}
.recruit-menu__small::before {
  position: absolute;
  right: 6%;
  bottom: 9%;
  z-index: 1;
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: #fff;
  -webkit-mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/common/arrow01.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: right ease-in-out 0.3s;
}
@media (max-width: 960px) {
  .recruit-menu__small::before {
    top: 50%;
    right: 5%;
    bottom: auto;
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
  }
}
.recruit-menu__small::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/recruit02.webp) no-repeat center/cover;
  transition: transform 0.3s ease;
}
.recruit-menu__small.g02::after {
  background: url(../img/top/recruit02.webp) no-repeat center/cover;
  transition: transform 0.3s ease, background-size 0.3s ease;
}
@media (max-width: 960px) {
  .recruit-menu__small.g02::after {
    background-position: top center;
  }
}
.recruit-menu__small.g03::after {
  background: url(../img/top/recruit03.webp) no-repeat center/cover;
  transition: transform 0.3s ease, background-size 0.3s ease;
}
.recruit-menu__small.g04::after {
  background: url(../img/top/recruit04.webp) no-repeat center/cover;
  transition: transform 0.3s ease, background-size 0.3s ease;
}
.recruit-menu__small:hover::before, .recruit-menu__small:focus::before {
  right: 3%;
}
.recruit-menu__small:hover::after, .recruit-menu__small:focus::after {
  transform: scale(1.05);
}
.recruit-menu__small > * {
  position: relative;
  z-index: 1;
}
.recruit-menu__small:nth-child(n+2) {
  margin-left: 3px;
}
@media (max-width: 960px) {
  .recruit-menu__small:nth-child(n+2) {
    margin-top: 1px;
    margin-left: 0;
  }
}