/* 製品案内のヘッダー */
.page-header {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}
.page-header::before {
  content: "PRODUCTS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05); /* 薄いグレー */
  z-index: 0;
  white-space: nowrap;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #333;
}
/* サブテキスト */
.page-header p {
  font-size: 1.2rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
/* ============================== ヘッダーレスポンシブ ============================== */
@media (max-width:1250px) {
  .page-header::before {
    font-size: 15vw;
  }
  .page-header {
    padding: 5vw 20px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .page-header p {
    font-size: 1.0rem;
  }
}
/* ============================== 製品一覧 ============================== */
.product-list {
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px 20px;
}
/* 各製品アイテム（ボックス化） */
.product-item {
  background: #f9f9f9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}
/* ホバー時のアニメーション */
.product-item:hover {
  transform: translateY(-5px);
}
/* テキストエリア */
.product-text {
  width: 90%;
}
.product-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.product-text p {
  font-size: 1rem;
  line-height: 1.6;
}
/* 破線区切り */
.product-divider {
  width: 90%;
  border: none;
  border-top: 2px dashed #aaa;
  margin: 20px 0;
}
/* 作品ギャラリー */
.product-gallery {
  display: grid;
  gap: 10px;
  width: 45%;
}
.product-gallery img {
  width: 100%;
  height: auto;
}
@media (max-width:1250px) {
  .product-list {
    max-width: 100%;
  }
}
@media (max-width:600px) {
  .product-list {
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  /* 各製品アイテム（ボックス化） */
  .product-item {
    padding: 20px;
    gap: 10px;
  }
  /* テキストエリア */
  .product-text {
    width: 90%;
  }
  .product-text h2 {
    font-size: 1.5rem;
  }
  .product-text p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  /* 破線区切り */
  .product-divider {
    width: 90%;
    border: none;
    border-top: 2px dashed #aaa;
    margin: 20px 0;
  }
}