/* =========================================================
   Yukie Glass / 商品詳細ページ刷新CSS
   三つの表現・ジークレー統合版
   「商品詳細 CSS」の内容を、このファイル全体で置き換えてください。
========================================================= */

/* =========================================================
   保存順の保護
   新HTMLがまだ反映されていない間だけ、旧HTMLを通常の2カラムで表示します。
   新HTMLの #article.yg-product-detail が現れると、この部分は自動的に無効になります。
========================================================= */
#article:not(.yg-product-detail) {
  background: #fff;
}

#article:not(.yg-product-detail) > .inner {
  width: 920px;
  margin: 35px auto 70px;
}

#article:not(.yg-product-detail) h2#product-title {
  margin: 10px 0 20px;
  padding: 0;
  color: #514c47;
  background: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.55;
}

#article:not(.yg-product-detail) .left-column {
  float: left;
  width: 420px;
}

#article:not(.yg-product-detail) .right-column {
  float: right;
  width: 460px;
}

#article:not(.yg-product-detail) #image-list #image-container {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 0 5px;
  overflow: hidden;
}

#article:not(.yg-product-detail) #image-list #image-container a {
  display: none;
  position: absolute;
}

#article:not(.yg-product-detail) #image-list #image-container a.active {
  display: block;
}

#article:not(.yg-product-detail) #image-list #image-container a img {
  width: 420px;
}

#article:not(.yg-product-detail) #image-list #thumb-container {
  margin: 5px 0;
  text-align: center;
}

#article:not(.yg-product-detail) #image-list #thumb-container a {
  display: inline-block;
  margin: 1px;
  border: 2px solid #eeeae5;
}

#article:not(.yg-product-detail) #image-list #thumb-container a.active {
  border-color: #cb1300;
}

#article:not(.yg-product-detail) #image-list #thumb-container a img {
  width: 78px;
}

#article:not(.yg-product-detail) #image-list .ph-caption {
  color: #999;
  background: #fff;
  font-size: 10px;
  line-height: 1.5;
}

#article:not(.yg-product-detail) .right-column form {
  padding: 15px;
  background: #f7f5f2;
}

#article:not(.yg-product-detail) .right-column .detail-caption-section {
  padding-top: 20px;
}

#article:not(.yg-product-detail) .right-column .detail-caption-section p {
  padding-bottom: 12px;
  color: #555;
  background: #fff;
  font-size: 12px;
  line-height: 1.8;
}

.sp-mode #article:not(.yg-product-detail) {
  padding: 15px;
}

.sp-mode #article:not(.yg-product-detail) > .inner,
.sp-mode #article:not(.yg-product-detail) .left-column,
.sp-mode #article:not(.yg-product-detail) .right-column {
  float: none;
  width: auto;
}

.sp-mode #article:not(.yg-product-detail) .left-column {
  margin-bottom: 30px;
}

.sp-mode #article:not(.yg-product-detail) h2#product-title {
  margin: 15px 0;
  font-size: 36px;
}

.sp-mode #article:not(.yg-product-detail) #image-list #image-container {
  float: none;
  width: 610px;
  height: 610px;
  margin: 10px 0;
}

.sp-mode #article:not(.yg-product-detail) #image-list #image-container a img {
  width: 610px;
}

.sp-mode #article:not(.yg-product-detail) #image-list #thumb-container a {
  margin: 4px;
}

.sp-mode #article:not(.yg-product-detail) #image-list #thumb-container a img {
  width: 110px;
}

.sp-mode #article:not(.yg-product-detail) #image-list .ph-caption {
  clear: both;
  font-size: 14px;
}

.sp-mode #article:not(.yg-product-detail) .right-column .detail-caption-section p {
  font-size: 20px;
}

/* ------------------------------
   基本レイアウト
------------------------------ */
#main.yg-product-main > .inner {
  width: auto;
  max-width: 1440px;
  margin: 0 auto;
}

#article.yg-product-detail,
#article.yg-product-detail * {
  box-sizing: border-box;
}

#article.yg-product-detail {
  background: #fbfaf7;
  color: #514c47;
  border-top: 1px solid #eee8df;
}

#article.yg-product-detail > .inner {
  width: calc(100% - 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 0 86px;
}

