/* ============================================================
   mamu MEDICAL - Redesign CSS (Full Rebuild)
   Figmaデザイン完全準拠
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Inter:wght@400;500&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700&family=Zen+Old+Mincho:wght@400;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* === デザイントークン === */
:root {
  --rd-gold: #C8B05B;
  --rd-gold-light: #d4bc6a;
  --rd-text-dark: #3D3D3D;
  --rd-black: #000000;
  --rd-white: #ffffff;
  --rd-bg-cream: #f5f0e6;
  --rd-bg-gold-gradient: linear-gradient(180deg, #e8d9a0 0%, #f5ecd0 50%, #faf6e8 100%);
  --rd-border-light: #d9d9d9;
  --rd-font-en: 'Cormorant Garamond', serif;
  --rd-font-jp: 'Zen Kaku Gothic Antique', sans-serif;
  --rd-header-height: 70px;
  --rd-header-height-sp: 56px;
  --rd-transition: 0.3s ease;
  --rd-container-width: 1200px;
}

/* === 旧テーマセクション非表示 === */
#ecf_header_section { display: none !important; }
#ecf_footer_section { display: none !important; }

/* 旧テーマのスライドショー・デフォルトセクション非表示 */
.c-announce_bar { display: none !important; }
.p-banner--header { display: none !important; }

/* 旧テーマのレイアウトスタイル上書き */
.l-wrapper, .l-wrapper-none {
  padding-top: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
}
/* 旧テーマ共通スタイル干渉防止 */
.l-footer { display: none !important; }
.l-header { display: none !important; }

/* === style32.css 干渉上書き === */
/* style32.css が main#index-view に padding-top:100px をかけるのを打消し */
main#index-view,
#index-view.l-container {
  padding-top: 0 !important;
}
/* style32.css が全sectionに margin-bottom:100px をかけるのを打消し */
.sec-fv,
.sec-concept,
.sec-campaign-slider,
.sec-pickup,
.sec-products,
.sec-instagram,
.sec-media,
.sec-shoplist,
.sec-banner,
.sec-campaign-auto {
  margin-bottom: 0 !important;
}

/* === フォント上書き（旧テーマ干渉防止） === */
body,
.l-wrapper,
.l-wrapper-none,
.l-container,
main,
.sec-concept,
.sec-campaign-slider,
.sec-pickup,
.sec-products,
.sec-instagram,
.sec-media,
.sec-shoplist,
.sec-banner,
.sec-campaign-auto,
.rd-footer,
.rd-footer * {
  font-family: var(--rd-font-jp);
  letter-spacing: 0.02em;
}
main * {
  letter-spacing: 0.02em;
}

/* === リセット・共通ユーティリティ === */

.sec-pickup__block-img {
  max-width: var(--rd-container-width);
  margin: 0 auto;
}
.rd-container {
    padding: 0 40px;
    max-width: var(--rd-container-width);
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 768px) {
  .rd-container { padding: 24px; }
}

/* セクションタイトル */
.rd-sec-title {
  font-family: var(--rd-font-en) !important;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  color: var(--rd-text-dark);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .rd-sec-title { font-size: 32px; margin-bottom: 20px; }
}

/* ゴールドピルボタン */
.rd-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rd-font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rd-white);
  background: var(--rd-gold);
  border: none;
  border-radius: 50px;
  padding: 16px 44px;
  width: 220px;
  text-decoration: none;
  transition: var(--rd-transition);
  cursor: pointer;
  justify-content: center;
  text-align: center;
}
.rd-btn-pill:hover { background: var(--rd-gold-light); }
.rd-btn-pill::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--rd-white);
  border-right: 1.5px solid var(--rd-white);
  transform: rotate(45deg);
}
@media (max-width: 768px) {

  .rd-btn-pill {
    width: 150px;
    padding: 12px 10px;
    font-size: 14px;
  }

}
/* Outline ボタン（Products等） */
.rd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--rd-gold);
  background: transparent;
  border: 1px solid var(--rd-gold);
  padding: 11px 40px;
  text-decoration: none;
  transition: var(--rd-transition);
  cursor: pointer;
  min-width: 220px;
  justify-content: center;
}
.rd-btn-outline::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--rd-gold);
  border-right: 1.5px solid var(--rd-gold);
  transform: rotate(45deg);
}
.rd-btn-outline:hover::after {
  border-color: var(--rd-white);
}
.rd-btn-outline:hover {
  background: var(--rd-gold);
  color: var(--rd-white);
}
@media (max-width: 768px) {
  .rd-btn-outline { min-width: 180px; padding: 11px 30px; }
}

/* View More リンク */
.rd-link-more {
  font-family: var(--rd-font-en);
  font-size: 16px;
  font-weight: 400;
  color: var(--rd-text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--rd-transition);
}
.rd-link-more::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--rd-text-dark);
  border-right: 1.5px solid var(--rd-text-dark);
  transform: rotate(45deg);
  transition: var(--rd-transition);
}
.rd-link-more:hover { opacity: 0.7; }

/* ============================================================
   ヘッダー
   ============================================================ */
#hdr.hdr--redesign {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--rd-transition);
  background: transparent;
}
#hdr.hdr--redesign .hdrInner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--rd-header-height);
  padding: 0 40px;
  max-width: inherit;
}

/* ナビ (左) */
#hdr.hdr--redesign .hdr__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: start;
}
#hdr.hdr--redesign .hdr__nav a {
  font-family: var(--rd-font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-text-dark);
  text-decoration: none;
  transition: var(--rd-transition);
}
#hdr.hdr--redesign .hdr__nav a:hover { opacity: 0.7; }

/* カテゴリードロップダウン */
#hdr.hdr--redesign .hdr__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
#hdr.hdr--redesign .hdr__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--rd-transition);
  z-index: 100;
}
#hdr.hdr--redesign .hdr__nav-item:hover .hdr__nav-dropdown {
  opacity: 1;
  visibility: visible;
}
#hdr.hdr--redesign .hdr__nav-dropdown ul {
  background: var(--rd-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 16px 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
}
#hdr.hdr--redesign .hdr__nav-dropdown li a {
  display: block;
  padding: 8px 24px;
  font-family: var(--rd-font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-text-dark) !important;
  white-space: nowrap;
}
#hdr.hdr--redesign .hdr__nav-dropdown li a span {
  display: block;
  font-family: var(--rd-font-jp);
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

/* ロゴ (中央) */
#hdr.hdr--redesign .hdr__logo { justify-self: center; }
#hdr.hdr--redesign .hdr__logo a {
  display: flex;
  align-items: center;
}
#hdr.hdr--redesign .hdr__logo img {
  width: 104px;
  height: auto;
  transition: var(--rd-transition);
}
#hdr.hdr--redesign .hdr__logo--white { display: none; }
#hdr.hdr--redesign .hdr__logo--dark { display: block; }

/* アイコン (右) */
#hdr.hdr--redesign .hdr__icons {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
#hdr.hdr--redesign .hdr__icons a,
#hdr.hdr--redesign .hdr__icons .hdr__login-wrap > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--rd-text-dark);
  transition: var(--rd-transition);
}
#hdr.hdr--redesign .hdr__icons img,
#hdr.hdr--redesign .hdr__icons svg {
  width: 22px;
  height: 22px;
}
#hdr.hdr--redesign .hdr__icons .cartAmount {
  font-family: var(--rd-font-jp);
  font-size: 10px;
  background: #e53935;
  color: var(--rd-white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  margin-top: -9px;
  left: 10px;
}

/* ログインドロップダウン */
#hdr.hdr--redesign .hdr__login-wrap { position: relative; }
#hdr.hdr--redesign .hdr__login-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--rd-transition);
}
#hdr.hdr--redesign .hdr__login-wrap:hover .hdr__login-dropdown {
  opacity: 1;
  visibility: visible;
}
#hdr.hdr--redesign .hdr__login-dropdown ul {
  background: var(--rd-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  min-width: 160px;
}
#hdr.hdr--redesign .hdr__login-dropdown li a {
  display: block;
  padding: 8px 20px;
  font-family: var(--rd-font-jp);
  font-size: 13px;
  color: var(--rd-text-dark);
  white-space: nowrap;
  text-decoration: none;
}
#hdr.hdr--redesign .hdr__login-dropdown li a:hover { background: #f5f5f5; }

/* ハンバーガー */
#hdr.hdr--redesign .hdr__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
#hdr.hdr--redesign .hdr__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rd-gold);
  transition: var(--rd-transition);
}

/* --- 透過状態 (FV内): 常時黒 --- */
#hdr.hdr--redesign.hdr--transparent { background: transparent !important; }
#hdr.hdr--redesign.hdr--transparent .hdr__nav a,
#hdr.hdr--redesign.hdr--transparent .hdr__nav a:visited,
#hdr.hdr--redesign.hdr--transparent .hdr__nav a:link { color: var(--rd-text-dark) !important; }
#hdr.hdr--redesign.hdr--transparent .hdr__icons a,
#hdr.hdr--redesign.hdr--transparent .hdr__icons a:visited,
#hdr.hdr--redesign.hdr--transparent .hdr__icons .hdr__login-wrap > a,
#hdr.hdr--redesign.hdr--transparent .hdr__icons .hdr__login-wrap > a:visited { color: var(--rd-text-dark) !important; }
/* CDN SVGアイコンは元が黒なのでfilter不要 */
#hdr.hdr--redesign.hdr--transparent .hdr__icons img {
  filter: none !important;
}
#hdr.hdr--redesign.hdr--transparent .hdr__icons svg { stroke: var(--rd-text-dark) !important; color: var(--rd-text-dark) !important; }
#hdr.hdr--redesign.hdr--transparent .hdr__hamburger span { background: var(--rd-text-dark) !important; }
/* 透過時: 黒ロゴ表示、ゴールドロゴ非表示 */
#hdr.hdr--redesign.hdr--transparent .hdr__logo--white { display: none !important; }
#hdr.hdr--redesign.hdr--transparent .hdr__logo--dark { display: block !important; filter: none !important; }

