@charset "UTF-8";
/* ----------------
  値組エリア
---------------- */
.spec-section {
  /* カスタムプロパティは body 側に置いて継承で全体へ届かせる
     （JS: assets/js/product/product-mock.js が :root に上書きする際の初期値） */
}
.product-lp {
  --head-height: 0px;
  --move-menu-extra: 0px;
}

.product-lp #product-col-set {
  position: relative;
}

@media screen and (min-width: 768px) {
  .product-lp #product-col-set {
    display: flex;
    align-items: flex-start;
    /* これがないと子が伸びてstickyが効かない */
  }
}
.spec-section {
  /* onlypc：767px以下では非表示、768px以上で表示 */
}
.product-lp .onlypc {
  display: none;
}

@media screen and (min-width: 768px) {
  .product-lp .onlypc {
    display: block;
  }
}
.spec-section {
  /* onlysp：768px以上では非表示、767px以下で表示 */
}
@media screen and (min-width: 768px) {
  .product-lp .onlysp {
    display: none;
  }
}
.spec-section {
  /* アンカー補正・inner-nav の表示はSP（767px以下）のみ */
}
@media screen and (max-width: 767px) {
  .spec-section #product-features,
  .spec-section #product-detail,
  .spec-section #app-review,
  .spec-section #product-faq {
    scroll-margin-top: var(--head-height);
  }
}
.spec-section {
  /* PC（768px以上）ではinner-navを完全非表示 */
}
@media screen and (min-width: 768px) {
  .spec-section .inner-nav__area {
    display: none;
  }
}
.spec-section .embed-video {
  position: relative;
  padding: 56.25% 0 0;
  margin-top: 20px;
}
.spec-section .video {
  max-width: 811.41px;
  margin: 0 auto;
}
.spec-section {
  /* PCでは親カラム幅に収める（75.13vwだと右カラムからはみ出すため） */
}
@media screen and (min-width: 768px) {
  .spec-section .video {
    width: 100%;
  }
}
.spec-section .anchor {
  display: block;
  padding-top: 300px;
  margin-top: -300px;
}
.spec-section {
  /* 「この商品を買う」ボタン：位置・アニメーション */
}
.product-lp #fixed-cart_lp {
  position: fixed;
  z-index: 5;
  top: auto;
  bottom: -10px;
  left: 0;
  width: 100%;
}

.product-lp #fixed-cart_lp .btn {
  position: absolute;
  right: 20px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.product-lp #fixed-cart_lp.show .btn {
  -webkit-transform: translate3d(0, -75px, 0);
  transform: translate3d(0, -75px, 0);
}

.spec-section {
  /* 「この商品を買う」ボタン：カートアイコン */
}
.product-lp #fixed-cart_lp .btn > * {
  position: relative;
}

.product-lp #fixed-cart_lp span {
  padding: 0 50px 0 30px;
}

.product-lp #fixed-cart_lp span::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: -3px;
  right: 20px;
  background-image: url(https://www.cataloghouse.co.jp/assets/images/icon_cart.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 25px 25px;
}

.spec-section {
  /* PC「この商品を買う」ボタン追加スタイル */
}
@media screen and (min-width: 768px) {
  .product-lp #fixed-cart_lp .btn > * {
    min-width: 220px;
    box-shadow: 0 5px 30px rgba(133, 40, 40, 0.5);
  }
}
.spec-section {
  /* SP：固定解除した「この商品を買う」ボタンがハッシュタグと
     重ならないよう、ハッシュタグ下に余白を確保 */
}
@media screen and (max-width: 767px) {
  .product-lp #app-hashtag-sp {
    margin-bottom: 80px;
  }
}
.spec-section {
  /* SP「この商品を買う」ボタン：
     本家 products_2307.css の #fixed-cart（SP）と同じ
     「幅 calc(100% - 6vw)・左右3vwの余白」にする */
}
@media screen and (max-width: 767px) {
  .product-lp #fixed-cart_lp {
    width: calc(100% - 6vw);
    min-width: 0;
    left: 3vw;
    bottom: -15px;
  }
  .product-lp #fixed-cart_lp .btn {
    width: 100%;
    left: auto;
    right: auto;
  }
  .product-lp #fixed-cart_lp .btn a {
    display: block;
    width: 100%;
    margin: 0;
    box-shadow: 0 5px 50px 0 rgba(133, 40, 40, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .spec-section #product-img ul.thumb {
    display: none;
  }
}
.spec-section .prod-img-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.spec-section {
  /* リロード時のちらつき対策1：
     Swiper初期化前は1枚目以外のスライドを隠す（縦積み・二重表示防止） */
}
.spec-section #main-product-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.spec-section {
  /* リロード時のちらつき対策2：
     共通JS（bundle.js）が #product-img 直下に生成する旧ギャラリーdivを常に非表示 */
}
.spec-section #product-img > div:not(#main-product-swiper):not(#main-product-pagination):not(#app-hashtag-pc) {
  display: none !important;
}
.spec-section {
  /* リロード時のちらつき対策3：
     共通CSS（products_2307.css）には Slick初期化前の ul.img > li の
     レイアウトが定義されておらず、生のHTMLは<li>がブロック要素として
     縦に積み重なって見える（実際にそう見えることを確認済み）。
     対策1（Swiper版）と同じ考え方で、1枚目以外を最初から非表示にする。
     Slickは初期化時に元の<li>を ul.img の直接の子から
     .slick-track（ul.imgの子孫）の中へ移すため（.thumb側の
     #product-img ul.thumb .slick-track 参照）、下のセレクタは
     直接子コンビネータ(>)を使うことで初期化後は自動的に効かなくなる。
     タイミングやクラス名を推測する必要がないので確実。 */
}
#product-img ul.img > li:not(:first-child) {
  display: none;
}

