/* ===================== PRODUCT AQUACULTURE 専用スタイル ===================== */

/* ===================== 横スクロール防止 ===================== */
/* 横スクロールを防ぐために全体に設定（stickyを妨げないようにclipを使用） */
html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

/* ===================== Layout Helpers ===================== */
/* Productページ共通のスタイル */

/* スクロールアニメーション：下から上にフェードイン */
/* 初期状態では非表示で下側に配置（ビューポートに入る前の状態） */
.io-fadeup {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

/* ビューポートに入ったときに下からフェードインして表示されるアニメーション */
.io-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Productページ全体のコンテナ（全幅、背景色#F5F1EB） */
.product-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  background: #F5F1EB;
}

/* ===================== PRODUCT セクション ===================== */
/* Productページのヘッダーセクション（全幅、白背景、中央揃え） */
.product-page__product-section {
  width: 100%;
  margin: 0;
  padding: 80px 1rem 40px;
  text-align: center;
  background: #fff;
}

/* Productページのヘッダータイトル（超大サイズ、太字、黒色） */
.product-page__product-title {
  font-weight: 900;
  font-size: 80px;
  line-height: 1.3;
  letter-spacing: 0.28em;
  margin: 0 0 24px;
  color: #d8d8d8;
}

/* Productページのヘッダーサブタイトル（小サイズ、オレンジ色） */
.product-page__product-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  color: #888888;
}

/* ===================== CTAセクション ===================== */
/* CTAセクション（全幅、縦方向フレックス、中央揃え） */
.top__cta {
  width: 100%;
  max-width: none;
  margin: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0;
  min-height: auto;
}

/* CTAセクションは左右の余白をなくして全幅で配置（alignfull想定） */
.top__cta.top__section {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* CTAセクションのコンテナ（横並びフレックス、高さ380px固定） */
.top__cta-container {
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  height: 380px;
}

/* CTAセクションの各項目（中央揃え、ホバー時に拡大） */
.top__cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: flex-grow 0.3s ease, opacity 0.3s ease;
  padding: clamp(40px, 8vw, 80px) 0;
  height: 100%;
}

/* CTAセクションの各項目のホバー状態（透明度変化、拡大） */
.top__cta-item:hover {
  opacity: 0.9;
  flex-grow: 1.5;
}

/* CTAセクションの各項目のホバー時にアイコンのトランジションを設定 */
.top__cta-item:hover .top__cta-icon {
  transition: transform 0.3s ease;
}

/* CTAセクションの問い合わせ項目（透明背景、黒文字、オーバーレイ付き） */
.top__cta-item--contact {
  background-color: transparent;
  color: #ffffff;
  position: relative;
}

/* CTAセクションの問い合わせ項目のオーバーレイ（ライトグレー背景、ポインターイベント無効） */
.top__cta-item--contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: 1;
  pointer-events: none;
}

/* CTAセクションの問い合わせ項目の子要素（z-index設定） */
.top__cta-item--contact > * {
  position: relative;
  z-index: 2;
}

/* CTAセクションの問い合わせ項目のテキスト（黒色） */
.top__cta-item--contact .top__cta-english {
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
}

.top__cta-item--contact .top__cta-japanese {
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
}

/* CTAセクションの資料DL項目（透明背景、黒文字、オーバーレイ付き） */
.top__cta-item--download {
  background-color: transparent;
  color: #ffffff;
  position: relative;
}

/* CTAセクションの資料DL項目のオーバーレイ（ライトグレー背景、ポインターイベント無効） */
.top__cta-item--download::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: 1;
  pointer-events: none;
}

/* CTAセクションの資料DL項目の子要素（z-index設定） */
.top__cta-item--download > * {
  position: relative;
  z-index: 2;
}

/* CTAセクションの資料DL項目のテキスト（黒色） */
.top__cta-item--download .top__cta-english,
.top__cta-item--download .top__cta-japanese {
  color: #ffffff;
}

/* CTAセクションのアイコン（中央揃え、ホバー時に変形） */
.top__cta-icon {
  margin-bottom: clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* CONTACT / SHOP の文字を囲む白枠ボックス */
.top__cta-text-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  position: relative;
  z-index: 3;
}

/* 枠ボックス内ではアイコン下の余白をなくす */
.top__cta-text-box .top__cta-icon {
  margin-bottom: 0;
}

/* 英語・日本語テキストをそれぞれ個別の白枠で囲む */
.top__cta-item .top__cta-english,
.top__cta-item .top__cta-japanese {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  width: 100%;
}

