:root {
  --front-bg: #0b0b0e;
  --front-ink: #f3efe6;
  --front-ink-dim: rgba(243, 239, 230, 0.62);
  --front-ink-faint: rgba(243, 239, 230, 0.3);
  --front-accent: #f5c400;
  --front-accent-soft: #ffe06a;
  --front-line: rgba(243, 239, 230, 0.13);
  --front-font-en: Anton, "Arial Narrow", Arial, sans-serif;
  --front-font-brand: var(--front-font-en);
  --front-font-jp: "NotoSansJP", "Noto Sans JP", sans-serif;
  --front-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body.home,
body.front-page {
  overflow-x: hidden;
}

body.home,
body.front-page {
  background: var(--front-bg);
  color: var(--front-ink);
  font-family: var(--front-font-jp);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home .global-header-container,
body.home .footer-wrapper,
body.front-page .global-header-container,
body.front-page .footer-wrapper {
  display: none;
}

body.home .global-header-wrapper,
body.front-page .global-header-wrapper {
  display: block;
}

.front-loader,
.front-loader * {
  box-sizing: border-box;
}

.front-loader {
  --front-loader-gap: clamp(8px, 1.3vw, 18px);
  --front-loader-tile: clamp(92px, 22vw, 216px);
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a0a0a;
  color: var(--front-ink);
  font-family: var(--front-font-jp);
}

body.is-front-loader-active {
  overflow: hidden;
}

.front-loader__photo-grid {
  display: grid;
  grid-template-columns: repeat(4, var(--front-loader-tile));
  grid-template-rows: repeat(2, var(--front-loader-tile));
  gap: var(--front-loader-gap);
  place-content: center;
  max-width: 88vw;
  z-index: 2;
}

.front-loader__photo-frame {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  opacity: 0;
  background: #151515;
  clip-path: inset(50% 50% 50% 50% round 18px);
  transform: scale(0.72);
  transform-origin: center;
  will-change: clip-path, opacity, transform;
  animation: front-loader-photo-open 0.72s var(--front-ease) forwards;
}

.front-loader__photo-frame:nth-child(1) {
  animation-delay: 0.42s;
}

.front-loader__photo-frame:nth-child(2) {
  animation-delay: 0.06s;
}

.front-loader__photo-frame:nth-child(3) {
  animation-delay: 0.66s;
}

.front-loader__photo-frame:nth-child(4) {
  animation-delay: 0.24s;
}

.front-loader__photo-frame:nth-child(5) {
  animation-delay: 0.78s;
}

.front-loader__photo-frame:nth-child(6) {
  animation-delay: 0.12s;
}

.front-loader__photo-frame:nth-child(7) {
  animation-delay: 0.54s;
}

.front-loader__photo-frame:nth-child(8) {
  animation-delay: 0.36s;
}

.front-loader__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.front-loader.is-photos-collapsing .front-loader__photo-grid {
  animation: front-loader-photo-grid-exit 0.86s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.front-loader__svg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(88vw, 800px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  transition: opacity 0.55s var(--front-ease), transform 0.55s var(--front-ease);
  pointer-events: none;
}

.front-loader.is-text-active .front-loader__svg-wrap {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.front-loader__svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.front-loader__text {
  font-family: var(--front-font-brand);
  font-size: 132px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.front-loader__text--stroke {
  fill: none;
  stroke: var(--front-ink);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
}

.front-loader.is-text-active .front-loader__text--stroke {
  animation: front-loader-draw-stroke 1.35s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.front-loader__text--fill {
  fill: var(--front-ink);
  stroke: var(--front-ink);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
}

.front-loader__veil {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.front-loader__veil-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #000;
  transform: translate3d(var(--veil-offset), 0, 0);
  transition: transform 0.78s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.front-loader__veil-panel--left {
  left: 0;
  --veil-offset: -100%;
}

.front-loader__veil-panel--right {
  right: 0;
  --veil-offset: 100%;
}

.front-loader.is-veil-closing .front-loader__veil-panel {
  transform: translate3d(0, 0, 0);
}

.front-loader.is-veil-opening {
  background: transparent;
}

.front-loader.is-veil-opening .front-loader__photo-grid,
.front-loader.is-veil-opening .front-loader__svg-wrap {
  opacity: 0;
}

.front-loader.is-veil-opening .front-loader__veil-panel--left {
  transform: translate3d(-100%, 0, 0);
}

.front-loader.is-veil-opening .front-loader__veil-panel--right {
  transform: translate3d(100%, 0, 0);
}

@keyframes front-loader-photo-open {
  0% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50% round 18px);
    transform: scale(0.72);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
    transform: scale(1);
  }
}

@keyframes front-loader-photo-grid-exit {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.72);
  }
}

@keyframes front-loader-draw-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

.front-cursor-orbit,
.front-cursor-orbit * {
  box-sizing: border-box;
}

.front-cursor-orbit {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 80px;
  height: 80px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
  transition: opacity 0.35s var(--front-ease);
  will-change: transform, opacity;
  mix-blend-mode: difference;
}

.front-cursor-orbit.is-visible {
  opacity: 1;
}

.front-cursor-orbit__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: front-cursor-orbit-spin 8s linear infinite;
  transform-origin: center;
}

.front-cursor-orbit__text {
  fill: var(--front-ink);
  font-family: var(--front-font-jp);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes front-cursor-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.front-page-main,
.front-page-main * {
  box-sizing: border-box;
}

.front-page-main {
  min-height: 500dvh;
  overflow-x: hidden;
  background: var(--front-bg);
  color: var(--front-ink);
  font-family: var(--front-font-jp);
}

.front-scroll-space {
  height: 500dvh;
  pointer-events: none;
  visibility: hidden;
}

.front-stage-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 12%, rgba(245, 196, 0, 0.18), transparent 55%),
    radial-gradient(100% 80% at 8% 95%, rgba(245, 196, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #0c0c10, #08080b);
}

.front-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.front-frame {
  position: fixed;
  inset: clamp(16px, 2.4vh, 30px);
  z-index: 40;
  border: 1px solid var(--front-line);
  pointer-events: none;
}

.front-deck {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
}

.front-view {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.9s var(--front-ease), transform 1.1s var(--front-ease);
}

.front-view.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.front-view__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.04) contrast(1.02);
  transform: scale(1.06);
  transition: transform 1.6s var(--front-ease), filter 1.1s var(--front-ease);
}

.front-view.is-active .front-view__bg {
  transform: scale(1.01);
}

.front-view--create::before,
.front-view--possibility::before,
.front-view--otokomae::before,
.front-view--service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 72% at 28% 45%, rgba(0, 0, 0, 0.12), transparent 62%),
    linear-gradient(90deg, rgba(6, 6, 8, 0.6), rgba(6, 6, 8, 0.28) 52%, rgba(6, 6, 8, 0.62)),
    linear-gradient(180deg, rgba(6, 6, 8, 0.38), rgba(6, 6, 8, 0.62));
}

