@charset "UTF-8";
body[data-theme=navy] {
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-display: "Noto Serif JP", serif;
}

body[data-theme=navy] {
  --navy: #0d1b2a;
  --navy-mid: #162032;
  --navy-light: #1e2d40;
  --gold: #c9a84c;
  --gold-light: #e5c97a;
  --gold-dim: #a07a30;
  --cream: #f5f0e8;
  --cream-dark: #ede8de;
  --white: #ffffff;
  --text: #2a1f0e;
  --text-mid: #4a3f2e;
  --line: rgba(201, 168, 76, 0.25);
  --red-soft: rgba(180, 60, 60, 0.06);
  --red-border: rgba(180, 60, 60, 0.2);
  --green-soft: rgba(46, 125, 82, 0.06);
  --green-border: rgba(46, 125, 82, 0.25);
  --teal: #2a6b6b;
  --teal-light: #e8f4f4;
  --forest: #1a4030;
  --forest-mid: #204e3c;
  --forest-line: rgba(201, 168, 76, 0.22);
}

body[data-theme=ink] {
  --ink: #1a1714;
  --ink-soft: #3d3830;
  --ink-muted: #7a7268;
  --gold: #b08d57;
  --gold-light: #d4b07a;
  --gold-pale: #f5edd8;
  --cream: #faf7f2;
  --white: #ffffff;
  --rule: rgba(176, 141, 87, 0.25);
  --shadow: 0 2px 24px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 8px 48px rgba(26, 23, 20, 0.13);
}

html {
  font-size: 16px;
}

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

body[data-theme=navy] {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

body[data-theme=navy]::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

[data-theme=navy] .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

[data-theme=navy] .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

[data-theme=navy] .brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-theme=navy] .brand-logo {
  display: block;
  height: 56px;
  width: auto;
}

[data-theme=navy] .brand strong {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  [data-theme=navy] .brand strong {
    font-size: 18px;
  }
}

[data-theme=navy] .brand span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
}

[data-theme=navy] .nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

[data-theme=navy] .nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

[data-theme=navy] .nav a:hover {
  color: var(--gold-light);
}

[data-theme=navy] .nav a.active {
  color: var(--gold-light);
}

[data-theme=navy] .nav .tel {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0 8px;
}

[data-theme=navy] .nav .cta-small {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 4px;
}

[data-theme=navy] .nav .cta-small:hover {
  background: var(--gold-light);
}

[data-theme=navy] .breadcrumb {
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  margin-top: 100px;
}

[data-theme=navy] .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

[data-theme=navy] .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

[data-theme=navy] .breadcrumb a:hover {
  color: var(--gold-light);
}

[data-theme=navy] .breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

[data-theme=navy] .breadcrumb .current {
  color: var(--gold);
}

[data-theme=navy] .hero {
  background: var(--navy);
  min-height: 64vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme=navy] .hero::after {
  position: absolute;
  right: 3%;
  bottom: -6%;
  font-family: var(--font-serif);
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

[data-theme=navy] .hero-inner {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}

[data-theme=navy] .step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.1s forwards;
          animation: fadeUp 0.6s 0.1s forwards;
}

[data-theme=navy] .step-badge .step-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--font-serif);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 3px;
}

[data-theme=navy] .step-badge .step-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

[data-theme=navy] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.2s forwards;
          animation: fadeUp 0.6s 0.2s forwards;
}

[data-theme=navy] h1.h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.25s forwards;
          animation: fadeUp 0.6s 0.25s forwards;
}

[data-theme=navy] .h1-sub {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--gold-light);
  font-style: italic;
  display: block;
  margin-bottom: 18px;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.35s forwards;
          animation: fadeUp 0.6s 0.35s forwards;
}

[data-theme=navy] .lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 2.1;
  margin-bottom: 28px;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.45s forwards;
          animation: fadeUp 0.6s 0.45s forwards;
}

[data-theme=navy] .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.6s forwards;
          animation: fadeUp 0.6s 0.6s forwards;
}

[data-theme=navy] .hero-price-badge {
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.3s forwards;
          animation: fadeUp 0.6s 0.3s forwards;
  flex-shrink: 0;
}

[data-theme=navy] .price-badge-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .price-badge-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .price-badge-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 10px;
  display: block;
}

[data-theme=navy] .price-badge-amount {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

[data-theme=navy] .price-badge-amount sub {
  font-size: 14px;
  vertical-align: baseline;
}

[data-theme=navy] .price-badge-amount sup {
  font-size: 16px;
}

[data-theme=navy] .price-badge-tax {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

[data-theme=navy] .price-badge-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 14px;
}

[data-theme=navy] .price-badge-period {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

[data-theme=navy] .photo-card {
  opacity: 0;
  -webkit-animation: fadeUp 0.6s 0.4s forwards;
          animation: fadeUp 0.6s 0.4s forwards;
}

[data-theme=navy] .photo {
  background: var(--navy-light);
  border: 1px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

[data-theme=navy] .photo small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

[data-theme=navy] .photo-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
  font-family: var(--font-serif);
  font-style: italic;
}

[data-theme=navy] .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  padding-top: 12px;
  -webkit-animation: fadeUp 0.6s 0.8s forwards;
          animation: fadeUp 0.6s 0.8s forwards;
}

[data-theme=navy] .badge {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 2px;
}

[data-theme=navy] .btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.22s;
  cursor: pointer;
}

[data-theme=navy] .btn.primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

[data-theme=navy] .btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

[data-theme=navy] .btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

[data-theme=navy] .btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

[data-theme=navy] .btn.outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}

[data-theme=navy] .btn.outline:hover {
  background: var(--gold);
  color: var(--navy);
}

[data-theme=navy] .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

[data-theme=navy] .section {
  padding: 96px 0;
}