.yg-product-hero {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.yg-product-gallery {
  flex: 0 1 620px;
  width: 55%;
  min-width: 0;
}

.yg-product-summary {
  flex: 1 1 430px;
  width: 45%;
  min-width: 0;
  padding-top: 8px;
}

/* ------------------------------
   パンくず
------------------------------ */
#main.yg-product-main .bread-crumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0;
  background: transparent;
}

#main.yg-product-main .bread-crumbs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 0;
  float: none;
}

#main.yg-product-main .bread-crumbs li {
  position: relative;
  float: none;
  padding: 0 0 0 18px;
  color: #aaa39b;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .04em;
  background: none;
}

#main.yg-product-main .bread-crumbs li::before {
  content: "/";
  position: absolute;
  left: 7px;
  top: 0;
  color: #d1c9c0;
}

#main.yg-product-main .bread-crumbs li:first-child {
  padding-left: 0;
}

#main.yg-product-main .bread-crumbs li:first-child::before {
  display: none;
}

#main.yg-product-main .bread-crumbs li a {
  color: #938d86;
  text-decoration: none;
}

#main.yg-product-main .bread-crumbs li a:hover {
  color: #b7251d;
}

/* ------------------------------
   商品画像
------------------------------ */
#article.yg-product-detail #image-list {
  width: 100%;
}

#article.yg-product-detail #image-list #image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  background: #f2f1ef;
}

#article.yg-product-detail #image-list #image-container a {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#article.yg-product-detail #image-list #image-container a.active {
  display: block;
}

#article.yg-product-detail #image-list #image-container a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#article.yg-product-detail #image-list #thumb-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin: 0;
  text-align: left;
}

#article.yg-product-detail #image-list #thumb-container a {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ded8d0;
  background: #fff;
  transition: border-color .2s ease, opacity .2s ease;
}

#article.yg-product-detail #image-list #thumb-container a:hover {
  opacity: .78;
}

#article.yg-product-detail #image-list #thumb-container a.active {
  border: 2px solid #b7251d;
  cursor: default;
  opacity: 1;
}

#article.yg-product-detail #image-list #thumb-container a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yg-photo-notes {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e7e1d9;
}

#article.yg-product-detail #image-list .ph-caption {
  margin: 0 0 4px;
  color: #9b958f;
  background: transparent;
  font-size: 10px;
  line-height: 1.65;
}

/* ------------------------------
   商品名
------------------------------ */
.yg-product-heading {
  margin-bottom: 27px;
}

.yg-product-eyebrow {
  margin: 0 0 13px;
  color: #b48c84;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .22em;
}

#article.yg-product-detail h2#product-title {
  margin: 0;
  padding: 0;
  color: #49443f;
  background: transparent;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.62;
  letter-spacing: .025em;
}

/* ------------------------------
   購入パネル
------------------------------ */
.yg-product-summary form {
  margin: 0;
  padding: 0;
  background: transparent;
}

.yg-purchase-panel {
  padding: 27px 30px 25px;
  border: 1px solid #ded7ce;
  background: #f6f2eb;
}

.yg-purchase-panel .form-main-list {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid #d8cfc5;
}

.yg-purchase-panel .form-main-list dt {
  margin: 0 0 11px;
  padding: 0;
  color: #716a64;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .035em;
}

.yg-purchase-panel .form-main-list dt span {
  display: inline-block;
  margin-right: 10px;
  color: #b48c84;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: .17em;
}

.yg-purchase-panel .form-main-list dd.price {
  float: none;
  height: auto;
  margin: 0;
  color: #b7251d;
  font-family: "EB Garamond", "Yu Mincho", "YuMincho", serif;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.yg-purchase-panel .fixed-price,
.yg-purchase-panel .member-regular-price {
  display: block;
  margin: 0 0 3px;
  color: #99918a;
  font-size: 13px;
}

.yg-purchase-panel .form-option-list {
  margin: 0;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid #d8cfc5;
}

.yg-purchase-panel .form-option-list dt {
  margin: 0 0 8px;
  padding: 0;
  color: #514c47;
  background: transparent;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.65;
}

.yg-purchase-panel .form-option-list dd {
  margin: 0;
  padding: 0;
  color: #716a64;
  background: transparent;
  font-size: 11px;
  line-height: 1.75;
}

.yg-purchase-panel .form-option-list dd.form-option-intro {
  margin-bottom: 10px;
  color: #8f8881;
}

.yg-purchase-panel .form-option-list select {
  width: 100%;
  min-height: 43px;
  padding: 8px 34px 8px 12px;
  border: 1px solid #cfc5ba;
  border-radius: 0;
  color: #514c47;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
}

.yg-purchase-panel .strap-option-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  margin: 0 0 6px;
  padding: 12px 13px;
  border: 1px solid #e1dad2;
  background: #fff;
}

