/** Shopify CDN: Minification failed

Line 918:0 Unexpected "}"

**/
/* 商品一覧ページのスタイル */
/* .p-product-list {
  padding: 30px 0;
}

.p-product-list__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
  font-family: "Yu Mincho", "YuMincho", serif;
  text-align: center;
  position: relative;
}

.p-product-list__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #4a6f8a;
  margin: 0.5rem auto 0;
}

.p-product-list__subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
  font-family: "Yu Mincho", "YuMincho", serif;
  line-height: 1.6;
}

.p-product-filter {
  background-color: #f5f8fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.p-product-filter__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.p-product-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-product-filter__item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
}

.p-product-filter__item:hover {
  border-color: #4a6f8a;
  color: #4a6f8a;
}

.p-product-filter__item.is-active {
  background-color: #4a6f8a;
  border-color: #4a6f8a;
  color: white;
}

.p-product-sort {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.p-product-sort__select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  color: #555;
  font-size: 0.9rem;
}

.p-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-bottom: 3rem;
}

.p-product-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: white;
}

.p-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.p-product-item__image {
  position: relative;
  overflow: hidden;
  padding-top: 75%; 
}

.p-product-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.p-product-item:hover .p-product-item__image img {
  transform: scale(1.05);
}

.p-product-item__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e45b5b;
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 1;
}

.p-product-item__content {
  padding: 1.2rem;
}

.p-product-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.4;
}

.p-product-item__description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-product-item__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a6f8a;
  margin-bottom: 1rem;
}

.p-product-item__cart-btn {
  display: inline-block;
  background-color: #4a6f8a;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s;
}

.p-product-item__cart-btn:hover {
  background-color: #3a5a71;
}

.p-pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.p-pagination__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 4px;
  color: #555;
  font-weight: 600;
  transition: all 0.3s;
}

.p-pagination__item:hover {
  border-color: #4a6f8a;
  color: #4a6f8a;
}

.p-pagination__item.is-active {
  background-color: #4a6f8a;
  border-color: #4a6f8a;
  color: white;
}

.p-pagination__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 4px;
  color: #555;
  transition: all 0.3s;
}

.p-pagination__arrow:hover {
  border-color: #4a6f8a;
  color: #4a6f8a;
}

.p-pagination__arrow.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.p-product-empty {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f5f8fa;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.p-product-empty__icon {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.p-product-empty__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.p-product-empty__text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.p-product-empty__button {
  display: inline-block;
  background-color: #4a6f8a;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.p-product-empty__button:hover {
  background-color: #3a5a71;
}

.p-product-category {
  margin-bottom: 4rem;
}

.p-product-category__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Yu Mincho", "YuMincho", serif;
  position: relative;
  padding-left: 1.2rem;
}

.p-product-category__title::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 5px;
  height: 1.5rem;
  background-color: #4a6f8a;
  border-radius: 2px;
} */

/* レスポンシブ調整 */
/* @media (max-width: 991px) {
  .p-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .p-product-list__title {
    font-size: 1.6rem;
  }
  
  .p-product-list__subtitle {
    font-size: 1rem;
  } */
  
  /* 左サイドパネルを確実に非表示にする - !importantでインラインスタイルも上書き */
  /* .l-background__left {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
    pointer-events: none !important;
  } */
  
  /* Bootstrapクラスも確実に上書き */
  /* .l-background__left.h-100,
  .l-background__left.d-flex,
  .l-background__left.flex-column,
  .l-background__left.justify-content-center,
  .l-background__left.align-items-center,
  .l-background__left .h-100,
  .l-background__left .d-flex,
  .l-background__left .flex-column,
  .l-background__left .justify-content-center,
  .l-background__left .align-items-center {
    display: none !important;
  } */
  
  /* 左サイドパネルの内容も強制非表示 */
  /* .l-background__left .p-side-panel,
  .l-background__left .p-side-panel__filter,
  .l-background__left .p-side-panel__mini-cart,
  .l-background__left .p-mini-cart {
    display: none !important;
    visibility: hidden !important;
  } */
  
  /* メインコンテンツを全幅で表示 */
  /* .l-main-column {
    width: 100% !important;
    margin-left: 0 !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  } */
  
  /* メインコンテンツの余白調整 */
 /* .l-container {
  padding-top: var(--header-height);
  width: 100% !important;

} */

