/* ============================================================
   RESET & ROOT — B PATTERN (WHITE BASE)
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #E83B2C;
  --yellow: #F5BE19;
  --green: #2CB44E;
  --black: #111111;
  --white: #f7f7f7;
  --content-w: 100rem;
  --side-pad: 4rem;
}

html {
  font-feature-settings: 'palt';
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (max-width: 1040px) {
  html {
    font-size: calc(100vw / 1040 * 10);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }

  :root {
    --side-pad: 2rem;
  }
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #111111;
  background: #f7f7f7;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body {
    cursor: auto;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

@media (hover: none) {
  a {
    cursor: auto;
  }
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: none;
}

@media (hover: none) {
  button {
    cursor: auto;
  }
}

/* ============================================================
   RESPONSIVE BREAK HELPERS
   ============================================================ */
.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline !important;
  }
}

.pc-only {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }

  .sp-br::before {
    content: '\A';
    white-space: pre;
  }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor.expanded {
  width: 36px;
  height: 36px;
  background: transparent;
  outline: 2px solid var(--red);
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-follower.expanded {
  width: 8px;
  height: 8px;
  border-color: transparent;
}

@media (hover: none) {

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
}

@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-3%, -4%);
  }

  20% {
    transform: translate(-5%, 2%);
  }

  30% {
    transform: translate(4%, -1%);
  }

  40% {
    transform: translate(-3%, 5%);
  }

  50% {
    transform: translate(2%, -3%);
  }

  60% {
    transform: translate(-4%, 1%);
  }

  70% {
    transform: translate(5%, -2%);
  }

  80% {
    transform: translate(-1%, 4%);
  }

  90% {
    transform: translate(3%, -5%);
  }
}

/* ============================================================
   BACKGROUND VIDEO
   ============================================================ */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: .9;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 247, 0.45);
  transition: background 0.5s ease;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 24rem;
}

.loader-logo img {
  width: 16rem;
  filter: brightness(0);
  opacity: 0.75;
}

.loader-bar {
  width: 100%;
  height: 3px;
  background: rgba(17, 17, 17, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-inner {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 99px;
}

.loader-count {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.35);
}

.loader-count span {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111111;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem var(--side-pad);
  transition: background 0.45s ease, padding 0.45s ease, border-color 0.45s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(247, 247, 247, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.2rem var(--side-pad);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-w);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: opacity 0.3s;
}

.header-logo:hover {
  opacity: 0.6;
}

.header-logo-img {
  height: 1.6rem;
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
  display: block;
}

.header-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(17, 17, 17, 0.42);
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.header-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(17, 17, 17, 0.6);
  transition: color 0.3s;
  position: relative;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #111111;
  transition: width 0.3s ease;
}

.header-nav-link:hover {
  color: #111111;
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-nav-contact {
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(17, 17, 17, 0.28);
  color: #111111 !important;
  transition: background 0.3s, border-color 0.3s !important;
}

.header-nav-contact::after {
  display: none;
}

.header-nav-contact:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 2.4rem;
  height: 1px;
  background: #111111;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(247, 247, 247, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
}

.mobile-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(17, 17, 17, 0.55);
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: #111111;
}

.mobile-menu-en {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
}

.mobile-menu-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(17, 17, 17, 0.38);
}

/* ============================================================
   FV
   ============================================================ */
.fv {
  position: relative;
  height: 100svh;
  min-height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#threeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.fv-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 var(--side-pad);
  padding-top: 8rem;
}

.fv-eyecatch {
  text-align: center;
  max-width: 80rem;
}

.fv-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 2.8rem;
  opacity: 0;
}

.fv-copy {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4.4rem, 7.5vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: rgba(17, 17, 17, 0.88);
  margin-bottom: 3.2rem;
  opacity: 0;
  transform: translateY(20px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fv-copy-small {
  font-size: 94%;
}

.fv-copy-period {
  color: var(--red);
}

.fv-copy-char {
  display: inline;
}

@keyframes fvCopyWave {

  0%,
  9% {
    color: rgba(17, 17, 17, 0.88);
  }

  10%,
  75% {
    color: var(--red);
  }

  76%,
  100% {
    color: rgba(17, 17, 17, 0.88);
  }
}

@keyframes fvCopySettle {

  0%,
  9% {
    color: rgba(17, 17, 17, 0.88);
  }

  10%,
  100% {
    color: var(--red);
  }
}

.fv-copy-char--wave {
  animation: fvCopyWave 0.38s linear forwards;
}

.fv-copy-char--settle {
  animation: fvCopySettle 0.38s linear forwards;
}

.fv-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 2.4rem;
  overflow: hidden;
}

.fv-title .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0s, opacity 0s;
}

