@charset "UTF-8";
/* =========================
  FV
========================= */

.fv {
  position: relative;
  overflow: visible;
  z-index: 10;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  margin: 0 auto; 
  /* overflow: hidden; */
  background: var(--color-white);
}

.fv-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.fv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.fv-video-main {
  opacity: 1;
  z-index: 1;
}

.fv-video-loop {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.fv-content {
  position: absolute;
  left: 9%;
  bottom: 70px;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.fv-title {
  position: relative;
  margin: 0;
  font-size: 74px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  text-shadow:
    4px 4px 4px #fff,
    0 0 8px #fff,
    0 0 12px #fff;
  opacity: 1;
}

.fv-line {
  display: block;
}

.fv-line span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-16px);
  animation: fvCharUp 0.5s ease forwards;
}

/* 1行目 */
.fv-line:nth-child(1) span:nth-child(1) { animation-delay: 2.8s; }
.fv-line:nth-child(1) span:nth-child(2) { animation-delay: 2.92s; }
.fv-line:nth-child(1) span:nth-child(3) { animation-delay: 3.04s; }
.fv-line:nth-child(1) span:nth-child(4) { animation-delay: 3.16s; }
.fv-line:nth-child(1) span:nth-child(5) { animation-delay: 3.28s; }
.fv-line:nth-child(1) span:nth-child(6) { animation-delay: 3.40s; }

/* 2行目 */
.fv-line:nth-child(2) span:nth-child(1) { animation-delay: 3.56s; }
.fv-line:nth-child(2) span:nth-child(2) { animation-delay: 3.68s; }
.fv-line:nth-child(2) span:nth-child(3) { animation-delay: 3.80s; }
.fv-line:nth-child(2) span:nth-child(4) { animation-delay: 3.92s; }

.fv-sub {
  position: absolute;
  left: 300px;
  top: 120px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--color-navy);
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff;
  opacity: 0;
  transform: translateX(-20px);
  animation: fvTextSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 4.1s;
  font-style: italic;
}

.fv-title,
.fv-sub,
.fv-text {
  text-shadow:
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px rgba(255, 255, 255, 0.95)
}

.fv-title {
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.fv-sub {
  letter-spacing: 0.04em;
  
}

.fv-text {
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.fv-sub-value {
  margin-left: 0.35em;
}

/* 説明文 */
.fv-text {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fvTextUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 4.5s;
}

.fv-scroll {
  position: absolute;
  left: 60px;
  bottom: -30px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fv-scroll__text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.08em;
}

.fv-scroll__line {
  position: relative;
  width: 2px;
  height: 90px;
  background: rgba(20, 63, 135, 0.3);
  overflow: hidden;
}

.fv-scroll__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-navy);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    top: 70px; /* ← 線の長さに合わせる */
    opacity: 1;
  }

  100% {
    top: 80px;
    opacity: 0;
  }
}