.spec-section .prod-img-swiper .swiper-slide img {
  width: 100%;
  display: block;
}
.spec-section .prod-img-swiper .swiper-slide {
  position: relative;
}
.spec-section .prod-img-swiper .swiper-slide span {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 8px;
  background: rgba(255, 255, 255, 0.85);
}
.spec-section .prod-img-swiper .swiper-slide span:empty {
  display: none;
}
.spec-section #silk-process-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
}
.spec-section #silk-process-swiper .swiper-slide img {
  flex: 1 1 auto;
}
.spec-section #silk-process-swiper .swiper-slide span {
  min-height: calc(4em + 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-section {
  /* PCのみ：製法スライダーのキャプションを1remに */
}
@media screen and (min-width: 768px) {
  .spec-section #silk-process-swiper .swiper-slide span {
    font-size: 1rem;
  }
}
.spec-section {
  /* PCのみ：メーカー紹介ボックス内の p.s を1remに、画像を中央寄せ */
}
@media screen and (min-width: 768px) {
  .spec-section .detail-section__content .box p.maker-desc {
    font-size: 1.1rem !important; /* 共通CSSの .s { font-size:.88rem !important } を上書き */
  }
  .spec-section .detail-section__content .box img.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.spec-section {
  /* PCのみ：養蚕農家スライダーは画像の高さを正方形に統一し、
     キャプションを1remに */
}
@media screen and (min-width: 768px) {
  .spec-section #silk-farming-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .spec-section #silk-farming-swiper .swiper-slide span {
    font-size: 1rem;
  }
}
.product-lp .product-copy {
  font-size: 1rem;
  color: #000;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-feature-settings: "palt" on;
  letter-spacing: 1px;
}

.prod-swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  text-align: center;
  padding: 4px 0 4px;
}

.prod-swiper-pagination .swiper-pagination-bullet {
  background: #888;
  opacity: 0.6;
}

.prod-swiper-pagination .swiper-pagination-bullet-active {
  background: #c00;
  opacity: 1;
}

.product-lp .product-copy {
  font-size: 1rem;
  color: #000;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-feature-settings: "palt" on;
  letter-spacing: 0.5px;
}

.product-rating {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  font-size: 1rem;
}

.product-rating .stars {
  color: #e47911;
  letter-spacing: -1px;
  font-size: 1.2rem;
}

.product-rating a {
  color: #0066c0;
  text-decoration: underline;
}

