@charset "UTF-8";

/* ========================================
   Reset / Base
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  line-height: 1.6;
  padding-top: 66px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
   Header
   ======================================== */
.header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.4s ease;
}

.header.is-hidden {
  top: -100px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
}

/* --- Header Logo --- */
.header__logo {
  display: block;
  flex-shrink: 0;
}

.header__logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* --- Header Navigation --- */
.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__menu-link {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #104685, #4087da);
  transition: width 0.3s ease, left 0.3s ease;
}

.header__menu-link:hover::after {
  width: 100%;
  left: 0;
}

/* --- Contact Button --- */
.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 36px;
  background: url(../images/bg1.png) center / cover no-repeat;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.header__contact-btn:hover {
  opacity: 0.8;
}

/* ========================================
   Hero / Main Visual
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* --- Hero Background Layers --- */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: url(../images/hero-overlay.png) center / cover no-repeat;
}

.hero__bg-multiply {
  position: absolute;
  inset: 0;
  background-color: #c9c9c9;
  mix-blend-mode: multiply;
}

.hero__bg-gradient {
  position: absolute;
  top: 97px;
  left: 0;
  width: 100%;
  height: 305px;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.32) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* --- Hero Content --- */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 101px 60px;
}

/* --- Hero Subtitle --- */
.hero__subtitle {
  padding-top: 74px;
  font-family: "DIN 2014", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.8;
}

/* --- Hero Heading --- */
.hero__heading {
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 4.8px;
  line-height: 1.2;
}

.hero__heading-line {
  display: block;
  color: #fff;
  white-space: nowrap;
}

.hero__heading-line--accent {
  color: #104685;
  text-shadow: 0px 0px 10px white;
}

/* --- Hero Description --- */
.hero__description {
  margin-top: 52px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 1.8;
}

/* --- Hero Bottom (Stats + CTA) --- */
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

/* --- Hero Stats --- */
.hero__stats {
  flex-shrink: 0;
}

.hero__stats-img {
  height: 161px;
  width: auto;
}

/* --- Hero CTA Button --- */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 20px 3px 3px;
  border-radius: 999px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  transition: justify-content 0s, padding 0.4s ease;
}

.hero__cta:hover {
  justify-content: flex-end;
  padding: 3px 3px 3px 20px;
}

.hero__cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 55px;
  padding: 14px 40px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   About Us
   ======================================== */
.about {
  background-color: #fff;
  padding: 120px 20px;
}

.about__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

/* --- About Heading --- */
.about__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__heading-sub {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.about__heading-main {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #104685;
}

.about__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- About Text --- */
.about__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 2.2;
  color: #231815;
}

/* --- About Button --- */
.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 62px;
  padding: 3px 20px 3px 3px;
  border-radius: 999px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  transition: padding 0.4s ease;
}

.about__btn:hover {
  justify-content: flex-end;
  padding: 3px 3px 3px 20px;
}

.about__btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 55px;
  padding: 14px 40px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   Member
   ======================================== */
.member {
  position: relative;
  background-color: #fff;
  padding: 120px 20px;
  background-image: url(../images/btn-bg.png);
  background-size: cover;
  background-position: center;
}

.member::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
}

/* --- Member Gradient Line --- */
.member__line {
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: 3px;
  margin: 0 auto 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.member__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Member Heading --- */
.member__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.member__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.member__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Member Content (Two-column) --- */
.member__content {
  display: flex;
  gap: 40px;
}

/* --- Member Profile (Left) --- */
.member__profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  width: 540px;
}

.member__photo {
  width: 540px;
  border-radius: 20px;
  overflow: hidden;
}

.member__photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.member__info {
  display: grid;
  grid-template-columns: 1fr;
}

.member__role {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #000;
}

.member__name {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 16px;
  line-height: 1.6;
  color: #000;
}

.member__name-en {
  margin-top: 6px;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #104685;
}

/* --- Member Career --- */
.member__career {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #231815;
}

.member__career-title {
  font-weight: 700;
  letter-spacing: 14px;
  line-height: 1.6;
}

.member__career-list {
  list-style: none;
  line-height: 1.6;
}

.member__career-list li {
  line-height: 1.6;
}

/* --- Member Message (Right) --- */
.member__message {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 540px;
}

.member__message-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.6;
  color: #104685;
  transform: skewX(-4.75deg);
  text-align: left;
  width: 100%;
}

.member__message-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.member__message-text p + p {
  margin-top: 1em;
}

/* --- Member Button --- */
.member__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 62px;
  padding: 3px 20px 3px 3px;
  border-radius: 999px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  transition: padding 0.4s ease;
}

.member__btn:hover {
  justify-content: flex-end;
  padding: 3px 3px 3px 20px;
}

.member__btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 55px;
  padding: 14px 40px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   MVV (Mission / Vision / Value)
   ======================================== */
.mvv {
  position: relative;
  background-color: #212236;
  padding: 120px 20px;
  overflow: hidden;
}

.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.mvv__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- MVV Gradient Line --- */
.mvv__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

/* --- MVV Heading --- */
.mvv__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.mvv__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.mvv__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

/* --- MVV Mission & Vision Row --- */
.mvv__row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.mvv__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 520px;
}

.mvv__block-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mvv__block-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.mvv__block-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #4087da;
}

.mvv__block-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.mvv__block-text strong {
  font-weight: 700;
}

.mvv__block-text p + p {
  margin-top: 0;
}

/* --- MVV Divider --- */
.mvv__divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #fff;
}

/* --- MVV Value --- */
.mvv__value {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mvv__value-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #4087da;
}

.mvv__value-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.mvv__value-item {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 360px;
}

.mvv__value-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mvv__value-item-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.mvv__value-item-num {
  font-family: "DIN 2014", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #4087da;
}

