:root {
  --bg: #f5f5f3;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.84);
  --text: #111111;
  --muted: #646464;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --font-body: "zen-kaku-gothic-new", sans-serif;
  --font-display: "zen-kaku-gothic-new", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='610' height='377' viewBox='0 0 610 377' fill='none'%3E%3Cg stroke='%23d8d1c3' stroke-opacity='0.72' stroke-width='1'%3E%3Cpath d='M377 0V377'/%3E%3Cpath d='M233 0V377'/%3E%3Cpath d='M466 0V377'/%3E%3Cpath d='M0 233H610'/%3E%3Cpath d='M0 144H610'/%3E%3Cpath d='M0 89H610'/%3E%3Cpath d='M0 377A377 377 0 0 1 377 0'/%3E%3Cpath d='M377 233A233 233 0 0 1 610 0'/%3E%3Cpath d='M233 377A144 144 0 0 0 377 233'/%3E%3Cpath d='M0 233A233 233 0 0 0 233 0'/%3E%3Cpath d='M466 144A89 89 0 0 1 555 233'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 610px 377px;
  background-position: center top;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='610' height='377' viewBox='0 0 610 377' fill='none'%3E%3Cg stroke-width='1.15'%3E%3Cpath d='M377 0V377' stroke='%2376C7FF' stroke-opacity='0.88'/%3E%3Cpath d='M233 0V377' stroke='%23FFD36E' stroke-opacity='0.88'/%3E%3Cpath d='M466 0V377' stroke='%23FF9AA8' stroke-opacity='0.88'/%3E%3Cpath d='M0 233H610' stroke='%238FD7A2' stroke-opacity='0.88'/%3E%3Cpath d='M0 144H610' stroke='%2376C7FF' stroke-opacity='0.88'/%3E%3Cpath d='M0 89H610' stroke='%23FFD36E' stroke-opacity='0.88'/%3E%3Cpath d='M0 377A377 377 0 0 1 377 0' stroke='%2378AFFF' stroke-opacity='0.92'/%3E%3Cpath d='M377 233A233 233 0 0 1 610 0' stroke='%23FFB36B' stroke-opacity='0.92'/%3E%3Cpath d='M233 377A144 144 0 0 0 377 233' stroke='%239ADDA9' stroke-opacity='0.92'/%3E%3Cpath d='M0 233A233 233 0 0 0 233 0' stroke='%23FF98A7' stroke-opacity='0.92'/%3E%3Cpath d='M466 144A89 89 0 0 1 555 233' stroke='%2376C7FF' stroke-opacity='0.92'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 610px 377px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(
    circle 220px at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.38) 56%,
    rgba(0, 0, 0, 0) 78%
  );
  mask-image: radial-gradient(
    circle 220px at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.38) 56%,
    rgba(0, 0, 0, 0) 78%
  );
  transition: opacity 180ms ease;
}

