:root {
  --ivory: #F9F6F0;
  --ivory-2: #FFFDF7;
  --coral: #FF4F3A;
  --coral-dark: #E63A24;
  --deep: #1A2B4C;
  --deep-2: #243557;
  --mint: #A8BFB4;
  --mint-soft: #C7D8CE;
  --grid: #C8C3BB;
  --line: #E5DFD5;
  --white: #FFFFFF;
  --ink: #14192B;
  --muted: #6E7488;
  --shadow-card: 0 8px 32px rgba(26,43,76,0.06);
  --shadow-card-hover: 0 18px 48px rgba(26,43,76,0.12);
  --shadow-soft: 0 4px 18px rgba(26,43,76,0.05);
  --shadow-coral: 0 12px 32px rgba(255,79,58,0.28);
  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-input: 12px;
  --pad-section: 120px;
  --pad-section-sm: 64px;
  --transition-spring: cubic-bezier(0.25, 0.8, 0.25, 1.2);
  --transition-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-soft: cubic-bezier(0.76, 0, 0.24, 1);
  --font-display: "Inter", "Helvetica Neue", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Meiryo", system-ui, sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, monospace;
}

strong, p, b, span, li, a, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--deep);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(200,195,187,0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200,195,187,0.45) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,43,76,0.18) 1.2px, transparent 1.2px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

main, header, footer, section {
  position: relative;
  z-index: 2;
}

header {
  z-index: 10;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s var(--transition-smooth);
}

a:hover {
  color: var(--coral-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--deep);
  margin: 0 0 0.4em 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 600;
}

h1 {
  font-size: clamp(40px, 6.2vw, 96px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin: 0 0 1em 0;
  color: var(--deep);
}

.jp-satelite {
  font-family: var(--font-jp);
  letter-spacing: 0.28em;
  font-weight: 500;
}

.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 767px) {
  .shell {
    padding: 0 20px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.eyebrow.light {
  color: rgba(255,255,255,0.7);
}

.kicker {
  font-family: var(--font-jp);
  letter-spacing: 0.3em;
  font-size: 13px;
  color: var(--mint);
  margin-bottom: 18px;
  text-transform: none;
}

.floating-panel {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 220px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(26,43,76,0.08);
  padding: 22px 18px 18px 18px;
  z-index: 80;
}

.floating-panel .logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.floating-panel .logo-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.floating-panel .logo-domain {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--deep);
  margin-bottom: 6px;
}

.floating-panel .logo-site {
  font-family: var(--font-jp);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mint);
  line-height: 1.4;
}

.floating-panel nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-panel nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--deep);
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s var(--transition-smooth), color 0.2s var(--transition-smooth);
}

.floating-panel nav a .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--mint);
  transition: color 0.2s var(--transition-smooth);
}

.floating-panel nav a .label {
  font-weight: 500;
}

.floating-panel nav a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 22px;
  background: var(--coral);
  border-radius: 2px;
  transition: transform 0.2s var(--transition-smooth);
}

.floating-panel nav a:hover,
.floating-panel nav a.is-active {
  background: rgba(255,79,58,0.07);
  color: var(--coral);
}

.floating-panel nav a:hover .icon,
.floating-panel nav a.is-active .icon {
  color: var(--coral);
}

.floating-panel nav a.is-active::before {
  transform: translateY(-50%) scaleY(1);
}

.floating-panel .panel-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.floating-panel .panel-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s var(--transition-smooth);
}

.floating-panel .panel-cta .phone-link {
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
}

.floating-panel .panel-cta .phone-link:hover {
  background: var(--coral-dark);
  box-shadow: var(--shadow-coral);
}

.floating-panel .panel-cta .contact-link {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--line);
}

.floating-panel .panel-cta .contact-link:hover {
  border-color: var(--deep);
  color: var(--deep);
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mobile-bar .mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-bar .mobile-logo .mark {
  width: 32px;
  height: 32px;
}

.mobile-bar .mobile-logo .text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-bar .mobile-logo .text .domain {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--deep);
}

.mobile-bar .mobile-logo .text .site {
  font-family: var(--font-jp);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--mint);
}

.mobile-bar .burger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.mobile-bar .burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--coral);
  position: relative;
  transition: background 0.2s ease;
}