/* --- 通常状態 (スクロール後): 黒テキスト、背景なし --- */
#hdr.hdr--redesign.hdr--solid {
  background: transparent !important;
}
#hdr.hdr--redesign.hdr--solid .hdr__nav a,
#hdr.hdr--redesign.hdr--solid .hdr__nav a:visited,
#hdr.hdr--redesign.hdr--solid .hdr__nav a:link { color: var(--rd-text-dark) !important; }
#hdr.hdr--redesign.hdr--solid .hdr__icons a,
#hdr.hdr--redesign.hdr--solid .hdr__icons a:visited,
#hdr.hdr--redesign.hdr--solid .hdr__icons .hdr__login-wrap > a,
#hdr.hdr--redesign.hdr--solid .hdr__icons .hdr__login-wrap > a:visited { color: var(--rd-text-dark) !important; }
/* solid時: CDNアイコンは元が黒なのでfilter不要 */
#hdr.hdr--redesign.hdr--solid .hdr__icons img {
  filter: none !important;
}
#hdr.hdr--redesign.hdr--solid .hdr__icons svg { stroke: var(--rd-text-dark) !important; color: var(--rd-text-dark) !important; }
#hdr.hdr--redesign.hdr--solid .hdr__hamburger span { background: var(--rd-text-dark) !important; }
#hdr.hdr--redesign.hdr--solid .hdr__logo--white { display: none !important; }
#hdr.hdr--redesign.hdr--solid .hdr__logo--dark { display: block !important; filter: none !important; }

/* ニュースティッカー（一旦非表示） */
#hdr.hdr--redesign .header__bottom {
  display: none !important;
}
#hdr.hdr--redesign .header__bottom a { color: var(--rd-white); pointer-events: none; }
#hdr.hdr--redesign .header__bottom time { display: none; }

/* SP ヘッダー */
@media (max-width: 768px) {
  #hdr.hdr--redesign .hdrInner {
    grid-template-columns: auto 1fr auto;
    height: var(--rd-header-height-sp);
    padding: 0 16px;
  }
  #hdr.hdr--redesign .hdr__nav { display: none; }
  #hdr.hdr--redesign .hdr__hamburger { display: flex; justify-self: end; }
  #hdr.hdr--redesign .hdr__logo { justify-self: start; order: -1; }
  #hdr.hdr--redesign .hdr__logo img { width: 104px; height: auto; }
  #hdr.hdr--redesign .hdr__icons { gap: 14px; }
  #hdr.hdr--redesign .hdr__icons img,
  #hdr.hdr--redesign .hdr__icons svg { width: 20px; height: 20px; }
  #hdr.hdr--redesign .hdr__icons .hdr__icon--pc { display: none; }
  #hdr.hdr--redesign .hdr__login-dropdown { display: none !important; }

  /* SP 透過状態 (FV内): 常時黒 */
  #hdr.hdr--redesign.hdr--transparent { background: transparent !important; }
  #hdr.hdr--redesign.hdr--transparent .hdr__icons a,
  #hdr.hdr--redesign.hdr--transparent .hdr__icons a:visited,
  #hdr.hdr--redesign.hdr--transparent .hdr__icons .hdr__login-wrap > a,
  #hdr.hdr--redesign.hdr--transparent .hdr__icons .hdr__login-wrap > a:visited { color: var(--rd-text-dark) !important; }
  /* SP: CDN SVGアイコンは元が黒なのでfilter不要 */
  #hdr.hdr--redesign.hdr--transparent .hdr__icons img {
    filter: none !important;
  }
  #hdr.hdr--redesign.hdr--transparent .hdr__icons svg { stroke: var(--rd-text-dark) !important; color: var(--rd-text-dark) !important; }
  #hdr.hdr--redesign.hdr--transparent .hdr__hamburger span { background: var(--rd-text-dark) !important; }
  /* SP透過時: 黒ロゴ表示、ゴールドロゴ非表示 */
  #hdr.hdr--redesign.hdr--transparent .hdr__logo--white { display: none !important; }
  #hdr.hdr--redesign.hdr--transparent .hdr__logo--dark { display: block !important; filter: none !important; }

  /* SP スクロール後: 背景なし、黒 */
  #hdr.hdr--redesign.hdr--solid { background: transparent !important; }
  #hdr.hdr--redesign.hdr--solid .hdr__icons img {
    filter: none !important;
  }
}
@media (min-width: 769px) {
  #hdr.hdr--redesign .hdr__icon--sp { display: none; }
}

/* ヘッダー余白（下層） */
body:not(.is-top) main,
body:not(.is-top) .l-container { padding-top: var(--rd-header-height); }
@media (max-width: 768px) {
  body:not(.is-top) main,
  body:not(.is-top) .l-container { padding-top: var(--rd-header-height-sp); }
}

/* ドロワー */
#drawer .drawer__accountText { background: var(--rd-white) !important; color: var(--rd-text-dark) !important; }
#drawer .drawer__accountText h2 { font-family: var(--rd-font-en); letter-spacing: 0.05em; }
#drawer .drawer__nav a { font-family: var(--rd-font-en); }

