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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: #0d1b2a;
  color: #fff;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}

/* ===========================
   Main Visual
   =========================== */
.mv {
  position: relative;
  width: 100%;
  height: 115vh;
  min-height: 900px;
  overflow: hidden;
  background: url("../images/bg.jpg") center center / cover no-repeat;
}

/* --- Background photo columns --- */
.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv__columns {
  position: absolute;
  inset: 0;
}

.mv__column {
  position: absolute;
  top: -40px;
  width: 13.9%;
  height: calc(100% + 80px);
  overflow: hidden;
}

/* PC: 6 columns evenly spaced */
.mv__column:nth-child(1) { left: 2.5%; }
.mv__column:nth-child(2) { left: 18.5%; }
.mv__column:nth-child(3) { left: 34.6%; }
.mv__column:nth-child(4) { left: 50.6%; }
.mv__column:nth-child(5) { left: 66.7%; }
.mv__column:nth-child(6) { left: 82.7%; }

/* --- Opening: columns start off-screen --- */
.mv__column[data-direction="up"] {
  transform: translateY(-110%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv__column[data-direction="down"] {
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv__column.is-entered {
  transform: translateY(0);
}

/* --- Column inner: scroll paused until opening completes --- */
.mv__column-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

.mv__column[data-direction="up"] .mv__column-inner {
  animation: scrollUp 25s linear infinite;
  animation-play-state: paused;
}

.mv__column[data-direction="down"] .mv__column-inner {
  animation: scrollDown 25s linear infinite;
  animation-play-state: paused;
}

.mv__column.is-scrolling .mv__column-inner {
  animation-play-state: running;
}

/* Each photo card */
.mv__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 200 / 133;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.mv__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.mv__photo img {
  border-radius: 6px;
}

/* --- Keyframes: column scroll --- */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50%));
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(calc(-50%));
  }
  100% {
    transform: translateY(0);
  }
}

/* ===========================
   Content (text)
   =========================== */
.mv__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
}

/* Catchphrase */
.mv__catchphrase {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 60px);
  letter-spacing: 0.08em;
  color: #fff;
  text-align: right;
  align-self: flex-end;
  margin-right: 3%;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv__catchphrase.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Title: HEART'SCRY */
