<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******************************/
/* Product */
/******************************/
.p-product {
  margin-bottom: 90px;
}
/* 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 {
  width: 530px;
}
@media screen and (max-width: 1023px) {
  .p-product-img {
    width: 45%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img {
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
  }
}
.p-product-img__main {
  text-align: center;
  margin-left: auto;
    margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 920px) {
  .p-product-img__main {
    margin-left: auto;
    margin-right: auto;
    width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__main {
    width: auto;
  }
}
.p-product-img__main-item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-img__main-item {
    text-align: center;
  }
}
.p-product-img__main-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-img__main-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-product-img__main-item img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  /*object-fit: cover !important;*/
}
.p-product-thumb-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-top: 8px;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }
}
.p-product-thumb-list__item {
  box-sizing: border-box;
  padding-left: 4px;
  padding-right: 4px;
  width: 20%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item {
    margin-right: 5px;
    padding-left: 0;
    padding-right: 0;
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__item {
    margin-right: 5px;
    width: 60px;
  }
}
.p-product-thumb-list__item:hover, .p-product-thumb-list__item.is-current {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item img {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__item img {
    width: 60px;
  }
}
.p-product-thumb-list__img {
  /* overflow用 */
  position: relative;
  text-align: center;
  aspect-ratio: 80 / 101;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__img {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__img {
    width: 60px;
    text-align: center;
  }
}
.p-product-thumb-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-thumb-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  object-fit: cover;
  object-position: center;
}
/* 商品画像 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: 15px;
  height: 15px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  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-info {
  width: 410px;
}
@media screen and (max-width: 1030px) {
  .p-product-info {
    width: auto;
  }
}
.p-product-info__ttl {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-product-info__ttl {
    font-size: 21px;
  }
}
.p-product-info__ttl img {
  vertical-align: middle;
}

.p-product-info__id {
  margin: 0;
}
@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;
}
.p-product-price__normal {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-product-price__normal {
    font-size: 12px;
  }
}
.p-product-price__list-price {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-product-price__list-price {
    font-size: 12px;
  }
}
/* オプション table */
.p-product-option-tbl {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow-x: auto;
}
.p-product-option-tbl table {
  margin-bottom: 0;
  border-left: 0;
  border-right: 0;
  width: 100%;
}
.p-product-option-tbl table div {
  display: inline-block !important;
}
.p-product-option-tbl th {
  min-width: 100px;
}
.p-product-option-tbl th, .p-product-option-tbl td {
  padding: 12px 5px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  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;
}
/* オプション select */
.p-product-option-select {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-product-option-select__box {
  margin-top: 15px;
}
.p-product-option-select__ttl {
  margin-bottom: 5px;
  font-weight: bold;
}
/* 名入れ */
.p-product-name {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-product-name__box {
  margin-top: 15px;
}
.p-product-name__ttl {
  margin-bottom: 5px;
  font-weight: bold;
}
.p-product-name__body input {
  width: 100%;
}
/* 数量 */
.p-product-form-stock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.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 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-product-form-btn__cart {
  width: 100%;
}
@media screen and (max-width: 1030px) {
  .p-product-form-btn__cart {
    flex: 1;
    width: auto;
  }
}
.p-product-form-btn__favorite {
  width: 50px;
}
.p-product-form-btn__favorite-btn {
  display: inline-block;
  margin-top: 22px;
  margin-left: 22px;
  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-btn.is-added {
  color: #000000;
}
.p-product-form-btn__favorite-btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.p-product-form__error-message {
  color: #DB5656;
  margin-top: 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;
}
.p-product-link-list__item {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list__item {
    margin-bottom: 30px;
  }
}
/***** 商品詳細 *****/
.p-product__ttl {
  margin-top: 0;
  margin-bottom: 35px;
  line-height: 1.4;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-product__ttl {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.p-product-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 75px;
}
@media screen and (max-width: 1030px) {
  .p-product-detail {
    display: block;
  }
}
.p-product-explain {
  width: 410px;
}
@media screen and (max-width: 1030px) {
  .p-product-explain {
    margin-bottom: 60px;
    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: -20px;
  margin-right: -20px;
  margin-bottom: 90px;
}
@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: 20px;
  padding-right: 20px;
  width: 33.3333%;
  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;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__img {
    margin-bottom: 5px;
    text-align: center;
  }
}
.p-product-recommend-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-recommend-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-product-recommend-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}
.p-product-recommend-list__price {
  margin-top: 15px;
  font-size: 12px;
  color: #909090;
}
@media screen and (max-width: 767px) {
  .p-product-recommend-list__price {
    margin-top: 0;
  }
}
.p-product-recommend-list__price.is-strikethrough {
  margin-top: 0;
  text-decoration: line-through;
}
.p-product-recommend-list__expl {
  margin-top: 15px;
  font-size: 12px;
}
/* レビュー */
.p-product-review {
  margin-bottom: 60px;
}
.p-product-review__item {
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 40px;
  background: #f8f8f8;
}
@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: 12px;
}
.p-product-review-info__item.is-type {
  margin-right: 35px;
}
.p-product-review__img {
  margin-bottom: 15px;
  text-align: center;
}
.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: #000000;
}
/* レビュー 返信 */
.p-product-review-reply {
  box-sizing: border-box;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
}
.p-product-review-reply__ttl {
  font-weight: bold;
}
.p-product-review-reply__body {
  font-size: 12px;
}
.p-product-review-reply__date {
  font-size: 12px;
}
.p-product-review__btn {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-review__btn {
    margin-top: 30px;
  }
}
.input-prepend.input-append input {
  font-size: 24px;
  padding-top: 11px;
  padding-bottom: 11px;
  width: 100px;
  text-align: right;
}

.new_icon {
  position: absolute;
      top: -25px;
    left: 15px;
    background: #7a8f88;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: white;
}

/*------------------------------------------------------------------------------
  single
------------------------------------------------------------------------------*/

.single__content {
  display: flex;
  justify-content: space-between;
}

.single__content:first-child {
  margin-bottom: 60px;
}

.single__content-child-first {
  flex: 0 1 46.66%;
}

.single__content-child-second {
  flex: 0 1 43.33%;
}

td.hpb-cnt-tb-cell1,
td.hpb-cnt-tb-cell2{
      text-align: left;
}

@media only screen and (max-width: 920px) {
td.hpb-cnt-tb-cell1 {
  width: 20%;
}  
}

/* product-img */

.product-img__main {
  width: 100%;
  margin-bottom: 12px;
}

.product-img__main img {
  width: 100%;
  /*max-width: 444px;*/
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.product-img__slider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 4px;
  overflow-x: scroll;
}

.product-img__slider::-webkit-scrollbar-track {
  background-color: blue;
}

.product-img__slider li {
  flex: 0 0 78px;
  width: 100%;
  max-width: 78px;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 80 / 101;
}

.product-img__slider li.select {
  cursor: auto;
}

.product-img__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-img__slider li:not(:last-child) {
  margin-right: 6px;
}

/* product-main */

.product-main__label {
  display: block;
  max-width: 108px;
  margin-bottom: 10px;
}

.product-main__label {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main__title {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: 'Zen Old Mincho', serif;
  margin-bottom: 15px;
}

.product-main__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 22px;
  margin-bottom: 30px;
}

.product-main__price-text {
  flex: 0 0 auto;
  font-size: 1.5rem;
  margin-right: 25px;
}

.product-main__price-num {
  font-size: 2rem;
  font-weight: bold;
}

.product-main__price-text--sm {
  font-size: 1.2rem;
  flex: 0 0 auto;
  margin-top: 7px;
}

.product-buy{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.product-option {
  width:100%;
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
}

.product-buy__text,
.product-option__text{
  flex: 0 0 auto;
  font-size: 1.5rem;
  margin-right: 42px;
}

.product-buy__count {
  font-size: 1.5rem;
  line-height: 33px;
  width: 100%;
  max-width: 88px;
  height: 33px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 0;
  text-align: center;
  padding: 0;
}

.product-buy__counter {
  margin-left: 8px;
}

.product-buy__counter-up,
.product-buy__counter-down {
  width: 12px;
  height: 7px;
  display: block;
  padding: 5px;
}

.product-buy__counter-up img,
.product-buy__counter-down img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy__counter-down {
  transform: rotate(-180deg);
}

.product-option__select{
  position: relative;
  width:100%;
  max-width: 250px;
}

.product-option__select::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 6px;
    background-image: url(https://img14.shop-pro.jp/PA01140/175/etc/caret.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}

.product-option__select-btn {
    font-size: 1.5rem;
    width: 100%;
    height: 45px;
    display: block;
    border: 1px solid #ccc;
    padding: 0 14px;
    -webkit-appearance: none;
    appearance: none;
}



.product-main__appeal {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.56;
  text-align: center;
  margin: 0 -12px 15px;
}

.product-main__appeal&gt;span {
  font-size: 1.2rem;
  margin: -4px 12px 0;
}


.product-main__btn {
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--text-color);
  padding: 24px 10px;
  cursor: pointer;
  transition: all .2s ease;
  margin-bottom: 20px;
}

.product-main__btn:hover {
  opacity: .85;
}

.product-main__btn-icon {
  max-width: 19px;
  width: 100%;
  margin-right: 10px;
}

.product-main__btn-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main__btn-text {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: normal;
  font-weight: bold;
  margin-left: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

/* product-main__btn(sold out) */

.product-main__btn.--sold-out {
  text-transform: uppercase;
  background-color: #888;
  cursor: not-allowed;
}

.product-main__btn.--sold-out:hover {
  opacity: 1;
}

.product-main__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 14.5px 10px;
  margin-bottom: 17px;
}

.product-main__contact-icon {
  width: 100%;
  max-width: 19px;
  margin-right: 6px;
}

.product-main__contact-icon img {
  width: 100%;
  height: 100%;
  vertical-align: -3px;
  object-fit: contain;
}

.product-main__contact-text {
  font-size: 1.4rem;
  margin-left: 6px;
}

.product-main__notes {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  padding-left: 14px;
  position: relative;
}

.product-main__notes::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -1px;
  width: 6px;
  height: 4px;
  transform: rotate(-90deg);
  background-image: url(https://img21.shop-pro.jp/PA01492/949/etc/caret.png?cmsp_timestamp=20230111093733);
  background-repeat: no-repeat;
  background-size: contain;
}


/* related-products__list */

.related-products__list {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 -40px;
}

.related-products__list li {
  flex: 0 1 27%;
  margin-bottom: 40px;
}

.related-products__list li:not(:nth-child(3n)) {
  margin-right: 9.46%;
}

.related-products__img {
  width: 100%;
  margin-bottom: 5px;
  aspect-ratio: 80 / 101;
}

.related-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.related-products__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.related-products__price {
  color: #888;
  font-size: 1.2rem;
}

.related-products__price--sm {
  font-size: .8rem;
}


/* product-detail */

.single__content-detail table {
  width:100%;
}

.product-detail:not(:last-of-type) {
  margin-bottom: 53px;
}

.single__content .sub-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.product-detail__rank {
  display: flex;
  align-items: center;
  margin: 0 0 28px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.product-detail__rank dt {
  font-weight: 400;
}

.product-detail__texts p {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 32px;
}

.product-detail__texts p:last-child {
  margin-bottom: 0;
}

.product-detail__table {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  width: 100%;

}

.product-detail__table tr {
  border-bottom: 1px solid #ccc;
  padding: 26px 0 16px;
  box-sizing: border-box;
  display: block;
}

.product-detail__table tr:first-child {
  padding: 21px 0 16px;
}

.product-detail__table tr td:first-child {
  width: 145px;
}

.related-products__list .card__sold-out {
    margin-top: 0;
  }

/* 1023px
--------------------------------------------- */
@media only screen and (max-width: 1023px) {

  .single__content-child-first {
    flex: 0 1 45%;
  }

  .single__content-child-second {
    flex: 0 1 50%;
  }
}


/* 920px
--------------------------------------------- */
@media only screen and (max-width: 920px) {
  
  .p-product-img {
    width: 100%;
    margin: 0 auto;
  }

  .single__content {
    flex-direction: column;
  }
  
  .single__content-coordinate {
    order: 2;
  }

  .single__content-detail {
    order: 1;
    margin-bottom: 80px;
  }

  .single__content:first-child {
    margin-bottom: 60px;
  }

  .single__content-child-first,
  .single__content-child-second {
    flex: 0 1 100%;
    font-size: 1.4rem;
  }

  /* product-img */

  .product-img {
    margin-bottom: 40px;
  }


  .product-img__main img {
    /*width: 79.1% !important;*/
  }


  .product-img__slider li {
    flex: 0 0 65px;
    max-width: 65px;
    height: 82px;
  }

  /* product-main */


  .product-main__title {
    margin-bottom: 20px;
  }

  .product-main__price {
    padding-bottom: 29px;
  }

  .product-main__price-text {
    margin-right: 14px;
  }

  .product-main__appeal {
    font-size: 1.5rem;
    margin: 0 0px 15px;
  }

  .product-main__appeal&gt;span {
    font-size: 1.1rem;
    margin: -4px 9px 0;
  }

  .product-main__btn {
    max-width: unset;
    margin: 0 auto 15px;
  }

  .product-main__contact {
    padding: 11px 10px;
  }


  /* related-products__list */

  .related-products__text {
    margin-bottom: 9px;
  }

  /* product-detail */

  .product-detail__rank {
    margin: 19px 0 33px;
    font-size: 1.4rem;
  }

  .product-detail__texts p {
    font-size: 1.4rem;
    margin-bottom: 34px;
  }

  .product-detail__table {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .product-detail__table tr {
    padding: 21px 0 16px;
  }

}


/* 480px
--------------------------------------------- */
@media only screen and (max-width: 480px) {

  .related-products__list {
    justify-content: space-between;
  }

  .related-products__list li {
    flex: 0 1 46.3%;
  }

  .related-products__list li:not(:nth-child(3n)) {
    margin-right: 0;
  }


}

.slick-prev.slick-arrow,
.slick-next.slick-arrow{
  display: none!important;
}

.breadcrumb__list {
  flex-wrap: unset;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumb__list::-webkit-scrollbar {
    display: none;
  }

.breadcrumb__product-name {
  position: relative;
}

.breadcrumb__product-name::before {
  content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: var(--text-color);
}

.product__fav-item {
    margin-bottom: 17px;
}

.product__fav-item button {
  cursor: pointer;
  transition: .2s;
  color: #333;
  outline: none;
  background: transparent;
  letter-spacing: 0.06rem;
  width: 50%;
  padding: 12px;
  border: solid 1px #ccc;
}

.product__fav-item .fav-items {
  color: #B7180C;
  border: solid 1px #B7180C;
}

.product__fav-item svg {
  width: 20px;
  height: 20px;
  vertical-align: -.35em;
  fill: currentColor;
}

/* 画像拡大モーダル用のスタイル*/
.modal {
display: none;
position: fixed;
z-index: 15;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}

.modal-content {
margin: 0 auto;
padding: 20px;
max-width: 800px; /* 最大幅 */
width: 100%;
}

/* モーダルの閉じるボタンのスタイル */
.modal-content-close {
color: #fff;
float: right;
font-size: 40px;
font-weight: bold;
}
.modal-content-close:hover,
.modal-content-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

/* モーダル内部のスタイル */
.modal-content img{
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}

@media screen and (max-width: 768px) {
.modal-content {
margin: 50% auto;
max-width: 90%;
}
}


/* 追加 _2411 */

.mainSlider{
  margin-bottom: 12px;
}
.mainSlider .splide__slide {
  position: relative;
}
.mainSlider .splide__slide :hover{
  cursor: pointer;
}
.mainSlider .splide__slide::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.mainSlider .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumbnailSlider .splide__slide.is-active {
  border: none !important;
}

.thumbnailSlider .splide__list{
  overflow-x: scroll;
  transform: none !important;
}

.productModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s;
}
.productModal._show {
  pointer-events: auto;
  opacity: 1;
}

.productModalImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 85%;
}
@media only screen and (max-width: 900px) {
  .productModalImg {
    width: 75%;
  }
}

.productModalClose, .productModalPrev, .productModalNext {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.productModalClose {
  top: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 900px) {
  .productModalClose {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    img{
      width: 20px;
      height: 20px;
    }
  }
}

.productModalPrev,
.productModalNext {
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 900px) {
  .productModalPrev,
  .productModalNext {
    width: 40px;
    height: 40px;
    img{
      height: 35px;
      width: auto;
    }
  }
}

.productModalPrev {
  left: 40px;
  transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 900px) {
  .productModalPrev {
    left: 0px;
  }
}

.productModalNext {
  right: 40px;
}
@media only screen and (max-width: 900px) {
  .productModalNext {
    right: 0px;
  }
}


/* splide _2411 */

.splide__container {
	box-sizing: border-box;
	position: relative
}
.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0!important;
	padding: 0!important
}
.splide.is-initialized:not(.is-active) .splide__list {
	display: block
}
.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none
}
.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto
}
.splide:not(.is-overflow) .splide__pagination {
	display: none
}
.splide__progress__bar {
	width: 0
}
.splide {
	position: relative;
	visibility: hidden
}
.splide.is-initialized, .splide.is-rendered {
	visibility: visible
}
.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none!important;
	margin: 0;
	position: relative
}
.splide__slide img {
	vertical-align: bottom
}
.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px
}
.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}
.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none
}
.splide__toggle.is-active .splide__toggle__pause {
	display: inline
}
.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0
}
@keyframes splide-loading {
	0% {
		transform: rotate(0)
	}
	to {
		transform: rotate(1turn)
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none
}
.splide__track--fade&gt;.splide__list&gt;.splide__slide {
	margin: 0!important;
	opacity: 0;
	z-index: 0
}
.splide__track--fade&gt;.splide__list&gt;.splide__slide.is-active {
	opacity: 1;
	z-index: 1
}
.splide--rtl {
	direction: rtl
}
.splide__track--ttb&gt;.splide__list {
	display: block
}
.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1
}
.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em
}
.splide__arrow:hover:not(:disabled) {
	opacity: .9
}
.splide__arrow:disabled {
	opacity: .3
}
.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide__arrow--prev {
	left: 1em
}
.splide__arrow--prev svg {
	transform: scaleX(-1)
}
.splide__arrow--next {
	right: 1em
}
.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide__pagination {
	bottom: .5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1
}
.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: .7;
	padding: 0;
	position: relative;
	transition: transform .2s linear;
	width: 8px
}
.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1
}
.splide__pagination__page:hover {
	cursor: pointer;
	opacity: .9
}
.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide__progress__bar {
	background: #ccc;
	height: 3px
}
.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
.splide__slide:focus {
	outline: 0
}
@supports(outline-offset:-3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px
	}
}
@media screen and (-ms-high-contrast:none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf
	}
}
@supports(outline-offset:-3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px
	}
}
@media screen and (-ms-high-contrast:none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf
	}
	.splide.is-focus-in .splide__track&gt;.splide__list&gt;.splide__slide:focus {
		border-color: #0bf
	}
}
.splide__toggle {
	cursor: pointer
}
.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}
.splide__track--nav&gt;.splide__list&gt;.splide__slide {
	border: 3px solid transparent;
	cursor: pointer
}
.splide__track--nav&gt;.splide__list&gt;.splide__slide.is-active {
	border: 3px solid #000
}
.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em
}
.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1)
}
.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto
}
.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1)
}
.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%)
}
.splide__arrows--ttb .splide__arrow--prev {
	top: 1em
}
.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg)
}
.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto
}
.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg)
}
.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: .5em;
	top: 0
}</pre></body></html>