.mobile-bar .burger span::before,
.mobile-bar .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transition: transform 0.3s var(--ease-soft);
}

.mobile-bar .burger span::before { top: -7px; }
.mobile-bar .burger span::after { top: 7px; }

.mobile-bar .burger[aria-expanded="true"] span { background: transparent; }
.mobile-bar .burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.mobile-bar .burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--white);
  background-image:
    linear-gradient(to right, rgba(200,195,187,0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200,195,187,0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: translateX(110%);
  transition: transform 0.45s var(--ease-soft);
  z-index: 100;
  padding: 80px 32px 32px 32px;
  overflow-y: auto;
}

.mobile-menu .menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--deep);
  transition: color 0.2s ease;
}

.mobile-menu .menu-close:hover {
  color: var(--coral);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.mobile-menu nav a .icon {
  width: 26px;
  height: 26px;
  color: var(--coral);
}

.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.mobile-menu .mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.mobile-menu .mobile-cta .phone {
  background: var(--coral);
  color: var(--white);
}

.mobile-menu .mobile-cta .contact {
  background: var(--deep);
  color: var(--white);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,25,43,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 95;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1200px) {
  main, .footer {
    padding-left: 280px !important;
  }
}

@media (max-width: 1199px) {
  .floating-panel {
    width: 72px;
    padding: 14px 8px;
  }
  .floating-panel .logo-domain,
  .floating-panel .logo-site,
  .floating-panel nav a .label,
  .floating-panel .panel-cta {
    display: none;
  }
  .floating-panel .logo-mark {
    width: 36px;
    height: 36px;
  }
  .floating-panel nav a {
    justify-content: center;
    padding: 12px 0;
  }
  .floating-panel nav a::before {
    left: 2px;
  }
  main, .footer {
    padding-left: 96px;
  }
}

@media (max-width: 767px) {
  .floating-panel { display: none; }
  .mobile-bar { display: flex; }
  main { padding-top: 60px; }
  .shell { padding: 0 18px; }
  h1 { font-size: clamp(34px, 9vw, 56px); }
  h2 { font-size: clamp(28px, 7vw, 44px); }
}

.hero {
  position: relative;
  padding: 140px 0 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(44px, 6.4vw, 104px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--deep);
  margin-bottom: 28px;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero h1 .word span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.6s var(--ease-soft), font-variation-settings 6s ease;
  font-variation-settings: "wght" 200;
  animation: weightBreath 8s ease-in-out infinite;
}

@keyframes weightBreath {
  0%, 100% { font-variation-settings: "wght" 200; }
  50% { font-variation-settings: "wght" 500; }
}

.hero .hero-jp {
  font-family: var(--font-jp);
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.32em;
  color: var(--mint);
  margin-bottom: 40px;
}

.hero .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--transition-smooth);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: var(--shadow-coral);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
}

.btn-ghost:hover {
  background: var(--deep);
  color: var(--white);
}

.btn-dark {
  background: var(--deep);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--deep-2);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--deep);
  border: 1.5px solid var(--line);
}

.btn-light:hover {
  border-color: var(--deep);
  color: var(--deep);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,79,58,0.06) 0%, rgba(26,43,76,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-visual .visual-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stats .stat .label {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 991px) {
  .hero { padding: 100px 0 80px 0; min-height: auto; }
  .hero .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4 / 3; }
}

.section {
  padding: var(--pad-section) 0;
  position: relative;
}

.section-sm {
  padding: var(--pad-section-sm) 0;
}

@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head .lead {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
}

@media (max-width: 767px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ps-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.7);
  transition: transform 0.4s var(--transition-spring), box-shadow 0.4s var(--transition-smooth);
}

.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.ps-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.ps-card.problem .label { color: var(--coral); }
.ps-card.solution .label { color: var(--mint); }

.ps-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--deep);
  letter-spacing: -0.01em;
}

.ps-card p {
  font-size: 15px;
  color: var(--deep);
  line-height: 1.8;
  margin: 0;
}

.ps-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.ps-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--deep);
  line-height: 1.7;
  margin-bottom: 8px;
}

.ps-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 600;
}