.mvv__value-item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

/* --- MVV Button --- */
.mvv__btn-wrap {
  display: flex;
  justify-content: center;
}

.mvv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 62px;
  padding: 3px 20px 3px 3px;
  border-radius: 999px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  transition: padding 0.4s ease;
}

.mvv__btn:hover {
  justify-content: flex-end;
  padding: 3px 3px 3px 20px;
}

.mvv__btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 55px;
  padding: 14px 40px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   Initiatives
   ======================================== */
.initiatives {
  background-color: #fff;
  padding: 120px 20px;
}

.initiatives__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Initiatives Gradient Line --- */
.initiatives__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

/* --- Initiatives Heading --- */
.initiatives__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.initiatives__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.initiatives__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Initiatives Cards --- */
.initiatives__cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.initiatives__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.initiatives__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #231815;
}

.initiatives__card-subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #231815;
}

.initiatives__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.initiatives__card-text p + p {
  margin-top: 0.5em;
}

/* ========================================
   Team Banner
   ======================================== */
.team-banner {
  width: 100%;
  height: 400px;
  background: url(../images/team-banner.png) center / cover no-repeat fixed;
}

/* ========================================
   LABS Hero
   ======================================== */
.labs-hero {
  position: relative;
  padding: 120px 20px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  overflow: hidden;
}

.labs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 52, 102, 0.8);
  pointer-events: none;
}

.labs-hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-hero__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.labs-hero__label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.labs-hero__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 4.8px;
  line-height: 1.4;
  color: #fff;
}

.labs-hero__heading--gold {
  color: #caa53f;
}

.labs-hero__catch {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.6;
  color: #caa53f;
  transform: skewX(-4.75deg);
}

.labs-hero__desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #fff;
}

.labs-hero__stats {
  height: auto;
  max-width: 500px;
}

/* ========================================
   LABS Philosophy
   ======================================== */
.labs-philosophy {
  background-color: #083466;
  padding: 120px 20px;
}

.labs-philosophy__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-philosophy__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.labs-philosophy__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.labs-philosophy__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.labs-philosophy__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.labs-philosophy__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

/* ========================================
   LABS Products
   ======================================== */
.labs-products {
  position: relative;
  padding: 120px 20px;
  background-color: #212236;
  overflow: hidden;
}

.labs-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.labs-products__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-products__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.labs-products__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.labs-products__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.labs-products__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.labs-products__intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.labs-products__cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* --- Product Card --- */
.labs-card {
  position: relative;
  width: 360px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #083466;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.25);
}

.labs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.labs-card__tags {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.labs-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  color: #fff;
  margin-left: -1px;
}

.labs-card__number {
  position: relative;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #caa53f;
}

.labs-card__title-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.labs-card__title {
  font-family: "DIN 2014", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.labs-card__subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.8;
  color: #caa53f;
}

.labs-card__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #104685;
}

.labs-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.labs-card__content-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #caa53f;
}

.labs-card__content-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.labs-card__example {
  position: relative;
  border-left: 2px solid #caa53f;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.labs-card__example-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.labs-card__example-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.labs-card__release {
  position: relative;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #caa53f;
}

.labs-card__release-date {
  color: #fff;
}

/* ========================================
   LABS Process (How We Build)
   ======================================== */
.labs-process {
  background-color: #fff;
  padding: 120px 20px;
}

.labs-process__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-process__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.labs-process__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.labs-process__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.labs-process__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

.labs-process__intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #231815;
}

.labs-process__steps {
  display: flex;
}

.labs-process__step {
  width: 280px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.labs-process__step-num {
  display: flex;
  flex-direction: column;
}

.labs-process__step-index {
  font-family: "DIN 2014", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
}

.labs-process__step-name {
  font-family: "DIN 2014", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: #104685;
}

.labs-process__step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

/* ========================================
   LABS Roadmap
   ======================================== */
.labs-roadmap {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.labs-roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.labs-roadmap__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-roadmap__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.labs-roadmap__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.labs-roadmap__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.labs-roadmap__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

.labs-roadmap__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.labs-roadmap__item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.labs-roadmap__date {
  width: 91px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.labs-roadmap__date-text {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #104685;
  text-align: center;
}

.labs-roadmap__date-line {
  width: 1px;
  height: 48px;
  background-color: #083466;
}

.labs-roadmap__detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 40px;
  border-left: 2px solid #caa53f;
  background-color: rgba(8, 52, 102, 0.1);
}

.labs-roadmap__detail-name {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.labs-roadmap__detail-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #083466;
}

/* ========================================
   LABS Catchphrase
   ======================================== */
.labs-catch {
  background-color: #083466;
  padding: 120px 20px;
}

.labs-catch__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.labs-catch__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.labs-catch__text {
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 4.8px;
  line-height: 2;
  color: #fff;
  text-align: center;
}

.labs-catch__arrows {
  width: 82px;
  height: auto;
}

/* ========================================
   Contact Hero
   ======================================== */
.contact-hero {
  position: relative;
  padding: 120px 20px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(16, 70, 133, 0.64);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-hero__label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.contact-hero__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 4.8px;
  line-height: 1.4;
  color: #fff;
}

.contact-hero__desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #fff;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  background-color: #fff;
  padding: 120px 20px;
}

.contact-form__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.contact-form__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* --- Worries (left column) --- */
.contact-form__worries {
  width: 353px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form__worries-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.6;
  color: #231815;
}

.contact-form__worries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__worry-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-form__worry-num {
  width: 30px;
  height: 30px;
  background-color: #6b6b6b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #fff;
  flex-shrink: 0;
}

.contact-form__worry-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
  padding-top: 4px;
}

/* --- Form (right column) --- */
.contact-form__form-area {
  width: 685px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form__form-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #231815;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background-color: #104685;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.contact-form__input {
  width: 100%;
  height: 60px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
}