.prod-cart-area {
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .prod-img-swiper .swiper-slide span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .prod-img-swiper .swiper-slide a {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .spec-section {
    /* 「画像を拡大」ボタン: 参照サイトに合わせて円形アイコン・右上配置 */
  }
  .prod-img-swiper .swiper-slide a {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    background-color: #8b7f78;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    transition: background-color 0.2s linear;
    z-index: 1;
  }
  .spec-section {
    /* アイコンはスプライト画像で::afterに表示 */
  }
  .prod-img-swiper .swiper-slide a::after {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 8px;
    left: 8px;
    background-image: url(https://www.cataloghouse.co.jp/assets/images/icon_link.png);
    background-repeat: no-repeat;
    background-position: -168px -144px;
    background-size: 480px 240px;
  }
  .spec-section .prod-img-swiper .swiper-slide a:hover {
    background-color: #a29993;
  }
  .product-title-sub {
    margin-top: 0;
  }
  .product-lp #product-title {
    padding: 0;
  }
  .spec-section {
    /* products_2307.cssの「#product-img > div { opacity: 0 }」でSwiperが
       非表示になるのを防ぐ（divの直子全てがopacity:0の対象になるため） */
  }
  #main-product-swiper {
    position: relative !important;
    width: 100% !important;
    max-width: 468px !important;
    opacity: 1 !important;
    top: auto !important;
    transition: none !important;
    /* swiper-bundle.cssの「.swiper { margin: auto }」による中央寄せを解除して左寄せに */
    margin: 0 !important;
  }
  .spec-section {
    /* ==============================================
       画像カラムのスクロール追従をJS（bundle.js）の
       .fixed / .bottom-fixed 切り替えからCSSのstickyに置き換える。
       stickyは親（#product-col-set）の下端＝「よくあるご質問」の
       直前で自動的に解除される。

       ★ここから #product-img ul.thumb までは #product-img を Swiper
         （<div id="main-product-swiper">）に置き換えたモック用。
         AB対象2ページは標準テンプレの <div><ul class="img"> のままなので、
         .spec-section スコープ＝現状は不活性。body（.product-lp）へ移すと
         #product-img > div が position:absolute / opacity:0 のままとなり
         画像カラムが潰れるため、Swiper化するまで移してはいけない。
       ============================================== */
  }
  .spec-section #product-col-set {
    display: flex;
    align-items: flex-start;
    /* これがないと子が伸びてstickyが効かない */
  }
  #product-img,
  #product-img.fixed,
  #product-img.bottom-fixed {
    position: -webkit-sticky !important;
    position: sticky !important;
    /* 固定ヘッダー高さの推測値がズレるとスクロール時に画像がヘッダーの下に
       潜り込んで見切れる不具合があったため、product-mock.js で実測した値
       （--product-img-sticky-top）を使う形に変更。JS未実行時は158pxにフォールバック。
       元のコード: top: 158px !important; 固定ヘッダーの高さ(約145px)+余白20px */
    top: var(--product-img-sticky-top, 158px) !important;
    bottom: auto !important;
    left: auto !important;
    flex: 0 0 40%;
    width: 40% !important;
    height: auto !important;
    /* JSが設定するinlineのheightを無効化 */
    margin: 0;
  }
  #product-txt {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    float: none !important;
  }
  .spec-section {
    /* common.cssの「main { overflow: hidden }」があると
       祖先のoverflow指定によりposition: stickyが機能しないため打ち消す。
       横方向のはみ出しクリップは clip で維持（clipはstickyを妨げない）。
       ※ main は .spec-section の「祖先」なので「.spec-section main」は誰にも当たらない
         ＝上のsticky一式と同じく現状は不活性。Swiper化して sticky を有効にする際に、
         このルールも @at-root .product-lp main へ移すこと。 */
  }
  main {
    overflow: visible;
    overflow: clip visible;
  }
  .spec-section {
    /* ハッシュタグ：同じくdivの直子なのでopacity:0になる → 常時表示に固定 */
  }
  #product-img #app-hashtag-pc {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    top: auto !important;
    /* products_2307.cssの「#product-img > div」の幅指定で狭くなるのを防ぎ、
       カラム幅いっぱいに表示 */
    width: 100% !important;
    max-width: 100% !important;
  }
  .spec-section {
    /* ページネーションドットは非表示 */
  }
  #main-product-pagination {
    display: none !important;
  }
  .spec-section {
    /* サムネイルを画像の下に横一列で並べる（左カラム幅以内に収める） */
  }
  #product-img ul.thumb {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    width: 100%;
    max-width: 468px;
    overflow: hidden;
    /* Slick初期化前にliが縦積み＆拡大表示される
       （リロード時に1枚目サムネイルが大きく二重に見える）のを防ぐ。
       初期化後は子が.slick-list1個になるので影響なし */
    display: flex;
  }
  #product-img ul.thumb > li {
    flex: 1 1 0;
    min-width: 0;
  }
  .spec-section {
    /* Slickが挿入する.slick-list/.slick-trackもflexboxで並べ直す */
  }
  #product-img ul.thumb .slick-list {
    overflow: visible !important;
    width: 100% !important;
  }
  #product-img ul.thumb .slick-track {
    display: flex !important;
    width: 100% !important;
    transform: none !important;
  }
  .spec-section {
    /* 7枚均等幅（5pxマージン込み）で並べる */
  }
  #product-img ul.thumb li {
    flex: 1 1 0 !important;
    width: auto !important;
    float: none !important;
    margin: 0 5px 0 0 !important;
    left: auto !important;
    opacity: 1 !important;
    position: relative !important;
  }
  #product-img ul.thumb li:last-child {
    margin-right: 0 !important;
  }
  #product-img ul.thumb li a {
    position: relative;
    display: block;
  }
  .spec-section {
    /* 参照サイトと同じ::afterボーダー方式 */
  }
  #product-img ul.thumb li a::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: solid 0 #8b7f78;
    transition: border-width 0.2s ease-out;
  }
  .spec-section {
    /* アクティブサムネイル: slick-currentを使用 */
  }
  #product-img ul.thumb .slick-current a::after {
    border-width: 5px;
  }
  #product-img ul.thumb li img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.spec-section .prod-btn-cart {
  display: block;
  width: 100%;
  background: #a41a1a;
  border: 1px solid #8a1515;
  border-radius: 100px;
  color: #fff !important;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background 0.15s;
}
.spec-section .prod-btn-cart:hover {
  background: #d06262;
}
.spec-section .prod-features {
  border-radius: 4px;
  padding: 12px 0;
  margin: 0 0 20px;
  font-feature-settings: "palt" on;
  text-align: justify;
}
.spec-section .prod-features-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 0 6px;
  margin: 0 0 12px;
}
.spec-section .prod-features ul {
  margin: 0;
}
.spec-section .prod-features ul li {
  font-size: 1rem;
  color: #333;
  margin: 0 0 4px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.spec-section {
  /* 金額の縮小はSPのみ（PCは共通CSSの元サイズ） */
}
@media screen and (max-width: 767px) {
  .spec-section .cart-price-set {
    font-size: 0.9rem;
  }
  .spec-section .cart-price-set .num {
    font-size: 0.9rem;
  }
  .spec-section {
    /* special-cart-box内の価格数値を大きく（.cart-price-set .numより詳細度を高くして上書き） */
  }
  #special-cart-box .num {
    font-size: 1.4rem;
  }
}
.spec-section {
  /* PCのみ：special-cart-box内の価格数値を大きく */
}
@media screen and (min-width: 768px) {
  #special-cart-box .num {
    font-size: 1.6em;
  }
}
.spec-section .inner-nav__area {
  position: fixed;
  top: -64px;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  z-index: 102;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.spec-section .inner-nav__area.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.spec-section .inner-nav__top {
  flex-shrink: 0;
  width: 46px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-right: 1px solid #e4e4e4;
}
.spec-section .inner-nav__links {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: space-evenly;
  width: 100%;
}
.spec-section .inner-nav__links::-webkit-scrollbar {
  display: none;
}
.spec-section .inner-nav__link {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
}
.spec-section .inner-nav__link:hover {
  opacity: 0.7;
}
.spec-section .detail-section {
  margin: 0 0 24px 0;
  font-feature-settings: "palt" on;
  text-align: justify;
  display: flex;
  flex-direction: column;
}
.spec-section .detail-section__heading {
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  padding: 0 0 6px;
  margin: 0 0 8px;
}
.spec-section .detail-section__title {
  margin-bottom: 16px !important;
}
.spec-section .product-voice {
  padding: 16px 16px 0 16px;
}
p.label {
  font-size: 0.85rem;
  border-radius: 100px;
}

.spec-section .spec-accordion {
  border-top: 1px solid #e4e4e4;
}
.spec-section .spec-accordion__item {
  border-bottom: 1px solid #e4e4e4;
}
.spec-section .spec-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  color: #111;
  text-align: left;
}
.spec-section .spec-accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.spec-section .spec-accordion__inner table {
  border: solid 1px #e6e1db;
}
.spec-section .spec-accordion__inner {
  padding: 24px;
  border: solid 1px #dedede;
  border-bottom: 0;
}
.spec-section {
  /* 「仕様」「環境情報」はpaddingとborderを外す */
}
.spec-section .spec-accordion__item-spec .spec-accordion__inner {
  padding: 4px 0 16px;
  border: none;
}
@media screen and (min-width: 768px) {
  .spec-section .spec-accordion__header {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .spec-section .spec-accordion__header {
    font-size: 1.2rem;
    padding: 18px 4px;
  }
}
.spec-section {
  /* 高さが一定を超えたら「もっと見る」で開閉する共通コンポーネント */
}
.spec-section .expand-box {
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.spec-section .expand-box__body {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.spec-section .expand-box__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 3.646%, white 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.spec-section {
  /* #app-reviewは.boxの背景色(#f7f3ed)を継承するため、グラデーションの終端色を合わせる */
}
.spec-section #app-review-list .expand-box__footer {
  background: linear-gradient(to bottom, rgba(247, 243, 237, 0) 3.646%, #f7f3ed 50%);
}
.spec-section .expand-box__footer.is-open {
  position: static;
  height: auto;
  background: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
.spec-section .expand-box__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  color: #111;
  padding: 0;
}
.spec-section .expand-box__toggle-icon {
  transition: transform 0.25s ease;
  color: #555;
}
.spec-section .expand-box__toggle.is-open .expand-box__toggle-icon {
  transform: rotate(180deg);
}
.spec-section {
  /* 動画枠（liveactプレイヤー等）。LP専用だった .p-section3__movie を汎用化。
     LPは幅高さ固定（PC 450×284.1px）だったが、商品ページは右カラム幅が可変なので
     width:100% + aspect-ratio で追従させる。
     枠線と上余白はモックに合わせて持たせない（上は直前の p の下余白でとる）。
     下は common.css の `main p` と同じリズム（PC20px / SP15px）で次の段落と離す */
}
.spec-section .detail-movie {
  width: 100%;
  aspect-ratio: 450/284;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .spec-section .detail-movie {
    margin-bottom: 15px;
  }
}
.spec-section .related-card {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}
.spec-section .related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 298px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.spec-section .related-list.is-open {
  max-height: 1200px;
}
.spec-section .related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4e4e4;
  flex-shrink: 0;
}
.spec-section .related-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.spec-section {
  /* PCのみ：hover時はサイト他箇所と同じくオパシティ70%（色は変えない） */
}
@media screen and (min-width: 768px) {
  .spec-section .related-item {
    transition: opacity 0.2s linear;
  }
  .spec-section .related-item:hover {
    opacity: 0.7;
    color: #111;
  }
  .spec-section .related-item:hover .related-item__name,
  .spec-section .related-item:hover .related-item__price {
    color: #111;
  }
}
.spec-section .related-item__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}
.spec-section .related-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.spec-section .related-item__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
  margin-bottom: 0;
}
.spec-section .related-item__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 0;
}
.spec-section .related-item__price-num {
  /* カート内金額（main .num）と同じフォントに揃える */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3em;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0;
  padding: 0 0.2em;
  font-weight: normal;
}
.spec-section {
  /* PCのみ関連商品カードの文字を大きく
     （基本指定より後に書かないと後勝ちで上書きされるためここに置く） */
}
@media screen and (min-width: 768px) {
  .spec-section .related-item__name {
    font-size: 17px;
  }
  .spec-section .related-item__price {
    font-size: 17px;
  }
}
.spec-section .related-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 3.646%, white 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding-bottom: 14px;
}
.spec-section .related-footer.is-open {
  position: static;
  height: auto;
  background: none;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 4px;
}
.spec-section .related-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: #111;
  padding: 0;
}
.spec-section .related-toggle__icon {
  transition: transform 0.25s ease;
  color: #555;
}
.spec-section .related-toggle.is-open .related-toggle__icon {
  transform: rotate(180deg);
}
.product-title-sub {
  font-weight: normal;
  margin-bottom: 0px;
  font-size: 0.85rem;
  margin-top: 16px;
}