.yg-purchase-panel .strap-option-container label {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  float: none;
  margin: 0;
  color: #514c47;
  background: transparent;
  cursor: pointer;
}

.yg-purchase-panel .strap-option-container label input {
  flex: 0 0 auto;
  margin: 0 9px 0 0;
  cursor: pointer;
}

.yg-purchase-panel .strap-option-container label span {
  display: inline;
  float: none;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.yg-purchase-panel .strap-option-container > span {
  display: block;
  flex: 0 0 auto;
  float: none;
  margin: 0;
}

.yg-purchase-panel .strap-option-container a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #c9a09a;
  color: #a7443b;
  font-size: 10px;
  line-height: 1.3;
  text-decoration: none;
}

.yg-purchase-panel .option-caption {
  margin-top: 10px !important;
  color: #948d86 !important;
  font-size: 10px !important;
}

.yg-purchase-panel .num-field {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: #645e58;
  font-size: 12px;
  line-height: 1.5;
}

.yg-purchase-panel .num-field input[type="text"] {
  width: 52px;
  height: 40px;
  padding: 5px;
  border: 1px solid #cfc5ba;
  color: #514c47;
  background: #fff;
  font-size: 14px;
  text-align: center;
}

.yg-purchase-panel .num-stepper {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.yg-purchase-panel .num-stepper a,
.yg-purchase-panel .num-stepper img {
  display: block;
}

.yg-purchase-action {
  margin-top: 24px;
}

.yg-cart-submit {
  display: block;
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #b7251d;
  border-radius: 0;
  color: #fff;
  background: #b7251d;
  box-shadow: none;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: .08em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color .2s ease, background .2s ease;
}

.yg-cart-submit:hover {
  color: #b7251d;
  background: transparent;
}

.yg-purchase-panel .soldout {
  margin-top: 23px;
  padding: 24px 20px;
  border: 1px solid #d5cac0;
  color: #5f5954;
  background: rgba(255,255,255,.55);
  text-align: center;
}

.yg-purchase-panel .soldout .soldout-en {
  display: block;
  margin-bottom: 10px;
  color: #b48c84;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: .25em;
}

.yg-purchase-panel .soldout strong {
  display: block;
  color: #8e352d;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
}

.yg-purchase-panel .soldout p {
  margin-top: 7px;
  color: #8e8780;
  font-size: 10px;
  line-height: 1.7;
}

.yg-shopping-guide-link {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #d8cfc5;
  text-align: center;
}

.yg-shopping-guide-link a {
  color: #716a64;
  font-size: 11px;
  line-height: 1.6;
  text-decoration: none;
}

.yg-shopping-guide-link a span {
  margin-left: 7px;
  color: #b7251d;
}

.yg-shopping-guide-link a:hover {
  color: #b7251d;
}

/* カラーミーが product.info 内に出力する要素 */
.yg-purchase-panel input[type="hidden"] {
  display: none;
}

.yg-purchase-panel table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.yg-purchase-panel table th,
.yg-purchase-panel table td {
  padding: 8px;
  border: 1px solid #ded7ce;
  background: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.6;
}

/* ------------------------------
   商品説明
------------------------------ */
.yg-product-story {
  width: 100%;
  max-width: 820px;
  margin: 96px auto 0;
  padding-top: 56px;
  border-top: 1px solid #ded7ce;
}

.yg-product-story-heading {
  margin: 0 0 43px;
  text-align: center;
}

.yg-product-story-heading > p {
  margin: 0 0 13px;
  color: #b48c84;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .24em;
}

.yg-product-story-heading h3 {
  margin: 0;
  color: #514c47;
  background: transparent;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: .05em;
}

.yg-product-story .detail-caption-section {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #5e5853;
  text-align: left;
  overflow-wrap: anywhere;
}

.yg-product-story .detail-caption-section p,
.yg-product-story .detail-caption-section li,
.yg-product-story .detail-caption-section dd,
.yg-product-story .detail-caption-section div {
  color: #5e5853;
  background: transparent;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .025em;
}

.yg-product-story .detail-caption-section p {
  margin: 0 0 20px;
  padding: 0;
}

.yg-product-story .detail-caption-section p:empty {
  display: none;
}

.yg-product-story .detail-caption-section h3,
.yg-product-story .detail-caption-section h4,
.yg-product-story .detail-caption-section h5 {
  margin: 46px 0 20px;
  padding: 0 0 12px;
  border-bottom: 1px solid #ded7ce;
  color: #514c47;
  background: transparent;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: .04em;
}

.yg-product-story .detail-caption-section img {
  max-width: 100%;
  height: auto;
  margin: 15px auto 30px;
}

.yg-product-story .detail-caption-section hr {
  height: 1px;
  margin: 42px 0;
  border: 0;
  background: #ded7ce;
}

.yg-product-story .detail-caption-section a {
  color: #9e3e36;
}

.yg-product-story .detail-caption-section table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
}