[data-theme=navy] .section.dark {
  background: var(--navy);
  color: var(--white);
}

[data-theme=navy] .section.forest {
  background: var(--forest);
  color: var(--white);
}

[data-theme=navy] .section.alt {
  background: var(--cream-dark);
}

[data-theme=navy] .section-title {
  text-align: center;
  margin-bottom: 56px;
}

[data-theme=navy] .section-title .label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-family: var(--font-serif);
  margin-bottom: 12px;
}

[data-theme=navy] .section.dark .section-title .label,
[data-theme=navy] .section.forest .section-title .label {
  color: var(--gold);
}

[data-theme=navy] .section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 14px;
}

[data-theme=navy] .section.dark .section-title h2,
[data-theme=navy] .section.forest .section-title h2 {
  color: var(--white);
}

[data-theme=navy] .section-title p {
  color: var(--text-mid);
  font-size: 14px;
  max-width: 520px;
  margin: 0 auto;
}

[data-theme=navy] .section.dark .section-title p,
[data-theme=navy] .section.forest .section-title p {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme=navy] .gold-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dim));
  margin: 0 auto 20px;
  border-radius: 2px;
}

[data-theme=navy] .divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

[data-theme=navy] .divider::before,
[data-theme=navy] .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

[data-theme=navy] .divider span {
  color: var(--gold-dim);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.12em;
}

[data-theme=navy] .trouble-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

[data-theme=navy] .trouble-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .trouble-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme=navy] .trouble-item .icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

[data-theme=navy] .trouble-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

[data-theme=navy] .insight-box {
  background: var(--navy);
  border-radius: 6px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .insight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
}

[data-theme=navy] .insight-box h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

[data-theme=navy] .insight-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 2;
}

[data-theme=navy] .stair-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
}

[data-theme=navy] .step {
  display: flex;
  gap: 20px;
  position: relative;
}

[data-theme=navy] .step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  flex-shrink: 0;
}

[data-theme=navy] .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--navy);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

[data-theme=navy] .step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

[data-theme=navy] .step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 4px 0;
}

[data-theme=navy] .step:last-child .step-line {
  display: none;
}

[data-theme=navy] .step-body {
  padding-bottom: 36px;
  flex: 1;
}

[data-theme=navy] .step:last-child .step-body {
  padding-bottom: 0;
}

[data-theme=navy] .step-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}

[data-theme=navy] .step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

[data-theme=navy] .step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

[data-theme=navy] .stair-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

[data-theme=navy] .stair-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .stair-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}

[data-theme=navy] .komon-grid,
[data-theme=navy] .reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

[data-theme=navy] .card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

[data-theme=navy] .card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}

[data-theme=navy] .check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

[data-theme=navy] .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

[data-theme=navy] .check-list li::before {
  content: "✦";
  color: var(--gold-dim);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

[data-theme=navy] .check-list.light li {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme=navy] .check-list.light li::before {
  color: var(--gold);
}

[data-theme=navy] .price-display {
  background: var(--cream);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 16px 0;
}

[data-theme=navy] .price-big {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

[data-theme=navy] .price-note {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 6px;
  line-height: 1.7;
}

[data-theme=navy] .diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

[data-theme=navy] .diag-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

[data-theme=navy] .diag-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .diag-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.9;
}

[data-theme=navy] .value-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

[data-theme=navy] .value-box .big-quote {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: -18px;
}

[data-theme=navy] .value-box p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 2;
  color: var(--white);
  letter-spacing: 0.06em;
}

[data-theme=navy] .mission-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

[data-theme=navy] .mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .mission-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

[data-theme=navy] .mission-box .big-quote {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: -20px;
}

[data-theme=navy] .mission-box p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.1;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

[data-theme=navy] .timeline::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

[data-theme=navy] .tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

[data-theme=navy] .tl-item:last-child {
  margin-bottom: 0;
}

[data-theme=navy] .tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  flex-shrink: 0;
}

[data-theme=navy] .tl-year {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 8px;
  opacity: 0.8;
}

[data-theme=navy] .tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

[data-theme=navy] .tl-body {
  padding-top: 2px;
}

[data-theme=navy] .tl-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}

[data-theme=navy] .tl-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

[data-theme=navy] .tl-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

[data-theme=navy] .tl-quote {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold-dim);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-dim);
  line-height: 1.85;
  font-style: italic;
}

[data-theme=navy] .value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

[data-theme=navy] .value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}

[data-theme=navy] .value-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme=navy] .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.25s;
}

[data-theme=navy] .value-card:hover::before {
  opacity: 1;
}

[data-theme=navy] .value-card .num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

[data-theme=navy] .value-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .value-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

[data-theme=navy] .gunshi-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream-dark);
  border-radius: 8px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .gunshi-box::before {
  content: "軍師";
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 900;
  color: rgba(160, 122, 48, 0.08);
  letter-spacing: -0.04em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  line-height: 1;
}

[data-theme=navy] .gunshi-box .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
}

[data-theme=navy] .gunshi-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

[data-theme=navy] .gunshi-box p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.1;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

[data-theme=navy] .profile-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme=navy] .profile-table th {
  text-align: left;
  font-weight: 500;
  color: var(--gold-dim);
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  padding: 14px 0;
  width: 140px;
  vertical-align: top;
}

[data-theme=navy] .profile-table td {
  padding: 14px 0 14px 20px;
  color: var(--text-mid);
  line-height: 1.8;
}

[data-theme=navy] .cta-banner {
  background: var(--navy);
  border-radius: 10px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

[data-theme=navy] .cta-banner h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 30px);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .cta-banner .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

[data-theme=navy] .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

[data-theme=navy] .process-item {
  padding: 32px 28px;
  background: var(--white);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: background 0.25s;
}

