/* ==========================================================================
   HDD物理破壊サービス - Style_HDDDestruction.css
   シンプルバージョン + 破壊機情報
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  /* Primary Colors - Corporate */
  --primary: #1C5B99;
  --primary-light: #2A7BC8;
  --primary-dark: #0F3A5F;
  
  /* Accent Colors */
  --neon-cyan: #00DCFF;
  --neon-blue: #0091FF;
  
  /* Danger Colors */
  --danger-red: #FF4757;
  --danger-orange: #FF6B35;
  
  /* Dark Theme */
  --dark-950: #0A0F1C;
  --dark-900: #0D1421;
  --dark-800: #151C2C;
  
  /* Light Theme */
  --light-50: #F8FAFC;
  --light-100: #F1F5F9;
  --light-200: #E2E8F0;
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-gray: #94A3B8;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  /* Typography */
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Outfit', sans-serif;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --duration-base: 0.3s;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   GLOBAL RESETS FOR FULL WIDTH
   ========================================================================== */
body.page-template-hdddestruction #page,
body.page-template-hdddestruction .site,
body.page-template-hdddestruction .site-content,
body.page-template-hdddestruction #content,
body.page-template-hdddestruction .content-area,
body.page-template-hdddestruction .inside-article,
body.page-template-hdddestruction article,
body.page-template-hdddestruction .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.page-template-hdddestruction .site-main {
  margin: 0 !important;
  padding: 0 !important;
}

.main-content {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   SECTION HEADER - 共通
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-tag--danger {
  background: linear-gradient(135deg, var(--danger-red), var(--danger-orange));
}

.section-tag--light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.section-title {
  font-family: var(--font-ja);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
}

.section-title--light {
  color: var(--text-white);
}

.section-title-highlight {
  color: var(--danger-red);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hdd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-950) 0%, #0D1B2A 50%, var(--primary-dark) 100%);
  overflow: hidden;
  width: 100%;
}

/* サイバーグリッド背景 */
.hdd-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 220, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 220, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* 警告パルス */
.hero-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 71, 87, 0.1);
  animation: pulseWarn 3s ease-out infinite;
}

.hero-pulse:nth-child(2) {
  animation-delay: 1s;
}

.hero-pulse:nth-child(3) {
  animation-delay: 2s;
}

@keyframes pulseWarn {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.hdd-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.hdd-hero-text {
  color: var(--text-white);
}

.hdd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hdd-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--danger-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--danger-red);
}

.hdd-hero-badge-text {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--danger-red);
  letter-spacing: 0.1em;
}

.hdd-hero-label {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
}

.hdd-hero-title {
  font-family: var(--font-ja);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.hdd-hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hdd-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.hdd-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-out);
}

.hero-badge:hover {
  background: rgba(0, 220, 255, 0.1);
  border-color: var(--neon-cyan);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--neon-cyan);
}

.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

/* Hero Visual - サイバー破壊システム */
.hdd-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-crusher {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 回転リング */
.cyber-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.cyber-ring--outer {
  width: 380px;
  height: 380px;
  border-color: rgba(0, 220, 255, 0.15);
  border-top-color: var(--neon-cyan);
  border-right-color: var(--neon-cyan);
  animation: ringRotate 8s linear infinite;
  box-shadow: 
    0 0 30px rgba(0, 220, 255, 0.1),
    inset 0 0 30px rgba(0, 220, 255, 0.05);
}

.cyber-ring--middle {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 71, 87, 0.15);
  border-bottom-color: var(--danger-red);
  border-left-color: var(--danger-red);
  animation: ringRotate 6s linear infinite reverse;
  box-shadow: 
    0 0 20px rgba(255, 71, 87, 0.1),
    inset 0 0 20px rgba(255, 71, 87, 0.05);
}

.cyber-ring--inner {
  width: 220px;
  height: 220px;
  border-color: rgba(0, 220, 255, 0.2);
  border-top-color: var(--neon-cyan);
  animation: ringRotate 4s linear infinite;
  box-shadow: 0 0 40px rgba(0, 220, 255, 0.15);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* スキャンライン */
.scan-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  animation: scanMove 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--neon-cyan);
}

@keyframes scanMove {
  0%, 100% { transform: translateY(-100px) scaleX(0.5); opacity: 0; }
  50% { transform: translateY(0) scaleX(1); opacity: 1; }
  100% { transform: translateY(100px) scaleX(0.5); opacity: 0; }
}

