@charset "UTF-8";
/* ==========================================================================
   スギモト 敬老の日ギフトLP
   - PC（768px以上）を基準に記述し、767px以下でSPデザインに切り替える
   - SPは 1rem = 10 デザインpx（375px基準）で767pxまで比例スケール
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 変数
   -------------------------------------------------------------------------- */
:root {
  /* フォント（本物のA1明朝を使う場合は TypeSquare 等のタグ差し込み後、先頭にそのfont-family名を追加） */
  --font-a1: "Shippori Mincho B1", "Yu Mincho", "YuMincho", serif;
  --font-mincho: "Noto Serif JP", "Yu Mincho", serif;
  --font-gothic: "Noto Sans JP", "Hiragino Sans", sans-serif;

  /* カラー */
  --c-ink: #111111;
  --c-btn-orange: #d03504;
  --c-btn-from: #ee5b00;
  --c-btn-to: #b11207;
  --c-bg-orange: #da7941;
  --c-navy: #061829;
  --c-green: #113628;
  --c-footer: #1b4434;
  --c-red: #c30f1d;
  --c-tag-blue: #0086c9;
  --c-tag-red: #c00513;
  --c-gold: #e1bb51;         /* 金罫線・飾り枠（実装は画像に焼き込み済み。参照用） */
  --c-gold-deco: #daa03a;
  --c-base: #f0f4f5;
  --c-maroon: #65211d;
  --c-cream: #f9f0e6;
  --c-line: #5f7f73;
  --c-flag: #e95908;

  /* レイアウト */
  --w-content: 1003px;
}

/* --------------------------------------------------------------------------
   2. リセット / ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

/* 装飾のはみ出し（MVギフト箱・雲紋等）の横スクロール防止。
   iOS Safari は body だけの overflow-x:hidden では横パンを止められないため
   html にも指定し、対応ブラウザでは clip を使う */
html, body { overflow-x: hidden; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

body {
  margin: 0;
  color: var(--c-ink);
  font-family: var(--font-gothic);
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  /* PSDと同じ約物ツメ（プロポーショナルメトリクス）を再現 */
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, p, figure, ul, li, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }
img { border: 0; vertical-align: bottom; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.inner {
  width: min(var(--w-content), 100% - 40px);
  margin-inline: auto;
}

/* PC/SP切り替え用 */
.br-sp { display: none; }
.pt-l { display: inline; }

/* --------------------------------------------------------------------------
   3. 共通パーツ
   -------------------------------------------------------------------------- */

/* --- CTAボタン --- */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 453px;
  max-width: 100%;
  height: 87px;
  border-radius: 9999px;
  background-color: var(--c-btn-orange);
  background-image: linear-gradient(90deg, var(--c-btn-from) 0%, var(--c-btn-to) 100%);
  color: #fff;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 23.7px;
  letter-spacing: .1em;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
  transition: filter .2s ease;
}
.btn:hover { filter: brightness(1.12); }
.btn__label { display: block; text-indent: .1em; }

.btn__arrow {
  position: absolute;
  top: 50%;
  right: 38px;
  width: 37px;
  height: 37px;
  margin-top: -18.5px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}
.btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.btn--wide { width: 553px; }

/* --- 紺の見出しバー（選ばれる理由 / 梱包 / スケジュール 共通） --- */
.bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 83px;
  overflow: hidden;
  background: var(--c-navy);
  color: #fff;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .04em;
  line-height: 1;
}
.bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 37px;
  background: url(../img/common/ornament_cloud.png) no-repeat right top / 100% 100%;
}

/* --- 白ボックス（梱包 / お届けスケジュール） --- */
.wbox { background: #fff; }

/* --- 見出し（探すセクション） --- */
.heading {
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: .06em;
  line-height: 1;
  text-align: center;
}
.heading::after {
  content: "";
  display: block;
  width: 62px;
  height: 5px;
  margin: 28px auto 0;
  background: var(--c-line);
}

/* --- カード右下の金三角 --- */
.brand__card::after,
.usage__card::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 19px;
  height: 19px;
  background: linear-gradient(to bottom right, transparent 50%, var(--c-gold-deco) 50%);
}

