@charset "euc-jp";

/* アクセント色の変更 */
:root {
  --accent-color: #AB3B3A;
  --light-accent-color: #FFF1F1;
  --header-bg-color: #ffffff;
  --dark-grey: #333;
  --light-grey: #f5f5f5;
  --border-color: #e0e0e0;
  --font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* 全体のレイアウト調整 */
body {
  background-color: #ffffff;
  background-image: none;
  color: #333333;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* リセットとベーススタイル */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #AB3B3A;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* コンテナの最大幅を一般的なECサイトに合わせる */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#wrapper {
  background-color: #fff;
  overflow: hidden;
}

/* トップお知らせバー */
.header-top {
  background-color: #FFF1F1;
  font-size: 10pt;
  padding: 8px 0;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 400;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.welcome-text {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  font-size: 8pt;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-nav li a {
  color: var(--dark-grey);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.utility-nav li a:not(.btn-login):not(.btn-member)::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 9l4-4-4-4' stroke='%23AB3B3A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.utility-nav li a:hover {
  color: var(--accent-color);
}

.btn-login, .btn-member {
  background-color: var(--accent-color);
  color: #fff !important;
  padding: 6px 18px;
  min-width: 80px;
  height: 28px;
  border-radius: 3px !important;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  border: none;
  cursor: pointer;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin: 0 8px 0 0;
}

.btn-login:last-child, .btn-member:last-child {
  margin-right: 0;
}

.btn-login:hover, .btn-member:hover,
.btn-login:focus, .btn-member:focus {
  background-color: #a32d2d;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(171,59,58,0.08);
  text-decoration: none;
}

/* ログアウトボタンのスタイル */
.btn-logout {
  background-color: transparent;
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color);
  padding: 6px 18px;
  min-width: 80px;
  height: 28px;
  border-radius: 3px !important;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  box-shadow: none;
  cursor: pointer;
  text-align: center;
  outline: none;
  text-decoration: none;
  margin: 0 8px 0 0;
}

.btn-logout:last-child {
  margin-right: 0;
}

.btn-logout:hover,
.btn-logout:focus {
  background-color: var(--accent-color);
  color: #fff !important;
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(171,59,58,0.15);
  text-decoration: none;
}

.top-nav li {
  position: relative;
  margin-left: 15px;
}

.top-nav li:not(:last-child):after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background-color: #ddd;
}

.top-nav a {
  color: var(--dark-grey);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: var(--accent-color);
}

.btn-login, .btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 3px;
  background-color: var(--accent-color);
  color: white !important;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-login:hover, .btn-register:hover {
  background-color: #8b2e2d;
  color: white !important;
}

/* ヘッダーメイン部分 */
.header-main {
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ロゴエリア */
.logo-area {
  flex: 0 0 auto;
}

.site-logo {
  margin: 0;
}

.site-logo a {
  color: #333;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.site-name {
  display: flex;
  flex-direction: column;
}

.shop-catch {
  font-size: 12px;
  color: var(--dark-grey);
}

/* 検索エリア */
.search-area {
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
}

.search-form {
  display: flex;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
  max-width: 400px;
  margin: 0 auto;
  height: 40px;
}

.search-form input[type="text"] {
  flex-grow: 1;
  padding: 8px 15px;
  border: none;
  font-size: 14px;
  background-color: #fff;
  height: 100%;
  border-radius: 25px 0 0 25px;
  outline: none;
  box-shadow: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.search-form input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffd6d6;
  border-color: var(--accent-color);
}

.search-form button {
  padding: 8px 20px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0 25px 25px 0;
}

.search-form button:hover {
  background-color: #8B2E2D;
}

/* ユーティリティアイコン */
.utility-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-grey);
  text-decoration: none;
  transition: color 0.3s;
  text-align: center;
  width: 60px;
}

.utility-icon:hover {
  color: var(--accent-color);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
  margin-bottom: 4px;
}

.icon-text {
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

/* カートボタン */
.l-header-cart {
  position: relative;
}

.l-header-cart-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

/* メインコンテンツエリア */
.main-content {
  padding: 20px 0;
  background-color: #fff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
}

.col-lg-9 {
  width: 75%;
}

.col-lg-3 {
  width: 25%;
}

/* ユーティリティクラス */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 { color: #333; }

.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }

.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* サイドナビゲーション */
#side {
  margin-bottom: 30px;
}

/* サイドバーメニュー */
.sidebar-menu {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  border-bottom: 1px solid var(--border-color);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--dark-grey);
  background: #fff;
  transition: all 0.3s;
  text-decoration: none;
}

