@charset "Shift_JIS";
/* ===============================
   PC 商品詳細
=============================== */

/* =========================================
   商品詳細レイアウト
========================================= */
.pc-detail-layout{
  position:relative;
}

.pc-goods{
  display:grid;
  grid-template-columns:minmax(0, 64fr) minmax(0, 36fr); /* ▼ gap込みでもはみ出さない */
  gap:32px; /* ▼ 40px → 32px */
  margin:16px auto; /* ▼ 40px → 32px */
  max-width:1060px; /* ▼ pc_base.css の幅感に寄せる */
  align-items:start;
}

.pc-main{
  min-width:0;
}

#product-body{
  width:100%;
  margin:0;
  min-width:0;
}

@media (max-width:980px){
  .pc-goods{
    grid-template-columns:1fr;
    gap:24px;
    margin:24px auto;
  }

  .pc-main{
    display:contents;
  }

  .pc-gallery{
    order:1;
  }

  .pc-buy-wrap,
  .pc-buy-wrap99{
    order:2;
    position:static;
    top:auto;
    align-self:auto;
  }

  .pc-main > :not(.pc-gallery){
    order:3;
  }

  #product-body{
    margin-top:0;
  }

  .pc-support-info{
    margin-top:8px;
  }

  .pc-buy,
  .pc-buy99{
    padding:0 0 22px;
    margin-top:0;
  }

  .pc-support-info .shop-info{
    gap:12px;
    margin-bottom:24px;
  }

  .pc-support-info .shop-info__title,
  .pc-support-info .shop-info__body,
  .pc-support-info .faqz summary,
  .pc-support-info .faqz .answer{
    padding-left:14px;
    padding-right:14px;
  }
}

/* ===== ギャラリー ===== */

/* 商品画像の角を少し丸める */
.pc-hero,
.pc-modal-viewport{
  border-radius:2px;
}

.pc-gallery{
  position:relative;
  overflow:hidden;
}

.pc-hero{
  width:100%;
  aspect-ratio:1/1;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:zoom-in;
  overflow:hidden;
}

.pc-hero img,
.pc-hero iframe{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  border:0;
}

/* 矢印 */
.pc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  cursor:pointer;
  z-index:5;
  color:#392011;
  font-size:24px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pc-arrow.prev{ left:12px; }
.pc-arrow.next{ right:12px; }

.pc-arrow[hidden]{
  display:none !important;
}

/* ドット */
.pc-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:10px;
}

.pc-dots span{
  width:9px;   /* ▼ 10px → 9px */
  height:9px;  /* ▼ 10px → 9px */
  border-radius:50%;
  background:#ccc;
  cursor:pointer;
}

.pc-dots span.active{
  background:#392011;
}

/* ===== 購入 ===== */

.pc-title{
  font-size:20px; /* ▼ 22px → 20px */
  font-weight:800;
  line-height:1.45;
  margin:0 0 14px;
}

.pc-price{
  font-size:25px; /* ▼ 28px → 25px */
  margin:16px 0 18px;
}

.pc-qty{
  min-width:88px;
  height:38px; /* ▼ 42px → 38px */
  margin-bottom:18px;
  font-size:14px; /* ▼ 補足: base側密度に合わせる */
}

.pc-cart{
  width:100%;
  height:50px; /* ▼ 56px → 50px */
  background:#c6a15b;
  border:none;
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  font-size:16px; /* ▼ 18px → 16px */
  line-height:1.2;
}

/* ===== モーダル ===== */

.pc-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2100;
}

.pc-modal.show{
  display:block;
}

.pc-modal-bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
}

.pc-modal-inner{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 64px; /* ▼ 少しだけ引き締め */
  z-index:2101;
}

.pc-modal-content{
  border-radius:2px;
  position:relative;
  width:min(1120px, calc(100vw - 120px)); /* ▼ 1220px → 1120px */
  height:min(780px, calc(100vh - 90px));  /* ▼ 820px → 780px */
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 64px 20px; /* ▼ 少しだけ引き締め */
  overflow:visible;
  box-shadow:0 20px 48px rgba(0,0,0,.22);
}

.pc-modal-stage{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding-bottom:8px;
}

