:root {
  --main-color: #b85c5c;
  --text-color: #333;
  --bg-color: #fffaf7;

  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
}

/* ===== ベース ===== */
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background: var(--bg-color);
  margin: 0;
}

/* ===== 見出し ===== */
h1 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--main-color);
  margin: 30px 0 10px;
}

h2 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--main-color);
  margin: 30px 0 10px;
}

h3 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}

/* ===== テキスト ===== */
p {
  margin: 0 0 10px;
}

/* ===== リンク ===== */
a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== 共通ブロック ===== */
.section-text,
.work-example {
  padding: var(--space-m);
  border-left: 4px solid var(--main-color);
  background: #fffaf7;
  border-radius: 6px;
  margin: var(--space-l) 0;
}

.section-text p,
.work-example p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: var(--space-s);
}

/* ===== 価格・CV ===== */
.sale-box {
  text-align: center;
  padding: 30px 20px;
  border: 2px solid #f0c2c2;
  background: linear-gradient(to bottom, #fff7f7, #ffffff);
  border-radius: 12px;
  margin: var(--space-l) 0;
}

.sale-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: var(--space-s);
}

.sale-price {
  font-size: 30px;
  font-weight: bold;
  color: #ff2d2d;
  margin: var(--space-s) 0;
}

.sale-text {
  font-size: 16px;
  line-height: 1.8;
}

/* ===== CVボタン ===== */
.sale-btn {
  display: inline-block;
  margin-top: var(--space-m);
  padding: 14px 28px;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.2s;
}

.sale-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===== トップ情報 ===== */
.top-info {
  background: #fff7f7;
  border: 2px solid #f0c2c2;
  padding: var(--space-m);
  border-radius: 10px;
  margin-bottom: var(--space-l);
}

.top-info-line {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--space-s);
}

.top-info-line:last-child {
  margin-bottom: 0;
}

/* ===== ボタンエリア（大） ===== */
.btn-area-big {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.big-btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: bold;
  background: var(--main-color);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.big-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  opacity: 0.95;
}

/* ===== 画像 ===== */
img{
  max-width:100%;
  height:auto;
}

/* ===== 全体幅 ===== */
.page-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:20px 15px 120px;
}

/* ===== セクション ===== */
.section{
  margin:40px auto;
  text-align:center;
}

/* ===== カード ===== */
.product-card{
  background:#fff;
  border:1px solid #ead5d8;
  border-radius:14px;
  padding:24px 18px;
  margin:30px auto;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

/* ===== 商品画像並び ===== */
.product-images{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:15px 0;
}

/* ===== 商品文字 ===== */
.product-title{
  font-size:22px;
  color:#663300;
  margin:15px 0 10px;
}

.product-copy{
  font-size:16px;
  line-height:1.8;
  color:#444;
}

/* ===== 価格 ===== */
.price-text{
  font-size:22px;
  color:#f00;
  font-weight:bold;
  margin:10px 0;
}