.fv-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(17, 17, 17, 0.78);
  margin-bottom: 3.6rem;
  opacity: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.fv-cta {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.fv-scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}

.fv-scroll-line {
  display: block;
  width: 1px;
  height: 5.6rem;
  background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.3));
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  49% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.fv-scroll-text {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: rgba(17, 17, 17, 0.35);
  writing-mode: vertical-rl;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding: 1.3rem 0;
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: marquee var(--marquee-duration, 36s) linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.8rem;
  padding-right: 2.8rem;
}

.marquee-group span {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(17, 17, 17, 0.4);
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red) !important;
  font-style: normal;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--marquee-offset, -50%));
  }
}

/* ============================================================
   COMMON SECTION
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 12rem 0;
  background: rgba(247, 247, 247, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section:nth-child(even) {
  background: rgba(242, 242, 242, 0.78);
}

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.section-head {
  margin-bottom: 6.4rem;
}

.section-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: rgba(17, 17, 17, 0.4);
  margin-bottom: 1.6rem;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 2.4rem;
  word-break: normal;
  overflow-wrap: break-word;
  color: #111111;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-title-char {
  display: inline;
}

@keyframes secTitleWave {

  0%,
  9% {
    color: #111111;
  }

  10%,
  75% {
    color: var(--red);
  }

  76%,
  100% {
    color: #111111;
  }
}

@keyframes secTitleSettle {

  0%,
  9% {
    color: #111111;
  }

  10%,
  100% {
    color: var(--red);
  }
}

.section-title-char--wave {
  animation: secTitleWave 0.38s linear forwards;
}

.section-title-char--settle {
  animation: secTitleSettle 0.38s linear forwards;
}

.section-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 2.1;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

.lead-section {
  padding: 8rem 0;
}

.lead-section-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 2.2;
  color: #111111;
  /* max-width: 76rem; */
  word-break: normal;
  overflow-wrap: break-word;
  /* text-align: center; */
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  border: 1px solid rgba(17, 17, 17, 0.3);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #111111;
  transition: background 0.32s, border-color 0.32s, color 0.32s;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-outline:hover {
  color: #f7f7f7;
  border-color: #111111;
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-filled {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  background: var(--red);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #f7f7f7;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-filled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-filled:hover::before {
  transform: scaleX(1);
}

/* REVEAL */
.js-reveal {
  opacity: 0;
  transform: translateY(3.5rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WORRY
   ============================================================ */
/* .worry-list {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
} */
.worry-item.js-reveal {
  transform: none;
}

.worry-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.75);
  word-break: normal;
  overflow-wrap: break-word;
}

.worry-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE
   ============================================================ */
.service {
  overflow: hidden;
}

/* ============================================================
   SECTION BACKGROUND SCROLL TEXT
   ============================================================ */
.section-bg-scroll {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.section-bg-scroll-inner {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 22rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.04);
  animation: sectionBgWordRTL 12s linear infinite;
}

.section-bg-scroll--ltr .section-bg-scroll-inner {
  animation: sectionBgWordLTR 12s linear infinite;
}

@keyframes sectionBgWordRTL {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes sectionBgWordLTR {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100vw);
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-cta {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 3.6rem 2.8rem;
  overflow: hidden;
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.service-card-num {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(17, 17, 17, 0.4);
  margin-bottom: 2rem;
}

.service-card-num-en {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(17, 17, 17, 0.35);
}

.service-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  word-break: normal;
  overflow-wrap: break-word;
  color: #111111;
}

.service-card-sub {
  font-size: 1.35rem;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 1.6rem;
  word-break: normal;
}

.service-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.95;
  color: rgba(17, 17, 17, 0.78);
  margin-bottom: 2rem;
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-card-list li {
  font-size: 1.35rem;
  color: rgba(17, 17, 17, 0.62);
  padding-left: 1.4rem;
  position: relative;
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 1px;
  background: rgba(17, 17, 17, 0.22);
}

/* ============================================================
   REASON
   ============================================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

@media (max-width: 768px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 4.4rem 3.6rem;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.reason-card-num {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.22em;
  color: rgba(17, 17, 17, 0.38);
  line-height: 1;
  margin-bottom: 2rem;
}

.reason-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  color: #111111;
}

.reason-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.55rem;
  line-height: 2;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ============================================================
   INDUSTRY
   ============================================================ */
.industry {
  overflow: hidden;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  /* border-top: 1px solid rgba(0, 0, 0, 0.09); */
}

@media (max-width: 768px) {
  .industry-list {
    grid-template-columns: 1fr;
  }
}

.industry-list li {
  padding: 2rem 2.4rem 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.78);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  word-break: normal;
}

.industry-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FLOW — 縦タイムライン
   ============================================================ */
.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 3.2rem;
  position: relative;
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.4rem;
}