.front-view__scroll {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.front-view__scroll::-webkit-scrollbar {
  display: none;
}

.front-view__inner {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14dvh clamp(28px, 7vw, 140px);
}

.front-view__inner--hero {
  padding: 0;
  justify-content: flex-end;
  perspective: 1200px;
}

.front-view__inner--statement {
  justify-content: center;
}

.front-statement {
  position: relative;
  z-index: 3;
  width: 100%;
}

.front-statement--center {
  display: grid;
  place-items: center;
  min-height: 100%;
  text-align: center;
}

.front-statement__title {
  margin: 0;
  font-family: var(--front-font-jp);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.front-statement__title--large {
  font-size: clamp(2.5rem, 7vw, 7.6rem);
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.front-bgtype {
  display: none;
}

.front-delay-120 { --front-delay: 120ms; }
.front-delay-140 { --front-delay: 140ms; }
.front-delay-200 { --front-delay: 200ms; }
.front-delay-240 { --front-delay: 240ms; }
.front-delay-340 { --front-delay: 340ms; }
.front-delay-380 { --front-delay: 380ms; }
.front-delay-460 { --front-delay: 460ms; }
.front-delay-680 { --front-delay: 680ms; }

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--front-ease), filter 0.9s var(--front-ease), transform 1.05s var(--front-ease);
  transition-delay: var(--front-delay, 0ms);
}

.is-active [data-reveal] {
  opacity: 1;
  transform: none;
}

.front-line-mask {
  display: block;
  overflow: hidden;
}

.front-line-mask > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--front-ease);
  transition-delay: var(--front-delay, 0ms);
}

.is-active .front-line-mask > span {
  transform: translateY(0);
}

.front-fade-title {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(28px) scale(0.98);
}

.is-active .front-fade-title {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.front-hero-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  transform: scale(1.04);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}