.mv__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 16.7vw, 240px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Split text: each letter */
.mv__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) scale(0.7);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mv__title .char.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtitle: LOGISTICS WITH PEOPLE. */
.mv__subtitle {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 6.9vw, 100px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Header / Navigation
   =========================== */

/* Outer wrapper — controls position & opening fade */
.header {
  position: absolute;
  top: calc(100vh - 137px);
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 97px;
  gap: 0;
  opacity: 0;
  transform: translateX(-50%) translateY(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hiding: at fixed position but invisible (transition start state) */
.header.is-hiding {
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
}

/* Fixed to top */
.header.is-fixed {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  gap: 17px;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    gap 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Fixed + hiding = starting point for morph-in */
.header.is-fixed.is-hiding {
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
}

/* Returning to absolute: no transition so it snaps back instantly */
.header.is-shrinking {
  transition: none;
}

/* --- Gradient bar (morphs wider) --- */
.header__bar {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(806px, 90vw);
  height: 97px;
  border-radius: 50px;
  background: url("../images/navi_bg.png") center center / cover no-repeat;
  overflow: hidden;
  padding: 0 43px;
  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-fixed .header__bar {
  width: min(1086px, calc(90vw - 114px));
  gap: 38px;
}

/* --- Logo (hidden → revealed) --- */
.header__logo {
  width: 0;
  opacity: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease 0.15s;
}

.header__logo img {
  width: 312px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.header.is-fixed .header__logo {
  width: 312px;
  opacity: 1;
}

/* --- Nav list --- */
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  height: 100%;
  transition: gap 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-fixed .header__nav-list {
  gap: 20px;
  justify-content: flex-end;
}

.header__nav-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.header__nav-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

/* --- Contact button (hidden → pop in) --- */
.header__contact {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  flex-shrink: 0;
  transform: scale(0.3);
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    height 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    opacity 0.4s ease 0.25s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.header.is-fixed .header__contact {
  width: 97px;
  height: 97px;
  opacity: 1;
  transform: scale(1);
}

.header__contact:hover {
  opacity: 0.8;
}

.header__contact-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
}

.header__contact-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
}

/* --- Wave transition --- */
.mv__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(60px, 9.2vw, 132px);
  z-index: 2;
  line-height: 0;
}

.mv__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===========================
   ABOUT US
   =========================== */
.about {
  position: relative;
  background: #d9cfb0;
  padding: 80px 0 100px;
}

.about__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about__heading {
  position: relative;
  margin-bottom: 60px;
}

.about__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.about__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 0.79;
  letter-spacing: -0.014em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  margin-bottom: 20px;
}

.about__subtitle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1.56;
  color: #1a1a1a;
  margin: 0;
}

.about__dots {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-shrink: 0;
}

.about__dot {
  display: block;
  border-radius: 50%;
}

.about__dot--orange {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.about__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.about__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

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

.about__text {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2.25;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  max-width: 820px;
}

.about__text p {
  margin: 0;
}

.about__logo {
  flex-shrink: 0;
  width: clamp(200px, 26.9vw, 387px);
}

.about__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===========================
   STRENGTH
   =========================== */
.strength {
  position: relative;
}

/* --- Each item --- */
.strength__item {
  position: relative;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background layers */
.strength__bg {
  position: absolute;
  inset: 0;
}

.strength__bg-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.strength__bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Left-aligned items (01,03): overlay slides from left */
.strength__item--left .strength__bg-overlay {
  clip-path: inset(0 100% 0 0);
}

.strength__item--left.is-in-view .strength__bg-overlay {
  clip-path: inset(0 0 0 0);
}

/* Right-aligned items (02): overlay slides from right */
.strength__item--right .strength__bg-overlay {
  clip-path: inset(0 0 0 100%);
}

.strength__item--right.is-in-view .strength__bg-overlay {
  clip-path: inset(0 0 0 0);
}

/* Content */
.strength__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 51px;
}

/* -- Left aligned (01, 03) -- */
.strength__item--left .strength__content {
  text-align: left;
}

/* -- Right aligned (02) -- */
.strength__item--right .strength__content {
  text-align: right;
}

/* Number: Strength01. */
.strength__number {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 81px);
  line-height: 0.66;
  letter-spacing: -0.013em;
  color: #fff;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

/* Sub heading */
.strength__sub {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.74vw, 25px);
  line-height: 1.4;
  letter-spacing: 0.064em;
  color: #fff;
  margin: 0 0 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

/* Main heading */
.strength__heading {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.75vw, 54px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 8px 0 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}

/* Description */
.strength__desc {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.875;
  letter-spacing: 0.06em;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.85s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.strength__desc p {
  margin: 0;
}

/* --- All text visible when in view --- */
.strength__item.is-in-view .strength__number,
.strength__item.is-in-view .strength__sub,
.strength__item.is-in-view .strength__heading,
.strength__item.is-in-view .strength__desc {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   OUR SERVICE
   =========================== */
.service {
  position: relative;
  background: #1a7fc4 url("../images/service_bg.jpg") center center / cover no-repeat;
  overflow: hidden;
  padding: 180px 0 80px;
}

/* --- Tilted photo sliders (background) --- */
.service__sliders {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transform: rotate(-10deg) scale(1.3) translateY(-13%);
  transform-origin: center center;
  pointer-events: none;
}

.service__slider {
  overflow: hidden;
  flex-shrink: 0;
}

.service__slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: serviceSlideLeft 40s linear infinite;
}

.service__slider-track--reverse {
  animation: serviceSlideRight 45s linear infinite;
}

.service__slide {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.service__slide--big {
  width: 200px;
  height: 133px;
}

.service__slide--sm {
  width: 115px;
  height: 77px;
}

.service__slide img {
  border-radius: 8px;
}

@keyframes serviceSlideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

@keyframes serviceSlideRight {
  0% { transform: translateX(calc(-50% - 10px)); }
  100% { transform: translateX(0); }
}

/* --- Heading --- */
.service__heading {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.service__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 0.79;
  letter-spacing: -0.014em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  margin: 0 0 20px;
}

.service__dots {
  display: flex;
  align-items: center;
  gap: 47px;
  position: absolute;
  right: 40px;
  bottom: 0;
}

.service__dot {
  display: block;
  border-radius: 50%;
}

.service__dot--orange {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.service__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.service__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

/* --- Mission card --- */
.service__mission {
  position: relative;
  z-index: 1;
  width: min(733px, 90vw);
  margin: 60px 0 80px auto;
  margin-right: calc((100% - 1200px) / 2 + 40px);
  padding: 50px 76px 60px;
  background: url("../images/service_mission_bg.jpg") center center / cover no-repeat;
  border-radius: 0;
}

.service__mission-border {
  position: absolute;
  inset: 10px 10px 10px 8px;
  border: 1px solid #fff;
  pointer-events: none;
}

.service__mission-title {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0;
  color: #fff;
  letter-spacing: 0.16em;
  margin: 0 0 30px;
  line-height: 1.5;
}

.service__mission-title-en {
  font-size: 32px;
}

.service__mission-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.16em;
}

.service__mission-dots {
  display: flex;
  align-items: center;
  gap: 11px;
  position: absolute;
  top: 50px;
  right: 76px;
}

.service__mission-dot {
  display: block;
  border-radius: 50%;
  background: #fff;
}

.service__mission-dot--sm {
  width: 10px;
  height: 10px;
}

.service__mission-dot--md {
  width: 15px;
  height: 15px;
}

.service__mission-dot--lg {
  width: 20px;
  height: 20px;
}

.service__mission-text {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.275;
  letter-spacing: 0.0375em;
  color: #fff;
}

.service__mission-text p {
  margin: 0 0 1.4em;
}

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

/* --- Service items (3 cards) --- */
.service__items {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service__card {
  position: relative;
  flex: 1 1 33.333%;
  min-width: 0;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    flex 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.service__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service__card:hover .service__card-bg {
  transform: scale(1.05);
}

.service__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.6s ease;
}

.service__card:hover .service__card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.service__card-badge {
  position: absolute;
  z-index: 1;
  top: 57px;
  left: 19px;
  background: #e16d11;
  border-radius: 20px;
  padding: 0 16px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service__card-name {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.057em;
  color: #fff;
  text-align: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service__card-link {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service__card-link-text {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.052em;
  color: #fff;
}

.service__card-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #8fc769;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__card:hover .service__card-link-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Close button */
.service__card-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.5s, background 0.3s ease;
  cursor: pointer;
}

.service__card-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Detail content (inside card, hidden by default) */
.service__card-detail {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 47px 34px 30px 37px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.01s ease;
}

/* Staggered fade-up for detail elements */
.js-detail-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Expanded state --- */
.service__card.is-expanded {
  flex: 1 0 100%;
  height: 720px;
  cursor: default;
}

/* Overlay darkens */
.service__card.is-expanded .service__card-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Background zooms in slightly */
.service__card.is-expanded .service__card-bg {
  transform: scale(1.1);
}

/* Hide thumbnail elements */
.service__card.is-expanded .service__card-badge {
  opacity: 0;
  transform: translateY(-10px);
}

.service__card.is-expanded .service__card-name {
  opacity: 0;
  transform: translateY(-20px);
}

.service__card.is-expanded .service__card-link {
  opacity: 0;
  transform: translateY(10px);
}

/* Show close button & detail content */
.service__card.is-expanded .service__card-close {
  opacity: 1;
  pointer-events: auto;
}

.service__card.is-expanded .service__card-detail {
  opacity: 1;
  pointer-events: auto;
}

.service__card.is-expanded .js-detail-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sibling cards collapse */
.service__items.has-expanded .service__card:not(.is-expanded) {
  flex: 0 0 0%;
  overflow: hidden;
  pointer-events: none;
}

.service__items.has-expanded .service__card:not(.is-expanded) .service__card-badge,
.service__items.has-expanded .service__card:not(.is-expanded) .service__card-name,
.service__items.has-expanded .service__card:not(.is-expanded) .service__card-link {
  opacity: 0;
}

/* --- Detail upper (two-column: text + image) --- */
.service__detail-upper {
  display: flex;
  gap: 30px;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.service__detail-left {
  flex: 0 1 60%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.service__detail-right {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-start;
}

.service__detail-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Top row: badge + title + dots */
.service__detail-top {
  display: flex;
  align-items: center;
  gap: 25px;
}

.service__detail-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e16d11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service__detail-badge-label {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: #fff;
  text-align: center;
}

.service__detail-badge-num {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.service__detail-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.011em;
  color: #fff;
  margin: 0;
}

.service__detail-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.service__detail-dot {
  display: block;
  border-radius: 50%;
}

.service__detail-dot--green {
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

.service__detail-dot--blue {
  width: 15px;
  height: 15px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.service__detail-dot--orange {
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.service__detail-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.011em;
  color: #fff;
  margin: 0;
}

.service__detail-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: 0.011em;
  color: #fff;
  margin: 0;
}

/* Bottom cards: 主な業務内容 / 主な派遣先 */
.service__detail-cards {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  padding-top: 10px;
}

.service__detail-card {
  flex: 1;
  position: relative;
  min-width: 0;
}

.service__detail-label {
  display: inline-block;
  background: #8fc769;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  border-radius: 20px;
  margin: 0 0 -18px;
  position: relative;
  z-index: 1;
}

.service__detail-card-body {
  background: #fff;
  border-radius: 20px;
  height: 150px;
  padding: 30px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service__detail-card-body p {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  position: relative;
  background: #dde0e4;
  padding: 60px 0 120px;
}

/* --- Heading --- */
.reviews__heading {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.reviews__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.reviews__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 0.79;
  letter-spacing: -0.014em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  margin: 0 0 20px;
}

.reviews__dots {
  display: flex;
  align-items: center;
  gap: 47px;
  position: absolute;
  right: 40px;
  top: 99px;
}

.reviews__dot {
  display: block;
  border-radius: 50%;
}

.reviews__dot--orange {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.reviews__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.reviews__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

.reviews__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.56;
  color: #1a1a1a;
  margin: 0;
}

/* --- Review items --- */
.reviews__item {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.reviews__item:last-child {
  margin-bottom: 0;
}

/* Right-aligned card (01, 03): image left, card right */
.reviews__item--right {
  justify-content: flex-end;
}

/* Left-aligned card (02): card left, image right */
.reviews__item--left {
  justify-content: flex-start;
}

/* --- Review card (white rounded box) --- */
/* --- Review card slide-in animation --- */
.reviews__card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 50px 60px 50px 126px;
  margin-top: 60px;
  width: min(1092px, 85%);
  flex-shrink: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Right-aligned items (01, 03): card slides from left */
.reviews__item--right .reviews__card {
  clip-path: inset(0 100% 0 0);
}

/* Left-aligned items (02): card slides from right */
.reviews__item--left .reviews__card {
  clip-path: inset(0 0 0 100%);
}

/* Revealed state */
.reviews__item.is-visible .reviews__card {
  clip-path: inset(0 0 0 0);
}

/* Badge & text: fade in after card expands */
.reviews__item.is-visible .reviews__badge {
  opacity: 1;
  transform: translateY(0);
}

.reviews__card-title,
.reviews__card-text {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reviews__item.is-visible .reviews__card-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.reviews__item.is-visible .reviews__card-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.reviews__item--left .reviews__card {
  padding: 50px 126px 50px 60px;
}

.reviews__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.67;
  color: #000;
  margin: 0 0 18px;
}

.reviews__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0;
}

/* --- Review illustration images --- */
.reviews__img {
  position: absolute;
  z-index: 1;
  width: 211px;
  flex-shrink: 0;
}

.reviews__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reviews__img--left {
  left: 100px;
  top: 0px;
}

.reviews__img--right {
  right: 0;
  top: -37px;
  width: 247px;
}

/* --- Review badge (number + label) --- */
.reviews__badge {
  position: absolute;
  z-index: 2;
  top: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 139px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

/* Badge positioning for right-aligned items (01, 03) */
.reviews__item--right .reviews__badge {
  left: 260px;
  top: -37px;
}

/* Badge positioning for left-aligned items (02) - right side */
.reviews__badge--right {
  left: auto !important;
  right: 260px;
}

.reviews__badge-label {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  top: -5px;
}

.reviews__badge-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.reviews__badge-number {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 120px;
  line-height: 0.7;
  color: #fff;
  text-align: center;
  margin-top: -4px;
}

/* ===========================
   COMPANY
   =========================== */
.company {
  position: relative;
  background: #d9cfb0;
  padding: 61px 0 80px;
}

/* --- Heading --- */
.company__heading {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 31px;
  padding: 0 40px;
}

.company__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.company__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 0.79;
  letter-spacing: -0.014em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  margin: 0;
}

.company__dots {
  display: flex;
  align-items: center;
  gap: 47px;
  position: absolute;
  right: 40px;
  top: 99px;
}

.company__dot {
  display: block;
  border-radius: 50%;
}

.company__dot--orange {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.company__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.company__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

/* --- Table --- */
.company__table {
  max-width: 1191px;
  margin: 0 auto;
  padding: 0 40px;
}

.company__row {
  display: flex;
  align-items: stretch;
  min-height: 120px;
}

.company__cell {
  flex-shrink: 0;
  width: 199px;
  display: flex;
  align-items: center;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #e16d11;
  border-bottom: 2px solid #e77e1a;
}

.company__data {
  flex: 1;
  display: flex;
  align-items: center;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  border-bottom: 1px solid #fff;
}

.company__row--tall .company__cell {
  align-items: flex-start;
  padding-top: 40px;
}

/* ===========================
   CTA
   =========================== */
.cta {
  position: relative;
  display: flex;
  height: 343px;
  overflow: hidden;
}

.cta__bg-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(100px, 13.9vw, 200px);
  line-height: 0.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  white-space: nowrap;
  pointer-events: none;
}

.cta__item {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.cta__item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta__item:hover .cta__item-bg {
  transform: scale(1.05);
}

.cta__item-overlay {
  position: absolute;
  inset: 0;
}

.cta__item-overlay--blue {
  background: rgba(57, 128, 203, 0.4);
}

.cta__item-overlay--orange {
  background: rgba(225, 109, 17, 0.4);
}

.cta__item-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta__item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cta__item-label-text {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  color: #fff;
}

.cta__item-dots {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cta__item-dot {
  display: block;
  border-radius: 50%;
  background: #fff;
}

.cta__item-dot--sm {
  width: 10px;
  height: 10px;
}

.cta__item-dot--md {
  width: 15px;
  height: 15px;
}

.cta__item-dot--lg {
  width: 20px;
  height: 20px;
}

.cta__phone {
  font-family: "Jost", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.26;
  letter-spacing: 0.13em;
  color: #fff;
  text-align: center;
  margin: 0 0 4px;
}

.cta__hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
}

.cta__recruit-title {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.6;
  letter-spacing: 0.17em;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}

.cta__desc {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
}

.cta__desc p {
  margin: 0;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
}

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

.footer__main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
  gap: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer__logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

.footer__divider {
  width: 1px;
  height: 270px;
  background: #fff;
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
}

.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 40px;
  border-top: 1px solid #fff;
}

.footer__copyright {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14.6px;
  line-height: 1.64;
  letter-spacing: 0.175em;
  color: #fff;
  margin: 0;
}

.footer__bottom-dots {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__bottom-dot {
  display: block;
  border-radius: 50%;
  background: #fff;
}

.footer__bottom-dot--sm {
  width: 10px;
  height: 10px;
}

.footer__bottom-dot--md {
  width: 15px;
  height: 15px;
}

.footer__bottom-dot--lg {
  width: 20px;
  height: 20px;
}

/* ===========================
   PAGE TOP
   =========================== */
.pagetop {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pagetop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pagetop__btn {
  width: 54px;
  background: #e16d11;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 24px;
  gap: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pagetop__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 14px;
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Arrow shoots up on hover */
.pagetop:hover .pagetop__arrow {
  animation: arrowShootUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes arrowShootUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-40px);
    opacity: 0;
  }
  41% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Arrow shoots up on click */
.pagetop.is-clicked .pagetop__arrow {
  animation: arrowFlyUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes arrowFlyUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px);
    opacity: 0;
  }
}

.pagetop__text {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.pagetop__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: -14px;
}

.pagetop__dot {
  display: block;
  border-radius: 50%;
}

.pagetop__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.pagetop__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
  margin-top: -6px;
}

/* ===========================
   VALUE
   =========================== */
.value {
  position: relative;
  overflow: hidden;
  padding: 61px 0 80px;
  background: #e0e9eb;
  isolation: isolate;
}

.value__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.value__bg-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value__bg-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

/* --- Heading (same pattern as reviews/company) --- */
.value__heading {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.value__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.value__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 0.79;
  letter-spacing: -0.014em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(180, 180, 180, 0.25);
  margin: 0;
}

.value__dots {
  display: flex;
  align-items: center;
  gap: 47px;
  position: absolute;
  right: 40px;
  top: 99px;
}

.value__dot {
  display: block;
  border-radius: 50%;
}

.value__dot--orange {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #e16d11 0%, #ffc33e 100%);
}

.value__dot--blue {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #3a82b4 0%, #84bdd1 100%);
}

.value__dot--green {
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #8fc769 0%, #9cef63 100%);
}

/* --- Card --- */
.value__card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 55px 60px;
  min-height: 476px;
  background: rgba(241, 244, 246, 0.2);
  border-radius: 30px;
}

.value__copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 45%;
}

.value__en {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 3.4vw, 49px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 30px;
}

.value__jp-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #333;
  margin: 0 0 28px;
}

.value__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.94;
  color: #333;
  margin: 0 0 24px;
}

.value__body:last-child {
  margin-bottom: 0;
}

/* --- Bubble cluster --- */
.value__bubbles {
  position: absolute;
  right: 0;
  top: 0;
  width: 540px;
  height: 440px;
  pointer-events: none;
}

/* Background gradient blobs (decorative overlap) */
.value__blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.value__blob--orange {
  width: 87px;
  height: 87px;
  left: 310px;
  top: 169px;
  background: #e9851d;
}

.value__blob--blue {
  width: 87px;
  height: 87px;
  left: 140px;
  top: 166px;
  background: #4f93bc;
}

.value__blob--green {
  width: 87px;
  height: 87px;
  left: 227px;
  top: 303px;
  background: #90cb68;
}

/* Main bubbles */
.value__bubble {
  position: absolute;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.value__bubble::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  pointer-events: none;
}

.value__bubble--self {
  left: 183px;
  top: 46px;
  color: #ec8d22;
}

.value__bubble--people {
  left: 52px;
  top: 231px;
  color: #5799bf;
}

.value__bubble--companies {
  left: 314px;
  top: 231px;
  color: #94d667;
}

.value__bubble--center {
  left: 183px;
  top: 165px;
  background: #84bdd1;
  z-index: 3;
}

.value__bubble--center::before {
  display: none;
}

.value__bubble-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 6px;
}

.value__bubble-tag--orange {
  background: #e9851d;
}

.value__bubble-tag--blue {
  background: #3a82b4;
}

.value__bubble-tag--green {
  background: #8fc769;
}

.value__bubble-tag--center {
  background: #fff;
  color: #3a82b4;
}

.value__bubble-en {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0.045em;
  text-align: center;
}

.value__bubble-en--orange {
  color: #e16d11;
}

.value__bubble-en--blue {
  color: #3a82b4;
}

.value__bubble-en--green {
  color: #8fc769;
}

.value__bubble-en--center {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.033em;
}

/* ==============================================================
   Reveal animation for value bubbles & blobs
   Triggered once when .value section enters viewport (.value.is-visible)
   ============================================================== */
.value__bubble,
.value__blob {
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
}

/* PC: base transform not set — use plain offsets */
.value__bubble--self      { transform: translateY(-180px);  transition-delay: 0.3s; }
.value__bubble--people    { transform: translateX(-180px);  transition-delay: 0.5s; }
.value__bubble--companies { transform: translateX(180px);   transition-delay: 0.5s; }
.value__bubble--center    { transform: scale(0.3);          transition-delay: 0.75s; }
.value__blob--orange      { transform: translateX(120px);   transition-delay: 0.15s; }
.value__blob--blue        { transform: translateX(-120px);  transition-delay: 0.15s; }
.value__blob--green       { transform: translateY(100px);   transition-delay: 0.4s; }
.value__blob--gray        { transform: scale(0);            transition-delay: 0.6s; }

/* Final state (PC) */
.value.is-visible .value__bubble,
.value.is-visible .value__blob {
  opacity: 1;
}
.value.is-visible .value__bubble--self,
.value.is-visible .value__bubble--people,
.value.is-visible .value__bubble--companies,
.value.is-visible .value__blob--orange,
.value.is-visible .value__blob--blue,
.value.is-visible .value__blob--green {
  transform: translate(0, 0);
}
.value.is-visible .value__bubble--center,
.value.is-visible .value__blob--gray {
  transform: scale(1);
}

/* Tablet & Mobile: base transform is translate(-50%, -50%) (center-based) */
@media (max-width: 1024px) {
  .value__bubble--self      { transform: translate(-50%, -50%) translateY(-160px); }
  .value__bubble--people    { transform: translate(-50%, -50%) translateX(-160px); }
  .value__bubble--companies { transform: translate(-50%, -50%) translateX(160px); }
  .value__bubble--center    { transform: translate(-50%, -50%) scale(0.3); }
  .value__blob--orange      { transform: translate(-50%, -50%) translateX(80px); }
  .value__blob--blue        { transform: translate(-50%, -50%) translateX(-80px); }
  .value__blob--green       { transform: translate(-50%, -50%) translateY(70px); }
  .value__blob--gray        { transform: translate(-50%, -50%) scale(0); }

  .value.is-visible .value__bubble--self,
  .value.is-visible .value__bubble--people,
  .value.is-visible .value__bubble--companies,
  .value.is-visible .value__bubble--center,
  .value.is-visible .value__blob--orange,
  .value.is-visible .value__blob--blue,
  .value.is-visible .value__blob--green,
  .value.is-visible .value__blob--gray {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .value__bubble,
  .value__blob {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  @media (max-width: 1024px) {
    .value__bubble,
    .value__blob {
      transform: translate(-50%, -50%) !important;
    }
  }
}

/* ==============================================================
   Hamburger button & Mobile navigation drawer
   (base styles — visibility switched per breakpoint below)
   ============================================================== */
.header__hamburger {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 110;
}

.header__hamburger-bar {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

/* Bars are offset from the button's center — works at any size */
.header__hamburger-bar:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
.header__hamburger-bar:nth-child(2) { transform: translate(-50%, -50%); }
.header__hamburger-bar:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }

.header__hamburger.is-open .header__hamburger-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
  overflow-y: auto;
  display: none;
}

/* Enable the drawer on tablet/mobile */
@media (max-width: 1024px) {
  .mobile-nav {
    display: block;
  }
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__inner {
  min-height: 100%;
  padding: 100px 30px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list {
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0;
}

.mobile-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 4px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.mobile-nav__link:hover {
  opacity: 0.7;
}

.mobile-nav__link-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
}

.mobile-nav__link-en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #84bdd1;
}

.mobile-nav__link--contact {
  margin-top: 10px;
  border-bottom: none !important;
  background: #e16d11;
  border-radius: 32px;
  padding: 16px 20px;
  align-items: center;
  text-align: center;
}

body.is-nav-open {
  overflow: hidden;
}

/* ==============================================================
   Breakpoint: Tablet (1024px and below)
   ============================================================== */
@media (max-width: 1024px) {
  /* ---- Main Visual ---- */
  .mv {
    height: auto;
    min-height: 720px;
    padding-bottom: 0;
  }
  /* Align content to .mv height (not viewport) so heading is visually centered */
  .mv__content {
    top: 0;
    bottom: 0;
    height: auto;
    padding-bottom: 0;
  }
  .mv__title {
    font-size: clamp(56px, 13vw, 140px);
  }
  .mv__subtitle {
    font-size: clamp(24px, 5.2vw, 68px);
  }
  /* Show only 4 columns (same rhythm as PC, stretched to fill width) */
  .mv__column:nth-child(n+5) {
    display: none;
  }
  .mv__column:nth-child(1) { left: 2.5%;  width: 21.9%; }
  .mv__column:nth-child(2) { left: 26.6%; width: 21.9%; }
  .mv__column:nth-child(3) { left: 50.6%; width: 21.9%; }
  .mv__column:nth-child(4) { left: 74.7%; width: 21.9%; }

  /* ---- Header → Hamburger ---- */
  .header,
  .header.is-fixed {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 720px;
    height: 64px;
    opacity: 1;
    gap: 0;
    z-index: 120;
  }
  .header.is-hiding,
  .header.is-fixed.is-hiding {
    opacity: 1;
    transform: translateX(-50%);
  }
  .header__bar,
  .header.is-fixed .header__bar {
    width: 100%;
    height: 64px;
    padding: 0 20px;
    border-radius: 40px;
    gap: 0;
    justify-content: space-between;
  }
  .header__nav-list,
  .header.is-fixed .header__nav-list {
    display: none;
  }
  .header__contact,
  .header.is-fixed .header__contact {
    display: none;
  }
  .header__logo,
  .header.is-fixed .header__logo {
    width: auto;
    max-width: 220px;
    opacity: 1;
    flex: 0 1 auto;
  }
  .header__logo img {
    width: 100%;
    max-width: 220px;
    height: 22px;
    object-position: left center;
  }
  .header__hamburger {
    display: block;
    width: 44px;
    height: 44px;
    margin-left: 12px;
  }

  /* ---- About ---- */
  .about {
    padding: 60px 0 80px;
  }
  .about__inner {
    padding: 0 30px;
  }
  .about__body {
    gap: 30px;
  }
  .about__logo {
    width: clamp(160px, 24vw, 260px);
  }
  .about__text {
    font-size: 16px;
    line-height: 2.1;
  }

  /* ---- Strength ---- */
  .strength__item {
    min-height: 480px;
  }
  .strength__content {
    padding: 50px 40px;
  }

  /* ---- Service ---- */
  .service {
    padding: 140px 0 70px;
  }
  .service__heading {
    padding: 0 30px;
  }
  .service__dots {
    right: 30px;
  }
  .service__mission {
    width: calc(100% - 60px);
    margin: 50px 30px 70px auto;
    padding: 40px 40px 50px;
  }
  .service__items {
    padding: 0 30px;
  }
  .service__card {
    height: 200px;
  }
  .service__card.is-expanded {
    height: auto;
    min-height: 720px;
  }
  .service__card-detail {
    padding: 40px 28px 28px;
  }
  .service__detail-title {
    font-size: 24px;
  }
  .service__detail-subtitle {
    font-size: 20px;
  }
  .service__detail-desc {
    font-size: 16px;
  }

  /* ---- Reviews ---- */
  .reviews__heading {
    padding: 0 30px;
  }
  .reviews__dots {
    right: 30px;
  }
  .reviews__item {
    padding: 0 30px;
  }
  .reviews__card {
    width: 100%;
    padding: 46px 40px 46px 100px;
  }
  .reviews__item--left .reviews__card {
    padding: 46px 100px 46px 40px;
  }
  .reviews__img {
    width: 170px;
  }
  .reviews__img--left {
    left: 40px;
  }
  .reviews__img--right {
    right: 0;
    width: 190px;
  }
  .reviews__item--right .reviews__badge {
    left: 180px;
  }
  .reviews__badge--right {
    right: 180px;
  }
  .reviews__badge-number {
    font-size: 96px;
  }

  /* ---- Value ---- */
  .value__heading {
    padding: 0 30px;
  }
  .value__dots {
    right: 30px;
  }
  .value__card {
    padding: 70px 40px 60px;
    min-height: auto;
  }
  .value__copy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .value__bubbles {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 500px;
    height: 380px;
    margin: 0 auto;
  }
  .value__blob--orange { left: 62%; top: 36%; }
  .value__blob--gray   { left: 82%; top: 38%; }
  .value__blob--blue   { left: 32%; top: 34%; }
  .value__blob--green  { left: 48%; top: 64%; }
  .value__bubble--self      { left: 41%; top: 16%; }
  .value__bubble--people    { left: 22%; top: 49%; }
  .value__bubble--companies { left: 60%; top: 49%; }
  .value__bubble--center    { left: 40%; top: 35%; }

  /* ---- Company ---- */
  .company__heading {
    padding: 0 30px;
  }
  .company__dots {
    right: 30px;
  }
  .company__table {
    padding: 0 30px;
  }
  .company__cell {
    width: 160px;
    font-size: 16px;
  }
  .company__data {
    font-size: 16px;
  }

  /* ---- CTA ---- */
  .cta {
    height: 300px;
  }
  .cta__bg-text {
    font-size: clamp(80px, 11vw, 150px);
  }
  .cta__phone {
    font-size: clamp(22px, 3.2vw, 32px);
  }
}

/* ==============================================================
   Breakpoint: Mobile (768px and below)
   ============================================================== */
@media (max-width: 768px) {
  /* ---- Main Visual ---- */
  .mv {
    min-height: 640px;
    padding-bottom: 0;
  }
  .mv__catchphrase {
    margin-right: 5%;
    font-size: clamp(18px, 4.5vw, 32px);
  }
  .mv__title {
    font-size: clamp(48px, 15vw, 100px);
  }
  .mv__subtitle {
    font-size: clamp(18px, 5vw, 40px);
  }
  /* Show only 3 columns (same rhythm as PC, stretched to fill width) */
  .mv__column:nth-child(n+4) {
    display: none;
  }
  .mv__column:nth-child(1) { left: 2.5%;  width: 29.9%; }
  .mv__column:nth-child(2) { left: 34.6%; width: 29.9%; }
  .mv__column:nth-child(3) { left: 66.7%; width: 29.9%; }

  /* ---- Header ---- */
  .header,
  .header.is-fixed {
    width: calc(100% - 24px);
    height: 58px;
    top: 12px;
  }
  .header__bar,
  .header.is-fixed .header__bar {
    height: 58px;
    padding: 0 16px;
  }
  .header__logo img {
    max-width: 180px;
    height: 18px;
  }
  .header__hamburger {
    width: 40px;
    height: 40px;
    margin-left: 8px;
  }

  /* ---- About ---- */
  .about {
    padding: 50px 0 60px;
  }
  .about__inner {
    padding: 0 20px;
  }
  .about__heading {
    margin-bottom: 36px;
  }
  .about__subtitle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .about__subtitle {
    font-size: clamp(17px, 4.2vw, 22px);
  }
  .about__dots {
    gap: 20px;
  }
  .about__dot--orange { width: 36px; height: 36px; }
  .about__dot--blue   { width: 28px; height: 28px; }
  .about__dot--green  { width: 22px; height: 22px; }
  .about__body {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .about__text {
    font-size: 15px;
    line-height: 2.0;
  }
  .about__logo {
    width: clamp(160px, 50vw, 240px);
  }

  /* ---- Strength ---- */
  .strength__item {
    min-height: 400px;
  }
  .strength__content {
    padding: 40px 24px;
  }
  .strength__item--left .strength__content,
  .strength__item--right .strength__content {
    text-align: left;
  }
  .strength__number {
    font-size: clamp(36px, 9vw, 56px);
    margin-bottom: 20px;
  }
  .strength__sub {
    font-size: clamp(14px, 3.5vw, 18px);
  }
  .strength__heading {
    font-size: clamp(26px, 6.2vw, 36px);
    margin: 6px 0 30px;
  }
  .strength__desc {
    font-size: 15px;
    line-height: 1.8;
  }

  /* ---- Service ---- */
  .service {
    padding: 100px 0 60px;
  }
  .service__heading {
    padding: 0 20px;
  }
  .service__label {
    font-size: 12px;
  }
  .service__dots {
    gap: 18px;
    right: 20px;
  }
  .service__dot--orange { width: 32px; height: 32px; }
  .service__dot--blue   { width: 26px; height: 26px; }
  .service__dot--green  { width: 20px; height: 20px; }
  .service__sliders {
    height: 600px;
    transform: rotate(-10deg) scale(1.4) translateY(-8%);
    gap: 12px;
  }
  .service__slide--big { width: 140px; height: 93px; }
  .service__slide--sm  { width: 80px;  height: 53px; }
  .service__mission {
    width: calc(100% - 40px);
    margin: 40px 20px 50px;
    padding: 32px 26px 36px;
  }
  .service__mission-title-en { font-size: 24px; }
  .service__mission-title-jp { font-size: 20px; }
  .service__mission-dots {
    top: 34px;
    right: 26px;
    gap: 8px;
  }
  .service__mission-dot--sm { width: 7px; height: 7px; }
  .service__mission-dot--md { width: 11px; height: 11px; }
  .service__mission-dot--lg { width: 15px; height: 15px; }
  .service__mission-text {
    font-size: 15px;
    line-height: 1.7;
  }
  /* 3 cards → stacked vertically */
  .service__items {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
  }
  .service__card {
    flex: 1 1 auto;
    width: 100%;
    height: 160px;
  }
  .service__items.has-expanded .service__card:not(.is-expanded) {
    flex: 0 0 0;
    height: 0;
    margin: 0;
  }
  .service__card.is-expanded {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 580px;
  }
  /* Switch detail to static flow so parent height expands to fit content */
  .service__card.is-expanded .service__card-detail {
    position: relative;
    inset: auto;
    height: auto;
  }
  /* Keep bg & overlay absolutely positioned inside the card */
  .service__card.is-expanded .service__card-bg,
  .service__card.is-expanded .service__card-overlay {
    position: absolute;
    inset: 0;
  }
  .service__card-badge {
    top: 32px;
    left: 14px;
    font-size: 16px;
    line-height: 26px;
  }
  .service__card-name {
    font-size: 20px;
    left: 16px;
  }
  .service__card-link {
    bottom: 20px;
    right: 14px;
  }
  .service__card-link-text { font-size: 16px; }
  /* Expanded detail: stack left & right */
  .service__card-detail {
    padding: 60px 20px 28px;
  }
  .service__detail-upper {
    flex-direction: column;
    gap: 16px;
  }
  /* Lift left's children into the outer flex so we can reorder them */
  .service__detail-left {
    display: contents;
  }
  .service__detail-right {
    flex: 1 1 auto;
    width: 100%;
    height: 200px;
  }
  /* Order: heading → image → subtitle → desc */
  .service__detail-top      { order: 1; }
  .service__detail-right    { order: 2; }
  .service__detail-subtitle { order: 3; }
  .service__detail-desc     { order: 4; }
  .service__detail-top {
    gap: 14px;
  }
  .service__detail-badge {
    width: 60px;
    height: 60px;
  }
  .service__detail-badge-label { font-size: 10px; }
  .service__detail-badge-num   { font-size: 14px; }
  .service__detail-title {
    font-size: 20px;
  }
  .service__detail-dots { gap: 4px; }
  .service__detail-dot--green  { width: 7px; height: 7px; }
  .service__detail-dot--blue   { width: 11px; height: 11px; }
  .service__detail-dot--orange { width: 15px; height: 15px; }
  .service__detail-subtitle { font-size: 16px; }
  .service__detail-desc { font-size: 14px; line-height: 1.75; }
  .service__detail-cards {
    flex-direction: column;
    gap: 24px;
  }
  .service__detail-card-body {
    height: auto;
    min-height: 130px;
    padding: 26px 14px 16px;
  }
  .service__detail-card-body p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* ---- Reviews ---- */
  .reviews {
    padding: 50px 0 80px;
  }
  .reviews__heading {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .reviews__dots {
    gap: 18px;
    right: 20px;
    top: auto;
    bottom: 30px;
  }
  .reviews__dot--orange { width: 32px; height: 32px; }
  .reviews__dot--blue   { width: 26px; height: 26px; }
  .reviews__dot--green  { width: 20px; height: 20px; }
  .reviews__subtitle {
    font-size: clamp(17px, 4.2vw, 22px);
  }
  .reviews__item,
  .reviews__item--left,
  .reviews__item--right {
    padding: 0 20px;
    margin-bottom: 70px;
    justify-content: center;
  }
  .reviews__card,
  .reviews__item--left .reviews__card {
    padding: 90px 24px 30px;
    width: 100%;
    border-radius: 22px;
    margin-top: 50px;
  }
  .reviews__card-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .reviews__card-text {
    font-size: 14px;
    line-height: 1.75;
  }
  .reviews__img,
  .reviews__img--left,
  .reviews__img--right {
    position: absolute;
    top: -20px;
    width: 120px;
    left: 20px;
    right: auto;
  }
  .reviews__item--left .reviews__img--right {
    left: auto;
    right: 20px;
    top: -20px;
  }
  /* 01 / 03 (right-aligned items) */
  .reviews__item--right .reviews__badge {
    top: 3px;
    left: 110px;
    right: auto;
    width: 90px;
  }
  /* 02 (left-aligned item) */
  .reviews__badge--right {
    top: 3px;
    right: 120px;
    left: auto !important;
    width: 90px;
  }
  .reviews__badge-label { font-size: 14px; }
  .reviews__badge-number { font-size: 64px; }

  /* ---- Value ---- */
  .value {
    padding: 50px 0 60px;
  }
  .value__heading {
    padding: 0 20px;
  }
  .value__dots {
    gap: 18px;
    right: 20px;
    top: auto;
    bottom: -10px;
  }
  .value__dot--orange { width: 32px; height: 32px; }
  .value__dot--blue   { width: 26px; height: 26px; }
  .value__dot--green  { width: 20px; height: 20px; }
  .value__card {
    display: flex;
    flex-direction: column;
    padding: 40px 24px 50px;
    border-radius: 22px;
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
  /* Lift value__copy's children into the outer flex so we can reorder them */
  .value__copy {
    display: contents;
  }
  /* Order: Gratitude.Growth → bubbles → 感謝が育てる → body */
  .value__en         { order: 1; }
  .value__bubbles    { order: 2; }
  .value__jp-heading { order: 3; }
  .value__body       { order: 4; }
  .value__en {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 18px;
  }
  .value__jp-heading {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .value__body {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
  }
  .value__bubbles {
    max-width: 100%;
    width: 100%;
    height: 310px;
    margin: 0 auto 10px;
  }
  .value__bubble {
    width: 140px;
    height: 140px;
  }
  /* Center-based positioning for bubbles */
  .value__bubble--self,
  .value__bubble--people,
  .value__bubble--companies,
  .value__bubble--center {
    transform: translate(-50%, -50%);
  }
  .value__bubble--self      { left: 50%; top: 25%; }
  .value__bubble--people    { left: 25%; top: 72%; }
  .value__bubble--companies { left: 75%; top: 72%; }
  .value__bubble--center    { left: 50%; top: 50%; }
  /* Decorative blobs (also center-based) */
  .value__blob--orange,
  .value__blob--blue,
  .value__blob--green,
  .value__blob--gray {
    transform: translate(-50%, -50%);
  }
  .value__blob--orange { left: 65%; top: 42%; width: 80px; height: 80px; }
  .value__blob--gray   { left: 82%; top: 48%; width: 32px; height: 32px; }
  .value__blob--blue   { left: 35%; top: 42%; width: 80px; height: 80px; }
  .value__blob--green  { left: 50%; top: 72%; width: 80px; height: 80px; }
  .value__bubble-en {
    font-size: 16px;
  }
  .value__bubble-en--center { font-size: 22px; }
  .value__bubble-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  /* ---- Company ---- */
  .company {
    padding: 50px 0 60px;
  }
  .company__heading {
    padding: 0 20px;
  }
  .company__dots {
    gap: 18px;
    right: 20px;
    top: auto;
    bottom: -10px;
  }
  .company__dot--orange { width: 32px; height: 32px; }
  .company__dot--blue   { width: 26px; height: 26px; }
  .company__dot--green  { width: 20px; height: 20px; }
  .company__table {
    padding: 0 20px;
  }
  .company__row {
    flex-direction: column;
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid #dde0e4;
  }
  .company__cell {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: none;
    margin-bottom: 6px;
  }
  .company__data {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
    border-bottom: none;
  }
  .company__row--tall .company__cell {
    padding-top: 0;
  }

  /* ---- CTA: 2-col → stacked ---- */
  .cta {
    flex-direction: column;
    height: auto;
  }
  .cta__bg-text {
    font-size: clamp(64px, 14vw, 110px);
  }
  .cta__item {
    width: 100%;
    min-height: 240px;
    padding: 40px 20px;
  }
  .cta__phone {
    font-size: clamp(22px, 6.5vw, 32px);
    letter-spacing: 0.08em;
  }
  .cta__hours { font-size: 13px; margin-bottom: 14px; }
  .cta__desc { font-size: 15px; line-height: 1.8; }
  .cta__recruit-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .cta__item-label-text { font-size: 16px; }
  .cta__item-dot--sm { width: 8px; height: 8px; }
  .cta__item-dot--md { width: 12px; height: 12px; }
  .cta__item-dot--lg { width: 16px; height: 16px; }

  /* ---- Footer ---- */
  .footer__main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 50px 24px 40px;
    text-align: center;
  }
  .footer__divider {
    width: 80%;
    height: 1px;
  }
  .footer__nav {
    justify-content: center;
    gap: 14px 18px;
    flex-wrap: wrap;
  }
  .footer__nav-link {
    font-size: 13px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
    text-align: center;
  }
  .footer__copyright {
    font-size: 11.5px;
    letter-spacing: 0.12em;
  }
  .footer__bottom-dot--sm { width: 8px; height: 8px; }
  .footer__bottom-dot--md { width: 12px; height: 12px; }
  .footer__bottom-dot--lg { width: 16px; height: 16px; }

  /* ---- Page top ---- */
  .pagetop {
    right: 16px;
    bottom: 20px;
  }
  .pagetop__btn {
    width: 44px;
    padding: 16px 0 20px;
  }
  .pagetop__arrow {
    width: 14px;
    height: 12px;
  }
  .pagetop__text { font-size: 11px; }
  .pagetop__dot--blue  { width: 30px; height: 30px; }
  .pagetop__dot--green { width: 22px; height: 22px; }
}

/* ==============================================================
   Breakpoint: Small phone (480px and below)
   ============================================================== */
@media (max-width: 480px) {
  .mv {
    min-height: 560px;
  }
  .mv__title { font-size: clamp(44px, 17vw, 80px); }
  .mv__subtitle { font-size: clamp(16px, 5.5vw, 30px); }

  .about__inner,
  .service__heading,
  .service__items,
  .reviews__heading,
  .reviews__item,
  .value__heading,
  .company__heading,
  .company__table {
    padding-left: 16px;
    padding-right: 16px;
  }
  .service__mission {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    padding: 28px 22px 32px;
  }
  .service__mission-title-en { font-size: 20px; }
  .service__mission-title-jp { font-size: 16px; }
  .service__mission-dots { top: 30px; right: 22px; }

  .strength__content {
    padding: 36px 20px;
  }

  .reviews__card,
  .reviews__item--left .reviews__card {
    padding: 46px 18px 26px;
  }
  .reviews__img,
  .reviews__item--left .reviews__img--right {
    width: 96px;
    top: -16px;
  }
  .reviews__item--right .reviews__badge {
    top: 3px;
    left: 110px;
    right: auto;
    width: 74px;
  }
  .reviews__badge--right {
    top: 3px;
    right: 120px;
    left: auto !important;
    width: 74px;
  }
  .reviews__badge-number { font-size: 54px; }

  .value__card {
    padding: 32px 18px 40px;
    margin: 0 16px;
    max-width: calc(100% - 32px);
  }
  .value__bubbles {
    height: 270px;
  }
  .value__bubble {
    width: 120px;
    height: 120px;
  }
  .value__blob--orange,
  .value__blob--blue,
  .value__blob--green { width: 64px; height: 64px; }
  .value__blob--gray  { width: 26px; height: 26px; }
  .value__bubble-en { font-size: 14px; }
  .value__bubble-en--center { font-size: 18px; }

  .cta__item {
    min-height: 220px;
    padding: 32px 18px;
  }
  .cta__phone { font-size: clamp(20px, 7vw, 28px); }
  .cta__recruit-title { font-size: 20px; }

  .footer__main {
    padding: 40px 20px 30px;
  }
  .footer__copyright {
    font-size: 10.5px;
  }
}