.yg-product-story .detail-caption-section th,
.yg-product-story .detail-caption-section td {
  padding: 12px 14px;
  border: 1px solid #ded7ce;
  font-size: 13px;
  line-height: 1.7;
  vertical-align: top;
}

/* ------------------------------
   ショッピングガイド導線
------------------------------ */
.yg-product-page .shopping-banner {
  width: calc(100% - 80px);
  max-width: 1180px;
  margin: 0 auto 70px;
}

.yg-product-page .shopping-banner a {
  display: grid;
  grid-template-columns: 145px 230px 1fr 24px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 92px;
  padding: 20px 27px;
  border: 1px solid #ded7ce;
  color: #5e5853;
  background: #fff;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.yg-product-page .shopping-banner a:hover {
  border-color: #c9a09a;
  background: #f8f3ed;
}

.shopping-banner-en {
  color: #b48c84;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: .2em;
}

.shopping-banner strong {
  color: #514c47;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.6;
}

.shopping-banner-copy {
  color: #847d76;
  font-size: 11px;
  line-height: 1.7;
}

.shopping-banner-arrow {
  color: #b7251d;
  font-size: 17px;
  text-align: right;
}

/* ------------------------------
   商品が見つからない場合
------------------------------ */
.yg-product-page p.no-item-caption {
  margin: 0;
  padding: 100px 30px;
  color: #716a64;
  font-size: 13px;
  line-height: 2;
  text-align: center;
}

.yg-product-page p.no-item-caption a {
  color: #a23f37;
}

/* ------------------------------
   オプション詳細ポップアップ
------------------------------ */
#popup-container {
  display: none;
}

.detail-popup {
  position: relative;
  width: 680px;
  max-width: calc(100vw - 40px);
  margin: 30px auto;
  overflow: hidden;
  color: #514c47;
  background: #fff;
  text-align: left;
}

.detail-popup > p,
.detail-popup > p.photo {
  margin: 0;
  padding: 0;
}

.detail-popup > p img,
.detail-popup > p.photo img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-popup .text-container {
  margin: 0;
  padding: 32px 38px 40px;
}

.detail-popup .text-container h3 {
  margin: 0 0 22px;
  color: #9f3d35;
  background: transparent;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: normal;
  line-height: 1.65;
}

.detail-popup .text-container p {
  margin: 0 0 15px;
  color: #5e5853;
  background: transparent;
  line-height: 1.9;
}

.detail-popup .text-container p.main-text {
  font-size: 13px;
}

.detail-popup .text-container p.caption-text {
  color: #918a83;
  font-size: 10px;
}

.detail-popup .mfp-close {
  color: #514c47 !important;
  background: rgba(255,255,255,.92) !important;
}

.package-popup .left-column {
  width: 50%;
  float: left;
}

.package-popup .right-column {
  width: 50%;
  float: right;
}

.package-popup h3 {
  margin: 80px 20px 25px;
  color: #514c47;
  background: none;
  font-size: 21px;
  font-weight: normal;
  text-indent: 0;
}