.top__cta-item .top__cta-english {
  border: 1px solid #ffffff;
}

/* CTAセクションの問い合わせアイコン（黒色） */
.top__cta-icon--contact {
  color: #ffffff;
}

/* CTAセクションの資料DLアイコン（黒色） */
.top__cta-icon--download {
  color: #ffffff;
}

/* CTAセクションのアイコン内のSVG（レスポンシブサイズ） */
.top__cta-icon svg {
  width: clamp(40px, 6vw, 48px);
  height: clamp(40px, 6vw, 48px);
}

/* CTAセクションの英語テキスト（太字、レスポンシブフォントサイズ、中央揃え） */
.top__cta-english {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  text-align: center;
}

/* CTAセクションの日本語テキスト（通常の太さ、レスポンシブフォントサイズ、中央揃え） */
.top__cta-japanese {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

/* ===================== イントロダクションセクション ===================== */
/* イントロダクションセクション（背景画像付き、高さ80vh） */
.product-page__intro-section {
  background-image: url('http://hy0921.xsrv.jp/zebra-farm/wp-content/uploads/2025/12/product-aquaculture-intro-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px);
}

/* イントロダクションセクションのオーバーレイ（白いガウシアン効果） */
.product-page__intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(53 53 53 / 70%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}

/* イントロダクションセクションの内部コンテナ（z-index設定、中央揃え） */
.product-page__intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* イントロダクションセクションのテキストエリア（最大幅800px、中央揃え） */
.product-page__intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* イントロダクションセクションのラベル（小サイズ、オレンジ色、大文字） */
.product-page__intro-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 16px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* イントロダクションセクションのタイトル（太字、大サイズ、白色） */
.product-page__intro-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #ffffff;
}

/* イントロダクションセクションのタイトル内の改行（デスクトップでは非表示） */
.product-page__intro-title-br {
  display: none;
}

/* イントロダクションセクションのタイトルのフェードインアニメーション */
.product-page__intro-title.io-fadeup {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.product-page__intro-title.io-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* イントロダクションセクションの本文（通常サイズ、グレー色、1.8倍行間） */
.product-page__intro-body {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #e4dede;
}

/* イントロダクションセクションの本文のフェードインアニメーション */
.product-page__intro-body.io-fadeup {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.product-page__intro-body.io-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== システム概要セクション ===================== */
/* システム概要セクション（最大幅1200px、中央揃え、背景色#F5F1EB、高さ80vh） */
.product-page__system-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px);
  background: #F5F1EB;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* システム概要セクションの内部コンテナ（中央揃え、縦方向フレックス） */
.product-page__system-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

/* システム概要セクションのテキストエリア（最大幅800px、中央揃え） */
.product-page__system-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* システム概要セクションのラベル（FLOWと同じ大きさ、色、大文字） */
.product-page__system-label {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* システム概要セクションのタイトル（太字、大サイズ、黒色） */
.product-page__system-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #666;
}

/* システム概要セクションの画像（中央揃え、適切なマージン） */
.product-page__system-image {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  display: block;
}

/* システム概要セクションの本文（通常サイズ、グレー色、1.8倍行間） */
.product-page__system-body {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #333333;
}

/* ===================== 技術セクション（6つの理由） ===================== */
/* 技術セクション（最大幅1200px、中央揃え、背景色#F5F1EB） */
.product-page__tech-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) clamp(16px, 5vw, 64px);
  background: #F5F1EB;
}

/* 技術セクションの内部コンテナ（縦方向フレックス、中央揃え） */
.product-page__tech-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* 技術セクションのテキストエリア（全幅） */
.product-page__tech-text {
  width: 100%;
  text-align: center;
}

/* 技術セクションのラベル（小サイズ、オレンジ色、大文字） */
.product-page__tech-label {
  font-weight: 400;
  font-size: 32px;
  line-height: 22px;
  margin: 0 0 16px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 技術セクションのタイトル（太字、大サイズ、黒色） */
.product-page__tech-title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.4;
  margin: 0 0 24px;
  color: #000000;
}

/* 技術セクションの説明文（通常サイズ、グレー色、1.8倍行間、中央揃え、最大幅900px） */
.product-page__tech-description {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 40px;
  color: #333333;
  text-align: center;
  max-width: 900px;
}

/* 技術グリッド（3列グリッド、間隔24px） */
.product-page__tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

/* 技術アイテム（背景白、角丸、パディング、シャドウ） */
.product-page__tech-item {
  background: #ffffff;
  border-radius: 2.5rem;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 8px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
}

