/* ===========================
   Osechi – 2Col Wide Section
   =========================== */

:root{
  --osechi-gold: #d0a933;   /* ご指定の金色 */
  --osechi-bg:   #0a0a0a;
  --osechi-text: #ffffff;
}

.osechi-two{
  color: var(--osechi-text);
  background:
    radial-gradient(1200px 420px at 18% 0, rgba(208,169,51,.35), transparent 60%),
    #000;
  overflow: hidden;
}

/* 見出しバー */
.osechi-two__bar{
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: end;
  gap: 16px;
  padding: clamp(16px,3vw,28px) clamp(16px,4vw,40px) 0;
}
.osechi-two__label{
  color: var(--osechi-gold);
  border-left: 2px solid var(--osechi-gold);
  padding-left: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.2;
}
.osechi-two__title{
  margin: 0;
  font-size: clamp(18px,2.2vw,24px);
  line-height: 1.65;
  text-shadow: 0 1px 0 rgba(0,0,0,.4);
}

/* 2カラム本体 */
.osechi-two__grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,440px);
  gap: clamp(16px,3vw,28px);
  align-items: stretch;
  padding: clamp(16px,3vw,28px) clamp(16px,4vw,40px) clamp(24px,5vw,56px);
}

.osechi-two__photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右パネル（メニュー） */
.osechi-two__menu{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(208,169,51,.35);
  border-radius: 14px;
  padding: clamp(14px,2.6vw,22px);
}
.osechi-two__menu::before{
  content:"";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(45deg,
    rgba(208,169,51,.6),
    transparent 40% 60%,
    rgba(208,169,51,.25));
  opacity: .18;
}

/* ベース（横書き用）—必要に応じて他セクションで使用 */
.osechi-list{
  counter-reset: nozoki;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.osechi-list li{
  counter-increment: nozoki;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 6px 8px 2px;
  border-bottom: 1px dashed rgba(208,169,51,.35);
}
.osechi-list li:last-child{ border-bottom: 0; }
.osechi-list li::before{
  content: counter(nozoki);
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  font-weight: 700;
  border-radius: 4px;
  line-height: 1;
  color: var(--osechi-gold);
  background: rgba(208,169,51,.18);
  border: 1px solid rgba(208,169,51,.45);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* ===== 縦書き 2列メニュー（ここが重要） ===== */
.osechi-list--tategaki{
  counter-reset: nozoki;
  /* ベースの display:grid を打ち消す */
  display: block;               /* ← これで column-count が効く */
  /* 縦書き */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* 2列（=縦組みの段が2つ） */
  column-count: 2;
  column-gap: 28px;
  /* 文字密度 */
  line-height: 1.9;
  margin: 0;
  padding: 0;
  list-style: none;
}
.osechi-list--tategaki li{
  counter-increment: nozoki;
  display: block;               /* ベースの grid を上書き */
  border-bottom: none;          /* 罫線はオフ（必要なら好みで） */
  break-inside: avoid;
  padding: 4px 0;
  position: relative;
}
.osechi-list--tategaki li::before{
  content: counter(nozoki);
  writing-mode: horizontal-tb;  /* 数字は横組で見やすく */
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  margin-block-end: 6px;
  border-radius: 4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--osechi-gold);
  background: rgba(208,169,51,.18);
  border: 1px solid rgba(208,169,51,.45);
  box-shadow: 0 1px 0 rgba(0,0,0,.2);
}

/* 注釈 */
.osechi-kome{
  font-size: 12px;
  opacity: .78;
  margin-top: 12px;
}

/* レスポンシブ */
@media (max-width: 960px){
  .osechi-two__bar{ grid-template-columns: 1fr; gap: 6px; }
  .osechi-two__grid{ grid-template-columns: 1fr; }
  .osechi-two__menu{ order: 2; }
  .osechi-two__photo{ order: 1; }
}

/* スマホで読みやすく：1列にしたい場合（常に2列で良ければ削除） */
@media (max-width: 560px){
  .osechi-list--tategaki{ column-count: 1; }
}

/* ===========================
   Gold Flakes Background (cb_content_3 専用)
   =========================== */

:root{
  --gold: #d0a933; /* ご指定の金色 */
}

.goldflakes-wrap{
  position: relative;
  overflow: hidden;
}
.goldflakes-wrap .content{
  position: relative;
  z-index: 1; /* テキストは前面に */
}
.goldflakes{
  position: absolute;
  inset: 0;
  z-index: 0;           /* 背景に */
  pointer-events: none; /* クリック妨げない */
}

/* 個々の金箔 */
.goldflake{
  position: absolute;
  top: -12vh;           /* 画面上から出現 */
  left: 0;
  width: var(--sz, 12px);
  height: var(--sz, 12px);
  opacity: 0;
  will-change: transform, opacity, filter;
  mix-blend-mode: screen;
  filter: saturate(1.2) contrast(1.1);
  /* 金箔のテクスチャっぽい輝き（簡易） */
  background:
    conic-gradient(from 20deg,
      #f4e7a5 0 20%,
      var(--gold) 20% 35%,
      #b1891b 35% 55%,
      #e2c86b 55% 70%,
      #a57d14 70% 85%,
      #f7f1c0 85% 100%);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(208,169,51,.25);

  /* アニメーション */
  animation:
    gold-fall var(--dur, 16s) linear var(--delay, 0s) infinite,
    gold-twinkle var(--tw, 2400ms) ease-in-out infinite alternate;
}

/* 形のバリエーション（軽いランダム感） */
.goldflake.shape-2 { clip-path: polygon(12% 8%, 88% 0, 92% 48%, 6% 92%); }
.goldflake.shape-3 { clip-path: polygon(0 12%, 82% 8%, 100% 90%, 18% 100%); }
.goldflake.shape-4 { clip-path: polygon(10% 0, 100% 26%, 90% 100%, 0 76%); }
.goldflake.shape-5 { clip-path: polygon(0 0, 100% 10%, 80% 100%, 10% 90%); }




/* 落下（回転も含めて一括で） */
@keyframes gold-fall{
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg);   opacity: 0; }
  5%   { opacity: .9; }
  100% { transform: translate3d(var(--drift, 40px), 115vh, 0) rotate(360deg); opacity: .95; }
}

