@charset "UTF-8";

/* =========================
  基本
========================= */

*{ box-sizing: border-box; }
html, body{
  margin: 0;
  padding: 0;
}
body{
  font-family: "Noto Sans JP", "Noto Sans", system-ui, -apple-system,
  "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  background: #f6f3ea;
  color: #134067;
  background: #f6f3ea;
  color: #16283B;
}

/* =========================
  PC：左右の固定背景
========================= */
/* 左右の背景エリア */
.side{
  position: fixed;
  top: 0;
  height: 100vh;
  width: calc((100vw - 430px) / 2);
  overflow: hidden;
  z-index: 1;
  display: flex;             
  align-items: center;         
  justify-content: center;   
}

.side--left{ left: 0; }
.side--right{ right: 0; }

/* 背景（cars）は一番下 */
.side__cars{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* ロゴは前面に */
.side__logo,
.side__title{
  position: relative; 
  z-index: 2;
	width: 60%;
}


/* =========================
  中央LP（SP幅）
========================= */
.lp{
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 28px rgba(0,0,0,.10);
}

/* =========================
  ヘッダー
========================= */
.lp-header{
  position: sticky;
  top: 0;
  z-index: 9999;      
  background: #16283B;

  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-header__logo{
  height: 18px;
  width: auto;
}

/* =========================
  FV
========================= */
.fv{
	margin-top:24px;
	background:
    radial-gradient(#f3f0e4 1px, transparent 1px);
  background-size: 12px 12px;
}
.fv__img{
  display: block;
  width: 100%;
  height: auto;
}


/* =========================
  3大購入サポートキャンペーンご紹介
========================= */
.campaign-head{
  padding:24px 16px 40px; /* 下に三角が出る分だけ余白 */
  text-align:center;
}

/* タイトル本体 */
.campaign-title{
  --accent:#DC7427; /* 画像のオレンジに近い色 */
  position:relative;
  display:inline-block;
  margin:0;
  padding:0 .3em .35em;     /* 下線との距離 */
  color:var(--accent);
  font-weight:800;
  letter-spacing:.02em;
  line-height:1.1;
  font-size:18px;
}

/* オレンジの下線 */
.campaign-title::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:clamp(1px, .1vw, 6px);
  background:var(--accent);
  border-radius:1px;
}

/* 中央の下向き三角 */
.campaign-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:calc(-1 * clamp(4px, 1.0vw, 10px));
  width:0;
  height:0;
  border-left:clamp(8px, 1.6vw, 10px) solid transparent;
  border-right:clamp(8px, 1.6vw, 10px) solid transparent;
  border-top:clamp(8px, 1.6vw, 10px) solid var(--accent);
}


/* =========================
  3大購入サポートキャンペーン（本体）
========================= */
.campaigns{
  background:#f3a323;              /* オレンジ背景 */
  padding: 18px 14px 28px;
}

.camp-card{
  background:#fff;
  border-radius:14px;
  border:2px solid rgba(0,0,0,.08);
  padding:16px 14px 18px;
  margin: 0 0 14px;
}

/* 見出し（番号＋タイトル） */
/* 01見出し（番号＋タイトル）を横並び＋中央寄せで固定 */
.camp-head{
  display: flex;             /* ←これが無い/上書きされてると縦になる */
  justify-content: center;
  align-items: center;       /* 縦位置も揃える */
  gap: 10px;
  text-align: left;
  margin-bottom: 16px;
}


.camp-no{
  margin:0;
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#fff;
  background:#f3a323;
  flex:0 0 auto;
  font-size:24px;
}

.camp-title{
  margin:2px 0 0;
  color:#16283B;
  font-weight:800;
  line-height:1.25;
  font-size:18px;
}

.camp-gift{
  --icon: url("img/icon-present.png");
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  color: #ED6C00;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
}

/* ★中央寄せ：ブロック化して中央に */
p.camp-gift{
  display: flex;              /* pの場合はこれが楽 */
  justify-content: center;
}


.camp-gift::before,
.camp-gift::after{
  content: "";
  width: 20px;     /* アイコンサイズ */
  height: 20px;
  background: var(--icon) no-repeat center / contain;
  flex: 0 0 auto;
}


/* メイン画像 */
.camp-hero{
  display:flex;
  justify-content:center;
  margin: 10px 0 12px;
}
.camp-hero__img{
  width: min(300px, 100%);
  height:auto;
  display:block;
}

/* 強調 */
.hl{
  background: linear-gradient(transparent 45%, rgba(243,163,35,.85) 0);
  font-size:20px;
  font-weight:800;
}

/* テキスト類 */
.camp-text{
  font-weight:500;
  margin: 8px 0 10px;
  color:#16283B;
  font-size:16px;
  line-height:1.6;
  text-align: center;
}

.camp-notes{
  margin: 0 0 12px;
  padding-left: 1.2em;
  color:#6b7c8f;
  font-size:11px;
  line-height:1.55;
}

.camp-sub{
  margin: 24px 0 16px;
  padding: 10px 12px;
  border:2px solid #F5A427;
  border-radius: 10px;
  color:#f18a00;
  font-weight:700;
  font-size:16px;
  text-align:center;
}

/* 01 サムネ */
.camp-thumbs{
  display:flex;
  gap:10px;
  justify-content:center;
  margin: 10px 0 6px;
}
.camp-thumb{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border:2px solid rgba(0,0,0,.06);
}

/* バッジ（02のオレンジ枠） */
.camp-badge{
  margin: 0 0 16px 0;
  padding: 10px 12px;
  border:2px solid #F5A427;
  border-radius: 10px;
  color:#f18a00;
  font-weight:700;
  font-size:16px;
  text-align:center;
}

/* ボタン */
.camp-actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.camp-actions--two{
  grid-template-columns: 1fr 1fr;
}

.btn-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#16283B;
  color:#fff;
  font-weight:700;
  font-size:13px;
  padding: 12px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.btn-pill:active{ transform: translateY(1px); }

/* 03 商品 */
.camp-products{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top: 10px;
}

.camp-prod{
  position:relative;
  padding: 10px 10px 12px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.08);
}