.package-popup .caption {
  margin: 0 25px 20px;
  color: #716a64;
  font-size: 13px;
  line-height: 1.8;
}

/* ------------------------------
   スマートフォン
   このテンプレートは body.sp-mode / 幅640pxで動作します。
------------------------------ */
.sp-mode #main.yg-product-main .bread-crumbs {
  display: none;
}

.sp-mode #article.yg-product-detail {
  padding: 0;
}

.sp-mode #article.yg-product-detail > .inner {
  width: 100%;
  padding: 30px 0 74px;
}

.sp-mode .yg-product-hero {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-mode .yg-product-gallery,
.sp-mode .yg-product-summary {
  width: 100%;
  flex: none;
}

.sp-mode .yg-product-gallery {
  padding: 0 24px;
}

.sp-mode #article.yg-product-detail #image-list #image-container {
  float: none;
  width: 100%;
  height: 0;
  margin: 0 0 14px;
  padding-bottom: 100%;
}

.sp-mode #article.yg-product-detail #image-list #image-container a img {
  width: 100%;
  height: 100%;
}

.sp-mode #article.yg-product-detail #image-list #thumb-container {
  float: none;
  gap: 8px;
  width: 100%;
}

.sp-mode #article.yg-product-detail #image-list #thumb-container a {
  width: 106px;
  height: 106px;
  margin: 0;
}

.sp-mode #article.yg-product-detail #image-list #thumb-container a img {
  width: 100%;
  height: 100%;
}

.sp-mode .yg-photo-notes {
  margin-top: 20px;
  padding-top: 17px;
}

.sp-mode #article.yg-product-detail #image-list .ph-caption {
  clear: both;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.7;
}

.sp-mode .yg-product-summary {
  padding: 54px 30px 0;
}

.sp-mode .yg-product-heading {
  margin-bottom: 34px;
}

.sp-mode .yg-product-eyebrow {
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: .2em;
}

.sp-mode #article.yg-product-detail h2#product-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.6;
}

.sp-mode .yg-purchase-panel {
  padding: 32px 30px 29px;
}

.sp-mode .yg-purchase-panel .form-main-list {
  padding-bottom: 26px;
}

.sp-mode .yg-purchase-panel .form-main-list dt {
  margin-bottom: 13px;
  font-size: 18px;
}

.sp-mode .yg-purchase-panel .form-main-list dt span {
  font-size: 14px;
}

.sp-mode .yg-purchase-panel .form-main-list dd.price {
  font-size: 34px;
}

.sp-mode .yg-purchase-panel .fixed-price,
.sp-mode .yg-purchase-panel .member-regular-price {
  font-size: 19px;
}

.sp-mode .yg-purchase-panel .form-option-list {
  padding: 28px 0;
  border-top: 0;
  border-bottom: 1px solid #d8cfc5;
}

.sp-mode .yg-purchase-panel .form-option-list dt {
  font-size: 22px;
}

.sp-mode .yg-purchase-panel .form-option-list dd {
  font-size: 18px;
}

.sp-mode .yg-purchase-panel .form-option-list dd.option-caption {
  font-size: 16px !important;
}

.sp-mode .yg-purchase-panel .form-option-list select {
  min-height: 66px;
  padding: 10px 18px;
  font-size: 22px;
}

.sp-mode .yg-purchase-panel .strap-option-container {
  min-height: 66px;
  margin-bottom: 8px;
  padding: 14px 16px;
}

.sp-mode .yg-purchase-panel .strap-option-container label span {
  font-size: 20px;
}

.sp-mode .yg-purchase-panel .strap-option-container a {
  font-size: 17px;
}

.sp-mode .yg-purchase-panel .num-field {
  margin-top: 28px;
  font-size: 20px;
}

.sp-mode .yg-purchase-panel .num-field input[type="text"] {
  width: 70px;
  height: 56px;
  font-size: 22px;
}

.sp-mode .yg-purchase-action {
  margin-top: 30px;
}

.sp-mode .yg-cart-submit {
  height: 76px;
  font-size: 24px;
}

.sp-mode .yg-purchase-panel .soldout {
  padding: 29px 22px;
}

