@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

:root {
  --navy-900: #0d1d30;
  --navy-800: #112b46;
  --navy-700: #183c5d;
  --gold-500: #b9975f;
  --gold-400: #d9bb7b;
  --ice-100: #f3f8fb;
  --ice-200: #edf3f8;
  --stone-200: #e8edf1;
  --stone-500: #6a7886;
  --text: #1a2433;
  --white: #ffffff;
  --shadow-soft: 0 22px 50px rgba(19, 38, 62, 0.07);
  --radius: 26px;
  --feature-media-width: 320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section-shell {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 43, 70, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  transition: color 0.2s ease;
}


.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  opacity: 0;
  transform: scaleX(0.7);
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-500);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  background: var(--navy-800);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold-500) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-800);
  border-radius: 2px;
}

.hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at top right, rgba(185, 151, 95, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.eyebrow.dark {
  color: var(--gold-500);
}

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

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--navy-800);
  line-height: 1.3;
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.4rem;
}

.lead {
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--stone-500);
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: all 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--gold-500);
}

.btn-secondary {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--navy-800);
  color: var(--white);
}

.light-btn {
  background: var(--white);
  color: var(--navy-800);
}

.hero-points {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  color: var(--stone-500);
  font-size: 0.92rem;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.value-editorial {
  position: relative;
  width: min(100%, 430px);
  padding: 34px 0 28px 44px;
  border-top: 1px solid rgba(185, 151, 95, 0.5);
  border-bottom: 1px solid rgba(17, 43, 70, 0.14);
  background: linear-gradient(102deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.value-editorial::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 151, 95, 0), rgba(185, 151, 95, 0.9), rgba(185, 151, 95, 0));
}

.value-kicker {
  margin: 0;
  position: absolute;
  left: -20px;
  top: 4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.value-heading {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3.1vw, 2.3rem);
  letter-spacing: -0.03em;
}

.value-copy {
  margin: 0;
  color: var(--stone-500);
}

.section-alt {
  background: var(--ice-100);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p:last-child {
  color: var(--stone-500);
  margin: 0;
}

.feature-editorial .section-head {
  margin-bottom: 20px;
}

.feature-editorial-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 43, 70, 0.14);
}

.feature-editorial-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(250px, 320px);
  gap: 36px;
  align-items: start;
  padding: 58px 0;
  border-bottom: 1px solid rgba(17, 43, 70, 0.14);
}

.feature-editorial-number {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 4.8rem);
  line-height: 1;
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  color: rgba(17, 43, 70, 0.15);
}

.feature-editorial-copy h3 {
  margin-bottom: 10px;
}

.feature-editorial-copy p {
  margin: 0;
  color: var(--stone-500);
}

.feature-editorial-copy p + p {
  margin-top: 14px;
}

.feature-editorial-item-right {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) 120px;
}

.feature-editorial-item-right .feature-editorial-number {
  grid-column: 3;
  text-align: right;
}

.feature-editorial-item-right .feature-editorial-media {
  grid-column: 1;
  margin-inline: 0 auto;
}

.feature-editorial-item-right .feature-editorial-copy {
  grid-column: 2;
  text-align: right;
}

.feature-editorial-item-right .feature-editorial-copy p {
  text-align: left;
}

.feature-editorial-media {
  margin: 0;
  width: min(100%, var(--feature-media-width));
  margin-inline: auto;
}

.feature-media-slot {
  min-height: 196px;
  border: 1px solid rgba(17, 43, 70, 0.14);
  background:
    linear-gradient(125deg, rgba(17, 43, 70, 0.18), rgba(17, 43, 70, 0.03) 40%, rgba(185, 151, 95, 0.24)),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18) 8px, transparent 8px, transparent 18px);
  color: rgba(13, 29, 48, 0.58);
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%)) {
  .feature-media-slot {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }

  .feature-editorial-item:nth-child(even) .feature-media-slot {
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  }
}

@supports (clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%)) {
  @media (max-width: 900px) {
    .feature-media-slot,
    .feature-editorial-item:nth-child(even) .feature-media-slot {
      clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    }
  }
}

.js-enhanced.reveal-active .reveal-item.reveal-pending {
  --reveal-offset: -34px;
  transform: translate3d(var(--reveal-offset), 0, 0);
}

.js-enhanced.reveal-active .reveal-item.reveal-pending.reveal-from-right {
  --reveal-offset: 34px;
}

.js-enhanced.reveal-active .reveal-item.reveal-pending .feature-editorial-number,
.js-enhanced.reveal-active .reveal-item.reveal-pending .feature-editorial-media {
  opacity: 0.45;
}

.js-enhanced.reveal-active .reveal-item.is-visible {
  transform: none;
}

