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

:root {
  --navy: #162338;
  --deep-navy: #07162B;
  --gold: #A67A2F;
  --cream: #F6F1E8;
  --light-cream: #FBFAF7;
  --white: #FFFFFF;
  --text: #172236;
  --muted: #667081;
  --line: rgba(22, 35, 56, .10);
  --line-strong: rgba(22, 35, 56, .18);
  --gold-soft: rgba(166, 122, 47, .14);
  --navy-soft: rgba(22, 35, 56, .05);
  --shadow-soft: 0 14px 36px rgba(7, 22, 43, .06);
  --shadow-card: 0 8px 24px rgba(7, 22, 43, .045);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1180px;
  --side-pc: 28px;
  --side-sp: 22px;
}

/* Base
--------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--light-cream) 0%, var(--white) 52%, var(--cream) 100%);
  line-height: 1.75;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2em;
}

::selection {
  background: rgba(166, 122, 47, .22);
}

/* Layout
--------------------------------------------- */

.container {
  width: min(100% - var(--side-pc) * 2, var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-soft {
  padding: 92px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--light-cream) 100%);
}

.section-deep {
  padding: 92px 0;
  background:
    radial-gradient(circle at top left, rgba(166, 122, 47, .16), transparent 36%),
    linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  color: var(--white);
}

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

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

/* Typography
--------------------------------------------- */

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: .045em;
  line-height: 1.35;
}

h1 {
  font-size: clamp(36px, 5.2vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 25px);
}

.section-deep h1,
.section-deep h2,
.section-deep h3 {
  color: var(--white);
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-deep .section-lead {
  color: rgba(255, 255, 255, .76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.small-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.section-deep .small-note {
  color: rgba(255, 255, 255, .66);
}

/* Header / Navigation
--------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100% - var(--side-pc) * 2, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
}

.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.brand-sub {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.lang-switch a {
  padding: 4px 0;
}

.lang-switch .is-current {
  color: var(--navy);
}

/* Buttons
--------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 22, 43, .12);
}

.btn-primary:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(166, 122, 47, .16);
}

.btn-gold:hover {
  background: #936a27;
  border-color: #936a27;
}

.btn-ghost {
  color: var(--navy);
  background: transparent;
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: rgba(166, 122, 47, .46);
  background: rgba(166, 122, 47, .06);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, .48);
}

.btn-light:hover {
  background: var(--cream);
}

/* Cards
--------------------------------------------- */

.card,
.service-card,
.scope-card,
.notice-box,
.cta-box,
.contact-box,
.faq-item,
.flow-card,
.bridge-node,
.proof-item {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card {
  padding: 28px;
}

.card h3,
.service-card h3,
.scope-card h3,
.flow-card h3,
.bridge-node h3 {
  margin-bottom: 12px;
}

.card p,
.service-card p,
.scope-card p,
.flow-card p,
.bridge-node p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(166, 122, 47, .18));
}

.scope-card {
  padding: 28px;
  border-left: 3px solid var(--gold);
}

.notice-box {
  padding: 24px 26px;
  background: rgba(246, 241, 232, .72);
}

.notice-box p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.cta-box {
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(246, 241, 232, .92), rgba(255, 255, 255, .92));
}

.cta-box h2,
.cta-box h3 {
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* Hero
--------------------------------------------- */

.hero {
  padding: 104px 0 86px;
  background:
    radial-gradient(circle at top right, rgba(166, 122, 47, .12), transparent 32%),
    linear-gradient(180deg, var(--light-cream), var(--cream));
}

.hero-inner {
  width: min(100% - var(--side-pc) * 2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel-title {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.hero-panel-list li {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 14px;
}

/* Proof
--------------------------------------------- */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-item {
  padding: 24px;
  text-align: center;
}

.proof-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.proof-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Bridge map
--------------------------------------------- */

.bridge-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bridge-node {
  padding: 28px;
}

.bridge-node .node-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Flow
--------------------------------------------- */

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-card {
  position: relative;
  padding: 28px;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

/* Tables
--------------------------------------------- */

.scope-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.scope-table table {
  width: 100%;
  border-collapse: collapse;
}

.scope-table th,
.scope-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 14px;
}

.scope-table th {
  color: var(--navy);
  background: rgba(246, 241, 232, .72);
  font-weight: 700;
}

.scope-table tr:last-child th,
.scope-table tr:last-child td {
  border-bottom: 0;
}

/* FAQ
--------------------------------------------- */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px 26px;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Contact
--------------------------------------------- */

.contact-box {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(22, 35, 56, .04), rgba(166, 122, 47, .06)),
    var(--white);
}

.contact-box h2,
.contact-box h3 {
  margin-bottom: 12px;
}

.contact-box p {
  color: var(--muted);
  font-size: 15px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--text);
  font-size: 14px;
}

.contact-lines a {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid rgba(166, 122, 47, .38);
}

/* Footer
--------------------------------------------- */

.site-footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  width: min(100% - var(--side-pc) * 2, var(--container));
  margin-inline: auto;
  padding: 58px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.footer-copy {
  max-width: 620px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .82);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .66);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.85;
}

.copyright {
  margin-top: 22px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

/* Utility
--------------------------------------------- */

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

.gold-line {
  width: 56px;
  height: 1px;
  margin: 22px 0;
  background: var(--gold);
}

.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

/* Responsive
--------------------------------------------- */

@media (max-width: 980px) {
  .nav-inner {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .nav-side {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .proof-grid,
  .bridge-map,
  .flow-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - var(--side-sp) * 2, var(--container));
  }

  .section,
  .section-soft,
  .section-deep {
    padding: 68px 0;
  }

  .hero {
    padding: 76px 0 66px;
  }

  .brand-main {
    font-size: 23px;
  }

  .site-nav {
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
  }

  .nav-side {
    width: 100%;
    justify-content: space-between;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .card,
  .service-card,
  .scope-card,
  .notice-box,
  .cta-box,
  .contact-box,
  .faq-item,
  .flow-card,
  .bridge-node,
  .proof-item {
    padding: 24px;
  }

  .scope-table {
    overflow-x: auto;
  }

  .scope-table table {
    min-width: 680px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }
}

/* Home hero layout refinement 2026-05-06 */
.hero-home {
  padding: 96px 0 88px;
}

.hero-home-inner {
  display: block;
  width: min(100% - var(--side-pc) * 2, var(--container));
  margin-inline: auto;
}

.hero-home .eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  max-width: none;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.28;
  letter-spacing: .015em;
  white-space: nowrap;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, .76fr);
  gap: 48px;
  align-items: start;
  margin-top: 34px;
}

.hero-home-copy {
  max-width: 900px;
}

.hero-lead-home {
  margin-top: 0;
  font-size: 17px;
  line-height: 2.02;
}

.hero-lead-home span {
  display: block;
}

.hero-lead-home span + span {
  margin-top: 0;
}

.hero-lead-home .hero-lead-separate {
  margin-top: 18px;
}

.hero-panel-lower {
  margin-top: 56px;
}

.proof-number {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: .01em;
}

@media (max-width: 980px) {
  .hero-title {
    white-space: normal;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
  }

  .hero-panel-lower {
    margin-top: 0;
  }
}



/* Hero / proof refinement 2026-05-06 v2 */
.hero-layout {
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, .76fr);
  gap: 48px;
}