/* 技術アイテムのホバーエフェクト */
.product-page__tech-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* 技術アイテムの番号バッジ（左上に配置、回転） */
.product-page__tech-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  background: #81c784;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-12deg);
  transition: transform 0.3s ease;
  z-index: 10;
}

/* 技術アイテムのホバー時に番号バッジを元の位置に */
.product-page__tech-item:hover .product-page__tech-number {
  transform: rotate(0deg);
}

/* 技術アイテムの画像コンテナ（丸いアイコンボックス） */
.product-page__tech-image {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* 技術アイテムのホバー時にアイコンボックスを拡大 */
.product-page__tech-item:hover .product-page__tech-image {
  transform: scale(1.1);
}

/* 技術アイテムの画像 */
.product-page__tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 技術アイテムのタイトル（太字、中サイズ、緑色） */
.product-page__tech-item-title {
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.4;
  margin: 0 0 12px;
  color: #1a4d2e;
}

/* 技術アイテムの説明（小サイズ、グレー色、背景付き） */
.product-page__tech-item-description {
  font-size: clamp(13px, 1.8vw, 14px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #6b7280;
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 12px;
  width: 100%;
}

/* 技術アイテムのスクロールアニメーション（順番に表示、ポップイン効果） */
.product-page__tech-item.io-fadeup {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ビューポートに入ったときに順番に表示（ポップイン効果） */
.product-page__tech-item.io-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 遅延を設定（data-delay属性に基づく） */
.product-page__tech-item[data-delay="0"].io-fadeup.is-inview {
  transition-delay: 0ms;
}

.product-page__tech-item[data-delay="100"].io-fadeup.is-inview {
  transition-delay: 100ms;
}

.product-page__tech-item[data-delay="200"].io-fadeup.is-inview {
  transition-delay: 200ms;
}

.product-page__tech-item[data-delay="300"].io-fadeup.is-inview {
  transition-delay: 300ms;
}

.product-page__tech-item[data-delay="400"].io-fadeup.is-inview {
  transition-delay: 400ms;
}

.product-page__tech-item[data-delay="500"].io-fadeup.is-inview {
  transition-delay: 500ms;
}

/* ===================== リーファコンテナの特性セクション ===================== */
/* リーファコンテナの特性セクション（全画面幅の背景、内部コンテナは最大幅1200px、中央揃え、背景色白、高さ80vh） */
.product-page__reefer-section {
  width: 100%;
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 全画面幅の白色背景を疑似要素で設定 */
.product-page__reefer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  z-index: 0;
}

/* 内部コンテナを前面に配置 */
.product-page__reefer-section > * {
  position: relative;
  z-index: 1;
}

/* リーファコンテナの特性セクションの内部コンテナ（横並びフレックス、中央揃え、間隔60px、最大幅1200px） */
.product-page__reefer-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 64px);
}

/* リーファコンテナの特性セクションのコンテンツエリア（左側、白背景、可変幅） */
.product-page__reefer-content {
  flex: 1;
  background: #ffffff;
  padding: clamp(40px, 5vw, 60px);
  border-radius: 8px;
}

/* リーファコンテナの特性セクションのタイトル（太字、大サイズ、緑色） */
.product-page__reefer-title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.4;
  margin: 0 0 16px;
  color: #2d5016;
}

/* リーファコンテナの特性セクションの紹介文（通常サイズ、グレー色、1.8倍行間） */
.product-page__reefer-intro {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 32px;
  color: #333333;
}

/* リーファコンテナの特性リスト（縦方向フレックス、間隔24px） */
.product-page__reefer-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* リーファコンテナの特性アイテム（横並びフレックス、間隔16px） */
.product-page__reefer-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* リーファコンテナの特性アイコンエリア */
.product-page__reefer-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* リーファコンテナの特性アイコン画像 */
.product-page__reefer-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* リーファコンテナの特性コンテンツ（可変幅） */
.product-page__reefer-feature-content {
  flex: 1;
}

/* リーファコンテナの特性タイトル（太字、中サイズ、緑色） */
.product-page__reefer-feature-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #2d5016;
}

/* リーファコンテナの特性説明（小サイズ、グレー色、1.6倍行間） */
.product-page__reefer-feature-description {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #666666;
}

