@charset "utf-8";

    /* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { 
  font-family: "Yu Gothic", sans-serif; 
  line-height: 1.6; 
  color: #222; 
  background: #fff;
}

/* ===== 共通レイアウト ===== */
header, section { width: 100%; margin: 0 auto; }
img { 
  width: 100%; 
  display: block; 
  margin-bottom: 30px;      /* 画像の下にゆとり */
}

.wrap { 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 16px; 
}

/* PC表示で横幅をタイトにして読みやすく */
@media (min-width: 1025px) {
  .wrap {
    max-width: 960px;       
    padding: 0 32px;        /* 両サイドの余白 */
  }
}

/* ===== 見出し・テキスト ===== */
h2, h3, h4 {
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: 2.0rem;
  margin: 50px 0 30px;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
}

h4 {
  font-size: 1.3rem;
  margin: 30px 0 16px;
}

p { 
  margin-bottom: 1.2rem; 
  line-height: 1.9;         /* 読みやすい行間 */
  font-size: 1.05rem;
}

/* ===== スマホ時の見出し調整 ===== */
@media (max-width: 768px) {
  h2 {
    font-size: 1.15rem;
    margin: 30px 0 20px;
  }

  h3 {
    font-size: 1.05rem;
    margin: 26px 0 16px;
  }

  h4 {
    font-size: 1.0rem;
    margin: 22px 0 12px;
  }
}
/* ===== ボタン ===== */
.btn-area { text-align: center; margin: 40px 0; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #c80000;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
}

/* ===== 商品ブロック ===== */
.product { margin: 10px 0; }
.product-title { 
  font-size: 1.8rem; 
  margin-bottom: 14px; 
  font-weight: 700; 
  line-height: 1.5;
}

.product-img { margin-bottom: 20px; }
.product-desc { margin-bottom: 20px; font-size: 1.1rem; }

/* ===== お知らせ / 注意事項 ===== */
.notice { 
  background: #fff7e5; 
  padding: 20px; 
  border-radius: 10px; 
  margin: 20px 0; 
}

/* ===== 商品スペック表 ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 40px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
  border: 1px solid #e5e5e5;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 16px;
}

/* PC：項目名を引き締める */
.spec-table th {
  width: 24%;
  background: #faf5ef;
  font-weight: 700;
  text-align: left;
  padding-left: 20px;          /* 中央寄りに見せる */
  color: #5a4636;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 10px 12px;
  }

  .spec-table tr {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    display: block;
  }

  .spec-table th {
    background: #faf5ef;
    font-weight: 700;
    border-bottom: none;
  }
}

/* ===== フッター ===== */
footer { 
  text-align: center; 
  padding: 40px 0; 
  color: #666; 
  font-size: 0.9rem; 
}
	  
/* ===== 囲みテキスト共通 ===== */
.text-box {
  background: #faf7f2;
  padding: 24px 28px;
  border-radius: 12px;
  margin: 30px 0 40px;
}

.text-box p {
  margin-bottom: 0;
}

/* 強調用（理由・こだわり） */
.point-box {
  background: #fff;
  border: 2px solid #c80000;
  padding: 26px 28px;
  border-radius: 12px;
  margin: 40px 0;
}

.point-box h4 {
  margin-bottom: 16px;
  color: #c80000;
  font-size: 1.2rem;
}

/* スマホ微調整 */
@media (max-width: 768px) {
  .text-box,
  .point-box {
    padding: 18px 16px;
    margin: 24px 0;
  }
}
/* ===== 注文ボタンエリア ===== */
.order-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px;                 /* PCで少し余裕を持たせる */
  margin: 16px 0 30px;
}

/* ボタン画像共通 */
.order-buttons a {
  display: block;
}

.order-buttons a img {
  width: 100%;
  height: 100px; 
  margin-bottom: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* hover */
.order-buttons a:hover img {
  transform: translateY(-2px) scale(1.03); /* 少しだけ拡大 */
  opacity: 0.9;
}

/* ===== スマホは2列・さらに大きく ===== */
@media (max-width: 768px) {
  .order-buttons {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 16px;
  }

  .order-buttons a img {
    height: 80px; 
  }
}

.order-note {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-top: 1px;
}

.order-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.15rem;
  color: brown;
}

@media (max-width: 768px) {
  .order-title {
    font-size: 1.01rem;
	color: brown;
  }
}