@media (max-width: 767px) {
  .problem-solution { grid-template-columns: 1fr; gap: 18px; }
  .ps-card { padding: 28px 24px; }
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-item {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}

.acc-item.is-open {
  box-shadow: var(--shadow-card-hover);
}

.acc-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s var(--transition-smooth);
  user-select: none;
}

.acc-head:hover { background: rgba(255,79,58,0.03); }

.acc-head .acc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(168,191,180,0.18);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
}

.acc-item.is-open .acc-head .acc-icon {
  background: var(--coral);
  color: var(--white);
}

.acc-head .acc-icon svg { width: 24px; height: 24px; }

.acc-head .acc-title {
  display: flex;
  flex-direction: column;
}

.acc-head .acc-title .jp {
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.acc-head .acc-title .micro {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.acc-head .acc-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.01em;
}

.acc-head .acc-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s var(--transition-smooth);
}

.acc-item.is-open .acc-head .acc-toggle {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

.acc-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 0 32px 32px 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-soft), padding 0.4s var(--ease-soft);
}

.acc-item.is-open .acc-body {
  max-height: 800px;
  padding: 0 32px 32px 112px;
}

.acc-body .acc-text p {
  font-size: 15px;
  color: var(--deep);
  line-height: 1.85;
  margin-bottom: 16px;
}

.acc-body .acc-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.acc-body .acc-text li {
  font-size: 13px;
  color: var(--deep);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.acc-body .acc-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.acc-body .acc-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory);
}

.acc-body .acc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acc-body .acc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.acc-body .acc-link::after {
  content: "→";
  transition: transform 0.2s var(--transition-smooth);
}

.acc-body .acc-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .acc-head { grid-template-columns: 44px 1fr auto; padding: 18px 20px; gap: 16px; }
  .acc-head .acc-icon { width: 38px; height: 38px; }
  .acc-head .acc-icon svg { width: 20px; height: 20px; }
  .acc-head .acc-title .jp { font-size: 16px; }
  .acc-item.is-open .acc-body { padding: 0 20px 24px 20px; }
  .acc-body { grid-template-columns: 1fr; gap: 20px; }
  .acc-body .acc-text ul { grid-template-columns: 1fr; }
  .acc-head .acc-price { display: none; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: flex-grow 0.5s var(--transition-spring), transform 0.4s var(--transition-smooth), background 0.3s ease, box-shadow 0.4s var(--transition-smooth);
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(168,191,180,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  pointer-events: none;
}

.benefit-card:hover {
  flex-grow: 1.8;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.benefit-card:hover::after { opacity: 1; }

.benefit-card .b-icon {
  width: 40px;
  height: 40px;
  color: var(--coral);
}

.benefit-card .b-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.benefit-card h4 {
  font-size: 19px;
  margin: 0;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.benefit-card .b-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft), opacity 0.3s ease, margin 0.3s ease;
}

.benefit-card:hover .b-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { flex: 1 1 auto; }
  .benefit-card:hover { flex-grow: 1; }
  .benefit-card .b-desc { max-height: 200px; opacity: 1; margin-top: 6px; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: rgba(168,191,180,0.08);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.split-about .sticky-side {
  position: sticky;
  top: 32px;
}

.split-about .sticky-side .photo-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  box-shadow: var(--shadow-card);
  margin-top: 24px;
}

.split-about .sticky-side .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transition: filter 0.6s var(--transition-smooth);
}

.split-about:hover .sticky-side .photo-frame img {
  filter: grayscale(0%) contrast(1);
}

.split-about .scroll-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-block {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.about-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.about-block h3 {
  font-size: 22px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-block h3::before {
  content: "";
  width: 6px;
  height: 22px;
  background: var(--coral);
  border-radius: 4px;
}

.about-block p {
  font-size: 15px;
  color: var(--deep);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 991px) {
  .split-about { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .split-about .sticky-side { position: static; }
  .split-about .sticky-side .photo-frame { aspect-ratio: 16 / 10; }
}

.node-graph {
  position: relative;
  min-height: 520px;
  padding: 40px 0;
}

.node-graph svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.node-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 520px;
}

.node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.node .dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--coral);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s var(--transition-spring);
  position: relative;
  z-index: 2;
}

