
    /* ===== LOADER ===== */
    #sp-view #loaderSp { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#sp-view .ld-panel { position: absolute; left: 0; right: 0; background: #091910; }
#sp-view .ld-panel-top { top: 0; height: 50%; transform-origin: top; }
#sp-view .ld-panel-btm { bottom: 0; height: 50%; transform-origin: bottom; }
#sp-view .ld-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
#sp-view .ld-vline { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(109,185,128,0.6)); transform: scaleY(0); transform-origin: top; margin-bottom: 28px; }
#sp-view .ld-logo-en { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: 0.25em; color: var(--white); opacity: 0; transform: translateY(10px); }
#sp-view .ld-logo-jp { font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.38); margin-top: 7px; opacity: 0; }
#sp-view .ld-progress-wrap { margin-top: 40px; width: 200px; display: flex; align-items: center; gap: 14px; }
#sp-view .ld-bar-track { flex: 1; height: 1px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
#sp-view .ld-bar-fill { position: absolute; top: 0; left: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, var(--accent), var(--gold-light)); }
#sp-view .ld-counter { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; min-width: 32px; text-align: right; }
#sp-view .ld-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(109,185,128,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(109,185,128,0.04) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
#sp-view .ld-corner { position: absolute; width: 40px; height: 40px; pointer-events: none; }
#sp-view .ld-corner svg { width: 100%; height: 100%; }
#sp-view .ld-corner-tl { top: 28px; left: 28px; }
#sp-view .ld-corner-br { bottom: 28px; right: 28px; }


    /* ===== 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; }


    /* ===== HERO ===== */
    #sp-view #heroSp { height: 100svh; min-height: 600px; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--primary); }
#sp-view .hero-photo { position: absolute; inset: 0; background-image: url('../../images/fv-bg.webp'); background-size: cover; background-position: center 40%; }
#sp-view .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,26,16,0.92) 0%, rgba(29,69,53,0.60) 50%, rgba(29,69,53,0.15) 100%); }
#sp-view .hero-content { position: relative; z-index: 2; padding: 0 24px 56px; width: 100%; }
#sp-view .hero-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 300; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
#sp-view .hero-title-en { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 8vw, 44px); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.55); margin-bottom: 8px; line-height: 1.2; }
#sp-view .hero-title-ja { font-size: clamp(26px, 7vw, 40px); font-weight: 900; color: var(--white); line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 16px; }
#sp-view .hero-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 2.0; font-weight: 300; margin-bottom: 32px; }
#sp-view .hero-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 148px; height: 148px; border-radius: 50%; border: 2px solid var(--gold); background: var(--gold); position: absolute; top: 74px; right: 20px; z-index: 3; box-shadow: 0 8px 32px rgba(200,150,12,0.45); }
#sp-view .hero-badge::before { content: ''; position: absolute; inset: 7px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); }
#sp-view .hero-badge-label { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 400; letter-spacing: 0.28em; color: rgba(255,255,255,0.85); text-transform: uppercase; margin-bottom: 6px; }
#sp-view .hero-badge-num { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
#sp-view .hero-badge-unit { font-family: 'Noto Sans JP', sans-serif; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.9); margin-top: 4px; letter-spacing: 0.1em; }
#sp-view .hero-cta { display: flex; flex-direction: column; gap: 12px; }
#sp-view .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 28px; background: var(--gold); color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 50px; }
#sp-view .btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-decoration: none; border-radius: 50px; }


    /* ===== SECTION COMMON ===== */
    #sp-view .section-eyebrow { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.32em; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
#sp-view .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }
#sp-view .section-title { font-size: clamp(22px, 6vw, 32px); font-weight: 900; color: var(--dark); line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 20px; }
#sp-view .reveal { opacity: 0; transform: translateY(30px); }


    /* ===== ACHIEVEMENTS (Ver2由来 汎用) ===== */
    #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 .s-title { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(22px, 6vw, 32px); font-weight: 900; line-height: 1.35; color: var(--dark); }
#sp-view .s-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; color: var(--primary); font-size: 1.1em; }


    /* ===== SERVICES ===== */
    #sp-view #servicesSp { padding: 72px 20px; position: relative; overflow: hidden; }