[data-theme=navy] .process-item:last-child {
  border-right: none;
}

[data-theme=navy] .process-item:hover {
  background: #faf7f2;
}

[data-theme=navy] .process-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}

[data-theme=navy] .process-item:hover::before {
  opacity: 1;
}

[data-theme=navy] .process-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: rgba(160, 122, 48, 0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

[data-theme=navy] .process-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .process-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
}

[data-theme=navy] .diff-box {
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--gold-dim);
  padding: 20px 24px;
  margin-top: 16px;
}

[data-theme=navy] .diff-box p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}

[data-theme=navy] .price-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

[data-theme=navy] .price-card {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .price-card h3 {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

[data-theme=navy] .price-card .price-big {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

[data-theme=navy] .price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

[data-theme=navy] .price-card .price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}

[data-theme=navy] .contract-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
}

[data-theme=navy] .contract-card h3 {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

[data-theme=navy] .ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

[data-theme=navy] .ideal-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

[data-theme=navy] .ideal-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}

[data-theme=navy] .ideal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.06);
}

[data-theme=navy] .ideal-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

[data-theme=navy] .target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

[data-theme=navy] .target-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .target-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

[data-theme=navy] .target-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

[data-theme=navy] .ba-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
}

[data-theme=navy] .ba-col {
  border-radius: 8px;
  padding: 28px 30px;
}

[data-theme=navy] .ba-col.before {
  background: var(--red-soft);
  border: 2px solid var(--red-border);
}

[data-theme=navy] .ba-col.after {
  background: var(--green-soft);
  border: 2px solid var(--green-border);
}

[data-theme=navy] .ba-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

[data-theme=navy] .ba-col.before .ba-label {
  background: rgba(180, 60, 60, 0.12);
  color: #923030;
}

[data-theme=navy] .ba-col.after .ba-label {
  background: rgba(46, 125, 82, 0.12);
  color: #1a6040;
}

[data-theme=navy] .ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-theme=navy] .ba-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.75;
}

[data-theme=navy] .ba-col.before .ba-list li::before {
  content: "✕";
  color: #c0392b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

[data-theme=navy] .ba-col.after .ba-list li::before {
  content: "○";
  color: #2e7d52;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

[data-theme=navy] .ba-col.before .ba-list li {
  color: #6a3030;
}

[data-theme=navy] .ba-col.after .ba-list li {
  color: #1e4a35;
}

[data-theme=navy] .ba-arrow {
  text-align: center;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}

[data-theme=navy] .contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

[data-theme=navy] .contents-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .contents-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

[data-theme=navy] .contents-head {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

[data-theme=navy] .contents-num {
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme=navy] .contents-head h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .contents-body {
  padding: 20px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}

[data-theme=navy] .contents-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--line);
  color: var(--gold-dim);
  font-size: 10px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

[data-theme=navy] .contents-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-theme=navy] .contents-step-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

[data-theme=navy] .contents-step-wrap .contents-card {
  display: flex;
}

[data-theme=navy] .contents-left {
  background: var(--navy);
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  text-align: center;
  gap: 8px;
}

[data-theme=navy] .contents-left .contents-num {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

[data-theme=navy] .contents-step-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

[data-theme=navy] .contents-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  color: var(--gold-dim);
  font-size: 18px;
}

[data-theme=navy] .flow {
  max-width: 720px;
  margin: 0 auto;
}

[data-theme=navy] .flow-item {
  display: flex;
  gap: 24px;
}

[data-theme=navy] .flow-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  flex-shrink: 0;
}

[data-theme=navy] .flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

[data-theme=navy] .flow-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim), rgba(160, 122, 48, 0.15));
  margin: 4px 0;
}

[data-theme=navy] .flow-item:last-child .flow-line {
  display: none;
}

[data-theme=navy] .flow-body {
  padding-bottom: 40px;
  padding-top: 8px;
  flex: 1;
}

[data-theme=navy] .flow-item:last-child .flow-body {
  padding-bottom: 0;
}

[data-theme=navy] .flow-period {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

[data-theme=navy] .flow-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .flow-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

[data-theme=navy] .flow-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gold-dim);
  margin-top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
}

[data-theme=navy] .flow-highlight {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  border-left: 2px solid var(--gold-dim);
  padding-left: 10px;
  line-height: 1.6;
}

[data-theme=navy] .price-create-box {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 48px;
  position: relative;
}

[data-theme=navy] .price-create-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .price-create-left {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--line);
  padding: 36px 32px;
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme=navy] .price-create-left .p-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

[data-theme=navy] .price-create-left h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

