@charset "UTF-8";
/*********************************/
/*           共通パーツ           */
/*********************************/
/* ユーティリティクラス */
@media screen and (min-width: 1025px) {
  .u-hide-pc {
    display: none !important;
  }
}

.u-hide-sp {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .u-hide-sp {
    display: block !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Chakra Petch", "Noto Sans JP", sans-serif;
  color: #191919;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    cursor: default;
  }
}

/* INNER */
.inner {
  max-width: 210.1333333333vw;
  width: 100%;
  padding-left: 5.0666666667vw;
  padding-right: 5.0666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .inner {
    max-width: 1576px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* SECTION-TITLE */
.section-title--center {
  text-align: center;
}

.section-title__en {
  font-weight: 700;
  font-size: 3.7333333333vw;
  color: #898989;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1025px) {
  .section-title__en {
    font-size: 16px;
  }
}
.section-title__en--accent {
  color: #0b3074;
}

.contact__section-title .section-title__en--accent {
  color: #437FEE;
}

.area__section-title .section-title__en--accent {
  color: #437FEE;
}

.jobDescription__section-title .section-title__en--accent {
  color: #437FEE;
}

.recruit__section-title .section-title__en--accent {
  color: #437FEE;
}

.section-title__ja {
  font-weight: 700;
  font-size: 6.4vw;
  margin-top: 2vw;
  color: #191919;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1025px) {
  .section-title__ja {
    font-size: 54px;
    margin-top: 15px;
  }
}

.section-title--inverted .section-title__ja {
  color: #f5f5f5;
}

/*  BTN  */
.btn {
  position: relative;
  max-width: 45.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .btn {
    max-width: 254px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  max-width: 3.2vw;
  width: 100%;
  height: 3.2vw;
  background-color: #437FEE;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4vw;
}
@media screen and (min-width: 1025px) {
  .btn::before {
    max-width: 15px;
    height: 15px;
    right: 18px;
  }
}

.btn__link {
  position: relative;
  display: block;
  padding: 1.3333333333vw;
  font-size: 5.3333333333vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .btn__link {
    font-size: 24px;
    padding-top: 0px;
    padding-bottom: 4px;
    padding-right: 20px;
    padding-left: 20px;
    color: transparent;
  }
}
.btn__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #fff;
  transform: scaleX(1);
  transform-origin: left;
  transition: none;
}
.btn__link:hover::after {
  animation: underline-reverse-flash 0.8s forwards;
}

.btn--inverted .btn__link {
  color: #191919;
}
.btn--inverted .btn__link::after {
  background-color: #191919;
  color: transparent;
}
@media screen and (min-width: 1025px) {
  .btn--inverted .btn__link {
    color: transparent;
  }
}

/* ホバーアニメーション */
@keyframes underline-reverse-flash {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  49% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (min-width: 1025px) {
  .u-hover-switch {
    overflow: hidden;
    color: transparent;
    text-shadow: 0 2em 0 #191919, 0 0 0 #191919;
    transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .u-hover-switch:hover {
    text-shadow: 0 0 0 #191919, 0 -2em 0 #191919;
  }
}

@media screen and (min-width: 1025px) {
  .u-hover-switch--white {
    overflow: hidden;
    color: transparent;
    text-shadow: 0 2em 0 #fff, 0 0 0 #fff;
    transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
}
@media screen and (min-width: 1025px) {
  .u-hover-switch--white:hover {
    text-shadow: 0 0 0 #fff, 0 -2em 0 #fff;
  }
}

.header {
  position: fixed;
  top: 2.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 240.8vw;
  width: 100%;
  height: 14.6666666667vw;
  z-index: 1000;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1806px;
    top: 20px;
    height: 80px;
    padding-inline: 20px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: inherit;
  padding-inline: 5.3333333333vw;
  backdrop-filter: blur(10px) brightness(95%);
  -webkit-backdrop-filter: blur(10px) brightness(95%);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding-inline: 40px;
    border-radius: 10px;
  }
}

.header.is-open .header__inner {
  backdrop-filter: blur(0px) brightness(95%);
  background-color: rgba(255, 255, 255, 0);
}

.header__list {
  position: relative;
  z-index: 1;
}

.header__logo {
  position: relative;
  max-width: 286px;
  width: 45.3333333333vw;
  z-index: 5000;
}
.header__logo a {
  transition: 0.3s;
}
.header__logo a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1025px) {
  .header__logo {
    max-width: 286px;
    width: 100%;
  }
}

.header__nav {
  position: fixed;
  top: -110vh;
  left: 0;
  height: 97vh;
  width: 100%;
  transition: top 0.6s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 21vw;
  padding-right: 21vw;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 1025px) {
  .header__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    top: 0;
    right: 0%;
    transition: none;
    height: auto;
    width: auto;
    background-color: rgba(25, 25, 25, 0);
    padding-left: 0;
    padding-right: 0;
  }
}

.header__nav.is-open {
  top: 0;
  padding-left: 6.5333333333vw;
  padding-right: 6.5333333333vw;
  border-radius: 10px;
  backdrop-filter: blur(10px) brightness(95%);
  -webkit-backdrop-filter: blur(10px) brightness(95%);
  border-radius: 1.3333333333vw;
}

@media screen and (min-width: 1025px) {
  .header__list {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header__item {
  margin-top: clamp(2.5rem, 1.055rem + 6.16vw, 5rem);
}
@media screen and (min-width: 1025px) {
  .header__item {
    margin-top: 0;
  }
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 0.561rem + 4.01vw, 3.125rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-top: 1.0666666667vw;
  padding-bottom: 1.0666666667vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header__link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.header__link::after {
  position: absolute;
  content: "company";
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.875rem, 0.225rem + 2.77vw, 2rem);
  color: #898989;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .header__link::after {
    content: "";
  }
}

.header__item:first-child {
  margin-top: 0;
}

.header__item:nth-child(2) .header__link::after {
  content: "Business/Works";
}
@media screen and (min-width: 1025px) {
  .header__item:nth-child(2) .header__link::after {
    content: "";
  }
}

.header__item:nth-child(3) .header__link::after {
  content: "Machines";
}
@media screen and (min-width: 1025px) {
  .header__item:nth-child(3) .header__link::after {
    content: "";
  }
}

.header__item:nth-child(4) .header__link::after {
  content: "Recruit";
}
@media screen and (min-width: 1025px) {
  .header__item:nth-child(4) .header__link::after {
    content: "";
  }
}

.header__item--contact .header__link {
  color: #f5f5f5;
  background-color: #437FEE;
  border-radius: 2.6666666667vw;
  padding: 3.2vw 2.8vw;
  border-radius: 60px;
  position: static;
}
@media screen and (min-width: 1025px) {
  .header__item--contact .header__link {
    border-radius: 20px;
    padding: 6px 24px 4px;
  }
}
.header__item--contact .header__link:hover {
  background-color: #0b3074;
}
.header__item--contact .header__link::after {
  display: none;
}

/* ハンバーガーアイコン */
.header__hamburger {
  width: 6.1333333333vw;
  height: 4vw;
  position: absolute;
  top: 6vw;
  right: 5.3vw;
  cursor: pointer;
  z-index: 1001;
}
.header__hamburger span {
  position: absolute;
  left: 0vw;
  width: 6.1333333333vw;
  height: 0.8vw;
  background: #0b3074;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .header__hamburger span {
    left: 0;
  }
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 1.7333333333vw;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  bottom: auto;
  top: 50%;
  left: 50%;
}

.footer {
  position: relative;
  z-index: 0;
  background-color: #191919;
  color: #f5f5f5;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/common/footer_mask_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 1;
}

.footer__inner {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 1;
  padding-top: 16vw;
  padding-left: 5.0666666667vw;
  padding-right: 25.3333333333vw;
  padding-bottom: 11.4666666667vw;
}
@media screen and (min-width: 1025px) {
  .footer__inner {
    padding: 8.85416667% 6.25% 13.54166667%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer__logo {
  max-width: 66.1333333333vw;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .footer__logo {
    max-width: 286px;
  }
}

.footer__infoList {
  margin-top: 5.3333333333vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1025px) {
  .footer__infoList {
    margin-top: 64px;
  }
}
.footer__infoList li {
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .footer__infoList li {
    font-size: 14px;
    margin-top: 8px;
  }
}
.footer__infoList li:first-child {
  font-weight: 700;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .footer__infoList li:first-child {
    font-size: 16px;
  }
}

.footer__navList {
  font-size: 4.2666666667vw;
  font-weight: 700;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4vw 10.6666666667vw;
  margin-top: 10.6666666667vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .footer__navList {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    margin-top: 0;
  }
}

.footer__navList.u-hide-sp {
  display: none;
}
@media screen and (min-width: 1025px) {
  .footer__navList.u-hide-sp {
    display: flex !important;
  }
}

@media screen and (min-width: 1025px) {
  .footer__navList.u-hide-pc {
    display: none !important;
  }
}

.footer__item {
  overflow: hidden;
}

.footer__copyright {
  font-size: 2.9333333333vw;
  font-weight: 500;
  text-align: right;
  padding-right: 5.0666666667vw;
  padding-top: 4vw;
  padding-bottom: 4vw;
  border-top: 1px solid rgba(137, 137, 137, 0.3);
}
@media screen and (min-width: 1025px) {
  .footer__copyright {
    font-size: 16px;
    padding-right: 80px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.l-page-hero {
  background-color: #f5f5f5;
}
.l-page-hero .l-page-hero__body {
  padding-top: 29.3333333333vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body {
    padding-top: 220px;
    padding-bottom: 120px;
  }
}
.l-page-hero .l-page-hero__body .l-page-hero__primary {
  font-weight: 700;
  max-width: 204.8vw;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body .l-page-hero__primary {
    max-width: 1536px;
  }
}
.l-page-hero .l-page-hero__body .l-page-hero__image {
  position: relative;
  max-width: 235.3333333333vw;
  width: 90%;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body .l-page-hero__image {
    max-width: 1765px;
    width: 91.92708333%;
  }
}
.l-page-hero .l-page-hero__body .c-page-header {
  font-size: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body .c-page-header {
    padding-bottom: 20px;
  }
}
.l-page-hero .l-page-hero__body .c-page-header__kana {
  letter-spacing: 0.15em;
  font-size: 7.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body .c-page-header__kana {
    font-size: 53px;
  }
}
.l-page-hero .l-page-hero__body .c-breadcrumb {
  font-size: 3.2vw;
  margin-bottom: 16vw;
}
@media screen and (min-width: 1025px) {
  .l-page-hero .l-page-hero__body .c-breadcrumb {
    font-size: 16px;
    margin-bottom: 120px;
  }
}
.l-page-hero .l-page-hero__body .c-breadcrumb .c-breadcrumb__list {
  display: flex;
}
.l-page-hero .l-page-hero__body .c-breadcrumb .c-breadcrumb__list > li {
  letter-spacing: 0.15em;
  color: #898989;
}
.l-page-hero .l-page-hero__body .c-breadcrumb .c-breadcrumb__list > li:last-child {
  letter-spacing: 0.1em;
  color: #0b3074;
}
.l-page-hero .l-page-hero__body .c-breadcrumb .c-breadcrumb__list > li ~ li::before {
  content: "/";
  color: #898989;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
}

.contact-block {
  position: relative;
  z-index: 0;
  background-color: #191919;
  color: #f5f5f5;
}
.contact-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/common/contact_mask_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: -1;
}
.contact-block .contact-block__body {
  font-weight: 700;
  padding: 0;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .contact-block .contact-block__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 240px 0;
  }
}
.contact-block .contact-tel,
.contact-block .contact-cta {
  text-align: center;
  letter-spacing: 0.1em;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .contact-block .contact-tel,
  .contact-block .contact-cta {
    padding: 0;
  }
}
.contact-block .contact-tel a,
.contact-block .contact-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6vw;
  font-size: 10.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .contact-block .contact-tel a,
  .contact-block .contact-cta a {
    font-size: clamp(60px, 60px + 40 * (100vw - 1025px) / 895, 100px);
    gap: 8px;
  }
}
.contact-block .contact-tel .note,
.contact-block .contact-cta .note {
  display: block;
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .contact-block .contact-tel .note,
  .contact-block .contact-cta .note {
    font-size: 18px;
  }
}

.contact-tel {
  padding: 10.6666666667vw 0 5.3333333333vw;
}

.contact-cta {
  padding: 5.3333333333vw 0 10.6666666667vw;
}

.contact-tel .hyphen {
  display: block;
  margin-bottom: 2vw;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .contact-tel .hyphen {
    margin-bottom: 15px;
  }
}

body {
  position: relative;
}

.gridLine {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #898989;
  opacity: 0.3;
}

.gridLine--center {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #898989;
  z-index: 0;
  opacity: 0.3;
}

.gridLine--leftIn {
  display: none;
  left: 23.4375%;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .gridLine--leftIn {
    display: block;
  }
}

.gridLine--rightIn {
  display: none;
  left: 76.5625%;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .gridLine--rightIn {
    display: block;
  }
}

.gridLine--leftOut {
  left: 5%;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .gridLine--leftOut {
    left: 10%;
  }
}

.gridLine--rightOut {
  left: 95%;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .gridLine--rightOut {
    left: 90%;
  }
}

@media (min-width: 1920px) {
  .gridLine--leftIn {
    left: calc((100% - 1920px) / 2 + 450px);
  }
  .gridLine--rightIn {
    /* 1920px のときの値を固定 */
    left: calc((100% - 1920px) / 2 + 1470px);
  }
  .gridLine--leftOut {
    left: calc((100% - 1920px) / 2 + 192px);
  }
  .gridLine--rightOut {
    left: calc((100% - 1920px) / 2 + 1728px);
  }
}/*# sourceMappingURL=common.css.map */