:root{
  --consult-ink:#171717;
  --consult-sub:#5a5a5a;
  --consult-line:#ddd6c7;
  --consult-surface:#fcfaf6;
  --consult-surface-strong:#f4efe5;
  --consult-white:#fff;
  --consult-shadow:0 20px 44px rgba(0,0,0,.08);
}

html{
  box-sizing:border-box;
}

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

body.consult-fixed-active{
  padding-bottom:calc(86px + env(safe-area-inset-bottom));
}

.consult-route-section,
.consult-bottom-cta,
.consult-line-box{
  max-width:1080px;
  margin:0 auto;
}

.consult-route-section{
  padding:54px 20px 34px;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
  background:linear-gradient(180deg,#fff 0%,#faf7f1 100%);
}

.consult-route-header{
  max-width:760px;
  margin:0 0 26px;
}

.consult-route-kicker{
  display:inline-block;
  margin:0 0 12px;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#7d7360;
}

.consult-route-title{
  margin:0 0 10px;
  font-size:clamp(1.6rem,3vw,2.35rem);
  line-height:1.35;
  color:var(--consult-ink);
}

.consult-route-lead{
  margin:0;
  color:var(--consult-sub);
  line-height:1.9;
}

.consult-route-grid{
  display:grid;
  gap:18px;
}

.consult-route-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  padding:24px 22px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--consult-shadow);
  color:var(--consult-ink);
  text-decoration:none;
}

.consult-route-card:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 48px rgba(0,0,0,.11);
}

.consult-route-card strong{
  display:block;
  margin:0 0 10px;
  font-size:1.12rem;
  line-height:1.5;
}

.consult-route-card p{
  margin:0;
  color:var(--consult-sub);
  line-height:1.8;
}

.consult-route-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.92rem;
  letter-spacing:.04em;
}

.consult-line-box{
  margin:0 auto 22px;
  padding:22px 20px;
  background:linear-gradient(135deg,#111 0%,#252525 100%);
  color:#fff;
  border-radius:18px;
  box-shadow:0 22px 50px rgba(0,0,0,.18);
}

.consult-line-box h3{
  margin:0 0 10px;
  font-size:1.25rem;
  line-height:1.45;
  color:#fff;
}

.consult-line-box p{
  margin:0 0 14px;
  color:rgba(255,255,255,.88);
  line-height:1.8;
}

.consult-tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 16px;
  padding:0;
  list-style:none;
}

.consult-tag-list li{
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:rgba(255,255,255,.88);
  font-size:.85rem;
  line-height:1.2;
}

.consult-inline-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.consult-primary-btn,
.consult-secondary-btn,
.consult-ghost-btn{
  display:inline-flex;
  box-sizing:border-box;
  max-width:100%;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.consult-primary-btn{
  background:#fff;
  border:1px solid #d7d0c4;
  color:#111;
  font-weight:700;
}

.consult-primary-btn:hover,
.consult-secondary-btn:hover,
.consult-ghost-btn:hover{
  transform:translateY(-1px);
}

.consult-secondary-btn{
  background:#111;
  border:1px solid #111;
  color:#fff;
  font-weight:700;
}

.consult-ghost-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-weight:600;
}