/* リーファコンテナの特性セクションの画像エリアラッパー（右側、可変幅、最大幅500px、高さ80vh、相対位置） */
.product-page__reefer-image-wrapper {
  flex: 1;
  max-width: 500px;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* リーファコンテナの特性セクションの背景（緑、絶対位置、z-index: 1、横幅を独立して制御可能、中央配置、上下端まで伸ばす） */
.product-page__reefer-image-bg {
  position: absolute;
  top: calc(-1 * clamp(40px, 5vw, 80px));
  left: 0;
  right: 0;
  bottom: calc(-1 * clamp(40px, 5vw, 80px));
  width: 60%;
  margin: 0 auto;
  background: #e8f5e9;
  z-index: 1;
}

/* リーファコンテナの特性セクションの画像コンテンツ（相対位置、z-index: 2、画像サイズは独立） */
.product-page__reefer-image-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* リーファコンテナの特性セクションの画像（固定サイズまたは最大幅で制御、アスペクト比維持、角丸） */
.product-page__reefer-image-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===================== 申し込みから養殖開始までの流れセクション ===================== */
/* 流れセクションのラッパー（スクロール用のスペーサー、高さ400vh） */
.product-page__flow-wrapper {
  width: 100%;
  height: 400vh;
  position: relative;
}

/* スマホサイズではラッパーの高さを自動に */
@media (max-width: 768px) {
  .product-page__flow-wrapper {
    height: auto;
  }
  
  .product-page__flow-section {
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/* 流れセクション（最大幅1200px、中央揃え、背景色#F5F1EB、stickyで固定） */
.product-page__flow-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px);
  background: #F5F1EB;
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* 流れセクションの内部コンテナ（縦方向フレックス） */
.product-page__flow-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  min-height: 80vh;
  box-sizing: border-box;
  justify-content: center;
}

/* 流れセクションのヘッダーエリア（タイトル・ラベル、上） */
.product-page__flow-header {
  width: 100%;
  flex-shrink: 0;
}

/* 流れセクションのテキストエリア（中央揃え） */
.product-page__flow-text {
  width: 100%;
  text-align: center;
}

/* 流れセクションのコンテンツエリア（左右2カラム、下） */
.product-page__flow-content {
  display: flex;
  width: 100%;
  flex: 1;
  gap: 0;
  min-height: 500px;
  align-items: stretch;
}

/* 流れセクションの左側ステップ番号リストエリア（50%幅） */
.product-page__flow-left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
}

/* 流れセクションのステップ番号リストコンテナ */
.product-page__flow-steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 30px;
}

/* 流れセクションのステップ番号リストの縦線 */
.product-page__flow-steps-list::before {
  display: none;
}

/* 流れセクションのステップ番号アイテム */
.product-page__flow-step-item {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  transition: all 0.3s ease;
}

/* 流れセクションのステップ番号アイテムのドット（縦線との接点） */
.product-page__flow-step-item::before {
  display: none;
}

