/* ===============================
   大寒キャンペーンページ
   /jp/mn/camp/
   =============================== */

.camp-page {
  background-color: #ffffff;
}

/* ---------- パンくず ---------- */

.breadcrumb {
  margin: 12px 0 18px;
  font-size: 13px;
}

.breadcrumb a {
  color: #8c4412;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- HERO ---------- */

.camp-hero {
  padding: 36px 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* タイトルはフル幅でドーン */
.camp-hero__head {
  margin-bottom: 16px;
}

.camp-hero__title {
  margin: 0;
  font-size: 50px;          /* ← ドーン用サイズ */
  line-height: 1.5;
  letter-spacing: 0.05em;
  
}

/* 下は2カラム：左テキスト／右画像 */
.camp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.camp-hero__lead {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: #5a4633;
}

.camp-hero__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5a4633;
}

.camp-hero__visual {
  text-align: center;
}

.camp-hero__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

.camp-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* SP のときは1カラムに戻す */
@media (max-width: 900px) {
  .camp-hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .camp-hero__title {
    font-size: 26px;        /* スマホでも見出し感キープ */
  }

  .camp-hero__lead {
    font-size: 17px;
  }

  .camp-hero__text {
    font-size: 15px;
  }
}



/* ---------- 共通セクション ---------- */

.camp-section {
  padding: 32px 0;
}

.camp-section--accent {
  background-color: #FFFAF0;
  margin: 28px -16px;
  padding: 32px 16px;
}

.camp-heading {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.6;
}

.camp-subheading {
  margin: 0 0 10px;
  font-size: 18px;
}

/* ラベル的な見出し行（①の「応募者全員にチャンス！」など） */
.camp-label {
  margin: 0 0 14px;
  font-size: 14px;
  color: #8c4412;
  font-weight: bold;
}

.camp-label__em {
  font-size: 15px;
}

/* テキスト共通 */

.camp-text {
  margin: 0 0 14px;
  font-size: 15px;
  color: #5a4633;
}

.camp-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: #8b7358;
}

.camp-link-product {
  color: #a4551a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.camp-link-product:hover {
  color: #7b340c;
}

/* ---------- データ枠（dt/dd） ---------- */

.camp-data {
  margin: 18px 0 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background-color: #fffaf3;
  border: 1px solid #f0e2d2;
}

.camp-data > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 4px 12px;
  font-size: 14px;
}

.camp-data dt {
  font-weight: bold;
}

.camp-data dd {
  margin: 0;
}

/* ---------- 2カラムレイアウト ---------- */

.camp-flex {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: flex-start;
  margin-top: 8px;
}

.camp-flex__text {
  min-width: 0;
}

.camp-flex__media {
  min-width: 0;
  text-align: center;
}

/* ①用少し余白広め */
.camp-flex--prize {
  margin-bottom: 10px;
}

/* SPでは1カラムにする */
@media (max-width: 900px) {
  .camp-flex {
    grid-template-columns: 1fr;
  }
}

/* ②のときに画像を逆側にしたかったらここを使う（今回は左右そのままでもOK） */
.camp-flex--gift {
  margin-top: 10px;
}

/* ---------- ①の商品画像 ---------- */

.camp-prize-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}

.camp-prize-img img {
  display: block;
  width: 100%;
  height: auto;
}

.camp-prize-caption {
  margin: 8px 2px 0;
  font-size: 12px;
  color: #7a6a57;
}

/* ---------- ②（まぶしぬか）画像 ---------- */

.camp-gift-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  background-color: #ffffff;
}

.camp-gift-img img {
  display: block;
  width: 100%;
  height: auto;
}

.camp-gift-caption {
  margin: 8px 2px 0;
  font-size: 12px;
  color: #7a6a57;
}

/* ---------- 応募フォーム導線（①） ---------- */

.camp-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
  margin-top: 18px;
}

.camp-entry__qr {
  text-align: center;
}

.camp-qr-frame {
  display: inline-flex;
  padding: 12px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e4ddcf;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.camp-qr-frame img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.camp-qr-caption {
  margin: 8px 0 0;
  font-size: 12px;
  color: #7a6a57;
  text-align: left;
  display: block;
  width: 100%;
}

/* ---------- スケジュール ---------- */

.camp-schedule {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  font-size: 14px;
}

.camp-schedule li {
  padding: 6px 0;
  border-bottom: 1px solid #f0e2d2;
}

.camp-schedule__date {
  display: inline-block;
  min-width: 88px;
  font-weight: bold;
  color: #8c4412;
}

/* ---------- フェードイン用 ---------- */

.js-camp-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-camp-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 900px) {
  .camp-section--accent {
    margin: 24px -12px;
    padding: 28px 12px;
  }

  .camp-flex {
    grid-template-columns: 1fr;
  }

  .camp-entry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .camp-hero {
    padding: 20px 0 22px;
  }

  .camp-hero__title {
    font-size: 24px;
  }

  .camp-hero__lead {
    font-size: 15px;
  }

  .camp-heading {
    font-size: 20px;
  }

  .camp-section {
    padding: 26px 0;
  }
}

