/* --- 子カテゴリーアコーディオン --- */
    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid #e0ddd7;
      border-radius: 3px;
      background-color: #fdfcfc;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    }

    .accordion-checkbox {
      display: none;
    }

    .accordion-label {
      display: block;
      background-color: transparent;
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 800;
      color: #594a4e;
      position: relative;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 0.9em;
    }

    .accordion-label:hover {
      background-color: #f7f5f2;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: #594a4e;
      line-height: 1.7;
    }

    .accordion-checkbox:checked+.accordion-label+.accordion-content {
      max-height: 5000px;
      /* 十分な高さを指定 */
      padding: 20px 20px;
      border-top: 1px solid #e0ddd7;
    }

    .accordion-label::before {
      content: '\＋';
      font-weight: bold;
      color: #b394bd;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
      font-size: 1.4em;
    }

    .accordion-checkbox:checked+.accordion-label::before {
      content: '\−';
    }
    
    .accordion-checkbox:checked+.accordion-label {
        background-color: #f5f2ef;
    }
    
/* ナビゲーション */
.navigation {
  background-color: #f8f8f8; /* 背景色 */
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影追加 */
}
.youtube-container {

&#160; &#160; position: relative;

&#160; &#160; width: 100%;

&#160; &#160; padding-bottom: 56.25%; /* 16:9のアスペクト比 */

&#160; &#160; height: 0;

}



.youtube-container iframe {

&#160; &#160; position: absolute;

&#160; &#160; top: 0;

&#160; &#160; left: 0;

&#160; &#160; width: 100%;

&#160; &#160; height: 100%;

}



/**********************
.navigation ul {
  list-style: none; /* リストの点を消す */
  margin: 0;
  padding: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.navigation li {
  margin: 0 15px; /* 各項目の間隔 */
}

.navigation a {
  text-decoration: none; /* 下線を消す */
  color: #333; /* リンク色 */
  font-weight: bold; /* 太字 */
  display: inline-block; /* テキストを横並びにする */
  padding: 10px;
  border-radius: 5px; /* 角を丸くする */
  transition: all 0.3s ease; /* ホバー時の滑らかな変化 */
}
/* マーカー */
    mark {
      background-color: rgba(196, 162, 219, 0.3); /* メインカラーを薄くした色 */
      color: #594a4e; /* メインテキストカラーに合わせる */
      padding: 0.1em 0.1em;
      border-radius: 3px; /* 角を丸くする */
    }
/* 下線 */
    .underline {
      text-decoration: underline;
      text-decoration-color: #a37ba8; /* アクセントカラー */
      text-decoration-thickness: 2px; /* 下線の太さを少し太く */
      text-underline-offset: 3px; /* 下線の位置を少し下げる */
    }