.hero-home-copy {
  max-width: 900px;
}

.hero-lead-home {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-lead-home span {
  display: block;
}

.hero-lead-home span + span {
  margin-top: 0;
}

.hero-lead-home .hero-lead-separate {
  margin-top: 18px;
}

.hero-panel-title {
  font-size: 19px;
}

.hero-panel-lower {
  margin-top: 56px;
}

.proof-section {
  padding: 58px 0 82px;
}

.proof-grid {
  gap: 18px;
}

.proof-item {
  padding: 22px 24px;
}

.proof-number {
  font-size: 34px;
  line-height: 1.05;
}

.proof-label {
  font-size: 12.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .hero-lead-home {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-panel-lower {
    margin-top: 0;
  }

  .proof-section {
    padding: 44px 0 68px;
  }
}


/* Hero target panel position refinement 2026-05-06 v3 */
.hero-layout {
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, .72fr);
  gap: 40px;
}

.hero-panel-lower {
  margin-top: 0;
  transform: translateX(-8px);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-panel-lower {
    margin-top: 0;
    transform: none;
  }
}


/* Hero target panel wording/width refinement 2026-05-06 v5 */
.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 560px);
  gap: 52px;
  align-items: start;
}

.hero-panel-lower {
  width: 100%;
  max-width: 560px;
  padding: 34px 40px;
  transform: translateX(-10px);
}

.hero-panel-title {
  margin-bottom: 22px;
  font-size: 21px;
  line-height: 1.45;
}

.hero-panel-list {
  gap: 15px;
}