.menu-link:hover {
  background-color: var(--light-accent-color);
  color: var(--accent-color);
}

.menu-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.menu-text {
  font-size: 14px;
  font-weight: 500;
}

/* 送料無料セクション */
.shipping-info-section {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.side-section-title {
  background-color: var(--accent-color);
  padding: 12px 15px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.shipping-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-list li {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--dark-grey);
}

.shipping-list li:last-child {
  border-bottom: none;
}

/* サイドリンクセクション */
.side-links-section {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.side-link:hover {
  background-color: var(--light-accent-color);
  color: var(--accent-color);
}

.side-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.side-link-text {
  font-size: 13px;
}

/* モバイルメニューボタン */
.mobile-menu-toggle {
  display: none;
  width: 30px;
  height: 25px;
  position: fixed;
  right: 15px;
  top: 15px;
  cursor: pointer;
  z-index: 1001;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 22px;
}

.mobile-menu-toggle.open span:nth-child(1) {
  top: 14px;
  transform: rotate(135deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-toggle.open span:nth-child(3) {
  top: 14px;
  transform: rotate(-135deg);
}

/* フッター */
#footer {
  background-color: #f8f8f8;
  padding: 30px 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

/* ソーシャルリンク */
.social-links {
  text-align: center;
  margin-bottom: 20px;
}

.social-links ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s;
  font-size: 16px;
}

.social-links a:hover {
  background-color: var(--accent-color);
}

/* フッターナビゲーション */
.footer-nav {
  text-align: center;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 0 10px 10px;
}

.footer-nav a {
  color: var(--dark-grey);
  font-size: 13px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

/* コピーライト */
.copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* レスポンシブ対応の調整 */
@media (max-width: 992px) {
  .col-lg-9, .col-lg-3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* === Amazon風2階層ヘッダー === */
  
  /* トップお知らせバーを非表示 */
  .header-top {
    display: none;
  }
  
  /* 上層ヘッダー（白背景 + ロゴのみ）- さらに縦にコンプレッション */
  .header-main {
    background: white;
    padding: 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: none;
  }
  
  .header-inner {
    flex-direction: row;
    gap: 0;
    padding: 0 16px;
    align-items: center;
    justify-content: flex-end;
    min-height: 64px;
  }
  
  /* コンテナとメインコンテンツの調整（スマホ専用） */
  .container {
    padding: 0 16px;
  }
  
  .main-content {
    padding-bottom: 88px;
    padding-top: 0;
  }
  
  /* コンテンツエリアの調整 */
  #contents {
    order: 2;
    padding: 0;
  }
  
  /* ロゴエリア（白背景でシンプル・右寄せ） */
  .logo-area {
    order: 1;
    align-self: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .site-logo {
    transform: scale(1.0);
    margin: 0;
    margin-left: -10px;
  }
  
  .site-logo a {
    color: #333;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .shop-catch {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.2;
  }
  
  /* 検索バーを非表示 */
  .search-area {
    display: none;
  }
  
  /* ユーティリティアイコンを非表示（後でフッター固定メニューに移動） */
  .utility-icons {
    display: none;
  }
  
  /* === 下層：カテゴリタブ（完全密着） === */
  .category-tabs {
    display: flex !important;
    overflow-x: auto;
    gap: 8px;
    padding: 8px 0;
    margin: 0;
    background: linear-gradient(135deg, #AB3B3A 0%, #8b2e2d 100%);
    border-top: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-items: center;
  }
  
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .category-tab {
    flex-shrink: 0;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    white-space: nowrap;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 0;
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .category-tab:first-child {
    margin-left: 16px;
  }
  
  .category-tab:last-child {
    margin-right: 16px;
  }
  
  .category-tab:hover,
  .category-tab.active {
    background: rgba(255, 255, 255, 1);
    color: #AB3B3A;
    border-color: rgba(255, 255, 255, 1);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
  }
  
  /* === サイドバー調整 === */
  #side {
    order: 1;
    margin-bottom: 0;
  }
  
  .sidebar-menu {
    display: none;
  }
  
  /* サイドリンクセクションを非表示（後でハンバーガーメニューに） */
  .side-links-section {
    display: none;
  }
  
  /* === フッター === */
  #footer {
    display: none; /* 通常フッターは非表示 */
  }
  
  /* === モバイルメニューボタンを削除 === */
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  /* === 最小画面での最適化 === */
  .header-top .container {
    padding: 0 12px;
  }
  
  .header-inner {
    padding: 0 12px;
  }
  
  .welcome-text {
    font-size: 11px;
  }
  
  .search-form {
    height: 44px;
    border-radius: 22px;
  }
  
  .search-form input[type="text"] {
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 22px 0 0 22px;
  }
  
  .search-form button {
    padding: 10px 16px;
    border-radius: 0 22px 22px 0;
    width: 48px;
  }
  
  .utility-icons {
    gap: 16px;
  }
  
  .utility-icon {
    min-width: 56px;
    padding: 6px 8px;
  }
  
  .icon-text {
    font-size: 10px;
  }
  
  /* カテゴリタブ */
  .category-tabs {
    padding: 12px 0;
    gap: 8px;
    align-items: center;
  }
  
  .category-tab {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 40px;
    border-radius: 50px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* サイドリンク */
  .side-link {
    padding: 12px;
    min-height: 48px;
  }
  
  .side-link-text {
    font-size: 13px;
  }
  
  /* フッター */
  .footer-nav a {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
  }
}

/* メインビジュアルスライダー */
.main-visual-slider {
  width: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 500px;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スライドショーナビゲーション */
.slideshow-navigation {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.slide-nav-button {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4B89DC;
  transition: all 0.3s;
}

.slide-nav-button:hover {
  background: #4B89DC;
  color: #fff;
}

.slide-page-counter {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 4px;
  min-width: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .slider-wrapper {
    height: 300px;
  }
}

/* セクション共通 */
.menu-section,
.category-section,
.news-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* セクションタイトル */
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-grey);
  margin: 0 0 30px;
  padding: 0 0 10px 16px;
  border-bottom: 2px solid var(--accent-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

/* お知らせセクション */
.news-section {
  background-color: #fff;
}

.news-list {
  margin: 0;
}

.news-item {
  padding: 15px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.news-date {
  color: #666;
  font-size: 14px;
  margin-right: 15px;
  min-width: 100px;
  flex-shrink: 0;
  line-height: 1.6;
}

.news-text {
  flex: 1;
  color: var(--dark-grey);
  text-decoration: none;
  display: block;
  line-height: 1.6;
}

a.news-text {
  color: var(--dark-grey);
  text-decoration: none;
  transition: color 0.3s;
}

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

.news-more {
  padding: 0;
  text-align: center;
}

.btn-more {
  display: inline-block;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-more:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* === AMAZON級 UX追加スタイル === */

/* カテゴリタブの初期非表示（PC時） */
.category-tabs {
  display: none;
}

/* カート成功トースト（Amazon風） */
.cart-success-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--accent-color);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-size: 14px;
  font-weight: 500;
  display: none;
  max-width: 280px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-content svg {
  flex-shrink: 0;
}

/* タッチフィードバック */
.product-item.touch-active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

@media (max-width: 768px) {
  /* カテゴリタブをスマホで表示 */
  .category-tabs {
    display: flex !important;
  }
  
  /* カート成功トーストをスマホ最適化 */
  .cart-success-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    text-align: center;
  }
}

/* === AMAZON級 固定フッターメニュー === */
.mobile-bottom-nav {
  display: none;
}

/* ハンバーガーメニューオーバーレイ */
.hamburger-overlay {
  display: none;
}

@media (max-width: 768px) {
  /* === 長崎卓袱浜勝ブランド 固定フッターメニュー === */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: none;
    padding: 12px 0 16px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  }
  
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    padding: 8px 4px;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    min-height: 52px;
  }
  
  .nav-item:hover,
  .nav-item:active {
    color: #AB3B3A;
    transform: translateY(-1px);
  }
  
  .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    min-height: 52px;
    padding: 8px 4px;
    transition: all 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link:active {
    color: #AB3B3A;
    transform: translateY(-1px);
  }
  
  .nav-icon {
    position: relative;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-text {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: inherit;
  }
  
  /* モバイルカートバッジを和風ブランドに */
  .mobile-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: #AB3B3A;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(171,59,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* === ハンバーガーメニューオーバーレイを和風ブランドに === */
  .hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(171,59,58,0.4);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hamburger-overlay.show {
    display: block;
    opacity: 1;
  }
  
  .hamburger-content {
    background: white;
    height: 100%;
    width: 85%;
    max-width: 340px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 16px rgba(171,59,58,0.2);
  }
  
  .hamburger-overlay.show .hamburger-content {
    transform: translateX(0);
  }
  
  .hamburger-header {
    background: linear-gradient(135deg, #AB3B3A 0%, #8b2e2d 100%);
    color: white;
    padding: 24px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .hamburger-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
  }
  
  .close-hamburger {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close-hamburger:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .hamburger-menu-list {
    padding: 0 0 100px;
  }
  
  .menu-section {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
  }
  
  .menu-section:last-child {
    border-bottom: none;
  }
  
  .menu-section h4 {
    margin: 0 0 16px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #AB3B3A;
  }
  
  .hamburger-menu-item {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 1px solid #F5F5F5;
    transition: all 0.2s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .hamburger-menu-item:hover {
    background: #FFF1F1;
    color: #AB3B3A;
    padding-left: 24px;
  }
  
  .hamburger-menu-item:last-child {
    border-bottom: none;
  }
  
  /* メインコンテンツの下部余白（固定フッターメニュー分） */
  .main-content {
    padding-bottom: 88px;
  }
  
  /* カテゴリタブをスマホで表示 */
  .category-tabs {
    display: flex !important;
  }
  
  /* カート成功トーストを和風ブランドに */
  .cart-success-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    text-align: center;
    background: #AB3B3A;
    border-radius: 8px;
  }
}

/* === Cookie同意バナー スタイル ===  */
#cookie-consent-banner {
  font-family: var(--font-family);
}

#cookie-consent-banner a {
  color: #AB3B3A !important;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #8b2e2d !important;
}

/* Cookie同意バナーのモバイル対応 */
@media (max-width: 768px) {
  #cookie-consent-banner {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px 16px !important;
    text-align: center !important;
  }
  
  #cookie-consent-banner > div:first-child {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
  
  #cookie-consent-banner > div:last-child {
    justify-content: center !important;
    width: 100% !important;
  }
  
  #cookie-consent-banner button {
    min-width: 120px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  #cookie-consent-banner {
    padding: 16px 12px !important;
    font-size: 13px !important;
  }
  
  #cookie-consent-banner > div:last-child {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  #cookie-consent-banner button {
    width: 100% !important;
    min-width: auto !important;
    padding: 14px 20px !important;
  }
}

/* === ハンバーガーメニューオーバーレイを和風ブランドに === */
.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(171,59,58,0.4);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* === モバイル検索オーバーレイ === */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(171,59,58,0.4);
  z-index: 2100;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.show {
  display: block;
  opacity: 1;
}

.search-content {
  background: white;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 0 -4px 16px rgba(171,59,58,0.2);
}

.search-overlay.show .search-content {
  transform: translateY(0);
}

.search-header {
  background: linear-gradient(135deg, #AB3B3A 0%, #8b2e2d 100%);
  color: white;
  padding: 24px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.search-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.close-search {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-search:hover {
  background: rgba(255,255,255,0.1);
}

.search-form-container {
  padding: 30px 20px;
}

.mobile-search-form {
  width: 100%;
}

.search-input-wrapper {
  display: flex;
  border: 2px solid #AB3B3A;
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
  height: 50px;
}

#mobile-search-input {
  flex-grow: 1;
  padding: 0 20px;
  border: none;
  font-size: 16px;
  background-color: #fff;
  height: 100%;
  outline: none;
  box-shadow: none;
}

#mobile-search-input:focus {
  outline: none;
  box-shadow: none;
}

.search-submit-btn {
  padding: 0 20px;
  background-color: #AB3B3A;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.search-submit-btn:hover {
  background-color: #8b2e2d;
}

.search-suggestions {
  padding: 0 20px 40px;
}

.search-suggestions h4 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #f8f9fa;
  color: #555;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.suggestion-tag:hover {
  background: #FFF1F1;
  color: #AB3B3A;
  border-color: #AB3B3A;
}