.pc-modal-viewport{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:zoom-in;
  user-select:none;
  background:#fff;
  flex:0 0 auto;
  transition:opacity .15s ease;
  box-shadow:0 1px 4px rgba(0,0,0,.06);
}

.pc-modal-viewport.is-zoomed{
  cursor:grab;
}

.pc-modal-viewport.is-dragging{
  cursor:grabbing;
}

.pc-modal-viewport.is-loading{
  visibility:hidden;
  opacity:0;
}

.pc-modal-viewport:not(.is-loading){
  opacity:1;
}

.pc-modal-viewport img{
  background:#fff;
  display:block;
}

.modal-img{
  display:block;
  max-width:none;
  max-height:none;
  width:100%;
  height:100%;
  object-fit:contain;
  transform-origin:center center;
  will-change:transform;
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}

.pc-modal-video{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pc-modal-video-frame{
  width:100%;
  max-width:100%;
  aspect-ratio:16 / 9;
  max-height:calc(100% - 40px);
}

.pc-modal-video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.pc-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:38px;  /* ▼ 42px → 38px */
  height:38px; /* ▼ 42px → 38px */
  border:0;
  background:transparent;
  color:#111;
  font-size:26px; /* ▼ 28px → 26px */
  line-height:1;
  cursor:pointer;
  z-index:2104;
}

.pc-modal-prev,
.pc-modal-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:56px;
  border-radius:10px;
  border:1px solid rgba(57,32,17,.15);
  background: linear-gradient(to bottom,var(--grad-top),var(--grad-btm));
  color:#392011;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  z-index:2103;
  display:flex;
  align-items:center;
  justify-content:center;

  /* subtle影 */
  box-shadow:0 2px 5px rgba(0,0,0,.08);

  transition:all .2s ease;
}

.pc-modal-prev{ left:36px; }
.pc-modal-next{ right:36px; }

/* hover */
.pc-modal-prev:hover,
.pc-modal-next:hover{
  border-color:#C6A15B;
  color:#6f4510;

  transform:translateY(-50%) translateX(0) scale(1.05);

  box-shadow:0 2px 6px rgba(0,0,0,.14);
}

/* クリック時 */
.pc-modal-prev:active,
.pc-modal-next:active{
  transform:translateY(-50%) scale(0.95);
  box-shadow:0 3px 8px rgba(0,0,0,.1);
}

.pc-modal-prev[hidden],
.pc-modal-next[hidden]{
  display:none !important;
}

@media (max-width:980px){
  .pc-modal-inner{
    padding:16px 16px;
  }

  .pc-modal-content{
    width:calc(100vw - 32px);
    height:min(78vh, 760px);
    padding:14px 56px 18px;
  }

  .pc-modal-prev,
  .pc-modal-next{
    width:38px;
    height:50px;
  }

  .pc-modal-prev{ left:10px; }
  .pc-modal-next{ right:10px; }

  .pc-modal-close{
    top:8px;
    right:8px;
  }
}

/* モーダル注意書き */
.pc-modal-note{
  text-align:center;
  font-size:12px;
  line-height:1.4;
  color:#666;
  margin:0;
  padding:0;
  background:none;
  pointer-events:none;
}

.pc-modal-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
  margin:0;
}

.pc-modal-dots span{
  width:9px;   /* ▼ 10px → 9px */
  height:9px;  /* ▼ 10px → 9px */
  border-radius:50%;
  background:#ccc;
  cursor:pointer;
}

.pc-modal-dots span.active{
  background:#392011;
}

/* =========================================
   PC商品詳細：購入エリア（安全寄りの最小調整）
   - 元の並びを崩しにくいよう wrapper は最小限
   - 実際の submit に .pc-cart を付けて既存ボタン見た目を流用
========================================= */

.pc-buy-wrap{
  position:sticky;
  top: calc(var(--header-h,64px) + var(--search-h,56px) + 10px);
  min-width:0;
  align-self:start;
}

.smart-hide .pc-buy-wrap{
  top: calc(var(--header-h,64px) + 10px);
}

.pc-buy{
  position:relative;
  align-self:start;
  padding:0 20px 22px;
  background:#FBF7F0;
}

.pc-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:0 0 10px;
  font-size:13px;
  line-height:1.5;
  color:#6b5a4a;
}

.pc-meta-label{
  font-weight:700;
}