[data-theme=navy] .price-main {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

[data-theme=navy] .price-tax {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

[data-theme=navy] .price-create-right {
  padding: 36px;
  flex: 1;
}

[data-theme=navy] .price-create-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  margin-bottom: 20px;
}

[data-theme=navy] .price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

[data-theme=navy] .price-tag {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}

[data-theme=navy] .sub-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .sub-desc {
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

[data-theme=navy] .sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-theme=navy] .sub-card {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .sub-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

[data-theme=navy] .sub-card.recommend {
  border-color: var(--gold);
}

[data-theme=navy] .recommend-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

[data-theme=navy] .sub-head {
  padding: 24px 20px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

[data-theme=navy] .sub-plan-name {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #999;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

[data-theme=navy] .sub-head h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .sub-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

[data-theme=navy] .sub-amount sub {
  font-size: 14px;
}

[data-theme=navy] .sub-tax {
  font-size: 10px;
  color: #aaa;
  margin-top: 3px;
}

[data-theme=navy] .sub-body {
  padding: 20px;
}

[data-theme=navy] .sub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

[data-theme=navy] .sub-features li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.6;
}

[data-theme=navy] .sub-features .check {
  color: var(--gold-dim);
  font-weight: 700;
  flex-shrink: 0;
}

[data-theme=navy] .sub-features .dash {
  color: #ccc;
  flex-shrink: 0;
}

[data-theme=navy] .sub-note {
  font-size: 11px;
  color: #999;
  font-style: italic;
  margin-top: 4px;
  padding-left: 18px;
}

[data-theme=navy] .price-caution {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 24px;
}

[data-theme=navy] .dx-box {
  background: var(--white);
  border: 2px solid rgba(42, 107, 107, 0.3);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

[data-theme=navy] .dx-icon {
  width: 60px;
  height: 60px;
  background: #2a6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

[data-theme=navy] .dx-tag {
  display: inline-block;
  background: #2a6b6b;
  color: var(--white);
  font-size: 10px;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

[data-theme=navy] .dx-content h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: #1e5050;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

[data-theme=navy] .dx-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
}

[data-theme=navy] .cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

[data-theme=navy] .cost-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

[data-theme=navy] .cost-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

[data-theme=navy] .cost-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

[data-theme=navy] .cost-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1.1;
}

[data-theme=navy] .cost-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

[data-theme=navy] .cost-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 24px;
  margin: 8px 0 16px;
}

[data-theme=navy] .cost-conclusion {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 8px;
  padding: 22px 28px;
  text-align: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.9;
}

[data-theme=navy] .copy-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

[data-theme=navy] .copy-compare-card {
  border-radius: 8px;
  padding: 24px;
}

[data-theme=navy] .copy-compare-bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme=navy] .copy-compare-good {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

[data-theme=navy] .copy-compare-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

[data-theme=navy] .copy-compare-bad .copy-compare-label {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme=navy] .copy-compare-good .copy-compare-label {
  color: var(--gold);
}

[data-theme=navy] .copy-compare-text {
  font-size: 13px;
  line-height: 1.9;
}

[data-theme=navy] .copy-compare-bad .copy-compare-text {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme=navy] .copy-compare-good .copy-compare-text {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme=navy] .copy-logic {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

[data-theme=navy] .copy-logic-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme=navy] .copy-logic-step:last-child {
  border-bottom: none;
}

[data-theme=navy] .copy-logic-num {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

[data-theme=navy] .copy-logic-title {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .copy-logic-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.9;
}

[data-theme=navy] .copy-result {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}

[data-theme=navy] .copy-result-icon {
  font-size: 38px;
  flex-shrink: 0;
}

[data-theme=navy] .copy-result-text h3 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .copy-result-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.95;
}

[data-theme=navy] .system-box {
  background: var(--white);
  border: 2px solid rgba(42, 107, 107, 0.3);
  border-radius: 10px;
  padding: 36px;
}

[data-theme=navy] .system-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

[data-theme=navy] .system-icon {
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

[data-theme=navy] .system-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

[data-theme=navy] .system-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #1e5050;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

[data-theme=navy] .system-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
}

[data-theme=navy] .system-price-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--teal-light);
}

[data-theme=navy] .system-price-item {
  background: var(--teal-light);
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
}

[data-theme=navy] .system-price-label {
  font-size: 10px;
  color: var(--teal);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

[data-theme=navy] .system-price-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

[data-theme=navy] .system-price-amount span {
  font-size: 12px;
  font-weight: 400;
}

[data-theme=navy] .system-price-note {
  font-size: 10px;
  color: #888;
  margin-top: 4px;
  line-height: 1.6;
}

[data-theme=navy] .system-features {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 2.1;
  background: var(--teal-light);
  border-radius: 6px;
  padding: 16px 20px;
}

[data-theme=navy] .system-features span {
  color: var(--teal);
  font-weight: 700;
  margin-right: 4px;
}

[data-theme=navy] .price-box {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
  position: relative;
}

[data-theme=navy] .price-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .price-box-left {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--line);
  padding: 36px 32px;
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme=navy] .price-box-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

[data-theme=navy] .price-box-left h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 18px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

[data-theme=navy] .price-main-amount {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

[data-theme=navy] .price-amount {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

[data-theme=navy] .price-amount span {
  font-size: 16px;
  font-weight: 400;
}

[data-theme=navy] .price-period {
  font-size: 11px;
  color: var(--gold-light);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

[data-theme=navy] .price-box-right {
  padding: 36px;
  flex: 1;
}

[data-theme=navy] .price-box-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  margin-bottom: 20px;
}

[data-theme=navy] .price-box.teal {
  border-color: rgba(42, 107, 107, 0.3);
}

[data-theme=navy] .price-box.teal::before {
  background: linear-gradient(to right, transparent, var(--teal), transparent);
}

[data-theme=navy] .price-box.teal .price-box-left {
  background: var(--teal);
  border-right-color: rgba(255, 255, 255, 0.15);
}

[data-theme=navy] .price-box.teal .price-box-label {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme=navy] .price-box.teal .price-box-left h3 {
  color: var(--white);
}

[data-theme=navy] .price-box.teal .price-main-amount {
  color: var(--white);
}

[data-theme=navy] .price-box.teal .price-tax {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme=navy] .price-box.teal .price-box-right {
  background: var(--white);
}

[data-theme=navy] .price-box.teal .price-box-right p {
  color: var(--text-mid);
}

[data-theme=navy] .job-what {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 32px 36px;
  margin-bottom: 32px;
}

[data-theme=navy] .job-what h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 19px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

[data-theme=navy] .job-what p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 2;
}

[data-theme=navy] .job-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-theme=navy] .job-point {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--forest-line);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

[data-theme=navy] .job-point:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme=navy] .job-point-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

[data-theme=navy] .job-point h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

[data-theme=navy] .job-point p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.85;
}

[data-theme=navy] .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

[data-theme=navy] .faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

[data-theme=navy] .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