/* --------------------------------------------------------------------------
   4. MV
   -------------------------------------------------------------------------- */
.mv { background: url(../img/common/tile_washi_cream.png) repeat; }

.mv__visual {
  background: url(../img/common/tile_paper.png) repeat;
  text-align: center;
}
.mv__collage {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.mv__lower { padding-bottom: 36px; }

.mv__card {
  position: relative;
  width: 996px;
  max-width: calc(100% - 40px);
  aspect-ratio: 996 / 653;
  margin: 22px auto 0;
  background: url(../img/mv/card.png) no-repeat center / 100% 100%;
}
.mv__ribbon {
  position: absolute;
  left: -104px;
  top: -91px;
  width: 489px;
  z-index: 2;
}
.mv__giftbox {
  position: absolute;
  left: 695px;
  top: 280px;
  width: 496px;
  z-index: 2;
}
.mv__card-inner {
  position: relative;
  z-index: 3;
  padding-top: 104px;
  text-align: center;
}
.mv__lead {
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: .14em;
  line-height: 1;
  text-indent: .14em;
}
.mv__text {
  margin-top: 40px;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .06em;
  line-height: 60px;
  text-indent: .06em;
}
.mv__action { display: flex; justify-content: center; margin-top: 42px; }

/* --------------------------------------------------------------------------
   5. 緑セクション（ブランドストーリー / 選ばれる理由）
   -------------------------------------------------------------------------- */
.green {
  position: relative;
  overflow: hidden;
  padding: 102px 0 99px;
  background: var(--c-green) url(../img/story/bg_story_top_pc.jpg) no-repeat top center;
  background-size: 1920px auto;
}
/* 筆ブラシ＋ロゴ（背景と同一ピクセルの切り出しなので継ぎ目なし） */
.green__logoblock {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -342px; /* canvas x618 (中心960基準) */
  width: 597px;
  pointer-events: none;
}
.green__logoblock img { width: 100%; height: auto; display: block; }

/* --- ブランドストーリー --- */
.story {
  position: relative;
  z-index: 1;
  width: min(var(--w-content), 100% - 40px);
  margin-inline: auto;
}
.story__logo { height: 115px; margin-bottom: 78px; }

.scard {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.scard--1 { aspect-ratio: 1003 / 404; background-image: url(../img/story/card_bg_1.png); }
.scard--2 { aspect-ratio: 1004 / 444; margin-top: 27px; background-image: url(../img/story/card_bg_2.png); }
.scard--3 { aspect-ratio: 1003 / 403; margin-top: 37px; background-image: url(../img/story/card_bg_3.png); }

.scard__body {
  position: absolute;
  left: 121px;
  top: 79px;
  width: 520px;
}
.scard__title {
  position: relative;
  color: #000;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: .06em;
  line-height: 1;
}
.scard__num {
  position: absolute;
  right: calc(100% + 16px);
  bottom: -12px;
  width: auto;
}
.scard--1 .scard__num { width: 45px; }
.scard--2 .scard__num { width: 59px; }
.scard--3 .scard__num { width: 56px; }

.scard__text {
  margin-top: 49px;
  color: #000;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 40px;
}
.scard__photo { position: absolute; }
.scard--1 .scard__photo { left: 705px; top: 2px;  width: 342px; }
.scard--2 .scard__photo { left: 646px; top: 49px; width: 342px; }
.scard--3 .scard__photo { left: 676px; top: 22px; width: 355px; }

/* --- 選ばれる理由 --- */
.reason {
  position: relative;
  z-index: 1;
  width: min(var(--w-content), 100% - 40px);
  margin: 98px auto 0;
}
/* PSD実測: 白地 + 写真オーバーレイ透過20%（通常ブレンド）。
   オーバーレイの配置はデザインbbox準拠（PC: box(459,3323,1003x639) に対し (445,3232,1238x826)） */
.reason__box {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.reason__box::before {
  content: "";
  position: absolute;
  left: -1.4%;
  top: -14.25%;
  width: 123.43%;
  height: 129.26%;
  background: url(../img/reason/overlay_shabu.jpg) no-repeat 0 0 / 100% 100%;
  opacity: .2;
}
.reason__box .bar { z-index: 1; }

.reason__body {
  position: relative;
  overflow: hidden;
  padding: 6px 0 14px;
}
.reason__list { position: relative; z-index: 1; }

.reason__item {
  display: flex;
  align-items: center;
  height: 134px;
  padding-left: 42px;
}
.reason__item + .reason__item { border-top: 2px dotted rgba(86, 63, 63, .55); }

.reason__icon {
  flex: 0 0 134px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason__label {
  margin-left: 28px;
  color: #000;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .06em;
  line-height: 1;
}

/* z-index を持たせない＝リストのテキストより背面に置き、写真の白背景を
   ボックス地色に馴染ませる（mix-blend-mode は同じ描画文脈で効かせる） */
.reason__figure {
  position: absolute;
  z-index: 1;
  right: 27px;
  bottom: 34px;
  text-align: right;
}
.reason__figure img { width: 289px; }
.reason__figure figcaption {
  margin-top: 5px;
  color: var(--c-navy);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 1;
}

.reason__lead {
  margin-top: 50px;
  color: #fff;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .04em;
  line-height: 44px;
  text-align: center;
  text-indent: .04em;
}
.reason__action { display: flex; justify-content: center; margin-top: 41px; }

/* --------------------------------------------------------------------------
   6. 探す（銘柄 / 用途 / 予算別）
   -------------------------------------------------------------------------- */
.search { padding: 118px 0 148px; background: var(--c-base); }
.search__block + .search__block { margin-top: 98px; }

/* 銘柄で探す */
.brand { display: flex; gap: 17px; margin-top: 47px; }
.brand li { flex: 1 1 0; }
.brand__card {
  position: relative;
  display: flex;
  align-items: center;
  height: 153px;
  padding-left: 10px;
  background: #fff;
}
.brand__thumb { flex: 0 0 153px; }
.brand__thumb img { width: 153px; }
.brand__label {
  margin-left: 47px;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1;
}

/* 用途で探す */
.usage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 18px;
  margin-top: 47px;
}
.usage li { flex: 0 0 calc((100% - 36px) / 3); }
.usage__card {
  position: relative;
  display: block;
  background: #fff;
}
.usage__thumb {
  display: block;
  aspect-ratio: 322 / 243;
  overflow: hidden;
}
.usage__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usage__label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .08em;
  line-height: 1;
  text-indent: .08em;
}

/* 予算別で探す */
.budget { display: flex; gap: 18px; margin-top: 47px; }
.budget li { flex: 1 1 0; }
.budget__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  border: 1px solid #e2e2e2;
  border-radius: 9999px;
  background: #fff;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1;
}
.budget__arrow {
  position: absolute;
  top: 50%;
  right: 31px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1.5px solid #555;
  border-right: 1.5px solid #555;
  transform: translateY(-1px) rotate(45deg);
}

/* --------------------------------------------------------------------------
   7. 対象商品一覧
   -------------------------------------------------------------------------- */
.products {
  padding: 57px 0 150px;
  background: var(--c-bg-orange) url(../img/common/bg_orange_left.png) repeat;
}
.products__head { text-align: center; }
.products__ornament { width: 1186px; max-width: 100%; }
.products__title {
  margin-top: 32px;
  color: #fff;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: .06em;
  line-height: 1;
  text-indent: .06em;
}
.products__list { margin-top: 68px; }

/* --- 商品カード --- */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 1166px;
  padding: 21px;
  border: 14px solid transparent;
  border-image: url(../img/common/card_frame.png) 14 fill / 14px stretch;
  background: #fff;
}
.pcard + .pcard { margin-top: 47px; }

