@charset "UTF-8";
.__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}
.top {
  width: 100%;
  overflow: hidden;
  padding-top: 100px;
}

.top__video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  -webkit-animation: top-hero-in 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s
    forwards;
  animation: top-hero-in 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@-webkit-keyframes top-hero-in {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes top-hero-in {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top__video {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.about {
  color: #fff;
  background-color: #1e1e1e;
}
.about-wrap {
  padding: 140px 0 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 96px;
}
.about-wrap__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-wrap__ttl__sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  font-weight: 500;
  padding-left: 0.4em;
  opacity: 0.6;
}
.about-wrap__ttl__main {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 24px;
}
.about-wrap__ttl__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.about-wrap__head {
  font-family: var(--font-ja);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 2.1;
  letter-spacing: 0.18em;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0 0 56px;
  color: #fff;
}
.about-wrap__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.35);
}
.about-wrap__head p {
  margin: 0;
}
.about-wrap__txt {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 2.4;
  letter-spacing: 0.1em;
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}
.about-wrap__txt p {
  margin: 0;
}
.about-wrap__img {
  width: 200px;
  margin: 0 auto;
}
.about-wrap__img img {
  width: 100%;
}

.service {
  padding: 120px 0;
  background-color: rgba(255, 255, 255, 0.25);
}
.service-wrap__top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.service-wrap__ttl {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.service-wrap__ttl__sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  font-weight: 500;
  padding-left: 0.4em;
  opacity: 0.6;
}
.service-wrap__ttl__main {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 24px;
}
.service-wrap__ttl__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #000;
}
.service-wrap__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin-top: 45px;
}
.service-wrap__item {
  display: flex;
  gap: 60px;
  padding: 40px 24px;
  border-top: 1px solid #ccc;
  align-items: flex-start;
}
.service-wrap__item:last-child {
  border-bottom: 1px solid #ccc;
}
.service-wrap__item__head {
  flex-shrink: 0;
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-wrap__item__num {
  display: block;
  font-size: 44px;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-blue);
}
.service-wrap__item__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #1e1e1e;
}
.service-wrap__item__desc {
  flex: 1;
  max-width: 640px;
  font-size: 15px;
  line-height: 2;
  color: #333;
  letter-spacing: 0.02em;
}
.service-wrap__bottom {
  margin-top: 120px;
  text-align: center;
  position: relative;
}
.service-wrap__bottom__lead {
  margin-bottom: 32px;
  font-family: var(--font-ja);
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #1e1e1e;
}
.service-wrap__bottom__cross {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 28px;
  line-height: 1.4;
}
.service-wrap__bottom__cross__word {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: 0.16em;
  padding-left: 0.16em;
}
.service-wrap__bottom__cross__x {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--color-blue);
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.75;
  transform: translateY(-2px);
}
.service-wrap__bottom__txt {
  font-size: 16px;
  line-height: 2.2;
  color: #333;
  letter-spacing: 0.04em;
  max-width: 720px;
  margin: 0 auto;
}
.service-wrap__bottom__brand {
  color: var(--color-blue);
  font-family: var(--font-display);
  font-size: 1.2em;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.news {
  padding: 120px 0;
  background-color: #1e1e1e;
}
.news-wrap__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 80px;
  color: #ffffff;
}
.news-wrap__ttl__sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  font-weight: 500;
  padding-left: 0.4em;
  opacity: 0.6;
}
.news-wrap__ttl__main {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 24px;
}
.news-wrap__ttl__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.news-wrap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1020px;
  gap: 0 80px;
}
.news-wrap__item:nth-child(odd) {
  margin-top: 60px;
}
.news-wrap__item__link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-wrap__item__link:hover {
  transform: translateY(-6px);
}
.news-wrap__item__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}
.news-wrap__item__link:hover .news-wrap__item__img {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.news-wrap__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-wrap__item__link:hover .news-wrap__item__img img {
  transform: scale(1.08);
}
.news-wrap__item__ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
.news-wrap__item__link:hover .news-wrap__item__ttl {
  opacity: 0.7;
}
.news-wrap__item__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #ffffff;
}
.news-wrap__item__cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-family: var(--font-en);
}
.news-wrap__item__date {
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.news-wrap__more {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.news-wrap__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 44px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}
.news-wrap__btn:hover {
  background-color: #fff;
  color: #1e1e1e;
  gap: 24px;
}
.news-wrap__btn__arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.news-wrap__btn:hover .news-wrap__btn__arrow {
  transform: translateX(4px);
}

.works {
  padding: 120px 0;
  overflow: hidden;
  background-color: #f5f5f5;
}
.works-wrap__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  color: #000;
}
.works-wrap__ttl__sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  font-weight: 500;
  padding-left: 0.4em;
  opacity: 0.6;
}
.works-wrap__ttl__main {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 24px;
}
.works-wrap__ttl__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}
.works-wrap__group {
  margin-top: 60px;
}
.works-wrap__group:first-of-type {
  margin-top: 0;
}
.works-wrap__label {
  font-family: var(--font-ja);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #1e1e1e;
  margin: 0 0 24px;
  padding-left: calc(1% + 12px);
  position: relative;
  display: inline-block;
}
.works-wrap__label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--color-blue);
  vertical-align: middle;
  margin-right: 16px;
  transform: translateY(-3px);
}
.works-wrap__slider {
  width: 98%;
  margin: 0 auto;
}
.works-wrap__slide {
  padding: 0 12px;
  box-sizing: border-box;
}
.works-wrap__slide__img {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
}
.works-wrap__slide__img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.works-wrap__slide__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.works-wrap__slide__img:hover img {
  transform: scale(1.05);
}
.recruit {
  padding: 160px 0;
  background-image: url(../img/re.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}
.recruit-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.recruit-wrap__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.recruit-wrap__ttl__sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  font-weight: 500;
  padding-left: 0.4em;
  opacity: 0.85;
}
.recruit-wrap__ttl__main {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 24px;
}
.recruit-wrap__ttl__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.recruit-wrap__txt {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.recruit-wrap__action {
  display: flex;
  justify-content: center;
}
.recruit-wrap__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 44px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}
.recruit-wrap__btn:hover {
  background-color: #fff;
  color: #000;
  gap: 24px;
}
.recruit-wrap__btn__arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.recruit-wrap__btn:hover .recruit-wrap__btn__arrow {
  transform: translateX(4px);
}
@media (max-width: 1280px) {
  .service-wrap__top {
    gap: 0;
  }
  .service-wrap__item {
    gap: 0;
  }
}
@media (max-width: 1000px) {
  .service-wrap__top {
    flex-direction: column;
    gap: 32px;
  }
  .service-wrap__item {
    flex-direction: column;
    gap: 16px;
    padding: 32px 4px;
  }
  .service-wrap__ttl {
    width: 100%;
    align-items: flex-start;
  }
  .service-wrap__item__head {
    width: 100%;
    gap: 8px;
  }
  .service-wrap__list {
    width: 100%;
  }
  .service-wrap__item__desc {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .top {
    padding-top: 80px;
  }

  .about-wrap {
    padding: 100px 0 110px;
    gap: 64px;
  }
  .about-wrap__head {
    padding-bottom: 40px;
    line-height: 1.9;
    letter-spacing: 0.12em;
  }
  .about-wrap__head::after {
    height: 28px;
  }
  .about-wrap__txt {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.06em;
    padding: 0 6%;
  }
  .about-wrap__img {
    width: 140px;
  }

  .service {
    padding: 80px 0;
  }
  .service-wrap__ttl__main {
    font-size: 56px;
  }
  .service-wrap__list {
    margin-top: 0;
  }
  .service-wrap__item__num {
    font-size: 32px;
  }
  .service-wrap__item__name {
    font-size: 18px;
  }
  .service-wrap__item__desc {
    font-size: 14px;
    line-height: 1.9;
  }
  .service-wrap__bottom {
    margin-top: 72px;
  }
  .service-wrap__bottom__lead {
    margin-bottom: 32px;
  }
  .service-wrap__bottom__cross {
    gap: 4px 16px;
  }
  .service-wrap__bottom__txt {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .news {
    padding: 80px 0;
  }
  .news-wrap__ttl {
    margin-bottom: 48px;
  }
  .news-wrap__ttl__main {
    font-size: 56px;
  }
  .news-wrap__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-wrap__item:nth-child(odd) {
    margin-top: 0;
  }
  .news-wrap__item__ttl {
    font-size: 16px;
  }
  .news-wrap__more {
    margin-top: 56px;
  }
  .news-wrap__btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .works {
    padding: 80px 0;
  }
  .works-wrap__ttl {
    margin-bottom: 40px;
  }
  .works-wrap__ttl__main {
    font-size: 56px;
  }
  .works-wrap__group {
    margin-top: 48px;
  }
  .works-wrap__label {
    font-size: 16px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    padding-left: 16px;
  }
  .works-wrap__label::before {
    width: 20px;
    margin-right: 10px;
  }
  .works-wrap__slide {
    padding: 0 8px;
  }

  .recruit {
    padding: 100px 0;
  }
  .recruit-wrap__ttl {
    margin-bottom: 32px;
  }
  .recruit-wrap__txt {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 32px;
    padding: 0 16px;
  }
  .recruit-wrap__btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}