[data-theme=navy] .faq-q {
  background: var(--navy);
  padding: 16px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

[data-theme=navy] .faq-q-mark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
}

[data-theme=navy] .faq-q p {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 14px;
  line-height: 1.65;
  padding-top: 2px;
}

[data-theme=navy] .faq-a {
  padding: 16px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

[data-theme=navy] .faq-a-mark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #2a6b6b;
  flex-shrink: 0;
  line-height: 1.2;
}

[data-theme=navy] .faq-a p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
}

[data-theme=navy] .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-theme=navy] .related-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 24px 26px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: block;
}

[data-theme=navy] .related-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

[data-theme=navy] .related-card .rc-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

[data-theme=navy] .related-card h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

[data-theme=navy] .related-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
}

[data-theme=navy] .cta-main {
  background: var(--navy);
  border-radius: 10px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme=navy] .cta-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

[data-theme=navy] .cta-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

[data-theme=navy] .cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .cta-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .cta-main .cta-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 2;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .cta-note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  margin-top: 20px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

[data-theme=navy] .footer,
body.page-diagnosis .footer,
body.page-services .footer,
body.page-service04 .footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

[data-theme=navy] .footer-brand strong,
body.page-diagnosis .footer-brand strong,
body.page-services .footer-brand strong,
body.page-service04 .footer-brand strong {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 0.06em;
}

[data-theme=navy] .footer-brand small,
body.page-diagnosis .footer-brand small,
body.page-services .footer-brand small,
body.page-service04 .footer-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col--brand {
  gap: 20px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

[data-theme=navy] .footer-nav-col a,
body.page-diagnosis .footer-nav-col a,
body.page-services .footer-nav-col a,
body.page-service04 .footer-nav-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 0;
  transition: color 0.2s;
  display: block;
}

[data-theme=navy] .footer-nav-col a:hover,
body.page-diagnosis .footer-nav-col a:hover,
body.page-services .footer-nav-col a:hover,
body.page-service04 .footer-nav-col a:hover {
  color: var(--gold-light);
}

.footer-col--cert {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-srp-img {
  width: 88px;
  height: 88px;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

[data-theme=navy] .footer-copy,
body.page-diagnosis .footer-copy,
body.page-services .footer-copy,
body.page-service04 .footer-copy {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding-top: 20px;
  text-align: right;
}

@media (max-width: 900px) {
  [data-theme=navy] .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  [data-theme=navy] .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
  [data-theme=navy] .photo-card {
    display: none;
  }
  [data-theme=navy] .hero-price-badge {
    display: none;
  }
  [data-theme=navy] .trouble-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .komon-grid,
[data-theme=navy] .reach-grid,
[data-theme=navy] .diag-grid,
[data-theme=navy] .value-grid,
[data-theme=navy] .price-layout,
[data-theme=navy] .ideal-grid,
[data-theme=navy] .target-grid,
[data-theme=navy] .contents-grid,
[data-theme=navy] .copy-compare,
[data-theme=navy] .ba-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .ba-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  [data-theme=navy] .nav {
    gap: 2px;
  }
  [data-theme=navy] .nav a:not(.cta-small):not(.tel) {
    display: none;
  }
  [data-theme=navy] .stair-steps {
    max-width: 100%;
  }
  [data-theme=navy] .timeline::before {
    left: 20px;
  }
  [data-theme=navy] .tl-left {
    width: 20px;
  }
  [data-theme=navy] .tl-year {
    display: none;
  }
  [data-theme=navy] .gunshi-box {
    padding: 36px 28px;
  }
  [data-theme=navy] .mission-box {
    padding: 36px 28px;
  }
  [data-theme=navy] .process-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .sub-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .related-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .cost-grid {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .job-points {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .price-create-box,
[data-theme=navy] .price-box {
    flex-direction: column;
  }
  [data-theme=navy] .price-create-left,
[data-theme=navy] .price-box-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  [data-theme=navy] .price-box.teal .price-box-left {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
  [data-theme=navy] .dx-box {
    flex-direction: column;
  }
  [data-theme=navy] .copy-result {
    flex-direction: column;
  }
  [data-theme=navy] .system-price-row {
    grid-template-columns: 1fr;
  }
  [data-theme=navy] .contents-left {
    width: 80px;
  }
  [data-theme=navy] .cta-main {
    padding: 40px 24px;
  }
  [data-theme=navy] .cta-banner {
    padding: 36px 24px;
  }
}
body.page-ink {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  font-weight: 300;
}

.page-ink a {
  color: inherit;
  text-decoration: none;
}

.page-ink .container {
  max-width: 1080px;
  margin: 0 auto;
}

.page-ink .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.page-ink .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.page-ink .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-ink .brand-logo {
  display: block;
  height: 56px;
  width: auto;
}

.page-ink .brand strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}
@media (max-width: 768px) {
  .page-ink .brand strong {
    font-size: 18px;
  }
}

.page-ink .brand span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.page-ink .nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-ink .nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.page-ink .nav a:hover {
  color: var(--gold-light);
}

.page-ink .nav .cta-small {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 4px;
}

.page-ink .nav .cta-small:hover {
  background: var(--gold-light);
}

.page-ink .hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 100px 32px 90px;
}

.page-ink .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(176, 141, 87, 0.12) 0%, transparent 70%), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(176, 141, 87, 0.04) 80px);
}

.page-ink .hero::after {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.06);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.page-ink .hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-ink .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.page-ink .eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-ink .hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.page-ink .hero .lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.1;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.page-ink .badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-ink .badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 20px;
  color: var(--gold-light);
}

.page-ink .photo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
  min-width: 200px;
}

.page-ink .photo-card .photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.3), rgba(176, 141, 87, 0.1));
  border: 1px solid rgba(176, 141, 87, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12px;
  line-height: 1.6;
}