.node:hover .dot {
  width: 72px;
  height: 72px;
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.node .nlabel {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.08em;
  text-align: center;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--transition-smooth);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  white-space: nowrap;
}

.node:hover .nlabel {
  opacity: 1;
  transform: translateY(0);
}

.node .nmicro {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.node:hover .nmicro { opacity: 1; }

@media (max-width: 991px) {
  .node-list { display: none; }
  .node-timeline { display: block; }
}

.node-timeline {
  display: none;
  position: relative;
  padding-left: 32px;
}

.node-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.tl-item {
  position: relative;
  padding: 14px 0 24px 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--coral);
}

.tl-item .tl-title {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

.tl-item .tl-desc {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.bento {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  transition: transform 0.4s var(--transition-spring);
}

.bento:hover { transform: translateY(-4px); }

.bento.dark { background: var(--coral); color: var(--white); }
.bento.dark h3, .bento.dark .b-num, .bento.dark p { color: var(--white); }

.bento .num-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}

.bento.dark .num-big { color: var(--white); }

.bento .b-label {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}

.bento.dark .b-label { color: rgba(255,255,255,0.85); }

.bento.b-photo {
  padding: 0;
  min-height: 280px;
}

.bento.b-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.5s ease;
}

.bento.b-photo:hover img { filter: grayscale(0%); }

.bento.b-tall {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--deep) 0%, #0F1A33 100%);
  color: var(--white);
  padding: 36px 32px;
  min-height: 100%;
}

.bento.b-tall h3 { color: var(--white); }
.bento.b-tall p { color: rgba(255,255,255,0.78); }

.bento .pattern-tile {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 25%, rgba(168,191,180,0.6) 6px, transparent 7px),
    radial-gradient(circle at 75% 75%, rgba(168,191,180,0.5) 6px, transparent 7px),
    radial-gradient(circle at 75% 25%, rgba(168,191,180,0.4) 6px, transparent 7px),
    radial-gradient(circle at 25% 75%, rgba(168,191,180,0.4) 6px, transparent 7px),
    linear-gradient(135deg, rgba(168,191,180,0.1) 0%, rgba(255,79,58,0.08) 100%);
  background-size: 28px 28px, 28px 28px, 28px 28px, 28px 28px, 100% 100%;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento.b-tall { grid-row: span 1; grid-column: span 2; min-height: 260px; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento.b-tall { grid-column: span 1; }
}

.team-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.team-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding 0.3s var(--transition-smooth);
}

.team-row .t-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
}

.team-row .t-info .t-name {
  font-family: var(--font-jp);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.team-row .t-info .t-role {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--mint);
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.team-row .t-arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.3s var(--transition-smooth), color 0.2s ease;
}

.team-row:hover .t-arrow {
  color: var(--coral);
  transform: translateX(4px);
}

.team-photo {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--transition-smooth);
  z-index: 5;
}

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

.team-row:hover .team-photo {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
  .team-row { grid-template-columns: 40px 1fr 32px; gap: 16px; padding: 22px 0; }
  .team-photo { display: none; }
  .team-row.is-open .team-photo-mobile {
    display: block;
    margin-top: 18px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }
  .team-photo-mobile { display: none; }
}

.faq-stack {
  position: relative;
  padding-top: 20px;
}

.faq-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
  position: relative;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.3s var(--transition-smooth);
  cursor: pointer;
}

.faq-card:nth-child(1) { transform: translate(0, 0); z-index: 1; }
.faq-card:nth-child(2) { transform: translate(28px, 0); z-index: 2; margin-top: -22px; }
.faq-card:nth-child(3) { transform: translate(56px, 0); z-index: 3; margin-top: -22px; }
.faq-card:nth-child(4) { transform: translate(84px, 0); z-index: 4; margin-top: -22px; }
.faq-card:nth-child(5) { transform: translate(112px, 0); z-index: 5; margin-top: -22px; }

.faq-card:hover,
.faq-card.is-open {
  transform: translate(0, -8px);
  z-index: 100;
  box-shadow: var(--shadow-card-hover);
}

.faq-card .fq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.faq-card .fq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s var(--transition-smooth);
  flex-shrink: 0;
}