.spec-section .product-faq-question {
  font-weight: normal;
}
.spec-section .doctor-profile__heading {
  margin-bottom: 16px;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
}
.spec-section {
  /* 開発者プロフィール（写真左・タイトル＋名前右）を横並び左寄せ（PC・SP共通） */
}
.spec-section .doctor-profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}
.spec-section .doctor-profile .img {
  order: 1; /* 写真を左に */
  margin: 0;
  text-align: left;
  flex-shrink: 0;
}
.spec-section .doctor-profile__text {
  order: 2; /* タイトル＋名前を右に */
  text-align: left; /* 親(.detail-section)のjustifyを解除 */
}
.spec-section .doctor-profile__text h5 {
  margin: 0 0 8px;
}
.spec-section .doctor-profile .doctor-profile__heading {
  margin: 0;
}
.spec-section {
  /* PCのみ：doctor-profile__headingをひとつ大きく */
}
@media screen and (min-width: 768px) {
  .spec-section .doctor-profile__heading {
    font-size: 1.13rem;
  }
}
.spec-section {
  /* 画像＋テキスト横並びの特徴ブロック */
}
.spec-section .c-media-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0;
}
.spec-section .c-media {
  display: flex;
  align-items: center;
  gap: 24px;
}
.spec-section .c-media__img {
  width: 42%;
  max-width: 300px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.spec-section .c-media__title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}