#sp-view #servicesSp::before { content: ''; position: absolute; inset: 0; background-image: url('../../images/section1.webp'); background-size: cover; background-position: center; }
#sp-view #servicesSp::after { content: ''; position: absolute; inset: 0; background: rgba(10,30,20,0.65); }
#sp-view .services-inner { position: relative; z-index: 1; }
#sp-view #servicesSp .section-eyebrow { color: var(--accent); }
#sp-view #servicesSp .section-title { color: var(--white); }
#sp-view .services-grid { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; margin-top: 32px; }
#sp-view .service-card { position: relative; padding: 28px 24px 56px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); overflow: hidden; cursor: pointer; transition: background 0.4s; text-decoration: none; color: inherit; display: block; }
#sp-view .service-card::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.6s ease; z-index: 0; }
#sp-view .service-card.active::before { opacity: 1; }
#sp-view .service-card.active { background: rgba(29,69,53,0.62); backdrop-filter: none; }
#sp-view .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 2; }
#sp-view .service-card:nth-child(1)::before { background-image: linear-gradient(rgba(29,69,53,0.62),rgba(29,69,53,0.62)),url('../../images/new_construction.webp'); }
#sp-view .service-card:nth-child(2)::before { background-image: linear-gradient(rgba(29,69,53,0.62),rgba(29,69,53,0.62)),url('../../images/renovation.webp'); }
#sp-view .service-card:nth-child(3)::before { background-image: linear-gradient(rgba(29,69,53,0.62),rgba(29,69,53,0.62)),url('../../images/zinko1.webp'); }
#sp-view .service-card:nth-child(4)::before { background-image: linear-gradient(rgba(29,69,53,0.62),rgba(29,69,53,0.62)),url('../../images/grid_1-1.webp'); }
#sp-view .service-card:nth-child(5)::before { background-image: linear-gradient(rgba(29,69,53,0.62),rgba(29,69,53,0.62)),url('../../images/carport.webp'); }
#sp-view .service-num { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px; position: relative; z-index: 1; }
#sp-view .service-icon { margin-bottom: 10px; position: relative; z-index: 1; }
#sp-view .service-icon svg { width: 28px; height: 28px; }
#sp-view .service-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.4; position: relative; z-index: 1; }
#sp-view .service-badge { display: inline-block; background: var(--warm); color: var(--white); font-size: 10px; padding: 2px 10px; border-radius: 20px; margin-left: 8px; vertical-align: middle; }
#sp-view .service-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.9; font-weight: 300; position: relative; z-index: 1; }
#sp-view .service-arrow { position: absolute; bottom: 20px; right: 20px; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); z-index: 1; }


    /* ===== WORKS ===== */
    #sp-view #worksSp { padding: 72px 20px; background: var(--light-bg); }
#sp-view .works-header { margin-bottom: 28px; }
#sp-view .works-grid { display: flex; flex-direction: column; gap: 12px; }
#sp-view .work-card-main { position: relative; border-radius: 14px; overflow: hidden; height: 260px; cursor: pointer; text-decoration: none; color: inherit; display: block; }
#sp-view .work-card-sub-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#sp-view .work-card-sub { position: relative; border-radius: 14px; overflow: hidden; height: 160px; cursor: pointer; text-decoration: none; color: inherit; display: block; }
#sp-view .work-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
#sp-view .work-card-main:hover .work-bg, #sp-view .work-card-sub:hover .work-bg { transform: scale(1.05); }
#sp-view .work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,20,0.85) 0%, transparent 55%); }
#sp-view .work-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
#sp-view .work-tag { display: inline-block; padding: 3px 10px; background: var(--gold); color: var(--white); font-size: 10px; border-radius: 20px; margin-bottom: 5px; }
#sp-view .work-title { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.5; }
#sp-view .work-area { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }
#sp-view .work-card-main .work-bg { background-image: url('../../images/fv-bg.webp'); }
#sp-view .work-sub-1 .work-bg { background-image: url('../../images/new_construction.webp'); }
#sp-view .work-sub-2 .work-bg { background-image: url('../../images/renovation.webp'); }
#sp-view .work-sub-3 .work-bg { background-image: url('../../images/landscaping.webp'); }
#sp-view .work-sub-4 .work-bg { background-image: url('../../images/pixta_67517323.webp'); }
#sp-view .works-btn { margin-top: 24px; text-align: center; }
#sp-view .btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: 1.5px solid var(--primary); color: var(--primary); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; border-radius: 50px; }


    /* ===== CONCEPT ===== */
    #sp-view #conceptSp { padding: 72px 20px; background: var(--primary); position: relative; overflow: hidden; }