body.has-cursor-spotlight::after {
  opacity: 0.82;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.site-header__inner {
  position: relative;
  width: 100%;
  min-height: 96px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo-image {
  display: block;
  width: auto;
  height: 50px;
}

.site-nav {
  position: absolute;
  right: 128px;
  bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav__item {
  font-family: var(--font-body);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.06em;
  transition: transform 220ms ease;
}

.site-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.82);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav__label-en {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.site-nav__label-ja {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: transform 220ms ease;
}

.site-nav__item:hover {
  transform: translateY(-2px);
}

.site-nav__item:hover::after,
.site-nav__item:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav__item:hover .site-nav__label-en,
.site-nav__item:focus-visible .site-nav__label-en {
  transform: translateY(-1px);
  opacity: 0.72;
}

.site-nav__item:hover .site-nav__label-ja,
.site-nav__item:focus-visible .site-nav__label-ja {
  transform: translateY(-1px);
}

.menu-button {
  font-family: var(--font-body);
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  background: #F7F7F7;
  border: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.2);
}

.menu-button__icon {
  display: block;
  width: 24px;
  height: 12px;
  background-image:
    linear-gradient(var(--text), var(--text)),
    linear-gradient(var(--text), var(--text)),
    linear-gradient(var(--text), var(--text));
  background-repeat: no-repeat;
  background-size: 24px 2px;
  background-position:
    0 0,
    0 50%,
    0 100%;
}

.menu-button__text {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.menu-button[aria-expanded="true"] {
  background: #ffffff;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.site-menu.is-open {
  pointer-events: auto;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.16);
  opacity: 0;
  cursor: pointer;
  transition: opacity 320ms ease;
}

.site-menu.is-open .site-menu__backdrop {
  opacity: 1;
}

.site-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100dvh;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  transform: translate3d(100%, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open .site-menu__panel {
  transform: translate3d(0, 0, 0);
}

.site-menu__inner {
  height: 100%;
  padding: 124px 40px 40px;
  display: flex;
  flex-direction: column;
}

.site-menu__eyebrow {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-menu__nav {
  display: grid;
  gap: 10px;
}

.site-menu__link {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu__link:hover {
  transform: translateX(-4px);
}

.site-menu__link-en {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-menu__link-ja {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.site-menu__footer {
  margin-top: auto;
  padding-top: 28px;
}

.site-menu__footer-copy {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.hero {
  position: relative;
  height: 450px;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(243, 243, 241, 0.9) 0%, rgba(243, 243, 241, 0.84) 100%);
}

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

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.8) 1.1px, transparent 1.1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.hero__content {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  color: white;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__eyebrow {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.hero__link {
  font-family: var(--font-body);
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: white;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: white;
}

.strength {
  position: relative;
  padding: 80px 0 0;
  overflow-x: clip;
}

.strength__inner {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
}

.strength__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-label {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.strength__lead,
.service__lead,
.company__lead {
  position: relative;
  display: block;
  min-height: 3em;
  white-space: normal;
}

.strength__lead {
  margin: 0;
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.strength__lead.is-typing::after,
.service__lead.is-typing::after,
.company__lead.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: currentColor;
  animation: strength-lead-caret 0.9s steps(1) infinite;
}

.strength__bgword {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 0;
  margin: 0;
  font-family: "josefin-sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(17, 17, 17, 0.035);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.strength__slider {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-bottom: 34px;
  --strength-cycle-duration: 5200ms;
  cursor: default;
}

.strength__slider .swiper-wrapper {
  height: auto;
  align-items: stretch;
}

.strength__slider .swiper-slide {
  width: 660px;
  height: auto;
  display: flex;
  overflow: visible;
}

.strength-card {
  position: relative;
  min-height: 226px;
  height: auto;
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  cursor: default;
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow 240ms ease;
}

.strength-card__frame {
  position: relative;
  width: 100%;
  min-height: 226px;
  height: 100%;
  overflow: hidden;
}

.strength-card__frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #000000;
  border-left: 22px solid transparent;
}

.strength-card__circle {
  position: absolute;
  top: 42px;
  left: 38px;
  width: 146px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  transform: none;
}

.strength-card__icon {
  position: absolute;
  top: 115px;
  left: 111px;
  width: 120px;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.strength-card__body {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-left: 226px;
  padding: 58px 40px 58px 0;
}

.strength-card__eyebrow {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.strength-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.strength-card__text {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.strength__pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.strength__pagination .swiper-pagination-bullet {
  width: 24px;
  height: 2px;
  padding: 0;
  border: none;
  appearance: none;
  margin: 0 !important;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  transition: width 220ms ease;
}

.strength__pagination .swiper-pagination-bullet-active {
  width: 58px;
}

.strength__pagination-track {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.12);
}

.strength__pagination-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left center;
}

.strength__pagination .swiper-pagination-bullet-active .strength__pagination-fill {
  animation: strength-pagination-progress var(--strength-cycle-duration) linear forwards;
}

.strength__pagination .swiper-pagination-bullet:focus-visible,
.strength-card:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.5);
  outline-offset: 3px;
}

@keyframes strength-pagination-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.service {
  padding: 160px 0 0;
  overflow-x: clip;
}

.service__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
}

.service__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.service__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.service__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  gap: 12px;
  align-items: stretch;
}

.service__summary {
  min-height: 442px;
  padding: 48px 40px 40px;
  background: #f8f8f8;
}

.service__summary-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.service__summary-text {
  margin: 38px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

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

.service-showcase__main {
  position: relative;
  min-height: 344px;
  background: #f8f8f8;
}

.service-showcase__main::after,
.service-thumb--active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #000000;
  border-left: 22px solid transparent;
}

.service-showcase__main-inner {
  position: relative;
  min-height: 380px;
  padding: 34px 34px 34px 34px;
}

.service-showcase__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(300px, 64vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-showcase__image-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  display: block;
}

.service-showcase__content,
.service-showcase__text {
  position: relative;
  z-index: 2;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-showcase__main.is-switching .service-showcase__content,
.service-showcase__main.is-switching .service-showcase__text,
.service-showcase__main.is-switching .service-showcase__image {
  opacity: 0;
}

.service-showcase__main.is-switching .service-showcase__content,
.service-showcase__main.is-switching .service-showcase__text {
  transform: translateY(8px);
}

.service-showcase__main.is-switching .service-showcase__image {
  transform: translate(-50%, -50%) scale(0.96);
}

.service-showcase__eyebrow,
.service-thumb__eyebrow {
  margin: 0 0 4px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-showcase__title,
.service-thumb__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.service-showcase__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 276px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  transform: translate(-50%, -50%);
  transition: background-color 260ms ease;
}

.service-showcase__text {
  position: absolute;
  left: 34px;
  bottom: 34px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.service-showcase__pause {
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: 27px;
  height: 27px;
  padding: 0;
  border: none;
  background: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 320ms ease;
}

.site-header.is-vision-mode {
  background: transparent;
  border-bottom-color: transparent;
}

.site-header.is-vision-mode .site-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-vision-mode .site-header__logo,
.site-header.is-vision-mode .menu-button__text {
  color: #ffffff;
}

.site-header.is-vision-mode .menu-button {
  background: transparent;
}

.site-header.is-vision-mode .menu-button__icon {
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff);
}

.service-showcase__pause-bar {
  width: 3px;
  height: 11px;
  background: #ffffff;
}

.service-showcase__play-icon {
  display: none;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ffffff;
  margin-left: 2px;
}

.service-showcase__pause.is-paused {
  gap: 0;
}

.service-showcase__pause.is-paused .service-showcase__pause-bar {
  display: none;
}

.service-showcase__pause.is-paused .service-showcase__play-icon {
  display: block;
}

.service-showcase__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(17, 17, 17, 0.12);
  overflow: hidden;
}

.service-showcase__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left center;
}

.service-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-thumb {
  position: relative;
  min-height: 98px;
  padding: 0 18px;
  border: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.12);
  display: flex;
  align-items: center;
  appearance: none;
  cursor: pointer;
}

.service-thumb--active {
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 1);
}

.service-thumb:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.45);
  outline-offset: 3px;
}