.sp-mode .yg-purchase-panel .soldout .soldout-en {
  font-size: 15px;
}

.sp-mode .yg-purchase-panel .soldout strong {
  font-size: 24px;
}

.sp-mode .yg-purchase-panel .soldout p {
  font-size: 17px;
}

.sp-mode .yg-shopping-guide-link {
  margin-top: 27px;
  padding-top: 23px;
}

.sp-mode .yg-shopping-guide-link a {
  font-size: 18px;
}

.sp-mode .yg-purchase-panel table th,
.sp-mode .yg-purchase-panel table td {
  font-size: 17px;
}

.sp-mode .yg-product-story {
  width: auto;
  max-width: none;
  margin: 78px 30px 0;
  padding-top: 54px;
}

.sp-mode .yg-product-story-heading {
  margin-bottom: 47px;
}

.sp-mode .yg-product-story-heading > p {
  margin-bottom: 15px;
  font-size: 16px;
}

.sp-mode .yg-product-story-heading h3 {
  font-size: 31px;
}

.sp-mode .yg-product-story .detail-caption-section p,
.sp-mode .yg-product-story .detail-caption-section li,
.sp-mode .yg-product-story .detail-caption-section dd,
.sp-mode .yg-product-story .detail-caption-section div {
  font-size: 21px;
  line-height: 2;
}

.sp-mode .yg-product-story .detail-caption-section p {
  margin-bottom: 27px;
}

.sp-mode .yg-product-story .detail-caption-section h3,
.sp-mode .yg-product-story .detail-caption-section h4,
.sp-mode .yg-product-story .detail-caption-section h5 {
  margin: 54px 0 24px;
  padding-bottom: 16px;
  font-size: 27px;
}

.sp-mode .yg-product-story .detail-caption-section th,
.sp-mode .yg-product-story .detail-caption-section td {
  padding: 15px;
  font-size: 19px;
}

.sp-mode .yg-product-page .shopping-banner {
  width: auto;
  margin: 0 30px 55px;
}

.sp-mode .yg-product-page .shopping-banner a {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 6px 15px;
  min-height: 0;
  padding: 27px 25px;
}

.sp-mode .shopping-banner-en {
  grid-column: 1;
  font-size: 14px;
}

.sp-mode .shopping-banner strong {
  grid-column: 1;
  font-size: 24px;
}

.sp-mode .shopping-banner-copy {
  grid-column: 1;
  font-size: 17px;
}

.sp-mode .shopping-banner-arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  font-size: 25px;
}

.sp-mode .yg-product-page p.no-item-caption {
  padding: 100px 35px;
  font-size: 22px;
}

.sp-mode .detail-popup {
  width: 580px;
  max-width: 580px;
}

.sp-mode .detail-popup .text-container {
  padding: 35px 32px 42px;
}

.sp-mode .detail-popup .text-container h3 {
  font-size: 29px;
}

.sp-mode .detail-popup .text-container p.main-text {
  font-size: 20px;
}

.sp-mode .detail-popup .text-container p.caption-text {
  font-size: 17px;
}

.sp-mode .detail-popup .mfp-close,
.sp-mode .mfp-gallery .mfp-close {
  width: 74px;
  height: 74px;
  font-size: 54px !important;
}

/* PCの狭い画面だけ少し詰める */
@media only screen and (min-width: 641px) and (max-width: 1050px) {
  #main.yg-product-main .bread-crumbs {
    padding-right: 30px;
    padding-left: 30px;
  }

  #article.yg-product-detail > .inner {
    width: calc(100% - 60px);
  }

  .yg-product-hero {
    gap: 40px;
  }

  .yg-purchase-panel {
    padding-right: 23px;
    padding-left: 23px;
  }
}

/* ------------------------------
   SP：ヘッダー下へ移動された商品名の余白
   common.js が商品名を見出し枠から移動した場合だけ適用します。
------------------------------ */
.sp-mode #article.yg-product-detail > h2#product-title,
.sp-mode #article.yg-product-detail > .inner > h2#product-title,
.sp-mode #article.yg-product-detail .yg-product-hero > h2#product-title {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 32px !important;
  padding: 36px 28px 0 !important;
  line-height: 1.55;
}