#sp-view #conceptSp::before { content: 'PHILOSOPHY'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Montserrat', sans-serif; font-size: clamp(60px, 20vw, 120px); font-weight: 800; color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none; }
#sp-view .concept-inner { position: relative; z-index: 1; }
#sp-view #conceptSp .section-eyebrow { color: rgba(255,255,255,0.4); }
#sp-view #conceptSp .section-title { color: var(--white); }
#sp-view .concept-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 2.2; font-weight: 300; border-left: 2px solid rgba(255,255,255,0.15); padding-left: 20px; margin-bottom: 32px; }
#sp-view .concept-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
#sp-view .stat-item { text-align: center; }
#sp-view .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--gold-light); line-height: 1; }
#sp-view .stat-num sup { font-size: 16px; }
#sp-view .stat-label { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; margin-top: 6px; }


    /* ===== PROCESS ===== */
    #sp-view #processSp { padding: 72px 20px; background: var(--light-bg); position: relative; overflow: hidden; }
#sp-view .process-header { margin-bottom: 40px; }
#sp-view .process-steps-sp { display: flex; flex-direction: column; gap: 0; position: relative; }
#sp-view .process-steps-sp::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
#sp-view .process-step-sp { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
#sp-view .process-step-sp:last-child { padding-bottom: 0; }
#sp-view .step-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--border); flex-shrink: 0; margin-top: 4px; position: relative; z-index: 1; transition: background 0.3s; }
#sp-view .process-step-sp:hover .step-dot { background: var(--primary); }
#sp-view .step-content { flex: 1; }
#sp-view .step-icon-sp { margin-bottom: 8px; color: var(--primary); }
#sp-view .step-icon-sp svg { width: 28px; height: 28px; }
#sp-view .step-name-sp { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
#sp-view .step-desc-sp { font-size: 13px; color: var(--gray); line-height: 1.9; font-weight: 300; }


    /* ===== REVIEWS ===== */
    #sp-view #reviewsSp { padding: 72px 0; background: var(--white); }
#sp-view .reviews-head { padding: 0 24px; margin-bottom: 28px; display: flex; justify-content: space-between; align-items: flex-end; }
#sp-view .rating-badge-sp { display: flex; align-items: center; gap: 10px; }
#sp-view .rating-num-sp { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; color: var(--dark); line-height: 1; }
#sp-view .stars-sp span { color: var(--gold); font-size: 11px; }
#sp-view .reviews-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 24px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
#sp-view .reviews-scroll::-webkit-scrollbar { display: none; }
#sp-view .review-card-sp { flex-shrink: 0; width: 82vw; max-width: 320px; background: var(--light-bg); border: 1px solid var(--border); border-radius: 4px; padding: 24px 22px; scroll-snap-align: start; }
#sp-view .review-stars-sp span { color: var(--gold); font-size: 11px; }
#sp-view .review-text-sp { font-size: 13px; color: var(--gray); line-height: 2.0; font-weight: 300; margin-top: 14px; }
#sp-view .review-author-sp { margin-top: 20px; display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
#sp-view .review-avatar-sp { width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--primary); flex-shrink: 0; }
#sp-view .review-name-sp { font-size: 13px; font-weight: 600; color: var(--dark); }
#sp-view .review-meta-sp { font-size: 10px; color: var(--gray); margin-top: 2px; }
#sp-view .review-tag-sp { display: inline-block; padding: 2px 8px; background: var(--white); border: 1px solid var(--border); color: var(--gray); font-size: 9px; border-radius: 1px; margin-top: 3px; }


    /* ===== PRICING ===== */
    #sp-view #pricingSp { padding: 72px 0 60px; background: var(--light-bg); }
#sp-view .pricing-head { padding: 0 24px; margin-bottom: 8px; }
#sp-view .pricing-note-sp { padding: 0 24px; font-size: 12px; color: var(--gray); line-height: 1.9; font-weight: 300; margin-bottom: 28px; }
#sp-view .pricing-cards-sp { display: flex; gap: 14px; overflow-x: auto; padding: 8px 24px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
#sp-view .pricing-cards-sp::-webkit-scrollbar { display: none; }

    /* 縦長フォトカード */
    #sp-view .pcn-sp {
      flex-shrink: 0;
      width: 72vw;
      max-width: 260px;
      height: 400px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      scroll-snap-align: start;
      box-shadow: 0 6px 28px rgba(17,25,24,0.22);
      text-decoration: none;
      color: inherit;
      display: block;
    }
