/*
Theme Name: G-GOLF
Theme URI:
Author: SilverBack
Author URI:
Description: G-GOLF ゴルフシミュレーター設計・施工・販売 ランディングページ用オリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: g-golf
*/

:root {
    --bg-deep: #0A0A08;
    --bg-card: #111110;
    --bg-section: #141412;
    --bg-surface: #1C1C1A;
    --gold: #C8A96E;
    --gold-light: #E4C98A;
    --gold-dim: #8A6F44;
    --cream: #F0E8D8;
    --cream-dim: #D2CBBD;
    --white: #FAFAF7;
    /* matte silver (refined gray) */
    --silver: #C7CBCF;
    --silver-dim: #6E7378;
    --silver-soft: rgba(184,188,192,0.16);
    /* green accent */
    --green: #6FA86B;
    --green-light: #8FC78A;
    --green-dim: #3E5E3C;
    --green-glow: rgba(111,168,107,0.5);
    --border: rgba(184,188,192,0.18);
    --border-soft: rgba(255,255,255,0.06);
    --text-body: #D2CBBD;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--bg-deep);
    color: var(--cream);
    overflow-x: clip;
    font-weight: 400;
    font-size: 16px;
  }

  .serif { font-family: 'Zen Old Mincho', serif; }
  .oswald { font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; }

  /* HEADER */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 0 3vw; height: 74px;
    background: #141412 !important;
    border-bottom: 0.5px solid transparent;
    transition: border-color 0.4s;
  }
  header.scrolled { background: #141412 !important; border-bottom-color: var(--border); }
  /* logo: gold wordmark, mark brightened so it reads on black */
  #header .logo { color: var(--gold); }
  #header .logo .logo-word { color: var(--gold); }
  #header .logo .logo-dash { color: #FFFFFF; }
  #header .logo-mark { height: 30px; width: auto; display: block; }
  .header-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
  .gnav { display: none; }
  .gnav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px; font-weight: 500; line-height: 1; letter-spacing: 0;
    color: #FFFFFF; text-decoration: none; transition: color 0.3s;
    white-space: nowrap;
  }
  .gnav a:hover { color: var(--gold); }
  .btn-header-cv {
    padding: 13px 26px; background: var(--gold); border: none;
    color: #141412; font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
    text-decoration: none; white-space: nowrap; transition: background 0.3s;
  }
  .btn-header-cv:hover { background: var(--gold-light); }
  .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 22px; font-weight: 400; letter-spacing: 0.2em;
    color: var(--gold-light); text-decoration: none;
    display: inline-flex; align-items: center; gap: 11px;
  }
  .logo-mark { height: 30px; width: auto; display: block; }
  .logo-word { line-height: 1; }
  .logo .logo-dash { color: var(--cream); }
  nav { display: none; }
  nav a {
    font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
    color: var(--cream-dim); text-decoration: none; transition: color 0.3s;
  }
  nav a:hover { color: var(--gold-light); }
  .btn-header {
    padding: 9px 22px; border: 0.5px solid var(--gold);
    background: transparent; color: var(--gold-light);
    font-family: 'Noto Sans JP', sans-serif; font-size: 11px; font-weight: 400;
    letter-spacing: 0.12em; cursor: pointer; transition: all 0.3s;
    white-space: nowrap; text-decoration: none; display: inline-block;
  }
  .btn-header:hover { background: var(--gold); color: var(--bg-deep); }

  /* HERO — SLIDESHOW */
  #hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-slideshow { position: absolute; inset: 0; z-index: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.4s ease, transform 6s ease;
    transform: scale(1.06);
    background-size: cover; background-position: center;
  }
  .hero-slide.is-active { opacity: 1; transform: scale(1); }
  .hero-slide[data-ph="01"] { background-image: url("images/slide1.jpg"); }
  .hero-slide[data-ph="02"] { background-image: url("images/slide2.jpg"); }
  .hero-slide[data-ph="03"] { background-image: url("images/slide3.jpg"); }
  .hero-slide::after { content: none; }
  .hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(90deg, rgba(8,8,6,0.78) 0%, rgba(8,8,6,0.45) 48%, rgba(8,8,6,0.18) 100%),
      linear-gradient(180deg, rgba(8,8,6,0.42) 0%, rgba(8,8,6,0.12) 42%, rgba(8,8,6,0.62) 100%);
  }
  .hero-content {
    position: relative; z-index: 2; text-align: left;
    width: 100%; max-width: 1400px; padding: 0 6vw; margin: 0 auto;
    opacity: 0; animation: fadeup 1s 0.5s ease forwards;
  }
  .hero-ctas {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  }
  .btn-primary {
    padding: 16px 40px; background: var(--gold); color: var(--bg-deep);
    font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; border: none; cursor: pointer;
    text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    padding: 15px 40px; background: transparent; color: var(--cream);
    font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 300;
    letter-spacing: 0.08em; border: 0.5px solid rgba(240,232,216,0.3);
    cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
  .hero-scroll {
    position: absolute; bottom: 5vh; right: 5vw;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.25em;
    color: var(--gold-dim); opacity: 0; animation: fadeup 0.8s 1.2s ease forwards;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, var(--gold-dim), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
  }
  @keyframes scroll-anim {
    0%,100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.6); opacity: 1; }
  }
  @keyframes fadeup {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SECTIONS */
  section { padding: 120px 5vw; }
  .section-tag {
    font-family: 'Lexend Exa', sans-serif; font-size: 24px; font-weight: 400;
    line-height: 1; letter-spacing: 4px; color: var(--gold); margin-bottom: 20px; display: block;
  }
  .section-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(38px, 7vw, 60px); font-weight: 200;
    line-height: 1.2; letter-spacing: 0; color: var(--cream); margin-bottom: 20px;
  }
  .section-sub {
    font-size: 16px; line-height: 2; color: var(--cream-dim);
    font-weight: 400; max-width: 640px; margin-bottom:25px;
  }
  .divider { width: 40px; height: 1px; background: var(--gold); margin: 24px 0; }
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* STAT BAND */
  .stat-band {
    background: var(--bg-surface);
    border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 44px 5vw; border-right: 0.5px solid var(--border); text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Noto Sans JP', sans-serif; font-size: 52px; font-weight: 300;
    color: var(--gold-light); line-height: 1; margin-bottom: 8px;
  }
  .stat-unit { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 300; color: var(--gold-dim); }
  .stat-label { font-size: 12px; font-weight: 300; color: var(--cream-dim); letter-spacing: 0.05em; }

  /* PAIN POINTS */
  #pain { background: var(--bg-section); }
  .pain-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px;
  }
  .pain-grid > * { min-width: 0; }
  .pain-card { background: transparent; padding: 8px 32px; border-left: 0.5px solid var(--border); }
  .pain-card:first-child { border-left: none; padding-left: 0; }
  .pain-num {
    font-family: 'Lexend Exa', sans-serif; font-size: 41px; font-weight: 300;
    color: var(--gold); line-height: 1; letter-spacing: 0; margin-bottom: 20px;
  }
  .pain-card::before { content: ''; display: block; width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--green-light), var(--green)); margin-bottom: 22px; }
  .pain-card h3 { font-size: 22px; font-weight: 500; color: var(--cream); line-height: 1.6; margin-bottom: 12px; }
  .pain-card p { font-size: 14.5px; font-weight: 400; color: var(--cream-dim); line-height: 1.9; }

  /* STRENGTHS */
  #strengths { background: var(--bg-deep); }
  .strengths-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start; margin-top: 60px;
  }
  .strengths-left-header { position: sticky; top: 140px; align-self: start; }
  .strength-item::before { content: ''; display: block; width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--green-light), var(--green)); margin-bottom: 22px; }
  .strength-item {
    padding: 28px 0 96px; min-height: 264px;
  }
  .strength-item:first-child { padding-top: 0; }
  .strength-item:last-child { border-bottom: none; padding-bottom: 0; min-height: 0; }
  .strength-num {
    font-family: 'Lexend Exa', sans-serif; font-size: 41px; font-weight: 300;
    color: var(--gold); line-height: 1; letter-spacing: 0; margin-bottom: 20px; display: block;
  }
  .strength-icon {
    width: 42px; height: 42px; border: 0.5px solid var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--gold); font-size: 18px;
  }
  .strength-item h3 { font-size: 22px; font-weight: 500; color: var(--cream); margin-bottom: 14px; line-height: 1.5; }
  .strength-item p { font-size: 14.5px; font-weight: 400; color: var(--cream-dim); line-height: 2; }

  /* COMPARISON */
  #comparison { background: var(--bg-section); }
  .comparison-lead {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
    align-items: end; margin-bottom: 64px;
  }
  /* COMPARISON — PC full image / SP caption + scrolling table */
  .comp-table-wrap { position: relative; max-width: 100%; }
  .comp-pc-img { display: block; width: 100%; max-width: 784px; height: auto; margin: 0 auto; }
  .comp-caption-img { display: none; }
  .comp-scroll { display: none; }
  .comp-table-img { display: block; width: 720px; max-width: none; height: auto; }

  /* USE CASES */
  #usecases { background: var(--bg-section); padding-top: 100px; padding-bottom: 100px; }
  .usecases-intro {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 55px;
    margin-bottom: 80px; align-items: end;
  }
  .cases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    max-width: 1400px; margin: 0 auto;
  }
  .case-card {
    position: relative; overflow: hidden;
    min-height: 296px;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-start;
  }
  .case-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,20,18,0.55) 0%, rgba(20,20,18,0.78) 100%);
    z-index: 0;
  }
  .case-card::before {
    content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 56px;
    background: var(--green); z-index: 2;
  }
  .case-card-inner { position: relative; z-index: 1; padding: 58px 40px 36px 54px; }
  .case-num {
    display: block; font-family: 'Lexend Exa', sans-serif;
    font-size: 41px; font-weight: 300; line-height: 1; letter-spacing: 0;
    color: var(--gold); margin-bottom: 12px;
  }
  .case-card h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px; font-weight: 500; line-height: 1.35; letter-spacing: 0;
    color: var(--cream); margin-bottom: 14px;
  }
  .case-tag-small {
    display: inline-block; padding: 3px 10px; background: rgba(200,169,110,0.08);
    border: 0.5px solid var(--gold-dim); color: var(--gold-dim);
    font-size: 11.5px; letter-spacing: 0.12em; margin-bottom: 16px;
    font-family: 'Oswald', sans-serif;
  }
  .case-card p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px; font-weight: 400; line-height: 28px; letter-spacing: 0;
    color: var(--cream-dim);
  }

  /* TARGETS */
  #targets { background: var(--bg-deep); }
  .targets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 64px; }
  .target-card { border: none; padding: 44px 56px; }
  .target-card:nth-child(odd)  { border-right: 0.5px solid var(--border); padding-left: 0; }
  .target-card:nth-child(even) { padding-right: 0; }
  .target-card:nth-child(1), .target-card:nth-child(2) { border-bottom: 0.5px solid var(--border); padding-top: 0; }
  .target-card:nth-child(3), .target-card:nth-child(4) { padding-bottom: 0; }
  .target-for { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 300; letter-spacing: 0.35em; color: var(--gold); margin-bottom: 12px; display: block; }
  .target-card h3 { font-family: 'Noto Sans JP', sans-serif; font-size: 22px; font-weight: 500; color: var(--cream); margin-bottom: 20px; line-height: 1.3; }
  .target-card p { font-size: 14.5px; font-weight: 400; color: var(--cream-dim); line-height: 2; margin-bottom: 28px; }
  .target-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .target-list li { font-size: 13.5px; font-weight: 400; color: var(--cream-dim); padding-left: 16px; position: relative; line-height: 1.8; }
  .target-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }

  /* FLOW */
  #flow { background: var(--bg-section); }
  .flow-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    margin-top: 72px; position: relative;
  }
  .flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .flow-step-svg { width: 116px; height: 116px; display: block; margin-bottom: 28px; }
  .flow-step h4 { font-size: 15px; font-weight: 500; color: var(--cream); margin-bottom: 10px; line-height: 1.5; }
  .flow-step p { font-size: 13px; font-weight: 400; color: var(--cream-dim); line-height: 1.9; }
  .flow-note {
    margin-top: 48px; padding: 22px 26px;
    background: #6D6D6D; border: none;
    display: block;
  }
  .flow-note p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px; font-weight: 700; line-height: 28px; letter-spacing: 0;
    color: #F0E8D8; margin: 0;
  }
  .point-badge {
    display: inline-block; margin-bottom: 8px;
    padding: 2px 10px; border: 1px solid #F0E8D8;
    font-family: 'Lexend Exa', sans-serif; font-size: 11px; font-weight: 400;
    letter-spacing: 0.04em; color: #F0E8D8;
  }

  /* PRODUCTS */
  #products { background: var(--bg-deep); }
  .products-header { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: end; margin-bottom: 64px; }
  .products-note { padding: 24px 0 0; border: none; font-size: 14.5px; font-weight: 400; color: var(--cream-dim); line-height: 2; }
  .products-note strong { color: var(--gold-light); font-weight: 500; font-size:20px;}
  .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; background: none; }
  .product-card { background: none; padding: 40px 56px; }
  .product-card:nth-child(odd)  { border-right: 0.5px solid var(--border); padding-left: 0; }
  .product-card:nth-child(even) { padding-right: 0; }
  .product-card:nth-child(1), .product-card:nth-child(2) { border-bottom: 0.5px solid var(--border); padding-top: 0; }
  .product-card:nth-child(3), .product-card:nth-child(4) { padding-bottom: 0; }
  .product-tag { display: inline-block; padding: 3px 10px; background: rgba(200,169,110,0.08); color: var(--gold-dim); font-size: 10px; letter-spacing: 0.15em; margin-bottom: 16px; font-family: 'Oswald', sans-serif; border: 0.5px solid var(--border); }
  .product-card h3 { font-family: 'Noto Sans JP', sans-serif; font-size: 22px; font-weight: 500; color: var(--cream); margin-bottom: 12px; }
  .product-card p { font-size: 13.5px; font-weight: 400; color: var(--cream-dim); line-height: 2; margin-bottom: 20px; }
  .product-specs { display: flex; flex-direction: column; gap: 6px; }
  .spec-row { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 400; padding: 4px 0; color: var(--cream-dim); }
  .spec-row span:last-child { color: var(--cream); }

  /* FAQ */
  #faq { background: var(--bg-section); }
  .faq-list { margin-top: 60px; }
  .faq-item { border-bottom: 0.5px solid var(--border-soft); overflow: hidden; }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; cursor: pointer; transition: color 0.3s; }
  .faq-qmark { font-family: 'Lexend Exa', sans-serif; font-size: 20px; font-weight: 400; color: var(--cream); margin-right: 14px; flex-shrink: 0; line-height: 1; }
  .faq-qtext { flex: 1; font-family: 'Noto Sans JP', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--cream); }
  .faq-q:hover { color: var(--gold-light); }
  .faq-icon { width: 28px; height: 28px; border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; margin-left: 24px; transition: background 0.3s; }
  .faq-item.open .faq-icon { background: rgba(200,169,110,0.1); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a-inner { padding: 0 0 28px 0; font-size: 13px; font-weight: 400; color: var(--cream-dim); line-height: 2; }

  /* CTA */
  #cta { background: var(--bg-deep); text-align: center; padding: 140px 5vw; position: relative; overflow: hidden; }
  .cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(60,45,15,0.35) 0%, transparent 65%); }
  .cta-cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); margin-top: 64px; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
  .cta-card { background: var(--bg-deep); padding: 36px 32px; }
  .cta-card h4 { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 8px; }
  .cta-card p { font-size: 14px; font-weight: 400; color: var(--cream-dim); line-height: 1.9; margin-bottom: 20px; }
  .cta-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-cv {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-width: 260px; max-width: 100%; padding: 20px 34px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px; font-weight: 700; letter-spacing: 0.02em;
    text-decoration: none; border: none; cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
  }
  .btn-cv:hover { opacity: 0.9; transform: translateY(-1px); }
  .btn-cv svg { width: 20px; height: 20px; flex-shrink: 0; }
  .btn-cv-gold  { background: var(--gold); color: #141412; }
  .btn-cv-gold svg path, .btn-cv-pearl svg path { fill: #141412; }
  .btn-cv-line  { background: #06C755; color: #FFFFFF; }
  .btn-cv-line svg path { fill: #FFFFFF; }
  .btn-cv-pearl { background: #F0E8D8; color: #141412; }

  /* FOOTER */
  footer { background: #060605; padding: 64px 5vw 40px; border-top: 0.5px solid var(--border-soft); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand .logo { font-size: 20px; margin-bottom: 16px; }
  .footer-brand .logo-mark { height: 34px; }
  .footer-brand .logo-img { height: 34px; width: auto; display: block; }
  .footer-brand p { font-size: 13.5px; font-weight: 400; color: var(--cream-dim); line-height: 2; }
  .footer-col h5 { font-size: 11px; letter-spacing: 0.15em; color: var(--gold-dim); margin-bottom: 20px; font-family: 'Oswald', sans-serif; font-weight: 300; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 13.5px; font-weight: 400; color: var(--cream-dim); text-decoration: none; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 0.5px solid var(--border-soft); }
  .footer-bottom p { font-size: 11px; font-weight: 300; color: rgba(184,188,192,0.4); }
  .footer-legal a { font-size: 11px; font-weight: 300; color: rgba(184,188,192,0.4); text-decoration: none; margin-left: 24px; transition: color 0.3s; }
  .footer-legal a:hover { color: var(--gold-dim); }

  /* INSTAGRAM / CASE STUDY */
  #casestudy { background: var(--bg-deep); }
  .insta-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 56px;
  }
  .insta-link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px; border: 0.5px solid var(--gold-dim);
    color: var(--gold); font-size: 12px; letter-spacing: 0.1em;
    text-decoration: none; transition: all 0.3s; font-weight: 300;
  }
  .insta-link:hover { background: rgba(200,169,110,0.08); border-color: var(--gold); }
  .insta-link svg { width: 16px; height: 16px; flex-shrink: 0; }
  .insta-embed-wrap {
    border: none;
    background: none;
    min-height: 0;
    position: relative;
  }
  .insta-placeholder {
    text-align: center; padding: 60px 40px;
  }
  .insta-placeholder p {
    font-size: 12px; color: var(--cream-dim); font-weight: 300;
    line-height: 2; margin-top: 16px;
  }
  .insta-placeholder .insta-icon {
    width: 48px; height: 48px; margin: 0 auto 8px;
    border: 0.5px solid var(--border); display: flex;
    align-items: center; justify-content: center; color: var(--gold-dim); font-size: 24px;
  }
  /* actual embed overrides */
  .insta-embed-wrap iframe,
  .insta-embed-wrap > div { width: 100% !important; }

  /* VOICE / TESTIMONIALS */
  #voice { background: var(--bg-section); }
  .voice-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); margin-top: 64px;
  }
  .voice-card {
    background: var(--bg-section); padding: 40px 36px;
    transition: background 0.3s; position: relative;
  }
  .voice-card::before {
    content: '\201C';
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 80px; font-weight: 300;
    color: rgba(200,169,110,0.15);
    position: absolute; top: 16px; left: 28px;
    line-height: 1;
  }
  .voice-tag {
    display: inline-block; padding: 3px 10px;
    background: rgba(200,169,110,0.08); border: 0.5px solid var(--gold-dim);
    color: var(--gold-dim); font-size: 10px; letter-spacing: 0.12em;
    margin-bottom: 20px; font-family: 'Oswald', sans-serif;
  }
  .voice-text {
    font-size: 13px; font-weight: 300; color: var(--cream);
    line-height: 2.1; margin-bottom: 28px;
    padding-top: 12px;
  }
  .voice-author {
    border-top: 0.5px solid var(--border-soft); padding-top: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .voice-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(200,169,110,0.12);
    border: 0.5px solid var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--gold); flex-shrink: 0;
    font-family: 'Oswald', sans-serif; font-weight: 300;
  }
  .voice-name { font-size: 12px; font-weight: 500; color: var(--cream); }
  .voice-detail { font-size: 11px; font-weight: 300; color: var(--cream-dim); margin-top: 3px; }
  .voice-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-top: 3px; }
  .voice-notice {
    margin-top: 32px; padding: 16px 24px;
    border: 0.5px dashed var(--border);
    font-size: 11px; font-weight: 300; color: var(--cream-dim);
    line-height: 1.8; text-align: center;
  }

  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    width: 40px; height: 40px; cursor: pointer; gap: 6px;
    background: none; border: none; padding: 0;
  }
  .hamburger span {
    display: block; width: 24px; height: 1px;
    background: var(--cream); transition: all 0.35s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(10,10,8,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(28px, 6vw, 42px); font-weight: 300;
    color: var(--cream); text-decoration: none;
    padding: 16px 40px; letter-spacing: 0.05em;
    border-bottom: 0.5px solid var(--border-soft);
    width: 100%; text-align: center;
    transition: color 0.3s;
    opacity: 0; transform: translateY(16px);
    transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
  }
  .mobile-menu.open a { opacity: 1; transform: translateY(0); }
  .mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
  .mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
  .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
  .mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
  .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
  .mobile-menu.open a:nth-child(6) { transition-delay: 0.30s; }
  .mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }
  .mobile-menu a:hover { color: var(--gold-light); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu-cta .btn-primary { color: #141412; font-weight:500;}
  .mobile-menu-cta {
    margin-top: 36px;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.4s 0.4s ease, transform 0.4s 0.4s ease;
  }
  .mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }

  /* PC NAV */
  @media (min-width: 1101px) {
    .gnav { display: flex; align-items: center; gap: 26px; }
    .hamburger { display: none !important; }
  }
  @media (max-width: 1100px) {
    .hamburger { display: flex; }
  }

  /* MOBILE */
  @media (max-width: 1100px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .hamburger { display: flex; }
    .strength-item { padding: 0 0 50px; min-height: 0; }
    .strength-item:first-child { padding-top: 0; }
    .comparison-lead { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .strengths-layout { grid-template-columns: 1fr; gap: 32px; }
    .strengths-left-header { position: static; }
    .insta-header { grid-template-columns: 1fr; }
    .voice-grid { grid-template-columns: 1fr; }
    .nav { display: none; }
    .strengths-layout { grid-template-columns: 1fr; gap: 0; }
    .strengths-left-header { position: static; }
    .cases-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card, .product-card:nth-child(odd), .product-card:nth-child(even) {
      border-right: none; border-bottom: 0.5px solid var(--border-soft); padding: 25px 0;
    }
    .product-card:nth-child(1), .product-card:nth-child(2) { border-bottom: 0.5px solid var(--border-soft); }
    .product-card:last-child { border-bottom: none; padding-bottom: 0; }
    .products-header { grid-template-columns: 1fr; }
    .targets-grid { grid-template-columns: 1fr; }
    .target-card, .target-card:nth-child(odd), .target-card:nth-child(even) {
      border-right: none; border-bottom: 0.5px solid var(--border-soft);
      padding: 32px 0;
    }
    .target-card:nth-child(1), .target-card:nth-child(2) { border-bottom: 0.5px solid var(--border-soft); }
    .target-card:last-child { border-bottom: none; padding-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-band { grid-template-columns: repeat(2, 1fr); }
    .cta-cards { grid-template-columns: 1fr; }
    .usecases-intro { grid-template-columns: 1fr; }
    .hero-accent { display: none; }
  }
  @media (max-width: 820px) {
    .comp-pc-img { display: none; }
    .comp-caption-img {
      display: block; width: 100%; max-width: 420px; height: auto; margin: 0 auto 16px;
    }
    .comp-scroll {
      display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; padding-bottom: 6px;
      scrollbar-width: thin; scrollbar-color: var(--gold) rgba(240,232,216,0.10);
    }
    .comp-scroll::-webkit-scrollbar { height: 8px; }
    .comp-scroll::-webkit-scrollbar-track { background: rgba(240,232,216,0.10); border-radius: 99px; }
    .comp-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
  }
  @media (max-width: 600px) {
    section { padding: 55px 5vw; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost, .btn-hero-gold, .btn-hero-ghost { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .pain-card { border-left: none; padding: 28px 0; }
    .pain-card:first-child { padding-top: 0; }
    .pain-card:last-child { border-bottom: none; padding-bottom: 0; }
    .flow-steps { grid-template-columns: 1fr; }
    .stat-band { grid-template-columns: repeat(2, 1fr); }
    .cta-ctas { flex-direction: column; align-items: stretch; }
    .btn-cv { min-width: 0; width: 100%; }
    .comp-legend { justify-content: flex-start; gap: 16px; }
  }
  /* global guard: nothing may push the page wider than the viewport */
  html, body { max-width: 100%; overflow-x: clip; }
  img { max-width: 100%; }
  /* ============================================
     REFINEMENT LAYER — Silver (structure) + Green (accent/motion)
     Gold remains the dominant luxury base.
     ============================================ */

  /* GREEN — dividers & heading accents */
  .divider {
    background: linear-gradient(90deg, var(--green-light), var(--green));
    box-shadow: 0 0 14px var(--green-glow);
    width: 48px;
  }

  /* SILVER — borders, frames, badges, structural lines */
  .btn-header {
    border-color: var(--silver-dim);
    color: var(--cream);
  }
  .product-tag, .case-tag-small, .voice-tag {
    border-color: var(--silver-dim);
    color: var(--silver);
  }
  .stat-num { color: var(--gold-light); }
  .stat-unit { color: var(--silver); }

  /* GREEN — hover & motion states */
  nav a { transition: color 0.3s; }
  nav a:hover { color: var(--green-light); }
  .btn-header:hover {
    background: var(--green); border-color: var(--green); color: #fff;
    box-shadow: 0 4px 18px var(--green-glow);
  }
  .btn-primary { transition: all 0.3s; }
  .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 22px var(--green-glow);
    transform: translateY(-1px);
  }
  .btn-ghost:hover { border-color: var(--green-light); color: var(--green-light); }
  .case-card::before { background: linear-gradient(90deg, var(--green-light), var(--green)); }
  .faq-q:hover { color: var(--green-light); }
  .faq-item.open .faq-q { color: var(--green-light); }
  .faq-item.open .faq-icon {
    background: rgba(111,168,107,0.14);
    border-color: var(--green-dim);
    color: var(--green-light);
  }
  .mobile-menu a:hover { color: var(--green-light); }
  .footer-col ul li a:hover { color: var(--green-light); }
  .nav a:hover { color: var(--green-light); }

  /* hamburger silver lines, green on open */
  .hamburger span { background: var(--silver); }
  .hamburger.open span { background: var(--green-light); }

  /* comparison: G-GOLF column top accent → green */

/* ============================================
   CONTACT PAGE (page.php) + Contact Form 7 dark theme
   ============================================ */
.page-section {
  background: var(--bg-deep);
  min-height: 100vh;
  padding: 160px 5vw 120px;
  display: flex; justify-content: center;
}
.page-inner { width: 100%; max-width: 720px; }
.page-section .section-title { margin-bottom: 20px; }
.page-content {
  margin-top: 40px;
  font-size: 15px; line-height: 2; color: var(--cream-dim);
}
.page-content p { margin-bottom: 16px; }

/* Contact Form 7 — dark refined styling */
.wpcf7 { margin-top: 32px; }
.wpcf7 label {
  display: block;
  font-size: 13px; color: var(--cream); font-weight: 400;
  margin-bottom: 24px; letter-spacing: 0.03em;
}
.wpcf7 .req { color: var(--green-light); font-size: 11px; margin-left: 6px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 0.5px solid var(--border);
  color: var(--cream);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(184,172,152,0.5); }
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 select option { background: var(--bg-surface); color: var(--cream); }

/* radio / checkbox */
.wpcf7 .wpcf7-list-item { display: inline-block; margin: 8px 20px 8px 0; }
.wpcf7 .wpcf7-list-item-label { color: var(--cream-dim); font-size: 14px; }

/* submit button */
.wpcf7 input[type="submit"] {
  margin-top: 12px;
  padding: 16px 56px;
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 22px var(--green-glow);
  transform: translateY(-1px);
}

/* CF7 response / validation messages */
.wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 2px;
  font-size: 14px;
  color: var(--cream) !important;
}
.wpcf7 .wpcf7-not-valid-tip { color: #E48A8A; font-size: 12px; margin-top: 6px; }
.wpcf7-spinner { background-color: var(--green); }

/* ============================================
   THANK YOU PAGE (page-thanks.php)
   ============================================ */
.thanks-section { align-items: center; }
.thanks-inner { max-width: 640px; text-align: center; }
.thanks-check {
  width: 96px; height: 96px; margin: 0 auto 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111,168,107,0.08);
  border: 0.5px solid var(--green-dim);
  box-shadow: 0 0 40px var(--green-glow);
}
.thanks-message {
  margin-top: 36px;
  font-size: 15px; line-height: 2.1; color: var(--cream-dim);
}
.thanks-message p { margin-bottom: 16px; }
.thanks-cta { margin-top: 44px; }

/* ============================================
   CUSTOM SVG ICONS (絵文字からの差し替え)
   ============================================ */
.flow-step-icon svg { width: 22px; height: 22px; display: block; }
.flow-step-icon svg path,
.flow-step-icon svg circle,
.flow-step-icon svg line,
.flow-step-icon svg rect,
.flow-step-icon svg polyline {
  stroke: var(--gold); stroke-width: 1.4;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* inline icons inside buttons (LINE / phone) */
.btn-line svg, .btn-ghost svg.ico { width: 17px; height: 17px; vertical-align: -3px; }
.btn-line svg path { fill: #fff; }

/* ============================================
   HERO CATCH COPY (中央キャッチコピー)
   ============================================ */
.hero-copy {
  font-family: 'Zen Old Mincho', serif;
  font-feature-settings: "palt" 1;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; line-height: 1.4; color: var(--cream);
  letter-spacing: 5px; margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px; line-height: 32px; letter-spacing: 0;
  color: var(--cream); margin-bottom: 40px; font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content .hero-ctas { justify-content: flex-start; }
.btn-hero-gold, .btn-hero-ghost {
  display: inline-block; padding: 16px 40px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none; transition: all 0.3s;
}
.btn-hero-gold { background: var(--gold); color: #141412; }
.btn-hero-gold:hover { background: var(--gold-light); }
.btn-hero-ghost { background: rgba(20,20,18,0.55); color: var(--cream); border: 1px solid rgba(240,232,216,0.55); }
.btn-hero-ghost:hover { background: rgba(240,232,216,0.14); }
/* dots sit a touch higher to clear the catch copy on short screens */
@media (max-height: 720px) {
  #hero { min-height: 600px; }
}

/* ============================================
   BLACK HEADER (ロゴは明色版 logo-gorilla.png を使用)
   ============================================ */
header {
  background: #141412 !important;
  border-bottom: 0.5px solid transparent;
}
header.scrolled {
  background: #141412 !important;
  border-bottom-color: var(--border);
}
/* logo wordmark → gold on black */
header .logo { color: var(--gold); }
header .logo .logo-word { color: var(--gold); }
header .logo .logo-dash { color: #FFFFFF; }
/* hamburger lines → light */
header .hamburger span { background: var(--cream); }
header .hamburger.open span { background: var(--gold); }
/* hero sits flush under the solid header */
#hero { margin-top: 0; }


/* ひらがなだけ字間を詰めるユーティリティ（--kana-ls で調整可） */
.kana { letter-spacing: var(--kana-ls, 0.15em); font-feature-settings: "palt" 1; }

/* ============================================
   Instagram 埋め込みグリッド
   ============================================ */
.insta-grid,
.insta-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  align-items: start;
  max-width: 900px; margin: 0 auto;
}
.insta-grid .instagram-media {
  margin: 0 !important; min-width: 0 !important; width: 100% !important;
  max-width: 100% !important; border-radius: 0 !important;
}
.insta-card {
  position: relative; display: block; width: 100%; aspect-ratio: 1 / 1;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; line-height: 0; border: none;
  transition: opacity 0.3s;
}
.insta-card::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(20,20,18,0.06) 0%, rgba(20,20,18,0.45) 100%);
  pointer-events: none;
}
.insta-card:hover { opacity: 0.88; }
.insta-card-badge {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  width: 26px; height: 26px; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.insta-card-badge svg { width: 20px; height: 20px; }
.insta-fallback { display: flex; justify-content: center; margin-top: 32px; }
@media (max-width: 900px) {
  .insta-grid { grid-template-columns: 1fr; gap: 16px; }
  .insta-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .insta-card-badge { right: 7px; bottom: 7px; width: 18px; height: 18px; }
  .insta-card-badge svg { width: 15px; height: 15px; }
}

/* ============================================
   法務ページ（プライバシーポリシー等）
   ============================================ */
.legal-content { font-size: 15px; line-height: 2.1; }
.legal-content h2 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px; font-weight: 500; color: var(--cream);
  margin: 48px 0 16px; padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.legal-content h3 {
  font-size: 16px; font-weight: 500; color: var(--gold-light);
  margin: 28px 0 10px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 20px 1.3em; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--gold-light); text-decoration: underline; }
.legal-content table {
  width: 100%; border-collapse: collapse; margin: 0 0 24px;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  border: 0.5px solid var(--border);
  padding: 14px 16px; text-align: left; vertical-align: top;
}
.legal-content th {
  width: 30%; background: rgba(200,169,110,0.06);
  color: var(--cream); font-weight: 500; white-space: nowrap;
}
.legal-updated {
  margin-top: 56px; padding-top: 20px;
  border-top: 0.5px solid var(--border);
  font-size: 13px; color: var(--gold-dim);
}
@media (max-width: 600px) {
  .legal-content th, .legal-content td { display: block; width: 100%; }
  .legal-content th { border-bottom: none; }
}


/* ============================================
   選ばれる理由 内に統合した比較表
   ============================================ */
.strengths-compare {
  margin-top: 96px; padding-top: 72px;
  border-top: 0.5px solid var(--border-soft);
}
.compare-heading {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 300;
  line-height: 1.4; color: var(--cream);
  text-align: center; margin-bottom: 18px;
}
.compare-lead {
  font-size: 15px; line-height: 2; color: var(--cream-dim);
  text-align: center; max-width: 760px; margin: 0 auto 48px;
}
@media (max-width: 900px) {
  .strengths-compare { margin-top: 64px; padding-top: 48px; }
  .compare-lead { text-align: left; margin-bottom: 32px; }
}

/* ============================================
   ローディング画面
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #141412;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-gif {
  width: 190px; height: auto; display: block;
  filter: invert(1);            /* 白背景のGIFを黒地で見せる */
  mix-blend-mode: screen;
}
.loader-text {
  font-family: 'Lexend Exa', sans-serif;
  font-size: 13px; font-weight: 300; letter-spacing: 6px;
  color: var(--gold); opacity: 0.9;
}
body.is-loading { overflow: hidden; }
@media (max-width: 600px) { .loader-gif { width: 140px; } }

/* 新ロゴ（ゴリラ＋G-GOLF 一体型） */
#header .logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 600px) { #header .logo-img { height: 38px; } }

/* ============================================
   選ばれる理由：左固定ヘッダーの背景画像（PCのみ）
   ============================================ */
@media (min-width: 901px) {
  .strengths-left-header.has-bg {
    position: sticky; top: 0;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 48px; margin: -72px 0;
    overflow: hidden;
  }
  .strengths-left-header.has-bg > *:not(.strengths-bg-layer) { position: relative; z-index: 1; }
  .strengths-bg-layer {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.9s ease;
  }
  .strengths-bg-layer.is-active { opacity: 1; }
  .strengths-left-header.has-bg::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(20,20,18,0.82), rgba(20,20,18,0.68));
  }
  .strengths-left-header.has-bg .section-sub { color: var(--cream-dim); }
}

/* ============================================
   取扱製品：価格の強調（ゴールド・大きめ）
   ============================================ */
.product-price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 6px 0 18px;
}
.product-price .price-num {
  font-family: 'Lexend Exa', sans-serif;
  font-size: 46px; font-weight: 400; line-height: 1;
  color: var(--gold); letter-spacing: 0;
}
.product-price .price-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--gold);
}