/* 中央コア */
.crusher-core {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 71, 87, 0.3) 0%, transparent 70%);
  animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.core-center {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.05));
  border: 2px solid var(--danger-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(255, 71, 87, 0.4),
    inset 0 0 20px rgba(255, 71, 87, 0.2);
  z-index: 5;
}

.core-center svg {
  width: 40px;
  height: 40px;
  stroke: var(--danger-red);
  filter: drop-shadow(0 0 10px var(--danger-red));
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* 破壊されるHDDフラグメント */
.target-hdd {
  position: absolute;
  width: 120px;
  height: 120px;
}

.hdd-fragment {
  position: absolute;
  background: linear-gradient(135deg, #3a4050, #2a2e38);
  border: 1px solid #4a5060;
  box-shadow: 0 0 10px rgba(0, 220, 255, 0.3);
}

.hdd-fragment--1 {
  width: 30px;
  height: 25px;
  top: 10px;
  left: 10px;
  animation: fragment1 3s ease-in-out infinite;
}

.hdd-fragment--2 {
  width: 25px;
  height: 30px;
  top: 10px;
  right: 10px;
  animation: fragment2 3s ease-in-out infinite;
}

.hdd-fragment--3 {
  width: 28px;
  height: 22px;
  bottom: 15px;
  left: 15px;
  animation: fragment3 3s ease-in-out infinite;
}

.hdd-fragment--4 {
  width: 22px;
  height: 28px;
  bottom: 10px;
  right: 15px;
  animation: fragment4 3s ease-in-out infinite;
}

@keyframes fragment1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
  50% { transform: translate(-40px, -40px) rotate(-20deg); opacity: 0; }
}

@keyframes fragment2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
  50% { transform: translate(40px, -40px) rotate(20deg); opacity: 0; }
}

@keyframes fragment3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
  50% { transform: translate(-40px, 40px) rotate(-15deg); opacity: 0; }
}

@keyframes fragment4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
  50% { transform: translate(40px, 40px) rotate(15deg); opacity: 0; }
}

/* データストリーム */
.data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.data-stream {
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--neon-cyan), transparent);
  opacity: 0.6;
}

.data-stream--1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: streamFlow 1.5s ease-in-out infinite;
}

.data-stream--2 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  animation: streamFlow 1.5s ease-in-out infinite 0.4s;
}

.data-stream--3 {
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(-90deg);
  animation: streamFlow 1.5s ease-in-out infinite 0.8s;
}

.data-stream--4 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  animation: streamFlow 1.5s ease-in-out infinite 1.2s;
}

@keyframes streamFlow {
  0%, 100% { opacity: 0; height: 30px; }
  50% { opacity: 0.8; height: 80px; }
}

/* 圧壊インジケーター */
.crush-indicators {
  position: absolute;
  width: 100%;
  height: 100%;
}

.crush-indicator {
  position: absolute;
  display: flex;
  gap: 4px;
}

.crush-indicator span {
  width: 8px;
  height: 8px;
  background: var(--danger-red);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: indicatorPulse 1s ease-in-out infinite;
  box-shadow: 0 0 10px var(--danger-red);
}

.crush-indicator span:nth-child(2) { animation-delay: 0.15s; }
.crush-indicator span:nth-child(3) { animation-delay: 0.3s; }

.crush-indicator--top {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.crush-indicator--bottom {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.crush-indicator--left {
  left: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.crush-indicator--right {
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

@keyframes indicatorPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* サイバーステータス */
.cyber-status {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.5);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--danger-red);
  border-radius: 50%;
  animation: statusBlink 0.8s ease-in-out infinite;
  box-shadow: 0 0 10px var(--danger-red);
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cyber-status .status-text {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--danger-red);
  letter-spacing: 0.15em;
}

/* 統計カード */
.hero-stat-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-stat-card {
  position: absolute;
  background: rgba(10, 15, 28, 0.95);
  border: 1px solid rgba(255, 71, 87, 0.4);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  animation: cardFloat 5s ease-in-out infinite;
  pointer-events: auto;
  min-width: 160px;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--danger-red), transparent);
}

.hero-stat-card:nth-child(1) {
  top: 0;
  right: 0;
}