.hero-panel-list li {
  position: relative;
  padding-left: 24px;
  border-left: 0;
  font-size: 15px;
  line-height: 1.7;
  white-space: nowrap;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 2px;
  height: 28px;
  background: var(--gold);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-panel-lower {
    max-width: none;
    padding: 28px;
    transform: none;
  }

  .hero-panel-list li {
    white-space: normal;
  }
}


/* Section lead no-wrap refinement 2026-05-06 v6 */
.section-head-wide {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .lead-single-line {
    max-width: none;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: 14px;
    letter-spacing: .005em;
  }

  .heading-single-line {
    white-space: nowrap;
    word-break: keep-all;
  }
}


/* Hero lead natural flow refinement 2026-05-06 v7 */
.hero-lead-home {
  max-width: 980px;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-lead-home span {
  display: inline;
}

.hero-lead-home span + span,
.hero-lead-home .hero-lead-separate {
  margin-top: 0;
}

/* === v8 hero sentence + services redesign === */
.hero-lead-home {
  max-width: 980px;
}

.hero-lead-home span {
  display: block;
}

.hero-lead-home .hero-lead-separate {
  margin-top: 14px;
}

.section-services-refined {
  padding-top: 82px;
}

.service-grid-home {
  align-items: stretch;
  gap: 22px;
}

.service-card-home {
  position: relative;
  padding: 36px 36px 34px;
  border-radius: 28px;
  border: 1px solid rgba(166, 122, 47, .22);
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 34px rgba(22,35,56,.04);
  min-height: 460px;
}

.service-card-home::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border-top: 4px solid rgba(166, 122, 47, .72);
  pointer-events: none;
}

.service-card-home-featured {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(250,247,239,.92) 100%);
}

.service-card-home-dark::before {
  border-top-color: rgba(22,35,56,.62);
}

.service-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(166,122,47,.10);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
}

.service-card-home h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.35;
}

.service-card-home .service-case {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.service-card-home .service-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.service-actions-inline {
  margin-top: auto;
  padding-top: 28px;
}

.service-actions-inline .btn {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
  border-radius: 999px;
}

.notice-box-service {
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 4px solid rgba(166, 122, 47, .72);
  border-radius: 22px;
  background: rgba(247,245,240,.78);
}

.notice-box-service p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
}

@media (max-width: 1200px) {
  .service-card-home {
    min-height: 430px;
    padding: 32px 30px 30px;
  }

  .service-card-home h3 {
    font-size: 26px;
  }
}

@media (max-width: 980px) {
  .hero-lead-home .hero-lead-separate {
    margin-top: 12px;
  }

  .service-grid-home {
    grid-template-columns: 1fr;
  }

  .service-card-home {
    min-height: 0;
    padding: 28px 24px 26px;
    border-radius: 24px;
  }

  .service-card-home::before {
    border-radius: 24px;
  }

  .service-card-home h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .service-card-home .service-case {
    font-size: 15px;
  }

  .service-actions-inline .btn {
    min-height: 52px;
    font-size: 15px;
  }
}


/* === v9 services consistency refinement ===
   支援内容カード：上部の太い色線・カード別の色差を削除。
   全カードを同じ設計にし、左側の細いゴールド線と番号で整理。
*/
.service-card-home,
.service-card-home-featured,
.service-card-home-dark {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(22,35,56,.10);
  border-left: 3px solid rgba(166,122,47,.68);
  box-shadow: 0 14px 30px rgba(22,35,56,.035);
}

.service-card-home::before,
.service-card-home-featured::before,
.service-card-home-dark::before {
  display: none;
  content: none;
}

.service-card-home {
  padding: 34px 34px 32px;
  min-height: 440px;
}

.service-step {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: rgba(166,122,47,.09);
  color: var(--gold);
  border: 1px solid rgba(166,122,47,.10);
  font-size: 13px;
}