.pc-meta-value{
  color:#2b1a0d;
}

.pc-buy .pc-title{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.42;
  font-weight:700;
  letter-spacing:.01em;
  color:#2b1a0d;
}

.pc-info-item{
  margin:0 0 4px;
  font-size:13px;
  line-height:1.55;
  color:#6b5a4a;
}

.pc-gift-note{
  margin:8px 0 10px;
  padding:8px 12px;
  background:#F5EADF;
  border:1px solid #eee6d9;
  border-radius:8px;
}

.pc-gift-title{
  margin:0 0 4px;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
  color:#392011;
}

.pc-gift-text{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:#6b5a4a;
}

.pc-line{
  display:grid;
  grid-template-columns:86px minmax(0,1fr);
  gap:10px;
  align-items:center;
}

.pc-line-label{
  font-size:13px;
  font-weight:700;
  line-height:1.6;
  color:#6b5a4a;
}

.pc-line-value{
  min-width:0;
  font-size:14px;
  line-height:1.7;
  color:#2b1a0d;
}

.pc-regular-price{
  display:block;
  margin-bottom:2px;
  font-size:24px;
  font-weight:700;
  line-height:1.4;
  color:#392011;
}

.pc-sales-price{
  display:block;
  font-size:26px;
  font-weight:800;
  line-height:1.35;
  color:#392011;
}

.pc-member-discount{
  margin:0 0 6px;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
  color:#c85a7a;
}

.pc-point-note{
  margin:0 0 8px;
  padding-left:96px;
  font-size:13px;
  line-height:1.6;
  color:#6b5a4a;
}

.pc-qty-wrap{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin:0 0 10px;
}

.pc-buy input[name="product_num"]{
  width:72px;
  height:40px;
  padding:0 10px;
  border:1px solid #d8d1c5;
  border-radius:8px;
  background:#fff;
  font-size:14px;
  color:#2b1a0d;
}

.pc-qty-btns{
  display:flex;
  gap:6px;
  align-items:center;
}

.pc-qty-btns a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.pc-qty-btns img{
  display:block;
}

.pc-qty-unit{
  font-size:13px;
  color:#6b5a4a;
}

.pc-option-row{
  margin:0 0 12px;
}

.pc-option-label{
  margin:0 0 6px;
  font-size:13px;
  font-weight:700;
  line-height:1.6;
  color:#6b5a4a;
}

.pc-option-select select{
  width:100%;
  max-width:100%;
  min-height:40px;
}

.pc-option-detail-link{
  margin:2px 0 12px;
}

.pc-option-detail-link a,
.pc-buy-sub-link{
  color:#6b5a4a;
  text-decoration:underline;
  text-underline-offset:2px;
  font-size:13px;
  line-height:1.7;
}


/* =========================================
   商品ページ内リンク hover 統一
   - #product-body の本文リンクに合わせる
   - オプション詳細 / 問い合わせ / レビュー導線
========================================= */
.pc-option-detail-link a,
.pc-buy-sub-link{
  transition:
    color .2s ease,
    opacity .2s ease,
    text-decoration-thickness .2s ease;
}

.pc-option-detail-link a:hover,
.pc-buy-sub-link:hover{
  color:#8a5a18;
  opacity:.9;
  text-decoration-thickness:1.5px;
}

.pc-option-detail-link a:active,
.pc-buy-sub-link:active{
  opacity:.72;
}