.hero-stat-card:nth-child(2) {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.hero-stat-card:nth-child(3) {
  bottom: 60px;
  left: -20px;
  animation-delay: 1s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-stat-card:nth-child(2) {
  animation-name: cardFloat2;
}

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* 法令カードスタイル */
.hero-stat-card--law {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.hero-stat-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--danger-red);
  filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.5));
}

.hero-stat-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.hero-stat-card-text {
  font-size: 11px;
  color: var(--danger-red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   RISK SECTION - リスク
   ========================================================================== */
.hdd-risk {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--light-50);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.risk-card {
  position: relative;
  background: var(--text-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  transition: all var(--duration-base) var(--ease-out);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--danger-red), var(--danger-orange)) 1;
}

.risk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 71, 87, 0.15);
}

.risk-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 71, 87, 0.1);
  line-height: 1;
}

.risk-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.risk-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--danger-red);
}

.risk-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.risk-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   REASON SECTION - 選ばれる理由
   ========================================================================== */
.hdd-reason {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-950) 0%, var(--primary-dark) 100%);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.reason-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration-base) var(--ease-out);
}

.reason-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0, 220, 255, 0.3);
  transform: translateY(-4px);
}

.reason-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.reason-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.15), rgba(0, 220, 255, 0.05));
  border: 1px solid rgba(0, 220, 255, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--neon-cyan);
  fill: none;
}

.reason-number {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.reason-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.reason-card-header h3 {
  margin-top: 8px;
}

.reason-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
}

/* 特別カード（ISO認証） */
.reason-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.08), rgba(0, 145, 255, 0.05));
  border-color: rgba(0, 220, 255, 0.3);
}

.reason-card--featured .reason-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.reason-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}

.reason-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 220, 255, 0.1);
  border: 1px solid rgba(0, 220, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-cyan);
}

.reason-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--neon-cyan);
}

.reason-featured-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-badge {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.15), rgba(0, 220, 255, 0.05));
  border: 3px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 40px rgba(0, 220, 255, 0.2),
    inset 0 0 30px rgba(0, 220, 255, 0.1);
}

.iso-badge-number {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 220, 255, 0.5);
}

.iso-badge-text {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   EQUIPMENT SECTION - 破壊機紹介
   ========================================================================== */
.hdd-equipment {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--text-white);
}

.equipment-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.equipment-image {
  position: relative;
}

.equipment-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--light-100);
  padding: var(--space-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.equipment-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* 写真プレースホルダー */
.equipment-placeholder {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--light-100), var(--light-200));
  border: 2px dashed var(--light-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.equipment-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: var(--text-muted);
  opacity: 0.5;
}

.equipment-placeholder p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.equipment-placeholder span {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

.equipment-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(28, 91, 153, 0.4);
}

.equipment-info {
  color: var(--text-dark);
}

.equipment-header {
  margin-bottom: var(--space-xl);
}

.equipment-maker {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-xs);
  display: block;
}

.equipment-name {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.equipment-type {
  font-size: 1rem;
  color: var(--text-muted);
}

.equipment-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.equipment-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.equipment-feature:hover {
  background: var(--text-white);
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(28, 91, 153, 0.1);
}

.equipment-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.equipment-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-white);
}

.equipment-feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  margin-top: 0;
}

.equipment-feature-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.equipment-specs {
  background: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.equipment-specs-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.equipment-specs-title svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.equipment-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.equipment-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  background: var(--text-white);
  border-radius: var(--radius-sm);
}

.spec-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.spec-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

/* ==========================================================================
   MEDIA SECTION - 対応メディア
   ========================================================================== */
.hdd-media {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--light-50);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.media-card {
  position: relative;
  background: var(--text-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
  border: 2px solid transparent;
}

.media-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(28, 91, 153, 0.15);
}

.media-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--text-white);
}

.media-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ==========================================================================
   FLOW SECTION - ご利用の流れ
   ========================================================================== */
.hdd-flow {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--text-white);
}

.flow-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--primary));
  border-radius: 2px;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step:last-child .flow-number::after {
  display: none;
}

/* 最後のステップの後の線を消す */
.flow-timeline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 3px;
  height: 40px;
  background: var(--light-50);
  z-index: 1;
}

.flow-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(28, 91, 153, 0.3);
  position: relative;
  z-index: 2;
}

.flow-content {
  background: var(--light-50);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--light-200);
  transition: all var(--duration-base) var(--ease-out);
}