.service-card-home h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.service-card-home .service-case {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-home .service-summary {
  font-size: 14px;
  line-height: 1.9;
}

.service-actions-inline {
  padding-top: 26px;
}

.service-actions-inline .btn {
  min-height: 54px;
}

@media (max-width: 980px) {
  .service-card-home,
  .service-card-home-featured,
  .service-card-home-dark {
    border-left: 3px solid rgba(166,122,47,.68);
  }

  .service-card-home {
    min-height: 0;
    padding: 28px 24px 26px;
  }

  .service-card-home h3 {
    font-size: 24px;
  }
}


/* === v10 decorative line removal ===
   視線が散るため、カード左側のゴールド縦線を削除。
   支援内容カードは、罫線・余白・番号だけで整理する。
*/
.service-card-home,
.service-card-home-featured,
.service-card-home-dark {
  border: 1px solid rgba(22,35,56,.10);
  border-left: 1px solid rgba(22,35,56,.10);
  box-shadow: 0 12px 28px rgba(22,35,56,.032);
}

.service-card-home::before,
.service-card-home-featured::before,
.service-card-home-dark::before {
  display: none;
  content: none;
}

/* 既存カードの強い左線も抑える */
.scope-card {
  border-left: 1px solid var(--line);
}

.notice-box-service {
  border-left: 1px solid rgba(22,35,56,.10);
}

/* 番号だけを控えめなアクセントにする */
.service-step {
  background: rgba(166,122,47,.075);
  border: 1px solid rgba(166,122,47,.12);
  color: var(--gold);
}

/* 全体をさらに静かに見せる */
.service-card-home {
  background: rgba(255,255,255,.86);
}

@media (max-width: 980px) {
  .service-card-home,
  .service-card-home-featured,
  .service-card-home-dark {
    border-left: 1px solid rgba(22,35,56,.10);
  }
}


/* === v11 replace method section with target cases ===
   トップページでは重い体制図を削除し、読者が自分ごと化しやすい状況別カードへ変更。
*/
.section-cases {
  background: linear-gradient(180deg, var(--cream) 0%, var(--light-cream) 100%);
}

.case-grid {
  gap: 20px;
}

.case-card {
  min-height: 230px;
  padding: 30px 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(22,35,56,.10);
  box-shadow: 0 10px 24px rgba(22,35,56,.035);
}

.case-card h3 {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 1.55;
}

.case-card p {
  font-size: 15px;
  line-height: 1.95;
}

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

  .case-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .case-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }
}


/* === v12 replace large CTA box with contact card selector ===
   フッター前の大きなCTAボックスを削除し、3つの相談入口カードに変更。
*/
.section-contact-cards {
  background: var(--white);
}

.contact-card-grid {
  align-items: stretch;
  gap: 22px;
}

.contact-card-select {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(22,35,56,.10);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(22,35,56,.032);
}

.contact-card-select h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: .02em;
}

.contact-card-select p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.contact-card-select .btn {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  font-size: 15px;
}

@media (max-width: 980px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-select {
    min-height: 0;
    padding: 28px 24px;
  }

  .contact-card-select h3 {
    font-size: 21px;
  }
}


/* === v13 scope disclaimer note ===
   支援範囲の下に、静かな補足として免責を配置。
*/
.scope-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(246, 241, 232, .58);
  border: 1px solid rgba(22,35,56,.09);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .scope-note {
    margin-top: 18px;
    padding: 16px 18px;
    font-size: 12.5px;
  }
}


/* === v14 support scope section ===
   支援する領域 / 支援範囲に含まれない領域をフッター前導線の前に追加。
   装飾は抑え、情報整理を優先。
*/
.section-scope {
  background: linear-gradient(180deg, var(--light-cream) 0%, var(--cream) 100%);
}

.scope-list {
  display: grid;
  gap: 18px;
}

.scope-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(22,35,56,.10);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(22,35,56,.025);
}

.scope-row h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  line-height: 1.5;
}

.scope-row ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-row li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.scope-row li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 980px) {
  .scope-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }

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


/* === interpreter navigation addition === */
@media (min-width: 981px) {
  .nav-links {
    gap: 14px;
    font-size: 13.5px;
  }
}

@media (min-width: 981px) {
  .grid-4.service-grid-home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-4.service-grid-home .service-card-home {
    padding: 30px 24px 28px;
    min-height: 470px;
  }
  .grid-4.service-grid-home .service-card-home h3 {
    font-size: 23px;
  }
  .grid-4.service-grid-home .service-card-home .service-case {
    font-size: 14.5px;
  }
}

/* === service card alignment fix 2026-05-15 ===
   支援内容カードのボタン位置を揃える。
   4枚化により本文量の差でCTA位置がばらついたため、カードを縦flexに統一。
*/
.service-card-home {
  display: flex;
  flex-direction: column;
}

.service-card-home .service-summary {
  flex: 1 1 auto;
}

.service-actions-inline {
  margin-top: auto;
}