/* 流れセクションのステップ番号ラベル（初期状態：グレー、小さい） */
.product-page__flow-step-number-label {
  font-size: 18px;
  font-weight: 700;
  color: #9ca3af;
  transition: color 0.3s ease, font-size 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* 流れセクションのステップ番号アイテムがアクティブな状態（緑色、大きい） */
.product-page__flow-step-item.is-active::before {
  display: none;
}

.product-page__flow-step-item.is-active .product-page__flow-step-number-label {
  color: #2D5016;
  font-size: 24px;
}

/* 流れセクションのラベル（大きなグレー、太字） */
.product-page__flow-label {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 流れセクションのタイトル（大きく、黒色） */
.product-page__flow-title {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  margin: 0;
  color: #000000;
}

/* 流れセクションの右側スクロールエリア（50%幅） */
.product-page__flow-right {
  width: 50%;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 500px;
  overflow: visible;
}

/* スマホサイズ用のステップリスト（デスクトップでは非表示） */
.product-page__flow-mobile {
  display: none;
}

/* 流れセクションのステップコンテナ（中央揃え、相対位置） */
.product-page__flow-steps {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* 流れセクションのステップアイテム（絶対配置、初期状態は非表示、カードスタイル、中央配置） */
.product-page__flow-step {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: transparent;
  border-radius: 16px;
  padding: clamp(48px, 6vw, 64px) clamp(40px, 5vw, 56px);
  border: 2px solid #c6c6c6;
}

/* 流れセクションのステップアイテムがアクティブな状態 */
.product-page__flow-step.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

/* 流れセクションのステップ番号（グラデーション、大サイズ） */
.product-page__flow-step-number {
  display: inline-block;
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, #2D5016, #4a7c59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

/* 流れセクションのステップタイトル（太字、大サイズ、黒色） */
.product-page__flow-step-title {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.5;
  margin: 0 0 24px;
  color: #1a202c;
}

/* 流れセクションのステップ説明（通常サイズ、黒色、1.8倍行間） */
.product-page__flow-step-description {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.8;
  margin: 0 0 20px;
  color: #000000;
}

/* 流れセクションのステップ例（小サイズ、グレー色） */
.product-page__flow-step-example {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  margin: 0 0 20px;
  color: #6b7280;
}

/* 流れセクションのステップ注意書き（小サイズ、ライトグレー） */
.product-page__flow-step-note {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  margin: 0;
  color: #9ca3af;
}

/* ===================== PRODUCT AQUACULTURE サポート体制セクション ===================== */
.product-aquaculture__support {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 64px);
  max-width: 1200px;
  margin: clamp(20px, 4vw, 48px) auto;
  padding-inline: clamp(16px, 5vw, 64px);
  width: 100%;
}

/* サポート体制セクションのヘッダー（ラベルとタイトルを中央揃え） */
.product-aquaculture__support-header {
  text-align: center;
  margin-bottom: clamp(16px, 4vw, 32px);
}
  
/* サポート体制セクションのラベル（小サイズ、緑色、大文字） */
.product-aquaculture__support-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 16px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* サポート体制セクションのタイトル（太字、大サイズ、黒色） */
.product-aquaculture__support-title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.4;
  margin: 0 0 24px;
  color: #000000;
  text-align: center;
}
  
/* サポート体制セクションのコンテナ（縦方向フレックス） */
.product-aquaculture__support-container {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
}

/* サポート体制セクションの画像エリア（レスポンシブ時は上に配置） */
.product-aquaculture__support-image {
  width: 100%;
  order: 1;
}

/* サポート体制セクションの画像（全幅、角丸、カバー表示） */
.product-aquaculture__support-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* サポート体制セクションのコンテンツエリア（レスポンシブ時は画像の下に配置、左揃え） */
.product-aquaculture__support-content {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
  text-align: left;
  width: 100%;
  min-width: 0;
}

/* サポート体制セクションのフェーズリスト（縦方向フレックス、間隔32px） */
.product-aquaculture__support-phases {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* サポート体制セクションのフェーズアイテム（縦方向フレックス） */
.product-aquaculture__support-phase {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* サポート体制セクションのフェーズヘッダー（番号とタイトルを横並び） */
.product-aquaculture__support-phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* サポート体制セクションのフェーズ番号（緑背景、白文字、角丸、固定サイズ、左側に配置） */
.product-aquaculture__support-phase-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #2d5016;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  border-radius: 4px;
  flex-shrink: 0;
}

/* サポート体制セクションのフェーズタイトル（太字、中サイズ、緑色） */
.product-aquaculture__support-phase-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  color: #2d5016;
}

/* サポート体制セクションのフェーズアイテムリスト（縦方向、間隔8px、左揃え、h3の位置に合わせる） */
.product-aquaculture__support-phase-items {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: calc(64px + 16px); /* 番号ブロックの幅(64px) + ギャップ(16px) */
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: calc(100% - 64px - 16px);
  min-width: 0;
}

/* サポート体制セクションのフェーズアイテムリストの遅延アニメーション（data-delay属性に基づく） */
.product-aquaculture__support-phase-items[data-delay="0"].io-fadeup.is-inview {
  transition-delay: 0ms;
}

.product-aquaculture__support-phase-items[data-delay="200"].io-fadeup.is-inview {
  transition-delay: 200ms;
}

.product-aquaculture__support-phase-items[data-delay="400"].io-fadeup.is-inview {
  transition-delay: 400ms;
}
  
/* サポート体制セクションのフェーズアイテム（小サイズ、グレー色、1.6倍行間、左揃え） */
.product-aquaculture__support-phase-item {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  text-align: left;
  list-style: none;
  position: relative;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
}

/* サポート体制セクションのフェーズアイテムの箇条書きマーカー（疑似要素） */
.product-aquaculture__support-phase-item::before {
  content: '・';
  color: #2d5016;
  font-weight: 700;
  margin-right: 4px;
}

/* デスクトップ幅では各セクションを左右2カラムに切り替える */
@media (min-width: 1024px) {
  .product-aquaculture__support-container {
    flex-direction: row;
    align-items: center;
    gap: clamp(32px, 6vw, 96px);
  }

  .product-aquaculture__support-image {
    order: 1;
    flex: 1;
  }
  
  .product-aquaculture__support-content {
    order: 2;
    flex: 1;
    min-width: 0;
    width: 100%;
  }
}

/* ===================== Responsive (AQUACULTURE専用) ===================== */
@media (max-width: 768px) {
  /* ヘッダーセクションの上下余白を調整 */
  .product-page__product-section {
    padding: 60px 1rem 30px;
    text-align: center;
  }
  
  /* ヘッダータイトルのフォントサイズを調整（横スクロール防止） */
  .product-page__product-title {
    font-size: clamp(40px, 12vw, 60px);
    letter-spacing: 0.2em;
  }
  
  /* CTAカードを縦並び・可変高さに */
  .top__cta-container {
    flex-direction: column;
    height: auto;
  }
  
  /* 個々のCTAカードの高さを抑える */
  .top__cta-item {
    height: clamp(180px, 45vh, 240px);
  }
  
  /* イントロダクションセクションの内部コンテナを縦積みに */
  .product-page__intro-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  
  /* イントロダクションセクションのタイトル内の改行（スマホでは表示） */
  .product-page__intro-title-br {
    display: block;
  }
  
  /* システム概要セクションの内部コンテナ（既に縦積み） */
  .product-page__system-inner {
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  
  /* 技術グリッドを2列に */
  .product-page__tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 3vw, 20px);
  }
  
  /* 技術アイテムの画像コンテナのサイズを調整 */
  .product-page__tech-image {
    width: clamp(80px, 20vw, 112px);
    height: clamp(80px, 20vw, 112px);
  }
  
  /* 技術アイテムの番号バッジのサイズを調整 */
  .product-page__tech-number {
    width: clamp(40px, 10vw, 48px);
    height: clamp(40px, 10vw, 48px);
    font-size: clamp(18px, 4vw, 24px);
    top: clamp(-12px, -3vw, -16px);
    left: clamp(-12px, -3vw, -16px);
  }
  
  /* 技術アイテムのパディングを調整 */
  .product-page__tech-item {
    padding: clamp(20px, 5vw, 32px);
  }
  
  /* リーファコンテナの特性セクションの高さを自動に */
  .product-page__reefer-section {
    height: auto;
    min-height: auto;
    padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px);
  }
  
  /* リーファコンテナの特性セクションの内部コンテナを縦積みに */
  .product-page__reefer-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
  
  /* リーファコンテナの特性セクションのコンテンツエリアのパディングを調整 */
  .product-page__reefer-content {
    padding: clamp(24px, 5vw, 40px);
    width: 100%;
  }
  
  /* 流れセクションのFLOWラベル（スマホサイズで調整） */
  .product-page__flow-label {
    font-size: 36px;
  }
  
  /* 流れセクションのコンテンツエリアを縦積みに（モバイル） */
  .product-page__flow-content {
    flex-direction: column;
    gap: 0;
  }
  
  /* デスクトップ用の左右2カラムを非表示（モバイル） */
  .product-page__flow-left,
  .product-page__flow-right {
    display: none;
  }
  
  /* スマホサイズ用のステップリストを表示 */
  .product-page__flow-mobile {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  
  /* スマホサイズ用のステップアイテム */
  .product-page__flow-mobile-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
  }
  
  /* スマホサイズ用のステップヘッダー */
  .product-page__flow-mobile-step-header {
    display: flex;
    align-items: center;
  }
  
  /* スマホサイズ用のステップ番号 */
  .product-page__flow-mobile-step-number {
    font-size: 20px;
    font-weight: 700;
    color: #2D5016;
    line-height: 1;
  }
  
  /* スマホサイズ用のステップコンテンツ */
  .product-page__flow-mobile-step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  /* スマホサイズ用のステップタイトル */
  .product-page__flow-mobile-step-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    color: #1a202c;
  }
  
  /* スマホサイズ用のステップ説明 */
  .product-page__flow-mobile-step-description {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
    color: #000000;
  }
  
  /* スマホサイズ用のステップ例 */
  .product-page__flow-mobile-step-example {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #6b7280;
  }
  
  /* スマホサイズ用のステップ注意書き */
  .product-page__flow-mobile-step-note {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: #9ca3af;
  }
  
  /* リーファコンテナの特性セクションの画像ラッパーを全幅に */
  .product-page__reefer-image-wrapper {
    max-width: 100%;
    min-height: auto;
    height: auto;
    width: 100%;
  }
  
  /* リーファコンテナの特性セクションの画像背景を調整 */
  .product-page__reefer-image-bg {
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  /* リーファコンテナの特性セクションの画像コンテンツを調整 */
  .product-page__reefer-image-content {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  
  /* リーファコンテナの特性セクションの画像を調整 */
  .product-page__reefer-image-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* サポート体制セクションの画像を非表示 */
  .product-aquaculture__support-image {
    display: none;
  }
  
  /* サポート体制セクションのフェーズアイテムを改行可能に（スマホ） */
  .product-aquaculture__support-phase-item {
    white-space: normal;
  }
}

/* (max-width: 480px) での詳細調整 */
@media (max-width: 480px) {
  /* ページタイトルをさらに小さく */
  .product-page__product-title {
    font-size: 36px;
  }
  
  /* 各セクションの余白 */
  .product-page__intro-section,
  .product-page__system-section,
  .product-page__tech-section {
    padding: 30px 1rem;
  }
  
  /* 各セクションの内部コンテナのギャップ */
  .product-page__intro-inner,
  .product-page__system-inner,
  .product-page__tech-inner {
    gap: 30px;
  }
  
  /* 技術グリッドを1列に */
  .product-page__tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  /* 技術アイテムの画像コンテナのサイズを調整 */
  .product-page__tech-image {
    width: 80px;
    height: 80px;
  }
  
  /* 技術アイテムの番号バッジのサイズを調整 */
  .product-page__tech-number {
    width: 36px;
    height: 36px;
    font-size: 18px;
    top: -10px;
    left: -10px;
  }
  
  /* 流れセクションのステップ番号のサイズを調整 */
  .product-page__flow-step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  /* 流れセクションのステップタイトルのサイズを調整 */
  .product-page__flow-step-title {
    font-size: 20px;
  }
}

/* ===================== 閉鎖循環型陸上養殖システム・比較テーブルセクション ===================== */
/* =========================================
   Component: System Spec Card (BEM) - Solid Style
   ========================================= */
.c-sys-spec {
  border-radius: 0; /* 角丸なし */
  box-shadow: none; /* 影なし */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) clamp(16px, 5vw, 64px);
  overflow: visible;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* 全画面幅の白色背景を疑似要素で設定 */
.c-sys-spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  z-index: 0;
}