.faq-card.is-open .fq-toggle,
.faq-card:hover .fq-toggle {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-card .fq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft), margin 0.3s ease;
}

.faq-card.is-open .fq-a {
  max-height: 400px;
  margin-top: 18px;
}

.faq-card .fq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .faq-card { padding: 24px 22px; }
  .faq-card:nth-child(1),
  .faq-card:nth-child(2),
  .faq-card:nth-child(3),
  .faq-card:nth-child(4),
  .faq-card:nth-child(5) { transform: translate(0, 0); margin-top: 0; }
  .faq-card:not(:last-child) { margin-bottom: 12px; }
  .faq-card .fq-q { font-size: 16px; gap: 14px; }
}

.reviews-carousel {
  position: relative;
  perspective: 1400px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 90%);
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transform: translate(-50%, -50%) translateX(var(--tx, 0px)) rotateY(var(--ry, 0deg)) scale(var(--sc, 0.8));
  transition: all 0.6s var(--ease-soft);
  opacity: 0.4;
  filter: brightness(0.85);
  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  filter: none;
  pointer-events: auto;
  z-index: 5;
}

.review-card .r-stars {
  display: flex;
  gap: 4px;
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card .r-text {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--deep);
  line-height: 1.85;
  margin-bottom: 24px;
  min-height: 130px;
}

.review-card .r-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card .r-author .r-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ivory);
  flex-shrink: 0;
}

.review-card .r-author .r-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .r-author .r-info .r-name {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
}

.review-card .r-author .r-info .r-meta {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.review-nav button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--coral);
  color: var(--coral);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--transition-smooth);
}

.review-nav button:hover {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .reviews-carousel { height: 520px; perspective: none; }
  .review-card { position: relative; top: auto; left: auto; transform: none; display: none; opacity: 1; filter: none; pointer-events: auto; width: 100%; }
  .review-card.is-active { display: block; }
  .review-card .r-text { min-height: auto; }
  .review-nav { display: none; }
  .review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
  .review-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: all 0.3s ease; }
  .review-dots span.is-active { background: var(--coral); width: 24px; border-radius: 4px; }
}

.contact-section {
  background: var(--deep);
  color: var(--white);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.contact-section .shell-relative { position: relative; z-index: 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .kicker { color: var(--coral); }

.contact-info h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 32px;
  font-weight: 300;
}

.contact-info .lead {
  font-family: var(--font-jp);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 540px;
}

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

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-channel:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }

.contact-channel .ch-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.contact-channel .ch-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.contact-channel .ch-value:hover { color: var(--coral); }

.contact-channel .ch-sub {
  font-family: var(--font-jp);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.contact-channel.address .ch-value {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}

.contact-form-card {
  background: var(--white);
  color: var(--deep);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-card .form-sub {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--deep);
  margin-bottom: 6px;
}

.form-group label .req { color: var(--coral); }

.form-group input,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  background: var(--ivory);
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--deep);
  transition: all 0.2s var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0A3B0; }

.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,79,58,0.12);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.contact-form-card .submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-shown { display: block; }

.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--deep);
}

.form-success p {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .contact-section { padding: 56px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .contact-section { padding: 48px 22px; }
  .contact-info h2 { font-size: 36px; }
  .contact-channel .ch-value { font-size: 24px; }
}

.cta-band {
  background: var(--coral);
  color: var(--white);
  border-radius: 32px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-band .cta-content { position: relative; z-index: 2; }

.cta-band h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 48px);
  margin-bottom: 14px;
  font-weight: 400;
}

.cta-band p {
  font-family: var(--font-jp);
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1.7;
  max-width: 520px;
}

