/* wrx.css */
/* === コンテンツコンテナの固有背景パターン === */
.content-container {
  /* 細かい網点パターン */
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 3px 3px;
}
/* === 見出し (Product Description) === */
.product-heading {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.5rem; /* 大きめに */
  font-weight: 500;
  color: #374151;
  border-bottom: 2px solid #d1d5db; /* 太いグレーの下線 */
  padding-bottom: 0.2rem;
  margin-bottom: 2rem;
  width: 100%;
}
/* 説明文エリア */
.desc-text-container {
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 8px;
}
/* 説明文 (英語) */
.desc-text-en {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
/* 説明文 (日本語 - 小さく) */
.desc-text-jp {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}
/* === 右カラム：変形ギミック === */
.gimmick-item {
  margin-bottom: 3rem;
}
/* 画像コンテナ (重ね合わせ用) */
.gimmick-img-container {
  position: relative;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.gimmick-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.img-normal {
  position: relative;
  z-index: 1;
}
/* ホバー用の画像は絶対配置で重ねる */
.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0; /* 通常時は透明 */
}
/* ホバー時に透明度を切り替え */
.gimmick-img-container:hover .img-hover {
  opacity: 1;
}
/* キャプションエリア */
.gimmick-caption-container {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 8px;
}
/* キャプション (英語タイトル) */
.gimmick-caption-title {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.4;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
/* キャプション (日本語タイトル) */
.gimmick-caption-jp {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 22px; /* アイコン分のインデント */
  margin-bottom: 2px;
  display: block;
}
/* キャプション (補足) */
.gimmick-caption-note {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-left: 22px;
  display: block;
}
.icon-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #1f2937;
  color: white;
  font-size: 10px;
  margin-right: 6px;
  border-radius: 2px;
  vertical-align: middle;
  flex-shrink: 0;
}