@import url("../common.css");

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*------------------------
商品情報ページ（merchandise）
-------------------------*/

:root {
  --merch-yellow: #ffe400;
  --merch-yellow-deep: #ffd200;
  --merch-red: #eb0000;
  --merch-red-dark: #ca0108;
}

/* 商品ページFV */
.page-fv {
  width: 95.83333333333334vw;
  max-width: 1840px;
  padding: 0;
  margin: 26px auto 20px;
  position: relative;
  overflow: hidden;
  border: solid 6px var(--color-black);
}

.page-fv__scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1840 / 350;
}

.page-fv__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-fv__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 2;
}

.page-fv__overlay {
  width: 92vw;
  max-width: 1400px;
  margin: auto;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  z-index: 10;
}

.page-fv__accent {
  width: 13.695652173913043vw;
  max-width: 252px;
  height: 13.423913043478262vw;
  max-height: 247px;
  margin: 0;
  position: absolute;
  left: 2.923076923076923vw;
  top: 2.5vw;
  z-index: 0;
  background: url(../../img/common/page-fv__accent.png) 0 0 no-repeat;
  background-size: cover;
}

.page-fv__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

/* sec01：見出し → モザイク → リード → 特長カード */
.merch-sec01.section {
  padding: 85px 0 150px;
  position: relative;
}

.merch-sec01.section::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("../../img/merchandise/sec01_bg.png") center top / 100% no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}

.merch-sec01.section::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 31px;
  background: url("../../img/common/bg_checks.png") 0px 0px / 1920px repeat-x;
}

.merch-sec01__inner {
  max-width: 1260px;
  position: relative;
  z-index: 2;
}

.merch-sec01__title {
  margin: 0 auto 35px;
  max-width: 949px;
  max-height: unset;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 4px var(--color-black);
  text-align: center;
  text-shadow: 0 2px #000,
    0 6px #000,
    0 10px #000;
  paint-order: stroke fill;
}

.merch-sec01__title-line {
  display: block;
}

.merch-sec01__title-brand {
  color: var(--merch-yellow);
}

.merch-sec01__title-plain {
  color: var(--color-white);
}

.merch-sec01__title-quote {
  color: var(--merch-red);
}

.merch-sec01__mosaic {
  display: block;
  max-width: 1200px;
  max-height: 400px;
  margin: 0 auto 50px;
}

.merch-sec01__lead {
  margin: 0 auto 56px;
  max-width: 1000px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.67;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-black);
}

.merch-sec01__lead-row {
  display: inline;
}

.merch-sec01__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.merch-sec01__grid:before {
  content: "";
  position: absolute;
  bottom: 0.78125vw;
  right: -1.3333333333333335vw;
  width: 24.416666666666668vw;
  max-width: 293px;
  height: 20.25vw;
  max-height: 243px;
  background: url(../../img/merchandise/sec01_bg_img.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

@media screen and (min-width: 751px) {
  .page-fv__title {
    -webkit-text-stroke: 4px var(--color-black);
    text-shadow: 0 2px #000,
      0 6px #000,
      0 10px #000;
    paint-order: stroke fill;
  }

  .merch-sec01__grid>li:nth-child(7) {
    grid-column: 1;
  }

  .merch-sec01__grid>li:nth-child(8) {
    grid-column: 2;
  }
}

@media screen and (min-width: 751px) and (max-width: 1400px) {
  .page-fv__title {
    font-size: 5.416666666666667vw;
    font-size: 4.642857142857143vw;
  }
}

.merch-feature-card {
  background: var(--color-white);
  border: 6px solid var(--color-black);
  padding: 0 0 28px;
  position: relative;
  height: 100%;
}

.merch-feature-card__image {
  margin: 0 0 20px;
  aspect-ratio: 380 / 240;
  overflow: hidden;
}

.merch-feature-card_layout_tall .merch-feature-card__image {
  aspect-ratio: 380 / 268;
}

.merch-feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-feature-card .subsection-title {
  margin: 0 30px 15px;
  font-weight: 800;
}

.merch-feature-card__text {
  margin: 0;
  padding: 0 30px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.merch-catalog {
  padding: 120px 0 100px;
  background: var(--merch-yellow-deep);
}

.merch-catalog__head {
  text-align: center;
  margin-bottom: 50px;
}

.merch-catalog__head .section-title {
  margin-bottom: 60px;
}

.merch-catalog__lead {
  margin: 0 auto;
  max-width: 900px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}

.merch-catalog__lead a {
  color: var(--color-black);
  text-decoration: underline;
}

.merch-catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 60px 38px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/*.merch-catalog__grid:before {
  content: "";
  position: absolute;
  bottom: 1.40625vw;
  right: -3.0208333333333335vw;
  width: 30.75vw;
  max-width: 369px;
  height: 20.416666666666668vw;
  max-height: 245px;
  background: url(../../img/merchandise/cat_img.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}*/

.merch-catalog-item {
  text-align: center;
}

.merch-catalog-item__thumb {
  margin: 0 0 18px;
  background: var(--color-white);
  border: 6px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-catalog-item__flow {
  min-height: 2.6em;
  margin: 0 0 16px;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merch-catalog-item__name {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}

.merch-catalog-item__btn {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {
  .merch-catalog-item__btn {
    min-width: unset;
    padding-left: 2.3333333333333335vw;
    padding-right: 2.3333333333333335vw;
    justify-content: center;
    flex-flow: row wrap;
    white-space: nowrap;
    gap: 0.4166666666666667vw;
  }
}

.merch-catalog-item__btn .ic_dl {
  width: 16px;
  height: 18px;
  margin: auto 0;
  padding: 0px;
  background: url(../../img/common/ic_dl.png) 0px 0px / 100% no-repeat;
  display: block;
  position: relative;
}

.baseBtn-style__normal.merch-catalog-item__btn::after {
  content: none;
}

.merch-pb {
  padding: 120px 0 150px;
  background: var(--color-white);
  position: relative;
}

.merch-pb::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 31px;
  background: url("../../img/common/bg_checks.png") 0px 0px / 1920px repeat-x;
}

.merch-pb__head {
  text-align: center;
  margin: 0 auto 52px;
}

.merch-pb .section-title {
  margin: 0px 0px 42px;
  letter-spacing: 0.05em;
}

.merch-pb__lead {
  margin: 0 auto;
  max-width: 960px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.merch-pb__row {
  margin: 0 auto 75px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.merch-pb-card {
  border: 6px solid var(--color-black);
  background: var(--color-bg);
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
}

.merch-pb-card__image {
  width: 23.833333333333336vw;
  max-width: 286px;
  overflow: hidden;
  position: relative;
}

.merch-pb-card__image img {
  max-width: unset;
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
}

.merch-pb-card__body {
  width: 23.5vw;
  padding: 24px 0 32px 28px;
}

.merch-pb-card .subsection-title {
  margin: 0 0 12px;
  text-align: left;
}

.merch-pb-card__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.875;
}

.merch-pb .subsection-title_size_lg {
  margin: 0 0 24px;
  font-weight: 800;
}

.merch-pb-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.merch-pb-product__name {
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
}

.merch-pb-product__image {
  margin: 0 auto 12px;
  overflow: hidden;
  border: 6px solid var(--color-black);
}


/* 特選食材（Figma PC 48-4542 ヘッダー／ナビ構成に準拠） */
.merch-special.section {
  padding: 110px 0 0;
}

.merch-special__hero {
  margin-bottom: 80px;
}

.merch-special__hero-head {
  padding: 0;
  margin: 0 auto 85px;
}

.merch-special__intro {
  margin: 0 auto;
  max-width: 75rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
}

.merch-special__nav-inner {
  width: 92vw;
  max-width: 1000px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  border: 4px solid var(--color-black);
  border-top: none;
  border-bottom: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.merch-special__nav-link {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-decoration: none;
  border-right: 4px solid var(--color-black);
  box-sizing: border-box;
}

.merch-special__nav-link:last-child {
  border-right: none;
}

.merch-special__nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--color-black) transparent transparent transparent;
}

.merch-special__nav-link:hover {
  opacity: 0.75;
}

.merch-special__body {
  padding: 0;
  display: block;
}

@media screen and (min-width: 1100px) {
  .merch-pb-card__body {
    width: 282px;
  }

  .merch-pb-card__image {
    width: 286px;
    height: 256px;
  }

  .merch-pb-card__image img {
    left: unset;
    right: 0;
  }
}

/* 特選カード（Figma PC 51-4804 / SP 43-1717・43-1844・43-2010） */
.merch-special__body>article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.merch-special__body>article.merch-special-col_variant_sobako,
.merch-special__body>article.merch-special-col_variant_kamo,
.merch-special__body>article.merch-special-col_variant_yuba {
  overflow: visible;
}

.merch-special__body>article .subsection-title {
  margin: 0;
  padding: 24px 20px 20px;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-align: center;
}

/* 特選・そば粉（Figma PC 43-767 / SP 43-1717）— common の .subsection-title と独立 */
.merch-special-sobako {
  background-color: var(--merch-red-dark);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 38%);
}

.merch-special-sobako__hero {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.merch-special-col_variant_kamo,
.merch-special-col_variant_yuba {
  background: var(--color-white);
}

.merch-special-col_variant_kamo .subsection-title,
.merch-special-col_variant_yuba .subsection-title {
  color: var(--color-black);
  background: transparent;
  padding-top: 28px;
}

.merch-special-col_variant_kamo .subsection-title__highlight,
.merch-special-col_variant_yuba .subsection-title__highlight {
  margin-left: 0.08em;
  color: var(--merch-red-dark);
}

/* アウトロ（Figma PC 43-1349 / SP 43-2154） */
.merch-outro.section {
  padding: 150px 0 100px;
  position: relative;
  background: var(--color-white);
}

.merch-outro.section::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("../../img/merchandise/outro_bg.png") center top / 100% no-repeat;
  position: absolute;
  top: 75px;
  left: 0px;
  right: 0px;
  z-index: 1;
}

.merch-outro.section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 31px;
  background: url("../../img/common/bg_checks.png") 0px 0px / 1920px repeat-x;
  z-index: 1;
}

.merch-outro__inner {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.merch-outro__wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3.2rem;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.06) 0,
      rgba(0, 0, 0, 0.06) 2px,
      transparent 2px,
      transparent 14px);
  opacity: 0.45;
}

.merch-outro__content {
  position: relative;
  z-index: 1;
}

.merch-outro__title {
  width: 100%;
  margin: 0;
  padding: 0 0 48px;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-text-stroke: 4px var(--color-black);
  paint-order: stroke;
  text-shadow: 0 2px #000,
    0 4px #000,
    0 6px #000;
  position: relative;
}

.merch-outro__title:before,
.merch-outro__title:after {
  content: "";
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  position: absolute;
  bottom: 0;
  display: block;
}

.merch-outro__title:before {
  content: "";
  max-width: 141px;
  width: 11.75vw;
  max-height: 184px;
  height: 15.333333333333332vw;
  background: url(../../img/merchandise/outro_img01.png) 0 0 no-repeat;
  background-size: 100%;
  left: 7.416666666666667%;
}

.merch-outro__title:after {
  content: "";
  max-width: 169px;
  width: 14.083333333333334vw;
  max-height: 182px;
  height: 15.166666666666668vw;
  background: url(../../img/merchandise/outro_img02.png) 0 0 no-repeat;
  background-size: 100%;
  right: 5.833333333333333%;
}

.merch-outro__title-line {
  display: block;
}

.merch-outro__title-mark {
  color: var(--merch-yellow);
}

.merch-outro__title-muted {
  color: var(--color-white);
}

.merch-outro__title-accent {
  color: var(--merch-red);
}

.merch-outro__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}