.navigation a:hover {
  background-color: #b2a2b9; /* ホバー時の背景色 */
}
  .arrow-down {
    font-size: 48px; /* サイズを大きく */
    color: #333; /* 色を濃いグレーに */
    text-shadow: 2px 2px 4px #ccc; /* 影をつける */
    font-family: 'Times New Roman', serif; /* フォントをTimes New Romanに変更 */
}
.p-product {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-product {
    margin-bottom: 45px;
  }
}
/* form */
.p-product select {
  box-sizing: border-box;
  padding: 5px;
  height: 40px;
  border: 1px solid #bfbfbf;
  font-size: 16px;
}
.p-product input[type=text] {
  box-sizing: border-box;
  padding: 5px;
  height: 40px;
  border: 1px solid #bfbfbf;
  font-size: 16px;
}
.p-product-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1030px) {
  .p-product-img {
    display: block;
  }
}
.p-product-img__main {
  position: relative;
  width: 660px;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .p-product-img__main {
    margin-left: auto;
    margin-right: auto;
    width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__main {
    width: 100%;
  }
}
.p-product-img__main-item {
  text-align: center;
}
.p-product-img__main-item img {
  margin-left: auto;
  margin-right: auto;
  max-height: 660px;
}
@media screen and (max-width: 1030px) {
  .p-product-img__main-item img {
    max-height: 530px;
  }
}
.p-product-img__thumb {
  width: 340px;
}
@media screen and (max-width: 1030px) {
  .p-product-img__thumb {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__thumb {
    width: auto;
  }
}
.p-product-img__thumb * {
  min-width: 0;
  min-height: 0;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }
}
.p-product-thumb-list .slick-prev {
  top: auto;
  bottom: -56px;
  left: auto;
  right: 51px;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list .slick-prev {
    top: 50%;
    bottom: auto;
    right: auto;
    left: -10px;box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
  }
}
.p-product-thumb-list .slick-next {
  top: auto;
  bottom: -56px;
  left: auto;
  right: 0px;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list .slick-next {
    top: 50%;
    bottom: auto;
    right: -10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
  }
}
.p-product-thumb-list__item {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  width: 170px;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item {
    margin-bottom: 0;
    padding-left: 5px;
    width: auto;
  }
}
.p-product-thumb-list__item.is-current .p-product-thumb-list__img:before {
  border-color: #e6e1d9;
}
.p-product-thumb-list__item.is-current .p-product-thumb-list__img img {
  filter: blur(4px);
  -ms-filter: blur(4px);
  transform: scale(1.05, 1.05);
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__item.is-current .p-product-thumb-list__img img {
    transform: none;
  }
}
.p-product-thumb-list__img {
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 150px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
border: 1px solid #e0e0e0; /* ★追加: 薄いグレーの枠線 */
  padding: 2px; /* ★追加: 画像と枠線の間に少し余白 */box-sizing: border-box;}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__img {
    width: auto;
    height: auto;
  }
}
.p-product-thumb-list__img:hover {
  opacity: 0.7;
  cursor: pointer;
}
/* ▼▼▼ この15行を丸ごと貼り付け ▼▼▼ */
/* (3) タップ/クリックした瞬間の反応を追加 */
.p-product-thumb-list__img:active {
&#160; transform: scale(0.97); /* 一瞬だけわずかに縮小させる */
&#160; transition-duration: 0.05s; /* 押した瞬間の反応だけ素早く */
&#160; opacity: 1; /* 押した瞬間も不透明に */
}