/* ドロワー（プレビュー用） */
.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--rd-white);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.drawer.is-open { right: 0; }
.drawer__inner { padding: 80px 30px 40px; }
.drawer__nav { list-style: none; padding: 0; margin: 0; }
.drawer__nav li { border-bottom: 1px solid #eee; }
.drawer__nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--rd-font-en);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--rd-text-dark);
  text-decoration: none;
}
.drawer__sub { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.drawer__sub a {
  font-family: var(--rd-font-jp);
  font-size: 14px;
  color: var(--rd-gold);
  text-decoration: none;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   ファーストビュー
   ============================================================ */
.sec-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1075;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-fv { aspect-ratio: 800 / 1156; }
}
/* FVスライダー（Slick） */
.sec-fv__slider { height: 100%; }
.sec-fv__slider .slick-list,
.sec-fv__slider .slick-track,
.sec-fv__slider .slick-slide { height: 100%; }
.sec-fv__slider .slick-slide > div { height: 100%; }
.sec-fv__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec-fv__slide a { display: block; height: 100%; }
.sec-fv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sec-fv__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-fv .slick-dots { display: none !important; }
.sec-fv .slick-dots li button:before { color: var(--rd-white); opacity: 0.5; font-size: 10px; }
.sec-fv .slick-dots li.slick-active button:before { color: var(--rd-white); opacity: 1; }

/* スクロールインジケータ */
.sec-fv__scroll {
  display: none !important;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sec-fv__scroll span {
  font-family: var(--rd-font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--rd-white);
  writing-mode: vertical-rl;
}
.sec-fv__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--rd-white);
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   コンセプト — PC: 黒+ゴールドパーティクル / SP: 白
   ============================================================ */
.sec-concept {
  background: var(--rd-white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sec-concept::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/concept_gold_particles.png') center center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
  display: none;
}
.sec-concept__inner {
  position: relative;
  z-index: 1;
}
.sec-concept__heading {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 36px;
  font-weight: 400;
  color: var(--rd-text-dark);
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 48px;
}

.sec-concept__heading span {
    font-family: 'Zen Old Mincho', serif !important;
}
.sec-concept__text {
  font-family: var(--rd-font-jp);
  font-size: 17px;
  font-weight: 300;
  color: var(--rd-text-dark);
  line-height: 2.4;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto 56px;
}
.sec-concept__text span {
    font-family: var(--rd-font-jp);
}
.sec-concept__text-tagline {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 23px;
  font-weight: 400;
  color: var(--rd-text-dark);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 32px;
  margin-bottom: 32px;
}
.sec-concept__text-tagline .gold {
  color: var(--rd-gold);
  font-family: 'Zen Old Mincho', serif !important;
}

.sec-concept__logo {  text-align: center;display: flex;justify-content: center; }
.sec-concept__logo img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.sec-concept__btn {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.sec-concept__btn .rd-btn-pill,
.sec-concept__btn .rd-btn-pill:visited,
.sec-concept__btn .rd-btn-pill:link {
  color: #fff !important;
  font-family: 'Zen Old Mincho', serif !important;
}

/* SP */
@media (max-width: 768px) {
  .sec-concept {
    padding: 56px 20px 0;
  }
  .sec-concept::before { display: none; }
  .sec-concept__heading {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
  }
  .sec-concept .rd-container {
    padding: 0;
  }
  .sec-concept__text {
    font-size: 14px;
    line-height: 3;
    margin-bottom: 40px;
  }
  .sec-concept__logo img { width: 150px; height: auto;}
  .sec-concept__btn {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }
}

/* ============================================================
   Campaign スライダー — 白背景、スライドが右端からはみ出す
   Figma: title x=83, cards x=405, card=420x334, img=420x261
   ============================================================ */
.sec-campaign-slider {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.sec-campaign-slider::before {
  content: '';
  z-index: -1;
    background: linear-gradient(90deg,#F2EDD7 0%, #FAF8F0 20%,#FFFFFE 100% );
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    display: none;
}
.sec-campaign-slider__layout {
  display: flex;
  align-items: start;
  gap: 60px;
  padding-left: max(40px, calc((100vw - var(--rd-container-width)) / 2 + 40px));
}
.sec-campaign-slider__info {
  flex-shrink: 0;
  width: 262px;
  padding-top: 10px;
}
.sec-campaign-slider__desc {
  font-family: var(--rd-font-jp);
  font-size: 15px;
  font-weight: 400;
  color: var(--rd-text-dark);
  line-height: 2;
  letter-spacing: 0.1em;
}
/* スライダー — 右にはみ出す */
.sec-campaign-slider__cards {
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.sec-campaign-slider .campaign-card {
  padding: 0 12px;
  width: 444px;
  box-sizing: border-box;
}
.sec-campaign-slider .campaign-card a {
  display: block;
  text-decoration: none;
}
.sec-campaign-slider .campaign-card__img {
  background: #e9e9e9;
  aspect-ratio: 420 / 261;
  overflow: hidden;
}
.sec-campaign-slider .campaign-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sec-campaign-slider .campaign-card a:hover .campaign-card__img img {
  transform: scale(1.03);
}
.sec-campaign-slider .campaign-card__title {
  font-family: var(--rd-font-jp);
  font-size: 15px;
  font-weight: 400;
  color: var(--rd-text-dark);
  margin-top: 13px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
}
@media (max-width: 768px) {
  .sec-campaign-slider { padding: 70px 0; }
  .sec-campaign-slider::before {
    display: none;
  }
  .sec-campaign-slider__layout {
    flex-direction: column;
    padding-left: 20px;
    gap: 0px;
  }
  .sec-campaign-slider__info { width: auto; }
  .sec-campaign-slider__cards {
    width: 100vw;

  }
  .sec-campaign-slider .campaign-card {
    width: auto;
  }

  .sec-campaign-slider .campaign-card__title {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

/* ============================================================
   Pickup Products
   ============================================================ */
.sec-pickup {
  padding: 0;
  background: var(--rd-white);
}
.sec-pickup__header {
  padding: 80px 40px 40px;
  max-width: var(--rd-container-width);
  margin: 0 auto;
}

/* グループ: Block + Banner */
.sec-pickup__group {
  position: relative;
  margin-bottom: 110px;
}
.sec-pickup__group:last-child { margin-bottom: 0; }

/* ブロック（画像+テキスト） */
.sec-pickup__block {
  display: grid;
  grid-template-columns: 61% 39%;
}
.sec-pickup__block--reverse {
  grid-template-columns: 39% 61%;
}
.sec-pickup__block-img {
  overflow: hidden;
}
.sec-pickup__block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-pickup__block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  position: relative;
  z-index: 10;
}
.sec-pickup__block--dark {
  background: var(--rd-white);
  color: var(--rd-text-dark);
}
.sec-pickup__block--light {
  background: var(--rd-white);
  color: var(--rd-text-dark);
}
.sec-pickup__block-name {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 30px;
  font-weight: 400;
  line-height: calc(50 / 30);
  margin-bottom: 24px;
}
.sec-pickup__block-desc {
  font-family: var(--rd-font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: calc(36 / 16);
}
.sec-pickup__block-note {
  font-family: var(--rd-font-jp);
  font-size: 12px;
  opacity: 0.6;
  margin-top: 16px;
}

/* バナー: 画像bg + テキスト + カラーサイドバー */
.sec-pickup__banner {
  display: flex;
  text-decoration: none;
  color: var(--rd-text-dark);
  width: 58%;
  max-width: 795px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.sec-pickup__banner--right {
  margin-left: auto;
  margin-right: 80px;
}
.sec-pickup__banner--left {
  margin-left: 80px;
}
.sec-pickup__banner-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 310px;
}

.sec-pickup__banner-main img {
  position: absolute;
  top: -30%;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sec-pickup__banner:hover .sec-pickup__banner-main img {
  transform: scale(1.03);
}
.sec-pickup__banner-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  height: 100%;
}
.sec-pickup__group--light .sec-pickup__banner .sec-pickup__banner-overlay{
  justify-content: flex-end;
}

.sec-pickup__group--light .sec-pickup__banner-main img {
  object-fit: cover;
  top: inherit;
  left: 0;
  max-width: inherit;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
.sec-pickup__group--light .sec-pickup__banner-main img {
  bottom: 0%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
}
/* Pickupバナー矢印アイコン */
.sec-pickup__banner-arrows {
  display: flex;
  gap: 8px;
  display: none
}
.sec-pickup__banner-arrows svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sec-pickup__banner-text {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 24px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.9), 0 2px 8px rgba(255,255,255,1);
}
.sec-pickup__banner-text strong {
  font-family: 'Zen Old Mincho', serif !important;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sec-pickup__banner-about {
  /* margin-left: auto; */
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 16px;
  font-weight: 400;
  /* color: var(--rd-gold); */
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 24px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.9), 0 2px 8px rgba(255,255,255,1);
}
.sec-pickup__banner-about::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--rd-text-dark);
  border-right: 1.5px solid var(--rd-text-dark);
  
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  text-shadow: none;
  position: relative;
}
.sec-pickup__banner-sidebar {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-pickup__banner-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.7px;
  color: var(--rd-text-dark);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .sec-pickup__header { padding: 20px 20px 20px; }
  .sec-pickup__group { display: flex; flex-direction: column; margin-bottom: 64px; }
  .sec-pickup__block { display: contents; }
  .sec-pickup__block-img { order: 1; width: calc(100% - 55px); padding: 0; margin: 0;}
  .sec-pickup__group--light .sec-pickup__block-img { margin-left: auto; }
  .sec-pickup__block-img img { aspect-ratio: 320 / 240; }
  .sec-pickup__banner {
    order: 2;
    width: 294px;
    margin: 0 auto;
    margin-top: -40px;
  }
  .sec-pickup__group--dark .sec-pickup__banner { margin-right: 20px; }
  .sec-pickup__group--light .sec-pickup__banner { margin-left: 20px; }
  .sec-pickup__banner-main { height: 174px; }
  .sec-pickup__block-content {
    order: 3;
    padding: 32px 20px;
    text-align: left;
    background: var(--rd-white) !important;
    color: var(--rd-text-dark) !important;
  }
  .sec-pickup__block-name { font-size: 22px; margin-bottom: 16px;}
  .sec-pickup__block-desc { font-size: 12px; }
  .sec-pickup__block-note { font-size: 10px; margin-top: 10px;}
  .sec-pickup__banner-overlay { padding: 16px; gap: 10px; height: 100%; }
  .sec-pickup__banner-text { font-size: 13px; line-height: 1.5;}
  .sec-pickup__banner-text strong { font-size: 13px; }
  .sec-pickup__banner-sidebar { width: 40px; }
  .sec-pickup__banner-vertical { font-size: 10px; letter-spacing: 1px; line-height: 1.2;}
  .sec-pickup__banner-about { font-size: 10px; }
  .sec-pickup__banner-about::after {
    width: 3px;
    height: 3px;
    border-top: 1px solid var(--rd-text-dark);
    border-right: 1px solid var(--rd-text-dark);
    transform: rotate(45deg);
    top: 1px;
  }
}

/* ============================================================
   Products（全幅3列グリッド / SP: 2列）
   テキストは画像の上にオーバーレイ（名前=上部、価格=下部）
   ============================================================ */
.sec-products {
  padding: 100px 0 0;
  background: var(--rd-white);
}
.sec-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e6ddbc;
  border-left: 1px solid #e6ddbc;
}
.sec-products__item {
  border-right: 1px solid #e6ddbc;
  border-bottom: 1px solid #e6ddbc;
  overflow: hidden;
}
.sec-products__item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--rd-text-dark);
  aspect-ratio: 456 / 410;
  overflow: hidden;
}
.sec-products__item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  padding: 15%;
}
.sec-products__item a:hover img {
  transform: scale(1.05);
}

/* 商品名 — 画像の上部にオーバーレイ */
.sec-products__item-name {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: white;
  margin: 0;
  z-index: 1;
}

/* 価格 — 画像の下部にオーバーレイ */
.sec-products__item-price {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-family: var(--rd-font-jp) !important;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: white;
  margin: 0;
  z-index: 1;
}

.sec-products__btn {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.sec-products__btn .rd-btn-pill,
.sec-products__btn .rd-btn-pill:visited,
.sec-products__btn .rd-btn-pill:link {
  color: #fff !important;
  font-family: 'Zen Old Mincho', serif !important;
}


@media (max-width: 768px) {
  .sec-products { padding: 50px 0 0; }
  .sec-products__grid { grid-template-columns: repeat(2, 1fr); }
  .sec-products__item a {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .sec-products__item a img {
    width: 50%;
    height: auto;
    padding: 0;
    object-fit: contain;
  }
  .sec-products__item-name {
    position: static;
    font-size: 12px;
    line-height: 1.45;
    padding: 8px 0 0;
    color: var(--rd-text-dark);
  }
  .sec-products__item-price {
    position: static;
    font-size: 10px;
    padding: 4px 0 0;
  }
  .sec-products__btn { padding: 40px 0; }
}

/* Products — EC Force自動出力 (.itemList__unit) 対応 */
.sec-products__grid .itemList__unit {
  border-right: 1px solid #e6ddbc;
  border-bottom: 1px solid #e6ddbc;
  overflow: hidden;
  list-style: none;
  padding: 0;
}
.sec-products__grid .itemList__unit .itemWrap {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--rd-text-dark);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sec-products__grid .itemList__unit .itemImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  padding: 0;
  transform: scale(0.8);
}
.sec-products__grid .itemList__unit .itemWrap:hover .itemImg {
  transform: scale(1);
}
.sec-products__grid .itemList__unit .itemBody {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.sec-products__grid .itemList__unit .itemName {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: var(--rd-text-dark);
  margin: 0;
  padding-top: 42px;
}
.sec-products__grid .itemList__unit .itemPrice {
  font-family: var(--rd-font-jp) !important;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--rd-text-dark);
  margin: 0;
  padding-bottom: 20px;
}

.sec-products__grid .itemList__unit .itemPrice .price {
  font-family: "century-gothic", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

/* Products — 空枠（PCのみ表示） */
.sec-products__grid .products__empty-slot {
  border-right: 1px solid #e6ddbc;
  border-bottom: 1px solid #e6ddbc;
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  .products__empty-slot { display: none !important; }
  .sec-products__grid .itemList__unit .itemWrap {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .sec-products__grid .itemList__unit .itemImg {
    width: 50%;
    height: auto;
    padding: 0;
    object-fit: contain;
    transform: scale(1.25);
    margin-bottom: 10px;
    padding-top: 10px;
  }
  .sec-products__grid .itemList__unit .itemWrap:hover .itemImg {
    transform: scale(1.25);
  }
  .sec-products__grid .itemList__unit .itemBody {
    position: static;
    display: block;
  }
  .sec-products__grid .itemList__unit .itemName {
    font-size: 12px;
    line-height: 1.45;
    padding: 8px 0 0;
    height: auto;
  }
  .sec-products__grid .itemList__unit .itemPrice {
    font-size: 10px;
    padding: 4px 0 0;
  }
}

/* ============================================================
   Instagram — 白背景
   ============================================================ */
.sec-instagram {
  padding: 100px 0;
  background: var(--rd-white);
}
.sec-instagram .rd-sec-title {
  color: var(--rd-text-dark);
}
.sec-instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--rd-container-width);
  margin: 0 auto;
  padding: 0 40px;
}
.sec-instagram__card {
  background: white;
  border: 1px solid #D3D3D3;
  overflow: hidden;
  position: relative;
}
.sec-instagram__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  position: absolute;
  top: 0;
  left: 0;

}
.sec-instagram__card-header svg {
  width: 16px;
  height: 16px;
  stroke: var(--rd-text-dark);
}
.sec-instagram__card-img { aspect-ratio: 1; overflow: hidden; }
.sec-instagram__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-instagram__card-body { padding: 12px; }
.sec-instagram__card-account {
  font-family: var(--rd-font-jp);
  font-size: 11px;
  font-weight: 700;
  color: var(--rd-text-dark);
  margin-bottom: 6px;
}
.sec-instagram__card-text {
  font-family: var(--rd-font-jp);
  font-size: 11px;
  color: rgba(61,61,61,0.6);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-instagram__card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sec-instagram__card a:hover { opacity: 0.85; }
.sec-instagram__card-likes {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rd-text-dark);
  font-size: 14px;
}

/* SP: スライダー表示 */
@media (max-width: 768px) {
  .sec-instagram { padding: 40px 0; }
  .sec-instagram__grid {
    display: block;
    padding: 0;
  }
  .sec-instagram__grid .sec-instagram__card {
    width: 260px;
    margin: 0 12px;
  }
  .sec-instagram__grid .slick-list {
    padding: 0 20px;
  }
}

/* ============================================================
   Media — 白背景
   ============================================================ */
.sec-media {
  padding: 100px 0 80px;
  background: var(--rd-white);
}
.sec-media .rd-sec-title {
  color: var(--rd-text-dark);
}
.sec-media__slider {
  width: 100%;
  overflow: hidden;
}
.sec-media .media-card { padding: 0 8px; }
.sec-media .media-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.sec-media .media-card:hover img { transform: scale(1.02); }
.sec-media .media-card__info {
  margin-top: 10px;
}
.sec-media .media-card__date {
  font-family: var(--rd-font-jp);
  font-size: 12px;
  color: var(--rd-text-dark);
  display: block;
  line-height: 1.5;
}
.sec-media .media-card__name {
  font-family: var(--rd-font-jp);
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sec-media { padding: 30px 0; }
  .sec-media .rd-sec-title {
    font-size: 32px;
  }
  .sec-media__slider { width: 100%; }
}

/* ============================================================
   Shop List（円形ロゴ）
   Figma: 左タイトル + 右に大きな円3つ（280px）
   ============================================================ */
.sec-shoplist {
  padding: 80px 0;
  background: var(--rd-white);
}
.sec-shoplist__layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--rd-container-width);
  margin: 0 auto;
  padding: 0 40px;
}
.sec-shoplist .rd-sec-title {
  font-size: 42px;
  margin-bottom: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.sec-shoplist__circles {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex: 1;
}
.sec-shoplist__circle {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--rd-transition);
  flex-shrink: 0;
}
.sec-shoplist__circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
}
.sec-shoplist__circle:hover {
  border-color: var(--rd-gold);
  box-shadow: 0 4px 20px rgba(200,176,91,0.15);
}
.sec-shoplist__circle img {
  max-width: 124px;
  max-height: 80%;
  object-fit: contain;
}

