:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --deep: #1A1208;
    --dark: #0D0D0D;
    --warm-dark: #1C160E;
    --cream: #F5EDD8;
    --cream-light: #FAF5EA;
    --text: #2C2416;
    --text-light: #6B5B3E;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Noto Serif JP', serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-follower {
    width: 32px; height: 32px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease-out;
  }

  /* ──────────── HERO ──────────── */
  #hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,169,110,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
  }

  .hero-particles {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 1px; height: 1px;
    background: var(--gold);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
  }

  @keyframes float-up {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-rise 1.2s ease forwards 0.3s;
  }

  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-rise 1.4s ease forwards 0.6s;
  }

  .hero-title em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    letter-spacing: 0.25em;
    color: rgba(245,237,216,0.6);
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fade-rise 1.4s ease forwards 0.9s;
  }

  .hero-line {
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 3.5rem;
    opacity: 0;
    animation: fade-in 1.4s ease forwards 1.1s;
  }

  .hero-scroll {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0;
    animation: fade-in 1.4s ease forwards 1.5s;
  }
  .hero-scroll span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease infinite 2s;
  }
  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  @keyframes fade-rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ──────────── PHILOSOPHY ──────────── */
  #philosophy {
    padding: 140px 2rem;
    background: var(--warm-dark);
    position: relative;
    overflow: hidden;
  }

  #philosophy::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .section-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
  }

  .philosophy-quote {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 2;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 3.5rem;
  }

  .philosophy-quote strong {
    color: var(--gold);
    font-weight: 400;
  }

  .philosophy-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 2.2;
    color: rgba(245,237,216,0.7);
    border-left: 1px solid rgba(201,169,110,0.3);
    padding-left: 2rem;
  }

  /* ──────────── ORIGIN ──────────── */
  #origin {
    padding: 140px 2rem;
    background: var(--dark);
    position: relative;
  }

  .origin-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .origin-visual {
    position: relative;
    height: 420px;
  }

  .origin-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
    animation: slow-spin linear infinite;
  }
  .origin-ring:nth-child(1) {
    width: 300px; height: 300px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation-duration: 30s;
  }
  .origin-ring:nth-child(2) {
    width: 200px; height: 200px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-color: rgba(201,169,110,0.3);
    animation-duration: 20s;
    animation-direction: reverse;
  }
  .origin-ring:nth-child(3) {
    width: 120px; height: 120px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-color: var(--gold);
    animation-duration: 10s;
  }

  @keyframes slow-spin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }

  .origin-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
  }

  .origin-center span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3rem;
    color: var(--gold);
    display: block;
  }
  .origin-center small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(201,169,110,0.6);
  }

  .origin-text h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 2rem;
  }

  .origin-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2.2;
    color: rgba(245,237,216,0.65);
    margin-bottom: 1.5rem;
  }

  /* ──────────── VALUES ──────────── */
  #values {
    padding: 140px 2rem;
    background: var(--warm-dark);
    position: relative;
  }

  #values::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .values-header {
    max-width: 760px;
    margin: 0 auto 80px;
  }

  .values-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .values-header p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(245,237,216,0.6);
  }

  .values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .value-card {
    background: rgba(201,169,110,0.03);
    padding: 50px 40px;
    border: 1px solid rgba(201,169,110,0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s;
  }

  .value-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .value-card:hover { background: rgba(201,169,110,0.06); border-color: rgba(201,169,110,0.3); }
  .value-card:hover::before { opacity: 1; }

  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3.5rem;
    color: rgba(201,169,110,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .value-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
  }

  .value-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 2;
    color: rgba(245,237,216,0.6);
  }

  /* ──────────── SERVICES ──────────── */
  #services {
    padding: 140px 2rem;
    background: var(--dark);
  }

  .services-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .services-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--cream);
    line-height: 1.6;
  }

  .services-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    color: rgba(201,169,110,0.6);
    text-align: right;
    max-width: 240px;
    line-height: 1.8;
  }

  .plan-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .plan-item {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    padding: 40px 50px;
    background: rgba(201,169,110,0.02);
    border: 1px solid rgba(201,169,110,0.08);
    transition: all 0.3s;
    gap: 40px;
    cursor: default;
  }

  .plan-item:hover {
    background: rgba(201,169,110,0.06);
    border-color: rgba(201,169,110,0.25);
    transform: translateX(4px);
  }

  .plan-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--cream);
    letter-spacing: 0.05em;
  }

  .plan-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(245,237,216,0.5);
    line-height: 1.8;
  }

  .plan-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    text-align: right;
    white-space: nowrap;
  }
  .plan-price span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.65rem;
    color: rgba(201,169,110,0.5);
    margin-top: 0.2rem;
    letter-spacing: 0.15em;
  }

  /* ──────────── STEPS ──────────── */
  #steps {
    padding: 140px 2rem;
    background: var(--warm-dark);
    position: relative;
  }
  #steps::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .steps-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .steps-header {
    margin-bottom: 80px;
  }

  .steps-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .steps-header p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: rgba(245,237,216,0.55);
    line-height: 2;
  }

  .step-list {
    position: relative;
  }

  .step-list::before {
    content: '';
    position: absolute;
    left: 24px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.1));
  }

  .step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
  }

  .step-dot {
    width: 50px; height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--warm-dark);
    flex-shrink: 0;
    z-index: 1;
  }

  .step-dot span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
  }

  .step-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    padding-top: 0.6rem;
  }

  .step-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(245,237,216,0.55);
    line-height: 2;
  }

  /* ──────────── MARKET ──────────── */
  #market {
    padding: 140px 2rem;
    background: var(--dark);
  }

  .market-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .market-text h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .market-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 2.2;
    color: rgba(245,237,216,0.6);
    margin-bottom: 1.5rem;
  }

  .market-points {
    list-style: none;
    margin-top: 2.5rem;
  }

  .market-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(245,237,216,0.65);
  }

  .market-points li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-box {
    background: rgba(201,169,110,0.04);
    border: 1px solid rgba(201,169,110,0.1);
    padding: 40px 30px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.72rem;
    color: rgba(245,237,216,0.5);
    letter-spacing: 0.12em;
    line-height: 1.6;
  }

  /* ──────────── GLOBAL ──────────── */
  #global {
    padding: 140px 2rem;
    background: var(--warm-dark);
    position: relative;
  }
  #global::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .global-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .global-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .global-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .global-header p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(245,237,216,0.5);
    line-height: 2;
  }

  .country-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .country-card {
    background: rgba(201,169,110,0.03);
    border: 1px solid rgba(201,169,110,0.08);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
  }

  .country-card:hover {
    background: rgba(201,169,110,0.07);
    border-color: rgba(201,169,110,0.25);
    transform: translateY(-4px);
  }

  .country-flag {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .country-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }

  .country-style {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(245,237,216,0.5);
    line-height: 1.8;
  }

  /* ──────────── CTA ──────────── */
  #cta {
    padding: 160px 2rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  #cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
  }

  .cta-inner {
    position: relative; z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-inner h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .cta-inner h2 em {
    font-style: normal;
    color: var(--gold);
  }

  .cta-inner p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2.2;
    color: rgba(245,237,216,0.6);
    margin-bottom: 3rem;
  }

  .cta-btn {
    display: inline-block;
    padding: 18px 60px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    transition: all 0.4s;
    cursor: none;
    position: relative;
    overflow: hidden;
  }

  .cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
  }

  .cta-btn:hover {
    color: var(--dark);
  }
  .cta-btn:hover::before {
    transform: translateX(0);
  }

  /* ──────────── FOOTER ──────────── */
  footer {
    padding: 60px 2rem;
    background: var(--deep);
    text-align: center;
    border-top: 1px solid rgba(201,169,110,0.1);
  }

  .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(201,169,110,0.5);
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
  }

  .footer-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
    color: rgba(245,237,216,0.25);
    letter-spacing: 0.1em;
  }

  /* ──────────── SCROLL REVEAL ──────────── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .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; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ──────────── RESPONSIVE ──────────── */
  @media (max-width: 900px) {
    .origin-grid,
    .market-inner {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .origin-visual { height: 280px; }
    .values-grid { grid-template-columns: 1fr; }
    .country-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-item {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .plan-price { text-align: left; }
    .market-stats { grid-template-columns: repeat(2, 1fr); }
    .services-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .services-note { text-align: left; max-width: 100%; }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
  }

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

  /* ──────────── NAVBAR ──────────── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,13,13,0);
    transition: background 0.4s, padding 0.4s;
  }
  #navbar.scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .nav-logo-svg {
    height: 44px;
    width: 44px;
    opacity: 0;
    animation: fade-in 1.4s ease forwards 1.8s;
  }
  .nav-links {
    display: flex; gap: 2.5rem;
    opacity: 0;
    animation: fade-in 1.4s ease forwards 2s;
  }
  .nav-links a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(245,237,216,0.6);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    #navbar { padding: 14px 20px; }
  }


  /* WordPress テーマの干渉を打ち消す */
  .entry-content,.wp-block-post-content,.is-layout-constrained > *,.is-layout-flow > *,.wp-site-blocks,main,article,.entry,.post,.page{max-width:none !important;padding:0 !important;margin:0 !important;}
  body{overflow-x:hidden !important;}
  #hero,#philosophy,#origin,#values,#services,#steps,#market,#global,#cta,footer{width:100vw !important;margin-left:calc(50% - 50vw) !important;margin-right:calc(50% - 50vw) !important;max-width:none !important;box-sizing:border-box !important;}
  .wp-site-blocks > header,.wp-site-blocks > footer,#masthead,#colophon,.site-header,.site-footer,header.wp-block-template-part,footer.wp-block-template-part{display:none !important;}
  .wp-block-post-title,.entry-title,h1.page-title,.page-header{display:none !important;}
.wp-block-post-title,
.entry-title,
h1.page-title,
.page-header {
  display: none !important;
}