/* === まるしげ 商品リストページ === */
.marushige-items *,
.marushige-items *::before,
.marushige-items *::after { box-sizing: border-box; margin: 0; padding: 0; }

.marushige-items {
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A88B4A;
  --ms-black: #1A1A1A;
  --ms-dark: #2C2C2C;
  --gray-dark: #555;
  --ms-gray: #888;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --ms-white: #FFF;
  --sans: 'Noto Sans JP', sans-serif;
  --serif: 'Noto Serif JP', serif;
  font-family: var(--sans);
  color: var(--ms-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.marushige-items img { max-width: 100%; height: auto; display: block; }
.marushige-items a { text-decoration: none; color: inherit; }
.marushige-items .ms-container { max-width: 100%; margin: 0 auto; padding: 0 48px; }

/* --- Scroll Reveal --- */
/* JS(item-reveal.js)が読み込まれた場合のみアニメーション有効化 */
.marushige-items.js-ready .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.marushige-items.js-ready .reveal.v { opacity: 1; transform: translateY(0); }
.marushige-items .d1 { transition-delay: .1s; }
.marushige-items .d2 { transition-delay: .2s; }
.marushige-items .d3 { transition-delay: .3s; }

/* --- Section Common --- */
.marushige-items .s-title {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  letter-spacing: .12em; color: var(--ms-black); margin-bottom: 14px;
}
.marushige-items .s-desc { font-size: 14px; color: var(--gray-dark); line-height: 2; }
.marushige-items .gold-line {
  display: block; width: 40px; height: 1px;
  background: var(--gold); margin: 18px auto 0;
}

/* --- Product Grid --- */
.marushige-items .lineup { padding: 100px 0 80px; background: var(--cream); }
.marushige-items .lineup-hd { text-align: center; margin-bottom: 60px; }
.marushige-items .lineup-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.marushige-items .p-card {
  display: block;
  background: var(--ms-white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 1px 16px rgba(0,0,0,.05);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s;
}
.marushige-items .p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,.1);
}
.marushige-items .p-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.marushige-items .p-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.marushige-items .p-card:hover .p-card-img img { transform: scale(1.05); }
.marushige-items .p-card-body { padding: 22px 26px 26px; }
.marushige-items .p-category {
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; color: var(--gold); margin-bottom: 6px;
}
.marushige-items .p-name {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--ms-black); letter-spacing: .06em; margin-bottom: 8px;
}
.marushige-items .p-desc {
  font-size: 13px; color: var(--gray-dark);
  line-height: 1.9; margin-bottom: 16px;
}
.marushige-items .p-foot {
  display: flex; align-items: center; justify-content: space-between;
}
.marushige-items .p-price { font-size: 13px; color: var(--ms-black); font-weight: 500; }
.marushige-items .p-price em {
  font-style: normal; font-size: 22px;
  font-family: var(--serif); color: var(--gold-dark);
}
.marushige-items .p-price small {
  font-size: 11px; color: var(--ms-gray); font-weight: 400; margin-left: 2px;
}
.marushige-items .p-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); display: flex;
  align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.marushige-items .p-card:hover .p-arrow { background: var(--gold); }
.marushige-items .p-arrow::after {
  content: ''; display: block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--ms-gray);
  border-top: 2px solid var(--ms-gray);
  transform: rotate(45deg); margin-left: -2px;
  transition: border-color .3s;
}
.marushige-items .p-card:hover .p-arrow::after { border-color: #FFF; }

/* --- Customer Voice --- */
.marushige-items .voice { padding: 100px 0; background: var(--ms-white); }
.marushige-items .voice-hd { text-align: center; margin-bottom: 56px; }
.marushige-items .voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.marushige-items .v-card {
  background: var(--cream); border-radius: 8px;
  padding: 32px 28px; position: relative;
}
.marushige-items .v-card::before {
  content: '\201C'; font-family: var(--serif); font-size: 64px;
  color: var(--gold); opacity: .25;
  position: absolute; top: 10px; left: 18px; line-height: 1;
}
.marushige-items .v-stars {
  color: var(--gold); font-size: 12px;
  letter-spacing: 2px; margin-bottom: 14px; position: relative;
}
.marushige-items .v-text {
  font-size: 13px; color: var(--gray-dark);
  line-height: 2; margin-bottom: 18px; position: relative;
}
.marushige-items .v-meta { display: flex; align-items: center; gap: 10px; }
.marushige-items .v-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-dark); display: flex;
  align-items: center; justify-content: center; font-size: 14px;
}
.marushige-items .v-info { font-size: 12px; color: var(--ms-gray); }
.marushige-items .v-info strong { color: var(--ms-dark); font-weight: 500; display: block; }

/* --- CTA --- */
.marushige-items .cta {
  padding: 100px 0; background: var(--ms-black);
  text-align: center; position: relative; overflow: hidden;
}
.marushige-items .cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,162,101,.08), transparent 60%);
}
.marushige-items .cta h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: #FFF; letter-spacing: .12em; margin-bottom: 12px; position: relative;
}
.marushige-items .cta p {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 40px; position: relative;
}
.marushige-items .cta-btn {
  display: inline-block; background: var(--gold); color: #FFF;
  font-size: 14px; font-weight: 500; letter-spacing: .12em;
  padding: 18px 56px; border-radius: 2px; transition: all .4s; position: relative;
}
.marushige-items .cta-btn:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,162,101,.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .marushige-items .ms-container { padding: 0 16px; }
  .marushige-items .lineup { padding: 60px 0 50px; }
  .marushige-items .lineup-hd { margin-bottom: 36px; }
  .marushige-items .lineup-grid { grid-template-columns: 1fr; gap: 20px; }
  .marushige-items .voice { padding: 60px 0; }
  .marushige-items .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  .marushige-items .cta { padding: 60px 0; }
  .marushige-items .s-title { font-size: 22px; }
  .marushige-items .p-card-body { padding: 18px 20px 22px; }
}

/* --- SWELL Override + Full-Width Breakout --- */
.post_content .marushige-items {
  max-width: none !important;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}
.marushige-items .lineup,
.marushige-items .voice,
.marushige-items .cta {
  width: 100%;
}
.post_content .marushige-items h1,
.post_content .marushige-items h2,
.post_content .marushige-items h3,
.post_content .marushige-items p {
  margin: 0; padding: 0; border: none; background: none;
}
.post_content .marushige-items h2::before,
.post_content .marushige-items h3::before { display: none; }
