@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&display=swap');

    :root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --dark: #0D0D0D;
      --dark-2: #141414;
      --dark-3: #1E1E1E;
      --dark-4: #252525;
      --white: #FFFFFF;
      --gray: #999999;
      --gray-light: #E0E0E0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ========== CURSOR ========== */
    .cursor {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
    }

    .cursor-ring {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(201, 168, 76, 0.5);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: all 0.15s ease;
    }

    /* モバイル・タッチデバイスではカーソルエフェクトを非表示にする */
    @media (max-width: 768px),
    (pointer: coarse) {

      .cursor,
      .cursor-ring {
        display: none !important;
      }
    }


    /* ========== NAVIGATION ========== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 18px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98), transparent);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background: rgba(10, 10, 10, 0.98);
      padding: 12px 60px;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
      border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      height: 44px;
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
      clip-path: inset(0 0 30% 0);
      /* 透過PNGのまま使用 */
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 8px 24px;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--dark) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    /* ========== HERO ========== */
    #hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg-img {
      display: none;
      /* 動画に置き換え */
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.55;
      z-index: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.7) 50%, rgba(13, 13, 13, 0.85) 100%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    .hero-logo-area {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 20px;
    }

    .hero-logo {
      width: min(480px, 75vw);
      height: auto;
      filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.25));
      clip-path: inset(0 0 30% 0);
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
      margin-bottom: 32px;
    }

    .hero-tagline {
      font-size: 13px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.8s forwards;
    }

    .hero-subtitle {
      font-size: clamp(12px, 3.5vw, 17px);
      color: var(--gray-light);
      font-weight: 300;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeUp 0.8s ease 1s forwards;
      margin-bottom: 48px;
      line-height: 2.4;
      padding: 0 8px;
    }

    .hero-subtitle span {
      color: var(--gold);
      font-weight: 500;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.2s forwards;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      padding: 16px 40px;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .btn-primary:hover::before {
      transform: translateX(0);
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-secondary {
      border: 1px solid rgba(201, 168, 76, 0.5);
      color: var(--gold);
      padding: 16px 40px;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 400;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.1);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--gray);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }

    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollLine 2s ease infinite;
    }

    @keyframes scrollLine {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--gold);
      border-radius: 50%;
      animation: float linear infinite;
      opacity: 0;
    }

    /* ========== SECTION BASE ========== */
    .section-label {
      font-size: 10px;
      letter-spacing: 6px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 6vw, 64px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
      word-break: keep-all;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .section-desc {
      font-size: clamp(13px, 3.5vw, 15px);
      color: #AAAAAA;
      line-height: 2;
      max-width: 600px;
      margin-bottom: 60px;
      font-weight: 300;
      word-break: keep-all;
      overflow-wrap: break-word;
    }

    /* ========== IMAGE SECTION ========== */
    .img-section {
      width: 100%;
      height: 60vh;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-section img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      transition: opacity 0.5s ease, transform 6s ease;
    }

    .img-section:hover img {
      opacity: 0.6;
      transform: scale(1.03);
    }

    .img-section-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.9) 100%);
    }

    .img-section-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 40px 20px;
    }

    .img-section-content .big-label {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(60px, 10vw, 120px);
      letter-spacing: 8px;
      line-height: 1;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--gold) 50%, rgba(255, 255, 255, 0.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .img-section-content p {
      font-size: 14px;
      letter-spacing: 4px;
      color: var(--gray-light);
      margin-top: 16px;
      text-transform: uppercase;
    }

    /* ========== PV SECTION ========== */
    #pv {
      padding: 120px 60px;
      background: #141414;
      position: relative;
      overflow: hidden;
    }

    #pv::before {
      content: 'PV';
      position: absolute;
      font-family: 'Bebas Neue', cursive;
      font-size: 300px;
      color: rgba(201, 168, 76, 0.025);
      top: -40px;
      right: -20px;
      line-height: 1;
      pointer-events: none;
    }

    .pv-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      cursor: pointer;
    }

    .pv-thumbnail {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--dark-3);
      border: 1px solid rgba(201, 168, 76, 0.2);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .pv-thumbnail:hover {
      border-color: rgba(201, 168, 76, 0.5);
      box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
    }

    .pv-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      transition: opacity 0.4s ease;
    }

    .pv-thumbnail:hover img {
      opacity: 0.85;
    }

    .pv-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.5), rgba(201, 168, 76, 0.08));
      transition: all 0.4s ease;
    }

    .pv-thumbnail:hover .pv-overlay {
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.3), rgba(201, 168, 76, 0.12));
    }

    .play-btn {
      width: 80px;
      height: 80px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      background: rgba(201, 168, 76, 0.1);
      backdrop-filter: blur(10px);
    }

    .pv-thumbnail:hover .play-btn {
      background: var(--gold);
      transform: scale(1.1);
      box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
    }

    .play-btn svg {
      fill: var(--gold);
      transition: fill 0.4s ease;
      margin-left: 4px;
    }

    .pv-thumbnail:hover .play-btn svg {
      fill: var(--dark);
    }

    .pv-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      background: rgba(10, 10, 10, 0.85);
      padding: 6px 16px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(201, 168, 76, 0.2);
    }

    .pv-corner {
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--gold);
      border-style: solid;
      border-width: 0;
    }

    .pv-corner.tl {
      top: -8px;
      left: -8px;
      border-top-width: 2px;
      border-left-width: 2px;
    }

    .pv-corner.tr {
      top: -8px;
      right: -8px;
      border-top-width: 2px;
      border-right-width: 2px;
    }

    .pv-corner.bl {
      bottom: -8px;
      left: -8px;
      border-bottom-width: 2px;
      border-left-width: 2px;
    }

    .pv-corner.br {
      bottom: -8px;
      right: -8px;
      border-bottom-width: 2px;
      border-right-width: 2px;
    }

    /* ========== SNS SECTION ========== */
    #sns {
      padding: 120px 60px;
      background: #0D0D0D;
      position: relative;
    }

    #sns::before {
      content: 'SNS';
      position: absolute;
      font-family: 'Bebas Neue', cursive;
      font-size: 300px;
      color: rgba(201, 168, 76, 0.025);
      top: 20px;
      left: -20px;
      line-height: 1;
      pointer-events: none;
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 60px;
    }

    .plan-card {
      background: #1E1E1E;
      padding: 48px 40px;
      border: 1px solid rgba(201, 168, 76, 0.12);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .plan-card.featured {
      background: linear-gradient(135deg, #252218, #1C1A10);
      border-color: rgba(201, 168, 76, 0.35);
    }

    .plan-card.featured::before {
      transform: scaleX(1);
    }

    .plan-card:hover::before {
      transform: scaleX(1);
    }

    .plan-card:hover {
      border-color: rgba(201, 168, 76, 0.25);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .plan-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--dark);
      background: var(--gold);
      padding: 4px 12px;
      text-transform: uppercase;
    }

    .plan-label {
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }

    .plan-name {
      font-family: 'Bebas Neue', cursive;
      font-size: 48px;
      letter-spacing: 4px;
      margin-bottom: 8px;
      line-height: 1;
    }

    .plan-price {
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 4px;
      line-height: 1;
    }

    .plan-price sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--gray);
      vertical-align: bottom;
      margin-left: 4px;
    }

    .plan-unit {
      font-size: 11px;
      color: var(--gray);
      letter-spacing: 2px;
      margin-bottom: 32px;
    }

    .plan-divider {
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin-bottom: 32px;
      opacity: 0.3;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .plan-features li {
      font-size: 14px;
      color: #E0E0E0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-weight: 400;
      line-height: 1.6;
    }

    .plan-features li::before {
      content: '—';
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 11px;
    }

    .plan-cta {
      display: block;
      text-align: center;
      padding: 14px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      color: var(--gold);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 40px;
      transition: all 0.3s ease;
    }

    .plan-cta:hover,
    .plan-card.featured .plan-cta {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
    }

    /* ========== LIVE SECTION ========== */
    #live {
      padding: 120px 60px;
      background: #141414;
      position: relative;
      overflow: hidden;
    }

    #live::before {
      content: 'LIVE';
      position: absolute;
      font-family: 'Bebas Neue', cursive;
      font-size: 300px;
      color: rgba(201, 168, 76, 0.025);
      bottom: -40px;
      right: -20px;
      line-height: 1;
      pointer-events: none;
    }

    .live-plans {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 60px;
    }

    .live-card {
      background: #1E1E1E;
      border: 1px solid rgba(201, 168, 76, 0.15);
      padding: 60px 48px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .live-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .live-card:hover::after {
      transform: scaleX(1);
    }

    .live-card:hover {
      border-color: rgba(201, 168, 76, 0.2);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .live-type {
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }

    .live-plan-name {
      font-family: 'Bebas Neue', cursive;
      font-size: 52px;
      letter-spacing: 4px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .live-priority {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 32px;
      letter-spacing: 1px;
    }

    .live-price {
      font-size: 48px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 4px;
      line-height: 1;
    }

    .live-price span {
      font-size: 20px;
      font-weight: 300;
      color: var(--gray);
      margin-left: 4px;
    }

    .live-desc {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 40px;
      letter-spacing: 1px;
    }

    .live-divider {
      height: 1px;
      background: rgba(201, 168, 76, 0.2);
      margin-bottom: 32px;
    }

    .live-crew-title {
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .live-crew {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .crew-tag {
      font-size: 12px;
      color: #E0E0E0;
      border: 1px solid rgba(201, 168, 76, 0.25);
      padding: 7px 16px;
      letter-spacing: 1px;
      background: rgba(201, 168, 76, 0.05);
    }

    .live-included {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .live-included li {
      font-size: 14px;
      color: #E0E0E0;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 400;
    }

    .live-included li::before {
      content: '✦';
      color: var(--gold);
      font-size: 8px;
    }

    /* ========== DOCUMENTARY SECTION ========== */
    #documentary {
      padding: 120px 60px;
      background: #0D0D0D;
      position: relative;
      overflow: hidden;
    }

    #documentary::before {
      content: 'DOC';
      position: absolute;
      font-family: 'Bebas Neue', cursive;
      font-size: 300px;
      color: rgba(201, 168, 76, 0.025);
      top: -40px;
      left: -20px;
      line-height: 1;
      pointer-events: none;
    }

    .documentary-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .documentary-visual {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      border: 1px solid rgba(201, 168, 76, 0.2);
    }

    .documentary-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.75;
      transition: all 0.4s ease;
    }

    .documentary-visual:hover img {
      opacity: 0.9;
      transform: scale(1.03);
    }

    .documentary-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13, 13, 13, 0.4), transparent);
    }

    .documentary-badge {
      position: absolute;
      top: 24px;
      left: 24px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.4);
      backdrop-filter: blur(10px);
      padding: 8px 20px;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
    }

    .documentary-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 28px;
    }

    .documentary-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .documentary-content p {
      font-size: 15px;
      color: #AAAAAA;
      line-height: 2.2;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .documentary-features {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 32px;
      border-top: 1px solid rgba(201, 168, 76, 0.15);
    }

    .doc-feature {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .doc-feature-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 14px;
      flex-shrink: 0;
      background: rgba(201, 168, 76, 0.05);
    }

    .doc-feature-text {
      font-size: 14px;
      color: var(--gray-light);
      font-weight: 300;
    }

    .doc-feature-text strong {
      color: var(--white);
      font-weight: 500;
      display: block;
      margin-bottom: 2px;
    }

    .doc-price-note {
      margin-top: 40px;
      padding: 24px 32px;
      border: 1px solid rgba(201, 168, 76, 0.2);
      background: rgba(201, 168, 76, 0.03);
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .doc-price-label {
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      white-space: nowrap;
    }

    .doc-price-value {
      font-family: 'Bebas Neue', cursive;
      font-size: 36px;
      color: var(--white);
      letter-spacing: 2px;
    }

    .doc-price-desc {
      font-size: 12px;
      color: var(--gray);
    }

    /* ========== PV PACKAGE ========== */
    #pvplan {
      padding: 120px 60px;
      background: #141414;
      position: relative;
    }

    .pvplan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 60px;
    }

    .pvplan-card {
      background: #1E1E1E;
      padding: 48px 36px;
      border: 1px solid rgba(201, 168, 76, 0.12);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .pvplan-card.premium {
      background: linear-gradient(160deg, #252218, #1C1A10);
      border-color: rgba(201, 168, 76, 0.35);
    }

    .pvplan-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 168, 76, 0.2);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.05);
    }

    .pvplan-number {
      font-family: 'Bebas Neue', cursive;
      font-size: 120px;
      color: rgba(201, 168, 76, 0.05);
      line-height: 1;
      position: absolute;
      right: -10px;
      top: 10px;
    }

    .pvplan-label {
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }

    .pvplan-name {
      font-family: 'Bebas Neue', cursive;
      font-size: 48px;
      letter-spacing: 4px;
      margin-bottom: 24px;
      line-height: 1;
    }

    .pvplan-price {
      font-size: 40px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 4px;
      line-height: 1;
    }

    .pvplan-price-unit {
      font-size: 11px;
      color: var(--gray);
      letter-spacing: 2px;
      margin-bottom: 32px;
    }

    .pvplan-divider {
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      opacity: 0.2;
      margin-bottom: 28px;
    }

    .pvplan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pvplan-features li {
      font-size: 14px;
      color: #E0E0E0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-weight: 400;
      line-height: 1.6;
    }

    .pvplan-features li::before {
      content: '→';
      color: var(--gold);
      flex-shrink: 0;
      font-size: 11px;
      margin-top: 2px;
    }

    /* ========== ABOUT ========== */
    #about {
      padding: 120px 60px;
      background: #0D0D0D;
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      margin-top: 60px;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 32px;
    }

    .about-text h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .about-text p {
      font-size: 15px;
      color: var(--gray);
      line-height: 2.2;
      font-weight: 300;
      margin-bottom: 20px;
    }

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

    .stat-box {
      background: #1E1E1E;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
    }

    .stat-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 0;
      background: var(--gold);
      transition: height 0.5s ease;
    }

    .stat-box:hover::before {
      height: 100%;
    }

    .stat-number {
      font-family: 'Bebas Neue', cursive;
      font-size: 64px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 11px;
      color: var(--gray);
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 1.5;
    }

    /* ========== CTA ========== */
    #cta {
      padding: 160px 60px;
      background: #141414;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-logo {
      width: 220px;
      height: auto;
      margin: 0 auto 48px;
      filter: brightness(1.2) drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
      clip-path: inset(0 0 30% 0);
      display: block;
      opacity: 0.9;
    }

    .cta-sub {
      font-size: 14px;
      color: var(--gray);
      letter-spacing: 3px;
      margin-bottom: 60px;
      font-weight: 300;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* ========== FOOTER ========== */
    footer {
      padding: 60px;
      background: #0D0D0D;
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-logo {
      height: 36px;
      width: auto;
      clip-path: inset(0 0 30% 0);
    }

    .footer-copy {
      font-size: 12px;
      color: var(--gray);
      letter-spacing: 1px;
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      font-size: 11px;
      color: var(--gray);
      text-decoration: none;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    /* ========== VIDEO MODAL ========== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      position: relative;
      width: 90%;
      max-width: 900px;
      transform: scale(0.9);
      transition: transform 0.4s ease;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: -48px;
      right: 0;
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--gray);
      cursor: pointer;
      text-transform: uppercase;
      transition: color 0.3s;
      background: none;
      border: none;
    }

    .modal-close:hover {
      color: var(--gold);
    }

    .modal-video-wrap {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--dark-3);
      border: 1px solid rgba(201, 168, 76, 0.2);
      position: relative;
    }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 0.6;
      }
    }

    @keyframes float {
      0% {
        opacity: 0;
        transform: translateY(100vh);
      }

      10% {
        opacity: 0.6;
      }

      90% {
        opacity: 0.2;
      }

      100% {
        opacity: 0;
        transform: translateY(-100px);
      }
    }

    .reveal {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      nav {
        padding: 16px 24px;
      }

      nav.scrolled {
        padding: 12px 24px;
      }

      .nav-links {
        display: none;
      }

      #pv,
      #sns,
      #live,
      #documentary,
      #pvplan,
      #about,
      #cta,
      footer {
        padding: 72px 20px;
      }

      .plans-grid,
      .pvplan-grid {
        grid-template-columns: 1fr;
      }

      .live-plans {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .about-grid,
      .documentary-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      footer {
        flex-direction: column;
        text-align: center;
      }

      .plan-card,
      .live-card,
      .pvplan-card {
        padding: 36px 24px;
      }

      .live-crew {
        gap: 6px;
      }

      .crew-tag {
        font-size: 11px;
        padding: 6px 12px;
      }

      .img-section-content .big-label {
        font-size: clamp(40px, 12vw, 100px);
      }

      .pv-caption {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 2px;
      }
    }

    @media (max-width: 600px) {
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .doc-price-note {
        flex-direction: column;
        text-align: center;
      }

      .hero-logo {
        width: min(320px, 85vw);
      }

      .hero-tagline {
        font-size: 11px;
        letter-spacing: 3px;
      }

      .btn-primary,
      .btn-secondary,
      .btn-line {
        padding: 14px 32px;
        font-size: 11px;
        width: 220px;
        text-align: center;
      }

      .section-label {
        font-size: 9px;
        letter-spacing: 4px;
      }

      .plan-name,
      .live-plan-name,
      .pvplan-name {
        font-size: 36px;
      }

      .plan-price,
      .live-price {
        font-size: 28px;
      }

      .pvplan-price {
        font-size: 30px;
      }

      .documentary-content h2 {
        font-size: clamp(26px, 7vw, 40px);
      }

      .about-text h2 {
        font-size: clamp(26px, 7vw, 40px);
      }

      .stat-number {
        font-size: 48px;
      }

      footer {
        padding: 40px 20px;
        gap: 24px;
      }

      .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* ========== FLOATING CTA BUTTON ========== */
    .float-cta {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 5000;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .float-cta.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .float-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 16px 28px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      font-family: 'Noto Sans JP', sans-serif;
      box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45), 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: all 0.3s ease;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .float-cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .float-cta-btn:hover::before {
      transform: translateX(0);
    }

    .float-cta-btn span,
    .float-cta-btn svg {
      position: relative;
      z-index: 1;
    }

    .float-cta-btn svg {
      flex-shrink: 0;
    }

    .float-cta-pulse {
      position: absolute;
      top: -3px;
      right: -3px;
      width: 12px;
      height: 12px;
      background: #ff4444;
      border-radius: 50%;
      border: 2px solid var(--dark);
    }

    .float-cta-pulse::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid #ff4444;
      animation: pulse-ring 1.5s ease infinite;
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    /* ========== LINE BUTTONS ========== */
    .btn-line {
      border: 1px solid rgba(0, 185, 0, 0.5);
      color: #00b900;
      padding: 16px 40px;
      font-size: 12px;
      letter-spacing: 3px;
      text-decoration: none;
      font-weight: 400;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-line:hover {
      border-color: #00b900;
      background: rgba(0, 185, 0, 0.1);
    }

    .float-cta-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #141414;
      color: #00b900;
      border: 1px solid rgba(0, 185, 0, 0.4);
      padding: 16px 28px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      font-family: 'Noto Sans JP', sans-serif;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      transition: all 0.3s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .float-cta-line:hover {
      border-color: #00b900;
      background: rgba(0, 185, 0, 0.08);
      transform: translateY(-2px);
    }

    .inquiry-line-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #1E1E1E;
      border: 1px solid rgba(0, 185, 0, 0.4);
      color: #00b900;
      padding: 16px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-decoration: none;
      margin-top: 16px;
      transition: all 0.3s ease;
    }

    .inquiry-line-btn:hover {
      border-color: #00b900;
      background: rgba(0, 185, 0, 0.08);
    }

    /* ========== INQUIRY MODAL ========== */
    .inquiry-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.92);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 20px;
    }

    .inquiry-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .inquiry-modal {
      background: #141414;
      border: 1px solid rgba(201, 168, 76, 0.25);
      width: 100%;
      max-width: 640px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(30px) scale(0.97);
      transition: transform 0.4s ease;
      scrollbar-width: thin;
      scrollbar-color: var(--gold) transparent;
    }

    .inquiry-overlay.active .inquiry-modal {
      transform: translateY(0) scale(1);
    }

    .inquiry-modal::-webkit-scrollbar {
      width: 4px;
    }

    .inquiry-modal::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 2px;
    }

    .inquiry-header {
      padding: 36px 36px 24px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
      position: sticky;
      top: 0;
      background: #141414;
      z-index: 1;
    }

    .inquiry-header-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .inquiry-label {
      font-size: 10px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .inquiry-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.3;
    }

    .inquiry-close {
      background: none;
      border: 1px solid rgba(201, 168, 76, 0.25);
      color: var(--gray);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .inquiry-close:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201, 168, 76, 0.1);
    }

    .inquiry-body {
      padding: 28px 36px 36px;
    }

    .inquiry-step-label {
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .inquiry-step-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(201, 168, 76, 0.2);
    }

    .service-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 28px;
    }

    .service-card {
      border: 1px solid rgba(201, 168, 76, 0.15);
      background: #1E1E1E;
      padding: 22px 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      text-align: left;
      width: 100%;
    }

    .service-card:hover {
      border-color: rgba(201, 168, 76, 0.4);
      background: rgba(201, 168, 76, 0.05);
    }

    .service-card.selected {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.08);
    }

    .service-card.selected::after {
      content: '\2713';
      position: absolute;
      top: 10px;
      right: 12px;
      color: var(--gold);
      font-size: 14px;
      font-weight: 700;
    }

    .service-card-icon {
      font-size: 22px;
      margin-bottom: 8px;
      display: block;
    }

    .service-card-name {
      font-family: 'Bebas Neue', cursive;
      font-size: 20px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 4px;
      line-height: 1;
    }

    .service-card-desc {
      font-size: 11px;
      color: var(--gray);
      line-height: 1.6;
    }

    .plan-select-area {
      margin-bottom: 24px;
      display: none;
    }

    .plan-select-area.active {
      display: block;
    }

    .plan-select-title {
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .plan-radio-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .plan-radio {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border: 1px solid rgba(201, 168, 76, 0.15);
      background: #1E1E1E;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .plan-radio:hover {
      border-color: rgba(201, 168, 76, 0.35);
    }

    .plan-radio input[type="radio"] {
      display: none;
    }

    .plan-radio-dot {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(201, 168, 76, 0.4);
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      transition: border-color 0.3s ease;
    }

    .plan-radio-dot::after {
      content: '';
      position: absolute;
      inset: 3px;
      background: var(--gold);
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.2s ease;
    }

    .plan-radio.checked {
      border-color: rgba(201, 168, 76, 0.4);
      background: rgba(201, 168, 76, 0.06);
    }

    .plan-radio.checked .plan-radio-dot {
      border-color: var(--gold);
    }

    .plan-radio.checked .plan-radio-dot::after {
      transform: scale(1);
    }

    .plan-radio-text {
      flex: 1;
    }

    .plan-radio-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 1px;
      margin-bottom: 2px;
    }

    .plan-radio-price {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .inquiry-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-field label {
      display: block;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      background: #1E1E1E;
      border: 1px solid rgba(201, 168, 76, 0.2);
      color: var(--white);
      padding: 13px 15px;
      font-size: 14px;
      font-family: 'Noto Sans JP', sans-serif;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.03);
    }

    .form-field textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #555;
    }

    .form-required {
      color: #ff6b6b;
      margin-left: 3px;
    }

    .inquiry-submit {
      width: 100%;
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 17px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Noto Sans JP', sans-serif;
      transition: all 0.3s ease;
      margin-top: 6px;
      position: relative;
      overflow: hidden;
    }

    .inquiry-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .inquiry-submit:hover::before {
      transform: translateX(0);
    }

    .inquiry-submit span {
      position: relative;
      z-index: 1;
    }

    .inquiry-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .inquiry-submit:disabled::before {
      display: none;
    }

    .inquiry-note {
      text-align: center;
      font-size: 11px;
      color: var(--gray);
      margin-top: 10px;
      line-height: 1.8;
    }

    .inquiry-success {
      display: none;
      text-align: center;
      padding: 56px 36px;
    }

    .inquiry-success.active {
      display: block;
    }

    .inquiry-success-icon {
      font-size: 48px;
      margin-bottom: 18px;
      display: block;
    }

    .inquiry-success h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      margin-bottom: 12px;
      color: var(--gold);
    }

    .inquiry-success p {
      font-size: 14px;
      color: var(--gray);
      line-height: 2;
    }

    @media (max-width: 600px) {
      .float-cta {
        bottom: 20px;
        right: 14px;
      }

      .float-cta-btn,
      .float-cta-line {
        padding: 13px 18px;
        font-size: 12px;
      }

      .inquiry-header {
        padding: 24px 20px 18px;
      }

      .inquiry-body {
        padding: 20px 20px 28px;
      }

      .inquiry-title {
        font-size: 20px;
      }

      .service-card {
        padding: 16px 12px;
      }

      .service-card-name {
        font-size: 17px;
      }
    }
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