.service-thumb__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #cbd5ff;
  transform: translate(-50%, -50%);
}

.service-thumb:nth-child(2) .service-thumb__circle {
  background: #ffd6e0;
}

.service-thumb:nth-child(3) .service-thumb__circle {
  background: #ffe6a7;
}

.service-thumb:nth-child(4) .service-thumb__circle {
  background: #c7f9cc;
}

.service-thumb__body {
  position: relative;
  z-index: 1;
  margin-left: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-thumb__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 60px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.service-marquee {
  padding: 120px 0 0;
  overflow: hidden;
}

.service-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: service-marquee-scroll 34s linear infinite;
  animation-play-state: paused;
}

.service-marquee.is-visible .service-marquee__track {
  animation-play-state: running;
}

.service-marquee__group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 16px;
}

.service-marquee__item {
  width: 300px;
  height: 230px;
  border-radius: 14px;
  background: #f6f6f4;
  flex: 0 0 auto;
  overflow: hidden;
}
.service-marquee__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-marquee__item--short {
  margin-top: 0;
}

.service-marquee__item--base {
  margin-top: 38px;
}

.service-marquee__item--tall {
  margin-top: -30px;
}

@keyframes service-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes strength-lead-caret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.vision {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: #111111;
}

.vision__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
}

.vision__head {
  text-align: center;
}

.vision__head .section-label {
  margin-bottom: 8px;
}

.vision__content {
  position: relative;
  max-width: 980px;
  margin: 90px auto 0;
  text-align: center;
}

.vision__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(62vw, 350px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 28%, rgba(48, 128, 255, 0.32), transparent 54%),
    radial-gradient(circle at 72% 34%, rgba(64, 160, 255, 0.26), transparent 52%),
    radial-gradient(circle at 64% 72%, rgba(128, 176, 255, 0.22), transparent 48%),
    linear-gradient(135deg, rgba(238, 245, 255, 0.92) 0%, rgba(188, 214, 255, 0.68) 55%, rgba(104, 143, 255, 0.42) 100%);
  border-radius: 42% 58% 63% 37% / 38% 43% 57% 62%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation:
    vision-blob-morph 12s ease-in-out infinite,
    vision-blob-drift 18s ease-in-out infinite;
  animation-play-state: paused;
}