/* =========================================
   カートに入れるボタン hover
   - 色を大きく変えすぎず、少しだけ上品に反応
========================================= */
.pc-buy .pc-cart,
.pc-buy .kagobtn.pc-cart{
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.pc-buy .pc-cart:hover,
.pc-buy .kagobtn.pc-cart:hover{
  background:#e84318; /* ← 少しだけ濃く */
  box-shadow:0 8px 20px rgba(57,32,17,.16);
  transform:translateY(-1px);
  opacity:.96;
}

.pc-buy .pc-cart:active,
.pc-buy .kagobtn.pc-cart:active{
  background:#d63d14; /* ← もう一段濃く */
  transform:translateY(0);
  box-shadow:0 4px 10px rgba(57,32,17,.12);
}


.pc-option-table-wrap{
  margin:0 0 14px;
}

.pc-cart-area{
  margin:12px 0 8px;
}

.pc-buy .pc-cart,
.pc-buy .kagobtn.pc-cart{
  width:100%;
  height:48px;
  border:none;
  border-radius:8px;
  background:#ff4d1f; /* ← オレンジ赤 */
  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.05em;
  cursor:pointer;
  box-shadow:none;
}

.pc-buy .pc-cart:hover,
.pc-buy .kagobtn.pc-cart:hover{
  opacity:.92;
}

.pc-soldout-message{
  width:100%;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:#e5e5e5;
  color:#9a9a9a;
  font-size:22px;
  font-weight:800;
  letter-spacing:.08em;
}

.pc-buy-links{
  display:grid;
  gap:6px;
}

.pc-buy-links a{
  display:inline-block;
}

@media (max-width:980px){
  .pc-buy{
    padding:18px 16px;
  }

  .pc-line{
    grid-template-columns:1fr;
    gap:4px;
  }

  .pc-point-note{
    padding-left:0;
  }

  .pc-buy-wrap{
    position:static;
    top:auto;
  }
}

/* =========================================
   狭い幅専用：下固定「カートに移動する」ボタン
========================================= */
.pc-cart-jump{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:1400;
  height:48px;
  border:0;
  border-radius:999px;
  background:linear-gradient(to bottom,#d7b06a,#c6a15b);
  color:#fff;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.02em;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(16px);
  pointer-events:none;
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
}

.pc-cart-jump.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.pc-cart-jump:focus-visible{
  outline:2px solid #392011;
  outline-offset:2px;
}

@media (min-width:981px){
  .pc-cart-jump{
    display:none !important;
  }
}

@media (max-width:980px){
  body.has-cart-jump{
    padding-bottom:76px;
  }
}

@media (max-width:980px){
  body.is-cart-jump-visible .pc-footer .pf-backtotop{
    bottom:76px;
  }
}

@media (max-width:980px){
  .pc-footer .pf-backtotop{
    transition: bottom .18s ease;
  }
}

@media (max-width:640px){
  .pc-cart-jump{
    left:10px;
    right:10px;
    bottom:10px;
    height:46px;
    font-size:14px;
  }
}


/* =========================================
   商品説明エリア
========================================= */
#product-body{
  width:100%;
  min-width:0;
  margin:0;
  padding:22px 24px 26px;
  background:#fff;
  border:1px solid #e7e1d6;
  border-radius:4px;
  color:#2b1a0d;
  line-height:1.95;
  box-shadow:0 1px 0 rgba(57,32,17,.03);
}

/* 段落や見出しの基本余白 */
#product-body p,
#product-body ul,
#product-body ol,
#product-body .detail,
#product-body iframe,
#product-body #sign{
  margin:0 0 18px;
}

#product-body p:last-child,
#product-body ul:last-child,
#product-body ol:last-child,
#product-body .detail:last-child,
#product-body iframe:last-child,
#product-body #sign:last-child{
  margin-bottom:0;
}

/* 商品説明内リンク */
#product-body a{
  color:#8a5a18;
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:3px;
  word-break:break-word;
  transition:opacity .2s ease, color .2s ease;
}

#product-body a:hover{
  color:#6f4510;
  opacity:.9;
}

#product-body a{
  color:#8a5a18;
  text-decoration:underline;
  text-underline-offset:3px;
  transition:.2s;
}

#product-body a:hover{
  color:#c6a15b;
  text-decoration-thickness:2px;
}

/* =========================================
   商品情報テーブル（.detail）
========================================= */
#product-body .detail{
  margin:0 0 22px;
}

#product-body .detail table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 4px;
}

#product-body .detail tr{
}

#product-body .detail th,
#product-body .detail td{
  padding:10px 14px;
  vertical-align:top;
  border:1px solid #d8d1c5;
  background:#fff;
  font-size:15px;
  line-height:1.75;
}

#product-body .detail th{
  width:160px;
  background:#f3efe8;
  color:#2b1a0d;
  font-weight:800;
  text-align:left;
  border-right:0;
  border-radius:4px 0 0 4px;
}

#product-body .detail td{
  color:#2b1a0d;
  border-radius:0 4px 4px 0;
}

/* 表の中の英語長文の折り返し対策 */
#product-body .detail td{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* =========================================
   written by サイン
