
  /* ===== HEADER ===== */
  #sp-view header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; }
#sp-view header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
#sp-view .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
#sp-view .logo-img { height: 36px; width: auto; object-fit: contain; }
#sp-view .logo-text { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
#sp-view .logo-en { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; transition: color 0.4s; }
#sp-view .logo-jp { font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; transition: color 0.4s; }
#sp-view header.scrolled .logo-en { color: var(--dark); }
#sp-view header.scrolled .logo-jp { color: var(--gray); }


  /* ===== HAMBURGER ===== */
  #sp-view .hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
#sp-view .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.35s ease; transform-origin: center; }
#sp-view header.scrolled .hamburger span { background: var(--dark); }
#sp-view .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#sp-view .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#sp-view .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
#sp-view .hamburger.open span { background: var(--dark); }


  /* ===== DRAWER NAV ===== */
  #sp-view .drawer { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
#sp-view .drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.35s; }
#sp-view .drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 78vw; max-width: 320px; background: var(--white); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); padding: 88px 32px 48px; display: flex; flex-direction: column; gap: 0; box-shadow: -8px 0 40px rgba(0,0,0,0.12); }
#sp-view .drawer.open { pointer-events: auto; }
#sp-view .drawer.open .drawer-bg { opacity: 1; }
#sp-view .drawer.open .drawer-panel { transform: translateX(0); }
#sp-view .drawer-nav-item { border-bottom: 1px solid var(--border); }
#sp-view .drawer-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 15px; font-weight: 500; color: var(--dark); text-decoration: none; letter-spacing: 0.04em; }
#sp-view .drawer-nav-link svg { color: var(--primary); }
#sp-view .drawer-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
#sp-view .drawer-tel { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 8px 0; }
#sp-view .drawer-tel svg { color: var(--primary); flex-shrink: 0; }
#sp-view .drawer-tel-label { font-size: 10px; color: var(--gray); letter-spacing: 0.1em; }
#sp-view .drawer-tel-num { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: var(--primary); }
#sp-view .btn-drawer-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; background: var(--gold); color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 50px; }


  /* ===== SECTION COMMON ===== */
  #sp-view .reveal { opacity: 0; transform: translateY(30px); }


  /* ===== PAGE HERO ===== */
  #sp-view .page-hero { padding: 112px 24px 44px; background: var(--primary); text-align: center; position: relative; overflow: hidden; }
#sp-view .page-hero::before { content:''; position:absolute; inset:0; background-image:url('../../images/section1.webp'); background-size:cover; background-position:center; z-index:0; }
#sp-view .page-hero::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 25% 30%, rgba(109,185,128,0.10) 0%, transparent 60%), linear-gradient(180deg, rgba(17,25,24,0.72) 0%, rgba(29,69,53,0.85) 55%, rgba(29,69,53,0.94) 100%); z-index:0; }
#sp-view .page-hero-tag { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:300; letter-spacing:0.36em; text-transform:uppercase; color: var(--gold-light); margin-bottom:12px; position:relative; z-index:1; }
#sp-view .page-hero-title { font-family:'Noto Sans JP',sans-serif; font-size: clamp(21px, 6vw, 28px); font-weight:900; color: var(--white); letter-spacing:-0.01em; position:relative; z-index:1; line-height:1.5; }
#sp-view .page-hero-sub { margin-top:12px; font-size:12px; color: rgba(255,255,255,0.7); font-weight:300; letter-spacing:0.04em; line-height:1.8; position:relative; z-index:1; }
#sp-view .breadcrumb { margin-top:18px; font-size:10.5px; letter-spacing:0.06em; color: rgba(255,255,255,0.45); position:relative; z-index:1; }
#sp-view .breadcrumb a { color: rgba(255,255,255,0.65); text-decoration:none; }


  /* ===== ARTICLE BODY ===== */
  #sp-view #article-bodySp { padding: 40px 24px 56px; background: var(--white); }
#sp-view .article-hero-img { width:100%; height: 200px; border-radius:14px; background-size:cover; background-position:center; margin-bottom:32px; background-color: var(--light-bg); }
#sp-view .article-content h2 { font-size: 18px; font-weight:900; color:var(--dark); margin: 34px 0 14px; letter-spacing:-0.01em; line-height:1.5; }
#sp-view .article-content h2:first-child { margin-top: 0; }
#sp-view .article-content p { font-size:14px; line-height:1.95; color:var(--gray); margin-bottom:18px; font-weight:300; }
#sp-view .article-content ul { margin: 0 0 22px 20px; }
#sp-view .article-content li { font-size:13.5px; line-height:1.85; color:var(--gray); margin-bottom:8px; }
#sp-view .article-table-wrap { overflow-x:auto; margin: 6px 0 26px; -webkit-overflow-scrolling: touch; }
#sp-view .article-table { width:100%; border-collapse:collapse; min-width: 480px; }
#sp-view .article-table th, #sp-view .article-table td { border:1px solid var(--border); padding:11px 12px; font-size:12.5px; text-align:left; white-space:nowrap; }
#sp-view .article-table th { background:var(--light-bg); color:var(--dark); font-weight:700; }
#sp-view .article-table td { color: var(--gray); }
#sp-view .article-quote { border-left:3px solid var(--gold); padding:16px 18px; background:var(--light-bg); border-radius:0 10px 10px 0; font-size:13px; color:var(--dark); line-height:1.85; margin:6px 0 26px; }
#sp-view .article-back { display:inline-flex; align-items:center; gap:8px; margin-bottom: 28px; font-size:12.5px; color:var(--primary); text-decoration:none; font-weight:500; }
#sp-view .article-back svg { transform: rotate(180deg); }


  /* ===== RELATED ===== */
  #sp-view #relatedSp { padding: 0 24px 56px; background: var(--white); }