.contact-form__textarea {
  width: 100%;
  height: 211px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  resize: vertical;
}

.contact-form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.contact-form__checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"]:checked {
  background-color: #104685;
  border-color: #104685;
}

.contact-form__agree {
  display: flex;
  align-items: center;
}

.contact-form__privacy-link {
  color: #231815;
  text-decoration: underline;
}

.contact-form__submit {
  width: 100%;
  padding: 30px 20px;
  background-color: #104685;
  border: none;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form__submit:hover {
  opacity: 0.85;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2f445a;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cta__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 500px;
  height: auto;
  opacity: 0.15;
  pointer-events: none;
  object-fit: contain;
  z-index: 1;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta__heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.cta__label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 99px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.4px;
  text-align: center;
  transition: opacity 0.3s;
}

.cta__btn:hover {
  opacity: 0.85;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #fff;
  padding: 120px 20px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Footer Top --- */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* --- Footer Info (Left) --- */
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 540px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer__company-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-icon {
  width: 21px;
  height: 21px;
  object-fit: cover;
}

.footer__social-icon--note {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.footer__social-link {
  transition: opacity 0.3s;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
}

/* --- Footer Navigation (Right) --- */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__nav-category {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #104685;
  width: 100px;
  flex-shrink: 0;
}

.footer__nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.footer__nav-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #231815;
  transition: opacity 0.3s;
}

.footer__nav-links a:hover {
  opacity: 0.7;
}

/* --- Footer Bottom --- */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  line-height: 1.2;
  color: #231815;
}

.footer__legal {
  display: flex;
  gap: 30px;
}

.footer__legal-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
  transition: opacity 0.3s;
}

.footer__legal-link:hover {
  opacity: 0.7;
}

/* ========================================
   Clients
   ======================================== */
.clients {
  background-color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.clients__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

/* --- Clients Label --- */
.clients__label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Clients Heading --- */
.clients__heading {
  text-align: center;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.clients__heading-text {
  font-size: 32px;
  font-weight: 700;
}

.clients__heading-number {
  font-size: 64px;
  font-weight: 700;
  color: #104685;
}

/* --- Clients Sub --- */
.clients__sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
  text-align: center;
}

/* --- Clients Slider --- */
.clients__slider {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

.clients__slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clients-scroll 40s linear infinite;
}

.clients__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   Service Hero
   ======================================== */
.service-hero {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  pointer-events: none;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 52, 102, 0.8);
  pointer-events: none;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Service Hero Heading --- */
.service-hero__heading {
  display: flex;
  flex-direction: column;
}

.service-hero__label {
  font-family: "DIN 2014", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.service-hero__title {
  margin-top: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 4.8px;
  line-height: 1.4;
  color: #fff;
}

.service-hero__title--accent {
  color: #caa53f;
}

/* --- Service Hero Text --- */
.service-hero__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #fff;
}

/* ========================================
   Approach (3つの関与のかたち)
   ======================================== */
.approach {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  pointer-events: none;
}

.approach::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(16, 70, 133, 0.64);
  pointer-events: none;
}

.approach__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Approach Gradient Line --- */
.approach__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

/* --- Approach Heading --- */
.approach__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.approach__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.approach__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

/* --- Approach Lead --- */
.approach__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

/* --- Approach Cards --- */
.approach__cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.approach__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 360px;
  padding: 40px 20px;
  background-color: #083466;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.25);
}

.approach__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.approach__card-num {
  position: relative;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  width: 100%;
}

.approach__card-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.approach__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.approach__card-en {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
  text-align: center;
}

.approach__card-desc {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}

.approach__card-divider {
  position: relative;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.approach__card-tag {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* ========================================
   Service Detail
   ======================================== */
.svc-detail {
  background-color: #083466;
  padding: 120px 20px;
}

.svc-detail__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Service Detail Gradient Line --- */
.svc-detail__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

/* --- Service Detail Heading --- */
.svc-detail__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.svc-detail__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.svc-detail__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

/* --- Service Detail Content --- */
.svc-detail__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* --- Service Detail Catch --- */
.svc-detail__catch {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.svc-detail__catch-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 2.2;
  color: #caa53f;
  transform: skewX(-4.75deg);
}

/* --- Service Detail Body --- */
.svc-detail__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.svc-detail__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 3;
  color: #fff;
}

/* --- Service Detail Tags --- */
.svc-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  list-style: none;
}

.svc-detail__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.svc-detail__tag::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #caa53f;
  flex-shrink: 0;
}

/* --- Service Detail Note --- */
.svc-detail__note {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.2px;
  line-height: 1.8;
  color: #fff;
}

/* ========================================
   Service Detail Variant 02
   ======================================== */
.svc-detail--02 {
  position: relative;
  background-color: #212236;
}

.svc-detail--02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.svc-detail__desc--lead {
  line-height: 2;
}

/* ========================================
   Service Package Cards
   ======================================== */
.svc-pkg__row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.svc-pkg__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 540px;
  padding: 40px;
  background-color: #083466;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.25);
}

.svc-pkg__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.svc-pkg__num {
  position: relative;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #caa53f;
}