.sec-shoplist__circle.amazon a img {
  position: relative;
  top: 3%;
  left: 2%;
}

@media (max-width: 768px) {
  .sec-shoplist { padding: 60px 0; }
  .sec-shoplist__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 0 20px;
  }
  .sec-shoplist .rd-sec-title { font-size: 32px; }
  .sec-shoplist__circles {
    justify-content: center;
    width: 100%;
    gap: 16px;
  }
  .sec-shoplist__circle {
    width: 100px;
    height: 100px;
    flex-shrink: 1;
  }
}

/* ============================================================
   バナー（フル幅画像 — Figma: 横長パノラマ ~4:1）
   ============================================================ */
.sec-banner {
  position: relative;
  overflow: hidden;
}
.sec-banner a { display: block; }
.sec-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sec-banner--full {
  height: clamp(200px, 25vw, 400px);
}
@media (max-width: 768px) {
  .sec-banner--full {
    /* height: clamp(150px, 40vw, 250px); */
    height: auto;
  }
}

/* ============================================================
   Campaign 自動出力（リスト形式）
   ============================================================ */
.sec-campaign-auto {
  padding: 100px 0;
  background: var(--rd-white);
}
.sec-campaign-auto__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  max-width: var(--rd-container-width);
  margin: 0 auto;
  padding: 0 40px;
}
.sec-campaign-auto__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
.sec-campaign-auto__info .rd-sec-title {
  font-size: 42px;
  margin-bottom: 30px;
}
.sec-campaign-auto__info .rd-link-more {
  margin-top: auto;
  font-family: 'Zen Old Mincho', serif !important;
}
.sec-campaign-auto__viewmore-sp .rd-link-more {
  font-family: 'Zen Old Mincho', serif !important;
}
.sec-campaign-auto__viewmore-sp {
  display: none;
}
/* .sec-campaign-auto .campaign-list { border-top: 1px solid var(--rd-border-light); } */
.sec-campaign-auto .campaign-list__item { border-bottom: 1px solid var(--rd-border-light); }
.sec-campaign-auto .campaign-list__item a,
.sec-campaign-auto .newsList--typeA li a {
  display: flex;
  align-items: baseline;
  gap: 40px;
  font-weight: normal !important;
  padding: 24px 0;
  text-decoration: none;
  color: var(--rd-text-dark);
  transition: var(--rd-transition);
}
.sec-campaign-auto .campaign-list__item a:hover { opacity: 0.6; }
.sec-campaign-auto .campaign-list__date {
  font-family: "century-gothic", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #3D3D3D;
  flex-shrink: 0;
  min-width: 100px;
}
.sec-campaign-auto .campaign-list__title {
  font-family: var(--rd-font-jp);
  font-size: 15px;
  line-height: 1.7;
}

/* 既存NEWSリスト上書き */
.sec-campaign-auto .newsList--typeA {
  list-style: none;
  padding: 0;
  margin: 0;
  /* border-top: 1px solid var(--rd-border-light); */
}
.sec-campaign-auto .newsList--typeA li { border-bottom: 1px solid #DFDFDF; }
.sec-campaign-auto .newsList--typeA li a {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 24px 0;
  text-decoration: none;
  color: var(--rd-text-dark);
  font-family: var(--rd-font-jp);
  font-size: 15px;
  font-weight: normal !important;
}

@media (max-width: 768px) {
  .sec-campaign-auto {
    padding: 60px 0;
    overflow: hidden;
  }
  .sec-campaign-auto__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
    max-width: 100vw;
    overflow: hidden;
  }
  .sec-campaign-auto .campaign-list {
    overflow: hidden;
    max-width: 100%;
  }
  .sec-campaign-auto__info {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .sec-campaign-auto__info .rd-sec-title {
    font-size: 32px;
    margin-bottom: 0;
  }
  /* SP: View MoreをinfoからリストのあとにCSS orderで移動 */
  .sec-campaign-auto__info .rd-link-more {
    display: none;
  }
  .sec-campaign-auto .campaign-list__item a,
  .sec-campaign-auto .newsList--typeA li a {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  /* SP View More（別要素で表示） */
  .sec-campaign-auto__viewmore-sp {
    display: block;
    text-align: right;
    margin-top: 20px;
  }
  /* EC Force NEWSリストのはみ出し防止 */
  .sec-campaign-auto .newsList--typeA {
    max-width: 100%;
    overflow: hidden;
  }
  .sec-campaign-auto .newsList--typeA li {
    max-width: 100%;
    overflow: hidden;
  }
  .sec-campaign-auto .newsList--typeA li h3 {
    font-size: 12px;
    white-space: normal;
  }
}

/* ============================================================
   フッター（ゴールドグラデーション）
   PC: 左ロゴ(180px) | Make up+Skin care | Body care+Supplement | Links+SNS
   ============================================================ */
#ftr.ftr--redesign {
  background: var(--rd-bg-gold-gradient);
  background: linear-gradient(135deg, #FFFAE8 0, #F0E3AE 35%, #FFFBEC 100%);
  color: var(--rd-text-dark);
  padding: 80px 0 0;
}
#ftr.ftr--redesign .ftr__inner {
  max-width: var(--rd-container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 180px 1fr 1fr auto;
  gap: 0 40px;
  align-items: start;
}

/* ロゴ（ダーク・左列） */
#ftr.ftr--redesign .ftr__brand {
  grid-column: 1;
  grid-row: 1;
}
#ftr.ftr--redesign .ftr__brand img {
  width: 180px;
  height: auto;
  filter: brightness(0.15);
}

/* カテゴリー列 — 2つの独立カラム */
#ftr.ftr--redesign .ftr__categories {
  grid-column: 2 / 4;
  display: flex;
  gap: 40px;
}
#ftr.ftr--redesign .ftr__cat-group {
  flex: 1;
}
#ftr.ftr--redesign .ftr__cat-col {
  margin-bottom: 40px;
}
#ftr.ftr--redesign .ftr__cat-col h4 {
  font-family: var(--rd-font-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--rd-text-dark);
  margin: 0 0 10px;
}
#ftr.ftr--redesign .ftr__cat-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#ftr.ftr--redesign .ftr__cat-col li { margin-bottom: 1px; }
#ftr.ftr--redesign .ftr__cat-col a {
  font-family: var(--rd-font-jp);
  font-size: 14px;
  font-weight: 400;
  color: var(--rd-text-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 2;
  transition: var(--rd-transition);
}
#ftr.ftr--redesign .ftr__cat-col a:hover { opacity: 0.6; }

/* リンク列 + SNS（右列） */
#ftr.ftr--redesign .ftr__links {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: start;
}
#ftr.ftr--redesign .ftr__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#ftr.ftr--redesign .ftr__links li { margin-bottom: 5px; }
#ftr.ftr--redesign .ftr__links a {
  font-family: var(--rd-font-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--rd-text-dark);
  text-decoration: none;
  transition: var(--rd-transition);
  line-height: 2;
}
#ftr.ftr--redesign .ftr__links a:hover { opacity: 0.6; }
/* フッター日本語リンク: JP font + サイズ調整 */
#ftr.ftr--redesign .ftr__links a[href="/shop/law_info"],
#ftr.ftr--redesign .ftr__links a[href="/shop/privacy"] {
  font-family: var(--rd-font-jp);
  font-size: 14px;
  font-weight: 400;
}

/* SNS アイコン（リンク列の下） */
#ftr.ftr--redesign .ftr__sns {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
#ftr.ftr--redesign .ftr__sns a {
  display: flex;
  align-items: center;
  color: var(--rd-text-dark);
  transition: var(--rd-transition);
}
#ftr.ftr--redesign .ftr__sns a:hover { opacity: 0.6; }
#ftr.ftr--redesign .ftr__sns img,
#ftr.ftr--redesign .ftr__sns svg { width: 18px; height: 18px; }

/* Copyright（下部中央） */
#ftr.ftr--redesign .ftr__bottom {
  max-width: var(--rd-container-width);
  margin: 40px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
}
#ftr.ftr--redesign .ftr__copyright {
  font-family: var(--rd-font-en);
  font-size: 13px;
  color: var(--rd-text-dark);
  letter-spacing: 0.03em;
}