.flow-content:hover {
  background: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(28, 91, 153, 0.1);
}

.flow-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: 0;
}

.flow-title-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-white);
}

.flow-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   PRICE SECTION - 料金
   ========================================================================== */
.hdd-price {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-950) 0%, var(--primary-dark) 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.price-card--main {
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.1), rgba(0, 145, 255, 0.05));
  border: 2px solid rgba(0, 220, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 24px 12px;
  text-align: center;
}

.price-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.price-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-xs);
}

.price-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 900;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 220, 255, 0.5);
}

.price-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.price-tax {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.price-note {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.price-note p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.8;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.price-option-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.price-option-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 220, 255, 0.3);
}

.price-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.price-option-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.price-option-badge {
  padding: 4px 10px;
  background: rgba(0, 220, 255, 0.15);
  border: 1px solid rgba(0, 220, 255, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
}

.price-option-amount {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: var(--space-sm);
}

.price-option-amount span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

.price-option-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.hdd-cta {
  position: relative;
  padding: 100px 0;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-950) 0%, var(--primary-dark) 100%);
}

.hdd-cta .cta-inner {
  text-align: center;
}

.hdd-cta .cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.hdd-cta .cta-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: var(--space-2xl);
}

.hdd-cta .cta-box {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.hdd-cta .cta-contact {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
  justify-content: center;
}

.hdd-cta .cta-phone {
  display: block !important;
  text-align: center;
}

.hdd-cta .cta-phone-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: var(--space-sm);
}

.hdd-cta .cta-phone-number {
  display: block !important;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.hdd-cta .cta-phone-number:hover {
  text-shadow: 0 0 20px rgba(0, 220, 255, 0.5);
}

.hdd-cta .cta-phone-time {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: var(--space-xs);
}

.hdd-cta .cta-divider {
  display: block !important;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 220, 255, 0.3), transparent);
}

.hdd-cta .cta-form {
  display: block !important;
  text-align: center;
}

.hdd-cta .cta-form p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.hdd-cta .btn--neon {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--dark-950);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 220, 255, 0.3);
}

.hdd-cta .btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 220, 255, 0.5);
}

.hdd-cta .btn--neon .arrow {
  transition: transform var(--duration-base) var(--ease-out);
}

.hdd-cta .btn--neon:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hdd-hero-content {
    grid-template-columns: 1fr;
    padding: 0 40px;
    text-align: center;
  }
  
  .hdd-hero-visual {
    display: none;
  }
  
  .hdd-hero-badges {
    justify-content: center;
  }
  
  .risk-grid {
    grid-template-columns: 1fr;
  }
  
  .reason-grid {
    grid-template-columns: 1fr;
  }
  
  .reason-card--featured .reason-card-inner {
    grid-template-columns: 1fr;
  }
  
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .price-grid {
    grid-template-columns: 1fr;
  }
  
  .equipment-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .equipment-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .equipment-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hdd-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hdd-hero-content {
    padding: 0 24px;
  }
  
  .hdd-risk,
  .hdd-reason,
  .hdd-media,
  .hdd-flow,
  .hdd-price,
  .hdd-faq,
  .hdd-equipment {
    padding: var(--space-2xl) 0;
  }
  
  .hdd-cta {
    padding: 80px 0;
  }
  
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-timeline::before {
    left: 30px;
  }
  
  .flow-timeline::after {
    left: 30px;
  }
  
  .flow-step {
    grid-template-columns: 60px 1fr;
  }
  
  .flow-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  .hdd-cta .cta-contact {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hdd-cta .cta-phone-number {
    font-size: 2rem;
  }
  
  .hdd-cta .cta-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.3), transparent);
  }
  
  .section-header {
    text-align: left;
  }
  
  .faq-answer-inner {
    padding-left: var(--space-lg);
  }
  
  .equipment-showcase {
    gap: var(--space-lg);
  }
  
  .equipment-name {
    font-size: 1.8rem;
  }
  
  .equipment-feature {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .equipment-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .equipment-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .equipment-feature-content h4 {
    font-size: 14px;
  }
  
  .equipment-feature-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .media-card {
    padding: var(--space-md);
  }
  
  .media-icon {
    width: 60px;
    height: 60px;
  }
  
  .media-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .price-number {
    font-size: 3rem;
  }
  
  .reason-featured-visual {
    display: none;
  }
}