/* .l-container>* {
    width: 100% !important;
    max-width: 100% !important;
}
   */
  /* 右サイドパネルの文字色のみ変更（背景色は変更しない） */
  /* .l-background__right .p-side-panel__title,
  .l-background__right .p-subscription-banner__title,
  .l-background__right .p-subscription-banner__text,
  .l-background__right .accordion-button,
  .l-background__right .accordion-body,
  .l-background__right .p-payment-list__item,
  .l-background__right .p-guidelines-list__item {
    color: #333 !important;
  } */
  
  /* アコーディオンの矢印アイコン色変更 */
  /* .l-background__right .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  }
  
  .p-subscription-banner {
    min-height: 160px;
    max-height: 200px;
    height: 200px;
    margin-bottom: 15px;
  }
  
  .p-subscription-banner__text {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .p-product-grid {
    grid-template-columns: 1fr;
  }
  
  .p-product-filter__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-product-filter__item {
    flex: 0 0 auto;
  }
  
  .p-notification {
    left: 16px;
    right: 16px;
    top: 16px;
    max-width: none;
  }
} */

/* サイドパネルの文字色と背景色の調整 */
/* .l-background__left .c-hexagon-pattern {
  background-color: var(--color-deep-green);
  color: var(--color-white);
}

.l-background__right .c-hexagon-pattern {
  background-color: var(--color-deep-scarlet);
  color: var(--color-white);
} */

/* サイドパネルのフィルター関連の文字色 */
/* .p-side-panel__title {
  color: var(--color-white);
}

.p-side-panel__filter-heading {
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 600;
}

.p-side-panel__filter-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.p-side-panel__filter-item {
  margin-bottom: 6px;
} */

/* フィルターリンクの視認性向上 */
/* .p-side-panel__filter-link {
  color: var(--color-white);
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.p-side-panel__filter-link::before {
  content: "›";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.p-side-panel__filter-link:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.p-side-panel__filter-link:hover::before {
  transform: translate(3px, -50%);
  opacity: 1;
}

.p-side-panel__filter-link.is-active {
  color: var(--color-yamabuki);
  font-weight: bold;
  background-color: rgba(248, 181, 0, 0.15);
  border-color: var(--color-yamabuki);
}

.p-side-panel__filter-link.is-active::before {
  content: "✓";
  right: 10px;
  opacity: 1;
} */

/* ミニカートの文字色 */
/* .p-mini-cart {
  color: var(--color-white);
}

.p-mini-cart__item-title,
.p-mini-cart__item-price,
.p-mini-cart__item-quantity,
.p-mini-cart__total-label,
.p-mini-cart__total-price,
.p-mini-cart__empty p {
  color: var(--color-white);
} */

/* サブスクリプション関連の文字色 */
/* .p-subscription-banner {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  min-height: 200px;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}

.p-subscription-banner__title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-white);
}

.p-subscription-banner__text {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--color-white);
  opacity: 0.9;
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
  max-height: 120px; 
} */

/* アコーディオンのデザイン調整 */
/* .accordion {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
  max-height: 280px;
  width: 100%;
  box-sizing: border-box;
}

.accordion-button {
  color: var(--color-white);
  background-color: transparent;
  padding: 12px 15px;
  font-weight: 500;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  width: 100%;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  color: var(--color-white);
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  max-height: 200px; 
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
} */