.spec-section .c-media__text {
  margin: 0;
  line-height: 1.6;
}
.spec-section .cosmetics-container {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.spec-section .cosmetics-heading {
  margin-bottom: 16px;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  border-left: #8a1515 2px solid;
  padding-left: 16px;
}
.spec-section .cosmetics-heading-sub {
  margin-bottom: 16px;
  color: #000;
  font-size: 0.85rem;
  font-weight: normal;
  line-height: 1.6;
}
.spec-section {
  /* PCのみ：cosmetics-headingを少し大きく */
}
@media screen and (min-width: 768px) {
  .spec-section .cosmetics-heading {
    font-size: 1.15rem;
  }
  .spec-section {
    /* 化粧品憲法ブロック内の本文（15の使わないリスト等）も大きく
       （共通CSSの .s { font-size:.88rem !important } を上書き） */
  }
  .spec-section .cosmetics-container p.s {
    font-size: 1.1rem !important;
  }
  .spec-section .cosmetics-heading-sub {
    font-size: 1rem;
  }
}
.spec-section .p-cosmetics-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.spec-section .p-cosmetics-doctor {
  width: 33.333%;
  text-align: center;
  padding: 4px;
  box-sizing: border-box;
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.spec-section .p-cosmetics-doctor__pic {
  width: 100%;
  height: auto;
  display: block;
}
.spec-section .p-cosmetics-doctor__name {
  font-size: 0.85em;
  margin-bottom: 0;
}
.spec-section .p-cosmetics-doctor__profile {
  font-size: 0.75em;
  line-height: 1.4;
}
.spec-section {
  /* PCのみ：専門家の名前・肩書きを大きく（基本指定より後に置くこと） */
}
@media screen and (min-width: 768px) {
  .spec-section .p-cosmetics-doctor__name {
    font-size: 1.1rem;
  }
  .spec-section .p-cosmetics-doctor__profile {
    font-size: 0.95rem;
  }
}
.spec-section .toritsuke-section {
  background: #fff;
  padding: 16px 16px 8px 16px;
  margin-bottom: 16px;
  font-feature-settings: "palt" on;
  text-align: justify;
}
.spec-section .toritsuke-header {
  margin: 20px 0 20px;
  color: #000;
  font-size: 1rem !important;
  font-weight: bold;
  line-height: 1.6;
}
.spec-section {
  /* detail-section__contentはborder上のみ・左右パディングなし */
}
.spec-section .detail-section__content {
  margin-bottom: 24px;
  padding: 24px 0 0;
  border-top: solid 1px #e6e1db;
  position: relative;
  overflow: hidden;
}
.spec-section {
  /* 折りたたみ枠内のボックス（旧 .doctor-frame.box 相当）。共通CSSの .box を上書き */
}
.spec-section .detail-section__content .box {
  background-color: #f7f3ed;
  padding: 24px 24px 10px;
}
.spec-section {
  /* 背景付きの枠（detail-section 内で使用）。基盤 .box と等価な自己完結枠 */
}
.spec-section .detail-frame {
  margin-bottom: 30px; /* 基盤 .box と同じ */
  padding: 30px 30px 10px;
  overflow: hidden;
}
.spec-section {
  /* 基盤 .box のレスポンシブ余白・パディングに合わせる（--white より前に置き、white の値を後勝ちで維持） */
}
@media screen and (max-width: 1199px), print {
  .spec-section .detail-frame {
    margin-bottom: 20px;
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .spec-section .detail-frame {
    margin-bottom: 15px;
    padding: 15px 15px 0;
  }
}
.spec-section .detail-frame--beige {
  background-color: #f7f3ed;
}
.spec-section .detail-frame--white {
  background-color: #fff;
  padding: 20px 20px 10px; /* 白は余白が異なるので上書き */
  margin-bottom: 20px;
}
.spec-section .detail-section__body {
  overflow: hidden;
  transition: max-height 0.3s ease;
  letter-spacing: 1px;
}
.spec-section .detail-section__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 3.646%, white 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.spec-section .detail-section__footer.is-open {
  position: static;
  height: auto;
  background: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
.spec-section .detail-section__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: #111;
  padding: 0;
}
.spec-section .detail-section__toggle-icon {
  transition: transform 0.25s ease;
  color: #555;
}
.spec-section .detail-section__toggle.is-open .detail-section__toggle-icon {
  transform: rotate(180deg);
}
.spec-section .product-faq-question-text {
  padding: 0 32px 0 0;
}
.spec-section .product-faq-question-text::before {
  display: none;
}
.spec-section {
  /* SPのみ：よくあるご質問のタイトルを1.1remに */
}
@media screen and (max-width: 767px) {
  .spec-section .product-faq-question-text {
    font-size: 1.1rem;
  }
}
.spec-section .product-faq-answer-content::before {
  display: none;
}
.spec-section .product-faq-answer-content {
  margin: 0px 16px 16px;
  padding: 16px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .spec-section .prod-cart-area {
    max-width: 320px;
  }
  .spec-section .prod-size-btns {
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .spec-section .product-faq-question {
    padding: 4.2666666667vw 4.2666666667vw;
  }
}
.color-zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9000;
  overflow-y: auto;
}

.color-zoom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.color-zoom-modal__wrapper {
  position: relative;
  background: #fff;
  padding: 40px 20px 20px;
  max-width: 500px;
  width: 100%;
}

.color-zoom-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: block;
}

.color-zoom-modal__body__panel {
  display: none;
}

.color-zoom-modal__body__panel.active {
  display: block;
}

.color-zoom-modal__body__panel__image {
  width: 100%;
  height: auto;
  display: block;
}

.color-zoom-modal__body__panel__color {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #333;
}

.color-zoom-modal__body__tabArea {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.color-zoom-modal__body__tabArea__tab {
  width: 72px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
}

.color-zoom-modal__body__tabArea__tab.active {
  opacity: 1;
  border-color: #333;
}

.color-zoom-modal__body__tabArea__tab__image {
  width: 100%;
  height: auto;
  display: block;
}

.color-zoom-modal__body__tabArea__tab__color {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 4px;
  color: #333;
}

.spec-section .color-swatch-list {
  display: flex;
  gap: 16px;
}
.spec-section .color-swatch {
  flex: 1;
}
.spec-section .js-color-swatch-trigger {
  cursor: pointer;
  position: relative;
  display: block;
}
.spec-section .color-swatch__image {
  width: 100%;
  height: auto;
  display: block;
}
.spec-section .color-swatch__zoom {
  position: absolute;
  bottom: 16px;
  right: 6px;
  pointer-events: none;
}
.spec-section .color-swatch__color {
  text-align: center;
}
.spec-section {
  /* 商品説明下のリスト：枠線とpadding */
}
.product-lp main ul.features-list {
  border: solid 1px #e4e4e4;
  padding: 24px 24px 16px 16px;
  margin-bottom: 0;
}

.spec-section {
  /* 商品説明下のリスト（PC） */
}
.product-lp main ul.features-list li {
  position: relative;
  margin-bottom: 5px;
  padding: 0 0 0.4rem 1.2em;
  line-height: 1.4;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.spec-section {
  /* 商品説明下のリスト（SP） */
}
@media screen and (max-width: 767px) {
  .product-lp main ul.features-list li {
    line-height: 1.6;
    font-size: 1rem;
  }
}
.spec-section {
  /* お客様の声：本文の字間 */
}
.spec-section .product-voice p {
  letter-spacing: 0.5px;
}
.spec-section {
  /* SPのみ：お客様の声のパディング調整 */
}
@media screen and (max-width: 767px) {
  .product-lp div#product-txt .product-voice {
    padding: 16px 16px 0 16px;
  }
}
.spec-section {
  /* SPのみ：お客様の声のタイトルを1.2remに */
}
@media screen and (max-width: 767px) {
  .spec-section .product-voice h3.heading5 {
    font-size: 1.2rem;
  }
}
.spec-section {
  /* SPのみ：お客様の声の本文（タイトル直後のp）を1.1remに */
}
@media screen and (max-width: 767px) {
  .spec-section .product-voice h3.heading5 + p {
    font-size: 1.1rem;
  }
}
.spec-section {
  /* ==============================================
     値組エリア（#special-cart-box / .cart-price-set / .price-* / .mt0）

     ★ここから .mt0 までは .spec-section スコープのまま＝不活性にしておくこと。
       値組は #app-negumi が .spec-section の「外」に生成するため、これらは
       これまで一度も適用されたことがない（body側にも .lp_design は無かった）。
       .product-lp（body）へ移すと初めて有効になり、現行の値組コンポーネントの
       マークアップと噛み合わず dl / dd が崩れる。実際に崩れたので戻した。
       有効化したい場合は、現行マークアップに合わせてルールを作り直すこと。
       （注記の重なりは下の :where(body.product-lp) .note + .note が担保している）
     ============================================== */
  /* SP：カートの選択肢と金額を横並びに
     （共通CSSがSPでdlをdisplay:blockにして縦積みになるため） */
}
@media screen and (max-width: 767px) {
  .spec-section {
    /* 入れ子dl（定期コースの割引表など）を含む行は対象外 */
  }
  #special-cart-box .cart-price-set dl:not(.c-cart-row--grid):not(:has(dl)) {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
  }
  #special-cart-box .cart-price-set dl:not(.c-cart-row--grid):not(:has(dl)) > dt {
    flex: 0 0 auto;
    width: auto !important;
  }
  #special-cart-box .cart-price-set dl:not(.c-cart-row--grid):not(:has(dl)) > dd {
    flex: 1 1 auto;
    width: auto;
    padding: 0 0 5px 12px;
    text-align: right; /* 金額を右寄せして縦のグリッドを揃える */
  }
  .spec-section {
    /* 定期コースの割引ラベルと金額を横並びに（ラベル列＋金額列の2列グリッド） */
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 6px 12px;
    width: 100%;
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid > dt {
    width: auto !important;
    padding: 0;
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid > dd {
    width: auto;
    padding: 0;
    text-align: right;
  }
}
.spec-section {
  /* PCのみ：カート内の金額を右寄せ */
}
@media screen and (min-width: 768px) {
  #special-cart-box .cart-price-set dl:not(.c-cart-row--grid) > dd {
    text-align: right;
  }
  .spec-section {
    /* 割引チャート内の「単品より◯円お得」は中央寄せのまま */
  }
  #special-cart-box .cart-price-set .price-chart dl > dd {
    text-align: center;
  }
  .spec-section {
    /* 定期コースの割引表：ラベルを金額に寄せて右端揃え */
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    row-gap: 6px;
    column-gap: 12px;
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid > dt {
    width: auto !important;
    padding: 0;
    justify-self: end; /* ラベルを金額側に寄せる */
  }
  #special-cart-box .cart-price-set dl.c-cart-row--grid > dd {
    width: auto;
    padding: 0;
    text-align: right;
  }
}
.spec-section {
  /* 「送料は通販生活が負担」の注記を少し小さく */
}
#special-cart-box .cart-price-set h2 span {
  font-size: 0.95rem;
}