/* ============================================
   追従CTAバー（LINE / 問い合わせ）
   ============================================ */
.floating-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 0;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1), opacity 0.45s;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
}
.floating-cta.is-visible { transform: translateY(0); opacity: 1; }
.fcta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 18px 12px; text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; transition: opacity 0.3s;
}
.fcta-btn:hover { opacity: 0.9; }
.fcta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.fcta-line { background: #06C755; color: #fff; }
.fcta-line svg path { fill: #fff; }
.fcta-contact { background: var(--gold); color: #141412; }

/* PCでは右下にコンパクト表示、フッター近くでは隠す */
@media (min-width: 901px) {
  .floating-cta {
    left: 50%; right: auto; bottom: 28px; transform: translate(-50%, 140%);
    gap: 14px; box-shadow: none;
    background: rgba(20,20,18,0.72); backdrop-filter: blur(8px);
    padding: 12px; border: 0.5px solid var(--border);
  }
  .floating-cta.is-visible { transform: translate(-50%, 0); }
  .fcta-btn { flex: none; min-width: 210px; padding: 15px 30px; }
}
@media (max-width: 600px) {
  .fcta-btn { font-size: 14px; padding: 15px 8px; gap: 7px; }
  .fcta-btn svg { width: 18px; height: 18px; }
}