.p-product-thumb-list__img:before {
&#160; content: "";
&#160; position: absolute;
&#160; top: 0;
&#160; bottom: 0;
&#160; right: 0;
&#160; left: 0;
&#160; z-index: 10;
&#160; border: 2px solid transparent;
&#160; transition: all 0.1s ease;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__img:before {
    height: calc(100% - 4px);
  }
}
.p-product-thumb-list__img img {
  width: 100%;
  transform: scale(1, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__img img {
    width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__img img {
    transform: none;
    transition: none;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }
}
/* 商品画像 slider */
.p-product-img__main .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.p-product-img__main .slick-prev, .p-product-img__main .slick-next {
  top: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev, .p-product-img__main .slick-next {
    width: 45px;
    height: 45px;
  }
}
.p-product-img__main .slick-prev:before, .p-product-img__main .slick-next:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-left: 2px solid #b2a2b9;
  border-top: 2px solid #b2a2b9;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev:before, .p-product-img__main .slick-next:before {
    top: 15px;
  }
}
.p-product-img__main .slick-prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev {
    left: 0px;
  }
}
.p-product-img__main .slick-prev:before {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev:before {
    left: 17px;
  }
}
.p-product-img__main .slick-next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-next {
    right: 0px;
  }
}
.p-product-img__main .slick-next:before {
  left: 4px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-next:before {
    left: 13px;
  }
}
/***** 商品情報 *****/
.p-product-txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: 100px;
  margin-right: 100px;
}
@media screen and (max-width: 1030px) {
  .p-product-txt {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-product-txt {
    display: block;
  }
}
.p-product-info {
  box-sizing: border-box;
  padding-top: 120px;
  width: 330px;
}
@media screen and (max-width: 1030px) {
  .p-product-info {
    padding-top: 60px;
    padding-right: 30px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-product-info {
    padding-right: 0;
    width: auto;
  }
}
.p-product-info__ttl {
  margin: 0;
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-product-info__ttl {
    font-size: 18px;
  }
}
.p-product-info__ttl img {
  vertical-align: middle;
}
.p-product-info__id {
  margin: 0;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 767px) {
  .p-product-info__id {
    margin-top: 5px;
    font-size: 10px;
  }
}
.p-product-price {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-product-price__sell {
  font-size: 18px;
  color: #d9534f; /* 赤色を指定 */
  font-weight: bold; /* 太字を指定 */
}
.p-product-price__sell-off {
  display: inline-block;
  margin-left: 5px;
  padding: 0px 8px;
  border-radius: 3px;
  font-size: 18px;
  background: #d9534f;
  color: #ffffff;
}
.p-product-price__normal {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-product-price__normal {
    font-size: 18px;
  }
}
.p-product-price__list-price {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-product-price__list-price {
    font-size: 18px;
  }
}
.p-product-action {
  padding-top: 120px;
  width: 400px;
}
@media screen and (max-width: 1030px) {
  .p-product-action {
    padding-top: 60px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-product-action {
    width: auto;
  }
}
/* オプション table */
.p-product-option-tbl {
  margin-bottom: 30px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 767px) {
  .p-product-option-tbl {
    display: none;
  }
}
.p-product-option-tbl table {
  margin-bottom: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  width: 100%;
  background: #f0ede8;
}
.p-product-option-tbl table div {
  display: inline-block !important;
}
.p-product-option-tbl th, .p-product-option-tbl td {
  padding: 12px 15px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: 0;
  text-align: center;
}
.p-product-option-tbl label {
  display: inline-block !important;
  margin-left: 5px;
  margin-bottom: 0;
}
.p-product-option-tbl input {
  margin-top: 0;
}
.p-product-option-tbl {
  overflow-x: scroll;
  white-space: nowrap;
  padding-bottom: 30px;
}
.p-product-option-tbl::-webkit-scrollbar {
  height: 4px;
}
.p-product-option-tbl::-webkit-scrollbar-track {
  background: #eeeeee;
}
.p-product-option-tbl::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 2px;
}
/* オプション select */
.p-product-option-select {
  margin-bottom: 30px;
}
.p-product-option-select__box {
  margin-bottom: 15px;
}
.p-product-option-select__ttl {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #5a5a5a;
}
/* 名入れ */
.p-product-name {
  margin-bottom: 30px;
}
.p-product-name__box {
  margin-top: 15px;
}
.p-product-name__ttl {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #5a5a5a;
}
.p-product-name__body input {
  width: 100%;
}
/* 数量 */
.p-product-form-stock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.p-product-form-stock__ttl {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #5a5a5a;
}
@media screen and (max-width: 767px) {
  .p-product-form-stock__ttl {
    font-size: 12px;
  }
}
.p-product-form-stock__input {
  display: flex;
  align-items: center;
}
.p-product-form-stock__input input {
  width: 60px;
}
.p-product-form-stock__unit {
  margin-left: 10px;
}
.p-product-form-stock__stock {
  margin-left: 25px;
}
/* ボタン */
.p-product-form-btn__cart {
  margin-bottom: 10px;
}
  .p-product-form-btn__cart button {
  10px 20px;
  background-color: #b2a2b9; /* 背景色を#b2a2b9に変更 */
  color: #ffffff; /* 文字色を白に変更 */
  border: none; /* 枠線を削除 */
  padding: 30px 20px;/* パディングを追加 */
  border-radius: 5px; /* 角を丸くする */
  cursor: pointer; /* カーソルをポインターに変更 */
  transition: all 0.3s ease; /* ホバー時のトランジションを追加 */
}
.p-product-form-btn__cart button:hover {
  background-color: #a37ba8; /* ホバー時の背景色を#a37ba8に変更 */
}
.p-product-form-btn__favorite {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-form-btn__favorite svg {
  width: 21px;
  height: 17px;
  fill: currentColor;
}
.p-product-form__error-message {
  color: #DB5656;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* SNS */
.p-product-sns-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.p-product-sns-list__item {
  margin-right: 20px;
}
/* link */
.p-product-link-list {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #bfbfbf;
}
.p-product-link-list__item {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list__item {
    margin-bottom: 20px;
  }
}
/***** 商品詳細 *****/
.p-product__ttl {
  position: relative;
  margin-top: 240px;
  margin-bottom: 45px;
  padding-top: 25px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  color: #5a5a5a;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product__ttl {
    margin-top: 120px;
    margin-bottom: 30px;
    padding-top: 15px;
    line-height: 1.4;
    font-size: 20px;
  }
}
.p-product__ttl:before {
  content: "";
  position: absolute;
  top: -85px;
  left: 50%;
  height: 85px;
  width: 1px;
  background: #5a5a5a;
}
@media screen and (max-width: 767px) {
  .p-product__ttl:before {
    top: -40px;
    height: 40px;
  }
}
.p-product-detail {
  position: relative;
}
.p-product-explain {
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1030px) {
  .p-product-explain {
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
}
.p-product-explain__body {
  line-height: 2;
}
.p-product-other {
  width: 530px;
  order: -1;
}
@media screen and (max-width: 1030px) {
  .p-product-other {
    width: auto;
  }
}
/* おすすめ商品 */
.p-product-recommend-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 60px;
  }
}
.p-product-recommend-list__item {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  width: 33.3333%;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__item {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.p-product-recommend-list__img {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__img {
    margin-bottom: 5px;
  }
}
.p-product-recommend-list__txt {
  position: relative;
  padding-bottom: 20px;
}

.p-product-recommend-list__ttl {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__ttl {
    font-size: 14px;
  }
}
.p-product-recommend-list__price {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__price {
    margin-top: 15px;
    font-size: 14px;
  }
}
.p-product-recommend-list__price.is-default {
  margin-top: 0;
  text-decoration: line-through;
}
.p-product-recommend-list__expl {
  margin-top: 15px;
  font-size: 14px;
  color: #909090;
}
/* レビュー */
.review-link {
  display: flex; /* flexboxレイアウトを使用 */
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: flex-end; /* 右端に配置 */
  margin-top: 20px; /* 上に余白を追加 */
  font-size: 16px; /* フォントサイズを指定 */
  color: #a37ba8; /* 色を指定 */
  text-decoration: underline; /* 下線を引く */
  text-decoration-color: #a37ba8;
}


/* レビューボタンのスタイル */
.p-product-review__btn {
  display: inline-block;
  padding: 25px;
  min-width: 400px;
  font-size: 20px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  background: #b2a2b9; /* 背景色を#b2a2b9に変更 */
  color: #ffffff; /* 文字色を白に変更 */
  text-align: center;
  transition: all ease 0.2s;
}
.p-product-review {
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-product-review {
    margin-left: 0;
    margin-right: 0;/*★*/
    margin-bottom: 30px;
  }
}
.p-product-review__item {
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 40px;
  background: #ffffff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 767px) {
  .p-product-review__item {
    padding: 20px;
  }
}
.p-product-review__heading {
  margin-bottom: 15px;
}
.p-product-review__ttl {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 18px;
}
.p-product-review-info {
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-product-review-info__item {
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-product-review-info__item {
    display: block;
  }
}
.p-product-review-info__item.is-type {
  margin-right: 35px;
}
.p-product-review__img {
  margin-top: 20px;
  width: 80px;
  text-align: center;
  position: relative;
}
.p-product-review__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: url(https://img.shop-pro.jp/tmpl_img/85/review-icon-zoom.png);
  background-size: 18px 18px;
}
.p-product-review__body {
  margin-top: 15px;
  line-height: 2;
}
.p-product-review__rates {
  display: flex;
  flex-wrap: wrap;
}
.p-product-review__rate {
  width: 18px;
  height: 18px;
  vertical-align: -0.3em;
  fill: currentColor;
  fill: #d8d8d8;
}
.p-product-review__rate.is-color {
  fill: #ea872f;
}
/* レビュー 返信 */
.p-product-review-reply {
  box-sizing: border-box;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.p-product-review-reply__ttl {
  font-weight: bold;
}
.p-product-review-reply__body {
  font-size: 14px;
}
.p-product-review-reply__date {
  font-size: 12px;
}
.p-product-review__btn-wrap {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-review__btn-wrap {
    margin-top: 30px;
  }
}
.p-product-review__btn {
  display: inline-block;
  padding: 25px;
  min-width: 400px;
  font-size: 20px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  background: #b49579;
  color: #ffffff;
  text-align: center;
  transition: all ease 0.2s;
}
@media screen and (max-width: 767px) {
  .p-product-review__btn {
    padding: 15px;
    font-size: 16px;
    min-width: 250px;
  }
}
.p-product-review__btn:hover, .p-product-review__btn:focus {
  background: rgba(180, 149, 121, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.fix-cart-navi {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .fix-cart-navi {
    display: block; 
    right: 0;
    left: 0;
    bottom: 0;
  }
}
.fix-cart-navi__link {
 
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */
  box-sizing: border-box;
  display: inline-block;
  padding: 15px;
  width: 270px;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
  background: linear-gradient(to top, #b394bd, #c4a9c9); 
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); /* 上向きの影で境界線を美しく */
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* 上部に細いハイライトを追加 */
}
@media screen and (max-width: 767px) {
  .fix-cart-navi__link {
   
    width: 100%;
  }
}
.fix-cart-navi__link:hover {
  background: linear-gradient(to top, #c1a4c7, #d0b9d5);
  text-decoration: none;
}
.fix-cart-navi__link .c-icon-cart {
  margin-right: 10px;
}

/*  クイックカートイン CSS  */
.cart_in_modal,
.cart_in_error_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 20000;
  display: flex;
  overflow: auto;
}
@media screen and (min-width: 960px) {
  .cart_in_modal,
  .cart_in_error_modal {
    align-items: center;
  }
}
.cart_in_modal__bg {
  background-color: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20000;
}
.cart_in_modal__outline {
  width: 90%;
  margin: 20px 5%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  box-sizing: border-box;
  text-align: center;
  position: absolute;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__outline {
    width: 900px;
    margin: auto;
    padding: 20px 70px;
    position: relative;
  }
}
.cart_in_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__heading {
    font-size: 26px;
    margin: 30px 0;
    line-height: 1.2;
  }
}
.cart_in_error_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .cart_in_error_modal__heading {
    margin: 30px 0;
    line-height: 1.2;
  }
}
.cart_in_modal__detail {
  display: flex;
  padding: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__detail {
    flex-direction: row;
  }
}
.cart_in_modal__name {
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__name {
    font-size: 18px;
  }
}
.cart_in_modal__image-wrap {
  padding: 5px;
  width: 170px;
  height: 170px;
  background: rgba(0, 0, 0, .1);
  position: relative;
  border: 5px solid transparent;
  box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__image-wrap {
    margin: 0 30px 0 0;
    flex-basis: 170px;
  }
}
.cart_in_modal__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cart_in_modal__text-link {
  color: #2169f3;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 20px 0 0;
  padding: 0 0 0 20px;
  line-height: 1.15;
}
.cart_in_modal__text-link::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2169f3;
  border-right: 2px solid #2169f3;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.cart_in_modal__button-wrap {
  width: 100%;
  margin: 30px auto;
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .cart_in_modal__button-wrap {
    width: 350px;
  }
}
.cart_in_modal__button {
  font-size: 17px;
  font-weight: bold;
  line-height: 23px;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 58px;
  padding: 15px;
  background: #2169f3;
  box-shadow: 0 2px 0 #1a54c2;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cart_in_modal__button:hover,
.cart_in_modal__button:focus {
  height: 58px;
  color: #e9f0fe;
  background-color: #1e5fdb;
  box-shadow: none;
  transform: translate3d(0, 2px, 0);
}
.cart_in_modal__close-icon {
  cursor: pointer;
}
.cart_in_modal__close-icon::before,
.cart_in_modal__close-icon::after {
  content: "";
  width: 35px;
  height: 6px;
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  background: #eee;
  border-radius: 4px;
}
.cart_in_modal__close-icon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cart_in_modal__close-icon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  border: 5px solid #eee;
  border-top-color: #4C2882;
  animation: spinner 0.5s linear infinite;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 960px) {
  .sp-br {
    display: none;
  }
}


/******************************/
/* Custom */
/******************************/

@media screen and (max-width: 1030px) {
  .p-product-info {
    padding-top: 0px;
  }
}


.p-product-price {
  margin: 0px;
}

.p-product-price__sell {
  font-weight: bold;
  font-size: 32px;
}

.p-product-price-discount .p-product-price__sell {
  color: #d9534f;
}

.p-product-price .price-type {
  margin: 0;
  margin-bottom: -10PX;
}

.tax-notion {
  font-size: 12px;
}

#review {
  text-align: right;
}

.fa-star:before {
  color: #ea872f;
}

/******************************/
/* End Custom */
/******************************/

/* 200516 商品詳細スライダーCSS */
@charset "UTF-8";
#slideWrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#slideWrapper #slideContainer01 {
  flex-basis: 48%;
  overflow: hidden;
}
#slideWrapper #slideContainer01 #slideMain {
  border: solid 1px #f1f1f1;
}
#slideWrapper #slideContainer01 #slideMain .slick-arrow {
  display: block;
  margin: auto;
  padding: 0;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.6); /* メイン矢印背景色 */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);  /* ←影を追加して立体感を出す */
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  top: 45%;
}
#slideWrapper #slideContainer01 #slideMain .slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: solid 3px #a37ba8; /* メイン矢印線色 */
  border-bottom-color: transparent;
  border-left-color: transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}