.front-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(9, 9, 9, 0.16), rgba(9, 9, 9, 0.42));
}

.front-hero-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.front-hero-card__image {
  object-fit: cover;
  transform: scale(1.12);
  filter: brightness(0.96) saturate(1.08) contrast(1.02);
}


.front-photo-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.front-photo-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 8, 11, 0.88), rgba(8, 8, 11, 0.42) 44%, rgba(8, 8, 11, 0.78)),
    linear-gradient(180deg, rgba(8, 8, 11, 0.62), rgba(8, 8, 11, 0.46));
}

.front-photo-gallery__item {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(243, 239, 230, 0.16);
  border-radius: clamp(18px, 2.2vw, 34px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  filter: saturate(1.08) contrast(1.04);
}

.front-photo-gallery--possibility .front-photo-gallery__item--large {
  top: 9dvh;
  right: clamp(8px, 5vw, 86px);
  width: min(38vw, 560px);
  height: min(58dvh, 610px);
}

.front-photo-gallery--possibility .front-photo-gallery__item--small {
  right: min(35vw, 520px);
  bottom: 10dvh;
  width: min(24vw, 330px);
  height: min(28dvh, 270px);
}

.front-photo-gallery--possibility .front-photo-gallery__item--wide {
  right: clamp(50px, 14vw, 230px);
  bottom: 5dvh;
  width: min(32vw, 480px);
  height: min(22dvh, 230px);
}

.front-photo-gallery--otokomae .front-photo-gallery__item--large {
  top: 8dvh;
  left: clamp(18px, 5vw, 92px);
  width: min(36vw, 540px);
  height: min(54dvh, 580px);
}

.front-photo-gallery--otokomae .front-photo-gallery__item--small {
  left: min(34vw, 510px);
  top: 13dvh;
  width: min(23vw, 320px);
  height: min(26dvh, 260px);
}

.front-photo-gallery--otokomae .front-photo-gallery__item--wide {
  left: clamp(86px, 16vw, 260px);
  bottom: 7dvh;
  width: min(34vw, 520px);
  height: min(24dvh, 240px);
}

.front-view__message {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 980px);
}

.front-view__message--bottom-left {
  position: absolute;
  left: clamp(1.25rem, 5vw, 4rem);
  bottom: clamp(2rem, 7vh, 5rem);
  margin: 0;
}

.front-kicker,
.front-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 4vh, 46px);
  color: var(--front-accent-soft);
  font-family: var(--front-font-jp);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.front-kicker::before {
  content: "";
  width: clamp(34px, 4vw, 64px);
  height: 1px;
  background: var(--front-accent);
}

.front-title,
.front-possibility__title,
.front-otokomae__title {
  margin: 0;
  font-family: var(--front-font-jp);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.front-title--hero {
  font-size: clamp(2.7rem, 8.2vw, 7.4rem);
  line-height: 1.06;
}

.front-title--hero em {
  position: relative;
  color: var(--front-accent);
  font-style: normal;
}

.front-title--hero em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.09em;
  background: var(--front-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--front-ease) 0.9s;
}

.is-active .front-title--hero em::after {
  transform: scaleX(1);
}

.front-lead {
  margin: clamp(26px, 4.5vh, 48px) 0 0;
  max-width: 34ch;
  color: var(--front-ink-dim);
  font-family: var(--front-font-jp);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 2.1;
}

.front-possibility {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.front-possibility__title {
  font-size: clamp(1.7rem, 3.6vw, 3.05rem);
  line-height: 1.62;
}

.front-possibility__title b,
.front-possibility__body b,
.front-otokomae__title span,
.front-otokomae__body b {
  color: var(--front-accent);
}

.front-possibility__body {
  padding-left: clamp(22px, 2.4vw, 40px);
  border-left: 1px solid var(--front-line);
  color: var(--front-ink-dim);
  font-family: var(--front-font-jp);
  font-size: clamp(0.92rem, 1.18vw, 1.04rem);
  font-weight: 500;
  line-height: 2.5;
}

.front-possibility__body p {
  margin: 0 0 1.05em;
}

.front-possibility__lead,
.front-possibility__brand {
  color: var(--front-ink);
  font-weight: 700;
}

.front-view--service {
  isolation: isolate;
  background: #030303;
}

.front-view--service::before {
  background:
    radial-gradient(80% 70% at 50% 20%, rgba(245, 196, 0, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.68));
}

.front-service__hover-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #030303;
}

