
:root {
  --ink: #223332;
  --ink-soft: #586764;
  --forest: #385b57;
  --forest-deep: #294744;
  --sage: #b9cbc4;
  --mist: #e9efec;
  --sand: #f3f0e9;
  --paper: #fbfaf7;
  --line: #d8e0dc;
  --gold: #b79243;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Avenir Next", "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }
.admin-bar .site-header { top: 32px; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site { overflow: hidden; background: var(--paper); }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.site-header { position: fixed; z-index: 30; top: 0; left: 0; right: 0; height: 84px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; padding: 0 42px; color: var(--ink); background: rgba(251,250,247,.93); border-bottom: 1px solid rgba(56,91,87,.12); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-logo { width: 47px; height: 30px; object-fit: contain; background: transparent; }
.brand-name { color: #243533; font-size: 13px; font-weight: 650; letter-spacing: .16em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; padding: 32px 0 28px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.desktop-nav a::after { position: absolute; bottom: 24px; left: 0; width: 0; height: 1px; content: ""; background: var(--forest); transition: width .25s ease; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.language-switch { display: flex; align-items: center; gap: 8px; color: #9ba5a2; font-size: 11px; letter-spacing: .12em; }
.language-switch button, .language-switch a { padding: 8px 2px; color: inherit; background: none; border: 0; cursor: pointer; }
.language-switch button.active, .language-switch a.active { color: var(--ink); font-weight: 700; }
.menu-toggle { width: 31px; height: 28px; display: none; align-content: center; gap: 5px; padding: 0; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-layer { position: fixed; z-index: 25; inset: 84px 0 0; pointer-events: none; visibility: hidden; }
.menu-layer.open { pointer-events: auto; visibility: visible; }
.menu-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(25,40,38,.18); border: 0; opacity: 0; transition: opacity .25s ease; }
.menu-layer.open .menu-backdrop { opacity: 1; }
.menu-panel { position: absolute; top: 0; right: 0; width: min(360px, 88vw); padding: 42px 38px 48px; background: rgba(251,250,247,.99); box-shadow: -18px 30px 50px rgba(25,40,38,.12); transform: translateX(100%); transition: transform .3s ease; }
.menu-layer.open .menu-panel { transform: translateX(0); }
.menu-panel a { display: grid; grid-template-columns: 38px 1fr; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.menu-panel a span { color: #91a39f; font-family: Georgia, serif; font-size: 10px; letter-spacing: .1em; }

.hero { position: relative; min-height: 790px; height: 100vh; max-height: 940px; display: flex; align-items: center; padding-top: 84px; }
.hero-image, .hero-wash { position: absolute; inset: 84px 0 0; width: 100%; height: calc(100% - 84px); }
.hero-image { object-fit: cover; object-position: center; }
.hero-wash { background: linear-gradient(90deg, rgba(249,248,244,.97) 0%, rgba(249,248,244,.90) 28%, rgba(249,248,244,.38) 47%, rgba(249,248,244,.03) 68%); }
.hero-content { position: relative; z-index: 2; padding-top: 22px; }
.eyebrow { margin: 0 0 22px; color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: .22em; }
.hero h1, .section-heading h2, .contact-cta h2 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-weight: 500; letter-spacing: -.035em; }
.hero h1 { max-width: 820px; font-size: clamp(42px, 4.4vw, 60px); line-height: 1.38; }
.hero h1 span, .section-heading h2 span, .contact-cta h2 span { display: block; }
.lang-en .hero h1 { max-width: 830px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(43px, 4.8vw, 68px); line-height: 1.16; }
.hero-copy { max-width: 535px; margin: 30px 0 36px; color: var(--ink-soft); font-size: 15px; line-height: 2; }
.lang-en .hero-copy { max-width: 555px; line-height: 1.85; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; padding: 0 25px; border: 1px solid var(--forest); font-size: 13px; font-weight: 650; transition: .25s ease; }
.button span { font-size: 18px; font-weight: 400; }
.button-primary { color: white; background: var(--forest); }
.button-primary:hover { background: var(--forest-deep); }
.scroll-cue { position: absolute; z-index: 2; bottom: 34px; left: 42px; display: flex; align-items: center; gap: 13px; color: #71807e; font-size: 9px; letter-spacing: .2em; }
.scroll-cue span { display: block; width: 36px; height: 1px; background: #879491; }

.section { padding: 132px 0; }
.section-heading { max-width: 790px; }
.section-heading h2 { font-size: clamp(32px, 3.5vw, 48px); line-height: 1.5; }
.lang-en .section-heading h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1.25; letter-spacing: -.02em; }
.section-heading.light .eyebrow { color: #b9d1ca; }
.section-heading.light h2 { color: white; }

.about-section { padding-bottom: 72px; background: var(--sand); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 84px; }
.lead-copy { margin: 36px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 2.1; }
.bridge-copy { margin: 28px 0 0; padding-left: 21px; color: var(--ink); border-left: 2px solid #9bb0aa; font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-size: 17px; line-height: 1.9; }
.lang-en .bridge-copy { font-family: Georgia, "Times New Roman", serif; }
.signature-line { display: flex; align-items: center; gap: 16px; margin-top: 32px; color: #758783; font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.signature-line span { width: 42px; height: 1px; background: #9cb0aa; }
.photo-card { position: relative; margin: 0; }
.photo-card::before { position: absolute; z-index: 0; top: -22px; right: -24px; width: 48%; height: 45%; content: ""; background: #dfe7e3; }
.photo-card img { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center; }
.photo-card figcaption { position: relative; z-index: 1; margin-top: 13px; color: #788984; font-size: 9px; letter-spacing: .18em; text-align: right; }

.consultant-profile { display: grid; grid-template-columns: 74px minmax(0, 1fr); align-items: start; gap: 28px; margin-top: 54px; padding-top: 40px; border-top: 1px solid #ccd7d2; }
.portrait-card { position: relative; margin: 0; padding: 5px 0 0 5px; }
.portrait-card::before { position: absolute; top: 0; left: 0; width: 58%; height: 52%; content: ""; background: #dfe7e3; }
.portrait-card::after { position: absolute; right: -5px; bottom: -5px; width: 20px; height: 20px; content: ""; border-right: 1px solid #a9bab5; border-bottom: 1px solid #a9bab5; }
.portrait-card img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; filter: saturate(.88); }
.profile-copy { padding-top: 4px; }
.profile-copy .section-heading h2 { font-size: clamp(31px, 3vw, 43px); }
.profile-intro { max-width: 780px; margin: 12px 0 15px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.career-label { margin: 0 0 5px; color: #788a86; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.career-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #c9d4cf; }
.career-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid #d4ddd9; }
.career-bullet { padding-top: 2px; color: var(--gold); font-family: Georgia, serif; font-size: 11px; line-height: 1.6; text-align: center; }
.career-list li div { display: grid; grid-template-columns: minmax(190px, .85fr) minmax(250px, 1.15fr); gap: 18px; }
.career-list b { color: var(--ink); font-size: 13px; font-weight: 650; line-height: 1.6; }
.career-list li div > span { color: var(--ink-soft); font-size: 13px; line-height: 1.6; white-space: pre-line; }

.objective-section { background: var(--paper); }
.objective-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 72px; }
.objective-heading > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }
.routes-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; margin-top: 72px; }
.route { border: 1px solid var(--line); background: #fff; }
.route-heading { min-height: 224px; padding: 36px 38px; color: white; background: var(--forest); }
.route-2 .route-heading { background: #526b68; }
.route-heading > span { display: flex; align-items: center; gap: 12px; color: #cde0da; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.route-heading > span::after { width: 42px; height: 1px; content: ""; background: #a9c4bd; }
.route-heading h3 { margin: 24px 0 13px; font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-size: 25px; font-weight: 500; line-height: 1.5; }
.lang-en .route-heading h3 { font-family: Georgia, "Times New Roman", serif; }
.route-heading p { margin: 0; color: #d7e2df; font-size: 13px; line-height: 1.8; }
.case-card { padding: 32px 36px 34px; border-top: 1px solid var(--line); }
.case-top { display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-items: start; }
.case-top > span { padding-top: 3px; color: #8aa29c; font-family: Georgia, serif; font-size: 11px; letter-spacing: .1em; }
.case-card h4 { margin: 0; font-size: 17px; font-weight: 650; line-height: 1.55; }
.case-card > p { margin: 18px 0 20px 49px; color: var(--ink-soft); font-size: 13px; line-height: 1.85; }
.case-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 0 49px; padding: 0; list-style: none; }
.case-card li { padding: 7px 10px; color: #536864; background: #edf2ef; font-size: 10px; }
.process-block { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 62px; margin-top: 72px; padding: 48px 52px; background: var(--mist); }
.process-block h3 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-size: 24px; font-weight: 500; line-height: 1.55; }
.lang-en .process-block h3 { font-family: Georgia, "Times New Roman", serif; }
.process-block ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-block li { position: relative; min-height: 105px; padding: 0 16px; text-align: center; border-left: 1px solid #bdcbc7; }
.process-block li span { display: block; margin-bottom: 18px; color: #77928b; font-family: Georgia, serif; font-size: 10px; }
.process-block li b { font-size: 12px; font-weight: 600; line-height: 1.55; }
.service-note { display: flex; gap: 14px; max-width: 940px; margin: 28px 0 0 auto; color: #71817e; font-size: 11px; line-height: 1.8; }
.service-note > span { flex: 0 0 auto; display: grid; place-items: center; width: 19px; height: 19px; border: 1px solid #94a39f; border-radius: 50%; font-family: Georgia, serif; font-style: italic; }

.contact-cta { padding: 90px 0; color: white; background: var(--forest-deep); }
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 100px; }
.contact-cta .eyebrow { color: #a9c8c0; }
.contact-cta h2 { font-size: clamp(30px, 3.1vw, 45px); line-height: 1.45; }
.contact-cta p:not(.eyebrow) { max-width: 680px; margin: 25px 0 0; color: #cbd9d5; font-size: 14px; line-height: 1.9; }
.cta-actions { display: grid; justify-items: stretch; gap: 13px; }
.button-light { color: var(--forest-deep); background: #f2f5f3; border-color: #f2f5f3; }
.button-light:hover { background: white; }
.cta-actions > a:not(.button) { color: #b7cac5; font-family: Georgia, serif; font-size: 13px; }

.regions-section { min-height: 700px; display: grid; grid-template-columns: 1.04fr .96fr; background: var(--forest-deep); }
.regions-image-wrap { min-height: 650px; overflow: hidden; }
.regions-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.regions-panel { align-self: center; max-width: 620px; padding: 90px 72px; }
.regions-copy { margin: 30px 0 46px; color: #d5e0dd; font-size: 14px; line-height: 2; }
.region-group + .region-group { margin-top: 30px; }
.region-label { display: block; margin-bottom: 13px; color: #9fbbb4; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.region-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.region-tags span { padding: 10px 16px; color: #d9e5e1; border: 1px solid rgba(207,224,219,.3); border-radius: 100px; font-size: 12px; }
.priority-tags span { color: var(--forest-deep); background: #d9e7e2; border-color: #d9e7e2; }

footer { padding: 65px 0 28px; color: #d6e1de; background: #1d302e; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; }
.footer-brand { margin-bottom: 22px; color: white; }
.footer-brand .brand-logo { filter: saturate(.7) brightness(1.25); }
.footer-brand .brand-name { color: white; }
.footer-main p { margin: 6px 0; color: #91a7a2; font-size: 10px; letter-spacing: .05em; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 20px 34px; align-content: start; }
.footer-main nav a { font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 52px; padding-top: 22px; color: #7e9690; border-top: 1px solid rgba(197,216,211,.13); font-size: 9px; letter-spacing: .08em; }

.contact-modal { position: fixed; z-index: 100; inset: 0; display: none; place-items: center; padding: 24px; }
.contact-modal.open { display: grid; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(18,36,34,.72); border: 0; }
.contact-dialog { position: relative; z-index: 1; width: min(680px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 42px; background: var(--paper); box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.contact-close { position: absolute; top: 17px; right: 19px; width: 38px; height: 38px; color: var(--ink); background: transparent; border: 0; font-size: 29px; line-height: 1; cursor: pointer; }
.contact-dialog h2 { margin: 0 0 8px; font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-size: 31px; font-weight: 500; }
.contact-dialog > p { margin: 0 0 26px; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.contact-form { display: grid; gap: 17px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 650; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid #cbd6d2; border-radius: 0; font: inherit; font-size: 14px; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 9px; font-weight: 400; line-height: 1.6; }
.contact-form .consent input { width: auto; margin-top: 3px; }
.contact-form .button { cursor: pointer; }
.form-notice { margin: 0 0 20px; padding: 13px 15px; border-left: 3px solid var(--forest); background: var(--mist); font-size: 13px; line-height: 1.7; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 28px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .container { width: min(100% - 44px, 920px); }
  .hero { min-height: 760px; }
  .hero-copy, .lang-en .hero-copy { max-width: 48vw; }
  .hero-wash { background: linear-gradient(90deg, rgba(249,248,244,.96), rgba(249,248,244,.83) 52%, rgba(249,248,244,.13)); }
  .about-grid { grid-template-columns: 1fr; gap: 62px; }
  .about-copy { max-width: 740px; }
  .consultant-profile { grid-template-columns: 68px 1fr; gap: 24px; }
  .career-list li div { grid-template-columns: 1fr; gap: 3px; }
  .objective-heading { grid-template-columns: 1fr; gap: 25px; }
  .routes-grid { grid-template-columns: 1fr; }
  .process-block { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 42px; }
  .cta-actions { max-width: 420px; }
  .regions-section { grid-template-columns: 1fr; }
  .regions-image-wrap { min-height: 440px; }
  .regions-panel { max-width: 800px; padding: 85px max(32px, calc((100vw - 900px) / 2)); }
}

@media (max-width: 700px) {
  .admin-bar .site-header { top: 46px; }
  .site-header { height: 70px; padding: 0 18px; }
  .brand-logo { width: 40px; height: 25px; }
  .brand-name { font-size: 10px; letter-spacing: .1em; }
  .header-actions { gap: 13px; }
  .language-switch { gap: 5px; }
  .menu-toggle { width: 27px; }
  .menu-layer { inset: 70px 0 0; }
  .container { width: calc(100% - 36px); }
  .hero { min-height: 750px; height: auto; padding: 138px 0 100px; }
  .hero-image, .hero-wash { inset: 70px 0 0; height: calc(100% - 70px); }
  .hero-image { object-position: 62% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(249,248,244,.97), rgba(249,248,244,.87) 78%, rgba(249,248,244,.38)); }
  .hero h1 { font-size: 36px; line-height: 1.45; }
  .lang-en .hero h1 { font-size: 37px; line-height: 1.18; }
  .hero-copy, .lang-en .hero-copy { max-width: 100%; font-size: 13px; line-height: 1.9; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .section { padding: 88px 0; }
  .about-section { padding-bottom: 58px; }
  .section-heading h2 { font-size: 30px; }
  .about-grid { gap: 45px; }
  .lead-copy { font-size: 14px; }
  .bridge-copy { font-size: 16px; }
  .photo-card::before { right: -9px; }
  .consultant-profile { grid-template-columns: 62px minmax(0, 1fr); gap: 18px; margin-top: 48px; padding-top: 36px; }
  .portrait-card { width: 62px; margin: 0; }
  .portrait-card::after { right: -4px; }
  .profile-intro { margin-bottom: 14px; }
  .career-list li { grid-template-columns: 18px 1fr; gap: 7px; padding: 8px 0; }
  .career-list li div { grid-template-columns: 1fr; gap: 3px; }
  .career-list b, .career-list li div > span { font-size: 12px; }
  .routes-grid { margin-top: 48px; }
  .route-heading { min-height: auto; padding: 31px 25px; }
  .route-heading h3 { font-size: 22px; }
  .case-card { padding: 27px 23px 29px; }
  .case-top { grid-template-columns: 31px 1fr; }
  .case-card h4 { font-size: 16px; }
  .case-card > p, .case-card ul { margin-left: 44px; }
  .process-block { margin-top: 48px; padding: 34px 24px; }
  .process-block ol { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .process-block li:nth-child(3) { border-left: 0; }
  .contact-cta { padding: 74px 0; }
  .contact-cta h2 { font-size: 30px; }
  .regions-image-wrap { min-height: 320px; }
  .regions-panel { padding: 72px 22px; }
  .footer-main { display: grid; }
  .footer-main nav { display: grid; }
  .contact-dialog { padding: 36px 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