.flow-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  background: rgba(232, 59, 44, 0.08);
  border: 1px solid rgba(232, 59, 44, 0.22);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(232, 59, 44, 0.25), rgba(0, 0, 0, 0.06));
  margin-top: 1.2rem;
  min-height: 4rem;
}

.flow-step-right {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  min-width: 0;
  padding-top: 1rem;
}

.flow-step:last-child .flow-step-right {
  border-bottom: none;
  padding-bottom: 0;
}

.flow-step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  word-break: normal;
  overflow-wrap: break-word;
  color: #111111;
}

.flow-step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.55rem;
  line-height: 2;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .flow-step {
    grid-template-columns: 5.6rem 1fr;
    gap: 1.6rem;
  }

  .flow-step-num {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
  }

  .flow-step-right {
    padding-top: .5rem;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2.6rem 0;
  cursor: none;
  user-select: none;
}

.faq-q:hover {
  color: rgba(17, 17, 17, 0.9);
}

.faq-q-mark {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1.65;
}

.faq-q span:nth-child(2) {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.65;
  flex: 1;
  min-width: 0;
  color: rgba(17, 17, 17, 0.82);
  word-break: normal;
  overflow-wrap: break-word;
}

.faq-toggle {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  position: relative;
  margin-top: 0.35rem;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: rgba(17, 17, 17, 0.4);
  transition: transform 0.35s ease, opacity 0.35s;
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.open .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 0 0 3.2rem;
}

.faq-item.open .faq-a {
  max-height: 30rem;
  padding: 0 0 2.6rem 3.2rem;
}

.faq-a p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.55rem;
  line-height: 2.1;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ============================================================
   ACCESS
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.logo-anim {
  margin-bottom: 5rem;
}

.logo-anim-stage {
  display: flex;
  justify-content: center;
  gap: 3.6rem;
  align-items: flex-start;
}

.logo-anim-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.logo-anim-svg {
  width: 7.2rem;
  height: 7.2rem;
  overflow: visible;
}

.logo-anim-circle {
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-anim-circle.drawn {
  stroke-dashoffset: 0;
}

.logo-anim-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.52);
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.logo-anim-label.visible {
  opacity: 1;
  transform: translateY(0);
}

.access-body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(17, 17, 17, 0.72);
}

.access-dl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.access-dl-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.6rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 768px) {
  .access-dl-row {
    grid-template-columns: 1fr;
  }
}

.access-dl-row:last-child {
  border-bottom: none;
}

dt {
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.4);
  padding-top: 0.15rem;
}

dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.55rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.88);
  font-weight: 300;
  word-break: normal;
}

dd .en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.35);
  margin-top: 0.4rem;
}

.access-btns {
  display: flex;
  gap: 1.6rem;
}

.access-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.access-map-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 4rem), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 1px, transparent 1px, transparent 4rem);
}

.access-map-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.access-map-pin {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: pinPulse 2.4s ease-in-out infinite;
}

@keyframes pinPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(232, 59, 44, 0.18)
  }

  50% {
    box-shadow: 0 0 0 14px rgba(232, 59, 44, 0.04)
  }
}

.access-map-inner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.45);
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  text-align: center;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.6rem 0 2.8rem;
  word-break: normal;
  overflow-wrap: break-word;
  color: #111111;
}

@media screen and (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
}

.contact-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 2.2;
  color: rgba(17, 17, 17, 0.78);
  margin-bottom: 4rem;
  font-weight: 300;
  word-break: normal;
  overflow-wrap: break-word;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(235, 235, 235, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding: 4.8rem 0 3.2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo img {
  height: 1.8rem;
  filter: brightness(0);
  opacity: 0.3;
}

.footer-logo-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.38);
}

.footer-nav {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: rgba(17, 17, 17, 0.32);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: rgba(17, 17, 17, 0.7);
}

.footer-copy {
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.22);
  letter-spacing: 0.05em;
  width: 100%;
  text-align: right;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
  }

  .footer-nav a {
    width: calc((100% - 4.8rem)/ 3);
  }
}