.pcard__thumb { position: relative; }
.pcard__photo { display: block; width: 100%; }
.pcard__ribbon {
  position: absolute;
  right: 0;
  top: -13px;
  width: 101px;
}

.pcard__body {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0 10px 0 20px;
}

.pcard__name {
  margin-top: 33px;
  padding-right: 138px;
  color: #000;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: .04em;
  line-height: 1.15;
}
.pcard__code {
  position: absolute;
  right: 15px;
  top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 121px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #9a9a9a;
  border-radius: 5px;
  color: #000;
  font-family: var(--font-gothic);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
}
.pcard__desc {
  margin-top: 20px;
  color: #000;
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 44px;
}
.pcard__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}
.pcard__spec { margin-top: -6px; }
.pcard__spec li {
  color: #000;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .06em;
  line-height: 30px;
}
.pcard__price-area {
  display: flex;
  align-items: flex-end;
  gap: 19px;
}
.pcard__tags { display: flex; gap: 3px; }
.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  background: var(--c-tag-blue);
  color: #fff;
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .06em;
  line-height: 23px;
  text-align: center;
  text-indent: .06em;
}
.tag--ship { background: var(--c-tag-red); }

.pcard__price {
  position: relative;
  padding-right: 4px;
  color: var(--c-red);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 68px;
  letter-spacing: 0;
  line-height: .82;
  white-space: nowrap;
}
.pcard__yen { font-size: .6em; } /* PSD: 円はHorizontal/VerticalScale 0.6 */
.pcard__tax {
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--c-red);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .04em;
  line-height: 1;
}
.pcard__action {
  display: flex;
  justify-content: flex-end;
  margin: auto 0 25px;
  padding-top: 31px;
}