/* ===============================
   ぬか床の日キャンペーン：ポスターデザイン寄せ
   =============================== */  

/* 全体の背景とヒーロー部分 
.camp-hero {
  padding: 32px 0 28px;
  background: linear-gradient(135deg, #fff7ec, #fffdf8);
  border-bottom: 3px solid #f07010;
}

.camp-hero__head {
  margin-bottom: 16px;
}

.camp-hero__title {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background: #f07010;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.camp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: center;
}

.camp-hero__lead {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #5a4633;
}

.camp-hero__lead strong {
  color: #f07010;
}

.camp-hero__text {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.9;
  color: #5a4633;
}

.camp-hero__visual {
  text-align: center;
}

.camp-hero__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
}

.camp-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* セクション共通 
.camp-section {
  padding: 26px 0 30px;
}

.camp-heading {
  position: relative;
  margin: 0 0 16px;
  padding-left: 14px;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #5a4633;
}

.camp-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 1.4em;
  border-radius: 4px;
  background: linear-gradient(180deg, #f6a43a, #f07010);
}

.camp-text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #5a4633;
}

/* 強調セクション（抽選5名様のブロックなど） 
.camp-section--accent {
  margin-top: 6px;
  padding: 22px 20px 24px;
  border-radius: 18px;
  background: #fff4e6;
  border: 2px solid #f5b769;
}

/* データリスト（期間・応募方法など） 
.camp-data {
  margin: 16px 0 6px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px dashed #f0c28a;
}

.camp-data div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 4px;
}

.camp-data dt {
  min-width: 80px;
  font-size: 13px;
  font-weight: 600;
  color: #8c4412;
}

.camp-data dd {
  margin: 0;
  font-size: 13px;
  color: #5a4633;
}

/* 商品リンク（まぶしぬか・万古焼セット） 
.camp-link-product,
.camp-text a {
  color: #f07010;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.camp-link-product:hover,
.camp-text a:hover {
  color: #c85608;
}

/* 抽選プレゼントの画像まわり 
.camp-flex--prize {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.5fr);
  gap: 22px;
  align-items: flex-start;
}

.camp-prize-img {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.camp-prize-img img {
  display: block;
  width: 100%;
  height: auto;
}

.camp-prize-caption {
  margin: 6px 2px 0;
  font-size: 12px;
  color: #7a6a57;
  text-align: center;
}

/* SP 調整 
@media (max-width: 900px) {
  .camp-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .camp-hero__title {
    font-size: 24px;
  }
  .camp-hero__lead {
    font-size: 16px;
  }
  .camp-flex--prize {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .camp-hero {
    padding: 24px 0 22px;
  }
  .camp-section--accent {
    padding: 18px 14px 20px;
  }
}

/* ===============================
   ぬか床の日キャンペーン：ヒーローをポスター風に


.camp-hero {
  padding: 40px 0 32px;
  background: radial-gradient(circle at top left, #ffb8a0 0, #ff6350 40%, #f02d2d 100%);
  position: relative;
  overflow: visible;
}

/* コンテナ内で丸い吹き出しを作る 
.camp-hero .l-container {
  position: relative;
}

/* 白い丸っぽい吹き出し本体 
.camp-hero__inner {
  background: #ffffff;
  border-radius: 40px;
  padding: 22px 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: center;
  position: relative;
}

/* 吹き出しの「しっぽ」 
.camp-hero__inner::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 52px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 6px;
  transform: rotate(45deg);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.18);
}

/* タイトル・リードだけ丸ゴシック寄りに 
.camp-hero__title,
.camp-hero__lead {
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Yu Gothic UI",
               "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* タイトルをポップに大きく 
.camp-hero__head {
  margin-bottom: 14px;
}

.camp-hero__title {
  display: inline-block;
  margin: 0;
  padding: 4px 18px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f02d2d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

/* リードも丸めの印象に 
.camp-hero__lead {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

/* 本文はそのまま少しだけ読みやすく 
.camp-hero__text {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.9;
}

/* 画像側は少し丸く＆ポスター寄り 
.camp-hero__visual {
  text-align: center;
}

.camp-hero__photo {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.camp-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* スマホ時は吹き出しを少し小さめ＆縦並びに 
@media (max-width: 900px) {
  .camp-hero__inner {
    grid-template-columns: 1fr;
    padding: 18px 18px 20px;
    border-radius: 26px;
  }

  .camp-hero__inner::after {
    left: 30px;
    bottom: -14px;
    width: 18px;
    height: 18px;
  }

  .camp-hero__title {
    font-size: 22px;
  }

  .camp-hero__lead {
    font-size: 16px;
  }
}
*/

.camp-title-red {
  color: #d92b2b;   /* お好みで調整OK：ポスターの赤に寄せてる */
  font-weight: 700; /* お好み。強調したいなら入れる */
}