.svc-pkg__header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-pkg__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.svc-pkg__en {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.svc-pkg__desc {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}

/* --- Package Deliverables --- */
.svc-pkg__deliverables {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-pkg__deliverables-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.svc-pkg__deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.svc-pkg__deliverables-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.svc-pkg__deliverables-list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #caa53f;
  flex-shrink: 0;
}

/* --- Package Divider --- */
.svc-pkg__divider {
  position: relative;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Package For --- */
.svc-pkg__for {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-pkg__for-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.svc-pkg__for-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}

/* --- Package After Delivery --- */
.svc-pkg__after {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid #caa53f;
  padding-left: 20px;
}

.svc-pkg__after-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.svc-pkg__after-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}

/* ========================================
   Service Detail Variant 03
   ======================================== */
.svc-detail--03 {
  position: relative;
  background-color: #212236;
}

.svc-detail--03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

/* ========================================
   Turnkey Card
   ======================================== */
.turnkey {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px;
  background-color: #083466;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.25);
}

.turnkey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.turnkey__label {
  position: relative;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #caa53f;
  text-align: center;
}

.turnkey__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.turnkey__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.turnkey__catch {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #caa53f;
  text-align: center;
  transform: skewX(-4.75deg);
}

.turnkey__desc {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  color: #fff;
  text-align: center;
}

.turnkey__divider {
  position: relative;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Turnkey Specs --- */
.turnkey__specs {
  position: relative;
  display: flex;
  gap: 40px;
  text-align: center;
}

.turnkey__spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.turnkey__spec-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.turnkey__spec-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}

/* --- Turnkey CTA --- */
.turnkey__cta {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* ========================================
   Continuous Partnership
   ======================================== */
.partnership {
  position: relative;
  padding: 120px 20px;
  background-color: #fff;
  background-image: url(../images/btn-bg.png);
  background-size: cover;
  background-position: center;
}

.partnership::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
}

.partnership__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Partnership Gradient Line --- */
.partnership__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

/* --- Partnership Heading --- */
.partnership__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.partnership__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.partnership__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Partnership Lead --- */
.partnership__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #231815;
}

/* --- Partnership Flow --- */
.partnership__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.partnership__flow-step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-left: 1px solid #231815;
  border-right: 1px solid #231815;
}

.partnership__flow-step--active {
  background-color: #fff;
}

.partnership__flow-text {
  width: 300px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #231815;
  text-align: center;
}

.partnership__flow-text--active {
  font-weight: 700;
  color: #104685;
}

.partnership__flow-arrow {
  font-size: 12px;
  color: #231815;
  flex-shrink: 0;
  padding: 0 8px;
}

/* ========================================
   How to Choose
   ======================================== */
.choose {
  background-color: #fff;
  padding: 120px 20px;
}

.choose__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.choose__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.choose__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.choose__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.choose__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

.choose__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #231815;
}

/* --- Choose Cards --- */
.choose__cards {
  display: flex;
}

.choose__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 33.333%;
  padding: 20px;
  border: 1px solid #f0f0f0;
}

.choose__card-scenario {
  font-family: "DIN 2014", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: #104685;
}

.choose__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.choose__card-recommend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid #caa53f;
  padding-left: 20px;
}

.choose__card-recommend-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.8;
  color: #caa53f;
}

.choose__card-recommend-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #083466;
}

/* ========================================
   Service CTA
   ======================================== */
.svc-cta {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/cta-bg.png) center / cover no-repeat;
  pointer-events: none;
}

.svc-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2f445a;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.svc-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.svc-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.svc-cta__heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.svc-cta__label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.svc-cta__catch {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #caa53f;
  text-align: center;
  transform: skewX(-4.75deg);
}

.svc-cta__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  color: #fff;
  text-align: center;
}

/* ========================================
   Featured Case
   ======================================== */
.fcase {
  background-color: #fff;
  padding: 120px 20px;
}

.fcase__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fcase__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.fcase__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.fcase__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.fcase__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Featured Case Highlights --- */
.fcase__highlights {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.fcase__highlight {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fcase__highlight-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #231815;
}

.fcase__highlight-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

/* --- Featured Case Steps --- */
.fcase__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fcase__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcase__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fcase__step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: 0 12px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

.fcase__step-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #231815;
}

.fcase__step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

/* ========================================
   Case Studies
   ======================================== */
.cases {
  position: relative;
  padding: 120px 20px;
  background-color: #212236;
  overflow: hidden;
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.cases__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.cases__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.cases__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
  width: 100%;
}

.cases__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.cases__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

/* --- Case Cards Swiper --- */
.cases__swiper {
  width: 100%;
  padding-bottom: 40px;
}

.cases__card {
  display: flex;
  flex-direction: column;
  background-color: #083466;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide-active .cases__card {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

/* --- Case Pagination --- */
.cases__pagination {
  position: relative !important;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cases__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
}

.cases__pagination .swiper-pagination-bullet-active {
  background-color: #5198e9;
}

.cases__card-img {
  position: relative;
  width: 100%;
  height: 173px;
  overflow: hidden;
}

.cases__card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #083466, transparent);
  pointer-events: none;
}

.cases__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.cases__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cases__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.cases__card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.cases__card-tags {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
}

.cases__card {
  cursor: pointer;
  transition: box-shadow 0.3s, outline 0.3s;
}

.cases__card.is-active {
  outline: 2px solid #caa53f;
  outline-offset: -2px;
}

/* --- Case Detail --- */
.cases__detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.cases__detail-title {
  margin-bottom: 16px;
}

.cases__detail-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.cases__detail-cols {
  display: flex;
  width: 100%;
}

.cases__detail-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 30px;
  border: 1px solid #fff;
  color: #fff;
}

.cases__detail-col-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.cases__detail-col-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* --- Case Detail Full --- */
.cases__detail-full {
  position: relative;
  background-color: #083466;
  border: 1px solid #fff;
  padding: 30px;
  overflow: hidden;
}

.cases__detail-full::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 387px;
  height: 100%;
  background: var(--case-thumb) center / cover no-repeat;
  pointer-events: none;
}