.consult-form-note{
  margin:0 auto 18px;
  padding:14px 16px;
  border:1px dashed var(--consult-line);
  background:linear-gradient(180deg,#fff 0%,#faf7f3 100%);
  color:var(--consult-sub);
  line-height:1.8;
  border-radius:14px;
}

.consult-bottom-cta{
  margin:42px auto 0;
  padding:26px 22px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg,#fff 0%,#f8f3ea 100%);
  box-shadow:var(--consult-shadow);
}

.consult-bottom-cta h2,
.consult-bottom-cta h3{
  margin:0 0 12px;
  color:var(--consult-ink);
  line-height:1.45;
}

.consult-bottom-cta p{
  margin:0 0 16px;
  color:var(--consult-sub);
  line-height:1.85;
}

.consult-bottom-cta .consult-inline-actions{
  margin-top:4px;
}

.consult-bottom-cta .consult-ghost-btn,
.lp-final-cta .consult-ghost-btn,
.inventory-consult-panel .consult-ghost-btn{
  border-color:#c7c0b4;
  color:#171717;
}

.consult-mini-copy{
  margin-top:12px;
  color:#6a6256;
  font-size:.88rem;
  line-height:1.7;
}

.consult-fixed-line{
  position:fixed;
  left:16px;
  right:16px;
  bottom:calc(14px + env(safe-area-inset-bottom));
  z-index:2140;
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:13px 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  text-decoration:none;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:opacity .2s ease, transform .2s ease;
}

.consult-fixed-line.is-hidden{
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
}

.consult-fixed-line__label{
  font-weight:700;
  line-height:1.2;
  letter-spacing:.02em;
}

.consult-fixed-line__meta{
  font-size:.8rem;
  color:rgba(255,255,255,.75);
  line-height:1.2;
}

.inventory-consult-panel{
  margin-top:18px;
  padding:18px 16px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg,#fff 0%,#faf6ef 100%);
  box-shadow:0 14px 36px rgba(0,0,0,.08);
}

.inventory-consult-panel h2,
.inventory-consult-panel h3{
  margin:0 0 10px;
  font-size:1.08rem;
  line-height:1.5;
  color:var(--consult-ink);
}

.inventory-consult-panel p{
  margin:0 0 14px;
  color:var(--consult-sub);
  line-height:1.8;
}

.inventory-consult-panel .consult-inline-actions{
  margin-top:6px;
}

.inventory-consult-panel .consult-secondary-btn{
  background:#111;
  color:#fff;
}

.inventory-consult-panel .consult-ghost-note{
  margin-top:12px;
  color:#6f685c;
  font-size:.88rem;
  line-height:1.7;
}

.lp-page{
  margin:0;
  color:#1d1d1d;
  background:#f7f2ea;
  font-family:"Noto Sans JP",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.75;
}

.lp-page .site-header{
  position:sticky;
  top:0;
  z-index:1200;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.lp-page .site-header .container{
  max-width:1120px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.lp-page .site-header .brand{
  color:#111;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.04em;
}

.lp-page .site-header .nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.lp-page .site-header .nav a{
  color:#333;
  text-decoration:none;
  font-size:.92rem;
}

.lp-page .site-header .nav-toggle{
  display:none;
  background:none;
  border:0;
  font-size:1.2rem;
}

.lp-hero{
  position:relative;
  min-height:calc(100svh - 72px);
  display:flex;
  align-items:flex-end;
  color:#fff;
  background-color:#161616;
  background-size:cover;
  background-position:center;
}

.lp-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.24) 0%,rgba(0,0,0,.58) 58%,rgba(12,12,12,.82) 100%);
}

.lp-hero-inner{
  position:relative;
  z-index:2;
  max-width:1120px;
  margin:0 auto;
  padding:98px 20px 54px;
  width:100%;
}

.lp-kicker{
  display:inline-block;
  margin:0 0 14px;
  color:#d6c7ab;
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.lp-title{
  max-width:760px;
  margin:0 0 16px;
  font-size:clamp(2rem,4vw,4.1rem);
  line-height:1.15;
  letter-spacing:.03em;
}

.lp-summary{
  max-width:660px;
  margin:0 0 24px;
  color:rgba(255,255,255,.88);
  font-size:1rem;
  line-height:1.95;
}

.lp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.lp-wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}

.lp-band{
  padding:72px 0;
  background:#fff;
}

.lp-band.alt{
  background:#f8f2e7;
}

.lp-band.dark{
  background:#111;
  color:#fff;
}

.lp-band.dark .lp-section-lead,
.lp-band.dark li,
.lp-band.dark p{
  color:rgba(255,255,255,.82);
}

.lp-section-head{
  max-width:740px;
  margin:0 0 26px;
}

