@charset "utf-8";

/* 機器・設備紹介ページ - TOPページ基準統一デザイン */

/* 既存のpage-heroクラスは削除し、統一されたheroクラスを使用 */
/* subpage-unified.cssのheroスタイルが適用されます */

/* ==========================================================================
   機器・設備ページ専用コンテンツスタイル（TOPページ基準）
   ========================================================================== */

/* 機器・設備コンテンツエリア - 統一デザイン */
.equipment__content {
  background: #ffffff;
  margin-top: -80px;
  position: relative;
  z-index: 3;
  border-radius: 20px 20px 0 0;
  padding: 80px 60px;
  min-height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* セクションタイトルシステム（TOPページ準拠） */
.sectionTtl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4rem;
  text-align: center;
}

.sectionTtl .en {
  font-family: var(--font_MavenPro, 'Maven Pro', sans-serif);
  font-size: 5.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  order: 1;
  color: #2c3e50;
}

.sectionTtl .ja {
  color: var(--col_primary, #e11f1f);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  order: 2;
  position: relative;
  padding-left: 22px;
}

/* Icon decoration removed per user request */

/* h2--whiteスタイル */
h2.h2--white, .h2--white {
  color: white;
}

h2.h2--white .en, .h2--white .en {
  color: white;
}

h2.h2--white .ja, .h2--white .ja {
  color: rgba(255, 255, 255, 0.9);
}

/* 重複削除: 機器・設備コンテンツは13行目で既に定義済み */

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495057;
  margin-top: 20px;
}

.section-header__subtitle .red {
  color: var(--col_primary);
  font-weight: 600;
}

/* 設備セクション共通スタイル - 統一デザイン */
.equipment__sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.equipment__section {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f0f0f0;
}

.section__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--col_primary), #ff6b6b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font_MavenPro);
  flex-shrink: 0;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.section__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 32px;
}

/* 設備リスト - ワイドレスポンシブグリッド */
.equipment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.equipment__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  will-change: auto;
}

.equipment__item::before {
  display: none;
}

.equipment__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}


.equipment__item--single {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.item__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  aspect-ratio: 3/2;
}

.item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
  image-rendering: auto;
  contain: layout style;
  display: block;
}


.item__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.item__model {
  font-size: 1rem;
  color: var(--col_primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.item__specs {
  background: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.spec__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec__item:last-child {
  border-bottom: none;
}

.spec__item dt {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.875rem;
}

.spec__item dd {
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

/* フィーチャーリスト */
.item__features {
  background: white;
  border-radius: 8px;
  padding: 20px;
}

.features__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
}

.features__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #495057;
}

.features__list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--col_primary);
  font-weight: 700;
}

/* 品質管理セクション */
.equipment__quality {
  margin-bottom: 80px;
}

.quality__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.quality__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.quality__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--col_primary), #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality__icon img {
  filter: brightness(0) invert(1);
}

.quality__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.quality__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

/* 設備一覧表 */
.equipment__table {
  margin-bottom: 80px;
}

.table__content {
  margin-top: 3rem;
}

.table__responsive {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.equipment__spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.equipment__spec-table thead th {
  background: #f8f9fa;
  padding: 20px 16px;
  font-weight: 700;
  color: #2c3e50;
  border-bottom: 2px solid #e9ecef;
  text-align: left;
  font-size: 0.875rem;
}

.equipment__spec-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.875rem;
  color: #495057;
  vertical-align: top;
}

.equipment__spec-table tbody tr:last-child td {
  border-bottom: none;
}

.category-cell {
  background: #f8f9fa;
  font-weight: 700;
  color: var(--col_primary);
  border-right: 2px solid #e9ecef;
}

.table__note {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
}

.table__note p {
  margin: 0 0 8px 0;
}

.table__note p:last-child {
  margin-bottom: 0;
}

/* 注意: CTAセクションは共通コンポーネント /parts/components/contact-cta.php を使用してください */
/* このページ固有のCTAスタイルは削除されました */

/* アニメーションクラスはcommon.cssで定義済み - 重複削除 */

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .equipment__content {
    padding: 60px 32px;
  }
  
  .sectionTtl .en {
    font-size: 4rem;
  }
  
  .equipment__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .equipment__item--single {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section__title {
    font-size: 1.75rem;
  }
  
  .equipment__cta {
    padding: 40px 24px;
    margin: 60px 16px;
  }
  
  .quality__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .equipment__content {
    padding: 40px 24px;
    margin-top: -50px;
  }
  
  .sectionTtl .en {
    font-size: 3rem;
  }
  
  .sectionTtl .ja {
    font-size: 1.125rem;
  }
  
  .section__header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .section__number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .section__title {
    font-size: 1.5rem;
  }
  
  .equipment__sections {
    gap: 60px;
  }
  
  .equipment__section {
    padding: 24px 20px;
  }
  
  .quality__item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .equipment__cta {
    padding: 32px 20px;
    margin: 40px 16px;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .table__responsive {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sectionTtl .en {
    font-size: 2.5rem;
  }
  
  .equipment__content {
    padding: 32px 16px;
  }
  
  .equipment__cta {
    padding: 24px 16px;
  }
  
  .equipment__section {
    padding: 20px 16px;
  }
}