.page-ink .photo-card .note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.page-ink .btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.page-ink .btn.primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.page-ink .btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.page-ink .btn.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-ink .btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.page-ink .btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(176, 141, 87, 0.5);
}

.page-ink .btn.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-ink .btn.gold-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(176, 141, 87, 0.5);
}

.page-ink .btn.gold-outline:hover {
  border-color: var(--gold-light);
  color: #fff;
}

.page-ink .btn.dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

.page-ink .btn.dark:hover {
  background: var(--ink-soft);
}

.page-ink .btn.outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-soft);
}

.page-ink .btn.outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.page-ink .section {
  padding: 80px 32px;
}

.page-ink .section.alt {
  background: var(--white);
}

.page-ink .title {
  text-align: center;
  margin-bottom: 56px;
}

.page-ink .title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-block;
}

.page-ink .title h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
}

.page-ink .title p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.page-ink .grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.page-ink .grid4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.page-ink .card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.page-ink .section.alt .card {
  background: var(--white);
}

.page-ink .card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.page-ink .card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.page-ink .card p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

.page-ink .card-num {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 8px;
}

.page-ink .checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-ink .checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-ink .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 2px;
}

.page-ink .check.cross {
  background: rgba(180, 60, 60, 0.08);
  border-color: rgba(180, 60, 60, 0.4);
  color: #b44040;
}

.page-ink .checklist li div {
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.page-ink .flow-section {
  padding: 80px 32px;
  background: var(--ink);
}

.page-ink .flow-section .title h2 {
  color: var(--white);
}

.page-ink .flow-section .title h2::after {
  background: var(--gold);
}

.page-ink .flow-section .title p {
  color: rgba(255, 255, 255, 0.5);
}

.page-ink .flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.page-ink .flow-step {
  padding: 36px 28px;
  border-right: 1px solid rgba(176, 141, 87, 0.2);
  position: relative;
}

.page-ink .flow-step:last-child {
  border-right: none;
}

.page-ink .flow-num {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.35);
  line-height: 1;
  margin-bottom: 14px;
}

.page-ink .flow-step h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.page-ink .flow-step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.page-ink .timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.page-ink .timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(176, 141, 87, 0.2));
}

.page-ink .timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}

.page-ink .timeline-item:last-child {
  border-bottom: none;
}

.page-ink .tl-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.page-ink .tl-body h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.page-ink .tl-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.page-ink .tl-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 20px;
  color: var(--gold-light);
}

.page-ink .apply-section {
  padding: 80px 32px;
  background: var(--gold-pale);
}

.page-ink .apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.page-ink .apply-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}

.page-ink .apply-step-num {
  position: absolute;
  top: 4px;
  left: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  background: var(--white);
  padding: 0 8px;
  line-height: 1;
}

.page-ink .apply-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.page-ink .apply-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.95;
  margin-bottom: 20px;
}

.page-ink .apply-card .note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.7;
}

.page-ink .privacy-box {
  background: rgba(176, 141, 87, 0.06);
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 2;
}

.page-ink .privacy-box strong {
  color: var(--ink-soft);
}

.page-ink .cta-section {
  padding: 80px 32px;
  background: var(--gold-pale);
  text-align: center;
}

.page-ink .cta-section h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.page-ink .cta-section p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

.page-ink .cta-section.dark-cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-ink .cta-section.dark-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(176, 141, 87, 0.1) 0%, transparent 70%);
}

.page-ink .cta-section.dark-cta h2 {
  color: var(--white);
  position: relative;
}

.page-ink .cta-section.dark-cta p {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.page-ink .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.page-ink .module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.page-ink .module-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.page-ink .module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-ink .module-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.page-ink .module-card:hover::before {
  transform: scaleX(1);
}

.page-ink .module-step {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.3);
  line-height: 1;
}

.page-ink .module-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.5;
}

.page-ink .module-card p {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.85;
  flex: 1;
}

.page-ink .module-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid rgba(176, 141, 87, 0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.page-ink .module-link::after {
  content: "→";
}

.page-ink .module-link:hover {
  gap: 10px;
  border-color: var(--gold);
}

.page-ink .concept-strip {
  background: var(--ink);
  padding: 64px 32px;
}

.page-ink .concept-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.page-ink .concept-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(176, 141, 87, 0.18);
  text-align: center;
}

.page-ink .concept-item:last-child {
  border-right: none;
}

.page-ink .concept-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(176, 141, 87, 0.4);
  line-height: 1;
  margin-bottom: 12px;
}

.page-ink .concept-item h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.page-ink .concept-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.page-ink .footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

.page-ink .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.page-ink .footer a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.page-ink .footer a:hover {
  color: var(--gold-light);
}

.page-ink .footer-brand strong {
  color: var(--gold-light);
  font-family: "Noto Serif JP", serif;
}

.page-ink .footer-brand small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.page-ink .footer-links,
.page-ink .footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ink .footer-copy {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.page-ink .hero-inner > * {
  -webkit-animation: fadeUp 0.7s ease both;
          animation: fadeUp 0.7s ease both;
}

.page-ink .hero-inner > *:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

@media (max-width: 680px) {
  .page-ink .header-inner {
    padding: 0 20px;
  }
  .page-ink .nav a:not(.cta-small) {
    display: none;
  }
  .page-ink .nav {
    gap: 16px;
  }
  .page-ink .hero {
    padding: 72px 20px 64px;
  }
  .page-ink .hero-inner {
    grid-template-columns: 1fr;
  }
  .page-ink .photo-card {
    display: none;
  }
  .page-ink .section,
.page-ink .apply-section {
    padding: 60px 20px;
  }
  .page-ink .module-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-ink .concept-inner {
    grid-template-columns: 1fr;
  }
  .page-ink .concept-item {
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 87, 0.18);
  }
  .page-ink .concept-item:last-child {
    border-bottom: none;
  }
  .page-ink .flow-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-ink .flow-step {
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  }
  .page-ink .flow-step:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 480px) {
  .page-ink .module-grid {
    grid-template-columns: 1fr;
  }
}
body.page-home .hero {
  min-height: 100vh;
}