/* --------------------------------------------------------------------------
   8. 梱包について
   -------------------------------------------------------------------------- */
.pack { padding-top: 148px; background: var(--c-base); }
.pack .wbox__body { padding: 0 50px 64px; }

.pack__lead {
  margin-top: 55px;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}
.pack__list { display: flex; gap: 19px; margin-top: 46px; }
.pack__item { flex: 1 1 0; }
.pack__fig img {
  display: block;
  width: 100%;
  aspect-ratio: 288 / 216;
  object-fit: cover;
}
.pack__cap {
  height: 44px;
  background: var(--c-maroon);
  color: #fff;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .06em;
  line-height: 44px;
  text-align: center;
  text-indent: .06em;
}
.pack__note {
  margin-top: 17px;
  color: var(--c-ink);
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26px;
}

/* --------------------------------------------------------------------------
   9. お届けスケジュール
   -------------------------------------------------------------------------- */
.schedule { padding-top: 78px; background: var(--c-base); }
.schedule .wbox__body { padding: 0 30px 50px; }

.schedule__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 41px;
}
.schedule__flag {
  display: flex;
  align-items: center;
  height: 49px;
  padding: 0 40px 0 32px;
  background: var(--c-flag);
  color: #fff;
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .04em;
  line-height: 1;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}
.schedule__date {
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .08em;
  line-height: 1;
}
.schedule__note {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  background: #eaeaea;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1;
}
.schedule__last {
  margin-top: 26px;
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-indent: .08em;
}

/* --------------------------------------------------------------------------
   10. クロージングCTA
   -------------------------------------------------------------------------- */
.closing { padding: 119px 0 148px; background: var(--c-base); }
/* 見出し1行が長いため、このセクションだけ内側幅を少し広く取る */
.closing .inner { width: min(1120px, 100% - 40px); }
.closing__lead {
  color: var(--c-ink);
  font-family: var(--font-a1);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .04em;
  line-height: 60px;
  text-align: center;
  text-indent: .06em;
}
.closing__action { display: flex; justify-content: center; margin-top: 47px; }