/* メディアクエリでのレスポンシブ対応 */
/* @media (max-width: 991px) {
  .p-subscription-banner {
    min-height: 180px;
    max-height: 220px;
    height: 220px;
  }
  
  .p-subscription-banner__text {
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .p-product-list__title {
    font-size: 1.6rem;
  }
  
  .p-product-list__subtitle {
    font-size: 1rem;
  } */
  
  /* 左サイドパネルを確実に非表示にする - !importantでインラインスタイルも上書き */
  /* .l-background__left {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
    pointer-events: none !important;
  } */
  
  /* Bootstrapクラスも確実に上書き */
  /* .l-background__left.h-100,
  .l-background__left.d-flex,
  .l-background__left.flex-column,
  .l-background__left.justify-content-center,
  .l-background__left.align-items-center,
  .l-background__left .h-100,
  .l-background__left .d-flex,
  .l-background__left .flex-column,
  .l-background__left .justify-content-center,
  .l-background__left .align-items-center {
    display: none !important;
  } */
  
  /* 左サイドパネルの内容も強制非表示 */
  /* .l-background__left .p-side-panel,
  .l-background__left .p-side-panel__filter,
  .l-background__left .p-side-panel__mini-cart,
  .l-background__left .p-mini-cart {
    display: none !important;
    visibility: hidden !important;
  } */
  
  /* メインコンテンツを全幅で表示 */
  /* .l-main-column {
    width: 100% !important;
    margin-left: 0 !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  } */
  
  /* メインコンテンツの余白調整 */
  /* .l-container {
    padding-top: var(--header-height);
  } */
  
  /* 右サイドパネルの文字色のみ変更（背景色は変更しない） */
  /* .l-background__right .p-side-panel__title,
  .l-background__right .p-subscription-banner__title,
  .l-background__right .p-subscription-banner__text,
  .l-background__right .accordion-button,
  .l-background__right .accordion-body,
  .l-background__right .p-payment-list__item,
  .l-background__right .p-guidelines-list__item {
    color: #333 !important;
  } */
  
  /* アコーディオンの矢印アイコン色変更 */
  /* .l-background__right .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  }
  
  .p-subscription-banner {
    min-height: 160px;
    max-height: 200px;
    height: 200px;
    margin-bottom: 15px;
  }
  
  .p-subscription-banner__text {
    max-height: 80px;
  }
} */

/* ヘッダーロゴのサイズ調整 */
/* .p-fixed-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-fixed-header__logo img {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
} */

/* カートに入れるボタンのスタイル */
/* .c-button--cart {
  background-color: var(--color-deep-scarlet);
  color: var(--color-white);
  border: none;
  font-size: 14px;
  min-width: 150px;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.c-button--cart:hover, 
.c-button--cart:focus {
  background-color: #cb2d2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.c-button--cart:active {
  transform: translateY(0);
  background-color: #b41e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.c-button--cart i {
  margin-right: 8px;
  font-size: 16px;
}

.c-button--cart:disabled {
  background-color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
} */

/* カートに追加アニメーション */
/* .c-button--cart.is-adding {
  background-color: #666;
}

.c-button--cart.is-success {
  background-color: #28a745;
}

.c-button--cart.is-error {
  background-color: #dc3545;
} */

/* 商品カードのボタン配置 */
/* .p-product-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
} */

/* ガイドラインリストのスタイル */
/* .p-guidelines-list {
  padding-left: 0;
  list-style: none;
}

.p-guidelines-list__item {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.p-guidelines-list__item::before {
  content: "•";
  color: var(--color-yamabuki);
  position: absolute;
  left: 0;
  top: 0;
} */

/* アコーディオンコンテンツを含む右サイドパネル */
/* .p-side-panel__accordion {
  width: 100%;
  box-sizing: border-box;
} */

/* 通知メッセージのスタイル */
/* .p-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: flex-start;
  max-width: 350px;
  min-width: 280px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  opacity: 0.95;
  border-left: 4px solid #666;
}

.p-notification.is-visible {
  transform: translateX(0);
}

.p-notification__icon {
  flex-shrink: 0;
  margin-right: 12px;
  font-size: 20px;
  padding-top: 2px;
}

.p-notification__content {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-right: 12px;
}

.p-notification__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.p-notification__close:hover {
  opacity: 1;
} */

/* 通知タイプ別スタイル */
/* .p-notification--success {
  border-left-color: #28a745;
}

.p-notification--success .p-notification__icon {
  color: #28a745;
}

.p-notification--error {
  border-left-color: #dc3545;
}

.p-notification--error .p-notification__icon {
  color: #dc3545;
}

.p-notification--info {
  border-left-color: #17a2b8;
}

.p-notification--info .p-notification__icon {
  color: #17a2b8;
}

.p-notification--warning {
  border-left-color: #ffc107;
}

.p-notification--warning .p-notification__icon {
  color: #ffc107; */
}

/* メディアクエリでの通知サイズ調整 */
/* @media (max-width: 480px) {
  .p-notification {
    left: 16px;
    right: 16px;
    top: 16px;
    max-width: none;
  }
} */

/* モバイル用フィルターとサイドパネル関連のスタイル */
/* .p-mobile-filters {
  display: none !important;
} */