@media (min-width: 981px) {
  .grid-4.service-grid-home .service-card-home {
    display: flex;
    flex-direction: column;
  }

  .grid-4.service-grid-home .service-card-home .service-summary {
    flex: 1 1 auto;
  }

  .grid-4.service-grid-home .service-actions-inline {
    margin-top: auto;
  }
}


/* === corporate hero line break fix 2026-05-15 ===
   法人向け支援ページのヒーロー本文が狭いグリッド幅で不自然に折れるため、
   PCでは本文幅を広げ、1文として自然に読める表示にする。
*/
.hero-corporate .hero-layout {
  display: block;
  margin-top: 34px;
}

.hero-corporate .hero-copy {
  max-width: none;
}

.hero-corporate .hero-lead-home {
  max-width: none;
}

.hero-corporate .hero-actions .btn {
  white-space: nowrap;
}

@media (min-width: 981px) {
  .hero-corporate .hero-lead-home {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: 16px;
    letter-spacing: .005em;
  }
}

@media (max-width: 980px) {
  .hero-corporate .hero-lead-home {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* === spot diagnosis menu refinement 2026-05-15 ===
   スポット診断の診断メニューを、即決しやすい詳細カードへ整理。
   内容、対象、提出資料、追加オプション、価格、申込ボタンを明確にする。
*/
.spot-menu-grid {
  align-items: stretch;
  gap: 26px;
}

.spot-menu-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(22, 35, 56, .10);
  box-shadow: 0 14px 30px rgba(22, 35, 56, .04);
}

.spot-menu-card::before {
  display: none;
  content: none;
}

.spot-card-head {
  min-height: 94px;
  margin-bottom: 24px;
}

.spot-card-head h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.42;
  letter-spacing: .02em;
}

.spot-card-sub {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.spot-card-section {
  margin-top: 22px;
}

.spot-card-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.spot-menu-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.spot-menu-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.88;
}

.spot-card-compact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 35, 56, .08);
}

.spot-card-compact p {
  margin: 0;
}

.spot-card-price {
  margin-top: 28px;
  color: var(--gold);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .03em;
}

.spot-card-price span {
  margin-left: 8px;
  color: var(--gold);
  font-size: 18px;
}

.spot-option-box {
  margin-top: 20px;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(246, 241, 232, .45);
  border: 1px solid rgba(166, 122, 47, .18);
}

.spot-option-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .04em;
}

.spot-option-box p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.78;
}

.spot-option-box p + p {
  margin-top: 6px;
}

.spot-card-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12.5px !important;
  line-height: 1.78 !important;
}

.spot-card-action {
  margin-top: auto;
  padding-top: 26px;
}

.spot-card-action .btn {
  width: 100%;
  min-height: 58px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .spot-menu-grid {
    grid-template-columns: 1fr;
  }

  .spot-menu-card {
    padding: 28px 24px 26px;
    border-radius: 24px;
  }

  .spot-card-head {
    min-height: 0;
    margin-bottom: 20px;
  }

  .spot-card-head h3 {
    font-size: 23px;
  }
}

/* === spot option details moved below cards 2026-05-15 === */
.spot-option-wide {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(246, 241, 232, .52);
  border: 1px solid rgba(166, 122, 47, .18);
  box-shadow: 0 10px 24px rgba(22, 35, 56, .025);
}

.spot-option-wide h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
}

.spot-option-intro {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.spot-option-wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spot-option-wide-item {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(22, 35, 56, .08);
}

.spot-option-wide-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.65;
}

.spot-option-wide-item span {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(166, 122, 47, .08);
  border: 1px solid rgba(166, 122, 47, .14);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.spot-option-wide-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.spot-option-wide-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .spot-option-wide {
    padding: 24px 20px;
  }

  .spot-option-wide-grid {
    grid-template-columns: 1fr;
  }
}


/* === final spot hero and nav consistency fix 2026-05-15 === */
.hero-spot .hero-layout {
  display: block !important;
  grid-template-columns: none !important;
  margin-top: 34px !important;
}
.hero-spot .hero-copy,
.hero-spot .hero-home-copy,
.hero-spot .hero-lead-home {
  max-width: none !important;
  width: 100% !important;
}
.hero-spot .hero-lead-home,
.hero-spot .hero-lead-home span {
  display: block !important;
}
@media (min-width: 981px) {
  .hero-spot .hero-lead-home {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: 16px !important;
    letter-spacing: 0 !important;
    line-height: 1.95 !important;
  }
}
@media (max-width: 980px) {
  .hero-spot .hero-lead-home {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}
