/* トップページ専用スタイル */

/* メインコンテンツ */
.main-content {
  margin-top: 20px;
  padding-top: 0;
}

/* メインビジュアルスライダー */
.main-visual-slider {
  margin-top: 20px;
  padding-top: 0;
}

.slider-container {
  margin-top: 0;
  padding-top: 0;
}

/* メインバナー */
.main-banner {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background-color: #FFF100;
  padding: 15px 0;
}

.banner-text {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sale-banner {
  background-color: #FFF100;
}

/* セクション共通スタイル */
.section-title {
  font-size: 1.8em; /* PCビューで1.8emに設定 */
  font-weight: bold;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
  color: var(--dark-grey);
}

/* NEWSセクション */
.news-section {
  margin-bottom: 40px;
}

.news-list {
  font-size: 14px;
}

.news-list a {
  color: var(--dark-grey);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.news-list a:hover {
  color: var(--accent-color);
}

/* 商品グリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.product-item {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
  padding: 0;
  overflow: hidden;
}

.product-image {
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 8px 15px 15px;
}

.product-name {
  font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
  font-weight: 600 !important;
  margin-bottom: 16px;
  min-height: 50px;
  -webkit-line-clamp: 2;
  color: #333;
}

.product-name a {
  color: inherit !important;
  text-decoration: none !important;
  padding: 0 !important;
  display: inline !important;
}

.product-name a:hover {
  color: #AB3B3A !important;
}

.product-description {
  font-size: 0.75em; /* 12px相当をemで表現 */
  color: #666;
  margin-bottom: 0.625em; /* 10px相当をemで表現 */
  line-height: 1.4;
}

.product-price {
  font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
  font-weight: 600 !important;
  color: #AB3B3A;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  margin-right: 5px;
}

.free-shipping-badge {
  display: inline-block;
  padding: 3px 6px;
  margin: 0 0 8px;
  background-color: #AB3B3A;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* フリースペース */
.free-space {
  margin-bottom: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* PC用セクションをスマホで非表示 */
  .pc-additional-content {
    display: none !important;
  }

  /* === Amazon風 1列グリッド === */
  .product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  /* セクションタイトルをスマホ最適サイズに */
  .section-title {
    font-size: 1.5em !important; /* 商品名（1.25em）より大きく設定 */
    font-weight: 600;
    margin: 0 0 20px;
    padding: 20px 16px 12px;
    border-bottom: 2px solid #AB3B3A;
    color: var(--dark-grey);
    background: white;
    border-radius: 0;
    text-align: left;
    letter-spacing: 0.01em;
    line-height: 1.3;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    width: calc(100% - 32px);
    height: 2px;
    background-color: #AB3B3A;
  }
  
  /* Amazon風商品カード（1列・フラットデザイン） */
  .product-item {
    border: none !important;
    border-radius: 0 !important;
    background-color: white !important;
    padding: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  
  .product-item:hover {
    background-color: #f8f9fa !important;
    box-shadow: none !important;
    transform: none !important;
    border-color: #e0e0e0 !important;
  }
  
  .product-item a {
    display: flex !important;
    align-items: center !important;
    padding: 16px !important;
    gap: 16px !important;
    text-decoration: none !important;
  }
  
  .product-image {
    width: 120px !important;
    height: 120px !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    position: relative !important;
    background: #f8f9fa !important;
    border-radius: 0 !important;
  }
  
  .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: none !important;
  }
  
  .product-info {
    flex: 1 !important;
    padding: 0 !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .product-name {
    font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
    font-weight: 600 !important;
    margin-bottom: 16px;
    min-height: 50px;
    -webkit-line-clamp: 2;
  }
  
  .product-name a {
    color: inherit !important;
    text-decoration: none !important;
    padding: 0 !important;
    display: inline !important;
  }
  
  .product-name a:hover {
    color: #AB3B3A !important;
  }
  
  /* カテゴリセクション間の余白を調整（境界線除去） */
  .category-section,
  .menu-section {
    margin-bottom: 0;
    background: white;
    border-radius: 0;
    padding: 0 0 24px 0;
    box-shadow: none;
    border-bottom: none;
  }
  
  .category-section:last-child,
  .menu-section:last-child {
    margin-bottom: 24px;
    border-bottom: none;
  }
  
  /* ニュースセクション最適化（画面全幅・シンプル・コンパクト） */
  .news-section {
    margin-bottom: 0;
    background: white;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .news-list {
    font-size: 18px;
    padding: 0 0 8px;
  }
  
  .news-item {
    padding: 8px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 32px;
  }
  
  .news-item:last-child {
    border-bottom: none;
  }
  
  .news-date {
    flex-shrink: 0;
    font-size: 12px;
    color: #666;
    background: none;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    min-width: 80px;
    text-align: left;
    border: none;
    line-height: 1.2;
  }
  
  .news-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
    color: var(--dark-grey);
    font-weight: 500;
    border-bottom: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  a.news-text {
    border-bottom: none;
    text-decoration: none;
  }
  
  a.news-text:hover {
    color: #AB3B3A;
  }
  
  /* メインビジュアル最適化（画面全幅・角丸なし・カテゴリタブと完全密着） */
  .main-visual-slider {
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .slider-container {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .slider-wrapper {
    border-radius: 0;
    width: 100%;
  }
  
  .slideshow-navigation {
    bottom: 20px;
    right: 20px;
  }
  
  /* スマホビューではスライダーコントロールを全て非表示 */
  .slideshow-navigation,
  .slide-nav-button,
  .slide-page-counter,
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-direction {
    display: none !important;
  }
  
  .slide-nav-button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #AB3B3A;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(171,59,58,0.2);
  }
  
  .slide-nav-button:hover {
    background: #AB3B3A;
    color: white;
    transform: scale(1.1);
  }
  
  .slide-page-counter {
    color: var(--dark-grey);
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(171,59,58,0.2);
  }
  
  /* 「商品なし」メッセージの改善（装飾除去） */
  .no-products-message {
    text-align: center;
    padding: 20px 16px;
    color: #888;
    font-size: 15px;
    background: none;
    border-radius: 0;
    border: none;
    margin: 0;
    line-height: 1.5;
  }
  
  .p-main-slider .slider img,
  .bx-wrapper img {
    max-height: 220px;
    border-radius: 0;
  }
  
  .p-main-slider {
    margin: 0 0 0 !important;
    width: 100%;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }
  
  .bx-wrapper {
    margin: 0 0 0 !important;
    width: 100%;
    margin-left: -16px !important;
    margin-right: -16px !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
  }
  
  .slider,
  .bx-wrapper {
    border-radius: 0;
    box-shadow: none;
  }

  /* === モバイル専用追加コンテンツ === */
  .mobile-only-content {
    display: block !important;
  }

  /* モバイル専用セクションタイトル（シンプル） */
  .mobile-section-title,
  .section-title {
    font-size: 1.5em !important; /* 商品名（1.25em）より大きく設定 */
    font-weight: 600 !important;
    margin: 0 0 20px !important;
    padding: 20px 16px 12px !important;
    background: white !important;
    text-align: left !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
    color: #333 !important;
    border-bottom: 2px solid #AB3B3A !important;
    position: relative !important;
  }

  /* 全てのタイトルの下線を統一マージンで設定 */
  .mobile-section-title::after,
  .section-title::after,
  .category-section .section-title::after,
  .menu-section .section-title::after,
  .news-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    width: calc(100% - 32px);
    height: 2px;
    background-color: #AB3B3A;
  }

  /* アイコンを削除 */
  .mobile-section-title::before,
  .section-title::before {
    display: none !important;
  }

  /* 商品グリッド関連のセクションタイトル統一 */
  .category-section .section-title,
  .menu-section .section-title,
  .news-section .section-title {
    font-size: 1.5em !important; /* 商品名（1.25em）より大きく設定 */
    font-weight: 600 !important;
    margin: 0 0 20px !important;
    padding: 20px 16px 12px !important;
    background: white !important;
    text-align: left !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
    color: #333 !important;
    border-bottom: 2px solid #AB3B3A !important;
    position: relative !important;
  }

  /* 商品カテゴリのアイコンも削除 */
  .category-section .section-title::before,
  .menu-section .section-title::before,
  .news-section .section-title::before {
    display: none !important;
  }

  /* フッター情報 - シンプル3要素構成 */
  .mobile-footer-info {
    background: white !important;
    padding: 50px 16px 60px 16px !important;
    text-align: center !important;
    border-bottom: none !important;
    margin-bottom: 80px !important;
  }

  .mobile-footer-logo {
    margin-bottom: 20px !important;
  }

  .mobile-footer-logo img {
    max-height: 50px !important;
    width: auto !important;
  }

  /* Instagramリンク */
  .mobile-footer-instagram {
    margin-bottom: 20px !important;
  }

  .mobile-footer-instagram a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #AB3B3A !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
  }

  .mobile-footer-instagram a:hover {
    color: #8b2e2d !important;
  }

  .mobile-footer-instagram svg {
    flex-shrink: 0 !important;
  }

  .mobile-footer-copyright {
    padding-bottom: 0 !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .mobile-footer-copyright p {
    margin: 0 !important;
    font-size: 11px !important;
    color: #999 !important;
    line-height: 1.3 !important;
  }

  /* メインコンテンツの下部余白を削除 */
  .main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 固定フッターメニューとコンテンツをピッタリ接続 */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 12px 0 16px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    margin-top: 0;
  }

  /* === モバイル専用セクションタイトル統一デザイン === */
  .section-title {
    font-size: 1.5em !important; /* 商品名（1.25em）より大きく設定 */
    font-weight: 600 !important;
    margin: 0 0 20px !important;
    padding: 20px 16px 12px !important;
    background: white !important;
    text-align: left !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
    color: #333 !important;
    border-bottom: 2px solid #AB3B3A !important;
    position: relative !important;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    width: calc(100% - 32px);
    height: 2px;
    background-color: #AB3B3A;
  }

  /* アイコンを削除 */
  .section-title::before {
    display: none !important;
  }

  /* 各セクション個別のアイコン調整 */
  .mobile-store-info .section-title::before {
    display: none !important;
  }

  .mobile-recent-products .section-title::before {
    display: none !important;
  }

  .mobile-shopping-guide .section-title::before {
    display: none !important;
  }

  /* ニュースセクションのタイトルアイコン */
  .news-section .section-title::before {
    display: none !important;
  }

  /* カテゴリセクションのタイトルアイコン */
  .category-section .section-title::before,
  .menu-section .section-title::before {
    display: none !important;
  }

  /* 店舗情報セクション - 商品カテゴリと同じパディング構造 */
  .mobile-store-info,
  .mobile-recent-products,
  .mobile-shopping-guide {
    background: white !important;
    border-bottom: none !important; /* グレーの境界線を削除 */
    padding: 0 16px 20px 16px !important;
  }

  .mobile-store-photo {
    padding: 0 0 16px 0 !important;
    text-align: center !important;
  }

  .mobile-store-photo img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 150px !important;
    object-fit: contain !important;
  }

  /* シンプルな店舗情報 */
  .mobile-store-details {
    padding: 0 !important;
  }

  .store-name h3 {
    margin: 0 0 12px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: center !important;
  }

  .store-info {
    margin-bottom: 16px !important;
  }

  .store-info:empty {
    margin-bottom: 0 !important; /* 内容がない場合は余白を削除 */
  }

  .store-info p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
  }

  .store-address,
  .store-tel,
  .store-manager {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #555 !important;
  }

  .label {
    font-weight: 600 !important;
    color: #333 !important;
  }

  /* 古いスタイルを削除 */
  .mobile-store-card,
  .store-subtitle,
  .store-description {
    display: none !important;
  }

  /* 最近チェックした商品セクション */
  .mobile-recent-products {
    background: white !important;
    border-bottom: none !important;
    padding: 0 16px 80px 16px !important;
  }

  .mobile-recent-scroll {
    display: flex !important;
    overflow-x: auto !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .mobile-recent-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .mobile-recent-item {
    flex-shrink: 0 !important;
    width: calc(100% / 3) !important;
    aspect-ratio: 1 !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: none !important;
  }

  .mobile-recent-item a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  .mobile-recent-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ショッピングガイドセクション */
  .mobile-shopping-guide {
    background: white !important;
    border-bottom: none !important;
    padding: 0 16px 20px 16px !important;
  }

  .mobile-guide-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .mobile-guide-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
  }

  .mobile-guide-item:hover {
    background: #FFF1F1 !important;
    color: #AB3B3A !important;
  }

  .mobile-guide-item svg {
    flex-shrink: 0 !important;
  }

  .mobile-guide-item span {
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  /* 店長一言メモスタイル */
  .store-manager-comment {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    margin-bottom: 16px !important;
  }

  .store-manager-comment:empty {
    display: none !important;
  }

  /* スマホビューの金額テキストを商品名と同じサイズに設定 */
  .product-price {
    font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
    font-weight: 600 !important;
  }
}

@media (max-width: 480px) {
  /* === 最小画面での極限最適化 === */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 8px;
  }
  
  .section-title {
    font-size: 24px;
    padding: 16px 16px 12px;
    margin-bottom: 24px;
  }
  
  /* 商品カードを1列時により美しく */
  .product-item {
    border-radius: 16px;
    max-width: 100%;
  }
  
  .product-info {
    padding: 20px 24px 24px;
    min-height: 120px;
  }
  
  .product-name {
    font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
    font-weight: 600 !important;
    margin-bottom: 16px;
    min-height: 50px;
    -webkit-line-clamp: 2;
  }
  
  .product-price {
    font-size: 1.2em !important; /* 1.25emから1.2emに修正 */
    font-weight: 600 !important;
  }
  
  .free-shipping-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 16px;
  }
  
  /* カテゴリセクション */
  .category-section,
  .menu-section {
    margin-bottom: 40px;
    padding: 20px 12px 24px;
    border-radius: 0;
    box-shadow: none;
  }
  
  /* ニュースセクション（画面全幅・シンプル） */
  .news-section {
    padding: 20px 16px 24px;
    border-radius: 0;
    box-shadow: none;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .news-item {
    padding: 8px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 32px;
  }
  
  .news-item:last-child {
    border-bottom: none;
  }
  
  .news-date {
    flex-shrink: 0;
    font-size: 12px;
    color: #666;
    background: none;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    min-width: 80px;
    text-align: left;
    border: none;
    line-height: 1.2;
  }
  
  .news-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* メインビジュアル（画面全幅・角丸なし） */
  .main-visual-slider {
    margin: 16px 0 0;
    border-radius: 0;
    box-shadow: none;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  .slider-wrapper {
    border-radius: 0;
  }
  
  .slide-nav-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .slide-page-counter {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 16px;
  }
  
  /* bx-wrapper も画面全幅に */
  .p-main-slider,
  .bx-wrapper {
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative;
  }
  
  /* スマホビューではスライダーコントロールを全て非表示 */
  .slideshow-navigation,
  .slide-nav-button,
  .slide-page-counter,
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-direction {
    display: none !important;
  }
  
  /* 「商品なし」メッセージ */
  .no-products-message {
    padding: 32px 16px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* --- スライダー参考サイト風デザイン --- */
.p-main-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 0;
}
.p-main-slider .slider {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-main-slider .slider img,
.bx-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}
.bx-wrapper {
  max-width: 1200px;
  margin: 0 auto 30px auto !important;
  height: auto !important;
  min-height: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
.bx-wrapper .bx-pager {
  display: block !important;
  position: relative;
  margin-top: 10px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #bbb;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  display: inline-block;
  transition: background 0.2s;
}
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #AB3B3A;
}

@media (max-width: 768px) {
  .p-main-slider .slider img,
  .bx-wrapper img {
    max-height: 220px;
    border-radius: 0;
  }
  
  .p-main-slider {
    margin: 0 0 0 !important;
    width: 100%;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }
  
  .bx-wrapper {
    margin: 0 0 0 !important;
    width: 100%;
    margin-left: -16px !important;
    margin-right: -16px !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
  }
  
  .slider,
  .bx-wrapper {
    border-radius: 0;
    box-shadow: none;
  }
  
  /* スマホビューではスライダーコントロールを全て非表示 */
  .slideshow-navigation,
  .slide-nav-button,
  .slide-page-counter,
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-direction {
    display: none !important;
  }
}

.slider,
.bx-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px auto;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像だけ中央トリミング */
.slider img,
.bx-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.bx-wrapper,
.bx-viewport {
  overflow: hidden !important;
}

/* スライダーコンテナ */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.shipping-included {
  font-size: 12px;
  color: #666;
  margin-left: 8px;
}

.no-product {
  text-align: center;
  color: #666;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 4px;
}

/* スマホ専用コンテンツをPCでは非表示 */
.mobile-only-content {
  display: none;
}

/* 店舗情報以下のタイトルも商品カテゴリタイトルと完全統一 */
.mobile-section-title {
  font-size: 1.5em !important; /* 商品名（1.25em）より大きく設定 */
  font-weight: 600 !important;
  margin: 0 0 20px !important;
  padding: 20px 16px 12px !important;
  background: white !important;
  text-align: left !important;
  letter-spacing: 0.01em !important;
  line-height: 1.3 !important;
  color: #333 !important;
  border-bottom: 2px solid #AB3B3A !important;
  position: relative !important;
}

.mobile-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #AB3B3A;
}

/* アイコンを削除 */
.mobile-section-title::before {
  display: none !important;
}

/* PC用追加コンテンツ */
.pc-additional-content {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pc-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* PC店舗情報セクション */
.pc-store-info {
  margin-bottom: 40px;
  padding: 20px 0;
}

.pc-store-card {
  display: flex;
  flex-direction: column;
}

.pc-store-photo {
  width: 100%;
  margin-bottom: 20px;
}

.pc-store-photo img {
  width: 100%;
  height: auto;
}

.pc-store-details {
  width: 100%;
}

.pc-store-manager-comment {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.pc-store-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
  text-align: center;
}

.pc-store-contact {
  padding-top: 20px;
  margin-top: 20px;
}

.pc-store-address,
.pc-store-tel {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.pc-store-contact .label {
  font-weight: 600;
  color: #333;
  margin-right: 8px;
}

/* PC最近チェックした商品セクション */
.pc-recent-products {
  margin-bottom: 80px;
  padding: 20px 0;
}

.pc-recent-grid {
  display: flex;
  gap: 10px; /* アイテム間に少し隙間を設けると見栄えが良くなります */
}

.pc-recent-item {
  flex: 0 0 calc((100% - 50px) / 6); /* 伸縮せず、6分割した幅を維持（gapを考慮） */
  width: calc((100% - 50px) / 6);   /* widthも明示的に指定 */
  transition: transform 0.3s ease;
}

.pc-recent-item:hover {
  transform: translateY(-5px);
}

.pc-recent-item a {
  display: block;
}

.pc-recent-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.pc-recent-item:hover img {
  filter: brightness(0.8);
}

.pc-recent-info {
  display: none;
}

.pc-recent-name {
  display: none;
}

/* PC用セクションタイトルの左右パディングを商品セクションと統一 */
.pc-content-container .section-title {
  padding: 0 0 10px 16px;
}