.cases__detail-full::before {
  content: "";
  position: absolute;
  top: 0;
  right: 200px;
  width: 189px;
  height: 100%;
  background: linear-gradient(to right, #083466, transparent);
  pointer-events: none;
  z-index: 1;
}

.cases__detail-full-content {
  position: relative;
  z-index: 2;
  max-width: 834px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cases__detail-full-badge {
  display: inline-block;
  padding: 0 12px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  width: fit-content;
}

.cases__detail-full-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.cases__detail-full-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  border-left: 1px solid #fff;
  padding-left: 24px;
}

.cases__detail-full-tags {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
}

/* --- Case Quote --- */
.cases__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cases__quote-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  transform: skewX(-19.58deg) scaleY(0.94);
}

.cases__quote-arrows-img {
  width: 40px;
  height: auto;
  opacity: 0.5;
}

/* ========================================
   CEO Message
   ======================================== */
.ceo-msg {
  position: relative;
  padding: 120px 20px;
  background-color: #212236;
  overflow: hidden;
}

.ceo-msg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.ceo-msg__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ceo-msg__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.ceo-msg__line-bottom {
  width: 100%;
  height: 1px;
  background-color: #104685;
}

.ceo-msg__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.ceo-msg__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #fff;
}

.ceo-msg__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #fff;
}

.ceo-msg__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.ceo-msg__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 2;
  color: #fff;
}

.ceo-msg__highlight {
  border-left: 2px solid #fff;
  padding-left: 20px;
}

.ceo-msg__highlight p {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: normal;
  transform: skewX(-10deg) scaleY(0.98);
}

.ceo-msg__profile {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ceo-msg__photo {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.ceo-msg__profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.ceo-msg__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.ceo-msg__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 16px;
  line-height: 1.6;
  color: #fff;
}

.ceo-msg__name-en {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #fff;
}

/* ========================================
   Company Member
   ======================================== */
.co-member {
  position: relative;
  padding: 120px 20px;
  background-color: #fff;
  background-image: url(../images/btn-bg.png);
  background-size: cover;
  background-position: center;
}

.co-member::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
}

.co-member__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.co-member__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.co-member__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.co-member__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.co-member__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Featured Member --- */
.co-member__featured {
  display: flex;
  gap: 40px;
}

.co-member__featured-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 540px;
}

.co-member__featured-photo {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.co-member__featured-label {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #000;
}

.co-member__featured-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 16px;
  line-height: 1.6;
  color: #000;
}

.co-member__featured-name-en {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #104685;
  margin-top: -16px;
}

.co-member__featured-career {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-member__featured-career-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 14px;
  line-height: 1.6;
  color: #231815;
}

.co-member__featured-career-list {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.co-member__featured-awards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-member__featured-awards-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1.6;
  color: #231815;
}

.co-member__featured-awards-list {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.co-member__featured-awards-list li {
  padding-left: 24px;
  background: url(../images/ring.svg) no-repeat left center;
  background-size: 16px 16px;
}

.co-member__featured-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 540px;
  align-items: center;
}

.co-member__featured-catch {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #104685;
  transform: skewX(-4.75deg);
  padding-bottom: 40px;
  border-bottom: 1px solid #104685;
  width: 100%;
}

.co-member__featured-specialty {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.co-member__featured-specialty-title {
  font-weight: 700;
  letter-spacing: 2.8px;
  margin-bottom: 8px;
}

.co-member__featured-achievements {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: #231815;
}

.co-member__featured-message {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.6;
  color: #104685;
  transform: skewX(-4.75deg);
}

.co-member__divider {
  width: 100%;
  height: 1px;
  background-color: #104685;
}

/* --- Member Grid --- */
.co-member__grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.co-member__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 360px;
}

.co-member__card-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.co-member__card-photo {
  width: 100%;
  height: 247px;
  object-fit: cover;
  display: block;
}

.co-member__card-role {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 12px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.6;
}

.co-member__card-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 12px;
  line-height: 1.6;
  color: #000;
}

.co-member__card-school {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.6;
  color: #104685;
}

/* ========================================
   Company Overview
   ======================================== */
.co-overview {
  background-color: #fff;
  padding: 120px 20px;
}

.co-overview__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.co-overview__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.co-overview__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.co-overview__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.co-overview__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

/* --- Overview Table --- */
.co-overview__table {
  width: 100%;
  border-collapse: collapse;
}

.co-overview__table tr {
  border-top: 1px solid #f0f0f0;
}

.co-overview__table tr:last-child {
  border-bottom: 1px solid #f0f0f0;
}

.co-overview__table th {
  width: 160px;
  padding: 20px 24px;
  background-color: #104685;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  vertical-align: top;
}

.co-overview__table td {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
  vertical-align: top;
}

.co-overview__clients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.co-overview__clients span {
  display: inline-block;
  padding: 7px 13px;
  background-color: #f0f0f0;
  font-size: 12px;
  line-height: 1.6;
  color: #231815;
}

/* --- Overview Map --- */
.co-overview__map {
  width: 100%;
}

.co-overview__map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Recruit CTA
   ======================================== */
.recruit-cta {
  position: relative;
  padding: 80px 20px;
  background-color: #f0f0f5;
  overflow: hidden;
}

.recruit-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.recruit-cta__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-cta__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.recruit-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recruit-cta__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 620px;
}

.recruit-cta__heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.recruit-cta__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #231815;
}

.recruit-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 62px;
  padding: 3px 20px 3px 3px;
  border-radius: 999px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  transition: padding 0.4s ease;
  flex-shrink: 0;
}

.recruit-cta__btn:hover {
  justify-content: flex-end;
  padding: 3px 3px 3px 20px;
}

.recruit-cta__btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 55px;
  padding: 14px 40px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   Flow Steps
   ======================================== */
.flow-steps {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.flow-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/btn-bg.png) center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.flow-steps__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-steps__lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

.flow-steps__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-steps__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-steps__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-steps__item-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-steps__item-icon-img {
  width: 22px;
  height: 22px;
}

.flow-steps__item-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-steps__item-num {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #104685;
}