/* SP フッター — 縦積み */
@media (max-width: 768px) {
  #ftr.ftr--redesign { 
    padding: 50px 0 0; 
    background: linear-gradient(135deg, #FFFAE8 0, #F1E9CB 55%,#F0E3B0 90%, #F0E3B0 100%);
  }
  #ftr.ftr--redesign .ftr__inner {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #ftr.ftr--redesign .ftr__categories {
    flex-wrap: wrap;
    gap: 12px;
  }
  #ftr.ftr--redesign .ftr__cat-group {
    width: 100%;
    max-width: 400px;
    flex: inherit;
  }
  #ftr.ftr--redesign .ftr__brand {
    margin-bottom: 28px;
  }
  #ftr.ftr--redesign .ftr__brand img {
    width: 130px;
    filter: brightness(0.15);
  }
  #ftr.ftr--redesign .ftr__cat-col {
    margin-bottom: 20px;
  }
  #ftr.ftr--redesign .ftr__cat-col h4 {
    font-size: 12px;
    margin-bottom: 6px;
    font-weight: bold;
  }
  #ftr.ftr--redesign .ftr__cat-col a {
    font-size: 11px;
    line-height: 1.9;
  }
  #ftr.ftr--redesign .ftr__links {
    margin-top: 8px;
  }
  #ftr.ftr--redesign .ftr__links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
  }
  #ftr.ftr--redesign .ftr__links a {
    font-size: 12px;
    line-height: 1.8;
  }
  /* SP: フッター日本語リンクサイズ */
  #ftr.ftr--redesign .ftr__links a[href="/shop/law_info"],
  #ftr.ftr--redesign .ftr__links a[href="/shop/privacy"] {
    font-size: 10px;
  }
  #ftr.ftr--redesign .ftr__sns {
    margin-top: 16px;
    justify-content: left;
  }
  #ftr.ftr--redesign .ftr__bottom {
    margin-top: 24px;
    padding: 20px;
  }
  #ftr.ftr--redesign .ftr__copyright {
    font-size: 10px;
  }
}

/* toTopボタン */
.toTop--circle { z-index: 999; }

/* ============================================================
   既存スタイル上書き
   ============================================================ */
.js-exportSec { display: none !important; }
.mainSliderSec.mb0 { margin-bottom: 0; }
.mainSliderSec .mainSliderSec__title {
  text-shadow: 0px 3px 3px rgba(108, 126, 153, 0.15);
}
header .header__bottom { background: var(--rd-gold) !important; }

/* 既存フッタースタイル上書き */
#ftr.ftr--redesign .fNav--typeC,
#ftr.ftr--redesign .copyright--typeC {
  background: transparent !important;
  border: none !important;
}
.ftr--typeD { background: transparent !important; }
.copyright--typeC { background: transparent !important; }

/* Campaign slick-dots */
.sec-campaign-slider .slick-dots { display: flex !important; }

/* Slickドットバー共通 */
.sec-campaign-slider .slick-dots,
.sec-media .slick-dots {
  display: flex;
  justify-content: center;
  flex: 1;
  bottom: -30px;
}
.sec-campaign-slider .slick-dots li,
.sec-media .slick-dots li {
  height: 1px;
  width: 30px;
  margin: 0;
  flex: 1;
}
.sec-campaign-slider .slick-dots li button,
.sec-media .slick-dots li button {
  height: 3px;
  width: 100%;
  padding: 0;
  flex: 1;
}
.sec-campaign-slider .slick-dots li button:before,
.sec-media .slick-dots li button:before {
  height: 1px;
  width: 100%;
  border-radius: 0;
  background: var(--rd-border-light);
  opacity: 1;
  content: '';
}
.sec-campaign-slider .slick-dots li.slick-active button:before {
  background: var(--rd-gold);
}
.sec-media .slick-dots li.slick-active button:before {
  background: var(--rd-text-dark);
}

/* Slick arrows（Media: 非表示） */
.sec-media .slick-prev,
.sec-media .slick-next {
  display: none !important;
}


@media (max-width: 768px) {
.sec-campaign-slider .slick-dots {
  width: calc(100% - 40px);
}

}


/***上書き***/
/* ボタン系 a:visited 色変化防止 */
.rd-btn-pill:visited { color: var(--rd-white) !important; }
.rd-btn-outline:visited { color: var(--rd-gold) !important; }
.rd-btn-outline:hover:visited { color: var(--rd-white) !important; }
.rd-link-more:visited { color: var(--rd-text-dark) !important; }
.sec-pickup__banner:visited,
.sec-pickup__banner:visited .sec-pickup__banner-text,
.sec-pickup__banner:visited .sec-pickup__banner-about { color: var(--rd-text-dark) !important; }
.ftr--redesign a:visited { color: inherit !important; }
/* 一般リンクvisited（ヘッダー以外） */
.sec-concept a:visited,
.sec-campaign-slider a:visited,
.sec-pickup a:visited,
.sec-products a:visited,
.sec-instagram a:visited,
.sec-media a:visited,
.sec-shoplist a:visited,
.sec-banner a:visited,
.sec-campaign-auto a:visited { color: inherit !important; text-decoration: none; }

/* === Scroll Fade-in Animation === */

/* --- First View: ページ読み込み時フェードイン --- */
.sec-fv {
  opacity: 0;
  animation: fvFadeIn 3.5s ease forwards;
}
@keyframes fvFadeIn {
  to { opacity: 1; }
}

/* --- 汎用セクション フェードイン --- */
.rd-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.rd-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* --- sec-concept: 1行ずつフェードイン --- */
.sec-concept__line {
  display: block;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec-concept.is-visible .sec-concept__line { opacity: 1; transform: none; }
/* heading内 2行 (delay: 0s, 0.3s) */
.sec-concept.is-visible .sec-concept__heading .sec-concept__line:nth-child(1) { transition-delay: 0s; }
.sec-concept.is-visible .sec-concept__heading .sec-concept__line:nth-child(2) { transition-delay: 0.3s; }
/* text内 6行 (delay: 0.6s ~ 2.1s) */
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(1) { transition-delay: 0.6s; }
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(2) { transition-delay: 0.9s; }
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(3) { transition-delay: 1.2s; }
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(4) { transition-delay: 1.5s; }
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(5) { transition-delay: 1.8s; }
.sec-concept.is-visible .sec-concept__text .sec-concept__line:nth-child(6) { transition-delay: 2.1s; }
/* logo (delay: 2.4s) */
.sec-concept.is-visible .sec-concept__logo.sec-concept__line { transition-delay: 2.4s; }

/* --- sec-pickup: 段階フェードイン（PC） --- */
/* PC: img → content → banner の順 */
.sec-pickup__group .sec-pickup__block-img,
.sec-pickup__group .sec-pickup__block-content,
.sec-pickup__group .sec-pickup__banner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sec-pickup__group.is-visible .sec-pickup__block-img     { transition-delay: 0s; }
.sec-pickup__group.is-visible .sec-pickup__block-content  { transition-delay: 0.3s; }
.sec-pickup__group.is-visible .sec-pickup__banner         { transition-delay: 0.6s; }
.sec-pickup__group.is-visible .sec-pickup__block-img,
.sec-pickup__group.is-visible .sec-pickup__block-content,
.sec-pickup__group.is-visible .sec-pickup__banner {
  opacity: 1;
  transform: none;
}

/* --- sec-pickup: 段階フェードイン（SP） --- */
/* SP: img → banner → name → desc+note の順 */
@media (max-width: 768px) {
  .sec-pickup__group .sec-pickup__block-name,
  .sec-pickup__group .sec-pickup__block-desc,
  .sec-pickup__group .sec-pickup__block-note {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .sec-pickup__group.is-visible .sec-pickup__block-img     { transition-delay: 0s; }
  .sec-pickup__group.is-visible .sec-pickup__banner         { transition-delay: 0.3s; }
  .sec-pickup__group.is-visible .sec-pickup__block-name     { transition-delay: 0.6s; }
  .sec-pickup__group.is-visible .sec-pickup__block-desc,
  .sec-pickup__group.is-visible .sec-pickup__block-note     { transition-delay: 0.9s; }
  .sec-pickup__group.is-visible .sec-pickup__block-name,
  .sec-pickup__group.is-visible .sec-pickup__block-desc,
  .sec-pickup__group.is-visible .sec-pickup__block-note {
    opacity: 1;
    transform: none;
  }
  /* SPではblock-contentのdelayをリセット（個別要素でアニメするため） */
  .sec-pickup__group.is-visible .sec-pickup__block-content {
    transition-delay: 0s;
  }
}


/***追記***/
.newsList li time,
.itemPrice,
.sec-products__grid .itemList__unit .itemPrice,
.sec-products__grid .itemList__unit .itemPrice span {
  font-family: "century-gothic", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
.sec-products__grid .itemList__unit .itemPrice,
.sec-products__grid .itemList__unit .itemPrice span {
  font-size: 18px;
}
.sec-products__grid .itemList__unit .itemPrice small {
  font-family: var(--rd-font-jp) !important;
  font-size: 14px;
}

.sec-products__btn .rd-btn-stylish {
  color: var(--rd-gold) !important;
  font-family: 'Zen Old Mincho', serif !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.sec-products__btn .rd-btn-stylish::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--rd-gold);
    border-right: 1.5px solid var(--rd-gold);
    transform: rotate(45deg);
}

.sec-products .sec-products__btn .rd-btn-stylish:visited {
    color: var(--rd-gold) !important;
}


@media (max-width: 768px) {
.sec-products__btn .rd-btn-stylish {
  margin-left: 0;
  margin-right: 0;
}
.sec-products__grid .itemList__unit .itemPrice,
.sec-products__grid .itemList__unit .itemPrice span {
  font-size: 13px !important;
}
.sec-products__grid .itemList__unit .itemPrice small {
  font-size: 10px !important;
}

}



/***font 追記***/
.p-page_article__inner *,
.p-page_article__inner p,
.p-page_article__inner th,
.p-page_article__inner td,
.c-product_info,
.c-product_item__inner__title,
.category__item--view .under--text p,
.p-breadcrumbs * {
      font-family: "Noto Serif JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* ============================================================
   商品詳細ページ (sec-pd) — Figma node 1:522 準拠
   SP: 375px基準 / PC: Yunth参考2カラムレイアウト
   ============================================================ */

.sec-pd {
  --pd-gold: #c8af5b;
  --pd-gold-text: #b69821;
  --pd-gold-border: #c8b05b;
  --pd-cream: #f7efda;
  --pd-red: #d24e56;
  --pd-gray-bg: #efefef;
  --pd-notice-bg: #f6f6f6;
  --pd-border-gray: #d3d3d3;
  /* Step欄：表示中の商品カードの色（ここを変えると一括で変わる） */
  --pd-step-current-bg: #faf3e0;
  --pd-step-current-border: #e6d7a8;
  --pd-font-serif: 'Noto Serif JP', serif;
  --pd-font-mincho: 'Zen Old Mincho', serif;
  --pd-font-en: 'Cormorant Garamond', serif;
  /* 価格の数字：トップページの商品一覧（.itemPrice .price）と同じ書体に揃える */
  --pd-font-num: "century-gothic", sans-serif;
  font-family: var(--pd-font-serif);
  color: var(--rd-text-dark);
  background: #fff;
}
.sec-pd img { max-width: 100%; height: auto; }

/* --- 上部2カラム（SPは縦積み） --- */
.sec-pd__top {
  background: #fff;
}

/* ギャラリー */
.sec-pd__gallery {
  position: relative;
}
.sec-pd__gallery-slider {
  overflow: hidden;
}
.sec-pd__gallery-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* slick dots（ギャラリー内 右下） */
.sec-pd__gallery .slick-dots {
  position: absolute; /* 画像上に重ねるため */
  right: 20px;
  bottom: 14px;
  left: auto;
  width: auto;
  display: flex;
  margin: 0;
  padding: 0;
}
.sec-pd__gallery .slick-dots li {
  width: auto; height: auto;
  margin: 0 0 0 6px;
}
.sec-pd__gallery .slick-dots li button {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  background: var(--pd-cream);
  border: none;
  font-size: 0;
  opacity: .9;
}
.sec-pd__gallery .slick-dots li.slick-active button {
  background: var(--pd-gold-text);
  opacity: 1;
}
/*
  CDN配信の main06.css / style32.css が .slick-dots li button:before に
  10〜14pxの丸（PC #6C7E99・SP #D9D9D9）を出すため、
  こちらの7pxの丸と重なって「大きい・二重・青い」ドットになる。
  sec-pd内では自前のドットだけを使うので、外部の擬似要素は消す。
*/
.sec-pd__gallery .slick-dots li button::before,
.sec-pd__gallery .slick-dots li button::after,
.sec-pd__step-items .slick-dots li button::before,
.sec-pd__step-items .slick-dots li button::after {
  content: none;
}

/* 商品情報カラム（SPは下に余白を確保） */
.sec-pd__info {
  padding: 30px 20px 40px;
}

/* カテゴリ/ラベルタグ */
.sec-pd__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sec-pd__tags li {
  display: inline-flex;
  align-items: center;
  height: 23px;
  margin: 0 3px 6px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--pd-gold-border);
  color: var(--pd-gold-border);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

/* 商品名・サブコピー */
.sec-pd__name {
  margin: 15px 0 0;
  font-family: var(--pd-font-mincho);
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: .08em;
  text-align: center;
  color: var(--rd-text-dark);
}

/* 自由入力1（キャッチコピー+受賞欄） */
.sec-pd__free1 {
  margin-top: 8px;
  font-family: var(--pd-font-mincho);
  text-align: center;
}
.sec-pd__free1 .pd-subcopy {
  margin: 0;
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 20px;
}
.sec-pd__free1 .pd-award {
  margin: 18px auto 0;
  display: inline-block;
  text-align: left;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 20px;
}
.sec-pd__free1 .pd-award p {
  margin: 0 0 3px;
  display: flex;
  align-items: center;
}
.sec-pd__free1 .pd-award img.pd-award__icon {
  width: 12px;
  height: auto;
  margin-right: 7px;
  flex-shrink: 0;
}
/*
  月桂冠アイコンはCSS側で出す。
  商品側HTMLに画像パス（テーマフォルダ名を含む）を書かせずに済むので、
  テーマを入れ替えてもリンク切れしない。
*/
.sec-pd__free1 .pd-award p::before {
  content: '';
  width: 12px;
  height: 8px;
  margin-right: 7px;
  flex-shrink: 0;
  background: url("images/pd_icon_laurel.svg") no-repeat center / contain;
}
/* 旧形式（HTML側に <img class="pd-award__icon">）が残っている場合は二重に出さない */
.sec-pd__free1 .pd-award p:has(img.pd-award__icon)::before { content: none; }

/* 監修・コラボ表記（受賞歴ではないので月桂冠は付けない） */
.sec-pd__free1 .pd-credit {
  margin: 18px auto 0;
  display: inline-block;
  text-align: left;
  padding-left: 8px;
  border-left: 3px solid var(--pd-gold-border);
}
.sec-pd__free1 .pd-credit p {
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: .05em;
  color: var(--pd-gold-text);
}
.sec-pd__free1 .pd-credit .pd-credit__sub {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .03em;
  color: #777;
}

/* 補足説明（キャッチコピーの補足） */
.sec-pd__free1 .pd-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: .03em;
  color: #666;
}
/* 注釈（※1 など） */
.sec-pd__free1 .pd-annotation {
  margin: 14px 0 0;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: .02em;
  color: #888;
}
.sec-pd__free1 sup {
  font-size: 9px;
  vertical-align: super;
}

/* --- 購入エリア --- */
.sec-pd__purchase {
  margin-top: 36px;
}
.sec-pd__purchase-lead {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: .02em;
}

/* タブ（通常購入/定期購入） */
.sec-pd__ptabs {
  display: flex;
  position: relative; /* OFFバッジ基準 */
  padding-top: 15px;  /* バッジのはみ出し分 */
}
.sec-pd__ptab {
  flex: 1;
  height: 54px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-gray-bg);
  border: none;
  cursor: pointer;
  font-family: var(--pd-font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .066em;
  color: var(--rd-text-dark);
  transition: background var(--rd-transition);
}
.sec-pd__ptab:last-child { margin-right: 0; }
.sec-pd__ptab.is-active {
  background: var(--pd-cream);
}
/* ラジオ風マーク */
.sec-pd__ptab::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--pd-border-gray);
  box-sizing: border-box;
}
.sec-pd__ptab.is-active::before {
  background: radial-gradient(circle, #3d3d3d 0 5px, #fff 5.5px);
}
/* OFFバッジ（定期タブ上） */
.sec-pd__ptab-badge {
  position: absolute; /* タブ上に重ねるため */
  top: 0;
  right: 7px;
  width: 150px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-red);
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .014em;
  line-height: 1;
  pointer-events: none;
}