========================================= */
#product-body #sign{
  margin:26px 0 0;
  text-align:right;
  font-size:14px;
  line-height:1.7;
  color:#6b5a4a;
  letter-spacing:.03em;
}

/* =========================================
   モバイル時の微調整
========================================= */
@media (max-width:980px){
  #product-body{
    padding:18px 16px 22px;
    border-radius:14px;
  }

  #product-body .detail table{
    border-spacing:0 6px;
  }

  #product-body .detail th,
  #product-body .detail td{
    padding:14px 14px;
    font-size:14px;
  }

  #product-body .detail th{
    width:108px;
  }
}

@media (max-width:640px){
  #product-body .detail th,
  #product-body .detail td{
    display:block;
    width:100%;
    border-radius:0;
  }

  #product-body .detail th{
    border-right:1px solid #d8d1c5;
    border-bottom:0;
    border-radius:16px 16px 0 0;
    padding-bottom:10px;
  }

  #product-body .detail td{
    border-radius:0 0 16px 16px;
    padding-top:10px;
  }
}




/* =========================================
   商品詳細 見出し（スマホ版と意匠統一）
========================================= */
.pc-detail-heading{
  text-align:center;
  margin:34px 0 14px;
  font-size:32px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:.02em;
  color:#392011;
}

.pc-detail-heading > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  position:relative;
}

.pc-detail-heading > span::before,
.pc-detail-heading > span::after{
  content:"";
  width:22px;
  height:22px;
  flex:0 0 22px;
  background:url("https://file002.shop-pro.jp/PA01356/160/img/logo/h2_icon.png") no-repeat center / contain;
}

.pc-detail-heading::after{
  content:"";
  display:block;
  width:100%;
  max-width:980px;
  margin:14px auto 0;
  border-top:1px solid #d8d1c5;
}

@media (max-width:980px){
  .pc-detail-heading{
    font-size:26px;
    margin:28px 0 12px;
  }

  .pc-detail-heading > span{
    gap:10px;
  }

  .pc-detail-heading > span::before,
  .pc-detail-heading > span::after{
    width:18px;
    height:18px;
    flex-basis:18px;
  }

  .pc-detail-heading::after{
    margin-top:12px;
  }
}


/* =========================================
   カート下：発送・支払い・送料 + FAQ
   - スマホ側の class 名に合わせて PC 用に整える
========================================= */
.pc-support-info{
  margin-top:28px;
}

/* ===== shop-info ===== */
.pc-support-info .shop-info{
  display:grid;
  gap:14px;
  margin:0 0 28px;
}

.pc-support-info .shop-info__block{
  background:#fff;
  border:1px solid #e7e1d6;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(57,32,17,.03);
}

.pc-support-info .shop-info__title{
  padding:12px 16px;
  background:#e9dcc7;
  border-bottom:1px solid #e7e1d6;
  color:#392011;
  font-size:15px;
  font-weight:800;
  line-height:1.5;
}

.pc-support-info .shop-info__title span{
  display:inline-flex;
  align-items:center;
}

.pc-support-info .shop-info__body{
  padding:14px 16px 16px;
  color:#2b1a0d;
  font-size:14px;
  line-height:1.85;
}

.pc-support-info .shop-info__body p{
  margin:0;
}

.pc-support-info .shop-info__body p + p{
  margin-top:8px;
}

.pc-support-info .shop-info__body a{
  color:#8a5a18;
  text-decoration:underline;
  text-underline-offset:3px;
  transition:
    color .2s ease,
    opacity .2s ease,
    text-decoration-thickness .2s ease;
}

.pc-support-info .shop-info__body a:hover{
  color:#6f4510;
  opacity:.9;
  text-decoration-thickness:1.5px;
}

/* ===== FAQ ===== */

/* =========================================
   FAQカード化（shop-infoと統一）
========================================= */
.pc-faq{
  margin-top:24px;
}

.pc-faq .faq-card{
  background:#fff;
  border:1px solid #d8d1c5;
  border-radius:16px;
  padding:20px 18px 22px;
  box-shadow:0 2px 8px rgba(57,32,17,.05);
}

/* 見出しの下線 */
.pc-faq .heading{
  margin:0 0 16px;
}

.pc-faq .heading::after{
  content:"";
  display:block;
  margin:12px auto 0;
  border-top:1px solid #d8d1c5;
}