.camp-prod__img{
  width: 110px;
  height:auto;
  display:block;
  margin: 0 auto 8px;
}

.camp-prod__name{
  margin: 0;
  text-align:center;
  font-weight:800;
  color:#16283B;
}

.camp-prod__price{
  margin: 2px 0 8px;
  text-align:center;
  font-size:11px;
  color:#6b7c8f;
}

.camp-callout{
  margin: 0 auto;
  max-width: 320px;
  background:#fff7e7;
  border:1px solid rgba(243,163,35,.7);
  color:#f18a00;
  font-weight:700;
  font-size:11px;
  line-height:1.5;
  padding: 8px 10px;
  border-radius: 10px;
}

/* 03内のおすすめ用品ブロック想定 */
.winter-items{
  padding: 8px 0 0;
}

/* 1アイテム */
.witem{
  padding: 14px 0 22px;
}

.witem__top{
  display: grid;
  grid-template-columns: 1fr 120px; /* 吹き出し / 画像 */
  gap: 14px;
  align-items: center;
  margin: 8px 0 10px;
}

/* 2つ目は左右反転（画像 / 吹き出し） */
.witem--bubble-right .witem__top{
  grid-template-columns: 120px 1fr;
}

/* 商品画像 */
.witem__img{
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 商品名・価格（中央） */
.witem__name{
  margin: 8px 0 4px;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  color: #16283B;
  letter-spacing: .02em;
}

.witem__price{
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: #16283B;
}

/* 吹き出し共通 */
.bubble{
  --accent: #f3a323;
  position: relative;
  border: 3px solid var(--accent);
  border-radius: 14px;
  padding: 14px 14px;
  color: var(--accent);
  font-weight: 900;
  line-height: 1.35;
  font-size: 14px;
  background: #fff;
}

/* しっぽ（外枠＋内側の白） */
.bubble::before,
.bubble::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

/* 左向きのしっぽ（右側に出る） */
.bubble--left::before{
  right: -18px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--accent);
}
.bubble--left::after{
  right: -14px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #fff;
}

/* 右向きのしっぽ（左側に出る） */
.bubble--right::before{
  left: -18px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid var(--accent);
}
.bubble--right::after{
  left: -14px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #fff;
}

/* SPで詰まるなら少し小さく */
@media (max-width: 430px){
  .witem__top{
    grid-template-columns: 1fr 110px;
  }
  .witem--bubble-right .witem__top{
    grid-template-columns: 110px 1fr;
  }
  .witem__img{ width: 110px; }
  .bubble{ font-size: 16px; padding: 12px; }
  .witem__name{ font-size: 20px; }
  .witem__price{ font-size: 14px; }
}


/* 注意事項 */
.camp-caution{
  margin-top: 14px;
  color:#fff;
  font-size:14px;
  line-height:1.6;
}
.camp-caution__ttl{
  margin: 0 0 6px;
  font-weight:800;
  text-align: center;
	
}
.camp-caution ul{
  margin: 0;
  padding-left: 1.2em;
}








/* =========================
  KINTO
========================= */
.kinto{
  background:
    radial-gradient(#f3f0e4 1px, transparent 1px);
  background-size: 12px 12px;
}

.kinto__link{
  position: relative; /* ←必須：ボタンabsoluteの基準 */
  display: block;
  border-radius: 10px;
  overflow: visible;  /* ←ボタンをはみ出させるため */
  border: 2px solid rgba(0,0,0,.08);
  background: #fff;
  padding-bottom: 34px; /* ←ボタン分の余白（下が切れないように） */
}

/* 画像は角丸を維持したいので */
.kinto__img{
  width: 100%;
  height: auto;
  display: block;
}

/* 下に浮くボタン */
.kinto__btn{
  position: absolute;
  left: 50%;
  bottom: 10px; /* ←ここで「下に半分はみ出す」 */
  transform: translateX(-50%);

  width: min(260px, 78%);
  padding: 14px 18px;

  background: #2e6b80; /* 青緑系（画像っぽい） */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;

  border-radius: 200px;
}


/* =========================
  フッター
========================= */
.lp-footer{
  background: #16283B;
  color: rgba(255,255,255,.65);
  padding: 100px 12px;
  text-align: center;
  font-size: 11px;
}

.cta-fixed{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);

  width: min(280px, calc(100% - 24px)); /* 中央LP幅に合わせる */
  padding: 14px 16px;

  background: #f25b86; /* ピンク系 */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;

  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);

  z-index: 9999;
}

/* 押せる感 */
.cta-fixed:active{
  transform: translateX(-50%) translateY(1px);
}


/* =========================
  SP：左右背景を消す
========================= */
@media (max-width: 640px){
  body{
    background: #fff;
  }
  .side{ display: none; }
  .lp{
    width: 100%;
    box-shadow: none;
  }
}