/* 内部コンテナを前面に配置 */
.c-sys-spec > * {
  position: relative;
  z-index: 1;
}

.c-sys-spec__header {
  background-color: transparent; /* べた塗りなし */
  padding: 20px 0;
  text-align: center;
  /* border-bottom: 2px solid #004d40; */ /* 下線を削除 */
}

/* c-sys-spec内のtech-labelをグレーに、大文字変換を解除 */
.c-sys-spec__header .product-page__tech-label {
  color: #666666;
  text-transform: none;
}

.c-sys-spec__title {
  color: #000000;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}

.c-sys-spec__body {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* セクションタイトル */
.c-sys-spec__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #666;
  margin: 0 0 30px;
  text-align: center;
}

/* システム概要セクション */
.c-sys-spec__overview {
  width: 100%;
}

.c-sys-spec__overview-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 2カラムレイアウト */
.c-sys-spec__two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* カラム */
.c-sys-spec__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* カラム画像ラッパー */
.c-sys-spec__column-image-wrapper {
  width: 100%;
  border: 2px solid #2d5016;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* カラム画像 */
.c-sys-spec__column-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* カラムタイトル */
.c-sys-spec__column-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d5016;
  margin: 0 0 12px;
}

/* カラム説明 */
.c-sys-spec__column-description {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

/* 主要データセクション */
.c-sys-spec__data-wrapper {
  width: 100%;
}

.c-sys-spec__data-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 左側：ビジュアルエリア */
.c-sys-spec__visual {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.c-sys-spec__component {
  background: transparent; /* 背景色なし */
  border: 1px solid #00695c; /* 枠線のみ */
  padding: 15px;
  border-radius: 0; /* 角丸なし */
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-sys-spec__icon {
  width: 50px;
  height: 50px;
  background-color: transparent; /* 背景なし */
  border: 1px solid #2e7d32; /* 枠線追加 */
  border-radius: 50%; /* アイコンの丸みは維持（意匠として） */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden; /* 画像がはみ出さないように */
}

.c-sys-spec__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.c-sys-spec__comp-text {
  display: flex;
  flex-direction: column;
}

.c-sys-spec__comp-name {
  font-weight: 700;
  font-size: 1rem;
  color: #004d40;
}

.c-sys-spec__comp-desc {
  font-size: 0.8rem;
  color: #666;
}

/* 右側：データリスト */
.c-sys-spec__data {
  flex: 0.5;
  min-width: 300px;
}

.c-sys-spec__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sys-spec__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.c-sys-spec__item:last-child {
  border-bottom: none;
}

.c-sys-spec__label {
  font-weight: 700;
  color: #555;
  display: flex;
  align-items: center;
}
/* 装飾バー */
.c-sys-spec__label::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background-color: #004d40;
  margin-right: 12px;
  border-radius: 0; /* 角丸なし */
}

.c-sys-spec__value {
  text-align: right;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'Oswald', sans-serif;
  color: #333;
}
.c-sys-spec__unit {
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  margin-left: 4px;
}
.c-sys-spec__note {
  display: block;
  font-size: 0.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #888;
  font-weight: normal;
  margin-top: 4px;
}

/* =========================================
   Component: Comparison Table (BEM) - Solid Style
   ========================================= */
.c-comp-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-comp-table__header {
  text-align: center;
  margin-bottom: 24px;
}

.c-comp-table__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.c-comp-table__subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

/* テーブルのスクロール枠 */
.c-comp-table__scroll-wrapper {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #ddd; /* 外枠追加 */
  border-radius: 0; /* 角丸なし */
  box-shadow: none; /* 影なし */
}

.c-comp-table__main {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.c-comp-table__th,
.c-comp-table__td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #ccc; /* 薄いグレーから少し濃くして視認性確保 */
  border-right: 1px solid #eee; /* 縦線も薄く追加 */
  font-size: 0.95rem;
}
.c-comp-table__th:last-child,
.c-comp-table__td:last-child {
  border-right: none;
}

/* ヘッダーデザイン */
.c-comp-table__th {
  background-color: transparent; /* 背景なし */
  color: #333;
  font-weight: 700;
  border-bottom: 2px solid #333; /* ヘッダー下は太線 */
}

/* 「独自養殖方法」カラムの強調（枠線のみで表現） */
.c-comp-table__th--highlight,
.c-comp-table__td--highlight {
  background-color: transparent; /* 背景なし */
  color: #00695c;
  font-weight: 700;
  /* 左右を太めの線で囲って強調 */
  border-left: 2px solid #00695c;
  border-right: 2px solid #00695c;
  background-color: #e1f2e4;
}
.c-comp-table__th--highlight {
  color: #004d40;
  font-size: 1.1rem;
  border-top: 2px solid #00695c; /* 上も囲う */
}
.c-comp-table__td--highlight:last-child {
   /* 最終行の底辺処理が必要な場合は個別に調整しますが、基本はborder-bottomで足ります */
   border-bottom: 2px solid #00695c; /* 下も囲う（表の最後） */
}
/* ※HTML構造的にtbodyの最後を知る術がないCSSの場合、
   厳密に下線を引くには :last-child 擬似クラスなどを使いますが、
   ここでは簡易的にセルの下線で対応します。 */


/* 成果（数字）のデザイン */
.c-comp-table__result {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fbc02d;
}
.c-comp-table__result--up {
  color: #ff5252;
}
.c-comp-table__result-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  color: #888;
  margin-left: 4px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .c-sys-spec {
    min-height: auto;
    padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px);
  }
  
  .c-sys-spec__header {
    padding: 20px 0;
    text-align: center;
  }
  
  .c-sys-spec__body {
    padding: 20px 15px;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .c-sys-spec__section-title {
    font-size: 18px;
    margin: 0 0 20px;
    text-align: center;
  }

  .c-sys-spec__overview-image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-sys-spec__data-image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* 2カラムを1カラムに */
  .c-sys-spec__two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c-comp-table {
    min-height: auto;
    padding: 20px 0;
  }
  
  .c-comp-table__th, 
  .c-comp-table__td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
  .c-comp-table__title {
    font-size: clamp(24px, 4vw, 36px);
  }
}

/* ===================== 画像クリック可能スタイル ===================== */
/* クリック可能な画像のホバーエフェクト */
.c-sys-spec__data-image--clickable {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.c-sys-spec__data-image--clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-sys-spec__data-image--clickable:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* ===================== 画像ポップアップモーダル ===================== */
/* モーダル背景（初期状態は非表示） */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

/* モーダルが表示されている状態 */
.image-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* モーダル内の画像 */
.image-modal__content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  border-radius: 8px;
}

/* 閉じるボタン */
.image-modal__close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  user-select: none;
}

.image-modal__close:hover,
.image-modal__close:focus {
  color: #bbb;
  transform: scale(1.1);
}

/* アニメーション：フェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* アニメーション：ズームイン */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .image-modal__content {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .image-modal__close {
    top: 15px;
    right: 20px;
    font-size: 36px;
  }
}