body.page-about .hero {
  min-height: 70vh;
}

body.page-komon .hero {
  min-height: 72vh;
}

body.page-home .hero-inner {
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 100px;
}

body.page-about .hero-inner,
body.page-komon .hero-inner {
  grid-template-columns: 1fr 280px;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 100px;
}

body.page-home h1.h1 {
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.45;
  margin-bottom: 28px;
}

body.page-about h1.h1 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.4;
  margin-bottom: 20px;
}

body.page-komon h1.h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.3;
  margin-bottom: 24px;
}

body.page-home .lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 36px;
}

body.page-about .lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-style: italic;
}

body.page-komon .lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 36px;
}

body.page-home .eyebrow {
  margin-bottom: 28px;
}

body.page-home .hero::after {
  content: "軍";
  right: 4%;
  bottom: -4%;
  font-size: clamp(160px, 22vw, 320px);
}

body.page-about .hero::after {
  content: "人";
  right: 4%;
  bottom: -6%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-komon .hero::after {
  content: "伴";
  right: 3%;
  bottom: -6%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-service01 .hero::after {
  content: "規";
  right: 3%;
  bottom: -6%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-service02 .hero::after {
  content: "採";
  right: 3%;
  bottom: -6%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-service03 .hero::after {
  content: "評";
  right: 3%;
  bottom: -6%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-diagnosis .hero::after {
  content: "DIAGNOSE";
  font-size: 13vw;
}

body.page-services .hero::after {
  content: "MODULE";
  font-size: 15vw;
}

body.page-service04 .hero::after {
  content: "勤";
  right: 3%;
  top: 80%;
  font-size: clamp(160px, 22vw, 300px);
}

body.page-home .section-title {
  margin-bottom: 60px;
}

body.page-komon .cta-banner {
  padding: 56px 48px;
}

@media (max-width: 768px) {
  body.page-home .hero-inner,
body.page-about .hero-inner,
body.page-komon .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}
body.page-diagnosis .cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

body.page-diagnosis .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(176, 141, 87, 0.1) 0%, transparent 70%);
}

body.page-diagnosis .cta-section h2 {
  color: var(--white);
  position: relative;
}

body.page-diagnosis .cta-section p {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

body.page-diagnosis.page-ink,
body.page-services.page-ink,
body.page-service04.page-ink {
  --navy: #0d1b2a;
  --ink: #0d1b2a;
  --ink-soft: #162032;
  --ink-muted: #4a3f2e;
  --cream: #f5f0e8;
  --cream-dark: #ede8de;
  --white: #ffffff;
  --text: #2a1f0e;
  --text-mid: #4a3f2e;
  --line: rgba(201, 168, 76, 0.25);
  --gold: #c9a84c;
  --gold-light: #e5c97a;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --rule: rgba(201, 168, 76, 0.25);
  --shadow: 0 2px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 8px 48px rgba(13, 27, 42, 0.13);
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  font-family: var(--font-sans);
  color: var(--text);
  overflow-x: hidden;
}

body.page-diagnosis.page-ink::before,
body.page-services.page-ink::before,
body.page-service04.page-ink::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

body.page-diagnosis.page-ink .section.alt,
body.page-services.page-ink .section.alt,
body.page-service04.page-ink .section.alt {
  background: var(--cream-dark);
}

body.page-service04.page-ink .section:nth-of-type(even) {
  background: var(--cream-dark);
}

body.page-service04.page-ink .section:nth-of-type(even) .card {
  background: var(--white);
  border-color: rgba(201, 168, 76, 0.2);
}

body.page-diagnosis.page-ink .hero::before,
body.page-services.page-ink .hero::before,
body.page-service04.page-ink .hero::before {
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 70%), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201, 168, 76, 0.04) 80px);
}

body.page-diagnosis.page-ink .hero::after,
body.page-services.page-ink .hero::after,
body.page-service04.page-ink .hero::after {
  color: rgba(201, 168, 76, 0.06);
}

body.page-services.page-ink .concept-item {
  border-right-color: rgba(201, 168, 76, 0.22);
}

body.page-services.page-ink .concept-num {
  color: rgba(201, 168, 76, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

[data-theme=navy] .nav-toggle span {
  background: rgba(255, 255, 255, 0.75);
}

.page-ink .nav-toggle span {
  background: rgba(255, 255, 255, 0.75);
}

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

.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

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

.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-arrow {
  font-size: 9px;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-has-dropdown:hover .nav-arrow,
.nav-has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

[data-theme=navy] .nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  min-width: 210px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
}

[data-theme=navy] .nav-has-dropdown:hover .nav-dropdown,
[data-theme=navy] .nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

[data-theme=navy] .nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 0;
}

[data-theme=navy] .nav-dropdown li a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.page-ink .nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  min-width: 210px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
}

.page-ink .nav-has-dropdown:hover .nav-dropdown,
.page-ink .nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.page-ink .nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 0;
}

.page-ink .nav-dropdown li a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme=navy] .footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

[data-theme=navy] .footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