.merch-outro__point {
  background-color: #f5f2e2;
  padding: 20px 25px 30px;
  position: relative;
  text-align: center;
  border: solid 6px var(--color-black);
}

.merch-lp-card-grid__icon {
  width: 25px;
  height: 21px;
  margin: 0 auto 15px;
  text-align: center;
  display: block;
}

.merch-outro__point-label {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-black);
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.merch-outro__point-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--color-black);
  border-radius: 2px;
  position: relative;
  box-sizing: border-box;
}

.merch-outro__point-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.55rem;
  height: 1rem;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(40deg);
}

.merch-outro__text {
  margin: 0 auto;
  max-width: 75rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-black);
}

/* お役立ちコラム（Figma PC 43-1395 / SP 43-2189） */
.merch-column {
  padding: 120px 0 120px;
  background: var(--color-bg);
  position: relative;
}

.merch-column::before {
  content: "";
  position: absolute;
  top: 3.2857142857142856vw;
  left: calc(50% + 22.428571428571427vw);
  width: 32.92857142857143vw;
  max-width: 461px;
  height: 16.142857142857142vw;
  max-height: 226px;
  background: url("../../img/merchandise/column_img01.png") 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column .section-title {
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.merch-column__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.merch-column-card__inner {
  display: grid;
  grid-template-columns: minmax(220px, 290px) 2px minmax(0, 1fr);
  gap: 0 36px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 32px;
  background: var(--color-white);
  border: solid 6px var(--color-black);
  position: relative;
}

.merch-column-card:nth-of-type(2) .merch-column-card__inner::before {
  content: "";
  position: absolute;
  top: 194px;
  /* bottom: 4.27083333333333vw; */
  left: 4.208754208754209%;
  width: 21.583333333333332vw;
  max-width: 259px;
  height: 14.833333333333334vw;
  max-height: 178px;
  background: url(../../img/merchandise/column_img02.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column-card:nth-of-type(4) .merch-column-card__inner::before {
  content: "";
  position: absolute;
  bottom: 2.083333333333333vw;
  bottom: 40px;
  left: 3.3333333333333335%;
  width: 10.5vw;
  max-width: 126px;
  height: 6.75vw;
  max-height: 81px;
  background: url(../../img/merchandise/column_img04.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column-card:nth-of-type(5) .merch-column-card__inner::before {
  content: "";
  position: absolute;
  bottom: 38px;
  left: 19.083333333333332%;
  width: 8.41666666666666vw;
  max-width: 101px;
  height: 8vw;
  max-height: 96px;
  background: url(../../img/merchandise/column_img05.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column-card:nth-of-type(6) .merch-column-card__inner::before {
  content: "";
  position: absolute;
  top: 9.635416666666668vw;
  top: 185px;
  left: 4.333333333333334%;
  width: 5.75vw;
  max-width: 69px;
  height: 4.083333333333333vw;
  max-height: 49px;
  background: url(../../img/merchandise/column_img06.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column-card:nth-of-type(8) .merch-column-card__inner::before {
  content: "";
  position: absolute;
  bottom: 3.958333333333333vw;
  left: 11.666666666666666%;
  width: 14.833333333333334vw;
  max-width: 178px;
  height: 6.916666666666667vw;
  max-height: 83px;
  background: url(../../img/merchandise/column_img07.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-column-card__head {
  min-width: 0;
}

.merch-column-card .subsection-title {
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.merch-column-card .subsection-title__highlight {
  color: var(--merch-red-dark);
}

.merch-column-card__rule {
  width: 2px;
  min-height: calc(100% + 10px);
  margin: -5px auto;
  background: var(--color-black);
}

.merch-column-card__body {
  min-width: 0;
}

.merch-column-card__body p {
  margin: 0 0 1.125em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.merch-column-card__body p:last-child {
  margin-bottom: 0;
}

.merch-column-card__list {
  margin: 0 0 1.125em 1.25em;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  list-style: disc;
}

.merch-column-card__list li {
  margin-bottom: 0.25em;
}

/* PC（751px〜1200px） */
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .merch-sec01__title {
    font-size: 4.58333vw;
  }

  .merch-sec01__lead {
    font-size: 2vw;
  }

  .merch-special__body>article .subsection-title {
    font-size: 4.58333vw;
  }

  .merch-outro__title {
    font-size: 4.58333vw;
  }

  .merch-outro__point {
    font-size: 2vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number {
    font-size: 1.75vw;
    background-size: 100%;
    left: -1.66667vw;
    top: -3.66667vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number span {
    font-size: 3.5vw;
  }

  .merch-column-card:nth-of-type(2) .merch-column-card__inner::before {
    top: 16.166666666666664vw;
  }

  .merch-column-card:nth-of-type(5) .merch-column-card__inner::before {
    bottom: 2.083333333333333vw;
  }
}

/* SP（750px以下） */
@media screen and (max-width: 750px) {
  .page-fv {
    width: 92vw;
    margin: 4.133333333333333vw auto 0;
    border-width: 0.8vw;
  }

  .page-fv__scene {
    aspect-ratio: 684 / 268;
    max-height: min(88vw, 480px);
  }

  .page-fv__overlay {
    padding: 0 2.933333333333333vw 0;
  }

  .page-fv__accent {
    left: 9.2%;
    width: clamp(12rem, 30.7vw, 21.2rem);
    height: clamp(11.5rem, 30.1vw, 20.8rem);
  }

  .page-fv__title {
    margin-top: 0.6666666666666667vw;
    font-size: 7.333333333333333vw;
    text-shadow: 0 2px #000,
      0 4px #000,
      0 6px #000;
    -webkit-text-stroke: 4px var(--color-black);
    paint-order: stroke fill
  }

  .merch-sec01.section {
    padding: 10.666666666666668vw 0 20vw;
  }

  .merch-sec01__title {
    max-height: unset;
    margin-bottom: 4.266666666666667vw;
    font-size: 7.333333333333333vw;
    line-height: 1.5;
    text-shadow: 0 2px #000,
      0 4px #000,
      0 6px #000;
    -webkit-text-stroke: 4px var(--color-black);
    paint-order: stroke fill
  }

  .merch-sec01__mosaic {
    margin-bottom: 8.666666666666668vw;
  }

  .merch-sec01__lead {
    margin: 0 auto 13.333333333333334vw;
    margin-bottom: 12vw;
    font-size: 4.266666666666667vw;
    line-height: 1.5625;
    letter-spacing: 0.05em;
  }

  .merch-sec01__grid {
    grid-template-columns: 1fr;
    gap: 6.666666666666667vw;
  }

  .merch-sec01__grid:before {
    content: none;
  }

  .merch-sec01__grid>li:nth-child(7),
  .merch-sec01__grid>li:nth-child(8) {
    grid-column: auto;
  }

  .merch-feature-card {
    border-width: 0.8vw;
  }

  .merch-feature-card__image {
    margin-bottom: 6.666666666666667vw;
    aspect-ratio: 690 / 436;
  }

  .merch-feature-card_layout_tall .merch-feature-card__image {
    aspect-ratio: 690 / 436;
  }

  .merch-feature-card .subsection-title {
    margin: 0 3.2vw 6vw;
    font-size: 5.066666666666666vw;
  }

  .merch-feature-card__text {
    padding: 0 3.2vw;
    font-size: 3.733333333333334vw;
    line-height: 1.79;
    letter-spacing: 0.05em;
  }

  .merch-catalog {
    padding: 16vw 0 13.333333333333334vw;
  }

  .merch-catalog__head {
    margin-bottom: 10vw;
  }

  .merch-catalog__head .section-title {
    margin-bottom: 5.333333333333334vw;
  }

  .merch-catalog__lead {
    font-size: 3.733333333333334vw;
    text-align: left;
  }

  .merch-catalog__grid {
    justify-content: space-between;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10.666666666666668vw 4vw;
  }

  .merch-catalog__grid:before {
    content: "";
    position: absolute;
    bottom: 6.133333333333333vw;
    right: 2.533333333333333vw;
    width: 20.666666666666668vw;
    max-width: 166px;
    height: 41.199999999999996vw;
    max-height: 309px;
    background: url(../../img/merchandise/cat_img_sp.png) 0px 0px / 100% no-repeat;
    background-size: 100%;
    mix-blend-mode: multiply;
    z-index: 1;
  }

  .merch-catalog-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .merch-catalog-item__thumb {
    margin: 0 0 2vw;
    border-width: 0.8vw;
  }

  .merch-catalog-item__flow {
    margin: 0 0 2.666666666666667vw;
    font-size: 4vw;
  }

  .merch-catalog-item__name {
    font-size: 4vw;
  }

  .merch-catalog-item__btn {
    min-width: unset;
    max-width: none;
    padding: 2vw 0 1.3333333333333335vw;
    font-size: 3.733333333333334vw;
    line-height: 1.2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.9333333333333335vw;
  }

  .merch-catalog-item__btn::after {
    content: "";
    width: 6px;
    height: 16px;
    margin: auto 0px;
    padding: 0px;
    background: url(../../img/common/ic_arrow.svg) 0px 0px / 100% no-repeat;
    display: block;
    position: absolute;
    top: 0px;
    right: 12px;
    bottom: 0px;
  }

  .merch-pb {
    padding: 16vw 0 17.333333333333336vw;
  }

  .merch-pb__head {
    margin: 0 auto 52px;
  }

  .merch-pb .section-title {
    margin-bottom: 8vw;
  }

  .merch-pb__lead {
    font-size: 3.733333333333334vw;
    text-align: left;
  }

  .merch-pb__row {
    margin-bottom: 14.666666666666666vw;
    grid-template-columns: 1fr;
    gap: 5.333333333333334vw;
  }

  .merch-pb-card {
    border-width: 0.8vw;
  }

  .merch-pb-card {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .merch-pb-card__image {
    width: 100%;
    max-width: unset;
  }

  .merch-pb-card__image img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    position: relative;
  }

  .merch-pb-card__body {
    width: 100%;
    padding: 6vw 3.2vw 4vw;
  }

  .merch-pb-card .subsection-title {
    margin: 0 0 6vw;
    text-align: left;
  }

  .merch-pb-card__text {
    font-size: 3.733333333333334vw;
  }

  .merch-pb .subsection-title_size_lg {
    margin-bottom: 6.666666666666667vw;
    font-size: 5.6000000000000005vw;
  }

  .merch-pb-products {
    grid-template-columns: 1fr;
    gap: 6vw;
  }

  .merch-pb-product__image {
    margin-bottom: 6.4vw;
    border-width: 0.8vw;
  }

  .merch-pb-product__name {
    font-size: 4.266666666666667vw;
  }

  .merch-special.section {
    padding: 12vw 0 0;
  }

  .merch-special__hero {
    margin-bottom: 13.333333333333334vw;
  }

  .merch-special__hero-head {
    padding: 0;
    margin-bottom: 12vw;
  }

  .merch-special__intro {
    font-size: 3.733333333333334vw;
    line-height: 1.79;
    text-align: left;
  }

  .merch-special__nav-inner {
    max-width: 92vw;
    border-width: 0.5333333333333333vw;
  }

  .merch-special__nav-link {
    padding: 1.3333333333333335vw 0;
    gap: 2vw;
    font-size: 4vw;
    border-width: 0.5333333333333333vw;
  }

  .merch-special__nav-link:last-child {
    border-bottom: none;
  }

  .merch-special__body>article .subsection-title {
    font-size: 5.5rem;
    line-height: 1.15;
    padding: 5vw 4vw 4vw;
  }

  .merch-outro.section {
    padding: 20vw 0 13.333333333333334vw;
  }

  .merch-outro.section::after {
    content: "";
    background: url("../../img/merchandise/outro_bg_sp.png") center top / 100% no-repeat;
    top: 9.733333333333333vw;
  }

  .merch-outro__inner {
    padding: 0;
  }

  .merch-outro__title {
    padding-bottom: 6vw;
    margin-bottom: 0;
    font-size: 7.333333333333333vw;
    line-height: 1.5;
    text-shadow: 0 2px #000,
      0 2px #000,
      0 4px #000;
  }

  .merch-outro__title:before {
    content: "";
    max-width: 141px;
    width: 16.933333333333334vw;
    max-height: 165px;
    height: 22vw;
    left: 5.333333333333334%;
  }

  .merch-outro__title:after {
    content: "";
    max-width: 152px;
    width: 20.266666666666666vw;
    max-height: 163px;
    height: 21.73333333333333vw;
    right: 2.666666666666667%;
  }

  .merch-outro__points {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 10vw;
  }

  .merch-outro__point {
    min-height: auto;
    padding: 3.2vw 4vw 4vw;
    text-align: center;
    border-width: .8vw;
  }

  .merch-lp-card-grid__icon {
    width: 5.333333333333334vw;
    max-width: 40px;
    max-height: 34px;
    height: 4.533333333333333vw;
    margin: 0 auto 2.666666666666667vw;
  }

  .merch-outro__point-label {
    font-size: 4.533333333333333vw;
    line-height: 1.2;
  }

  .merch-column {
    padding: 16vw 0 16vw;
  }

  .merch-column::before {
    content: "";
    position: absolute;
    top: 1.3333333333333335vw;
    left: unset;
    right: 0;
    max-width: 279px;
    height: 18.4vw;
    max-height: 138px;
  }

  .merch-column .section-title {
    margin-bottom: 10.666666666666668vw;
  }

  .merch-column__list {
    gap: 4vw;
  }

  .merch-column-card__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6vw 3.2vw 6.666666666666667vw;
    border-width: .8vw;
  }

  .merch-column-card:nth-of-type(2) .merch-column-card__inner::before {
    content: "";
    top: 4.666666666666667vw;
    bottom: unset;
    right: 6%;
    left: unset;
    width: 24.133333333333333vw;
    max-width: 181px;
    height: 16.666666666666664vw;
    max-height: 125px;
  }

  .merch-column-card:nth-of-type(4) .merch-column-card__inner::before {
    content: "";
    top: 8.5333333333333333vw;
    bottom: unset;
    right: 6.4vw;
    left: unset;
    width: 16.8vw;
    max-width: 126px;
    height: 10.666666666666668vw;
    max-height: 81px;
  }

  .merch-column-card:nth-of-type(5) .merch-column-card__inner::before {
    content: "";
    top: 6.800000000000001vw;
    right: 10.4vw;
    bottom: unset;
    left: unset;
    width: 13.333333333333334vw;
    max-width: 100px;
    height: 12.8vw;
    max-height: 96px;
  }

  .merch-column-card:nth-of-type(6) .merch-column-card__inner::before {
    content: "";
    top: 15.733333333333333vw;
    left: unset;
    right: 14.933333333333335vw;
    width: 9.2vw;
    max-width: 69px;
    height: 6.533333333333332vw;
    max-height: 49px;
  }

  .merch-column-card:nth-of-type(8) .merch-column-card__inner::before {
    content: "";
    top: 11.200000000000001vw;
    right: 4vw;
    bottom: unset;
    left: unset;
    width: 23.733333333333334vw;
    max-width: 178px;
    height: 11.066666666666666vw;
    max-height: 83px;
  }

  .merch-column-card__rule {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 0 0 4vw 0;
  }

  .merch-column-card__head {
    padding-bottom: 5.333333333333334vw;
  }

  .merch-column-card .subsection-title {
    font-size: 5.066666666666666vw;
    line-height: 1.35;
  }

  .merch-column-card__body p,
  .merch-column-card__list {
    font-size: 3.733333333333334vw;
    line-height: 1.79;
  }
}

/* =============================================================================
   特選食材 LP 埋め込み（merchandise index 289–1179 付近）
   LP 内クラスは merch-lp-*。各セレクタに .merch-special-sobako-lp, .merch-special-kamo-lp, .merch-special-yuba-lp を前置（html/body/.app-container は除外）
   =============================================================================

/* ========================================
   Base Settings
   ======================================== */

/* ========================================
   Common Components
   ======================================== */

/* チェックアイコン（ic_chk.png）— 文脈クラスと組み合わせてサイズ・余白を上書き */
i.ic_chk {
  font-style: normal;
  flex-shrink: 0;
  background: transparent url("../../img/common/ic_chk.png") no-repeat center / contain;
}

/* コンテナ */
.merch-special-sobako-lp .merch-lp-container,
.merch-special-kamo-lp .merch-lp-container,
.merch-special-yuba-lp .merch-lp-container {
  max-width: 1200px;
  width: 92vw;
  margin-left: auto;
  margin-right: auto;
}

/* 共通パネルコンポーネント */
.merch-special-sobako-lp .merch-lp-panel,
.merch-special-kamo-lp .merch-lp-panel,
.merch-special-yuba-lp .merch-lp-panel {
  background-color: #f5f2e2;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border: solid 6px var(--color-black);
}

.merch-special-sobako-lp .merch-lp-checklist,
.merch-special-kamo-lp .merch-lp-checklist,
.merch-special-yuba-lp .merch-lp-checklist {
  max-width: 1000px;
  width: 100%;
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.merch-special-sobako-lp .merch-lp-checklist--two-column,
.merch-special-kamo-lp .merch-lp-checklist--two-column,
.merch-special-yuba-lp .merch-lp-checklist--two-column {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 0;
}

.merch-special-sobako-lp .merch-lp-checklist__item,
.merch-special-kamo-lp .merch-lp-checklist__item,
.merch-special-yuba-lp .merch-lp-checklist__item {
  padding: 0 0 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-checklist--two-column,
  .merch-special-kamo-lp .merch-lp-checklist--two-column,
  .merch-special-yuba-lp .merch-lp-checklist--two-column {
    gap: 2.083333333333333vw 0;
  }

  .merch-special-sobako-lp .merch-lp-checklist__item,
  .merch-special-kamo-lp .merch-lp-checklist__item,
  .merch-special-yuba-lp .merch-lp-checklist__item {
    gap: 1.25vw;
  }
}

.merch-special-sobako-lp .merch-lp-checklist__icon,
.merch-special-kamo-lp .merch-lp-checklist__icon,
.merch-special-yuba-lp .merch-lp-checklist__icon {
  display: block;
  margin-top: 7px;
  width: 25px;
  height: 21px;
  flex-shrink: 0;
}

.merch-special-sobako-lp .merch-lp-checklist__text,
.merch-special-kamo-lp .merch-lp-checklist__text,
.merch-special-yuba-lp .merch-lp-checklist__text {
  margin: 0;
  font-size: 2.4rem;
  color: var(--color-black);
  font-weight: 800;
}

/* セクション */
.merch-special-sobako-lp .merch-lp-slab,
.merch-special-kamo-lp .merch-lp-slab,
.merch-special-yuba-lp .merch-lp-slab {
  padding-bottom: 90px;
}

/* ========================================
   Hero Section
   ======================================== */

.merch-special-sobako-lp .merch-lp-hero,
.merch-special-kamo-lp .merch-lp-hero,
.merch-special-yuba-lp .merch-lp-hero {
  padding-bottom: 80px;
}

.merch-special-sobako-lp .merch-lp-hero .section-title,
.merch-special-kamo-lp .merch-lp-hero .section-title,
.merch-special-yuba-lp .merch-lp-hero .section-title,
.merch-special-sobako-lp .merch-lp-brand>h2.section-title {
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 55px;
  letter-spacing: 0.025em;
  font-weight: 900;
}

.merch-special-sobako-lp .merch-lp-hero--kamo .section-title,
.merch-special-kamo-lp .merch-lp-hero--kamo .section-title,
.merch-special-yuba-lp .merch-lp-hero--kamo .section-title {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-hero--yuba .section-title,
.merch-special-kamo-lp .merch-lp-hero--yuba .section-title,
.merch-special-yuba-lp .merch-lp-hero--yuba .section-title {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-hero__title-highlight,
.merch-special-kamo-lp .merch-lp-hero__title-highlight,
.merch-special-yuba-lp .merch-lp-hero__title-highlight {
  color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-hero__title-highlight--kamo,
.merch-special-kamo-lp .merch-lp-hero__title-highlight--kamo,
.merch-special-yuba-lp .merch-lp-hero__title-highlight--kamo {
  color: #ca0108;
}

.merch-special-sobako-lp .merch-lp-hero__title-highlight--yuba,
.merch-special-kamo-lp .merch-lp-hero__title-highlight--yuba,
.merch-special-yuba-lp .merch-lp-hero__title-highlight--yuba {
  color: #ca0108;
}

.merch-special-sobako-lp .merch-lp-hero__description,
.merch-special-kamo-lp .merch-lp-hero__description,
.merch-special-yuba-lp .merch-lp-hero__description {
  max-width: 750px;
  width: 100%;
  margin: 0 auto 55px;
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color-white);
}

.merch-special-sobako-lp .merch-lp-hero--kamo .merch-lp-hero__description,
.merch-special-kamo-lp .merch-lp-hero--kamo .merch-lp-hero__description,
.merch-special-yuba-lp .merch-lp-hero--kamo .merch-lp-hero__description {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-hero--yuba .merch-lp-hero__description,
.merch-special-kamo-lp .merch-lp-hero--yuba .merch-lp-hero__description,
.merch-special-yuba-lp .merch-lp-hero--yuba .merch-lp-hero__description {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-hero__image-wrapper,
.merch-special-kamo-lp .merch-lp-hero__image-wrapper,
.merch-special-yuba-lp .merch-lp-hero__image-wrapper {
  max-width: 1200px;
  width: 92vw;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: solid 6px var(--color-black);
}

.merch-special-sobako-lp .merch-lp-hero__image,
.merch-special-kamo-lp .merch-lp-hero__image,
.merch-special-yuba-lp .merch-lp-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp .merch-lp-hero__image-wrapper,
  .merch-special-kamo-lp .merch-lp-hero__image-wrapper,
  .merch-special-yuba-lp .merch-lp-hero__image-wrapper {
    border-width: 0.8vw;
  }
}

/* ========================================
   Brand Section (常陸秋そば)
   ======================================== */
.merch-special-sobako-lp {
  padding: 120px 0 100px;
  background-color: #960000;
}

.merch-special-kamo-lp {
  padding: 120px 0 100px;
  background-color: #f5f2e2;
}

.merch-special-yuba-lp {
  padding: 120px 0 100px;
  background-color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-brand,
.merch-special-kamo-lp .merch-lp-brand,
.merch-special-yuba-lp .merch-lp-brand {
  padding-bottom: 80px;
}

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp,
  .merch-special-kamo-lp,
  .merch-special-yuba-lp {
    padding: 16vw 0 13.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-brand,
  .merch-special-kamo-lp .merch-lp-brand,
  .merch-special-yuba-lp .merch-lp-brand {
    width: 92vw;
    margin: 0 auto;
    padding-bottom: 7.333333333333333vw;
  }

  .merch-lp-brand+.merch-lp-brand,
  .merch-lp-hero+.merch-lp-brand {
    padding-bottom: 13.333333333333334vw;
  }
}

.merch-special-sobako-lp .merch-lp-brand--kamo,
.merch-special-kamo-lp .merch-lp-brand--kamo,
.merch-special-yuba-lp .merch-lp-brand--kamo {
  padding-bottom: 80px;
}

.merch-special-sobako-lp .merch-lp-brand__container,
.merch-special-kamo-lp .merch-lp-brand__container,
.merch-special-yuba-lp .merch-lp-brand__container {
  max-width: 1200px;
  width: 92vw;
  margin: 0 auto;
  padding: 0 0 45px;
  overflow: hidden;
  position: relative;
}

.merch-special-sobako-lp .merch-lp-brand__container:after,
.merch-special-kamo-lp .merch-lp-brand__container:after,
.merch-special-yuba-lp .merch-lp-brand__container:after {
  content: "";
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 100%;
  margin: auto;
  display: block;
  background-color: rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 1.19em;
  left: 0;
  right: 0;
  z-index: 1;
}

.merch-special-yuba-lp .merch-lp-brand__container:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.4);
}

.merch-special-kamo-lp .merch-lp-brand__container:after {
  background-color: rgba(114, 59, 5, 0.1);
}

.merch-special-sobako-lp .merch-lp-brand__container--kamo,
.merch-special-kamo-lp .merch-lp-brand__container--kamo,
.merch-special-yuba-lp .merch-lp-brand__container--kamo {
  background-color: rgba(114, 59, 5, 0.1);
}

.merch-special-sobako-lp .merch-lp-brand__name,
.merch-special-kamo-lp .merch-lp-brand__name,
.merch-special-yuba-lp .merch-lp-brand__name {
  font-size: 3.2rem;
  line-height: 1.19;
  color: var(--color-white);
  text-align: center;
  margin: 0 auto 35px;
  letter-spacing: 0.025em;
  font-weight: 800;
  z-index: 2;
  position: relative;
}

.merch-special-sobako-lp .merch-lp-brand__name--kamo,
.merch-special-kamo-lp .merch-lp-brand__name--kamo,
.merch-special-yuba-lp .merch-lp-brand__name--kamo {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-brand__name--yuba,
.merch-special-kamo-lp .merch-lp-brand__name--yuba,
.merch-special-yuba-lp .merch-lp-brand__name--yuba {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-brand__subtitle,
.merch-special-kamo-lp .merch-lp-brand__subtitle,
.merch-special-yuba-lp .merch-lp-brand__subtitle {
  font-size: 2rem;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  margin: 0 auto 30px;
  letter-spacing: 0.0195em;
  font-weight: 800;
  z-index: 2;
  position: relative;
}

.merch-special-sobako-lp .merch-lp-brand__subtitle--kamo,
.merch-special-kamo-lp .merch-lp-brand__subtitle--kamo,
.merch-special-yuba-lp .merch-lp-brand__subtitle--kamo {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-brand__subtitle--yuba,
.merch-special-kamo-lp .merch-lp-brand__subtitle--yuba,
.merch-special-yuba-lp .merch-lp-brand__subtitle--yuba {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-brand__text,
.merch-special-kamo-lp .merch-lp-brand__text,
.merch-special-yuba-lp .merch-lp-brand__text {
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color-white);
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

.merch-special-sobako-lp .merch-lp-brand--kamo .merch-lp-brand__text,
.merch-special-kamo-lp .merch-lp-brand--kamo .merch-lp-brand__text,
.merch-special-yuba-lp .merch-lp-brand--kamo .merch-lp-brand__text {
  color: #000000;
}

.merch-special-sobako-lp .merch-lp-brand--yuba .merch-lp-brand__text,
.merch-special-kamo-lp .merch-lp-brand--yuba .merch-lp-brand__text,
.merch-special-yuba-lp .merch-lp-brand--yuba .merch-lp-brand__text {
  color: #000000;
}

/* ========================================
   Section Header
   ======================================== */

.merch-special-sobako-lp h2.merch-lp-chapter,
.merch-special-kamo-lp h2.merch-lp-chapter,
.merch-special-yuba-lp h2.merch-lp-chapter {
  background-color: var(--color-black);
  padding: 9px 30px;
  margin: 0 0 40px;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.0195em;
}

/* ========================================
   Card grid (LP 汎用カード列)
   ======================================== */

.merch-special-sobako-lp .merch-lp-card-grid,
.merch-special-kamo-lp .merch-lp-card-grid,
.merch-special-yuba-lp .merch-lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.merch-special-yuba-lp .merch-lp-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.merch-special-sobako-lp .merch-lp-card-grid__item,
.merch-special-kamo-lp .merch-lp-card-grid__item,
.merch-special-yuba-lp .merch-lp-card-grid__item {
  background-color: #f5f2e2;
  padding: 30px 25px 25px;
  position: relative;
  border: solid 6px var(--color-black);
}

.merch-special-sobako-lp .merch-lp-card-grid__icon,
.merch-special-kamo-lp .merch-lp-card-grid__icon,
.merch-special-yuba-lp .merch-lp-card-grid__icon {
  width: 25px;
  height: 21px;
  margin: 0 auto 15px;
  text-align: center;
  display: block;
}

.merch-special-sobako-lp .merch-lp-card-grid__title,
.merch-special-kamo-lp .merch-lp-card-grid__title,
.merch-special-yuba-lp .merch-lp-card-grid__title {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-black);
  margin: 0 auto 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}

.merch-special-sobako-lp .merch-lp-card-grid__text,
.merch-special-kamo-lp .merch-lp-card-grid__text,
.merch-special-yuba-lp .merch-lp-card-grid__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color-black);
}

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp .merch-lp-card-grid__icon,
  .merch-special-kamo-lp .merch-lp-card-grid__icon,
  .merch-special-yuba-lp .merch-lp-card-grid__icon {
    width: 5.333333333333334vw;
    max-width: 40px;
    max-height: 34px;
    height: 4.533333333333333vw;
    margin: 0 auto 2.4vw;
  }
}

/* ========================================
   Product Lineup (商品ラインナップ)
   ======================================== */

.merch-special-sobako-lp .merch-lp-product-lineup,
.merch-special-kamo-lp .merch-lp-product-lineup,
.merch-special-yuba-lp .merch-lp-product-lineup {
  background-color: #960000;
}

.merch-special-sobako-lp .merch-lp-product-grid,
.merch-special-kamo-lp .merch-lp-product-grid,
.merch-special-yuba-lp .merch-lp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.merch-special-sobako-lp .merch-lp-product-item,
.merch-special-kamo-lp .merch-lp-product-item,
.merch-special-yuba-lp .merch-lp-product-item {
  text-align: center;
}

.merch-special-sobako-lp .merch-lp-product-item__image-wrapper,
.merch-special-kamo-lp .merch-lp-product-item__image-wrapper,
.merch-special-yuba-lp .merch-lp-product-item__image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
  border: solid 6px var(--color-black);
}

.merch-special-sobako-lp .merch-lp-product-item__image,
.merch-special-kamo-lp .merch-lp-product-item__image,
.merch-special-yuba-lp .merch-lp-product-item__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.merch-special-sobako-lp .merch-lp-product-item__name,
.merch-special-kamo-lp .merch-lp-product-item__name,
.merch-special-yuba-lp .merch-lp-product-item__name {
  margin: 0 auto;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.0375em;
}

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp .merch-lp-product-item__image-wrapper,
  .merch-special-kamo-lp .merch-lp-product-item__image-wrapper,
  .merch-special-yuba-lp .merch-lp-product-item__image-wrapper {
    margin-bottom: 2vw;
    border-width: 0.8vw;
  }
}

/* ========================================
   Reason Cards (おすすめする理由)
   ======================================== */



.merch-special-sobako-lp .merch-lp-reason-grid,
.merch-special-kamo-lp .merch-lp-reason-grid,
.merch-special-yuba-lp .merch-lp-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.merch-special-sobako-lp .merch-lp-reason-card,
.merch-special-kamo-lp .merch-lp-reason-card,
.merch-special-yuba-lp .merch-lp-reason-card {
  background-color: #f5f2e2;
  position: relative;
  border: solid 6px var(--color-black);
  background: var(--color-bg);
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
}

.merch-special-yuba-lp .merch-lp-reason-card,
.merch-special-kamo-lp .merch-lp-reason-card {
  background: var(--color-white);
}

.merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number,
.merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number,
.merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 91px;
  width: 7.583333333333334vw;
  height: 74px;
  max-height: 6.166666666666667vw;
  margin: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjExOSIgaGVpZ2h0PSI5NiIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTE5IDk2Ij4gPGRlZnM+IDxzdHlsZT4gLmNscy0xIHsgZmlsbDogI2ZmZjsgfSAuY2xzLTIgeyBmaWxsOiAjY2EwMTA4OyB9IDwvc3R5bGU+IDwvZGVmcz4gIDxnPiA8ZyBpZD0iX+ODrOOCpOODpOODvF8xIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvF8xIj4gPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNODkuMywwbDI5LjcsNDgtMjkuNyw0OEgyOS44TDAsNDgsMjkuOCwwaDU5LjVaIi8+IDxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzMy45IDg5LjMgOC4zIDQ4IDMzLjkgNi43IDg1LjEgNi43IDExMC43IDQ4IDg1LjEgODkuMyAzMy45IDg5LjMiLz4gPHBhdGggY2xhc3M9ImNscy0xIiBkPSJNODQuNSw3LjdsMjUsNDAuMy0yNSw0MC4zaC01MEw5LjUsNDgsMzQuNSw3LjdoNTBNODUuNiw1LjdoLTUyLjJsLS42LjlMNy44LDQ2LjlsLS43LDEuMS43LDEuMSwyNSw0MC4zLjYuOWg1Mi4ybC42LS45LDI1LTQwLjMuNy0xLjEtLjctMS4xTDg2LjIsNi42bC0uNi0uOWgwWiIvPiA8L2c+IDwvZz48L3N2Zz4=");
  background-size: 100%;
  background-repeat: no-repeat;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: -20px;
  left: -37px;
  z-index: 2;
}

.merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number span,
.merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number span,
.merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number span {
  font-size: 3.4rem;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-reason-card,
  .merch-special-kamo-lp .merch-lp-reason-card,
  .merch-special-yuba-lp .merch-lp-reason-card {
    min-height: 25vw;
  }
}

@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number {
    font-size: 1.3333333333333335vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number span {
    font-size: 2.833333333333333vw;
  }
}

.merch-special-sobako-lp .merch-lp-reason-card__image-wrapper,
.merch-special-kamo-lp .merch-lp-reason-card__image-wrapper,
.merch-special-yuba-lp .merch-lp-reason-card__image-wrapper {
  width: 23.833333333333336vw;
  max-width: 286px;
  margin-left: -10.035211267605634%;
  overflow: hidden;
  position: relative;
}

.merch-special-sobako-lp .merch-lp-reason-card__image-wrapper img,
.merch-special-kamo-lp .merch-lp-reason-card__image-wrapper img,
.merch-special-yuba-lp .merch-lp-reason-card__image-wrapper img {
  max-width: unset;
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
}

@media screen and (min-width: 1100px) {
  .merch-pb-card__body {
    width: 282px;
  }
}

@media screen and (min-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-reason-card__image-wrapper,
  .merch-special-kamo-lp .merch-lp-reason-card__image-wrapper,
  .merch-special-yuba-lp .merch-lp-reason-card__image-wrapper {
    max-width: unset;
    min-width: 286px;
    min-height: 288px;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__image-wrapper img,
  .merch-special-kamo-lp .merch-lp-reason-card__image-wrapper img,
  .merch-special-yuba-lp .merch-lp-reason-card__image-wrapper img {
    max-width: 100%;
    height: auto;
    left: unset;
    right: 0;
  }
}

.merch-special-sobako-lp .merch-lp-reason-card__image,
.merch-special-kamo-lp .merch-lp-reason-card__image,
.merch-special-yuba-lp .merch-lp-reason-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.merch-special-sobako-lp .merch-lp-reason-card__content,
.merch-special-kamo-lp .merch-lp-reason-card__content,
.merch-special-yuba-lp .merch-lp-reason-card__content {
  max-width: 54.5774647887324%;
  padding: 35px 0 0 40px;
  width: 100%;
}

.merch-special-sobako-lp .merch-lp-reason-card .subsection-title,
.merch-special-kamo-lp .merch-lp-reason-card .subsection-title,
.merch-special-yuba-lp .merch-lp-reason-card .subsection-title {
  font-size: 2.8rem;
  line-height: 1.35;
  color: var(--color-black);
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.014em;
  text-align: left;
  padding: 0;
}

.merch-special-sobako-lp .merch-lp-reason-card__text,
.merch-special-kamo-lp .merch-lp-reason-card__text,
.merch-special-yuba-lp .merch-lp-reason-card__text {
  width: calc(100% - 10.035211267605634%);
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color-black);
}


@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-reason-card__content,
  .merch-special-kamo-lp .merch-lp-reason-card__content,
  .merch-special-yuba-lp .merch-lp-reason-card__content {
    padding: 2.9166666666666665vw 0 2.9166666666666665vw 3.3333333333333335vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .subsection-title,
  .merch-special-kamo-lp .merch-lp-reason-card .subsection-title,
  .merch-special-yuba-lp .merch-lp-reason-card .subsection-title {
    font-size: 2.3333333333333335vw;
  }

}

/* ========================================
   Recommended Stores (こんな店舗におすすめ)
   ======================================== */

.merch-special-sobako-lp .merch-lp-panel--recommended {
  background-color: #f5f2e2;
}

.merch-special-kamo-lp .merch-lp-panel--recommended {
  background-color: var(--color-white);
}

.merch-special-sobako-lp .merch-lp-panel--recommended:before {
  content: "";
  position: absolute;
  bottom: -51px;
  bottom: -2.65625vw;
  right: -2vw;
  width: 15.166666666666668vw;
  max-width: 182px;
  height: 10.416666666666668vw;
  max-height: 125px;
  background: url(../../img/merchandise/sobako_osusume_img.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-special-sobako-lp .merch-lp-panel--recommended {
  margin-bottom: 45px;
}

.merch-special-kamo-lp .merch-lp-panel--recommended:before {
  content: "";
  position: absolute;
  bottom: -42px;
  bottom: -2.1875vw;
  right: 1.5833333333333335%;
  width: 12.333333333333334vw;
  max-width: 148px;
  height: 8.5vw;
  max-height: 102px;
  background: url(../../img/merchandise/kamo_osusume_img.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-special-yuba-lp .merch-lp-panel--recommended {
  background-color: var(--color-white);
  margin-bottom: 40px;
}

.merch-special-yuba-lp .merch-lp-panel--recommended:before {
  content: "";
  position: absolute;
  bottom: -2.3958333333333335vw;
  right: -1.8333333333333333vw;
  width: 15.25vw;
  max-width: 183px;
  height: 14.916666666666668vw;
  max-height: 179px;
  background: url(../../img/merchandise/yuba_osusume_img.png) 0px 0px / 100% no-repeat;
  background-size: 100%;
  z-index: 1;
}

.merch-special-sobako-lp .merch-lp-recommended .merch-lp-checklist__text,
.merch-special-kamo-lp .merch-lp-recommended .merch-lp-checklist__text,
.merch-special-yuba-lp .merch-lp-recommended .merch-lp-checklist__text {
  line-height: 1.4;
}

.merch-special-sobako-lp .merch-lp-recommended__footer,
.merch-special-kamo-lp .merch-lp-recommended__footer,
.merch-special-yuba-lp .merch-lp-recommended__footer {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.merch-special-sobako-lp .merch-lp-recommended__footer-text,
.merch-special-kamo-lp .merch-lp-recommended__footer-text,
.merch-special-yuba-lp .merch-lp-recommended__footer-text {
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #ffffff;
}

.merch-special-yuba-lp .merch-lp-recommended__footer-text {
  color: var(--color-black);
}

/* ========================================
   CTA Button
   ======================================== */

.merch-lp-cta__btn {
  display: block;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  padding: 30px 40px;
  transition: opacity 0.3s;
  position: relative;
}

.merch-lp-cta__btn::after {
  content: "";
  width: 27px;
  height: 25px;
  margin: auto 0px;
  padding: 0px;
  background: url("../../img/common/ic_arrow_triple.svg") 0px 0px / 27px no-repeat;
  display: block;
  position: absolute;
  top: 0px;
  right: 16px;
  bottom: 0px;
}

.merch-special-sobako-lp .merch-lp-cta__btn:hover,
.merch-special-kamo-lp .merch-lp-cta__btn:hover,
.merch-special-yuba-lp .merch-lp-cta__btn:hover {
  opacity: 0.8;
}

.merch-special-sobako-lp .merch-lp-cta__decoration,
.merch-special-kamo-lp .merch-lp-cta__decoration,
.merch-special-yuba-lp .merch-lp-cta__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-height: 300px;
  height: auto;
  pointer-events: none;
}

/* ========================================
   Responsive Design (max-width: 750px)
   ======================================== */

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp .merch-lp-container,
  .merch-special-kamo-lp .merch-lp-container,
  .merch-special-yuba-lp .merch-lp-container {
    width: 92vw;
  }

  .merch-special-sobako-lp .merch-lp-slab,
  .merch-special-kamo-lp .merch-lp-slab,
  .merch-special-yuba-lp .merch-lp-slab {
    padding-bottom: 13.333333333333334vw;
  }

  /* Hero */
  .merch-special-sobako-lp .merch-lp-hero,
  .merch-special-kamo-lp .merch-lp-hero,
  .merch-special-yuba-lp .merch-lp-hero {
    width: 92vw;
    padding-bottom: 8vw;
    margin: 0 auto;
  }

  .merch-special-sobako-lp .merch-lp-hero .section-title,
  .merch-special-kamo-lp .merch-lp-hero .section-title,
  .merch-special-yuba-lp .merch-lp-hero .section-title,
  .merch-special-sobako-lp .merch-lp-brand>h2.section-title {
    margin-bottom: 9.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-hero__description,
  .merch-special-kamo-lp .merch-lp-hero__description,
  .merch-special-yuba-lp .merch-lp-hero__description {
    font-size: 3.733333333333334vw;
    margin-bottom: 6vw;
  }

  /* Brand */
  .merch-special-sobako-lp .merch-lp-brand__container,
  .merch-special-kamo-lp .merch-lp-brand__container,
  .merch-special-yuba-lp .merch-lp-brand__container {
    padding: 0 4vw 5.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-brand__container:after,
  .merch-special-kamo-lp .merch-lp-brand__container:after,
  .merch-special-yuba-lp .merch-lp-brand__container:after {
    top: 2.933333333333333vw;
  }

  .merch-special-yuba-lp .merch-lp-brand__container:after {
    top: 5.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-brand__name,
  .merch-special-kamo-lp .merch-lp-brand__name,
  .merch-special-yuba-lp .merch-lp-brand__name {
    font-size: 5.6000000000000005vw;
    line-height: 1.19;
    margin-bottom: 5.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-brand__subtitle,
  .merch-special-kamo-lp .merch-lp-brand__subtitle,
  .merch-special-yuba-lp .merch-lp-brand__subtitle {
    font-size: 4.266666666666667vw;
    line-height: 1.56;
    margin-bottom: 6vw;
  }

  .merch-special-sobako-lp .merch-lp-brand__text,
  .merch-special-kamo-lp .merch-lp-brand__text,
  .merch-special-yuba-lp .merch-lp-brand__text {
    font-size: 3.733333333333334vw;
    line-height: 1.875;
    text-align: left;
  }

  /* LP chapter heading (h2.merch-lp-chapter) */
  .merch-special-sobako-lp h2.merch-lp-chapter,
  .merch-special-kamo-lp h2.merch-lp-chapter,
  .merch-special-yuba-lp h2.merch-lp-chapter {
    padding: 2vw 4vw;
    margin: 0 0 6.666666666666667vw;
    font-size: 5.066666666666666vw;
    line-height: 1.2;
  }

  .merch-lp-slab.merch-lp-reason-section h2.merch-lp-chapter {
    margin-bottom: 9.333333333333334vw;
  }

  /* Card grid */
  .merch-special-sobako-lp .merch-lp-card-grid,
  .merch-special-kamo-lp .merch-lp-card-grid,
  .merch-special-yuba-lp .merch-lp-card-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .merch-special-sobako-lp .merch-lp-card-grid__item,
  .merch-special-kamo-lp .merch-lp-card-grid__item,
  .merch-special-yuba-lp .merch-lp-card-grid__item {
    padding: 3.2vw 3.2vw 5.333333333333334vw;
    border-width: 0.8vw;
  }

  .merch-special-sobako-lp .merch-lp-card-grid__title,
  .merch-special-kamo-lp .merch-lp-card-grid__title,
  .merch-special-yuba-lp .merch-lp-card-grid__title {
    font-size: 4.533333333333333vw;
    line-height: 1;
    margin-bottom: 4vw;
  }

  .merch-special-sobako-lp .merch-lp-card-grid__text,
  .merch-special-kamo-lp .merch-lp-card-grid__text,
  .merch-special-yuba-lp .merch-lp-card-grid__text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  /* Product Lineup */
  .merch-special-sobako-lp .merch-lp-product-grid,
  .merch-special-kamo-lp .merch-lp-product-grid,
  .merch-special-yuba-lp .merch-lp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .merch-special-sobako-lp .merch-lp-product-item__name,
  .merch-special-kamo-lp .merch-lp-product-item__name,
  .merch-special-yuba-lp .merch-lp-product-item__name {
    font-size: 4.533333333333333vw;
    line-height: 1;
  }

  /* Reason Cards */
  .merch-special-sobako-lp .merch-lp-reason-grid,
  .merch-special-kamo-lp .merch-lp-reason-grid,
  .merch-special-yuba-lp .merch-lp-reason-grid {
    grid-template-columns: 1fr;
    gap: 9.333333333333334vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card,
  .merch-special-kamo-lp .merch-lp-reason-card,
  .merch-special-yuba-lp .merch-lp-reason-card {
    padding: 0;
    border-width: 0.8vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .merch-special-yuba-lp .merch-lp-reason-card {
    background-color: var(--color-white);
  }

  .merch-special-kamo-lp .merch-lp-reason-card {
    background: var(--color-white);
  }

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number {
    width: 19.0667vw;
    max-width: 143px;
    height: 15.4667vw;
    max-height: 116px;
    font-size: 3.46667vw;
    background-size: cover;
    left: -2.93333vw;
    top: -7.2vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-kamo-lp .merch-lp-reason-card .merch-lp-card__number span,
  .merch-special-yuba-lp .merch-lp-reason-card .merch-lp-card__number span {
    font-size: 6.66667vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__image-wrapper,
  .merch-special-kamo-lp .merch-lp-reason-card__image-wrapper,
  .merch-special-yuba-lp .merch-lp-reason-card__image-wrapper {
    position: static;
    transform: none;
    max-width: unset;
    width: 100%;
    height: auto;
    max-height: unset;
    margin: 0 auto 6vw;
    z-index: 1;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__image-wrapper img,
  .merch-special-kamo-lp .merch-lp-reason-card__image-wrapper img,
  .merch-special-yuba-lp .merch-lp-reason-card__image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: unset;
    position: relative;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__image,
  .merch-special-kamo-lp .merch-lp-reason-card__image,
  .merch-special-yuba-lp .merch-lp-reason-card__image {
    clip-path: none;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__content,
  .merch-special-kamo-lp .merch-lp-reason-card__content,
  .merch-special-yuba-lp .merch-lp-reason-card__content {
    max-width: 100%;
    padding: 0 3.2vw 6vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card .subsection-title,
  .merch-special-kamo-lp .merch-lp-reason-card .subsection-title,
  .merch-special-yuba-lp .merch-lp-reason-card .subsection-title {
    font-size: 5.066666666666666vw;
    line-height: 1.3;
    margin-bottom: 6vw;
  }

  .merch-special-sobako-lp .merch-lp-reason-card__text,
  .merch-special-kamo-lp .merch-lp-reason-card__text,
  .merch-special-yuba-lp .merch-lp-reason-card__text {
    margin: 0;
    font-size: 3.733333333333334vw;
    line-height: 1.8;
  }

  /* Recommended */
  .merch-special-sobako-lp .merch-lp-panel--recommended,
  .merch-special-kamo-lp .merch-lp-panel--recommended,
  .merch-special-yuba-lp .merch-lp-panel--recommended {
    margin-bottom: 4.666666666666667vw;
    padding: 6.666666666666667vw 3.2vw;
    border-width: 0.8vw;
  }

  .merch-special-sobako-lp .merch-lp-panel--recommended:before {
    content: none;
  }

  .merch-special-yuba-lp .merch-lp-panel--recommended {
    background-color: var(--color-white);
  }

  .merch-special-yuba-lp .merch-lp-panel--recommended:before {
    content: none;
  }

  .merch-special-kamo-lp .merch-lp-panel--recommended {
    margin-bottom: 0;
  }

  .merch-special-kamo-lp .merch-lp-panel--recommended:before {
    content: none;
  }

  .merch-special-sobako-lp .merch-lp-recommended .merch-lp-checklist--two-column,
  .merch-special-kamo-lp .merch-lp-recommended .merch-lp-checklist--two-column,
  .merch-special-yuba-lp .merch-lp-recommended .merch-lp-checklist--two-column {
    width: fit-content;
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }

  .merch-special-sobako-lp .merch-lp-checklist__item,
  .merch-special-kamo-lp .merch-lp-checklist__item,
  .merch-special-yuba-lp .merch-lp-checklist__item {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.1333333333333333vw;
  }

  .merch-special-sobako-lp .merch-lp-recommended .merch-lp-checklist__text,
  .merch-special-kamo-lp .merch-lp-recommended .merch-lp-checklist__text,
  .merch-special-yuba-lp .merch-lp-recommended .merch-lp-checklist__text {
    font-size: 4.533333333333333vw;
    line-height: 1.47;
  }

  .merch-special-sobako-lp .merch-lp-recommended__footer-text,
  .merch-special-kamo-lp .merch-lp-recommended__footer-text,
  .merch-special-yuba-lp .merch-lp-recommended__footer-text {
    font-size: 3.733333333333334vw;
    line-height: 1.78;
  }

  /* CTA */
  .merch-special-sobako-lp .merch-lp-cta,
  .merch-special-kamo-lp .merch-lp-cta,
  .merch-special-yuba-lp .merch-lp-cta {
    width: 92vw;
    margin: 0 auto;
  }

  .merch-special-sobako-lp .merch-lp-cta__btn,
  .merch-special-kamo-lp .merch-lp-cta__btn,
  .merch-special-yuba-lp .merch-lp-cta__btn {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 1.8rem;
    padding: 20px 30px;
  }
}

/* ========================================
   Kamo Reason Section (鴨肉の美味しさの理由)
   ======================================== */

.merch-special-sobako-lp .merch-lp-kamo-reason__description,
.merch-special-kamo-lp .merch-lp-kamo-reason__description,
.merch-special-yuba-lp .merch-lp-kamo-reason__description {
  font-size: 1.6rem;
  line-height: 1.865;
  color: #000000;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.merch-special-sobako-lp .merch-lp-panel--kamo-reason,
.merch-special-kamo-lp .merch-lp-panel--kamo-reason,
.merch-special-yuba-lp .merch-lp-panel--kamo-reason {
  background-color: #ffffff;
  margin: 0 auto;
}

.merch-special-sobako-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item,
.merch-special-kamo-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item,
.merch-special-yuba-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item {
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 2.1333333333333333vw;
  gap: 15px;
}

.merch-special-sobako-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text,
.merch-special-kamo-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text,
.merch-special-yuba-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text {
  padding-right: 25px;
  line-height: 1.4;
  font-weight: 800;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-checklist--two-column,
  .merch-special-kamo-lp .merch-lp-checklist--two-column,
  .merch-special-yuba-lp .merch-lp-checklist--two-column {
    gap: 2.083333333333333vw 0;
  }

  .merch-special-sobako-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item,
  .merch-special-kamo-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item,
  .merch-special-yuba-lp .merch-lp-kamo-reason-section .merch-lp-checklist__item {
    gap: 1.25vw;
  }
}

@media screen and (max-width: 750px) {

  .merch-special-sobako-lp .merch-lp-kamo-reason__description,
  .merch-special-kamo-lp .merch-lp-kamo-reason__description,
  .merch-special-yuba-lp .merch-lp-kamo-reason__description {
    font-size: 3.733333333333334vw;
    line-height: 1.78;
    margin: 0 auto 6.666666666666667vw;
  }
}

/* ========================================
   Kamo Lineup (鴨肉の商品ラインナップ)
   ======================================== */

.merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-grid,
.merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-grid,
.merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-grid {
  gap: 30px 20px;
}

.merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-item__name,
.merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-item__name,
.merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-item__name {
  color: var(--color-black);
}

.merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper--foreign,
.merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper--foreign,
.merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper--foreign {
  background-color: #a92e2e;
}

/* ========================================
   Kamo Menu Section (メニュー例)
   ======================================== */

.merch-special-sobako-lp .merch-lp-menu-panel,
.merch-special-kamo-lp .merch-lp-menu-panel,
.merch-special-yuba-lp .merch-lp-menu-panel {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 40px;
  padding: 40px;
  position: relative;
  border: solid 6px var(--color-black);
  background: url(../../img/merchandise/kamo_menu_bg.jpg) right bottom no-repeat #fff;
  background-size: cover;
}

.merch-special-yuba-lp .merch-lp-menu-panel {
  background: url(../../img/merchandise/yuba_menu_bg.jpg) right bottom no-repeat #fff;
  background-size: cover;
}

.merch-special-sobako-lp .merch-lp-kamo-menu-decoration,
.merch-special-kamo-lp .merch-lp-kamo-menu-decoration,
.merch-special-yuba-lp .merch-lp-kamo-menu-decoration {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  gap: 15px;
  pointer-events: none;
}

.merch-special-sobako-lp .merch-lp-kamo-menu-decoration__item,
.merch-special-kamo-lp .merch-lp-kamo-menu-decoration__item,
.merch-special-yuba-lp .merch-lp-kamo-menu-decoration__item {
  width: 70px;
  max-height: 252px;
  height: auto;
}

.merch-special-sobako-lp .merch-lp-menu-list,
.merch-special-kamo-lp .merch-lp-menu-list,
.merch-special-yuba-lp .merch-lp-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 18px;
}

.merch-special-sobako-lp .merch-lp-menu-list__item,
.merch-special-kamo-lp .merch-lp-menu-list__item,
.merch-special-yuba-lp .merch-lp-menu-list__item {
  width: 70px;
  height: 252px;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: url(../../img/merchandise/bg_tanzaku.png) 0 0 no-repeat;
  background-size: cover;
}

.merch-special-sobako-lp .merch-lp-menu-list__item span,
.merch-special-kamo-lp .merch-lp-menu-list__item span,
.merch-special-yuba-lp .merch-lp-menu-list__item span {
  width: fit-content;
  font-size: 2.4rem;
  color: var(--color-black);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: left;
}

_::-webkit-full-page-media,
_:future,
:root .merch-special-sobako-lp .merch-lp-menu-list__item span,
_::-webkit-full-page-media,
_:future,
:root .merch-special-kamo-lp .merch-lp-menu-list__item span,
_::-webkit-full-page-media,
_:future,
:root .merch-special-yuba-lp .merch-lp-menu-list__item span {
  width: 1em;
  line-height: 2;
}

_::-webkit-full-page-media,
_:future,
:root .merch-special-sobako-lp .merch-lp-menu-list__item span.line02,
_::-webkit-full-page-media,
_:future,
:root .merch-special-kamo-lp .merch-lp-menu-list__item span.line02,
_::-webkit-full-page-media,
_:future,
:root .merch-special-yuba-lp .merch-lp-menu-list__item span.line02 {
  line-height: 1;
}

.merch-special-sobako-lp .merch-lp-kamo-support-banner,
.merch-special-kamo-lp .merch-lp-kamo-support-banner,
.merch-special-yuba-lp .merch-lp-kamo-support-banner {
  background-color: #960000;
  padding: 40px 0 35px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: url(../../img/merchandise/kamo_bnr_bg.png) center bottom no-repeat #960000;
  background-size: 100%;
}

.merch-special-sobako-lp .merch-lp-kamo-support-banner:after,
.merch-special-kamo-lp .merch-lp-kamo-support-banner:after,
.merch-special-yuba-lp .merch-lp-kamo-support-banner:after {
  content: "";
  max-width: 130px;
  width: 130px;
  max-height: 155px;
  height: 155px;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background: url(../../img/merchandise/kamo_bnr_img.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 75%;
  display: block;
}

.merch-special-sobako-lp .merch-lp-kamo-support-banner__title,
.merch-special-kamo-lp .merch-lp-kamo-support-banner__title,
.merch-special-yuba-lp .merch-lp-kamo-support-banner__title {
  font-size: 2.8rem;
  line-height: 1;
  color: #000000;
  padding: 0 10.666666666666668% 0 29.333333333333332%;
  font-weight: 800;
  letter-spacing: 0.0547em;
  text-align: left;
  margin: 0 0 20px;
}

.merch-special-sobako-lp .merch-lp-kamo-support-banner__text,
.merch-special-kamo-lp .merch-lp-kamo-support-banner__text,
.merch-special-yuba-lp .merch-lp-kamo-support-banner__text {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #000000;
  width: 100%;
  padding: 0 10.666666666666668% 0 29.333333333333332%;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {

  .merch-special-sobako-lp .merch-lp-kamo-support-banner__title,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner__title,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner__title,
  .merch-special-sobako-lp .merch-lp-kamo-support-banner__text,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner__text,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner__text {
    padding: 0 10.666666666666668% 0 29.333333333333332%;
  }

}

/* ========================================
   Reason Section Footer
   ======================================== */

.merch-special-sobako-lp .merch-lp-reason-section__footer,
.merch-special-kamo-lp .merch-lp-reason-section__footer,
.merch-special-yuba-lp .merch-lp-reason-section__footer {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  margin: 39px auto 0;
}

.merch-special-sobako-lp .merch-lp-reason-section__footer-text,
.merch-special-kamo-lp .merch-lp-reason-section__footer-text,
.merch-special-yuba-lp .merch-lp-reason-section__footer-text {
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #000000;
}

/* ========================================
   Responsive Design (min-width: 751px)
   ======================================== */

/* ========================================
   Responsive Design for Kamo Section (max-width: 750px)
   ======================================== */

@media screen and (max-width: 750px) {

  /* Kamo Reason */
  .merch-special-sobako-lp .merch-lp-panel--kamo-reason,
  .merch-special-kamo-lp .merch-lp-panel--kamo-reason,
  .merch-special-yuba-lp .merch-lp-panel--kamo-reason {
    margin-bottom: 0;
    padding: 6.666666666666667vw 3.2vw;
    border-width: 0.8vw;
  }

  .merch-special-sobako-lp .merch-lp-kamo-reason-section .merch-lp-checklist--two-column,
  .merch-special-kamo-lp .merch-lp-kamo-reason-section .merch-lp-checklist--two-column,
  .merch-special-yuba-lp .merch-lp-kamo-reason-section .merch-lp-checklist--two-column {
    width: fit-content;
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }

  .merch-special-sobako-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text,
  .merch-special-kamo-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text,
  .merch-special-yuba-lp .merch-lp-kamo-reason-section .merch-lp-checklist__text {
    font-size: 4.533333333333333vw;
    line-height: 1.47;
  }

  /* Kamo Lineup（共通 merch-lp-product-grid） */
  .merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-grid,
  .merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-grid,
  .merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper,
  .merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper,
  .merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-item__image-wrapper {
    margin-bottom: 2vw;
    border-width: .8vw;
  }

  .merch-special-sobako-lp .merch-lp-kamo-lineup .merch-lp-product-item__name,
  .merch-special-kamo-lp .merch-lp-kamo-lineup .merch-lp-product-item__name,
  .merch-special-yuba-lp .merch-lp-kamo-lineup .merch-lp-product-item__name {
    font-size: 4.533333333333333vw;
    line-height: 1.47;
  }

  /* Kamo Menu */
  .merch-special-sobako-lp .merch-lp-menu-panel,
  .merch-special-kamo-lp .merch-lp-menu-panel,
  .merch-special-yuba-lp .merch-lp-menu-panel {
    margin-bottom: 5.333333333333334vw;
    padding: 7.466666666666668vw 4.533333333333333vw;
    border-width: .8vw;
  }

  .merch-special-kamo-lp .merch-lp-menu-panel {
    margin-bottom: 5.333333333333334vw;
    padding: 7.466666666666668vw 4.533333333333333vw;
    border-width: .8vw;
    background: url(../../img/merchandise/kamo_menu_bg_sp.jpg) right bottom no-repeat #fff;
    background-size: contain;
  }

  .merch-special-yuba-lp .merch-lp-menu-panel {
    margin-bottom: 5.333333333333334vw;
    padding: 7.466666666666668vw 4.533333333333333vw;
    border-width: .8vw;
    background: url(../../img/merchandise/yuba_menu_bg_sp.jpg) right bottom no-repeat #fff;
    background-size: contain;
  }


  .merch-special-sobako-lp .merch-lp-kamo-menu-decoration,
  .merch-special-kamo-lp .merch-lp-kamo-menu-decoration,
  .merch-special-yuba-lp .merch-lp-kamo-menu-decoration {
    display: none;
  }

  .merch-special-sobako-lp .merch-lp-menu-list,
  .merch-special-kamo-lp .merch-lp-menu-list,
  .merch-special-yuba-lp .merch-lp-menu-list {
    width: fit-content;
    padding: 0;
    display: grid;
    grid: revert;
    direction: rtl;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.3333333333333335vw;
  }

  .merch-special-sobako-lp .merch-lp-menu-list__item,
  .merch-special-kamo-lp .merch-lp-menu-list__item,
  .merch-special-yuba-lp .merch-lp-menu-list__item {
    width: 12.933333333333334vw;
    max-width: 97px;
    height: 51.2vw;
    padding: 4.266666666666667vw 0 6.4vw 0;
    justify-content: center;
    align-items: flex-start;
    white-space: nowrap;
    background-size: cover;
  }

  .merch-special-sobako-lp .merch-lp-menu-list__item span,
  .merch-special-kamo-lp .merch-lp-menu-list__item span,
  .merch-special-yuba-lp .merch-lp-menu-list__item span {
    font-size: 4.533333333333333vw;
  }

  .merch-special-sobako-lp .merch-lp-kamo-support-banner,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner {
    padding: 6vw 4vw;
    text-align: left;
  }

  .merch-special-sobako-lp .merch-lp-kamo-support-banner:after,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner:after,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner:after {
    content: none;
  }

  .merch-special-sobako-lp .merch-lp-kamo-support-banner__title,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner__title,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner__title {
    font-size: 5.066666666666666vw;
    margin-bottom: 4vw;
    margin-left: 0;
    padding: 0;
  }

  .merch-special-sobako-lp .merch-lp-kamo-support-banner__text,
  .merch-special-kamo-lp .merch-lp-kamo-support-banner__text,
  .merch-special-yuba-lp .merch-lp-kamo-support-banner__text {
    font-size: 3.733333333333334vw;
    line-height: 1.875;
    margin-left: 0;
    padding: 0;
  }
}

/* ========================================
   Yuba Reason Section (ゆばの美味しさの理由)
   ======================================== */

.merch-special-sobako-lp .merch-lp-yuba-reason-section,
.merch-special-kamo-lp .merch-lp-yuba-reason-section,
.merch-special-yuba-lp .merch-lp-yuba-reason-section {
  background-color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__item,
.merch-special-kamo-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__item,
.merch-special-yuba-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__item {
  background-color: var(--color-white);
}

/* ========================================
   Yuba Lineup (ゆばの商品ラインナップ)
   ======================================== */

.merch-special-sobako-lp .merch-lp-yuba-lineup,
.merch-special-kamo-lp .merch-lp-yuba-lineup,
.merch-special-yuba-lp .merch-lp-yuba-lineup {
  background-color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-yuba-lineup .merch-lp-product-grid,
.merch-special-kamo-lp .merch-lp-yuba-lineup .merch-lp-product-grid,
.merch-special-yuba-lp .merch-lp-yuba-lineup .merch-lp-product-grid {
  gap: 30px 20px;
}

.merch-special-sobako-lp .merch-lp-yuba-lineup .merch-lp-product-item__name,
.merch-special-kamo-lp .merch-lp-yuba-lineup .merch-lp-product-item__name,
.merch-special-yuba-lp .merch-lp-yuba-lineup .merch-lp-product-item__name {
  color: var(--color-black);
}

/* ========================================
   Yuba Menu Section (メニュー例)
   ======================================== */

.merch-special-sobako-lp .merch-lp-yuba-menu-section,
.merch-special-kamo-lp .merch-lp-yuba-menu-section,
.merch-special-yuba-lp .merch-lp-yuba-menu-section {
  background-color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-yuba-menu-box,
.merch-special-kamo-lp .merch-lp-yuba-menu-box,
.merch-special-yuba-lp .merch-lp-yuba-menu-box {
  background-color: #ffffff;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  position: relative;
}

.merch-special-sobako-lp .merch-lp-yuba-menu-decoration,
.merch-special-kamo-lp .merch-lp-yuba-menu-decoration,
.merch-special-yuba-lp .merch-lp-yuba-menu-decoration {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  gap: 15px;
  pointer-events: none;
}

.merch-special-sobako-lp .merch-lp-yuba-menu-decoration__item,
.merch-special-kamo-lp .merch-lp-yuba-menu-decoration__item,
.merch-special-yuba-lp .merch-lp-yuba-menu-decoration__item {
  width: 70px;
  max-height: 252px;
  height: auto;
}

/* ========================================
   CTA Section Note
   ======================================== */

.merch-special-sobako-lp .merch-lp-cta__note,
.merch-special-kamo-lp .merch-lp-cta__note,
.merch-special-yuba-lp .merch-lp-cta__note {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.merch-special-sobako-lp .merch-lp-cta--yuba,
.merch-special-kamo-lp .merch-lp-cta--yuba,
.merch-special-yuba-lp .merch-lp-cta--yuba {
  background-color: #ffd200;
}

.merch-special-sobako-lp .merch-lp-cta--yuba .merch-lp-cta__note,
.merch-special-kamo-lp .merch-lp-cta--yuba .merch-lp-cta__note,
.merch-special-yuba-lp .merch-lp-cta--yuba .merch-lp-cta__note {
  color: #000000;
}

/* ========================================
   Responsive Design for Yuba Section (max-width: 750px)
   ======================================== */

@media screen and (max-width: 750px) {

  /* Yuba Menu */
  .merch-special-sobako-lp .merch-lp-yuba-menu-box,
  .merch-special-kamo-lp .merch-lp-yuba-menu-box,
  .merch-special-yuba-lp .merch-lp-yuba-menu-box {
    padding: 30px 20px;
  }

  .merch-special-sobako-lp .merch-lp-yuba-menu-decoration,
  .merch-special-kamo-lp .merch-lp-yuba-menu-decoration,
  .merch-special-yuba-lp .merch-lp-yuba-menu-decoration {
    display: none;
  }

  /* CTA Note */
  .merch-special-sobako-lp .merch-lp-cta__note,
  .merch-special-kamo-lp .merch-lp-cta__note,
  .merch-special-yuba-lp .merch-lp-cta__note {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-bottom: 20px;
  }
}

/* LP embed — yuba「美味しさの理由」内の card-grid 上書き */

.merch-special-yuba-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__title {
  font-size: 2.4rem;
  line-height: 1.4;
  color: #000000;
  margin: 0 auto 10px;
  font-weight: 800;
  letter-spacing: 0.0938px;
  text-align: center;
}

.merch-special-yuba-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__text {
  font-size: 1.6rem;
  line-height: 1.875;
  color: #000000;
  margin: 0 auto;
}

.merch-special-yuba-lp .merch-lp-cta__note {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #000000;
  text-align: center;
  margin: 24px auto 0;
  max-width: 52rem;
}

.merch-special-yuba-lp .merch-lp-cta__btn--yuba {
  background-color: #000000;
  color: #ffffff;
}

.merch-special-kamo-lp .merch-lp-kamo-support-banner__title,
.merch-special-kamo-lp .merch-lp-kamo-support-banner__text {
  color: #ffffff;
}

@media screen and (max-width: 750px) {
  .merch-special-yuba-lp .merch-lp-yuba-reason-section .merch-lp-card-grid__title {
    font-size: 4.533333333333333vw;
    line-height: 1.3;
    margin-bottom: 3.4666666666666663vw;
  }

  .merch-special-yuba-lp .merch-lp-yuba-reason-item__text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}