:root {
  --navy: #102b49;
  --navy-deep: #081d33;
  --orange: #e8733d;
  --orange-dark: #c85828;
  --ink: #17202a;
  --muted: #626b72;
  --warm: #f5f2ec;
  --paper: #ffffff;
  --moss: #596654;
  --line: rgba(16, 43, 73, 0.16);
  --max: 1180px;
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 10px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 190px;
  height: 98px;
}

.brand img {
  width: 184px;
  height: 96px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav > a.current-link::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 22px;
  color: white;
  background: var(--navy);
  transition: background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--orange-dark);
}

.language-switcher {
  display: flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
}

.language-switcher button {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button[aria-pressed="true"] {
  color: white;
  background: var(--orange-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(770px, calc(100vh - var(--header-height)));
  overflow: hidden;
  color: white;
  background: var(--navy-deep);
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  max-width: none;
  object-fit: cover;
  object-position: center 54%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1100ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-torii {
  object-position: center center;
}

.hero-slide-tower {
  object-position: 66% center;
}

.hero-slide-kamo {
  object-position: center 62%;
}

.hero-slide-dotonbori {
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 19, 33, 0.78) 0%, rgba(5, 19, 33, 0.42) 48%, rgba(5, 19, 33, 0.08) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 max(24px, calc((100vw - var(--max)) / 2));
  padding: 70px 0 110px;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", "Yu Mincho", serif;
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(46px, 6.2vw, 82px);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 34px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ff9a65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button span {
  margin-left: 18px;
  font-size: 19px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--orange-dark);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--navy);
}

.hero-scroll {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.hero-scroll i {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  transform: scale(1.25);
}

.hero-dots button.is-active {
  background: white;
}

.section {
  position: relative;
  padding: 120px 28px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(36px, 4.4vw, 58px);
}

.section-index {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.intro {
  background: var(--warm);
}

.intro::after {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 80px;
  height: 8px;
  content: "";
  background: var(--orange);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
}

.intro-grid > div {
  max-width: 830px;
}

.lead {
  margin: 34px 0 28px;
  color: #404950;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid var(--navy);
}

.text-link span {
  margin-left: 18px;
}

.journeys {
  padding-bottom: 140px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 360px;
  margin: 0 0 6px;
  color: var(--muted);
  text-align: right;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 360px);
  gap: 18px;
}

.journey-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--navy);
}

.journey-card-large {
  grid-row: 1 / 3;
}

.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.journey-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(2, 16, 29, 0.82));
}

.journey-card:hover img {
  transform: scale(1.035);
}

.journey-overlay {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 1;
  color: white;
}

.journey-overlay p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.journey-overlay h3 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
}

.journey-overlay a,
.journey-detail-button {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 3px;
  color: white;
  font-size: 13px;
  font-weight: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0;
}

.journey-detail-button:hover,
.journey-detail-button:focus-visible {
  color: #ffb38c;
  border-color: #ffb38c;
}

.journey-overlay a {
  font-size: 13px;
}

.journey-overlay a span,
.journey-detail-button span:last-child {
  margin-left: 10px;
}

.case-dialog {
  width: min(1080px, calc(100% - 40px));
  max-width: none;
  max-height: min(90vh, 900px);
  padding: 0;
  color: var(--ink);
  overflow: auto;
  background: var(--warm);
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 80px rgba(2, 16, 29, 0.35);
}

.case-dialog::backdrop {
  background: rgba(3, 17, 29, 0.76);
  backdrop-filter: blur(3px);
}

.case-dialog[open] {
  animation: dialog-in 240ms ease both;
}

.case-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 660px;
}

.case-dialog-image {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.case-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: white;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  background: var(--navy-deep);
  border: 0;
}

.case-dialog-close:hover,
.case-dialog-close:focus-visible {
  background: var(--orange-dark);
}

.case-dialog-content {
  padding: 70px 62px 62px;
}

.case-dialog-content h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.3;
}

html[lang="en"] .case-dialog-content h2 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .case-dialog-content h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.case-summary {
  margin: 22px 0 38px;
  color: var(--muted);
  font-size: 15px;
}

.case-flow {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--navy);
}