@keyframes fvTextSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvCharUp {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvTextUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================
  FV News
========================= */

.fv-news {
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: 20;

  max-width: 570px;
  width: calc(100% - 40px);

  display: flex;
  align-items: center;
  gap: 34px;

  padding: 13px 56px 13px 52px;
  background: #e1e1e1;
  border-radius: 100px 0 0 100px;
  color: var(--color-navy);
}

.fv-news__title {
  flex-shrink: 0;
  text-align: center;
}

.fv-news__title span {
  display: block;
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* .fv-news__meta {
  padding-top: 20px;
} */

.fv-news__title small {
  display: block;
  /* margin-top: 6px; */
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.22em;
}

.fv-news__body {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
}

.fv-news__body time {
  display: inline-block;
  font-style: italic;
  font-family: var(--font-en);
  margin: 20px 18px 0 0;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.fv-news__label {
  display: inline-block;
  padding: 4px 18px;
  background: var(--color-navy);
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.fv-news__body p {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.fv-news__title-link {
  color: inherit;
  text-decoration: none;
}

.fv-news__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4px;
  padding-right: 50px;
  gap: 10px;

  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;

  color: var(--color-navy);
  text-decoration: none;
  transition: transform 0.3s;
}

.fv-news__more:hover {
  transform: translateX(2px);
}

.fv-news__more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 18px;
  background: #fff;
  border-radius: 999px;

  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s, background 0.3s, color 0.3s;
  position: relative;
  top: 4px;
}

.fv-news__more:hover .arrow {
  transform: translateX(4px);
  background: var(--color-navy);
  color: #fff;
}


/* =========================
  About / 会社概要
========================= */

.about {
  position: relative;
  padding-top: 140px;
  background: linear-gradient(180deg, rgba(203, 220, 235, 0.19) 0%, rgba(203, 220, 235, 0.19) calc(350 / 1440 * 100vw), #fff calc(350 / 1440 * 100vw), #fff 100%);
  overflow: visible;
  z-index: 1;
}

.about::before {
  position: absolute;
  top: min(calc(40 / 1440 * 100vw), 40px);
  left: 0;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1440 / 400;
  background: url('../img/index/bg_cloud.png') no-repeat;
  background-size: contain;
  content: '';
}

.about::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -80px;
  width: 110%;
  height: 180px;
  background: #fff;
  border-radius: 0 0 50% 50%;
  z-index: 1;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;  
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img {
  flex: 0 0 calc(620 / 1440 * 100vw);
  margin-left: calc((100vw - 1200px) / -2);
  overflow: hidden;
  border-radius: 0 30px 30px 0;
}

.about-img img {
  width: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.about-img img.active {
  clip-path: inset(0 0% 0 0);
}

.about-content {
  max-width: 460px;
  padding-left: 0;
  flex: 1;
  margin-left: auto;
}

.about-title {
  position: relative;
  font-size: 78px;
  font-weight: 700;
  font-family: var(--font-en);
  font-style: italic;
  line-height: 1.2;
  color: var(--color-gray);
  margin-bottom: 0;
  letter-spacing: 0.08em;
  /* margin-top: 40px; */
}

.about-lead {
  font-size: 24px;    
  font-weight: 600;
  color: var(--color-navy); 
  letter-spacing: 0.08em;   
  max-width: 400px;     
  line-height: 1.5;
  margin: 24px 0 20px 56px;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  width: 100%;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
  font-weight: 700;
}

.about-desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;  
  margin: 0 0 18px 56px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  align-self: flex-end;
  background: var(--color-blue);
  color: #fff;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  width: 190px; 
  font-size: 14px;
  position: relative;
  top: 30px;
}

.about-btn .arrow {
  width: 42px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}

.about-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #608BC1;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

.about-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #608BC1;
  border-right: 2px solid #608BC1;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s;
}

.about-btn:hover .arrow {
  transform: translateX(4px);
  background: var(--color-blue);
}

.about-btn:hover .arrow::before {
  background: #fff;
}

.about-btn:hover .arrow::after {
  border-color: #fff;
}

.about-illust {
  position: absolute;
  left: 60px;   
  bottom: -170px;   
  width: 300px;
}

.about-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.about-illust-person {
  position: absolute;
  right: 105px;  
  bottom: 0; 
  width: 100px;
}

.about-illust,
.about-illust-person {
  z-index: 10;
}

.about-illust-person img {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================
  Service セクション
========================= */

.service {
  position: relative;
  background: #d9d9d9;
  padding: 120px 20px 0;
  margin-top: -40px;
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 0 60px;
}

.service-slider-wrap {
  position: relative;
}
.service-list {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.service-list::-webkit-scrollbar {
  display: none;
}
.service-nav {
  position: absolute;
  top: calc(50% - 22px);
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.service-nav:hover { opacity: 0.8; }
.service-nav.prev { left: -20px; }
.service-nav.next { right: -20px; }

.service-card {
  flex: 0 0 calc((100% - 28px * 3) / 4);
  display: block;
  color: inherit;
  cursor: pointer;
  scroll-snap-align: start;
}

.service-card-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.service-card:hover img {
  opacity: 0.9;
}

.service-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.service-card-title > span:first-child {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
  background: #fff;
  color: var(--color-navy);
  box-shadow: inset 0 0 0 2px var(--color-navy);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 18px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
  align-self: flex-start;
  margin-top: 5px;
}

.service-title {
  font-size: 78px;
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: italic;
  margin: 0;
}

.service-title-ja {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  margin: 0;
}

.service-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}

.service-title-box {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  /* margin-left: 60px; */
}

.service-illust {
  margin-left: 40px;
  align-self: flex-end;
}

.service-illust img {
  width: 150px; 
  display: block;
}

.service-illust-tree {
  position: absolute;
  right: 20px;
  bottom: -80px; 
  z-index: 5;
}

.service-illust-tree img {
  width: 120px;
  display: block;
}


/* =========================
  Works セクション
========================= */

.works {
  padding: 60px 0;
  background: #F7F7F7;
  overflow: hidden;
}

.works-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 40px;
}

.works-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: flex-end;
  margin-right: 40px;
}

.works-head-left {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.works-title {
  position: relative;
  font-family: var(--font-en);
  font-size: 86px;
  font-weight: 700;
  color: var(--color-gray);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.04em;
  font-style: italic;
}

.works-title-ja {
  margin-top: 12px;
  font-size: 24px;
  color: var(--color-navy);
  font-weight: 700;
}

.works-wrapper {
  position: relative;
  overflow: visible;
}

.works-arrow {
  position: absolute;
  top: -55px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--color-navy);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.works-arrow:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.works-arrow:active {
  transform: translateY(-3px) scale(0.95);
}

.works-arrow.prev {
  right: 70px;
}

.works-arrow.next {
  right: 20px;
}

.works-list {
  margin-top: 80px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  width: 100vw;
  margin-left: calc(((100vw - 1200px) / 2) * -1);
  padding-left: calc((100vw - 1200px) / 2 + 40px);
  padding-right: 40px;
  padding-bottom: 8px;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.works-list::-webkit-scrollbar {
  display: none; 
}

.works-card {
  flex: 0 0 274px;
  background: #6f8fbd;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.works-card img {
  width: calc(100% - 20px);
  aspect-ratio: 248 / 154;
  display: block;
  object-fit: cover;
  margin: 10px auto 0; 
  border-radius: 16px;
}

.works-body {
  position: relative;
  padding: 20px 20px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  letter-spacing: 0.1em;
}

.works-area {
  display: inline-block;      
  padding: 4px 10px;  
  background: #fff; 
  color: var(--color-black);   
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;   
  line-height: 1;
}

.works-date {
  font-size: 14px;
  margin: 10px 0 0;
}

.works-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  /* padding-right: 34px; */
  width: 100%;
}

.works-btn {
  width: 44px;
  height: 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--color-navy);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 14px;
  margin-left: auto;
  position: static;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.works-card:hover .works-btn {
  background: var(--color-navy);
  color: #fff;
  transform: translateX(4px);
}

.works-more {
  text-align: right;
  padding-left: 40px;
  /* transform: translateX(-60px); */
  font-style: normal;
  font-style: italic;
}

.works-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  letter-spacing: 0.1em; 
  font-weight: 700;
  font-size: 26px;
  /* font-style: normal; */
  font-style: italic;
  transform: translateX(-60px);
}

.more-text {
  font-family: var(--font-en);
  font-style: italic;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 24px;
  background: #d9d9d9; 
  border-radius: 6px; 
  color: #fff;
  overflow: visible;
  font-style: normal;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.more-arrow {
  font-size: 22px;
  line-height: 1;
  font-style: normal;
  transform: translateY(-1px);
}

.works-more a:hover .more-btn {
  background: var(--color-navy);
  color: #fff;
  transform: translateX(4px); 
}


/* =========================
  Strength 全体
========================= */
.strength {
  position: relative;
  padding: 90px 20px 110px;
  background: #D9D9D9;
}

.strength-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.strength-car {
  position: absolute;
  top: -140px;
  left: -40px;
  width: 120px;
  z-index: 5;
}

.strength-illust {
  position: absolute;
  top: -20px;
  right: 0;
  width: 240px;
}

.strength-person {
  position: absolute;
  top: 30%;
  left: -50px;
  width: 100px;
  z-index: 5;
}

.strength-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 60px;
}

.strength-card-head {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 8px 0 24px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.strength-card-reverse .strength-card-head {
  transform: translateX(30px);
}

.strength-card-head.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.strength-card-reverse .strength-img {
  margin-left: 40px;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 60px; 
}

.strength-title {
  font-family: var(--font-en);
  font-size: 80px;
  color: var(--color-navy);
  font-style: italic;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}

.strength-title-ja {
  font-size: 22px;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.1em;
  transform: translateY(-6px);
}

.strength-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.strength-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 80px;
  min-height: 300px;
}

.strength-card-reverse .strength-text {
  padding: 0;
}

.strength-card-reverse {
  padding-right: 120px;
}

.strength-text {
  flex: 1;
  padding: 0 40px 0 60px;
}

.strength-point {
  color: var(--color-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  /* letter-spacing: 0.12em; */
}

.strength-point span {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 60px;
  line-height: 0.9;
  font-style: italic;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
  text-align: left;
  color: var(--color-blue);
  margin-left: -10px;
}

.strength-point span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: var(--color-blue);
}

.strength-text h3 {
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.strength-text > p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.strength-img {
  flex: 0 0 410px;
  overflow: hidden;
  height: fit-content;
  border-radius: 15px;
}

.strength-img img {
  width: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}
.strength-img img.is-revealed {
  clip-path: inset(0 0% 0 0);
}

.strength-person-bottom {
  position: absolute;
  right: 40px;
  bottom: -140px;
  width: 120px;
  z-index: 5;
}

/* =========================
  Recruitment セクション
========================= */

.recruitment {
  position: relative;
  padding: 70px 20px 90px;
  background: #F7F7F7;
  overflow: visible;
}

.recruitment-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.recruitment-head {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto 90px;
  gap: 20px;
}

.recruitment-title {
  position: relative;
  margin: 0 auto;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gray);
  font-style: italic;
  letter-spacing: 0.04em;
}

.recruitment-sub {
  font-size: 26px;
  display: block;
  text-align: right;
  margin-top: 4px;
  font-weight: bold;
  color: var(--color-navy);
  letter-spacing: 0.1em;
}

.recruitment-content {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.recruitment-text-box {
  max-width: 370px;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  order: 1;
}

.recruitment-text-box,
.recruitment-img {
  position: relative;
  z-index: 2;
}

.recruitment-lead {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.2em;
  max-width: 460px;
  width: 100%;
  line-height: 1.6;
  margin: 0 0 24px;
}

.recruitment-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 22px;
  font-weight: 700;
}

.recruitment-btn {
  display: inline-flex;
  width: 180px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-left: 140px;
  margin-top: 20px;
  padding: 9px 20px;
  background: #608BC1;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

.recruitment-btn .arrow {
  width: 40px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}

.recruitment-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #608BC1;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

.recruitment-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #608BC1;
  border-right: 2px solid #608BC1;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s;
}

.recruitment-btn:hover .arrow {
  transform: translateX(4px);
  background: #608BC1;
}

.recruitment-btn:hover .arrow::before {
  background: #fff;
}

.recruitment-btn:hover .arrow::after {
  border-color: #fff;
}

.recruitment-space {display: none;}

.recruitment-img {
  width: 600px;
  border-radius: 40px;
  overflow: hidden;
  order: 2;
}

.recruitment-img img {
  width: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}
.recruitment-img img.is-revealed {
  clip-path: inset(0 0% 0 0);
}

.recruitment-illust {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
}

.recruitment-person {
  position: absolute;
  left: -50px;
  bottom: -84px;
  width: 130px;
  z-index: 5;
  display: block;
  pointer-events: none;
}


/* =========================
  News セクション
========================= */

.news {
  position: relative;
  padding: 60px 20px 80px;
  background: #fff;
  overflow: hidden;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-head {
  margin-bottom: 20px;
}

.news-title {
  margin-top: -90px;
  margin-left: calc(50% - 52vw);
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  color: #F7F7F7;
  font-style: italic;
}

.news-arrow {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  z-index: 10;
  margin: -30px 30px 0 0;
}

.news-arrow button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  color: var(--color-navy);
  font-weight: 900;
  font-size: 20px;
  margin-left: 10px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.news-arrow button:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-3px);
}

.news-slider {
  display: flex;
  gap: 46px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-left: 120px;
  scroll-behavior: smooth;
  padding-bottom: 26px;
  margin-right: calc(50% - 50vw);
}

.news-slider::-webkit-scrollbar {
  display: none; 
}

.news-card {
  display: block;
  width: 196px;
  background: #fff;
  padding: 0 0 20px 0;
  padding-bottom: 24px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover {
  opacity: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.news-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  margin-bottom: 8px;
  display: block;
}

.news-date {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.06em;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 0;
}

.news-label {
  font-size: 10px;
  font-weight: 600;
  background: var(--color-navy);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.news-text {
  font-size: 12px;
  margin: 4px 14px 0;
  line-height: 1.6;
}

.news-more {
  text-align: right;
  font-style: italic;
  margin-right: 40px;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  letter-spacing: 0.1em; 
  font-weight: 700;
  font-size: 22px;
}

.more-btn-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 24px;
  background: #d9d9d9; 
  border-radius: 6px; 
  color: #fff;
  font-size: 20px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.more-btn-news a:hover .more-btn-news {
  background: var(--color-navy);
  color: #fff;
  transform: translateX(4px); 
}


/* =========================
  Illustration floating
========================= */
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.about-illust {
  animation: float-bob 3.6s ease-in-out infinite;
}
.about-illust-person {
  animation: float-bob 3.2s ease-in-out infinite 0.7s;
}
.service-illust {
  animation: float-bob 3.8s ease-in-out infinite 0.4s;
}
.service-illust-tree {
  animation: float-bob 4.0s ease-in-out infinite 1.2s;
}
.strength-car {
  animation: float-bob 3.0s ease-in-out infinite 0.2s;
}
.strength-person {
  animation: float-bob 3.5s ease-in-out infinite 0.9s;
}
.strength-person-bottom {
  animation: float-bob 3.3s ease-in-out infinite 1.5s;
}

@media (prefers-reduced-motion: reduce) {
  .about-illust,
  .about-illust-person,
  .service-illust,
  .service-illust-tree,
  .strength-car,
  .strength-person,
  .strength-person-bottom {
    animation: none;
  }
}

/* =========================
  Responsive
========================= */
@media screen and (max-width: 1200px) {
  .about-img {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1100px) {
  .about-illust-person {
    right: 5%;
    bottom: 370px;
    width: 80px;
  }

  .recruitment-person {
    bottom: -114px;
    width: 100px;
  }

}


@media screen and (max-width: 1024px) {
/* =========================
  FV セクション
========================= */

.fv-news__title span {
  margin-left: 30px;
  font-size: 28px;
}

.fv-news__title small {
  font-size: 11px;
}

.fv-news__date {
  font-size: 14px;
}

.fv-news__text {
  font-size: 14px;
  padding-right: 30px;
}

.fv-news {
  width: 80%;
  max-width: 500px;
  position: absolute;
  right: 0;
  bottom: -70px;
  z-index: 20;
  padding: 8px 20px;
}

.fv-scroll {
  display: none;
}

.fv-line {
  margin-left: 30px;
}

.fv-text {
  margin-left: 30px;
}


/* =========================
   Strength セクション
========================= */


.service-illust-tree {
  position: absolute;
  right: 20px;
  bottom: -140px; 
  z-index: 5;
}


  /* =========================
  works
========================= */

  .works {
  padding: 100px 0 60px 0;
  }

  .works-head {
    justify-content: flex-start;
    margin-right: 0;
  }

  .works-head-left {
    justify-content: flex-start;
  }

  .more-btn {
    background: #fff;
    color: var(--color-navy);
    width: 60px;
    height: 26px;
  }


/* =========================
  strength
========================= */
.strength-text h3 {
  writing-mode: horizontal-tb;
  white-space: normal;
}

.strength-card-head {
  font-size: 18px;
  line-height: 1.6;
  display: block;
  width: 100%;
}

.strength-card {
  gap: 20px;
  padding: 30px;
}

.strength-card-reverse {
  padding-right: 30px;
}

.strength-card-reverse .strength-img {
  margin-left: 0;
}

.strength-text {
  padding: 0;
}

.strength-img {
  flex: 0 0 40%;
}

.strength-person {
  top: 34%;
  left: unset;
  right: 10px;
  width: 80px;
}

.strength-car {
  left: 10px;
}

.strength-illust {
  top: -120px;
  right: 10px;
}

.strength-person-bottom {
  bottom: -110px;
  width: 100px;
}



/* =========================
  recruitment
========================= */
.recruitment-content {
  justify-content: center;
}

.recruitment-img {
  max-width: 400px;
  height: fit-content;
}

}


@media screen and (max-width: 768px) {
  /* =========================
    FV セクション
  ========================= */

.fv {
  height: 640px;
  min-height: 640px;
  position: relative;
}

.fv-video {
  height: 100%;
}

.fv-content {
  position: absolute;
  gap: 10px;
  left: 16px;
  right: 16px;
  bottom: 105px;
  width: auto;
}

.fv-title {
  font-size: 36px;
}

.fv-line {
  margin-left: 0;
}

.fv-sub {
  left: 140px;
  top: 52px;
  font-size: 16px;
  line-height: 1.2;
}

.fv-sub-value {
  margin-left: 0;
}

.fv-head {
  align-items: flex-end;
  position: relative;
}

.sp-br {
  display: inline;
}

.fv-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  margin-left: 0;
  text-shadow:
    0 0 10px #fff,
    0 0 16px #fff,
    0 0 22px #fff,
    0 0 28px rgba(255, 255, 255, 0.9);
}

.fv-news {
  padding: 8px 20px;
  gap: 14px;
  bottom: -40px;
  width: 90%;
}

.fv-news__title span {
  margin-left: 0;
  font-size: 20px;
}

.fv-news__title small {
  font-size: 10px;
}

.fv-news__body time {
  margin: 0 12px 0 0;
  font-size: 11px;
}

.fv-news__label {
  padding: 2px 8px;
  font-size: 11px;
}

.fv-news__body p {
  margin: 2px 0 0;
  font-size: 13px;
}

.fv-news__more {
  margin-top: 2px;
  padding-right: 10px;
  font-size: 12px;
}

.fv-news__more .arrow {
  width: 36px;
  height: 12px;
  font-size: 12px;
}


/* =========================
    about
  ========================= */
.about {
  padding: 100px 0 40px;
  position: relative;  
  overflow: visible; 
  background: linear-gradient(180deg, rgba(203, 220, 235, 0.19) 0%, rgba(203, 220, 235, 0.19) calc(130 / 375 * 100vw), #fff calc(130 / 375 * 100vw), #fff 100%);
}

.about::before {
  top: min(calc(60 / 375 * 100vw), 60px);
}

.about::after {
  left: -15%;
  bottom: calc(-40 / 375 * 100vw);
  width: 130%;
  height: calc(60 / 375 * 100vw);
}

.about-inner {
  align-items: flex-start;
  gap: 20px;
}

.about-img {
  flex: 0 0 calc(140 / 375 * 100vw);
  margin: 0;
  margin-top: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 0 15px 15px 0;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1;
  padding-right: 16px;
}

.about-title {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 12px;
}

.about-lead {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.about-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.about-btn {
  width: 180px;
  padding: 12px 20px 12px 12px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.about-btn .arrow {
  width: 42px;
  height: 20px;
}

.about-illust {
  left: 10px;
  bottom: -40px;
  width: 140px;
}

.about-illust img {
  width: 100%;
}

.about-illust-person {
  right: unset;
  left: 30px;
  bottom: 70px;
  width: 50px;
  transform: scale(-1, 1);
}


/* =========================
    Service セクション
  ========================= */
.service {
  padding: 100px 20px 40px;
  margin-top: 0;
}

.service-inner {
  max-width: unset;
  padding: 0;
}

.service-title {
  font-size: 36px;
  white-space: nowrap;
}

.service-title-ja {
  font-size: 14px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}

.service-card img {
  border-radius: 12px;
}

.service-card-title {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.service-card-title > span:first-child {
  font-size: 12px;
}

.service-arrow {
  width: 28px;
  height: 14px;
  font-size: 12px;
}

.service-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-title-box {
  display: block;
  margin-left: 0;
}

.service-illust img {
  width: 180px;
}

.service-illust-tree {
  right: 20px;
  bottom: -60px;
}

.service-illust-tree img {
  width: 64px;
}


/* =========================
  works
========================= */

.works {
  padding: 60px 20px 60px;
}

.works-inner {
  max-width: unset;
  padding: 0;
}

.works-head-left {
  gap: 12px;
}

.works-title {
  font-size: 40px;
}

.works-title-ja {
  margin-bottom: 2px;
  font-size: 14px;
}

.works-arrow.prev {right: 54px;}
.works-arrow.next {right: 0px;}

.works-list {
  margin-top: 40px;
  gap: 12px;
  margin-left: -20px;
  padding-left: 20px;
  width: 100vw;
  padding-bottom: 12px;
}

.works-card {
  flex: 0 0 calc(210 / 375 * 100vw);
}

.works-body {
  padding: 12px;
}

.works-area {
  padding: 3px 6px;;
  font-size: 12px;
}

.works-date {
  font-size: 12px;
  margin: 8px 0 0;
}

.works-name {
  font-size: 15px;
}

.works-more a {
  font-size: 16px;
  transform: unset;
}


/* =========================
    Strength セクション
  ========================= */
.strength {
  padding: 60px 20px 70px;
}

.strength-inner {
  max-width: unset;
}

.strength-car {
  top: -90px;
  left: 10px;
  width: 80px;
}

.strength-illust {
  top: 14px;
  right: -20px;
  width: 130px;
}

.strength-person {
  display: none;
}

.strength-person-bottom {
  bottom: -40px;
  width: 60px;
}

.strength-head {
  flex-direction: column; 
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.strength-title {
  font-size: 40px;
}

.strength-title-ja {
  font-size: 14px;
}

.strength-list {
  gap: 40px;
}

.strength-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 12px;
  padding: 20px;
  border-radius: 10px;
  align-items: start;
}

.strength-point {
  align-items: center;
  margin-bottom: 8px;
}

.strength-point span {
  font-size: 40px;
}

.strength-text h3 {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.strength-card-reverse .strength-img {
  grid-column: 1;
}

.strength-card-reverse .strength-card-head {
  grid-column: 2;
}

.strength-card-head {
  grid-column: 1 / 2;
  grid-row: 1;
  display: block;
  width: 110%;
  margin: 0;
}

.strength-img {
  width: 90%;
  grid-column: 2 / 3;
  grid-row: 1;
  margin-left: auto;
}

.strength-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.strength-text {
  display: contents;
}

.strength-text > p {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 14px;
  line-height: 1.8;
}

.strength-card-reverse {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 20px 16px;
    align-items: start;
    padding: 32px 24px;
  }

  .strength-card-reverse .strength-img {
    grid-column: 1;
    grid-row: 1;
  }

  .strength-card-reverse .strength-card-head {
    grid-column: 2;
    grid-row: 1;
  }

  .strength-card-reverse .strength-text {
    display: contents;
  }

  .strength-card-reverse .strength-text > p {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .strength-card-reverse .strength-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

/* =========================
    Recruitment セクション
  ========================= */
.recruitment {
  padding: 60px 20px 80px;
  overflow: hidden;
}

.recruitment-head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 30px;
}

.recruitment-title {
  font-size: 37px; 
}

.recruitment-sub {
  font-size: 12px;
}

.recruitment-content {
  display: block;
}

.recruitment-person {
  left: -10px;
  bottom: -68px;
  width: 50px;
}

.recruitment-text-box {
  display: block;
  max-width: unset;
  margin-top: 0;
}

.recruitment-lead {
  margin: 0 0 20px;
  font-size: 20px;
  max-width: unset;
  width: unset;
}

.recruitment-text {
  margin: 0 0 10px;
  font-size: 14px;
  max-width: unset;
  width: unset;
}

.recruitment-btn {
  margin-top: 10px;
  margin-left: auto;
  width: 160px;
}

.recruitment-space {
  display: block;
  float: right;
  height: 180px;
}

.recruitment-img {
  float: right;
  clear: both;
  margin: 20px -20px 0 20px;
  max-width: unset;
  width: 150px;
  aspect-ratio: 5 / 4;
  border-radius: 12px 0 0 12px;
}

.recruitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* =========================
    News セクション
  ========================= */
.news {
  padding: 50px 20px 60px;
}

.news-inner {
  max-width: unset;
}
.news-head {
  margin-bottom: 20px;
}

.news-title {
  margin-top: 0;
  font-size: 70px;
  line-height: 1;
  margin-left: -30px;
}

.news-arrow {
  margin: -30px 0 0 0
}

.news-slider {
  gap: 12px;
  margin-left: -20px;
  padding-left: 20px;
  width: 100vw;
  padding-bottom: 20px;
}

.news-more {
  margin-right: 0;
}

.news-more a {
  font-size: 16px;
}

}