/* 右パネルのテキスト色調整 */
/* .p-mobile-side-info {
  color: #333 !important;
}

.p-mobile-side-info .p-subscription-banner__title,
.p-mobile-side-info .p-subscription-banner__text,
.p-mobile-side-info .accordion-button,
.p-mobile-side-info .accordion-body,
.p-mobile-side-info .p-payment-list__item,
.p-mobile-side-info .p-guidelines-list__item,
.p-mobile-side-info .p-shipping-info__title,
.p-mobile-side-info .p-shipping-info p {
  color: #333 !important;
} */

/* アコーディオンボタンの矢印アイコン色を調整 */
/* .p-mobile-side-info .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
} */

/* 定期購入バナーのサイズ調整 */
/* .p-mobile-side-info .p-subscription-banner {
  min-height: 160px;
  max-height: 200px;
  height: auto;
  margin-bottom: 15px;
} */

/* アコーディオン内のコンテンツサイズを調整して、スクロールで表示できるように */
/* .p-mobile-side-info .accordion-item {
  max-height: 280px;
}

.p-mobile-side-info .accordion-body {
  max-height: 200px;
  overflow-y: auto;
}
 */
/* モバイル用アコーディオンのバグ修正 */
/* .p-mobile-side-info .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  color: #333;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.p-mobile-side-info .accordion-button:not(.collapsed) {
  color: #333;
  background-color: #f8f9fa;
  box-shadow: none;
}

.p-mobile-side-info .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: center;
  transition: transform .2s ease-in-out;
}

.p-mobile-side-info .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
} */

/* Bootstrap のデフォルトスタイルを上書きして重複表示を防止 */
/* .p-mobile-side-info .accordion-button::before {
  display: none !important;
  content: none !important;
}

.p-mobile-side-info .accordion-button > i {
  display: inline-block;
  margin-right: 8px;
} */

/* アコーディオンアイテムのスタイル修正 */
/* .p-mobile-side-info .accordion-item {
  border: 1px solid rgba(0,0,0,.125);
  margin-bottom: 8px;
  background-color: #fff;
  overflow: hidden;
}

.p-mobile-side-info .accordion-header {
  margin-bottom: 0;
}

.p-mobile-side-info .accordion-collapse {
  border: 0;
}
 */
/* アコーディオンボタンの重複バグ修正のための追加スタイル */
/* .p-mobile-side-info .fixed-accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  content: "" !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 16px !important;
  height: 16px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px !important;
  transition: transform .2s ease-in-out !important;
}

.p-mobile-side-info .fixed-accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg) !important;
} */

/* Bootstrap標準のアコーディオンスタイルを上書き */
/* .p-mobile-side-info .accordion-button.fixed-accordion-button::before,
.p-mobile-side-info .accordion-button.fixed-accordion-button::after:not(:last-child) {
  display: none !important;
} */

/* 強制的に二重表示されるアコーディオン矢印を修正 */
/* .p-mobile-side-info .accordion-button::after:nth-of-type(n+2) {
  display: none !important;
} */

/* アコーディオン関連のセレクタを整理して修正 */
/* 誤ったセレクタや重複したものを削除 */
/* 削除対象のセレクタをコメントアウト */
/* .p-mobile-side-info .accordion-button.fixed-accordion-button::before,
.p-mobile-side-info .accordion-button.fixed-accordion-button::after:not(:last-child),
.p-mobile-side-info .accordion-button::after:nth-of-type(n+2),
.p-mobile-side-info .accordion-button:not(.fixed-accordion-button)::after {
  display: none !important;
} */

/* アコーディオン問題の最終的な修正 */
/* .p-mobile-side-info .accordion-button {
  background-image: none !important;
} */

/* .p-mobile-side-info .accordion-button::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
} */

/* 単一の矢印を追加 */
/* .p-mobile-side-info .accordion-button {
  position: relative !important;
  padding-right: 40px !important;
}

.p-mobile-side-info .accordion-button i {
  margin-right: 8px !important;
} */

/* カスタムの矢印を追加 */
/* .p-mobile-side-info .accordion-button::before {
  content: "" !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px !important;
  transition: transform .2s ease-in-out !important;
  display: block !important;
}

.p-mobile-side-info .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(180deg) !important;
}  */

/* 商品一覧ページ - 最も強力なセレクタを冒頭に配置 */

/* スクロール問題を修正 - 冒頭に一元化 */
html, 
body, 
html.kizuna-wafuu-products-page, 
body.kizuna-wafuu-products-page,
.kizuna-wafuu-products-page body {
  height: auto !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  position: static !important;
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  font-family: var(--font-gothic) !important;
  line-height: 1.9 !important;
  font-size: 18px !important;
}