[data-theme=navy] .footer-nav-heading {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

[data-theme=navy] .footer-nav-heading a {
  color: rgba(255, 255, 255, 0.32) !important;
  text-decoration: none;
}

.page-ink .footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.page-ink .footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-ink .footer-nav-heading {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.page-ink .footer-nav-heading a {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  [data-theme=navy] .header-inner,
.page-ink .header-inner {
    height: 64px;
  }
  [data-theme=navy] .breadcrumb {
    margin-top: 64px;
  }
  [data-theme=navy] .nav a,
.page-ink .nav a {
    font-size: 14px;
  }
  [data-theme=navy] .brand-logo,
.page-ink .brand-logo {
    height: 40px;
  }
  .nav-toggle {
    display: flex;
  }
  [data-theme=navy] .nav {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.99);
    border: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 24px;
    gap: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
  }
  [data-theme=navy] .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  [data-theme=navy] .nav a:not(.cta-small):not(.tel) {
    display: block !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  [data-theme=navy] .nav .cta-small {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }
  [data-theme=navy] .nav-has-dropdown {
    width: 100%;
  }
  [data-theme=navy] .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    border: none;
    background: transparent;
    padding: 0 0 4px 16px;
    min-width: unset;
    display: block;
    box-shadow: none;
  }
  [data-theme=navy] .nav-dropdown li a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    white-space: normal;
  }
  .page-ink .nav {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.99);
    border: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 24px;
    gap: 0;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
  }
  .page-ink .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .page-ink .nav a:not(.cta-small) {
    display: block !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  .page-ink .nav .cta-small {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }
  .page-ink .nav-has-dropdown {
    width: 100%;
  }
  .page-ink .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    border: none;
    background: transparent;
    padding: 0 0 4px 16px;
    min-width: unset;
    display: block;
  }
  .page-ink .nav-dropdown li a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    white-space: normal;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-col--brand {
    grid-column: 1/-1;
  }
  .footer-col--cert {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
  }
  .footer-copy {
    text-align: left !important;
  }
}
@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-col--cert {
    grid-column: 1;
  }
}
.footer-brand-link {
  text-decoration: none;
}

.footer-cert-row {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-cert-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-cert-srp {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.footer-cert-org {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

.footer-address-row {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.footer-address-body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2.2;
}

.footer-office-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: "Noto Serif JP", serif;
}

.footer-tel-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.photo--bare {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.text-gold {
  color: var(--gold-light);
}

[data-theme=navy] .stair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

[data-theme=navy] .stair-card--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
}

[data-theme=navy] .step-title-link {
  color: inherit;
  text-decoration: none;
}

[data-theme=navy] .price-note--mt {
  margin-top: 6px;
}

.mb-4 {
  margin-bottom: 4px;
}

[data-theme=navy] .cta-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

[data-theme=navy] .section--navy-cta {
  background: var(--navy);
  padding: 40px 0 136px;
}

.section--pt0-pb96 {
  padding-top: 0;
  padding-bottom: 96px;
}

[data-theme=navy] .komon-service-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 2;
  display: flex;
  flex-direction: column;
}

[data-theme=navy] .komon-service-note a,
[data-theme=navy] .komon-service-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  opacity: 0.8;
}

.profile-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  border-radius: 6px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-img--portrait {
  aspect-ratio: 3/4;
}

.gallery-img--landscape {
  aspect-ratio: 4/3;
}

.gallery-caption {
  font-size: 0.82rem;
  color: var(--ink-muted, #7a7268);
  margin-top: 12px;
  line-height: 1.8;
  text-align: center;
}

.gallery-col-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

@media (max-width: 768px) {
  [data-theme=navy] .stair-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.services-cta-mt {
  margin-top: 24px;
}

.tel-link-underline {
  color: inherit;
  text-decoration: underline;
}

.komon-cta-box {
  padding: 28px 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

[data-theme=navy] .komon-cta-box {
  margin-top: 40px;
  border: 1px solid var(--gold-rule, rgba(201, 168, 76, 0.25));
  background: var(--cream, #f5f0e8);
}

.page-ink .komon-cta-box {
  margin-top: 24px;
  border: 1px solid var(--rule);
  background: rgba(176, 141, 87, 0.05);
}

.komon-cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold, #c9a84c);
  margin-bottom: 8px;
}

.komon-cta-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-ink .komon-cta-title {
  color: var(--ink);
}

.komon-cta-desc {
  font-size: 0.85rem;
  color: var(--ink-muted, #666);
  line-height: 1.8;
  max-width: 540px;
}

.komon-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold, #c9a84c);
  color: var(--gold, #c9a84c);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.komon-cta-btn:hover {
  background: var(--gold, #c9a84c);
  color: #fff;
}

.price-badge-period-note {
  font-size: 10px;
  opacity: 0.7;
}

.text-emphasis {
  color: var(--text);
}

.system-feature-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
}

.price-unit--md {
  font-size: 16px;
}

.price-unit--xs {
  font-size: 14px;
}

.text-white-em {
  color: rgba(255, 255, 255, 0.9);
}

.price-note-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.price-note-sub strong {
  color: rgba(255, 255, 255, 0.8);
}

.price-list-header {
  margin-top: 16px;
  margin-bottom: 8px;
}

.price-box--gold {
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.price-box-left--gold {
  background: rgba(201, 168, 76, 0.08) !important;
  border-right: 1px solid rgba(201, 168, 76, 0.25) !important;
}

.price-box-h3 {
  font-size: 16px;
}

.price-main-amount--lg {
  font-size: 30px;
}

.page-ink .checklist--mt {
  margin-top: 4px;
}

.page-ink .section--cream {
  background: var(--cream);
}

.page-ink .service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.page-ink .service-card-link {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  display: block;
  transition: box-shadow 0.2s;
}

.page-ink .service-card-link:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.page-ink .service-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 8px;
}

.page-ink .service-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.page-ink .service-card-desc {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .page-ink .service-link-grid {
    grid-template-columns: 1fr;
  }
}
.br-lg {
  display: none;
}

@media (max-width: 1024px) {
  .br-lg {
    display: block;
  }
}