/* パネル（金枠ボックス、タブと吹き出し接続） */
.sec-pd__panel {
  position: relative; /* ノッチ基準 */
  margin-top: 5px;
  background: #fff;
  border: 1px solid var(--pd-gold-border);
  border-radius: 4px;
  padding: 26px 24px 20px;
}
.sec-pd__panel::before {
  content: '';
  position: absolute; /* タブ下の接続ノッチ */
  top: -7px;
  left: 25%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--pd-gold-border);
  border-top: 1px solid var(--pd-gold-border);
  transform: translateX(-50%) rotate(45deg);
  transition: left var(--rd-transition);
}
.sec-pd__panel.is-subsc::before { left: 75%; }
.sec-pd__panel.is-single-only::before { left: 50%; }

/* パネル内ペイン切替 */
.sec-pd__pane { display: none; }
.sec-pd__pane.is-active { display: block; }

/* 価格＋数量行 */
.sec-pd__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sec-pd__price {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.sec-pd__price .pd-price-tax,
.sec-pd__price .pd-price-unit {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
}
.sec-pd__price .pd-price-tax { margin-right: 8px; }
.sec-pd__price .pd-price-num {
  font-family: var(--pd-font-num);
  font-size: 27px;
  line-height: 33px;
  letter-spacing: .017em;
  margin-right: 2px;
}
.sec-pd__qty {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.sec-pd__qty-label {
  margin-right: 11px;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
}
.sec-pd__qty select,
.sec-pd__qty input[type="number"] {
  width: 68px;
  height: 38px;
  padding: 0 20px 0 14px;
  background-color: #fff;
  border: 1px solid #ece1b9;
  border-radius: 2px;
  font-family: var(--pd-font-num);
  font-size: 16px;
  color: var(--rd-text-dark);
  appearance: none;
  -webkit-appearance: none;
  /* ワイヤー準拠：上下のグレーの三角（▲▼） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='12' viewBox='0 0 9 12'%3E%3Cpath d='M4.5 0.5L8 4.5H1z' fill='%23a5a5a5'/%3E%3Cpath d='M4.5 11.5L1 7.5h7z' fill='%23a5a5a5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

/* お得テキスト */
.sec-pd__saving {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: var(--pd-red);
}

/* カートボタン行 */
.sec-pd__buy-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-pd__cart-btn {
  flex: 1;
  max-width: 228px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-gold);
  border: 1px solid #f5f5f5;
  border-radius: 100px;
  color: #fff;
  font-family: var(--pd-font-mincho);
  font-size: 14px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: opacity var(--rd-transition);
}
.sec-pd__cart-btn:hover { opacity: .8; }
.sec-pd__cart-btn img,
.sec-pd__cart-btn .pd-cart-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.sec-pd__fav-btn {
  position: relative; /* 読み上げ用テキストの絶対配置の基準（枠外へ飛ばさない） */
  width: 50px;
  height: 50px;
  margin-left: 7px;
  padding: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--pd-gold-border);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity var(--rd-transition);
}
.sec-pd__fav-btn:hover { opacity: .7; }
.sec-pd__fav-btn img { width: 20px; height: auto; }
/* EC Force標準のお気に入りボタン構造をデザインに合わせる */
.sec-pd__fav-btn .favorite-text {
  position: absolute; /* 読み上げ用にテキストは残して視覚的に隠す */
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/*
  既定（お気に入り未登録）は線のハート。
  2つのSVGは同じ viewBox / 同じパスなので、塗り・線どちらでも丸枠のど真ん中に来る。
  ボタンが inline-flex の中央寄せ、アイコンは縦横比どおりに収まる 22×19px。
*/
.sec-pd__fav-btn .favorite-icon {
  width: 22px;
  height: 19px;
  display: block;
  flex-shrink: 0;
  background-color: var(--pd-gold-border);
  -webkit-mask: url("images/pd_icon_heart_outline.svg") no-repeat center / contain;
  mask: url("images/pd_icon_heart_outline.svg") no-repeat center / contain;
}
/*
  登録済みは「ハートの中身」を塗る（ボタンの背景は白のまま）。
  EC Force本体JS(renderFavoriteAsync)が登録済みのとき u-icon--heart を付けるので
  それを判定に使う（未登録は u-icon--heart_blank）。
  初期表示はJSが走る前でも正しく出るよう data-is-favorite でも同じ指定をする。
*/
.sec-pd__fav-btn .favorite-icon.u-icon--heart,
.sec-pd__fav-btn[data-is-favorite="true"] .favorite-icon {
  -webkit-mask-image: url("images/pd_icon_heart.svg");
  mask-image: url("images/pd_icon_heart.svg");
}
/* JSが未登録に戻したときは線のハートへ確実に戻す（data-is-favorite は更新されないため） */
.sec-pd__fav-btn[data-is-favorite="true"] .favorite-icon.u-icon--heart_blank {
  -webkit-mask-image: url("images/pd_icon_heart_outline.svg");
  mask-image: url("images/pd_icon_heart_outline.svg");
}
/*
  EC Force本体JS(renderFavoriteAsync)が .favorite-icon に
  u-icon--heart / u-icon--heart_blank を後付けするため、
  bundle.css のアイコンフォントのハートが ::before で重なって二重表示になる。
  ここではSVGマスクのハートを使うので、フォント側のグリフは出さない。
*/
.sec-pd__fav-btn .favorite-icon::before,
.sec-pd__fav-btn .favorite-icon::after {
  content: none;
}
/*
  2026-09-01 変更：クリック時にボタンの背景を塗る仕様を廃止し、
  ハートそのものが金色で塗りつぶされる仕様にした（背景は常に白）。
*/

/* 在庫切れ・再入荷ボタン */
.sec-pd__pane #btn-stock-waiting-list {
  margin-top: 22px;
  display: block;
  text-align: center;
}

/* --- 定期購入の説明（自由入力4）: 定期購入タブのカートボタンの下 --- */
.sec-pd__subsc-desc {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #ece1b9;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 12px;
  line-height: 19px;
  color: var(--rd-text-dark);
}
.sec-pd__subsc-desc > *:first-child { margin-top: 0; }
.sec-pd__subsc-desc .pd-sub-label {
  display: inline-block;
  margin: 0 0 6px;
  font-family: var(--pd-font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--pd-gold-text);
}
.sec-pd__subsc-desc .pd-sub-copy {
  margin: 0 0 12px;
  font-family: var(--pd-font-mincho);
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .04em;
}
/* 通常価格／定期便価格の比較 */
.sec-pd__subsc-desc .pd-sub-prices {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.sec-pd__subsc-desc .pd-sub-price {
  flex: 1;
  padding: 10px 12px;
  background: var(--pd-notice-bg);
  border-radius: 2px;
  text-align: center;
}
.sec-pd__subsc-desc .pd-sub-price--main {
  background: var(--pd-cream);
}
.sec-pd__subsc-desc .pd-sub-price-head {
  margin: 0 0 4px;
  font-size: 11px;
  line-height: 16px;
  color: #707070;
}
.sec-pd__subsc-desc .pd-sub-price--main .pd-sub-price-head { color: var(--pd-gold-text); }
.sec-pd__subsc-desc .pd-sub-price-num {
  margin: 0;
  font-family: var(--pd-font-num);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: .017em;
}
.sec-pd__subsc-desc .pd-sub-price-num small {
  margin-left: 2px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 11px;
}
.sec-pd__subsc-desc .pd-sub-saving {
  margin: 8px 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: var(--pd-red);
  text-align: center;
}
/* 箇条書き */
.sec-pd__subsc-desc .pd-sub-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.sec-pd__subsc-desc .pd-sub-list li {
  position: relative; /* 先頭の金色ドットの基準 */
  margin: 0 0 5px;
  padding-left: 13px;
}
.sec-pd__subsc-desc .pd-sub-list li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pd-gold-border);
}
.sec-pd__subsc-desc .pd-sub-note {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 17px;
  color: #707070;
}
.sec-pd__subsc-desc .pd-sub-link {
  margin: 10px 0 0;
  text-align: right;
}
.sec-pd__subsc-desc .pd-sub-link a {
  font-family: var(--pd-font-mincho);
  font-size: 12px;
  color: var(--rd-text-dark);
  text-decoration: none;
}
.sec-pd__subsc-desc .pd-sub-link a::after {
  content: '›';
  margin-left: 4px;
  color: var(--pd-gold-text);
}