.vision.is-visible .vision__blob {
  animation-play-state: running;
}

.vision__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 64px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.vision__eyebrow {
  margin: 18px 0 0;
  font-family: "josefin-sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vision__text {
  margin: 46px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 2.15;
}

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

.vision__sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--sparkle-color, rgba(64, 160, 255, 0.18));
  opacity: var(--sparkle-opacity, 0.16);
  will-change: transform, opacity, background-color;
  --sparkle-size-multiplier: 1.75;
  animation: vision-sparkle-float var(--sparkle-duration, 9s) ease-in-out infinite alternate;
  animation-delay: var(--sparkle-delay, 0s);
  animation-play-state: paused;
}

.vision.is-visible .vision__sparkle {
  animation-play-state: running;
}

.vision__sparkle--1 {
  top: 16%;
  left: 10%;
  width: 4px;
  height: 4px;
}

.vision__sparkle--2 {
  top: 22%;
  right: 14%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--3 {
  top: 44%;
  left: 16%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--4 {
  top: 38%;
  right: 28%;
  width: 5px;
  height: 5px;
}

.vision__sparkle--5 {
  bottom: 28%;
  left: 8%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--6 {
  bottom: 18%;
  right: 10%;
  width: 4px;
  height: 4px;
}

.vision__sparkle--7 {
  bottom: 34%;
  left: 48%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--8 {
  top: 18%;
  left: 54%;
  width: 4px;
  height: 4px;
}

.vision__sparkle--9 {
  top: 10%;
  left: 24%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--10 {
  top: 30%;
  left: 34%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--11 {
  top: 12%;
  right: 24%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--12 {
  top: 48%;
  right: 18%;
  width: 4px;
  height: 4px;
}

.vision__sparkle--13 {
  bottom: 20%;
  left: 28%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--14 {
  bottom: 24%;
  right: 32%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--15 {
  bottom: 12%;
  left: 58%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--16 {
  top: 26%;
  left: 68%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--17 {
  top: 14%;
  left: 40%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--18 {
  top: 34%;
  left: 62%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--19 {
  top: 52%;
  left: 72%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--20 {
  bottom: 16%;
  left: 18%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--21 {
  bottom: 22%;
  right: 22%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--22 {
  top: 20%;
  right: 38%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--23 {
  bottom: 30%;
  right: 6%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--24 {
  top: 42%;
  left: 6%;
  width: 3px;
  height: 3px;
}

.vision__sparkle--25 {
  top: 8%;
  left: 18%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--26 {
  top: 16%;
  left: 30%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--27 {
  top: 24%;
  left: 44%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--28 {
  top: 14%;
  left: 78%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--29 {
  top: 28%;
  right: 8%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--30 {
  top: 56%;
  left: 24%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--31 {
  top: 60%;
  left: 56%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--32 {
  top: 46%;
  right: 30%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--33 {
  bottom: 26%;
  left: 38%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--34 {
  bottom: 14%;
  left: 70%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--35 {
  bottom: 10%;
  right: 16%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--36 {
  bottom: 34%;
  right: 42%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--37 {
  top: 6%;
  left: 8%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--38 {
  top: 9%;
  left: 48%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--39 {
  top: 12%;
  left: 64%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--40 {
  top: 18%;
  left: 86%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--41 {
  top: 26%;
  left: 22%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--42 {
  top: 32%;
  left: 52%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--43 {
  top: 36%;
  left: 82%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--44 {
  top: 40%;
  left: 28%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--45 {
  top: 48%;
  left: 46%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--46 {
  top: 54%;
  left: 84%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--47 {
  top: 58%;
  left: 12%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--48 {
  top: 62%;
  left: 34%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--49 {
  top: 66%;
  left: 66%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--50 {
  bottom: 28%;
  left: 82%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--51 {
  bottom: 24%;
  left: 14%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--52 {
  bottom: 20%;
  left: 48%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--53 {
  bottom: 18%;
  right: 28%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--54 {
  bottom: 12%;
  left: 26%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--55 {
  bottom: 8%;
  left: 44%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--56 {
  bottom: 6%;
  left: 62%;
  width: 2px;
  height: 2px;
}

.vision__sparkle--57 {
  bottom: 9%;
  right: 8%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--58 {
  top: 22%;
  right: 48%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--59 {
  top: 46%;
  right: 12%;
  width: 1px;
  height: 1px;
}

.vision__sparkle--60 {
  bottom: 32%;
  left: 60%;
  width: 1px;
  height: 1px;
}

.company {
  padding: 160px 0;
  color: #111111;
}

.company__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
}

.company__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.company__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

.company__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.company__card {
  min-height: 100%;
  padding: 44px 40px 38px;
  background: #f6f6f4;
}

.company__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.company__name span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company__list {
  display: grid;
  gap: 18px;
}

.company__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.company__row dt,
.company__row dd {
  margin: 0;
}

.company__row dt {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.company__row dd {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.company__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.company__meta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.74);
}

.company__map-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company__map-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #f6f6f4;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.company__map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(1) saturate(0) contrast(1.04) brightness(1.02);
}

.company__map-link {
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #111111;
}

.site-footer {
  padding: 40px 0 44px;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.site-footer__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
}

.site-footer__brand,
.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__logo,
.site-footer__copy,
.site-footer__address,
.site-footer__copyright {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
}

.site-footer__logo {
  line-height: 0;
}

.site-footer__logo-image {
  display: block;
  width: auto;
  height: 26px;
}

.site-footer__copy,
.site-footer__address,
.site-footer__copyright {
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__meta {
  align-items: flex-end;
}

.site-footer__address,
.site-footer__copyright {
  text-align: right;
}

@keyframes vision-blob-morph {
  0% {
    border-radius: 42% 58% 63% 37% / 38% 43% 57% 62%;
  }

  25% {
    border-radius: 57% 43% 39% 61% / 53% 37% 63% 47%;
  }

  50% {
    border-radius: 35% 65% 57% 43% / 47% 62% 38% 53%;
  }

  75% {
    border-radius: 61% 39% 46% 54% / 35% 55% 45% 65%;
  }

  100% {
    border-radius: 42% 58% 63% 37% / 38% 43% 57% 62%;
  }
}

@keyframes vision-blob-drift {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(-48%, -52%) rotate(8deg) scale(1.04);
  }

  66% {
    transform: translate(-52%, -48%) rotate(-6deg) scale(0.98);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}

@keyframes vision-sparkle-float {
  0% {
    transform: translate3d(
      calc(var(--sparkle-drift-x, 0px) * -0.85),
      calc(var(--sparkle-drift-y, 0px) * -0.85),
      0
    ) scale(calc(var(--sparkle-scale, 1) * var(--sparkle-size-multiplier, 1)));
  }

  50% {
    transform: translate3d(
      calc(var(--sparkle-drift-x, 0px) * 0.25),
      calc(var(--sparkle-drift-y, 0px) * -0.2),
      0
    ) scale(calc(var(--sparkle-scale, 1) * 1.12 * var(--sparkle-size-multiplier, 1)));
  }

  100% {
    transform: translate3d(
      var(--sparkle-drift-x, 0px),
      var(--sparkle-drift-y, 0px),
      0
    ) scale(calc(var(--sparkle-scale, 1) * var(--sparkle-size-multiplier, 1)));
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    min-height: 76px;
    padding: 12px 20px;
  }

  .site-header__logo-image {
    height: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    height: 450px;
  }

  .hero__inner {
    height: 100%;
    padding: 0 20px;
    justify-content: center;
  }

  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero__link {
    margin-top: 28px;
  }

  .strength {
    padding: 64px 0 88px;
  }

  .strength__inner {
    padding: 0 20px;
  }

  .strength__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .strength__lead {
    min-height: 0;
    margin-top: 0;
    text-align: left;
    width: 100%;
    max-width: 22em;
  }

  .strength__bgword {
    top: 82px;
    left: 50%;
    font-size: clamp(42px, 10.5vw, 56px);
    white-space: nowrap;
  }

  .strength__slider {
    margin-inline: -20px;
    padding: 0 20px 34px;
    overflow: hidden;
  }

  .strength__pagination {
    justify-content: flex-start;
  }

  .strength-card {
    min-height: 520px;
  }

  .strength__slider .swiper-slide {
    width: min(calc(100vw - 40px), 420px);
    height: auto;
  }

  .strength-card,
  .strength-card__frame {
    min-height: 520px;
  }

  .strength-card__body {
    max-width: none;
    margin-left: 0;
    padding: 252px 24px 32px;
  }

  .strength-card__circle {
    top: 36px;
    left: 50%;
    width: 180px;
    transform: translateX(-50%);
  }

  .strength-card__icon {
    top: 48px;
    left: 50%;
    width: min(58vw, 220px);
    transform: translateX(-50%);
  }

  .service {
    padding: 64px 0 88px;
  }

  .service__inner {
    padding: 0 20px;
  }

  .service__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .service__lead {
    min-height: 0;
    text-align: left;
    width: 100%;
  }

  .service__grid {
    grid-template-columns: 1fr;
  }

  .service__summary {
    min-height: auto;
    padding: 36px 24px;
  }

  .service-showcase__main,
  .service-showcase__main-inner {
    min-height: 360px;
  }

  .service-showcase__main-inner {
    padding: 28px 24px;
  }

  .service-showcase__content {
    max-width: calc(100% - 88px);
  }

  .service-showcase__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(360px, 72vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }

  .service-showcase__image-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    display: block;
  }

  .service-showcase__circle {
    width: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .service-showcase__text {
    left: 24px;
    bottom: 24px;
    max-width: calc(100% - 84px);
  }

  .service-showcase__pause {
    right: 24px;
    bottom: 24px;
  }

  .service-showcase__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-thumb {
    min-height: 112px;
  }

  .strength__lead br,
  .strength-card__text br,
  .service__lead br,
  .service__summary-text br,
  .service-showcase__text br,
  .company__lead br {
    display: none;
  }

  .service-marquee {
    padding: 88px 0 0;
  }

  .service-marquee__group {
    gap: 16px;
    padding-right: 16px;
  }

  .service-marquee__item {
    width: 220px;
    height: 168px;
    border-radius: 12px;
  }

  .service-marquee__item--base {
    margin-top: 24px;
  }

  .service-marquee__item--tall {
    margin-top: -18px;
  }

  .vision {
    padding: 120px 0;
  }

  .vision__inner {
    padding: 0 20px;
  }

  .vision__content {
    margin-top: 72px;
  }

  .vision__blob {
    width: min(92vw, 520px);
    opacity: 0.68;
  }

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

  .company {
    padding: 120px 0;
  }

  .company__inner {
    padding: 0 20px;
  }

  .company__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .company__lead {
    min-height: 0;
    text-align: left;
    width: 100%;
  }

  .company__grid {
    grid-template-columns: 1fr;
  }

  .company__card {
    padding: 36px 24px 30px;
  }

  .company__map {
    min-height: 420px;
  }

  .site-menu__inner {
    padding: 116px 24px 32px;
  }

  .site-footer__inner {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .site-header__logo-image {
    height: 24px;
  }

  .strength__title-group {
    width: 100%;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .site-menu__panel {
    width: 100vw;
  }

  .site-menu__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-menu__link-en {
    font-size: 20px;
  }

  .site-menu__link-ja {
    text-align: left;
  }

  .hero__eyebrow {
    margin-top: 16px;
    font-size: 14px;
  }

  .hero__title {
    line-height: 1.14;
  }

  .hero__scroll-line {
    height: 52px;
  }

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

  .strength__bgword {
    top: 88px;
    font-size: 42px;
  }

  .strength-card__title {
    font-size: 20px;
  }

  .strength-card__body {
    padding-top: 228px;
  }

  .strength-card__circle {
    top: 28px;
    width: 164px;
  }

  .strength-card__icon {
    top: 42px;
    width: min(60vw, 208px);
  }

  .service__summary-title {
    font-size: 22px;
  }

  .service-showcase__title,
  .service-thumb__title {
    font-size: 20px;
  }

  .company__name {
    font-size: 28px;
  }

  .company__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company__row dd {
    font-size: 14px;
  }

  .company__map {
    min-height: 320px;
  }

  .company__map-link {
    align-self: flex-start;
  }

  .site-footer {
    padding: 32px 0 36px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-footer__meta {
    align-items: flex-start;
  }

  .site-footer__address,
  .site-footer__copyright {
    text-align: left;
  }

  .site-footer__logo-image {
    height: 22px;
  }
}