/* --------------------------------------------------------------------------
   11. フッター
   -------------------------------------------------------------------------- */
.footer {
  padding: 55px 0 60px;
  background: var(--c-footer);
  color: #fff;
  font-family: var(--font-mincho);
  text-align: center;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 20px;
  letter-spacing: .08em;
  line-height: 1;
}
.footer__nav a:hover { text-decoration: underline; }

.footer__info {
  margin-top: 56px;
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 26px;
}
.footer__info a:hover { text-decoration: underline; }

.footer__copy {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 1;
}

/* ==========================================================================
   12. SP（767px以下）
   1rem = 10 デザインpx。767pxまでビューポート幅に比例してスケール
   ========================================================================== */
@media (max-width: 767px) {

  html { font-size: calc(100vw / 37.5); }

  .inner { width: 100%; padding-inline: 1.45rem; }

  .br-pc { display: none; }
  .br-sp { display: inline; }
  .pt-l { display: block; }

  /* --- 共通パーツ --- */
  .btn {
    width: 22.6rem;
    height: 4.35rem;
    font-size: 1.185rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .18);
  }
  .btn__arrow {
    right: 1.6rem;
    width: 1.85rem;
    height: 1.85rem;
    margin-top: -.925rem;
    border-width: 1px;
  }
  .btn__arrow::before {
    width: .45rem;
    height: .45rem;
    margin: -.225rem 0 0 -.28rem;
    border-width: 1px;
  }
  .btn--wide,
  .reason__action .btn { width: 29.1rem; height: 5.1rem; }

  .bar {
    height: 4.2rem;
    font-size: 1.6rem;
  }
  .bar::after { width: 8rem; height: 1.85rem; }

  .heading { font-size: 2.1rem; }
  .heading::after { width: 3.15rem; height: .25rem; margin-top: 1.4rem; }

  .brand__card::after,
  .usage__card::after { right: 3px; bottom: 3px; width: .95rem; height: .95rem; }

  /* --- MV --- */
  .mv__lower { padding-bottom: 2.1rem; }
  .mv__card {
    width: 31.2rem;
    max-width: calc(100% - 2.9rem);
    aspect-ratio: 312 / 318.5;
    margin-top: 5.1rem;
  }
  .mv__ribbon { left: -6.55rem; top: -9.65rem; width: 24.45rem; }
  .mv__giftbox { left: 13.95rem; top: -20.85rem; width: 24.75rem; }
  .mv__card-inner { padding-top: 3.85rem; }
  .mv__lead { font-size: 2.3rem; }
  .mv__text { margin-top: 2.25rem; font-size: 1.4rem; line-height: 3rem; }
  .mv__action { margin-top: 3.05rem; }

  /* --- 緑セクション --- */
  .green {
    padding: 4.1rem 0 5rem;
    background-image: url(../img/story/bg_story_top_sp.jpg);
    background-size: 37.5rem auto;
  }
  .green__logoblock {
    margin-left: -12.3rem; /* canvas x2618 → CSS 64.5px、中心187.5px基準で -123px */
    width: 22.5rem;
  }

  .story__logo { height: 5.75rem; margin-bottom: 4rem; }

  .scard--1 { aspect-ratio: 346 / 222; }
  .scard--2 { aspect-ratio: 347 / 242; margin-top: 1.35rem; }
  .scard--3 { aspect-ratio: 346 / 221.5; margin-top: 1.85rem; }

  .scard__body { left: 5.05rem; top: 3.9rem; width: 24.4rem; }
  .scard__title { font-size: 1.7rem; }
  .scard__num { right: calc(100% + .7rem); bottom: -.5rem; }
  .scard--1 .scard__num { width: 2.25rem; }
  .scard--2 .scard__num { width: 2.95rem; }
  .scard--3 .scard__num { width: 2.8rem; }
  .scard__text { margin-top: 2.5rem; font-size: 1.2rem; line-height: 2rem; }

  .scard--1 .scard__photo { left: 19.8rem; top: -6.15rem; width: 17.1rem; }
  .scard--2 .scard__photo { left: 20.3rem; top: -5.3rem;  width: 16.4rem; }
  .scard--3 .scard__photo { left: 19.8rem; top: -5rem;    width: 17.7rem; }

  .reason { margin-top: 4.9rem; }
  /* SP: box(2518,3962,692x640) に対しオーバーレイ (2386,3898,1074x716) */
  .reason__box::before {
    left: -19.08%;
    top: -10%;
    width: 155.2%;
    height: 111.88%;
  }
  .reason__body { padding: .3rem 0 .8rem; }
  .reason__item { height: 6.7rem; padding-left: 1.5rem; }
  .reason__item + .reason__item { border-top-width: 1px; }
  .reason__icon { flex-basis: 6.7rem; }
  .reason__icon img { max-height: 4.5rem; width: auto; }
  .reason__item:nth-child(1) .reason__icon img { width: 4.8rem; }
  .reason__item:nth-child(2) .reason__icon img { width: 3.3rem; }
  .reason__item:nth-child(3) .reason__icon img { width: 4rem; }
  .reason__item:nth-child(4) .reason__icon img { width: 3.3rem; }
  .reason__label { margin-left: 1.15rem; font-size: 1.6rem; }

  .reason__figure { right: .85rem; bottom: 1.3rem; }
  .reason__figure img { width: 14.45rem; }
  .reason__figure figcaption { margin-top: .3rem; font-size: 1rem; }

  .reason__lead { margin-top: 2.9rem; font-size: 1.5rem; line-height: 2.2rem; }
  .reason__action { margin-top: 2.4rem; }

  /* --- 探す --- */
  .search { padding: 6rem 0 7.9rem; }
  .search__block + .search__block { margin-top: 5.5rem; }

  .brand { flex-direction: column; gap: .85rem; margin-top: 3rem; }
  .brand__card { height: 7.65rem; padding-left: .8rem; }
  .brand__thumb { flex-basis: 7.65rem; }
  .brand__thumb img { width: 7.65rem; }
  .brand__label { margin-left: 2.9rem; font-size: 1.6rem; }

  .usage { justify-content: flex-start; gap: .85rem; margin-top: 3rem; }
  .usage li { flex: 0 0 calc((100% - .85rem) / 2); }
  .usage__thumb { height: 12.15rem; }
  .usage__label { height: 4.5rem; font-size: 1.6rem; }

  .budget { flex-wrap: wrap; gap: .9rem .85rem; margin-top: 3.15rem; }
  .budget li { flex: 0 0 calc((100% - .85rem) / 2); }
  .budget__btn { height: 4.1rem; font-size: 1.605rem; }
  .budget__arrow { right: 2.2rem; width: .5rem; height: .5rem; margin-top: -.25rem; border-width: 1px; }

  /* --- 対象商品一覧 --- */
  .products { padding: 2.2rem 0 5.5rem; }
  .products__ornament { width: 120%; max-width: none; margin-left: -10%; }
  .products__title { margin-top: 1.9rem; font-size: 3.6rem; }
  .products__list { margin-top: 3.9rem; }

  .pcard { min-height: 0; padding: 1.05rem; border-width: 8px; border-image-width: 8px; border-image-slice: 14 fill; }
  .pcard + .pcard { margin-top: 2.6rem; }
  .pcard__ribbon { top: -.65rem; width: 5.05rem; }
  .pcard__body { padding: 0; }

  .pcard__name { margin-top: 2.2rem; padding-right: 0; font-size: 2.7rem; line-height: 1.35; }
  .pcard__desc { margin-top: 1.4rem; font-size: 1.3rem; line-height: 2.3rem; }

  .pcard__info { display: block; margin-top: 1.8rem; }
  .pcard__spec { margin-top: 0; }
  .pcard__spec li { font-size: 1.2rem; line-height: 1.8rem; }

  .pcard__code {
    position: static;
    display: flex;
    width: max-content;
    min-width: 6.05rem;
    height: 2rem;
    margin: -.4rem 1rem 0 auto;
    padding: 0 .6rem;
    border-radius: 3px;
    font-size: 1.1rem;
  }
  .pcard__price-area { justify-content: flex-end; gap: .9rem; margin-top: 1.4rem; padding-right: 1.1rem; }
  .pcard__tags { gap: .15rem; }
  .tag { width: 3.65rem; height: 3.65rem; font-size: 1rem; line-height: 1.15rem; }
  .pcard__price { font-size: 3.4rem; }
  .pcard__tax { font-size: .9rem; top: -.1rem; }

  .pcard__action { justify-content: center; margin: auto 0 .9rem; padding-top: 1.85rem; }

  /* --- 梱包 --- */
  .pack { padding-top: 4.8rem; }
  .pack .wbox__body { padding: 0 2.5rem 3rem; }
  .pack__lead { margin-top: 2.6rem; margin-inline: -1.6rem; font-size: 1.4rem; line-height: 2.2rem; }
  .pack__list { display: block; margin-top: 2.85rem; }
  .pack__item { display: flex; gap: .95rem; }
  .pack__item + .pack__item { margin-top: 1.3rem; }
  .pack__fig { flex: 0 0 13.85rem; }
  .pack__cap { height: 2.7rem; font-size: 1.6rem; line-height: 2.7rem; }
  .pack__note { flex: 1 1 auto; margin-top: 1.6rem; font-size: 1.2rem; line-height: 1.8rem; }

  /* --- お届けスケジュール --- */
  .schedule { padding-top: 3.8rem; }
  .schedule .wbox__body { padding: 0 1.5rem 3.9rem; }
  .schedule__row { display: block; text-align: center; margin-top: 2rem; }
  .schedule__flag {
    display: inline-flex;
    vertical-align: middle;
    height: 2.4rem;
    padding: 0 2rem 0 1.6rem;
    font-size: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 1.1rem) 0, 100% 50%, calc(100% - 1.1rem) 100%, 0 100%);
  }
  .schedule__date { display: inline-block; vertical-align: middle; margin-left: .95rem; font-size: 1.5rem; }
  .schedule__note { display: table; height: 2.25rem; margin: .9rem auto 0; font-size: 1.3rem; }
  .schedule__last { margin-top: 1.5rem; font-size: 1.4rem; }

  /* --- クロージング --- */
  .closing { padding: 3.9rem 0 4rem; }
  .closing .inner { width: 100%; padding-inline: .8rem; }
  .closing__lead { font-size: 1.9rem; letter-spacing: .02em; line-height: 3.2rem; }
  .closing__action { margin-top: 2.9rem; }

  /* --- フッター --- */
  .footer { padding: 2.6rem 0 2.6rem; }
  .footer__nav { gap: 2rem; font-size: 1.1rem; }
  .footer__info { margin-top: 2.2rem; font-size: 1rem; line-height: 1.7rem; }
  .footer__copy { margin-top: 1.6rem; font-size: .95rem; }
}

/* ==========================================================================
   13. PC小さめ幅（768〜1042px）の調整
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1042px) {
  .mv__ribbon { left: -60px; top: -70px; width: 380px; }
  .mv__giftbox { left: auto; right: -60px; top: 60%; width: 400px; }
  .scard__body { left: 12%; width: 52%; }
  .scard__photo { max-width: 34%; }
  .scard--1 .scard__photo { left: 70%; width: 34%; }
  .scard--2 .scard__photo { left: 64%; width: 34%; }
  .scard--3 .scard__photo { left: 67%; width: 35%; }
}