.cta-band .btn-cta-white {
  background: var(--white);
  color: var(--coral);
  height: 60px;
  padding: 0 36px;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.cta-band .btn-cta-white:hover {
  background: var(--deep);
  color: var(--white);
}

@media (max-width: 767px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-band .btn-cta-white { width: 100%; }
}

.footer {
  background: var(--deep);
  color: var(--white);
  border-radius: 32px 32px 0 0;
  padding: 72px 0 32px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.footer .shell-relative { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .f-logo .mark {
  width: 36px;
  height: 36px;
}

.footer-brand .f-logo .f-domain {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}

.footer-brand p {
  font-family: var(--font-jp);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 320px;
  margin: 0;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-family: var(--font-jp);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--coral); }

.footer-contact .f-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-contact .f-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer-contact .f-value {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.footer-contact .f-value a { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom .copy {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom .legal a {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.footer-bottom .legal a:hover { color: var(--coral); }

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .footer { padding: 56px 0 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  max-width: 420px;
  max-width: min(420px, calc(100vw - 48px));
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(26,43,76,0.18);
  padding: 24px 24px 20px 24px;
  border: 1px solid var(--line);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s var(--ease-soft), opacity 0.3s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner h6 {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner h6::before {
  content: "🍪";
  font-size: 18px;
}

.cookie-banner p {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.cookie-banner p a { color: var(--coral); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  height: 38px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s var(--transition-smooth);
}

.cookie-actions .accept {
  background: var(--coral);
  color: var(--white);
}

.cookie-actions .accept:hover { background: var(--coral-dark); }

.cookie-actions .decline {
  background: var(--ivory);
  color: var(--deep);
  border: 1px solid var(--line);
}

.cookie-actions .decline:hover { border-color: var(--deep); }

@media (max-width: 600px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

.thank-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}

.thank-card {
  background: var(--white);
  border-radius: 32px;
  padding: 64px 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.thank-card .check-big {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-coral);
}

.thank-card h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  font-weight: 300;
}

.thank-card p {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 32px 0;
}

.thank-card .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .thank-card { padding: 48px 24px; }
}

.page-hero {
  padding: 140px 0 64px 0;
  position: relative;
}

.page-hero .breadcrumbs {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.page-hero .breadcrumbs a { color: var(--muted); text-decoration: none; }
.page-hero .breadcrumbs a:hover { color: var(--coral); }
.page-hero .breadcrumbs .sep { margin: 0 8px; color: var(--line); }
.page-hero .breadcrumbs .current { color: var(--coral); }

.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 250;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.page-hero .lead {
  font-family: var(--font-jp);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 720px;
}

@media (max-width: 767px) {
  .page-hero { padding: 100px 0 48px 0; }
}

.service-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.sd-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory);
}

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

.sd-info .sd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sd-info .sd-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sd-info .sd-price-from {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sd-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
  font-weight: 400;
}

.sd-info .sd-lead {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--deep);
  line-height: 1.85;
  margin-bottom: 24px;
}

.sd-info ul.sd-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-info ul.sd-list li {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--deep);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.sd-info ul.sd-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 700;
}

.sd-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .service-detail { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: pstep;
}

.process-step {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  counter-increment: pstep;
  transition: transform 0.3s var(--transition-smooth);
}

.process-step:hover { transform: translateY(-6px); }

.process-step::before {
  content: "0" counter(pstep);
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.process-step .ps-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,79,58,0.1);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-step .ps-icon svg { width: 26px; height: 26px; }

.process-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--deep);
}

.process-step p {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}

.legal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 56px;
  box-shadow: var(--shadow-card);
  max-width: 920px;
  margin: 0 auto 64px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 14px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.legal-content h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--deep);
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .legal-content { padding: 32px 22px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card .v-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.value-card h4 {
  font-size: 19px;
  color: var(--deep);
  margin: 0;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr; }
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.3s var(--transition-smooth);
  border: 1px solid var(--line);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card .sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card .sc-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--deep);
  font-weight: 500;
}

.service-card .sc-text {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card .sc-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.service-card .sc-price .from {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 6px;
  font-weight: 400;
}

.service-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: color 0.2s ease;
}

.service-card .sc-link::after {
  content: "→";
  transition: transform 0.2s var(--transition-smooth);
}

.service-card .sc-link:hover {
  color: var(--coral);
}

.service-card .sc-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .service-cards-grid { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.text-coral { color: var(--coral); }
.text-deep { color: var(--deep); }
.text-mint { color: var(--mint); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.bg-coral { background: var(--coral); }
.bg-deep { background: var(--deep); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-mint-soft { background: rgba(168,191,180,0.15); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: 32px; }
.mb-md { margin-bottom: 32px; }
.flex-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .show-mobile { display: none !important; }
}