#sp-view .pcn-sp-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
#sp-view .pcn-sp-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(9,26,16,0.10) 0%, rgba(9,26,16,0) 30%, rgba(9,26,16,0.60) 65%, rgba(9,26,16,0.90) 100%); }
#sp-view .pcn-sp-body { position: absolute; inset: 0; padding: 18px 18px; display: flex; flex-direction: column; justify-content: space-between; }
#sp-view .pcn-sp-label { font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: 0.42em; color: rgba(255,255,255,0.6); text-transform: uppercase; font-weight: 500; }
#sp-view .pcn-sp-en { position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg); font-family: 'Montserrat', sans-serif; font-size: 7px; font-weight: 900; letter-spacing: 0.3em; color: rgba(255,255,255,0.14); text-transform: uppercase; white-space: nowrap; }
#sp-view .pcn-sp-name { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1.3; }
#sp-view .pcn-sp-price { display: flex; align-items: baseline; gap: 2px; font-family: 'Montserrat', sans-serif; }
#sp-view .pcn-sp-pre { font-size: 10px; color: rgba(255,255,255,0.55); }
#sp-view .pcn-sp-num { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.03em; }
#sp-view .pcn-sp-suf { font-size: 12px; color: rgba(255,255,255,0.65); }
#sp-view .pcn-sp-desc { font-size: 10.5px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 8px; font-weight: 300; }
#sp-view .pcn-sp.featured { box-shadow: 0 6px 28px rgba(17,25,24,0.22), 0 0 0 2px var(--gold); }
#sp-view .pricing-disclaimer-sp { padding: 0 24px; font-size: 11px; color: var(--gray); }


    /* ===== FAQ ===== */
    #sp-view #faqSp { padding: 72px 20px; background: var(--white); }
#sp-view .faq-header { margin-bottom: 32px; }
#sp-view .faq-list { border-top: 1px solid var(--border); }
#sp-view .faq-item { border-bottom: 1px solid var(--border); }
#sp-view .faq-question { width: 100%; display: flex; align-items: center; gap: 14px; padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left; }
#sp-view .faq-q-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; font-style: italic; color: var(--primary); letter-spacing: 0.05em; flex-shrink: 0; line-height: 1; }
#sp-view .faq-q-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.6; flex: 1; text-align: left; }
#sp-view .faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
#sp-view .faq-icon svg { transition: transform 0.3s; color: var(--gray); }
#sp-view .faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); }
#sp-view .faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--white); }
#sp-view .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
#sp-view .faq-answer-inner { padding: 0 0 20px 0; font-size: 14px; color: var(--gray); line-height: 2.0; font-weight: 300; display: flex; gap: 12px; }
#sp-view .faq-a-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; font-style: italic; color: var(--accent); flex-shrink: 0; line-height: 1.6; }


    /* ===== CONTACT ===== */
    #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; }


    /* ===== FIXED BANNER ===== */
    #sp-view .fixed-banner-sp { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--primary); display: flex; flex-direction: column; align-items: stretch; opacity: 0; transform: translateY(100%); transition: opacity 0.4s, transform 0.4s; pointer-events: none; padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px)); }
#sp-view .fixed-banner-sp.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#sp-view .fixed-banner-row { display: flex; align-items: center; }
#sp-view .fixed-banner-tel { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px; text-decoration: none; border-right: 1px solid rgba(255,255,255,0.12); }
#sp-view .fixed-banner-tel svg { color: rgba(255,255,255,0.7); }
#sp-view .fixed-banner-tel-wrap { display: flex; flex-direction: column; align-items: flex-start; }
#sp-view .fixed-banner-tel-label { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
#sp-view .fixed-banner-tel-num { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }
#sp-view .fixed-banner-cta { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 8px; background: rgba(255,255,255,0.1); text-decoration: none; gap: 6px; }
#sp-view .fixed-banner-cta svg { color: var(--white); }
#sp-view .fixed-banner-cta span { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }

  
#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; }