.js-enhanced.reveal-active .reveal-item.is-visible .feature-editorial-number,
.js-enhanced.reveal-active .reveal-item.is-visible .feature-editorial-media {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .js-enhanced.reveal-active.reveal-ready .reveal-item {
    transition: transform 0.9s ease;
  }

  .js-enhanced.reveal-active.reveal-ready .reveal-item .feature-editorial-number,
  .js-enhanced.reveal-active.reveal-ready .reveal-item .feature-editorial-media {
    transition: opacity 0.9s ease;
  }
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.detail-card,
.message-box,
.access-box,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(17, 43, 70, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 30px 28px;
}

.info-card {
  border-top: 4px solid var(--gold-500);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(185, 151, 95, 0.12);
  color: var(--navy-800);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card p,
.detail-card p,
.message-box p,
.contact-card p,
.access-copy p {
  color: var(--stone-500);
  margin: 0;
}

.centered-link {
  margin-top: 32px;
  text-align: center;
}

.text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--navy-800);
  border-bottom: 2px solid var(--gold-500);
  padding-bottom: 4px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split-layout p {
  color: var(--stone-500);
}

.about-heading br {
  display: inline;
}

.cta-shell {
  padding-top: 50px;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: 30px;
  padding: 42px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: var(--white);
}

.page-hero {
  background: var(--ice-100);
  padding-bottom: 44px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p:last-child {
  color: var(--stone-500);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid rgba(17, 43, 70, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(17, 43, 70, 0.08);
  padding: 20px 22px;
}

.info-table th {
  width: 28%;
  background: var(--ice-100);
  color: var(--navy-800);
  font-weight: 700;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.service-stack {
  display: grid;
  gap: 30px;
}

.detail-card h2 {
  margin-bottom: 10px;
}

.detail-card .service-meta {
  margin-bottom: 18px;
  color: var(--navy-800);
  font-weight: 600;
}

.detail-card p + h3,
.detail-card ul + h3 {
  margin-top: 28px;
}

.detail-card h3 + p,
.detail-card h3 + ul {
  margin-top: 10px;
}

.detail-card ul + p,
.detail-card p + p {
  margin-top: 16px;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--stone-500);
  line-height: 2;
}

.pricing-stack {
  display: grid;
  gap: 24px;
}

.pricing-intro {
  max-width: 840px;
  margin-bottom: 36px;
}

.pricing-intro p:last-child,
.pricing-note {
  color: var(--stone-500);
}

.pricing-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid rgba(17, 43, 70, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.pricing-card-head {
  padding: 30px 32px 18px;
  border-bottom: 1px solid rgba(17, 43, 70, 0.08);
}

.pricing-card-head p {
  margin: 0;
  color: var(--stone-500);
}

.pricing-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
  gap: 0;
}

.pricing-main,
.pricing-side {
  padding: 28px 32px 32px;
}

.pricing-side {
  background: rgba(13, 29, 48, 0.03);
  border-left: 1px solid rgba(17, 43, 70, 0.08);
}

.pricing-block + .pricing-block {
  margin-top: 22px;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
}

.pricing-main p,
.pricing-side p {
  margin: 0;
  color: var(--stone-500);
}

.pricing-meta {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.pricing-meta div {
  display: grid;
  gap: 6px;
}

.pricing-meta dt {
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--navy-800);
}

.pricing-meta dd {
  margin: 0;
  color: var(--stone-500);
}

.pricing-price {
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy-800) !important;
}

.pricing-cta {
  margin-top: 36px;
}

.message-box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.message-signature {
  margin-top: 22px !important;
  text-align: right;
  font-weight: 700;
  color: var(--navy-800) !important;
}

.access-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.map-placeholder {
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 43, 70, 0.08), rgba(185, 151, 95, 0.12));
  color: var(--stone-500);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(17, 43, 70, 0.12);
}

.contact-box {
  display: grid;
  gap: 28px;
}

.contact-form-box {
  background: var(--ice-100);
}

.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding-top: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 150px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-meta {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-sub-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-sub-link:hover {
  color: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.62);
}

.footer-sub-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-layout,
  .access-box,
  .three-up {
    grid-template-columns: 1fr;
  }

  .feature-editorial-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .feature-editorial-item-right {
    grid-template-columns: 1fr;
  }

  .feature-editorial-item-right .feature-editorial-number,
  .feature-editorial-item-right .feature-editorial-media,
  .feature-editorial-item-right .feature-editorial-copy {
    grid-column: auto;
    text-align: left;
  }

  .feature-editorial-item-right .feature-editorial-media {
    margin-inline: auto;
  }

  .feature-editorial-number {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .feature-media-slot {
    min-height: 160px;
  }

  .about-heading br {
    display: none;
  }

  .value-editorial {
    width: 100%;
    padding: 28px 0 22px 34px;
  }

  .value-kicker {
    left: -16px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card-body {
    grid-template-columns: 1fr;
  }

  .pricing-side {
    border-left: 0;
    border-top: 1px solid rgba(17, 43, 70, 0.08);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 43, 70, 0.08);
    padding: 20px 20px 28px;
    box-shadow: 0 16px 30px rgba(17, 43, 70, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .value-editorial {
    padding-left: 30px;
  }

  .value-kicker {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .value-editorial::before {
    top: 0;
    bottom: 0;
  }

  .section-shell {
    padding: 70px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-enhanced .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-enhanced .reveal-item .feature-editorial-number,
  .js-enhanced .reveal-item .feature-editorial-media {
    opacity: 1;
    transition: none;
  }
}