#slideWrapper #slideContainer01 #slideMain .slick-disabled {
  opacity: .2;
}
#slideWrapper #slideContainer01 #slideMain .slick-prev {
  left: 2.5%;
}
#slideWrapper #slideContainer01 #slideMain .slick-prev::before {
  transform: rotate(-135deg);
  left: 16px; /* メイン戻る矢印の位置 */
}
#slideWrapper #slideContainer01 #slideMain .slick-next {
  right: 2.5%;
}
#slideWrapper #slideContainer01 #slideMain .slick-next::before {
  transform: rotate(45deg);
  right: 17px; /* メイン進む矢印の位置 */
}
#slideWrapper #slideContainer01 #slideMain .slick-slide {
  aspect-ratio: 1 / 1;
}
#slideWrapper #slideContainer01 #slideMain .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#slideWrapper #slideContainer01 .slideInfo {
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
  margin: 10px auto;
}
#slideWrapper #slideContainer01 .slideInfo .slider-counter {
  background: #79645e;
  color: #fff;
  line-height: 1;
  padding: .2em .5em .3em;
  border-radius: 1em;
  margin: 0;
}
#slideWrapper #slideContainer01 .slideInfo .listPopup {
  position: absolute;
  display: none;
}
#slideWrapper #slideContainer02 {
  overflow: hidden;
  padding: 5px;
}
#slideWrapper #slideContainer02 #slideThumb {
  line-height: 0;
  overflow: auto; // 250520
}
#slideThumb .slick-list {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
#slideThumb .slick-track {
  transform: none !important;
  display: flex      !important;
  flex-direction: row !important;
  width: auto        !important;
  height: auto       !important;
}
#slideThumb .slick-slide {
  flex: 0 0 calc(100% / 2.5) !important;   /* スマホサムネイル数で書き換え */
  width: calc(100% / 2.5) !important;   /* スマホサムネイル数で書き換え */
  height: auto !important;
  float: none !important;
}