/* --- 重要なお知らせボックス（自由入力2） --- */
.sec-pd__notice {
  margin-top: 20px;
}
.sec-pd__notice .pd-notice-box {
  background: var(--pd-notice-bg);
  border-radius: 2px;
  padding: 16px;
}
.sec-pd__notice .pd-notice-head {
  display: flex;
  align-items: center;
}
.sec-pd__notice .pd-notice-label {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  background: #fff;
  border: 0.5px solid #b7b7b7;
  font-size: 11px;
  letter-spacing: .027em;
  white-space: nowrap;
}
.sec-pd__notice .pd-notice-date {
  margin-left: 8px;
  font-size: 10px;
  line-height: 14px;
}
.sec-pd__notice .pd-notice-title {
  margin: 9px 0 0;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--pd-gold-border);
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  color: var(--pd-gold-text);
}
.sec-pd__notice .pd-notice-body {
  margin: 8px 0 0;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 12px;
  line-height: 17px;
}
.sec-pd__notice .pd-notice-link {
  margin: 9px 0 0;
  text-align: right;
}
.sec-pd__notice .pd-notice-link a {
  font-family: var(--pd-font-mincho);
  font-size: 10px;
  color: var(--rd-text-dark);
  text-decoration: none;
}
.sec-pd__notice .pd-notice-link a::after {
  content: '›';
  margin-left: 4px;
  color: var(--pd-gold-text);
}

/* --- 商品説明（管理画面の「商品説明」欄） --- */
.sec-pd__description {
  margin-top: 24px;
  font-family: var(--pd-font-serif);
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .03em;
  color: var(--rd-text-dark);
}
.sec-pd__description > *:first-child { margin-top: 0; }
.sec-pd__description > *:last-child { margin-bottom: 0; }
.sec-pd__description p {
  margin: 0 0 12px;
  /* 外部CSS(style32.css)のゴシック指定に負けないよう明示する */
  font-family: var(--pd-font-serif);
  font-size: 13px;
  line-height: 23px;
}
.sec-pd__description ul,
.sec-pd__description ol {
  margin: 0 0 12px;
  padding-left: 1.2em;
}
.sec-pd__description img { display: block; max-width: 100%; height: auto; }

/* --- タレントビジュアル1 ---
   2026-09-01 変更：ページ下部と同じく背景として奥に固定表示（パララックス）にした。
   マークアップは .sec-pd__parallax--top に統一したため .sec-pd__visual は未使用。 */

/* --- 自由記入欄（LP画像・YouTube 自由入力5〜10） --- */
.sec-pd__free {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}
.sec-pd__free-block img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* YouTube埋め込み：標準iframeタグを貼るだけでレスポンシブ化 */
.sec-pd__free-block iframe[src*="youtube.com"],
.sec-pd__free-block iframe[src*="youtu.be"] {
  display: block;
  width: calc(100% - 40px);
  max-width: 750px;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 30px auto;
  border: 0;
}

/* --- タレントビジュアル（パララックス固定表示・ページ内2箇所） --- */
/* clip-path窓方式: fixed画像を帯の中だけにクリップして固定表示する */
.sec-pd__parallax {
  position: relative;
  height: 542px;
  clip-path: inset(0); /* fixed画像をこの枠内にクリップ */
  overflow: hidden;
}
/* 1枚目（自由記入欄の上）は購入エリアとの間に余白を置く */
.sec-pd__parallax--top {
  margin-top: 48px;
}
.sec-pd__parallax img {
  position: fixed; /* パララックス固定表示のため */
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* --- Step セクション --- */
.sec-pd__step {
  padding: 60px 0 40px;
  /* 外部CSS(style32.css)の section { margin-bottom: 60px/100px } を打ち消す */
  margin-bottom: 0;
  background: #fff;
}
.sec-pd__step-title {
  margin: 0;
  font-family: var(--pd-font-en);
  font-weight: 500;
  font-size: 32px;
  color: var(--pd-gold-text);
  text-align: center;
}
.sec-pd__step-heading {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .056em;
  text-align: center;
}
.sec-pd__step-text {
  margin: 12px auto 0;
  padding: 0 20px;
  /* 改行を入れずに1文で流すため、行が間延びしない幅に収める */
  max-width: 640px;
  /* 見出し（sec-pd__step-heading）と揃えて明朝にする */
  font-family: var(--pd-font-serif);
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}
.sec-pd__step-items {
  margin-top: 42px;
  padding-left: 20px;
}
.sec-pd__step-card {
  position: relative; /* カード間矢印の基準 */
  /* SPのカード幅：一番長い商品名（ルミナイトヴェールプロEXクリーム）が2行に収まる幅 */
  width: 178px;
  height: 100%;
  margin-right: 41px;
  background: #fff;
  border: 1px solid var(--pd-cream);
  padding: 19px 10px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--rd-text-dark);
  display: flex;
  flex-direction: column;
}
/* slickのスライド高さを揃える */
.sec-pd__step-items .slick-track {
  display: flex;
  align-items: stretch;
}
.sec-pd__step-items .slick-slide {
  height: auto;
}
.sec-pd__step-items .slick-slide > div {
  height: 100%;
}
.sec-pd__step-card::after {
  content: '';
  position: absolute; /* カード間の金矢印 */
  top: 50%;
  right: -27px;
  width: 9px;
  height: 14px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='14' viewBox='0 0 9 14'%3E%3Cpath d='M1.5 1l6 6-6 6' fill='none' stroke='%23b69821' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
}
.sec-pd__step-items .slick-slide:last-child .sec-pd__step-card::after,
.sec-pd__step-items .sec-pd__step-card:last-child::after { content: none; }
/* 表示中の商品カード（薄ゴールド） */
.sec-pd__step-card.is-current {
  background: var(--pd-step-current-bg);
  border-color: var(--pd-step-current-border);
  cursor: default;
}
/* 表示中の商品は遷移先が自分自身のためボタンを出さない（高さ揃えのため領域は残す） */
.sec-pd__step-card.is-current .pd-step-btn {
  visibility: hidden;
}
.sec-pd__step-card .pd-step-label {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--pd-gold-text);
}
.sec-pd__step-card .pd-step-name {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .06em;
  min-height: 32px;
}
.sec-pd__step-card .pd-step-img {
  width: 121px;
  height: 121px;
  margin: 8px auto auto;
  object-fit: contain;
  display: block;
}
.sec-pd__step-card .pd-step-btn {
  width: 84px;
  height: 22px;
  margin: 12px auto 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-gold);
  border: 1px solid #f5f5f5;
  border-radius: 100px;
  color: #fff;
  font-family: var(--pd-font-mincho);
  font-size: 10px;
  letter-spacing: .015em;
  /*
    外部CSS(style32.css)の line-height と明朝のベースラインで文字が下寄りになるため、
    行の高さを1に固定し、下側に1pxだけ余白を持たせて光学的に中央へ寄せる
  */
  line-height: 1;
  padding-bottom: 1px;
  box-sizing: border-box;
}
/* Step slick dots */
.sec-pd__step-items .slick-dots {
  position: static;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  padding: 0;
}
.sec-pd__step-items .slick-dots li {
  width: auto; height: auto;
  margin: 0 4px;
}
.sec-pd__step-items .slick-dots li button {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  background: var(--pd-cream);
  border: none;
  font-size: 0;
}
.sec-pd__step-items .slick-dots li.slick-active button {
  background: var(--pd-gold-text);
}