.spec-section {
  /* special-cart-box内の文字詰め・字間 */
}
#special-cart-box {
  font-feature-settings: "palt" 1;
}

.price-chart.teiki4 {
  margin-top: 12px;
}

.spec-section {
  /* 「よくあるご質問」上の余白を詰める
     （.contentのpadding-bottom(30-50px)+padding-top(40-60px)が重なるため） */
}
.product-lp #product-secondary.content {
  padding-top: 0;
}

.spec-section {
  /* 金額表示：「税込◯円」は改行させず、「（送料◯円別）」単位で折り返す */
}
.price-unit,
.price-postage {
  display: inline-block;
}

.spec-section {
  /* ページ先頭へ戻るボタンを非表示 */
}
.spec-section .p-footer__scroll-button {
  display: none !important;
}
.spec-section {
  /* 黄金まゆの画像：70%に縮小して中央寄せ（PC・SP共通） */
}
.spec-section img[src*=section3__image1] {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.spec-section {
  /* PCのみ：2色の画像を200pxに縮小して中央寄せ、テキストもセンタリング */
}
@media screen and (min-width: 768px) {
  .spec-section .js-color-swatch-trigger {
    width: 200px;
    margin: 0 auto;
  }
  .spec-section .color-swatch__caption {
    text-align: center;
  }
}
.spec-section {
  /* SPのみ：よくあるご質問のpaddingを0に
  （共通CSSの「.box, .col-set .box { padding: 15px 15px 0 }」を上書き） */
}
.product-lp #product-faq.box {
  padding: 0;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .product-lp #product-faq.box {
    padding: 0;
  }
}
.product-lp #product-faq .bar-heading {
  margin-bottom: 0;
}