/* =========================================================
   GICLEE / LIMITED EDITION
========================================================= */
#article.yg-product-detail--giclee .yg-product-eyebrow {
  color: #a96666;
  letter-spacing: 0.19em;
}

#article.yg-product-detail--giclee .form-main-list dt span {
  letter-spacing: 0.14em;
}

#article.yg-product-detail .yg-giclee-edition-note {
  margin: 20px 0 28px;
  padding: 17px 19px;
  border-top: 1px solid rgba(169, 47, 50, 0.22);
  border-bottom: 1px solid rgba(169, 47, 50, 0.22);
  background: rgba(255, 250, 246, 0.72);
  color: #716964;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 12px;
  line-height: 1.9;
}

#article.yg-product-detail .yg-giclee-edition-note span {
  display: block;
  margin-bottom: 7px;
  color: #a96666;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.sp-mode #article.yg-product-detail .yg-giclee-edition-note {
  margin: 25px 0 34px;
  padding: 22px 23px;
  font-size: 17px;
  line-height: 1.85;
}

.sp-mode #article.yg-product-detail .yg-giclee-edition-note span {
  margin-bottom: 9px;
  font-size: 12px;
}

/* =========================================================
   PURCHASE SUPPORT / 購入直前の安心
========================================================= */
#article.yg-product-detail .yg-purchase-assurance {
  display: flex;
  margin: 18px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(124, 108, 97, .16);
  flex-wrap: wrap;
  gap: 7px 14px;
  color: #80776f;
  font-size: 10px;
  line-height: 1.7;
}

#article.yg-product-detail .yg-purchase-assurance span::before {
  margin-right: 6px;
  color: #b33a34;
  content: '\2022';
}

#article.yg-product-detail .yg-purchase-assurance a {
  color: #9e302c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#article.yg-product-detail .soldout .yg-sold-letter {
  display: flex;
  min-height: 52px;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid rgba(174, 54, 48, .45);
  align-items: center;
  justify-content: space-between;
  color: #a22d29;
  font-size: 12px;
  line-height: 1.65;
  text-decoration: none;
}

#article.yg-product-detail .soldout .yg-sold-letter b {
  margin-left: 12px;
  font-family: 'Times New Roman', serif;
  font-size: 17px;
  font-weight: normal;
}

/* =========================================================
   MOBILE STICKY PURCHASE
========================================================= */
.yg-sticky-purchase {
  display: none;
}

.sp-mode .yg-sticky-purchase {
  position: fixed;
  z-index: 9990;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  box-sizing: border-box;
  min-height: 78px;
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(151, 110, 99, .28);
  background: rgba(253, 249, 243, .97);
  box-shadow: 0 -8px 28px rgba(74, 59, 48, .10);
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity .24s ease, transform .28s ease;
}

.sp-mode .yg-sticky-purchase.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-mode .yg-sticky-purchase__meta {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

.sp-mode .yg-sticky-purchase__meta small {
  display: block;
  overflow: hidden;
  margin-bottom: 3px;
  color: #a57972;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .13em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-mode .yg-sticky-purchase__meta > span {
  display: block;
  overflow: hidden;
  color: #4f4944;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-mode .yg-sticky-purchase__meta > span * {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

.sp-mode #yg-sticky-cart-button {
  min-width: 190px;
  min-height: 54px;
  padding: 10px 16px;
  border: 1px solid #b72a25;
  border-radius: 0;
  background: #b72a25;
  color: #fff;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: .05em;
  -webkit-appearance: none;
  appearance: none;
}

body.sp-mode.yg-sticky-enabled {
  padding-bottom: calc(82px + env(safe-area-inset-bottom));
}

/* =========================================================
   RELATED WORKS / 似た光をもつ作品
========================================================= */
#article.yg-product-detail .yg-related-works,
#article.yg-product-detail .yg-related-works * {
  box-sizing: border-box;
}

#article.yg-product-detail .yg-related-works {
  margin: 72px 0 10px;
  padding: 48px 45px 50px;
  border: 1px solid rgba(139, 116, 104, .19);
  background: #f8f4ee;
}

#article.yg-product-detail .yg-related-works__heading {
  margin-bottom: 30px;
  text-align: center;
}

#article.yg-product-detail .yg-related-works__heading > p {
  margin: 0 0 9px;
  color: #a77b74;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .24em;
}