/* --- アコーディオン（自由入力3） --- */
.sec-pd__accordion {
  /* FAQ/CONTACT削除によりページ最下部になるため、下余白をここで確保する */
  padding: 50px 20px 60px;
  background: #fff;
}
.sec-pd__accordion-inner {
  max-width: 750px;
  margin: 0 auto;
}
.sec-pd__accordion .accordion_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sec-pd__accordion .accordion_item {
  margin-bottom: 12px;
}
/* 最後の項目の余白はセクション側で持つ（FAQ欄との間隔をFigma通り48pxにするため） */
.sec-pd__accordion .accordion_item:last-child {
  margin-bottom: 0;
}
.sec-pd__accordion .accordion_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 51px;
  padding: 14px 16px 14px 24px;
  background: #fff;
  border: 1px solid var(--pd-border-gray);
  border-radius: 1px;
  font-family: var(--pd-font-serif);
  font-size: 14px;
  color: var(--rd-text-dark);
  letter-spacing: .05em;
  cursor: pointer;
  margin: 0;
}
.sec-pd__accordion .accordion_button::after {
  content: '＋';
  font-weight: 700;
  font-size: 16px;
  color: #707070;
  flex-shrink: 0;
  margin-left: 10px;
}
.sec-pd__accordion .accordion_button.active::after {
  content: '―';
}
/* 商品側HTMLに含まれる旧アイコン（±のSVG）はデザイン上の記号と重複するため隠す */
.sec-pd__accordion .accordion_button .plus,
.sec-pd__accordion .accordion_button .minus,
.sec-pd__accordion .accordion_button svg {
  display: none;
}
.sec-pd__accordion .accordion_content {
  display: none;
  padding: 20px 0 8px;
}
.sec-pd__accordion .accordion_content p,
.sec-pd__accordion .accordion_text {
  margin: 0;
  /* 外部CSS(style32.css)のゴシック指定に負けないよう !important */
  font-family: var(--pd-font-serif) !important;
  font-size: 12px;
  line-height: 22px;
  color: var(--rd-text-dark);
}
.sec-pd__accordion .accordion_text * {
  font-family: var(--pd-font-serif) !important;
}

/* --- FAQ / CONTACT --- */
.sec-pd__contact {
  padding: 48px 20px 32px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.sec-pd__contact-btn {
  position: relative; /* 右下矢印の基準 */
  width: 160px;
  height: 120px;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pd-cream);
  text-decoration: none;
  color: var(--rd-text-dark);
  /* 外部CSSで p が幅100%になるため align-items ではなく text-align で中央寄せする */
  text-align: center;
  transition: opacity var(--rd-transition);
}
.sec-pd__contact-btn:last-child { margin-right: 0; }
.sec-pd__contact-btn:hover { opacity: .75; }
/* 行の高さはFigmaの実測値で固定する（外部CSSの p { line-height } の影響を受けないため） */
.sec-pd__contact-btn .pd-contact-en {
  margin: 0;
  font-family: var(--pd-font-en);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: .01em;
  color: var(--rd-text-dark);
}
.sec-pd__contact-btn .pd-contact-jp {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 17px;
}
.sec-pd__contact-btn::after {
  content: '';
  position: absolute; /* 右下の丸矢印 */
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23b69821'/%3E%3Cpath d='M8 6l4 4-4 4' fill='none' stroke='%23fff' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* --- 外部CSS(style32.css / itemDetail05.css)の上書き ---
   これらはCDN配信でテーマから編集できず、redesign.cssより後に読み込まれるため、
   ID+クラスの詳細度と !important で確実に上書きする */
#btn-add.sec-pd__cart-btn {
  background: var(--pd-gold) !important;
  height: 50px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
/* style32.css が #btn-add::before で付ける白い矢印を消す */
#btn-add.sec-pd__cart-btn::before {
  content: none;
}

/* --- EC Force既存要素の整理（商品詳細ページ内のみ） --- */
/* 旧テーマのラッパー余白を解除して全幅セクションを成立させる */
#product-show-view .p-product_content {
  padding: 0;
}
#product-show-view .l-container__row {
  margin-right: 0;
  margin-left: 0;
}
#product-show-view #add_product_async_view {
  padding-bottom: 0;
}
.sec-pd .p-product_alert { margin: 0; }
.sec-pd #option_types:empty { display: none; }
/*
  バリエーション選択（EC Force本体JSが #option_types に描画）を新デザインに合わせる。
  Bootstrapのグリッドクラス(row / col-md-*)が付くので、こちらでflexに組み替える。
*/
.sec-pd #option_types { margin-bottom: 16px; }
.sec-pd #option_types .option_type {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
.sec-pd #option_types .option_type > label {
  width: auto;
  margin: 0 11px 0 0;
  padding: 0;
  flex-shrink: 0;
  font-family: var(--pd-font-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
  text-align: left;
}
.sec-pd #option_types .option_type > div {
  width: auto;
  padding: 0;
  flex: 1;
}
.sec-pd #option_types select {
  width: 100%;
  height: 38px;
  padding: 0 26px 0 14px;
  background-color: #fff;
  border: 1px solid #ece1b9;
  border-radius: 2px;
  font-family: var(--pd-font-serif);
  font-size: 14px;
  color: var(--rd-text-dark);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='12' viewBox='0 0 9 12'%3E%3Cpath d='M4.5 0.5L8 4.5H1z' fill='%23a5a5a5'/%3E%3Cpath d='M4.5 11.5L1 7.5h7z' fill='%23a5a5a5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
/*
  bundle.css の .c-product_info__form__variant > div > div:after が
  アイコンフォントの矢印を重ねてくるので消す（こちらの三角だけを使う）
*/
.sec-pd #option_types.c-product_info__form__variant > div > div::after {
  content: none;
}

/* トップページのスクレイピング用に保持している旧価格表記（非表示） */
.sec-pd__legacy-price { display: none; }
/* EC Force標準JS用の数量増減ボタン（新デザインはセレクトを使用） */
.sec-pd__legacy-qtybtn { display: none; }
/* SKU詳細（EC Force JSが挿入・新デザインでは未使用） */
.sec-pd__sku-detail { display: none; }

/* バッジ */
.sec-pd__badges {
  margin-top: 12px;
}
.sec-pd__badges .c-cart_item__badges {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sec-pd__badges .c-badge {
  margin: 0 6px 6px 0;
  padding: 3px 10px;
  background: var(--pd-cream);
  font-size: 11px;
  color: var(--pd-gold-text);
}

/* 数量固定表示（頒布会商品） */
.sec-pd__qty-fixed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 38px;
  border: 1px solid #ece1b9;
  border-radius: 2px;
  font-family: var(--pd-font-num);
  font-size: 16px;
}

/* キャンペーンカウントダウン */
.sec-pd__campaign:not(:empty) {
  margin-top: 14px;
  font-size: 12px;
  color: var(--pd-red);
}
.sec-pd__campaign .c-product_info__campaign-container {
  display: flex;
  align-items: center;
}
.sec-pd__campaign .c-product_info__campaign-icon img {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

/* 再入荷お知らせ / 予約注記 */
.sec-pd__waiting-btn {
  margin-top: 22px;
  display: block;
  height: 50px;
  line-height: 50px;
  background: var(--pd-gold);
  border-radius: 100px;
  color: #fff;
  font-family: var(--pd-font-mincho);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}
.sec-pd__preorder-note {
  margin: 14px 0 0;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.sec-pd__preorder-note span { display: block; }

/* 定期購入ブロック内のフォーム余白リセット */
.sec-pd__subsc form { margin: 0; }
.sec-pd__subsc + .sec-pd__subsc { margin-top: 24px; }

/* ============================================================
   商品詳細 PC (min-width: 769px) — Yunth参考2カラム
   ============================================================ */
@media (min-width: 769px) {
  .sec-pd__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    column-gap: 70px;
    max-width: var(--rd-container-width);
    margin: 0 auto;
    padding: 50px 40px 70px;
    align-items: start;
  }
  .sec-pd__gallery {
    position: sticky; /* Yunth同様 左カラム固定 */
    top: calc(var(--rd-header-height) + 20px);
  }
  .sec-pd__info {
    padding: 0;
  }
  .sec-pd__tags { justify-content: flex-start; }
  .sec-pd__tags li { margin: 0 6px 6px 0; }
  .sec-pd__name {
    margin-top: 18px;
    text-align: left;
    font-size: 23px;
    line-height: 1.5;
  }
  .sec-pd__free1 { text-align: left; }
  .sec-pd__free1 .pd-award { margin-top: 20px; }

  .sec-pd__parallax--top { margin-top: 70px; }

  .sec-pd__free { padding-top: 70px; padding-bottom: 70px; }
  .sec-pd__free-block img {
    max-width: 750px;
  }

  .sec-pd__accordion { padding-top: 70px; padding-bottom: 90px; }

  .sec-pd__parallax { height: 600px; }

  .sec-pd__step { padding: 90px 0 60px; }
  .sec-pd__step-title { font-size: 40px; }
  .sec-pd__step-heading { margin-top: 20px; font-size: 18px; }
  .sec-pd__step-text {
    margin-top: 16px;
    padding: 0 20px;
    max-width: 860px;
    font-size: 13px;
    text-align: center;
  }
  /* PCはスライダーなし横並び */
  .sec-pd__step-items {
    margin-top: 50px;
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  .sec-pd__step-card {
    width: 190px;
    margin-right: 54px;
  }
  .sec-pd__step-card:last-child { margin-right: 0; }
  .sec-pd__step-card::after { right: -34px; }
  /* 5枚以上のグループは画面幅に収まるようカードと余白を詰める */
  .sec-pd__step-items--5 .sec-pd__step-card,
  .sec-pd__step-items--6 .sec-pd__step-card {
    width: 168px;
    margin-right: 38px;
    padding: 16px 8px 14px;
  }
  .sec-pd__step-items--5 .sec-pd__step-card::after,
  .sec-pd__step-items--6 .sec-pd__step-card::after { right: -25px; }
  .sec-pd__step-items--5 .sec-pd__step-card .pd-step-img,
  .sec-pd__step-items--6 .sec-pd__step-card .pd-step-img {
    width: 108px;
    height: 108px;
  }
  .sec-pd__step-items--5 .sec-pd__step-card .pd-step-name,
  .sec-pd__step-items--6 .sec-pd__step-card .pd-step-name {
    font-size: 11px;
    letter-spacing: .02em;
  }

  .sec-pd__contact { padding: 70px 20px 80px; }
  .sec-pd__contact-btn {
    width: 300px;
    height: 140px;
    margin-right: 20px;
  }
  .sec-pd__contact-btn::after { right: 12px; bottom: 12px; }
}