/* FAQ本体 */
.pc-faq [data-faqz]{
  display:grid;
  gap:10px;
}

/* 各FAQ */
.pc-faq .faqz{
  border:1px solid #e7e1d6;
  border-radius:12px;
  background:#fff;
}

/* 質問部分 */
.pc-faq .faqz summary{
	background:#f7f2ea;
  padding:14px 16px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
}

.pc-faq .faqz summary{
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.pc-faq .faqz summary:hover{
  background:#efe6d7; /* 少しだけ濃く */
  box-shadow:0 4px 10px rgba(57,32,17,.08);
}

.pc-faq .faqz summary:hover{
  transform:translateY(-1px);
}

.pc-faq .faqz[open] summary{
  background:#f7f2ea;
}

/* 回答 */
.pc-faq .answer{
  padding:14px 16px;
  border-top:1px dashed #e7e1d6;
  line-height:1.8;
}

.pc-support-info .pc-faq{
  padding:0;
  background:transparent;
  border:0;
  margin-top:0;
}

.pc-support-info .pc-faq .heading{
  margin:0 0 14px;
}

.pc-support-info [data-faqz]{
  display:grid;
  gap:10px;
}

.pc-support-info .faqz{
  border:1px solid #e7e1d6;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.pc-support-info .faqz summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  color:#2b1a0d;
  font-size:14px;
  font-weight:700;
  line-height:1.6;
}

.pc-support-info .faqz summary::-webkit-details-marker{
  display:none;
}

.pc-support-info .faqz[open] summary{
  background:#f7f2ea;
}

.pc-support-info .faqz .q{
  flex:1 1 auto;
}

.pc-support-info .faqz .chev{
  width:18px;
  height:18px;
  flex:0 0 18px;
  color:#6b5a4a;
  transition:transform .2s ease;
}

.pc-support-info .faqz[open] .chev{
  transform:rotate(180deg);
}

.pc-support-info .faqz .answer{
  padding:14px 16px 16px;
  border-top:1px dashed #e7e1d6;
  color:#2b1a0d;
  font-size:14px;
  line-height:1.85;
}

.pc-support-info .faqz .answer a{
  color:#8a5a18;
  text-decoration:underline;
  text-underline-offset:3px;
  transition:
    color .2s ease,
    opacity .2s ease,
    text-decoration-thickness .2s ease;
}

.pc-support-info .faqz .answer a:hover{
  color:#6f4510;
  opacity:.9;
  text-decoration-thickness:1.5px;
}

/* ===== 1カラム時 ===== */
@media (max-width:980px){
  .pc-support-info{
    order:4;
    margin-top:8px;
  }

  .pc-support-info .shop-info{
    gap:12px;
    margin-bottom:24px;
  }

  .pc-support-info .shop-info__title,
  .pc-support-info .shop-info__body,
  .pc-support-info .faqz summary,
  .pc-support-info .faqz .answer{
    padding-left:14px;
    padding-right:14px;
  }
}

/* =========================================
   似た商品・カテゴリ
========================================= */
.pc-related-groups{
  margin:28px 0 0;
  padding:24px 20px 28px;
  background:#fff;
  border:1px solid #e7e1d6;
  border-radius:18px;
  box-shadow:0 1px 0 rgba(57,32,17,.03);
}

.pc-related-groups .heading{
  margin:0 0 18px;
}

.pc-related-groups .heading::after{
  content:"";
  display:block;
  width:100%;
  margin:14px auto 0;
  border-top:1px solid #d8d1c5;
}

.related-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px 16px;
}