#article.yg-product-detail .yg-related-works__heading h3 {
  margin: 0;
  color: #4f4944;
  font-family: 'Reimin Y10 Medium', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: .07em;
}

#article.yg-product-detail .yg-related-works__heading > span {
  display: block;
  margin-top: 8px;
  color: #8a817a;
  font-size: 11px;
  line-height: 1.8;
}

#article.yg-product-detail .yg-related-works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#article.yg-product-detail .yg-related-work {
  min-width: 0;
  background: #fffdfa;
}

#article.yg-product-detail .yg-related-work > a {
  display: block;
  height: 100%;
  border: 1px solid rgba(136, 114, 103, .16);
  color: #554f49;
  text-decoration: none;
  transition: border-color .22s ease, transform .22s ease;
}

#article.yg-product-detail .yg-related-work > a:hover {
  border-color: rgba(174, 54, 48, .42);
  transform: translateY(-2px);
}

#article.yg-product-detail .yg-related-work__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3f0eb;
}

#article.yg-product-detail .yg-related-work__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

#article.yg-product-detail .yg-related-work__body {
  display: block;
  padding: 18px 18px 20px;
}

#article.yg-product-detail .yg-related-work__body strong,
#article.yg-product-detail .yg-related-work__body small,
#article.yg-product-detail .yg-related-work__body em,
#article.yg-product-detail .yg-related-work__body i {
  display: block;
  font-style: normal;
}

#article.yg-product-detail .yg-related-work__body strong {
  min-height: 3.2em;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}

#article.yg-product-detail .yg-related-work__body small {
  margin-top: 7px;
  color: #9a9189;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9px;
  line-height: 1.5;
}

#article.yg-product-detail .yg-related-work__body em {
  margin-top: 10px;
  color: #a42d29;
  font-size: 12px;
  line-height: 1.5;
}

#article.yg-product-detail .yg-related-work__body i {
  margin-top: 15px;
  color: #8a7068;
  font-size: 10px;
  line-height: 1.5;
}

.sp-mode #article.yg-product-detail .yg-purchase-assurance {
  margin-top: 24px;
  padding-top: 19px;
  gap: 9px 16px;
  font-size: 15px;
}

.sp-mode #article.yg-product-detail .soldout .yg-sold-letter {
  min-height: 62px;
  margin-top: 27px;
  padding: 13px 17px;
  font-size: 16px;
}

.sp-mode #article.yg-product-detail .yg-related-works {
  margin: 62px 0 8px;
  padding: 42px 22px 28px;
}

.sp-mode #article.yg-product-detail .yg-related-works__heading {
  margin-bottom: 28px;
}

.sp-mode #article.yg-product-detail .yg-related-works__heading > p {
  font-size: 11px;
}

.sp-mode #article.yg-product-detail .yg-related-works__heading h3 {
  font-size: 30px;
}

.sp-mode #article.yg-product-detail .yg-related-works__heading > span {
  margin-top: 10px;
  font-size: 15px;
}

.sp-mode #article.yg-product-detail .yg-related-works__grid {
  display: block;
}

.sp-mode #article.yg-product-detail .yg-related-work + .yg-related-work {
  margin-top: 12px;
}

.sp-mode #article.yg-product-detail .yg-related-work > a {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 145px;
}

.sp-mode #article.yg-product-detail .yg-related-work__image {
  height: 100%;
  min-height: 145px;
  aspect-ratio: auto;
}

.sp-mode #article.yg-product-detail .yg-related-work__body {
  padding: 19px 18px;
}

.sp-mode #article.yg-product-detail .yg-related-work__body strong {
  min-height: 0;
  font-size: 17px;
}

.sp-mode #article.yg-product-detail .yg-related-work__body small {
  font-size: 11px;
}

.sp-mode #article.yg-product-detail .yg-related-work__body em {
  font-size: 15px;
}

.sp-mode #article.yg-product-detail .yg-related-work__body i {
  margin-top: 9px;
  font-size: 12px;
}

@media screen and (max-width: 420px) {
  .sp-mode #yg-sticky-cart-button {
    min-width: 170px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-mode .yg-sticky-purchase,
  #article.yg-product-detail .yg-related-work > a {
    transition: none;
  }
}
