/* ========================================
   固定ページコンテンツスタイル - les SALON
   極上おしゃれバージョン
   ======================================== */

/* ===== 共通コンテナ ===== */
.equipment-detail-page,
.page-content,
.service-detail {
  background: #fff;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== ページヘッダー ===== */
.page-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
}

/* ===== メイン画像エリア（画像をおしゃれに） ===== */
.equipment-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.equipment-image-main {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.equipment-image-main img {
  width: 100%;
  height: auto;
  display: block;
  /* 画像の粗さを隠す */
  filter: brightness(1.02) contrast(1.05);
  object-fit: cover;
  max-height: 500px;
}

.equipment-image-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== セクションヘッダー ===== */
.section-header {
  margin-bottom: 3rem;
}

.section-subtitle-small {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F4D03F);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== 本文テキスト ===== */
.about-content,
.page-content,
.service-detail {
  font-size: 1.0625rem;
  line-height: 2;
  color: #333;
}

.about-content p,
.page-content p,
.service-detail p {
  margin: 1.75rem 0;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 2rem 0 !important;
  padding: 1.5rem;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFEF8 100%);
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

/* ===== マーカー強調 ===== */
.about-content strong,
.page-content strong,
.service-detail strong {
  background: linear-gradient(transparent 60%, rgba(255, 224, 102, 0.8) 60%);
  font-weight: 700;
  padding: 0 0.25rem;
  position: relative;
}

/* ===== ハイライトボックス ===== */
.highlight-box {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  border-left: 5px solid #D4AF37;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

.highlight-box h3 {
  color: #D4AF37;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.highlight-box p {
  margin: 0 !important;
  line-height: 1.9;
}

/* ===== 比較表（超おしゃれ） ===== */
.comparison-table-wrapper,
.comparison-table-detailed {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.comparison-table,
.comparison-table-detailed table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.comparison-table thead,
.comparison-table-detailed thead {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #fff;
}

.comparison-table th,
.comparison-table-detailed th {
  padding: 1.25rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.0625rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child,
.comparison-table-detailed th:last-child {
  border-right: none;
}

.comparison-table th:first-child,
.comparison-table-detailed th:first-child {
  text-align: left;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
}

.comparison-table td,
.comparison-table-detailed td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #f5f5f5;
  font-size: 0.9375rem;
}

.comparison-table td:first-child,
.comparison-table-detailed td:first-child {
  font-weight: 600;
  text-align: left;
  background: #FAFAFA;
  color: #333;
}

.comparison-table tbody tr:last-child td,
.comparison-table-detailed tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover,
.comparison-table-detailed tbody tr:hover {
  background: #FFFEF8;
  transition: background 0.3s ease;
}

/* ハイライト列 */
.comparison-table .highlight-col,
.comparison-table-detailed .highlight-col {
  background: linear-gradient(180deg, #FFF9E6 0%, #FFFEF8 100%);
  font-weight: 600;
  border-left: 3px solid #D4AF37;
  border-right: 3px solid #D4AF37;
}

.comparison-table tbody tr:hover .highlight-col,
.comparison-table-detailed tbody tr:hover .highlight-col {
  background: linear-gradient(180deg, #FFF5CC 0%, #FFF9E6 100%);
}

/* 評価アイコン */
.comparison-table .excellent,
.comparison-table-detailed .excellent {
  color: #D4AF37;
  font-weight: 900;
  font-size: 1.25rem;
}

.comparison-table .good,
.comparison-table-detailed .good {
  color: #27AE60;
  font-weight: 700;
  font-size: 1.125rem;
}

.comparison-table .bad,
.comparison-table-detailed .bad {
  color: #E74C3C;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===== 特徴カード ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.8;
  color: #666;
}

/* ===== フロー（施術の流れ） ===== */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.flow-step {
  text-align: center;
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.step-image {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  /* 画像の粗さを隠す */
  filter: brightness(1.02) contrast(1.05);
  object-fit: cover;
  max-height: 300px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0 0.75rem;
}

.step-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ===== 画像プレースホルダー ===== */
.image-placeholder {
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #999;
  border: 2px dashed #ddd;
  border-radius: 8px;
}

.image-placeholder p {
  margin: 0.5rem 0 !important;
  font-size: 1rem;
}

.image-placeholder .small {
  font-size: 0.875rem;
  color: #bbb;
}

/* ===== リスト ===== */
.specs-list,
.features-list,
ul.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.specs-list li,
.features-list li,
ul.checklist li {
  padding: 1rem 1rem 1rem 3rem;
  margin: 0.5rem 0;
  background: #fff;
  border-left: 3px solid #D4AF37;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.specs-list li::before,
.features-list li::before,
ul.checklist li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: #D4AF37;
  font-weight: 900;
  font-size: 1.25rem;
}

.specs-list li:nth-child(even),
.features-list li:nth-child(even),
ul.checklist li:nth-child(even) {
  background: #FAFAFA;
}

/* ===== モバイル対応 ===== */
@media (max-width: 767px) {
  .page-hero {
    padding: 3rem 1rem 2rem;
  }
  
  .equipment-hero {
    padding: 2rem 0;
  }
  
  .equipment-image-main {
    margin: 0 1rem;
  }
  
  .container-narrow {
    padding: 0 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .about-content,
  .page-content,
  .service-detail {
    font-size: 1rem;
    line-height: 1.9;
  }
  
  .lead-text {
    font-size: 1.0625rem;
    padding: 1.25rem;
    margin: 1.5rem 0 !important;
  }
  
  .highlight-box {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .features-grid,
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