.front-service__hover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: brightness(0.92) saturate(1.08) contrast(1.02);
  transform: scale(1.08);
  transition: opacity 0.55s var(--front-ease), transform 1.2s var(--front-ease);
}

.front-view--service[data-service-bg="recruit"] .front-service__hover-bg--recruit,
.front-view--service[data-service-bg="branding"] .front-service__hover-bg--branding,
.front-view--service[data-service-bg="growth"] .front-service__hover-bg--growth,
.front-view--service:has(.front-service-card[data-service-bg="recruit"]:hover) .front-service__hover-bg--recruit,
.front-view--service:has(.front-service-card[data-service-bg="branding"]:hover) .front-service__hover-bg--branding,
.front-view--service:has(.front-service-card[data-service-bg="growth"]:hover) .front-service__hover-bg--growth {
  opacity: 1;
  transform: scale(1.01);
}

.front-view__inner--service {
  justify-content: center;
}

.front-service {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  max-width: 1320px;
  min-height: min(62dvh, 620px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}

.front-service__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 6vh, 72px);
}

.front-service__title {
  margin: 0;
  font-family: var(--front-font-jp);
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.front-service__lead {
  margin: 0;
  color: var(--front-ink-dim);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 2;
}

.front-service__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.front-service-card {
  min-height: clamp(260px, 35vh, 420px);
  padding: clamp(22px, 3vw, 42px);
  color: var(--front-ink);
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.82);
  outline: 0;
  cursor: default;
  transition: background 0.35s var(--front-ease), border-color 0.35s var(--front-ease), box-shadow 0.35s var(--front-ease), transform 0.35s var(--front-ease);
}

.front-service-card:hover,
.front-service-card:focus-visible {
  background: rgba(0, 0, 0, 0.24);
  border-color: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

.front-service-card__number {
  display: block;
  color: var(--front-accent);
  font-family: var(--front-font-brand);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.08em;
}

.front-service-card__name {
  margin: clamp(56px, 12vh, 132px) 0 0;
  font-family: var(--front-font-jp);
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.08;
}


.front-otokomae {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.front-otokomae__title {
  margin-bottom: clamp(34px, 5vh, 60px);
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  line-height: 1.28;
}

.front-otokomae__title q {
  quotes: none;
}

.front-otokomae__body {
  color: var(--front-ink-dim);
  column-gap: clamp(40px, 5vw, 84px);
  font-family: var(--front-font-jp);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  font-weight: 500;
  line-height: 2.45;
}

.front-otokomae__body p {
  margin: 0 0 1.05em;
  break-inside: avoid;
}

.front-otokomae__accent {
  color: var(--front-ink);
  font-weight: 700;
}

.front-otokomae__link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  justify-content: center;
  margin-top: clamp(18px, 3vh, 34px);
  padding: 1em 1.4em;
  border: 1px solid var(--front-accent);
  border-radius: 999px;
  color: var(--front-bg);
  background: var(--front-accent);
  font-family: var(--front-font-brand);
  font-size: clamp(0.86rem, 1.04vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(245, 196, 0, 0.2);
  transition: transform 0.35s var(--front-ease), box-shadow 0.35s var(--front-ease), background 0.35s var(--front-ease), color 0.35s var(--front-ease);
}

.front-otokomae__link:hover,
.front-otokomae__link:focus-visible {
  color: var(--front-accent);
  background: transparent;
  box-shadow: 0 22px 54px rgba(245, 196, 0, 0.28);
  transform: translateY(-3px);
}

.front-brandmark,
.front-counter,
.front-scrollhint,
.front-pagination {
  position: fixed;
  z-index: 50;
  font-family: var(--front-font-jp);
}

.front-social-links {
  position: fixed;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 42px);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  pointer-events: none;
}

.front-social-links__item {
  display: grid;
  width: clamp(22px, 2vw, 30px);
  height: clamp(22px, 2vw, 30px);
  place-items: center;
  opacity: 0.92;
}

.front-social-links__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.front-brandmark {
  top: clamp(30px, 4vh, 52px);
  left: clamp(34px, 5vw, 64px);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.front-brandmark,
.front-company-name {
  font-family: var(--front-font-brand);
}

.front-brandmark span {
  color: inherit;
}


.front-counter {
  left: clamp(34px, 5vw, 64px);
  bottom: clamp(30px, 4vh, 52px);
  color: var(--front-ink-dim);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.front-counter b {
  color: var(--front-ink);
}

.front-counter i {
  margin: 0 6px;
  color: var(--front-ink-faint);
  font-style: normal;
}

.front-scrollhint {
  left: 50%;
  bottom: clamp(26px, 4vh, 46px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--front-ink-faint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  transform: translateX(-50%);
  transition: opacity 0.6s var(--front-ease);
}

.front-scrollhint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.front-scrollhint__bar {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: linear-gradient(var(--front-ink-faint), transparent);
}

.front-scrollhint__bar::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--front-accent);
  animation: front-drop 1.9s var(--front-ease) infinite;
}

.front-pagination {
  top: 50%;
  right: clamp(26px, 3.2vw, 50px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-50%);
}

.front-pagination button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--front-ink-faint);
  cursor: pointer;
  font-family: var(--front-font-jp);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transition: color 0.4s var(--front-ease);
}