/* きらめき */
@keyframes gold-twinkle{
  0%,100% { filter: saturate(1.1) brightness(1); }
  50%     { filter: saturate(1.3) brightness(1.25); }
}

/* 低速端末・アクセシビリティ */
@media (prefers-reduced-motion: reduce){
  .goldflake{ animation: none; opacity: .18; }
}


#footer_top_inner
 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 35%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}


/* ===== Hero KV（左テキスト／右KV） ===== */
.hero-kv{ position: relative; width:100%; height:100%; z-index:5; }
#header_slider .caption{ position:absolute; inset:0; display:flex; align-items:center; top:30%} /* TCDの位置取りを上書き */

.hero-kv__inner{
  width:min(1200px,100%);
  margin:0 auto;
  padding: clamp(16px,5vw,0px);
  display:grid;
  gap:clamp(16px,4vw,48px);
  grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  align-items:center;
}

/* 左パネル */
.hero-kv__panel{
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,.25);
  border:1px solid rgba(208,169,51,.55); /* --osechi-gold を使うなら差替えOK */
  border-radius:14px;
  padding: clamp(16px,3vw,28px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  color:#fff;
}
.hero-kv__eyebrow{ color:#d0a933; letter-spacing:.2em; font-weight:700; margin:0 0 10px; font-size:1.3em;}
.hero-kv__title{ margin:0 0 10px; font-size:clamp(28px,4.2vw,44px); line-height:1.25; font-weight:800; text-shadow:0 2px 0 rgba(0,0,0,.35); }
.hero-kv__lead{ margin:8px 0 16px; line-height:1.8; opacity:.92; }
.hero-kv__cta{ display:flex; flex-wrap:wrap; gap:10px; }
.btn-gold{
  display:inline-block; padding:12px 18px; border-radius:10px;
  background: linear-gradient(90deg,#f7eeb8,#d0a933 50%,#b88e1c);
  color:#231800; font-weight:900; letter-spacing:.1em; text-decoration:none;
  border:1px solid #dbc06a; box-shadow:0 12px 28px rgba(208,169,51,.35), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-ghost{
  display:inline-block; padding:12px 18px; border-radius:10px;
  border:1px solid rgba(255,255,255,.45); color:#fff; text-decoration:none;
  background: rgba(255,255,255,.06);
}

/* 右フレーム（SVG 1枚） */
.hero-kv__frame{
  position:relative;
  border-radius:14px;
  min-height: clamp(260px,40vw,560px);
  display:grid; place-items:center;
}
.hero-kv__img{
  width:90vh; height:100%;
  object-fit: contain;       /* SVGを綺麗に収める */
  border-radius:12px;
}

/* SP：画像→テキストの順に縦積み */
@media (max-width: 960px){
  .hero-kv__inner{ grid-template-columns:1fr; }
  .hero-kv__right{ order:1; }
  .hero-kv__left { order:2; }
  .hero-kv__frame{ min-height: clamp(220px,56vw,440px); }
}

/* ヘッダーは最前面（もし金箔やオーバーレイが被る場合に備え） */
#header{ position:relative; z-index:10000; }


/* ===== ラベル（チップ） ===== */
.hero-kv__labels{
  display:flex; flex-wrap:wrap; gap:10px 10px;
  margin: 8px 0 25px; padding:0; list-style:none;
}
.hero-kv__label{
  padding:6px 12px;
  font-size:18px; font-weight:800; letter-spacing:.08em;
  color:#d0a933;
  background: rgba(208,169,51,.12);
  border:1px solid rgba(208,169,51,.42);
  border-radius:999px;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}


/* ===== 価格ブロック ===== */
.hero-kv__price{ margin: 6px 0 25px; }
.hero-kv__price .price-main{
  align-items:baseline; gap:8px;
}
.hero-kv__price .price-num{
  font-size: clamp(34px,5.4vw,56px);
  font-weight: 900;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #fff, #e6e6e6);
  -webkit-background-clip:text; background-clip:text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
  position: relative;
}
.hero-kv__price .price-num::after{
  content:""; position:absolute; inset:0;
  mix-blend-mode: screen; opacity:.35; pointer-events:none;
}
.hero-kv__price .price-yen{ font-weight:800; font-size: clamp(18px,2.2vw,22px); }
.hero-kv__price .price-tax{ color: rgba(255,255,255,.8); font-size: 13px; }

.hero-kv__price .price-sub{
  margin-top: 15px;
  font-size: 13px; letter-spacing:.02em;
  color: rgba(255,255,255,.9);
}
.hero-kv__price .price-sub .em{
  color:#f2d675; font-weight:600;
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
  font-size: 1.3em;
}

/* SP最適化：中央寄せ */
@media (max-width: 960px){
  .hero-kv__panel{ text-align:center; }
  .hero-kv__labels{ justify-content:center; }
  .hero-kv__price .price-main{ justify-content:center; }
  .hero-kv__cta{ justify-content:center; }
}


/* 既存の hero-kv スタイルの末尾 or style.css の末尾に追記 */

/* PC：左右2カラム（そのまま） */

/* SP：右KVを非表示、左だけ中央寄せ */
@media (max-width: 960px){
  .hero-kv__inner{
    grid-template-columns: 1fr;
  }
  .hero-kv__right{
    display: none;                 /* ← キーヴィジュアル非表示 */
  }
  .hero-kv__panel{
    margin-inline: auto;
    text-align: center;
    max-width: 720px;
    padding: 16px 18px;
  }
  .hero-kv__labels{ justify-content: center; }
  .hero-kv__price .price-main{ justify-content: center; }
  .hero-kv__cta{ justify-content: center; }
}

/* さらに狭い端末でのタイポ微調整（任意） */
@media (max-width: 560px){
  .hero-kv__title{ font-size: clamp(22px, 6vw, 28px); }
  .hero-kv__lead{ line-height: 1.7; }
}

.design_button {
    display: inline-block;
    color: #ffffff !important;
    border-color: rgb(255 255 255);
    background: #846a3f;
}

/*口コミ*/
:root{
  --gold:#d0a933;
  --ink:#fff;
  --line:rgba(208,169,51,.38);
}

.osechi-reviews{
  color:var(--ink);
  padding:0 16px;
  background: #000;
  height: 300px;
}

.reviews-head{
  display:flex; flex-wrap:wrap; align-items:end; gap:12px;
  margin-bottom:14px;
}
.reviews-title{
  margin:0; font-size: clamp(20px,3vw,26px);
  line-height:1.4; padding-left:12px; border-left:3px solid var(--gold);
  text-shadow:0 1px 0 rgba(0,0,0,.45);
}
.reviews-agg{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.reviews-agg .agg-num strong{ font-size:20px; }
.reviews-agg .agg-num small{ opacity:.8; }

/* 星（フォント非依存） */
.stars{ position:relative; display:inline-block; font-size:18px; line-height:1; letter-spacing:2px; }
.stars.small{ font-size:14px; letter-spacing:1px; }
.stars__bg{ color:#555; }
.stars__fg{
  color:var(--gold); position:absolute; inset:0 auto 0 0;
  overflow:hidden; white-space:nowrap;
}

/* トラック：PC=グリッド、SP=横スクロール */
.reviews-track{
  display:grid; grid-template-columns:repeat(12,1fr); gap:16px;
}
@media (max-width: 960px){
  .reviews-track{
    display:flex; gap:12px; overflow:auto; scroll-snap-type:x mandatory;
    padding:4px 2px; -webkit-overflow-scrolling:touch;
  }
  .reviews-track::-webkit-scrollbar{ display:none; }
}

/* カード */
.review-card{
  grid-column:span 4;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
@media (max-width: 960px){ .review-card{ min-width: 78%; scroll-snap-align:center; } }
@media (max-width: 560px){ .review-card{ min-width: 88%; } }

.rev-head{
  display:grid; grid-template-columns:auto 1fr auto; gap:10px; align-items:center; margin-bottom:8px;
}
.avatar{
  width:38px; height:38px; border-radius:50%;
  display:grid; place-items:center; font-weight:900;
  color:#201400; background:linear-gradient(90deg,#f7eeb8,var(--gold));
  border:1px solid #dbc06a; box-shadow:0 6px 18px rgba(208,169,51,.35);
}
.meta .name{ font-weight:700; }
.meta time{ font-size:12px; color:#cfcfcf; }
.badge{
  display:inline-block; margin-left:6px; font-size:11px; font-weight:800; letter-spacing:.04em;
  color:var(--gold); background:rgba(208,169,51,.10);
  border:1px solid var(--line); border-radius:999px; padding:2px 6px;
}

.rev-body{
  margin:0; line-height:1.8; color:#eee;
  position:relative; padding-left:18px;
}
.rev-body::before{
  content:"“"; position:absolute; left:0; top:-4px; color:var(--gold);
  font-size:20px; font-weight:900; line-height:1;
}

/* CTA */
.reviews-cta{ display:flex; gap:10px; justify-content:center; margin-top:16px; }
.btn-gold{
  display:inline-block; padding:12px 18px; border-radius:10px;
  background: linear-gradient(90deg,#f7eeb8,var(--gold) 50%,#b88e1c);
  color:#231800; font-weight:900; letter-spacing:.1em; text-decoration:none;
  border:1px solid #dbc06a; box-shadow:0 12px 28px rgba(208,169,51,.35), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-ghost{
  display:inline-block; padding:12px 18px; border-radius:10px;
  border:1px solid rgba(255,255,255,.45); color:#fff; text-decoration:none;
  background: rgba(255,255,255,.06);
}

/* ヒーローのタイトルだけ太めの明朝体に */
.hero-kv__title{
  font-family: "Noto Serif JP","Shippori Mincho","Hiragino Mincho ProN","Hiragino Mincho Pro","Yu Mincho","MS PMincho",serif;
  font-weight: 900;              /* しっかり太く */
  letter-spacing: .02em;         /* ほんの少し字間を詰める/広げるならここで調整 */
  font-feature-settings: "palt"; /* プロポーショナル和文（可読性UP） */
  text-rendering: optimizeLegibility;
}

/* ▼太めの明朝体（Noto Serif JP＋端末明朝のフォールバック） */
:root{
  --mincho: "Noto Serif JP","Shippori Mincho","Hiragino Mincho ProN",
            "Hiragino Mincho Pro","Yu Mincho","MS PMincho",serif;
}

/* 参の重（ボックスの見出し）— 他にも使われる class なので、ボックス内に限定 */
.cb_box_content .title.rich_font_1{
  font-family: var(--mincho);
  font-weight: 900;                 /* しっかり太く */
  letter-spacing: .02em;
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

/* 壱の重ラベル（細めの見出し） */
.osechi-two__label{
  font-family: var(--mincho);
  font-weight: 800;                 /* ラベルは少しだけ軽く */
  letter-spacing: .2em;             /* 既存の広め字間は活かす */
  font-feature-settings: "palt";
}

/* セクション見出し（例：壱の重のタイトル） */
.osechi-two__title{
  font-family: var(--mincho);
  font-weight: 900;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}



.cb_design_content .desc {
    margin-top: 80px;
}

.cb_design_content {
    padding: 100px 0px 100px 0px;
}

.rich_title2 {
    padding-top: 150px;
}


:root{ --gold:#d0a933; --sticky-cta-h:64px; }

/* ベース（JSで .is-show 付与で表示） */
.sticky-cta{ position:fixed; z-index:10050; display:none; }

/* ===== PC：右側 縦貼り付け ===== */
.sticky-cta--tate{
  top:80%; right:12px; transform:translateY(-50%);
  background: rgba(0,0,0,.60); backdrop-filter: blur(6px);
  border:1px solid rgba(208,169,51,.38); border-radius:14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  padding:10px;
}
.sticky-cta--tate .sticky-cta__link{
  /* 縦書き＋明朝体（太め） */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Noto Serif JP","Shippori Mincho","Hiragino Mincho ProN",
               "Hiragino Mincho Pro","Yu Mincho","MS PMincho",serif;
  font-weight: 900;
  letter-spacing: .15em;  /* 縦なので少し広め */
  /* ゴールドのピル */
  color:#231800; text-decoration:none;
  background: linear-gradient(180deg,#f7eeb8 0%, var(--gold) 55%, #b88e1c 100%);
  border:1px solid #dbc06a;
  border-radius:10px;
  padding: 16px 12px;          /* 上下=左右（縦書き） */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 12px 28px rgba(208,169,51,.35);
  position:relative;
}
/* さりげない“キラッ” */
/*
.sticky-cta__link::after{
  content:""; position:absolute; inset:-30% -20%;
  background: linear-gradient(100deg,transparent 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,.65) 50%, rgba(255,255,255,.08) 65%, transparent 100%);
  transform: rotate(90deg) skewX(-18deg) translateX(-130%);
  mix-blend-mode: screen; pointer-events:none; opacity:0;
  animation: tate-sheen 4.2s cubic-bezier(.23,1,.32,1) infinite .6s;
}
@keyframes tate-sheen{
  0%   { transform: rotate(90deg) skewX(-18deg) translateX(-130%); opacity:0; }
  10%  { transform: rotate(90deg) skewX(-18deg) translateX(130%);  opacity:1; }
  100% { transform: rotate(90deg) skewX(-18deg) translateX(130%);  opacity:0; }
}
*/
/* ===== SP：下部いっぱいバーに切替（横書き） ===== */
@media (max-width: 960px){
  .sticky-cta--tate{
    left:0; right:0; bottom:0; top:auto; transform:none;
    border-left:none; border-right:none; border-radius:0; padding:10px 12px;
  }
  .sticky-cta--tate .sticky-cta__link{
    writing-mode: horizontal-tb; text-orientation: initial;
    display:block; width:100%; text-align:center; letter-spacing:.06em;
    border-radius:10px;
  }
  /* バナー分の下余白を自動で確保（コンテンツと被らないように） */
  body.has-sticky-cta{ padding-bottom: calc(var(--sticky-cta-h) + 8px); }
}

/* 表示状態 */
.sticky-cta.is-show{ display:block; }

/* TCDのモバイルフッターバーと競合しないように殺す（使っていなければ無視されます） */
@media (max-width: 1201px){
  #footer_bar, .footer-bar{ display:none !important; }
}