/* 左右サイドパネルを確実に非表示 - 強力なセレクタを冒頭に */
.l-wrapper#js__top .l-background,
.l-wrapper#js__top .l-background__left,
.l-wrapper#js__top .l-background__right {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  flex: 0 0 0 !important;
  position: absolute !important;
  visibility: hidden !important;
}

/* コンテナスタイルを一元化 - 画面幅を100%に */
.l-wrapper#js__top .l-container {
  flex: 1 1 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex-basis: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: block !important;
  box-sizing: border-box !important;
  padding-top: 100px !important;
  overflow: visible !important;
}

/* コンテナの子要素のスタイルも上書き */
.l-wrapper#js__top .l-container > * {
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 商品一覧ページ本体のスタイル */
.l-wrapper#js__top {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  margin: 0 auto !important;
  background-color: var(--color-white) !important;
}

/* 固定ヘッダーのスタイル改善 */
.l-wrapper#js__top .p-fixed-header {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 1000 !important;
  height: 80px !important;
  background-color: var(--color-white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* ヘッダー内部のレイアウト改善 */
.l-wrapper#js__top .p-fixed-header__inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  height: 100% !important;
}

/* 左側のハンバーガーメニュー配置調整 */
.l-wrapper#js__top .p-fixed-header__left {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  margin-right: auto !important;
}

/* 中央のロゴ配置調整 */
.l-wrapper#js__top .p-fixed-header__logo {
  flex: 0 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.l-wrapper#js__top .p-fixed-header__logo img {
  height: 60px !important;
  width: auto !important;
  max-width: none !important;
}

/* 右側のアイコン配置調整 */
.l-wrapper#js__top .p-fixed-header__actions {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  margin-left: auto !important;
}

.l-wrapper#js__top .p-fixed-header__icon {
  margin-left: 20px !important;
  font-size: 24px !important;
  color: var(--color-black) !important;
}

/* 商品リスト全体のスタイル改善 */
.p-product-list {
  padding: 40px 20px 60px !important;
  background-color: var(--color-white) !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

/* 商品リストタイトルの改善 */
.p-product-list__title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 2.5rem !important;
  color: var(--color-black) !important;
  font-family: var(--font-mincho) !important;
  text-align: center !important;
  position: relative !important;
  letter-spacing: 0.05em !important;
}

.p-product-list__title::after {
  content: '' !important;
  display: block !important;
  width: 50px !important;
  height: 3px !important;
  background-color: var(--color-ai) !important;
  margin: 0.8rem auto 0 !important;
}

.p-product-list__subtitle {
  font-size: 1.4rem !important;
  text-align: center !important;
  margin-bottom: 4rem !important;
  color: var(--color-black) !important;
  font-family: var(--font-mincho) !important;
  line-height: 1.8 !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 商品グリッドのスタイル改善 - 3列グリッド */
.p-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 25px !important;
  margin-bottom: 3.5rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 商品アイテムのスタイル改善 */
.p-product-item {
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  background-color: var(--color-white) !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.p-product-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 商品画像コンテナの改善 */
.p-product-item__image {
  position: relative !important;
  overflow: hidden !important;
  padding-top: 75% !important;
  background-color: #f8f8f8 !important;
}

.p-product-item__image img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s !important;
}

.p-product-item:hover .p-product-item__image img {
  transform: scale(1.05) !important;
}

/* 商品バッジのスタイル改善 */
.p-product-item__badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background-color: var(--color-shu) !important;
  color: white !important;
  font-size: 0.8rem !important;
  padding: 5px 10px !important;
  border-radius: 3px !important;
  z-index: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
}

