.sold_out {
    font-size:20px; /* フォントサイズを大きくする */
    font-weight: bold; /* テキストを太字にする */
    color: #AA0000; /* 文字色を赤に設定 */
}

.zoom-desc a:nth-child(1) {
  display: none;
}

/* 商品説明セクション上に仕切り線を入れる */
.yg-desc-wrap {
  border-top: 1px solid #ccc;  /* 線の色はパンくず下と同じ薄いグレー */
  padding-top: 24px;          /* 線と本文の間に余白 */
  margin-top: 32px;           /* 上段との間隔 */
}

/* 見出し「作品詳細」 */
.yg-desc-title {
  font-size: 1.6rem;   /* ←文字サイズを拡大（お好みで 1.8rem なども可） */
  font-weight: 700;
  margin-bottom: 16px; /* ←見出しの下に1行分の余白を追加 */
}

/* 上部カート直下の文字装飾 */
.cart-note {
  font-size: 1.1rem;     /* 少し大きめ */
  font-weight: 600;      /* 太字 */
  margin: 16px 0 0;      /* カートボタンとの間に余白 */
  color: #000;           /* 黒文字 */
}

/* 上段・下段をCSSだけで識別 */
.product_detail_area > .add_cart:first-of-type {
  /* 必要なら上段専用の調整をここに（例：float:right; 等） */
}

/* ▼ 下段カート（最後の .add_cart ）だけ左寄せにする */
.product_detail_area > .add_cart:last-of-type{
  float: none;          /* 右カラム化を解除 */
  clear: both;          /* 上段のフロート回り込みを断つ */
  width: auto;          /* 自然幅に */
  text-align: left;     
  margin: 24px 0 0;     
}

/* 特商法リンクを左寄せ */
.product_detail_area > .add_cart:last-of-type #sk_link_other{
  text-align: left;
  margin: 10px 0 0;
}

/* 問い合わせ・その他リンクのブロックも左寄せ */
.product_detail_area > .add_cart:last-of-type .product_link_area{
  float: none;
  text-align: left;
  margin-top: 12px;
}

/* リスト類は左から整然と並べる */
.product_detail_area > .add_cart:last-of-type .product_link_area ul{
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}
.product_detail_area > .add_cart:last-of-type .product_link_area ul li{
  display: block;     /* 縦並び（横並びにしたいなら inline-block に） */
  margin: 6px 0;
}

/* SNS（LINE/ポスト等）を左揃えで横並びにする場合 */
.product_detail_area > .add_cart:last-of-type .share li{
  display: inline-block;
  margin-right: 8px;
}

/* 念のためのclearfix */
.product_detail_area > .add_cart:last-of-type::after{
  content:""; display:block; clear:both;
}

/* 下段カート内のSNSボタン（XとLINE）を左寄せ＋間隔調整 */
.product_detail_area > .add_cart:last-of-type .share {
  display: flex;          /* 横並び */
  justify-content: flex-start; /* 左寄せ */
  gap: 6px;               /* ボタン間の隙間を調整（お好みで 4px&#12316;8px） */
}

.product_detail_area > .add_cart:last-of-type .share li {
  float: none;            /* 既存float解除 */
  margin: 0;              /* 余計なマージン削除 */
  list-style: none;
}

.sold_out_note a {
  color: #2169F3;       /* 青色 */
  text-decoration: underline; /* 下線 */
  font-weight: bold;    /* 任意：少し強調 */
}