.spec-section {
  /* PCのみ：本文テキスト(.xl)をひとつ小さく（1.19rem → 1.13rem） */
}
@media screen and (min-width: 768px) {
  .spec-section .xl {
    font-size: 1.13rem !important;
  }
}
.spec-section {
  /* PCのみ：「他社品との違い」ボックス内のテキストをline-height 1.6に */
}
@media screen and (min-width: 768px) {
  .spec-section .xl .detail-frame:has(> .detail-section__title.center) {
    line-height: 1.6;
  }
}
.spec-section {
  /* PCのみ：本文中の画像（img.img）を中央寄せ */
}
@media screen and (min-width: 768px) {
  .product-lp main img.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.spec-section {
  /* features-list下の注意書きブロック */
}
.spec-section .c-cart-notice {
  border: solid 1px #dedede;
  padding: 16px;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-section .c-cart-notice .note {
  color: #000 !important; /* .cautionの赤を上書き */
  font-size: 0.95rem !important;
  margin: 0 !important; /* 間隔はgapで管理 */
}
.spec-section .c-cart-notice .note:last-child {
  margin-bottom: 0;
}
.spec-section {
  /* 画像＋テキスト横並びの特徴ブロック */
}
.spec-section .c-media-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0;
}
.spec-section .c-media {
  display: flex;
  align-items: center;
  gap: 24px;
}
.spec-section .c-media__img {
  width: 42%;
  max-width: 300px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.spec-section .c-media__title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}
.spec-section .c-media__text {
  margin: 0;
  line-height: 1.6;
}
.spec-section {
  /* SP：縦積みに */
}
@media screen and (max-width: 767px) {
  .spec-section .c-media {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .spec-section .c-media__img {
    width: 100%;
    max-width: none;
  }
}
.spec-section {
  /* 仕様・原材料テーブル */
  /* SP：見出しセルの幅を確保 */
}
@media screen and (max-width: 499px) {
  .spec-section .c-spec-table__head {
    min-width: 6em;
  }
}
.spec-section {
  /* SP：表を横スクロール可能に */
}
@media screen and (max-width: 767px) {
  .spec-section .c-spec-table__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spec-section .c-spec-table__wrap .c-spec-table {
    width: 100%;
    min-width: 0%;
  }
  .spec-section .c-spec-table__head {
    white-space: nowrap; /* 見出しは1行に */
    font-size: 0.95rem;
  }
  .spec-section .c-spec-table__cell {
    max-width: none; /* 長文セルは折り返す */
    font-size: 0.95rem;
  }
}
.spec-section {
  /* products_2307.cssの「#special-cart-box dd { padding-left: 23px }」を打ち消し */
}
#special-cart-box dd {
  padding-left: 0;
}

.spec-section {
  /* .mt0：共通CSSに未定義のため追加。
     「.note + .note { margin-top: -15px }」によるテキスト重なりを解消 */
}
.spec-section .mt0 {
  margin-top: 0 !important;
}

body:where(.product-lp) p:not(:where(.spec-section p)) {
  margin: 0;
}

:where(body.product-lp) div#product-content.content h4:not(:where(.spec-section h4)) {
  padding: 0;
  margin: 0 0 20px;
}
:where(body.product-lp) .note:not(li) + .note:not(li),
:where(body.product-lp) .note-num:not(li) + .note-num:not(li) {
  margin-top: 0;
}

.spec-section h4 {
  padding: 0;
  margin: 0 0 20px;
}/*# sourceMappingURL=product-lp.css.map */