.front-pagination__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--front-ink-faint);
  border-radius: 50%;
  transition: all 0.45s var(--front-ease);
}

.front-pagination__label {
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.45s var(--front-ease);
}

.front-pagination button[aria-current="true"] {
  color: var(--front-ink);
}

.front-pagination button[aria-current="true"] .front-pagination__dot {
  border-color: var(--front-accent);
  background: var(--front-accent);
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.18);
  transform: scale(1.35);
}

.front-pagination button[aria-current="true"] .front-pagination__label,
.front-pagination button:hover .front-pagination__label,
.front-pagination button:focus-visible .front-pagination__label {
  opacity: 1;
  transform: none;
}

@media (min-width: 980px) {
  .front-otokomae__body {
    column-count: 2;
  }
}

@media (max-width: 760px) {
  .front-frame,
  .front-view__inner {
    padding: 16dvh clamp(26px, 7vw, 40px);
  }

  .front-view__message--bottom-left {
    margin-left: 0;
  }

  .front-photo-gallery::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 11, 0.78), rgba(8, 8, 11, 0.7)),
      linear-gradient(90deg, rgba(8, 8, 11, 0.84), rgba(8, 8, 11, 0.48));
  }

  .front-photo-gallery__item {
    border-radius: 18px;
  }

  .front-photo-gallery--possibility .front-photo-gallery__item--large,
  .front-photo-gallery--otokomae .front-photo-gallery__item--large {
    top: 8dvh;
    right: -12vw;
    left: auto;
    width: 74vw;
    height: 42dvh;
  }

  .front-photo-gallery--possibility .front-photo-gallery__item--small,
  .front-photo-gallery--otokomae .front-photo-gallery__item--small {
    top: 49dvh;
    right: 44vw;
    bottom: auto;
    left: auto;
    width: 42vw;
    height: 22dvh;
  }

  .front-photo-gallery--possibility .front-photo-gallery__item--wide,
  .front-photo-gallery--otokomae .front-photo-gallery__item--wide {
    right: 4vw;
    bottom: 8dvh;
    left: auto;
    width: 54vw;
    height: 22dvh;
  }

  .front-possibility,
  .front-service__head,
  .front-service__grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 44px);
  }

  .front-possibility__body {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--front-line);
    border-left: 0;
  }

  .front-service-card {
    min-height: 240px;
  }

  .front-service-card__name {
    margin-top: 42px;
  }

  .front-social-links {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .front-social-links__item {
    width: 22px;
    height: 22px;
  }

  .front-pagination {
    right: 12px;
    gap: 16px;
  }

  .front-pagination__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .front-loader,
  .front-loader__photo-grid,
  .front-loader__photo-frame,
  .front-loader__text--stroke,
  .front-loader__veil-panel,
  .front-cursor-orbit__svg,
  .front-view,
  .front-view__bg {
    animation: none !important;
    transition: none !important;
  }

  .front-loader__photo-frame {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
    transform: none;
  }

  .front-loader.is-photos-collapsing .front-loader__photo-grid {
    opacity: 0;
  }

  .front-loader__text--stroke {
    stroke-dashoffset: 0;
  }

  [data-reveal],
  .front-line-mask > span,
  .front-fade-title,
  .front-stage-bg,
  .front-scrollhint,
  .front-pagination__dot,
  .front-pagination__label {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .front-scrollhint__bar::after {
    animation: none !important;
  }
}

@keyframes front-drop {
  0% { top: -55%; }
  60%, 100% { top: 105%; }
}