.group_button{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 28px;
  border-radius:12px;
  border:1px solid #d5bf97;
  background:#ead9bb;
  color:#392011;
  font-size:18px;
  font-weight:700;
  line-height:1.45;
  text-decoration:none;
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.group_button:hover{
  background:#e3cfaa;
  box-shadow:0 8px 18px rgba(57,32,17,.10);
  transform:translateY(-1px);
}

.group_button:active{
  background:#dcc69f;
  box-shadow:0 4px 10px rgba(57,32,17,.08);
  transform:translateY(0);
}

@media (max-width:980px){
  .pc-related-groups{
    margin-top:24px;
    padding:20px 16px 24px;
    border-radius:16px;
  }

  .related-links{
    gap:12px;
  }

  .group_button{
    min-height:64px;
    padding:0 22px;
    font-size:16px;
  }
}

@media (max-width:640px){
  .related-links{
    display:grid;
    grid-template-columns:1fr;
  }

  .group_button{
    width:100%;
    justify-content:flex-start;
    min-height:56px;
    padding:0 18px;
    font-size:15px;
  }
}

/* =========================================
   お客様の声
   - 似た商品・カテゴリと見出し構造を統一
========================================= */
.pc-reviews-group{
  margin:28px 0 0;
}

.pc-reviews-group > .heading{
  margin:0 0 18px;
}



.pc-reviews-box{
  background:#fff;
  border:1px solid #e7e1d6;
  border-radius:4px;
  padding:20px 20px 18px;
  box-shadow:0 1px 0 rgba(57,32,17,.03);
}

.pc-reviews-list{
  display:grid;
  gap:12px;
}

.pc-reviews-loading{
  margin:0;
  padding:24px 12px;
  text-align:center;
  color:#6b5a4a;
}

.pc-review-card{
  border:1px solid #ece5d9;
  border-radius:4px;
  background:#fff;
  padding:18px 18px 16px;
  box-shadow:0 2px 6px rgba(57,32,17,.04);
}

.pc-review-name{
  margin:0 0 10px;
  font-size:15px;
  font-weight:800;
  line-height:1.5;
  color:#392011;
}

.pc-review-text{
  margin:0;
  font-size:14px;
  line-height:1.95;
  color:#2b1a0d;
}

.pc-review-media{
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed #e7e1d6;
}

.pc-review-images{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pc-review-thumb{
  display:block;
  width:72px;
  height:72px;
  overflow:hidden;
  border:1px solid #e7e1d6;
  border-radius:8px;
  background:#fff;
}

.pc-review-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.pc-reviews-footer{
  margin-top:14px;
  text-align:right;
}

.pc-reviews-more{
  display:inline-block;
  color:#6b5a4a;
  text-decoration:underline;
  text-underline-offset:3px;
  font-size:13px;
  line-height:1.7;
  transition:
    color .2s ease,
    opacity .2s ease,
    text-decoration-thickness .2s ease;
}

.pc-reviews-more:hover{
  color:#8a5a18;
  opacity:.9;
  text-decoration-thickness:1.5px;
}

.pc-reviews-more:active{
  opacity:.72;
}

@media (max-width:980px){
  .pc-reviews-group{
    margin-top:24px;
  }

  .pc-reviews-box{
    padding:16px 16px 14px;
    border-radius:16px;
  }

  .pc-review-card{
    padding:16px 14px 14px;
  }

  .pc-reviews-footer{
    margin-top:12px;
    text-align:center;
  }
}


/* =========================================
   見出し下ボーダー統一
========================================= */
/* 見出し下線 */
.pc-related-groups .heading::after,
.pc-reviews-group .heading::after,
#product-body .heading::after{
  content:"";
  display:block;
  margin:12px auto 0; /* ← 見出しとの距離 */
  width:100%;
  border-top:1px solid #d8d1c5;
}

/* 下線とコンテンツの距離（ここ追加） */
.pc-related-groups .heading,
.pc-reviews-group .heading,
#product-body .heading{
  margin:0 0 20px; /* ← ここを広げる */
}

/* 商品詳細カート内：中央寄せの打ち消し */
.pc-buy{
  text-align:left;
}

.pc-buy .pc-title,
.pc-buy .pc-meta-row,
.pc-buy .pc-line,
.pc-buy .pc-point-note,
.pc-buy .pc-info-item,
.pc-buy .pc-gift-note,
.pc-buy .pc-buy-links{
  text-align:left;
}

/* 価格だけは右寄せ気味に整える */
.pc-buy .pc-line-sales .pc-line-value{
  text-align:left;
}

/* ギフトラッピング内も左寄せ */
.pc-buy .pc-gift-title,
.pc-buy .pc-gift-text{
  text-align:left;
}

/* 問い合わせリンクも左寄せ */
.pc-buy .pc-buy-links{
  justify-items:start;
}


.pc-buy .pc-title{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.42;
  font-weight:700;
  letter-spacing:.01em;
}