.flow-steps__item-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.6;
  color: #231815;
}

.flow-steps__item-body {
  border-left: 1px solid #231815;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background-color: #fff;
  padding: 120px 20px;
}

.faq__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__line {
  width: 100%;
  height: 3px;
  background: url(../images/btn-bg.png) center / cover no-repeat;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
}

.faq__heading-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.6;
  color: #231815;
}

.faq__heading-label {
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #231815;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  border-bottom: 1px solid #f0f0f0;
}

.faq__item-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
}

.faq__item-q {
  width: 30px;
  height: 30px;
  background-color: #104685;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #fff;
  flex-shrink: 0;
}

.faq__item-text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #231815;
  padding-top: 2px;
}

.faq__item-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 5px;
  transition: transform 0.3s;
}

.faq__item.is-open .faq__item-arrow {
  transform: rotate(180deg);
}

.faq__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.is-open .faq__item-body {
  max-height: 300px;
}

.faq__item-answer {
  padding: 0 0 20px 50px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   Hamburger Menu (SP only)
   ======================================== */
.header__hamburger {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.header__hamburger-line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #231815;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger-line:nth-child(1) { top: 0; }
.header__hamburger-line:nth-child(2) { top: 10px; }
.header__hamburger-line:nth-child(3) { top: 20px; }

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ========================================
   Responsive — Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {

  /* --- Header --- */
  .header__hamburger {
    display: block;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 30px 40px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 0;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .header__menu-link {
    display: block;
    padding: 16px 0;
    text-align: left;
  }

  .header__contact-btn {
    margin-top: 24px;
    width: 100%;
    height: 44px;
    border-radius: 4px;
  }

  /* --- Hero --- */
  .hero__inner {
    padding: 0 40px;
  }

  .hero__heading {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .hero__heading-line {
    white-space: normal;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero__stats-img {
    height: 130px;
  }

  /* --- About --- */
  .about__heading-main {
    font-size: 32px;
  }

  /* --- Member --- */
  .member__content {
    flex-direction: column;
  }

  .member__profile,
  .member__photo,
  .member__message {
    width: 100%;
  }

  .member__photo {
    height: 300px;
  }

  /* --- Clients --- */
  .clients__heading-text {
    font-size: 24px;
  }

  .clients__heading-number {
    font-size: 48px;
  }

  /* --- MVV --- */
  .mvv__row {
    flex-direction: column;
    gap: 60px;
  }

  .mvv__block {
    width: 100%;
  }

  .mvv__value-list {
    flex-direction: column;
  }

  .mvv__value-item {
    width: 100%;
  }

  /* --- Initiatives --- */
  .initiatives__cards {
    flex-direction: column;
  }

  .initiatives__card {
    width: 100%;
  }

  /* --- CTA --- */
  .cta__heading {
    font-size: 24px;
  }

  .cta__btn {
    width: 100%;
    max-width: 400px;
    height: 80px;
    font-size: 20px;
  }

  /* --- Footer --- */
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__info {
    width: 100%;
  }

  .footer__logo {
    width: 140px;
  }

  /* --- LABS --- */
  .labs-hero__heading {
    font-size: 36px;
  }

  .labs-products__cards {
    flex-direction: column;
    align-items: center;
  }

  .labs-card {
    width: 100%;
    max-width: 540px;
  }

  /* --- Contact --- */
  .contact-hero__heading {
    font-size: 36px;
  }

  .contact-form__content {
    flex-direction: column;
  }

  .contact-form__worries {
    width: 100%;
  }

  .contact-form__form-area {
    width: 100%;
  }
}

/* ========================================
   Responsive — SP (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

  /* --- Hero --- */
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__inner {
    padding: 0 20px;
    padding-bottom: 40px;
  }

  .hero__subtitle {
    padding-top: 50px;
    font-size: 14px;
  }

  .hero__heading {
    margin-top: 16px;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.4;
  }

  .hero__bg-gradient {
    top: 60px;
    height: 200px;
  }

  .hero__description {
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.9;
  }

  .hero__bottom {
    margin-top: 30px;
    gap: 24px;
    align-items: center;
  }

  .hero__stats-img {
    height: 100px;
    width: 100%;
    max-width: 400px;
    object-fit: contain;
  }

  .hero__cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero__cta-text {
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 12px 20px;
  }

  /* --- About --- */
  .about {
    padding: 60px 20px;
  }

  .about__inner {
    gap: 24px;
  }

  .about__heading-sub {
    font-size: 18px;
  }

  .about__heading-main {
    font-size: 24px;
  }

  .about__heading-label {
    font-size: 16px;
  }

  .about__text {
    font-size: 14px;
    line-height: 2;
  }

  .about__btn {
    align-self: center;
  }

  .about__btn-text {
    width: 240px;
    font-size: 14px;
  }

  /* --- Member --- */
  .member {
    padding: 60px 20px;
  }

  .member__heading {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .member__heading-title {
    font-size: 24px;
  }

  .member__heading-label {
    font-size: 16px;
  }

  .member__inner {
    gap: 24px;
  }

  .member__photo {
    height: 250px;
  }

  .member__name {
    font-size: 24px;
    letter-spacing: 10px;
  }

  .member__message-heading {
    font-size: 20px;
  }

  .member__message-text {
    font-size: 13px;
  }

  .member__btn-text {
    width: 240px;
    font-size: 14px;
  }

  /* --- Clients --- */
  .clients {
    padding: 60px 0;
  }

  .clients__label {
    font-size: 16px;
  }

  .clients__heading-text {
    font-size: 20px;
  }

  .clients__heading-number {
    font-size: 40px;
  }

  .clients__sub {
    font-size: 14px;
  }

  .clients__logo {
    height: 36px;
  }

  /* --- MVV --- */
  .mvv {
    padding: 60px 20px;
  }

  .mvv__heading-title {
    font-size: 24px;
  }

  .mvv__heading-label {
    font-size: 16px;
  }

  .mvv__heading {
    padding-bottom: 20px;
  }

  .mvv__block-title {
    font-size: 28px;
  }

  .mvv__block-text {
    font-size: 14px;
  }

  .mvv__value-item-title {
    font-size: 24px;
  }

  .mvv__value-item-text {
    font-size: 14px;
  }

  .mvv__btn-text {
    width: 240px;
    font-size: 14px;
  }

  /* --- Initiatives --- */
  .initiatives {
    padding: 60px 20px;
  }

  .initiatives__heading {
    padding-bottom: 20px;
  }

  .initiatives__heading-title {
    font-size: 24px;
  }

  .initiatives__heading-label {
    font-size: 16px;
  }

  .initiatives__card-title {
    font-size: 18px;
  }

  /* --- Service Detail --- */
  .svc-detail {
    padding: 60px 20px;
  }

  .svc-detail__heading {
    padding-bottom: 20px;
  }

  .svc-detail__heading-title {
    font-size: 24px;
  }

  .svc-detail__heading-label {
    font-size: 16px;
  }

  .svc-detail__content {
    flex-direction: column;
    gap: 32px;
  }

  .svc-detail__catch-text {
    font-size: 20px;
    transform: none;
  }

  .svc-detail__desc {
    font-size: 14px;
    line-height: 2.2;
  }

  .svc-detail__tags {
    flex-direction: column;
    gap: 12px;
  }

  /* --- Service Package Cards --- */
  .svc-pkg__row {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-pkg__card {
    width: 100%;
    padding: 24px;
  }

  .svc-pkg__title {
    font-size: 20px;
  }

  .svc-pkg__desc {
    font-size: 14px;
  }

  /* --- Turnkey --- */
  .turnkey {
    padding: 40px 20px;
  }

  .turnkey__title {
    font-size: 22px;
  }

  .turnkey__catch {
    font-size: 16px;
    transform: none;
  }

  .turnkey__desc {
    font-size: 14px;
  }

  .turnkey__specs {
    flex-direction: column;
    gap: 24px;
  }

  .turnkey__cta {
    font-size: 16px;
  }

  /* --- Case Studies --- */
  .cases {
    padding: 60px 20px;
  }

  .cases__heading {
    padding-bottom: 20px;
  }

  .cases__heading-title {
    font-size: 24px;
  }

  .cases__heading-label {
    font-size: 16px;
  }

  .cases__card {
    width: 100%;
  }

  .cases__detail-cols {
    flex-direction: column;
  }

  .cases__detail-full::after {
    width: 100%;
    height: 250px;
    top: auto;
    bottom: 0;
    right: 0;
    opacity: 0.6;
  }

  .cases__detail-full::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, #083466 10%, transparent);
  }

  .cases__quote-text {
    font-size: 16px;
    transform: none;
  }

  /* --- Flow Steps --- */
  .flow-steps {
    padding: 60px 20px;
  }

  .flow-steps__inner {
    padding: 24px;
  }

  .flow-steps__lead {
    font-size: 14px;
  }

  .flow-steps__item-title {
    font-size: 18px;
  }

  .flow-steps__item-body {
    font-size: 14px;
  }

  /* --- FAQ --- */
  .faq {
    padding: 60px 20px;
  }

  .faq__heading-title {
    font-size: 24px;
  }

  .faq__heading-label {
    font-size: 16px;
  }

  .faq__item-text {
    font-size: 14px;
  }

  /* --- LABS --- */
  .labs-hero {
    padding: 80px 20px;
  }

  .labs-hero__heading {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .labs-hero__catch {
    font-size: 18px;
  }

  .labs-hero__stats {
    max-width: 100%;
  }

  .labs-philosophy,
  .labs-products {
    padding: 60px 20px;
  }

  .labs-philosophy__heading-title,
  .labs-products__heading-title {
    font-size: 24px;
  }

  .labs-card__title {
    font-size: 24px;
  }

  .labs-process__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .labs-catch__text {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .labs-process__step {
    width: auto;
  }

  /* --- Contact --- */
  .contact-hero {
    padding: 80px 20px;
  }

  .contact-hero__heading {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .contact-hero__desc {
    font-size: 14px;
  }

  .contact-form {
    padding: 60px 20px;
  }

  .contact-form__form-title {
    font-size: 24px;
  }

  .contact-form__submit {
    font-size: 18px;
    padding: 20px;
  }

  /* --- CEO Message --- */
  .ceo-msg {
    padding: 60px 20px;
  }

  .ceo-msg__heading-title {
    font-size: 22px;
  }

  .ceo-msg__content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .ceo-msg__photo {
    width: 200px;
  }

  .ceo-msg__text {
    font-size: 14px;
  }

  /* --- Company Member --- */
  .co-member {
    padding: 60px 20px;
  }

  .co-member__heading-title {
    font-size: 24px;
  }

  .co-member__featured {
    flex-direction: column;
  }

  .co-member__featured-left {
    width: 100%;
  }

  .co-member__featured-right {
    width: 100%;
  }

  .co-member__featured-catch {
    font-size: 24px;
  }

  .co-member__featured-message {
    font-size: 18px;
    transform: none;
  }

  .co-member__grid {
    flex-direction: column;
    gap: 24px;
  }

  .co-member__card {
    width: 100%;
  }

  .co-member__card-photo {
    height: 200px;
  }

  /* --- Company Overview --- */
  .co-overview {
    padding: 60px 20px;
  }

  .co-overview__heading-title {
    font-size: 24px;
  }

  .co-overview__table th,
  .co-overview__table td {
    display: block;
    width: 100%;
  }

  .co-overview__table th {
    padding: 12px 16px;
  }

  .co-overview__table td {
    padding: 12px 16px;
  }

  /* --- Recruit CTA --- */
  .recruit-cta {
    padding: 40px 20px;
  }

  .recruit-cta__content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .recruit-cta__heading {
    font-size: 22px;
  }

  /* --- Featured Case --- */
  .fcase {
    padding: 60px 20px;
  }

  .fcase__heading {
    padding-bottom: 20px;
  }

  .fcase__heading-title {
    font-size: 24px;
  }

  .fcase__heading-label {
    font-size: 16px;
  }

  .fcase__highlights {
    flex-direction: column;
    gap: 24px;
  }

  .fcase__highlight-title {
    font-size: 20px;
  }

  .fcase__highlight-text {
    font-size: 14px;
  }

  .fcase__step-title {
    font-size: 20px;
  }

  .fcase__step-text {
    font-size: 14px;
  }

  /* --- Choose --- */
  .choose {
    padding: 60px 20px;
  }

  .choose__heading {
    padding-bottom: 20px;
  }

  .choose__heading-title {
    font-size: 24px;
  }

  .choose__heading-label {
    font-size: 16px;
  }

  .choose__lead {
    font-size: 14px;
  }

  .choose__cards {
    flex-direction: column;
  }

  .choose__card {
    width: 100%;
  }

  /* --- Service CTA --- */
  .svc-cta {
    padding: 60px 20px;
  }

  .svc-cta__heading {
    font-size: 24px;
  }

  .svc-cta__catch {
    font-size: 16px;
    transform: none;
  }

  .svc-cta__sub {
    font-size: 14px;
  }

  /* --- Partnership --- */
  .partnership {
    padding: 60px 20px;
  }

  .partnership__heading {
    padding-bottom: 20px;
  }

  .partnership__heading-title {
    font-size: 24px;
  }

  .partnership__heading-label {
    font-size: 16px;
  }

  .partnership__lead {
    font-size: 14px;
  }

  .partnership__flow {
    flex-direction: column;
    gap: 8px;
  }

  .partnership__flow-step {
    width: 100%;
    border-left: 1px solid #231815;
    border-right: 1px solid #231815;
  }

  .partnership__flow-text {
    width: auto;
    font-size: 14px;
  }

  .partnership__flow-arrow {
    transform: rotate(90deg);
  }

  /* --- Team Banner --- */
  .team-banner {
    height: auto;
    aspect-ratio: 16 / 6;
    background-attachment: scroll;
  }

  /* --- Service Hero --- */
  .service-hero {
    padding: 60px 20px;
  }

  .service-hero__title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .service-hero__text {
    font-size: 14px;
  }

  /* --- Approach --- */
  .approach {
    padding: 60px 20px;
  }

  .approach__heading {
    padding-bottom: 20px;
  }

  .approach__heading-title {
    font-size: 24px;
  }

  .approach__heading-label {
    font-size: 16px;
  }

  .approach__lead {
    font-size: 14px;
  }

  .approach__cards {
    flex-direction: column;
    align-items: center;
  }

  .approach__card {
    width: 100%;
    max-width: 400px;
  }

  .approach__card-title {
    font-size: 20px;
  }

  /* --- CTA --- */
  .cta {
    padding: 60px 20px;
  }

  .cta__heading {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .cta__label {
    font-size: 16px;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
    height: 70px;
    font-size: 18px;
  }

  /* --- Footer --- */
  .footer {
    padding: 60px 20px;
  }

  .footer__logo {
    width: 120px;
  }

  .footer__company-name {
    font-size: 16px;
  }

  .footer__nav-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__nav-category {
    width: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer__legal {
    gap: 20px;
  }
}

/* ========================================
   Scroll Fade-in Animations
   ======================================== */

/* --- Base: hidden state --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- Visible state --- */
.fade-in.is-visible,
.fade-in--left.is-visible,
.fade-in--right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Stagger delays for child elements --- */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ========================================
   Privacy Policy / Legal Pages
   ======================================== */
.legal {
  padding: 80px 0 120px;
  background-color: #fff;
}

.legal__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal__intro {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 60px;
}

.legal__section {
  margin-bottom: 48px;
}

.legal__section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.legal__section-text {
  font-size: 15px;
  line-height: 2;
}

.legal__section-text p {
  margin-bottom: 12px;
}

.legal__section-text p:last-child {
  margin-bottom: 0;
}

.legal__list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.legal__list > li {
  position: relative;
  padding-left: 1.5em;
  font-size: 15px;
  line-height: 2;
}

.legal__list > li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.legal__list--numbered {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
  counter-reset: legal-num;
}

.legal__list--numbered > li {
  position: relative;
  padding-left: 1.8em;
  font-size: 15px;
  line-height: 2;
  counter-increment: legal-num;
}

.legal__list--numbered > li::before {
  content: counter(legal-num) ".";
  position: absolute;
  left: 0;
  font-weight: 500;
}

.legal__sub-list {
  list-style: none;
  padding-left: 1em;
  margin: 4px 0;
}

.legal__sub-list > li {
  position: relative;
  padding-left: 1.5em;
  font-size: 15px;
  line-height: 2;
}

.legal__sub-list > li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.legal__contact-info {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
}

.legal__contact-info dt {
  display: inline;
  font-weight: 500;
}

.legal__contact-info dd {
  display: inline;
  margin-left: 0;
}

@media (max-width: 768px) {
  .legal {
    padding: 60px 0 80px;
  }

  .legal__section-title {
    font-size: 16px;
  }

  .legal__intro,
  .legal__section-text,
  .legal__list > li,
  .legal__list--numbered > li,
  .legal__sub-list > li,
  .legal__contact-info {
    font-size: 14px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in--left,
  .fade-in--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