@media (min-width: 760px) {
  #slideThumb .slick-list {
    overflow-x: hidden !important;
    overflow-y: auto   !important;
  }
  #slideThumb .slick-track {
    flex-direction: column !important;
    width: auto    !important;
    height: auto   !important;
  }
  #slideThumb .slick-slide {
    flex: 0 0 calc(100% / 2.5) !important;   /* タブレットサムネイル数で書き換え */
    height: calc(100% / 2.5) !important;   /* タブレットサムネイル数で書き換え */
    width: auto !important;
  }
}

#slideWrapper #slideContainer02 #slideThumb .slick-slide {
  aspect-ratio: 1 / 1;
  margin: 5px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
#slideWrapper #slideContainer02 #slideThumb .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#slideWrapper #slideContainer02 #slideThumb .slick-slide.slick-current img {
  filter: blur(4px);
  transform: scale(1.05);
}
@media (min-width: 992px) {
  #slideWrapper #slideContainer02 {
    display: none;
  }
  #slideWrapper #slideListContainer {
    flex-basis: 48%;
  }
  #slideWrapper #slideListContainer hgroup {
    display: none;
  }
  #slideWrapper #slideListContainer #slideList {
    display: flex;
    width: calc(100% + 10px);
    height: auto;
    aspect-ratio: 1 / 1;
    overflow-y: scroll;
    margin: -5px;
    flex-wrap: wrap;
  }
  #slideWrapper #slideListContainer #slideList div {
    flex-basis: calc(100% / 3 - 10px);
    aspect-ratio: 1 / 1;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  #slideWrapper #slideListContainer #slideList div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease 0s;
  }
}
  #slideWrapper #slideListContainer #slideList div.current img {
    filter: blur(4px);
    transform: scale(1.05);
  }