.lp-section-title{
  margin:0 0 12px;
  font-size:clamp(1.5rem,3vw,2.35rem);
  line-height:1.35;
}

.lp-section-lead{
  margin:0;
  color:#5f574d;
  line-height:1.95;
}

.lp-grid{
  display:grid;
  gap:18px;
}

.lp-card{
  padding:24px 22px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.8);
  box-shadow:var(--consult-shadow);
}

.lp-card h3{
  margin:0 0 10px;
  line-height:1.45;
}

.lp-card p{
  margin:0;
  color:#5f574d;
}

.lp-list,
.lp-faq-list,
.lp-step-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:16px;
}

.lp-list li,
.lp-faq-list li,
.lp-step-list li{
  padding:18px 18px 18px 20px;
  border-left:2px solid #1d1d1d;
  background:rgba(255,255,255,.74);
}

.lp-list strong,
.lp-faq-list strong,
.lp-step-list strong{
  display:block;
  margin-bottom:8px;
}

.lp-story{
  display:grid;
  gap:18px;
}

.lp-story figure{
  margin:0;
}

.lp-story img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.lp-story-copy{
  padding:26px 24px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--consult-shadow);
}

.lp-story-copy p:last-child,
.lp-card p:last-child{
  margin-bottom:0;
}

.lp-related-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  margin-top:20px;
}

.lp-related-links a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.28);
}

.lp-final-cta{
  padding:34px 26px;
  background:linear-gradient(180deg,#fff 0%,#f5eee2 100%);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--consult-shadow);
}

.lp-final-cta h2{
  margin:0 0 12px;
}

.lp-final-cta p{
  margin:0 0 16px;
  color:#5f574d;
}

@media (min-width:760px){
  .consult-route-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .inventory-consult-panel .consult-inline-actions{
    flex-wrap:nowrap;
  }

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

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

  .lp-story{
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    align-items:stretch;
  }
}

@media (max-width:840px){
  .lp-page .site-header .nav{
    display:none;
    flex-direction:column;
    gap:10px;
    width:100%;
    padding-top:8px;
  }

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

  .lp-page .site-header .nav-toggle{
    display:block;
  }
}

@media (max-width:780px){
  nav{
    padding:8px 12px;
  }

  nav ul{
    justify-content:flex-start;
    gap:10px;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  nav ul::-webkit-scrollbar{
    display:none;
  }

  nav a{
    font-size:.78rem;
    white-space:nowrap;
  }

  .lang-btn{
    padding:5px 8px;
    font-size:.76rem;
  }

  .global-header{
    padding:8px 12px 10px !important;
  }

  .gh-logo{
    font-size:1.1rem !important;
  }

  .gh-menu-btn{
    font-size:1.45rem !important;
  }

  .gh-nav{
    padding:12px !important;
    gap:10px !important;
  }

  .gh-nav.is-open{
    display:flex !important;
  }

  .gh-nav a{
    font-size:.95rem !important;
  }

  .gh-lang{
    gap:4px !important;
    flex-wrap:wrap;
  }

  .gh-lang .lang-btn{
    padding:4px 7px;
    font-size:.72rem;
  }

  .site-header .container{
    padding:.58rem .85rem !important;
    gap:.5rem !important;
  }

  .site-header .brand{
    font-size:1rem !important;
  }

  .site-header .nav a{
    font-size:.84rem !important;
  }

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

  .site-header .nav-toggle{
    font-size:1.1rem !important;
  }

  .consult-route-section{
    padding:40px 18px 26px;
  }

  .consult-route-card,
  .consult-bottom-cta,
  .inventory-consult-panel{
    padding:20px 18px;
  }

  .consult-line-box{
    padding:20px 18px;
    border-radius:16px;
  }

  .consult-inline-actions,
  .lp-actions{
    flex-direction:column;
  }

  .consult-primary-btn,
  .consult-secondary-btn,
  .consult-ghost-btn{
    width:100%;
  }
}

@media (min-width:821px){
  .consult-fixed-line{
    display:none;
  }
}