#sp-view .related-title { font-size:16px; font-weight:900; margin: 0 0 20px; color:var(--dark); border-top:1px solid var(--border); padding-top:36px; }
#sp-view .related-grid { display: flex; flex-direction: column; gap: 14px; }
#sp-view .example-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; text-decoration: none; display: flex; }
#sp-view .example-img { width: 110px; flex-shrink:0; background-size: cover; background-position: center; }
#sp-view .example-body { padding: 12px 14px; flex:1; min-width:0; }
#sp-view .example-tags { display: flex; gap: 6px; margin-bottom: 7px; align-items: center; }
#sp-view .example-tag { font-size: 9px; padding: 2px 8px; border-radius: 20px; background: var(--light-bg); border: 1px solid var(--border); color: var(--primary); letter-spacing: 0.02em; }
#sp-view .example-date { font-size: 9.5px; color: var(--gray); }
#sp-view .example-title { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.5; }


  /* ===== CONTACT ===== */
  #sp-view .s-tag { font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
#sp-view .s-tag::before { content: ''; width: 18px; height: 1px; background: var(--border); flex-shrink: 0; }
#sp-view #contactSp { background: var(--dark); background-image: url('../../images/fv-bg.webp'); background-size: cover; background-position: center; position: relative; }
#sp-view #contactSp::before { content: ''; position: absolute; inset: 0; background: rgba(9,26,16,0.62); z-index: 0; }
#sp-view .contact-intro-sp { padding: 64px 24px 36px; text-align: center; position: relative; z-index: 1; }
#sp-view .contact-intro-sp .s-tag { justify-content: center; color: rgba(255,255,255,0.45); }
#sp-view .contact-intro-sp .s-tag::before { background: rgba(255,255,255,0.25); }
#sp-view .contact-intro-title-sp { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(22px, 6vw, 32px); font-weight: 900; color: #fff; line-height: 1.5; margin: 12px 0 14px; }
#sp-view .contact-intro-sub-sp { font-size: 12.5px; color: rgba(255,255,255,0.55); font-weight: 300; letter-spacing: 0.06em; }
#sp-view .contact-tiles-sp { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
#sp-view .contact-tile-sp { padding: 28px 20px; background: rgba(255,255,255,0.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); text-decoration: none; color: var(--dark); display: flex; flex-direction: column; gap: 10px; transition: background 0.35s; }
#sp-view .contact-tile-sp:hover, #sp-view .contact-tile-sp:active { background: rgba(29,69,53,0.92); }
#sp-view .contact-tile-sp:hover .tile-title-sp, #sp-view .contact-tile-sp:active .tile-title-sp { color: #fff; }
#sp-view .contact-tile-sp:hover .tile-sub-sp, #sp-view .contact-tile-sp:active .tile-sub-sp { color: rgba(255,255,255,0.6); }
#sp-view .contact-tile-sp:hover .tile-icon-sp, #sp-view .contact-tile-sp:active .tile-icon-sp { color: #fff; }
#sp-view .tile-tag-sp { display: inline-block; padding: 2px 9px; border: 1px solid var(--border); font-size: 9px; letter-spacing: 0.1em; color: var(--gray); }
#sp-view .tile-icon-sp { color: var(--dark); transition: color 0.3s; }
#sp-view .tile-icon-sp svg { width: 24px; height: 24px; }
#sp-view .tile-title-sp { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.45; transition: color 0.3s; }
#sp-view .tile-sub-sp { font-size: 11px; color: var(--gray); line-height: 1.75; font-weight: 300; transition: color 0.3s; }
#sp-view .tile-tel-sp { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); letter-spacing: 0.02em; }
#sp-view .contact-bottom-sp { padding: 20px 24px; background: rgba(9,26,16,0.42); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); position: relative; z-index: 1; display: flex; flex-direction: column; gap: 6px; }
#sp-view .contact-bottom-note-sp { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
#sp-view .contact-bottom-check-sp { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }


  /* ===== FOOTER ===== */
  #sp-view footer { background: var(--dark); padding: 48px 20px 32px; }
#sp-view .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; text-decoration: none; }
#sp-view .footer-logo-img { height: 32px; width: auto; object-fit: contain; }
#sp-view .footer-logo-text { font-size: 13px; font-weight: 700; color: var(--white); }
#sp-view .footer-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.9; margin-bottom: 24px; }
    #sp-view .footer-sns { display: flex; flex-direction: column; gap: 14px; margin: 4px 0 24px; }
    #sp-view .footer-sns-group-label { font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
    #sp-view .footer-sns-group-icons { display: flex; gap: 10px; }
    #sp-view .footer-sns-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
    #sp-view .footer-sns-icon img { width: 17px; height: 17px; object-fit: contain; display: block; }
#sp-view .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 28px; }
#sp-view .footer-nav a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; }
#sp-view .footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 20px; }
#sp-view .footer-copy { font-size: 11px; color: rgba(255,255,255,0.16); font-family: 'Montserrat', sans-serif; letter-spacing: 0.04em; text-align: center; }
#sp-view .drawer-sns { display: flex; flex-direction: column; gap: 10px; padding: 8px 0 4px; border-top: 1px solid var(--border); margin-bottom: 2px; }
#sp-view .drawer-sns-group { display: flex; align-items: center; gap: 10px; }
#sp-view .drawer-sns-label { font-size: 10px; color: var(--gray); letter-spacing: 0.04em; min-width: 46px; }
#sp-view .drawer-sns-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--light-bg); flex-shrink: 0; }
#sp-view .drawer-sns-icon img { width: 22px; height: 22px; object-fit: contain; display: block; }