#slideModalContainer {
  display: none;
}

@media (max-width: 991.98px) {
  #slideWrapper {
    flex-direction: row;
  }
  #slideWrapper #slideContainer01 {
    flex-basis: 65%;
  }
  #slideWrapper #slideContainer01 .slideInfo .listPopup {
    position: absolute;
    display: inline-block;
    background-color: #fff;
    color: #79645e;
    border: solid 1px #79645e; /* 一覧を見るボタン枠線 */
    outline: none;
    font-size: .8em;
    bottom: 0;
    right: 0;
    line-height: 1;
    padding: .5em;
  }
  #slideWrapper #slideContainer02 {
    flex-basis: 28%;
  }
  #slideWrapper #slideContainer02 #slideThumb {
    padding-right: 15px;
    position: relative;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li {
    flex: 1;
    text-indent: -9999px;
    background-color: #fff;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li.slick-active {
    position: relative;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li.slick-active::before {
    content: "";
    width: 100%;
    height: 300%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #a37ba8;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li:nth-last-child(1).slick-active::before {
    top: auto;
    bottom: 0;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li:nth-last-child(2).slick-active::before {
    bottom: 0;
    margin: auto;
  }

  #slideListContainer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100dvh;
    position: fixed;
    background-color: rgba(245, 240, 240, 0.9);    /* リスト背景色 */
    top: 0;
    left: 0;
    padding: 5vw;
    z-index: 9998;
    transition: all .4s ease 0s;
  }
  #slideListContainer.slide-hide {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  #slideListContainer hgroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vw;
    margin-bottom: 2vw;
  }
  #slideListContainer hgroup h3 {
    color: #79645e;
    margin: 0;
  }
  #slideListContainer hgroup .listClose {
    display: inline-block;
    background-color: #fff;
    color: #79645e;
    border: solid 1px #79645e; /* 一覧を閉じる枠線 */
    outline: none;
    font-size: 0.8em;
    line-height: 1;
    padding: .5em;
  }
  #slideListContainer #slideList {
    width: calc(100% + 20px);
    height: calc(100dvh - 20vw);
    overflow: auto;
    scrollbar-gutter: stable both-edges !important;
    margin: -10px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #slideListContainer #slideList::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  #slideListContainer #slideList::-webkit-scrollbar-track {
    background: #fff;    /* スクロールバーの背景（トラック部分） */
  }
  #slideListContainer #slideList::-webkit-scrollbar-thumb {
    background-color: #a37ba8;    /* つまみ（サム）の色 */
    border: 1px solid #fff;    /* トラックと馴染ませるための余白 */

  }
  #slideListContainer #slideList::-webkit-scrollbar-thumb:hover {
    background-color: #a37ba8;    /* ホバー時の色 */
  }
  #slideListContainer #slideList div {
    flex-basis: calc(100%/3 - 20px);
    aspect-ratio: 1 / 1;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  #slideListContainer #slideList div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease 0s;
  }
  #slideListContainer #slideList div:hover img {
    filter: blur(4px);
    transform: scale(1.05);
  }
  #slideListContainer.modal-on {
    filter: blur(4px);
    pointer-events: none;
  }

  #slideModalContainer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100dvh;
    position: fixed;
    background-color: rgba(121, 100, 94, 0.8);    /* モーダル背景色 */
    top: 0;
    left: 0;
    padding: 0;
    z-index: 9999;
  }
  #slideModalContainer.slide-hide {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  #slideModalContainer .modalClose, #slideModalContainer .modalPlus, #slideModalContainer .modalMinus, #slideModalContainer .slick-arrow {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);    /* モーダルボタン背景色 */
    border: solid 1px #fff;    /* モーダルボタン枠線色 */
    border-radius: 30px;
    text-indent: -9999px;
    overflow: hidden;
    outline: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 20;
  }
  #slideModalContainer .modalClose::before, #slideModalContainer .modalClose::after, #slideModalContainer .modalPlus::before, #slideModalContainer .modalPlus::after, #slideModalContainer .modalMinus::before, #slideModalContainer .modalMinus::after, #slideModalContainer .slick-arrow::before, #slideModalContainer .slick-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #a37ba8;    /* モーダルボタン線色 */
  }
  #slideModalContainer .modalClose.disabled, #slideModalContainer .modalClose.slick-disabled, #slideModalContainer .modalPlus.disabled, #slideModalContainer .modalPlus.slick-disabled, #slideModalContainer .modalMinus.disabled, #slideModalContainer .modalMinus.slick-disabled, #slideModalContainer .slick-arrow.disabled, #slideModalContainer .slick-arrow.slick-disabled {
    pointer-events: none;
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.6);
  }
  #slideModalContainer .modalClose.disabled::before, #slideModalContainer .modalClose.disabled::after, #slideModalContainer .modalClose.slick-disabled::before, #slideModalContainer .modalClose.slick-disabled::after, #slideModalContainer .modalPlus.disabled::before, #slideModalContainer .modalPlus.disabled::after, #slideModalContainer .modalPlus.slick-disabled::before, #slideModalContainer .modalPlus.slick-disabled::after, #slideModalContainer .modalMinus.disabled::before, #slideModalContainer .modalMinus.disabled::after, #slideModalContainer .modalMinus.slick-disabled::before, #slideModalContainer .modalMinus.slick-disabled::after, #slideModalContainer .slick-arrow.disabled::before, #slideModalContainer .slick-arrow.disabled::after, #slideModalContainer .slick-arrow.slick-disabled::before, #slideModalContainer .slick-arrow.slick-disabled::after {
    opacity: .5;
  }
  #slideModalContainer .modalClose {
    top: 40px;
    right: 40px;
  }
  #slideModalContainer .modalClose::before, #slideModalContainer .modalClose::after {
    width: 30px;
    height: 3px;
  }
  #slideModalContainer .modalClose::before {
    transform: rotate(45deg);
  }
  #slideModalContainer .modalClose::after {
    transform: rotate(-45deg);
  }
  #slideModalContainer .modalPlus {
    bottom: calc(50% + 20px);
    right: 40px;
  }
  #slideModalContainer .modalPlus::before {
    width: 30px;
    height: 3px;
  }
  #slideModalContainer .modalPlus::after {
    width: 3px;
    height: 30px;
  }
  #slideModalContainer .modalMinus {
    top: calc(50% + 20px);
    right: 40px;
  }
  #slideModalContainer .modalMinus::before {
    display: none !important;
  }
  #slideModalContainer .modalMinus::after {
    width: 30px;
    height: 3px;
  }
  #slideModalContainer .slick-arrow {
    top: calc(100vw + 24px);
  }
  #slideModalContainer .slick-arrow::before, #slideModalContainer .slick-arrow::after {
    width: 24px;
    height: 3px;
  }
  #slideModalContainer .slick-prev {
    right: calc(50% + 80px);
  }
  #slideModalContainer .slick-prev::before, #slideModalContainer .slick-prev::after {
    transform-origin: center left;
  }
  #slideModalContainer .slick-prev::before {
    transform: rotate(-45deg);
  }
  #slideModalContainer .slick-prev::after {
    transform: rotate(45deg);
  }
  #slideModalContainer .slick-next {
    left: calc(50% + 80px);
  }
  #slideModalContainer .slick-next::before, #slideModalContainer .slick-next::after {
    transform-origin: center right;
  }
  #slideModalContainer .slick-next::before {
    transform: rotate(-45deg);
  }
  #slideModalContainer .slick-next::after {
    transform: rotate(45deg);
  }
  #slideModalContainer #slideModal {
    width: 100%;
    position: relative;
    top: calc(50dvh - 50vw);
    z-index: 10;
  }
  #slideModalContainer #slideModal img {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
    transform-origin: center center;
  }
  #slideModalContainer .slideInfo {
    position: absolute;
    text-align: center;
    top: calc(50vw + 50dvh + 40px);
    left: 0;
    right: 0;
    margin: auto;
    font-size: 2em;
    color: #fff;
    line-height: 1;
    font-family: serif;
  }
  #slideModalContainer .slideInfo p {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  #slideWrapper {
    flex-direction: column;
  }
  #slideWrapper #slideContainer02 #slideThumb {
    padding-right: 0;
    padding-bottom: 15px;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    flex-direction: row;
  }
  
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li.slick-active::before {
    width: 200%;
    height: 100%;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li:nth-last-child(1).slick-active::before {
    left: auto;
    right: 0;
  }
  #slideWrapper #slideContainer02 #slideThumb .slick-dots li:nth-last-child(2).slick-active::before {
    right: 0;
  }
@media (max-width: 767.98px) {
#slideWrapper #slideContainer01 .slideInfo{
font-size: 4.5vw;
}
}
  #slideModalContainer .modalClose {
    top: 20px;
    right: 20px;
  }
  #slideModalContainer .modalPlus {
    bottom: calc(50% + 10px);
    right: 20px;
  }
  #slideModalContainer .modalMinus {
    top: calc(50% + 10px);
    right: 20px;
  }

  #slideListContainer #slideList div {
    flex-basis: calc(50% - 20px);
  }