.case-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.case-flow li > span {
  padding-top: 3px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.case-flow h3,
.case-flow p {
  margin: 0;
}

.case-flow h3 {
  color: var(--navy-deep);
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 17px;
  font-weight: 600;
}

.case-flow p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.case-note {
  margin: 26px 0;
  color: var(--muted);
  font-size: 11px;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: white;
  background: var(--navy-deep);
}

.approach-image {
  min-height: 760px;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-content {
  align-self: center;
  max-width: 650px;
  padding: 90px clamp(44px, 7vw, 110px);
}

.approach-content > p:not(.eyebrow) {
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-list li > span {
  color: #ff9a65;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 500;
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.network {
  background: white;
}

.network-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: clamp(50px, 9vw, 120px);
  margin-bottom: 64px;
}

.network-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
}

.network-facts {
  margin: -8px 0 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.capability-list {
  border-top: 1px solid var(--navy);
}

.capability-item {
  display: grid;
  grid-template-columns: 48px minmax(260px, 0.85fr) 1fr 220px;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-number {
  padding-top: 5px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.capability-item h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 600;
  line-height: 1.45;
}

.capability-item p {
  max-width: 620px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-visual {
  position: relative;
  width: 220px;
  margin: 0;
  overflow: hidden;
}

.capability-visual::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 5px;
  content: "";
  background: var(--orange);
}

.capability-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms ease, opacity 220ms ease;
}

.capability-item:hover .capability-visual img {
  opacity: 0.88;
  transform: scale(1.025);
}

.capability-flags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  padding: 14px 10px 10px;
  background: var(--warm);
}

.capability-flags::after {
  top: 0;
}

.capability-flags .flag-item {
  min-width: 0;
  text-align: center;
}

.capability-flags .flag-item img {
  width: 100%;
  height: 38px;
  aspect-ratio: auto;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(16, 43, 73, 0.1);
  transition: none;
}

.capability-item:hover .capability-flags img {
  opacity: 1;
  transform: none;
}

.capability-flags span {
  display: block;
  margin-top: 6px;
  color: var(--navy-deep);
  font-size: 10px;
  line-height: 1.3;
  white-space: nowrap;
}

.capability-activities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.capability-activities > div {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.capability-activities img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.capability-activities span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 5px 6px;
  color: white;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  background: rgba(8, 29, 51, 0.86);
}

html[lang="en"] .capability-item h3 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .capability-item h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  overflow-wrap: normal;
  word-break: keep-all;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.facts div {
  padding: 26px 10px 0 0;
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.stories {
  text-align: left;
  background: white;
}

.stories-inner {
  max-width: var(--max);
}

.stories-inner > .eyebrow,
.stories-inner > h2,
.stories-intro {
  text-align: center;
}

.stories-intro {
  margin: 18px 0 0;
  color: var(--muted);
}

.story-carousel {
  position: relative;
  margin-top: 54px;
  padding: 32px 96px 24px;
  background: #f7f7f5;
}

.story-slide {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 6vw, 82px);
  min-height: 250px;
  padding: 24px 0;
}

.story-slide[hidden] {
  display: none;
}

.story-slide.is-active {
  animation: story-in 420ms ease both;
}

.story-slide > img {
  width: 190px;
  height: 190px;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.story-type {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}

.story-narrative {
  margin: 0 0 16px;
  color: #4d565d;
  font-family: inherit;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
}

.story-credit {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.story-navigation {
  padding-top: 4px;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.story-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid #747a7f;
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-dots button:hover,
.story-dots button:focus-visible {
  border-color: var(--orange-dark);
  transform: scale(1.2);
}

.story-dots button.is-active {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.story-controls button {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 72px;
  padding: 0;
  color: var(--orange-dark);
  font-family: Arial, sans-serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  transform: translateY(-58%);
  transition: color 180ms ease, transform 180ms ease;
}

.story-controls button:first-child {
  left: 18px;
}

.story-controls button:last-child {
  right: 18px;
}

.story-controls button:hover,
.story-controls button:focus-visible {
  color: var(--navy);
  transform: translateY(-58%) scale(1.08);
}

.sample-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

@keyframes story-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.inquiry {
  color: white;
  background: var(--navy);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.inquiry-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-note {
  padding-top: 28px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-copy .inquiry-scope-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.whatsapp-contact {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  grid-column: 1 / -1;
  gap: 24px;
  margin-top: -10px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-contact > img {
  width: 132px;
  aspect-ratio: 1 / 1;
  padding: 5px;
  object-fit: cover;
  background: white;
}

.whatsapp-contact .channel-label {
  margin: 0 0 3px;
  color: #ff9a65;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.whatsapp-contact h3 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 600;
}

.whatsapp-contact div > p:not(.channel-label) {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  color: #ff9a65;
}

html[lang="en"] .whatsapp-contact h3 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .whatsapp-contact h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.inquiry-form {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  color: white;
  outline: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #ff9a65;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .button {
  justify-self: start;
  margin-top: 8px;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: #ffb38c;
  font-size: 14px;
}

.email-fallback {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.email-fallback a {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.email-fallback a:hover,
.email-fallback a:focus-visible {
  color: #ff9a65;
}

.site-footer {
  padding: 58px max(28px, calc((100vw - var(--max)) / 2)) 22px;
  color: var(--navy);
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand {
  width: 180px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  font-size: 13px;
}

.footer-company {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.footer-company p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--muted);
  font-size: 11px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

html[lang="en"] .hero h1,
html[lang="en"] .section h2,
html[lang="en"] .journey-overlay h3,
html[lang="en"] .process-list h3,
html[lang="en"] .story-narrative {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .hero h1,
html[lang="ja"] .section h2,
html[lang="ja"] .journey-overlay h3,
html[lang="ja"] .process-list h3,
html[lang="ja"] .story-narrative {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

html[lang="ja"] body {
  line-break: strict;
  word-break: normal;
}

html[lang="zh-CN"] p {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

html[lang="zh-CN"] :where(h1, h2, h3) {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

@supports (word-break: auto-phrase) {
  html[lang="zh-CN"] p {
    word-break: auto-phrase;
  }

  html[lang="zh-CN"] :where(h1, h2, h3) {
    word-break: auto-phrase;
  }

  html[lang="ja"] :where(p, li, dt, dd, figcaption, label, a, button, h1, h2, h3) {
    word-break: auto-phrase;
  }
}

html[lang="ja"] :where(
  .hero h1,
  .section h2,
  .journey-overlay h3,
  .case-dialog-content h2,
  .subpage-hero h1
) {
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

html[lang="ja"] :where(.button, .journey-detail-button, .text-link, .whatsapp-link, .primary-nav a) {
  white-space: nowrap;
}

html[lang="ja"] .corporate-table dd {
  overflow-wrap: normal;
  word-break: keep-all;
}

.subpage-main {
  min-height: 60vh;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 80px 28px;
  overflow: hidden;
  color: white;
  background: var(--navy-deep);
}

.subpage-hero::before {
  position: absolute;
  top: 0;
  right: 8vw;
  bottom: 0;
  width: 34%;
  content: "";
  opacity: 0.18;
  background: url("assets/images/garden.jpg") center / cover no-repeat;
}

.credentials-hero::before {
  background-image: url("assets/images/ryokan-interior.jpg");
}

.subpage-hero::after {
  position: absolute;
  top: 0;
  right: calc(8vw + 34%);
  width: 8px;
  height: 96px;
  content: "";
  background: var(--orange);
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.subpage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", "Yu Mincho", serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.2;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

html[lang="en"] .subpage-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .subpage-hero h1 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--orange-dark);
}

.corporate-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 9vw, 130px);
}

.corporate-intro > p:not(.eyebrow, .section-index) {
  margin: 28px 0 0;
  color: var(--muted);
}

.corporate-table {
  margin: 0;
  border-top: 1px solid var(--navy);
}

.corporate-table > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.65fr) 1.35fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.corporate-table dt {
  color: var(--muted);
  font-size: 13px;
}

.corporate-table dd {
  margin: 0;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 600;
}

.pending-value {
  color: #9aa0a5 !important;
  font-weight: 400 !important;
}

.subpage-cta {
  padding: 88px 28px;
  color: white;
  background: var(--navy);
}

.subpage-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.subpage-cta h2 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.25;
}

.subpage-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

html[lang="en"] .subpage-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .subpage-cta h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.scope-section {
  padding-top: 40px;
  background: var(--warm);
}

.scope-section h2,
.boundary-section h2 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.2;
}

html[lang="en"] .scope-section h2,
html[lang="en"] .boundary-section h2 {
  font-family: Georgia, "Times New Roman", serif;
}

html[lang="ja"] .scope-section h2,
html[lang="ja"] .boundary-section h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.scope-lead {
  max-width: 720px;
  margin: 26px 0 50px;
  color: var(--muted);
  font-size: 17px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
}

.scope-item {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scope-item > span {
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.scope-item h3 {
  margin: 50px 0 16px;
  color: var(--navy-deep);
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 600;
}

.scope-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-source {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.legal-source a {
  color: var(--navy);
  border-bottom: 1px solid currentColor;
}

.boundary-section {
  color: white;
  background: var(--navy-deep);
}

.boundary-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
}

.boundary-intro {
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 21px;
}

.boundary-points {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.boundary-points > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.boundary-points strong {
  color: #ff9a65;
  font-size: 13px;
}

.boundary-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.inquiry-legal-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .brand {
    flex-basis: 156px;
  }

  .brand img {
    width: 150px;
  }

  .primary-nav {
    gap: 16px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    padding: 6px 22px;
  }

  .brand {
    flex-basis: 136px;
    height: 78px;
  }

  .brand img {
    width: 132px;
    height: 76px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 28px;
    color: white;
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 16px 0;
    font-family: "Songti SC", "Noto Serif SC", serif;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-cta {
    margin-top: 28px;
    text-align: center;
    background: var(--orange-dark);
  }

  .language-switcher {
    align-self: flex-start;
    margin-top: 24px;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .language-switcher button {
    width: 42px;
    height: 40px;
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .section {
    padding: 88px 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading > p {
    text-align: left;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 430px);
  }

  .journey-card-large {
    grid-row: auto;
  }

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

  .approach-image {
    min-height: 520px;
  }

  .approach-content {
    max-width: none;
    padding: 82px 28px;
  }

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

  .network-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .capability-item {
    grid-template-columns: 44px 1fr;
  }

  .capability-item p {
    grid-column: 2;
  }

  .capability-visual {
    grid-column: 2;
    width: min(100%, 420px);
    margin-top: 8px;
  }

  .corporate-layout,
  .boundary-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

}

@media (max-width: 600px) {
  html[lang="zh-CN"] p:where(
    .hero-copy,
    .lead,
    .section-heading > p,
    .approach-content > p:not(.eyebrow),
    .process-list p,
    .network-heading > p,
    .capability-item > p,
    .stories-intro,
    .story-narrative,
    .sample-note,
    .inquiry-copy > p:not(.eyebrow),
    .subpage-hero p:not(.eyebrow)
  ) {
    text-wrap: balance;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-slide {
    object-position: 62% center;
  }

  .hero-slide-torii {
    object-position: 58% center;
  }

  .hero-slide-tower {
    object-position: 72% center;
  }

  .hero-slide-kamo {
    object-position: 53% center;
  }

  .hero-slide-dotonbori {
    object-position: 42% center;
  }

  .hero-dots {
    bottom: 28px;
  }

  .subpage-hero {
    min-height: 360px;
    padding: 62px 20px;
  }

  .subpage-hero::before {
    right: 0;
    width: 54%;
  }

  .subpage-hero::after {
    right: 54%;
  }

  .subpage-hero h1 {
    max-width: 330px;
    font-size: 44px;
  }

  .subpage-hero p:not(.eyebrow) {
    max-width: 310px;
  }

  .breadcrumbs {
    width: calc(100% - 40px);
  }

  .corporate-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .subpage-cta {
    padding: 70px 20px;
  }

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

  .scope-item {
    min-height: 230px;
    padding: 28px;
  }

  .scope-item h3 {
    margin-top: 38px;
  }

  .legal-source {
    text-align: left;
  }

  .boundary-points > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 19, 33, 0.78), rgba(5, 19, 33, 0.2));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-scroll {
    right: 20px;
    bottom: 22px;
  }

  .section {
    padding: 76px 20px;
  }

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

  .lead {
    font-size: 18px;
  }

  .journeys {
    padding-bottom: 88px;
  }

  .journey-grid {
    grid-template-rows: repeat(3, 360px);
  }

  .journey-overlay {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .case-dialog {
    width: calc(100% - 24px);
    max-height: 92svh;
  }

  .case-dialog-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case-dialog-image {
    height: 220px;
    min-height: 0;
  }

  .case-dialog-content {
    padding: 38px 22px 34px;
  }

  .case-dialog-content h2 {
    padding-right: 22px;
    font-size: 32px;
  }

  .case-flow li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .approach-image {
    min-height: 390px;
  }

  .approach-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .network-heading {
    margin-bottom: 46px;
  }

  .capability-item {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .capability-item h3 {
    font-size: 24px;
  }

  .story-carousel {
    margin-top: 40px;
    padding: 24px 34px 22px;
  }

  .story-slide {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 20px;
    min-height: 0;
    padding: 18px 14px 14px;
  }

  .story-slide > img {
    width: 112px;
    height: 112px;
  }

  .story-content {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .story-type {
    margin-bottom: 10px;
    font-size: 11px;
    text-align: center;
  }

  .story-narrative {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
  }

  .story-credit {
    font-size: 11px;
  }

  .story-navigation {
    padding-top: 12px;
  }

  .story-dots {
    gap: 9px;
  }

  .story-dots button {
    width: 8px;
    height: 8px;
  }

  .story-controls button {
    width: 32px;
    height: 56px;
    font-size: 40px;
  }

  .story-controls button:first-child {
    left: 1px;
  }

  .story-controls button:last-child {
    right: 1px;
  }

  .sample-note {
    text-align: left;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-contact {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .whatsapp-contact > img {
    width: 112px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-company {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
