/* =========================
   DXTools 共通LPスタイル
========================= */

:root{
  --main-color:#9f8530;
  --text-color:#333;
  --bg-light:#f9f9f9;
}

/* 共通 */
.product-page{
  font-family: sans-serif;
  color: var(--text-color);
  line-height: 1.8;
}

.container{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   Hero
========================= */
.product-hero{
  padding:80px 0 20px;
  text-align:center;
}

.product-hero h1{
  font-size:32px;
  margin-bottom:20px;
}

.product-hero p{
  font-size:16px;
  margin-bottom:30px;
}

.product-hero img{
  max-width:100%;
  height:auto;
  margin-top:20px;
}

/* =========================
   Intro（概要）
========================= */

.product-intro {
  padding: 20px 0 40px;
  text-align: left;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ========================
   h1タイトル装飾Line
   ======================== */
.h1-line {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 12px;

}

.h1-line::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9f8530 0%, #d1b24d 100%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* =========================
   共通：交互レイアウト
========================= */

.feature-item,
.function-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

/* 画像 */
.feature-image,
.function-image {
  flex: 1;
}

.feature-image img,
.function-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* テキスト */
.feature-text,
.function-text,
.benefit-text {
  flex: 1;
  text-align: left;
}

/* ===== 偶数だけ反転 ===== */
.feature-item:nth-child(even),
.function-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* =========================
   Benefit（縦リスト）
========================= */

.product-benefit {
  padding: 80px 0;
  background: var(--bg-light);
}

.benefit-item {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

/* タイトル */
.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--main-color);
}

/* テキスト */
.benefit-item p {
  font-size: 14px;
}

/* =========================
   CTA
========================= */
.product-cta{
  padding:80px 0;
  text-align:center;
}

.cta-button{
  display:inline-block;
  background:var(--main-color);
  color:#fff;
  padding:15px 40px;
  border-radius:50px;
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
}

.cta-button:hover{
  opacity:0.8;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width:768px){

  .feature-grid{
    grid-template-columns:1fr;
  }

  .feature-text {
    text-align: center;
  .benefit-grid{
    grid-template-columns:1fr;
  }

  .feature-item,
  .function-item,
  .benefit-item {
    flex-direction: column !important;
    text-align: center;
  }

  .product-hero h1{
    font-size:24px;
  }

}