/* 商品内容エリアの改善 */
.p-product-item__content {
  padding: 1.5rem !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.p-product-item__title {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  color: var(--color-black) !important;
  line-height: 1.5 !important;
  font-family: var(--font-gothic) !important;
}

.p-product-item__description {
  font-size: 1rem !important;
  color: var(--color-black) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.7 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  flex-grow: 1 !important;
}

.p-product-item__price {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: var(--color-ai) !important;
  margin-bottom: 1.5rem !important;
  text-align: right !important;
}

/* カートボタンのスタイル改善 */
.p-product-item__cart-btn {
  display: inline-block !important;
  background-color: var(--color-ai) !important;
  color: white !important;
  text-decoration: none !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  text-align: center !important;
  transition: background-color 0.3s, transform 0.2s !important;
  margin-top: auto !important;
  letter-spacing: 0.03em !important;
}

.p-product-item__cart-btn:hover {
  background-color: var(--color-ai-light) !important;
  transform: translateY(-2px) !important;
}

/* フィルターエリアのスタイル改善 */
.p-product-filter {
  /* 桜色から和紙風背景に変更 */
  /* background-color: var(--color-sakura) !important; */
  background: 
    radial-gradient(circle at 25% 75%, rgba(160, 140, 120, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(140, 130, 115, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 45% 55%, rgba(180, 165, 145, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #f9f6f0 0%, #f5f1e8 25%, #f1ecdf 50%, #ede6d7 75%, #e9e2d5 100%) !important;
  padding: 1.5rem !important;
  border-radius: 8px !important;
  margin-bottom: 2.5rem !important;
    width: 100% !important;
  overflow-x: auto !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  position: relative !important;
}

/* フィルターエリアに和紙繊維パターンを追加 */
.p-product-filter::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: 
    linear-gradient(45deg, rgba(160, 140, 120, 0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(140, 130, 115, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 165, 145, 0.02) 1px, transparent 1px) !important;
  background-size: 15px 15px, 20px 20px, 25px 25px !important;
  pointer-events: none !important;
  border-radius: 8px !important;
}

.p-product-filter__title {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.2rem !important;
  color: var(--color-black) !important;
  font-family: var(--font-gothic) !important;
  }
  
  .p-product-filter__list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  }
  
  .p-product-filter__item {
  background-color: var(--color-white) !important;
  border: 1px solid #ddd !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-size: 0.9rem !important;
  color: var(--color-black) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}

.p-product-filter__item:hover {
  border-color: var(--color-ai) !important;
  color: var(--color-ai) !important;
  transform: translateY(-2px) !important;
}

.p-product-filter__item.is-active {
  background-color: var(--color-ai) !important;
  border-color: var(--color-ai) !important;
  color: white !important;
  font-weight: 600 !important;
}

/* 並び替えエリアのスタイル改善 */
.p-product-sort {
  display: flex !important;
  justify-content: flex-end !important;
  margin-bottom: 2rem !important;
  align-items: center !important;
}

.p-product-sort__select {
  padding: 8px 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-gothic) !important;
  transition: border-color 0.3s !important;
}

.p-product-sort__select:focus {
  border-color: var(--color-ai) !important;
  outline: none !important;
}

/* ページネーションのスタイル改善 */
.p-pagination {
  display: flex !important;
  justify-content: center !important;
  margin: 4rem 0 !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
}

.p-pagination__item {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #ddd !important;
  margin: 0 !important;
  border-radius: 4px !important;
  color: var(--color-black) !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  background-color: var(--color-white) !important;
}

.p-pagination__item:hover {
  border-color: var(--color-ai) !important;
  color: var(--color-ai) !important;
  transform: translateY(-2px) !important;
}

.p-pagination__item.is-active {
  background-color: var(--color-ai) !important;
  border-color: var(--color-ai) !important;
  color: white !important;
}

.p-pagination__arrow {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #ddd !important;
  margin: 0 !important;
  border-radius: 4px !important;
  color: var(--color-black) !important;
  transition: all 0.3s !important;
  background-color: var(--color-white) !important;
}

.p-pagination__arrow:hover {
  border-color: var(--color-ai) !important;
  color: var(--color-ai) !important;
  transform: translateY(-2px) !important;
}

.p-pagination__arrow.is-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* 商品がない場合の表示スタイル改善 */
.p-product-empty {
  text-align: center !important;
  padding: 4rem 2rem !important;
  /* 桜色から和紙風背景に変更 */
  /* background-color: var(--color-sakura) !important; */
  background: 
    radial-gradient(circle at 25% 75%, rgba(160, 140, 120, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(140, 130, 115, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 45% 55%, rgba(180, 165, 145, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #f9f6f0 0%, #f5f1e8 25%, #f1ecdf 50%, #ede6d7 75%, #e9e2d5 100%) !important;
  border-radius: 8px !important;
  margin-bottom: 3.5rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  position: relative !important;
}

/* 商品がない場合の表示エリアに和紙繊維パターンを追加 */
.p-product-empty::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: 
    linear-gradient(45deg, rgba(160, 140, 120, 0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(140, 130, 115, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 165, 145, 0.02) 1px, transparent 1px) !important;
  background-size: 15px 15px, 20px 20px, 25px 25px !important;
  pointer-events: none !important;
  border-radius: 8px !important;
}

.p-product-empty__icon {
  font-size: 3.5rem !important;
  color: #cccccc !important;
  margin-bottom: 1.5rem !important;
}

.p-product-empty__title {
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.2rem !important;
  color: var(--color-black) !important;
  font-family: var(--font-mincho) !important;
}

.p-product-empty__text {
  font-size: 1.1rem !important;
  color: var(--color-black) !important;
  margin-bottom: 2rem !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.7 !important;
}

.p-product-empty__button {
  display: inline-block !important;
  background-color: var(--color-ai) !important;
  color: white !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  transition: background-color 0.3s, transform 0.2s !important;
  font-size: 1rem !important;
  letter-spacing: 0.03em !important;
}

.p-product-empty__button:hover {
  background-color: var(--color-ai-light) !important;
  transform: translateY(-2px) !important;
}

/* フッター - 画面幅いっぱいに表示 */
.l-wrapper#js__top .p-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* 商品一覧ページのスタイル */
.p-product-list {
  padding: 30px 0;
}

.p-product-filter__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.p-product-filter__item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
}

.p-product-filter__item:hover {
  border-color: #4a6f8a;
  color: #4a6f8a;
}

.p-product-filter__item.is-active {
  background-color: #4a6f8a;
  border-color: #4a6f8a;
  color: white;
}

.p-product-sort {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.p-product-sort__select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  color: #555;
  font-size: 0.9rem;
}

/* 商品一覧ページヘッダーのスタイル - 最優先で冒頭に配置 */
.p-products-page-header {
  text-align: center !important;
  margin: 0 auto 4rem !important;
  padding: 2rem 1rem 3rem !important;
  max-width: 900px !important;
  position: relative !important;
}

.p-products-page-header::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100px !important;
  height: 3px !important;
  background-color: var(--color-yamabuki) !important;
}

.p-products-page-header__title {
  font-size: 3rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  color: var(--color-ai) !important;
  font-family: var(--font-mincho) !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
}

.p-products-page-header__description {
  font-size: 1.5rem !important;
  line-height: 1.8 !important;
  color: var(--color-black) !important;
  font-family: var(--font-gothic) !important;
  /* max-width: 800px !important; */
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  .p-products-page-header {
    margin-bottom: 3rem !important;
    padding: 1.5rem 1rem 2.5rem !important;
  }
  
  .p-products-page-header__title {
    font-size: 2.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .p-products-page-header__description {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .p-products-page-header__title {
    font-size: 1.8rem !important;
  }
  
  .p-products-page-header__description {
    font-size: 1rem !important;
  }
}

/* 商品カードのスタイル追加 - 背景色のみ変更 */
.p-product-card {
  /* 桜色から和紙風背景に変更 */
  /* background-color: var(--color-sakura) !important; */
  background: 
    radial-gradient(circle at 25% 75%, rgba(160, 140, 120, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(140, 130, 115, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 45% 55%, rgba(180, 165, 145, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #f9f6f0 0%, #f5f1e8 25%, #f1ecdf 50%, #ede6d7 75%, #e9e2d5 100%) !important;
  width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 30px !important;
  box-sizing: border-box !important;
  position: relative !important;
  border-radius: 8px !important;
  padding: 1rem !important;
}

/* 商品カードに和紙繊維パターンを追加 */
.p-product-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: 
    linear-gradient(45deg, rgba(160, 140, 120, 0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(140, 130, 115, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 165, 145, 0.02) 1px, transparent 1px) !important;
  background-size: 15px 15px, 20px 20px, 25px 25px !important;
  pointer-events: none !important;
  border-radius: 8px !important;
}

.p-product-card__image {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto 15px;
}

.p-product-card__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: auto;
}

.p-product-card__description {
    font-size: 20px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 67px;
    margin: 0px 0px 10px;
    overflow: hidden;
}
.p-subscription-banner__button {
  text-align: center;
}

/* ここで商品カードのスタイルと商品グリッドのレイアウトセクションを削除 */ 