/** Shopify CDN: Minification failed

Line 90:7 Unexpected "{"

**/
/* -----------------------------------------------------------------
   reset
----------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
/* prettier-ignore */
video, {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -----------------------------------------------------------------
   box-sizing
----------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  /* background:url(https://gigaplus.makeshop.jp/mtshops/background/keyvisual.jpg); */
  background: #fcfcfc;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p,
div {
  word-break: break-all;
}

a {
  color: #333333;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.7;
}

input[type="text"],
select {
  border-radius: 3px;
  border: none;
  padding: 6px;
  font-size: inheirt;
  box-sizing: border-box;
}

input::placeholder {
  color: #b5b5b5;
  font-size: 12px;
}

pre {
  white-space: pre-wrap;
  font-family: inherit;
}

.clearfix {
  display: block;
}
.clearfix::before {
  content: "";
  display: block;
  clear: both;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.bx-wrapper {
  box-shadow: none !important;
}

.bx-controls-direction a {
  z-index: 0 !important;
}

/* -----------------------------------------------------------------
   header
----------------------------------------------------------------- */
header {
  width: 100%;
  background: #fcfcfc;
  margin: 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
header .top-nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding: 8px 20px;
  gap: 20px;
  max-width: 1240px;
}
header .header-menu {
  display: flex;
  justify-content: flex-end;
  margin-left: 48px;
}
header .header-menu .gnav {
  gap: 14px;
}
/* h1 タグのブラウザデフォルト margin(上下 ~0.67em)がヘッダー高さを膨らませるので明示的に 0
   さらに inline ベースラインで画像が上寄せになるのを防ぐため flex 中央配置にする */
header .header-logo {
  margin: 0;
  display: flex;
  align-items: center;
}
header .header-logo a {
  display: flex;
  align-items: center;
}
header .header-logo img {
  display: block;
  max-height: 48px;
  max-width: 800px;
  transition: all 0.3s ease;
}

.header.fix {
  display: block;
  transition: all 0.3s ease;
}

/* ナビゲーション + 検索グループ */
.header-nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.header-nav-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-nav-link:hover {
  color: #24c1ff;
}

/* ヘッダー検索バー（デスクトップ） */
.header-search {
  display: flex;
  align-items: center;
  width: 280px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
.header-search-input {
  flex: 1;
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  background: transparent;
}
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 34px;
  background: linear-gradient(135deg, #3b82f6, #22c1e0);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.header-search-btn:hover {
  opacity: 0.85;
}

/* 検索トグル(デスクトップでも常時表示。A 案: アイコン化) */
.header-search-toggle-wrap {
  display: flex;
}
.header-search-toggle {
  display: flex;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
}
/* ハンバーガーはモバイルのみ */
.header-hamburger {
  display: none;
}
/* 検索バーは検索アイコンクリックで展開 */
.header-search-mobile {
  display: none;
}
.header-search-mobile.active {
  display: flex;
}

/* デスクトップ: 検索アイコンクリックで右上にドロップダウン展開 */
@media (min-width: 768px) {
  .header-search-mobile.active {
    position: absolute;
    top: 100%;
    right: 20px;
    width: 320px;
    padding: 12px 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    border-top: 1px solid #f0f0f0;
  }
  /* 案 C 確定: ダークグレー(#555) + 白アイコン */
  .header-search-mobile .header-search-input {
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
  }
  .header-search-mobile .header-search-btn {
    width: 44px;
    height: auto;
    border: none;
    border-radius: 0 6px 6px 0;
    background: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .header-search-mobile .header-search-btn:hover {
    background: #444;
  }
}

/* A 案: 右側ナビアイテムをアイコンのみで表示 */
.gnav-icon-only > a,
.gnav-icon-only > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #666;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-weight: 700;
}
.gnav-icon-only > a:hover,
.gnav-icon-only > button:hover {
  color: #24c1ff;
  opacity: 0.8;
}
.gnav-icon-only > a i,
.gnav-icon-only > button i {
  font-size: 21px;
  font-weight: 700;
  color: inherit;
  line-height: 1;
}
/* テキストラベルは視覚的に隠す(スクリーンリーダーには残す) */
.gnav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* カートバッジ(アイコンのみ用に位置調整) */
.gnav-icon-only.header-cart {
  position: relative;
}
.gnav-icon-only.header-cart .cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ff5252;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.gnav {
  display: flex;
  align-items: flex-end;
}
.gnav .account {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}
.gnav .account:last-child {
  margin-right: 16px;
}
.gnav .gnav-menu {
  font-weight: bold;
}

.gnav-menu {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  transition: color 0.2s ease;
}
.gnav-menu:hover {
  color: #24c1ff;
}
.gnav .account a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.gnav .account a:hover {
  color: #24c1ff;
}

/* 全商品一覧（テキストのみ、アイコンなし） */
.header-allitems a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header-allitems a:hover {
  color: #24c1ff;
}

/* ヘッダーアイコン（Lucide） */
.gnav-menu a i {
  font-size: 21px;
  display: block;
  color: #666666;
  transition: color 0.2s ease;
}
.gnav-menu a:hover i {
  color: #24c1ff;
}

.header-cart {
  position: relative;
}
.header-cart .cart-count {
  position: absolute;
  right: -8px;
  top: -8px;
  background: #f23e0c;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}

.main-visual {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.main-visual img {
  margin: 0 auto;
  width: 90%;
}
.main-visual li {
  height: 100%;
  display: flex;
  align-items: center;
}

#M_slider {
  height: 100%;
}

.contents {
  width: 100%;
  max-width: 1240px;
  padding: 65px 20px 48px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
}

.container {
  display: flex;
  padding: 48px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-container {
  padding: 0;
}

.banner-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
.banner-area::after {
  content: "";
  display: block;
  width: 33%;
}
.banner-area img {
  max-width: 330px;
}

/* -----------------------------------------------------------------
   side-nav
----------------------------------------------------------------- */
.side {
  display: none;
}

.search {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.search-btn {
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background: #24c1ff;
  color: #ffffff;
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 16px;
}
.search-btn:hover {
  background: #1ba8e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 193, 255, 0.3);
}

.search-area li {
  margin-bottom: 20px;
  position: relative;
  right: 35px;
  top: 10px;
}
.search-area label {
  display: block;
  margin-bottom: 10px;
}
.search-area input,
.search-area select {
  width: 120%;
}
.search-area input {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
}
.search-area select {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
}

/* カスタム選択ボックス */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 120%;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 30px;
}

.custom-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

/* IE/Edge対応 */
select::-ms-expand {
  display: none;
}

input.search-price {
  width: calc(50% - 15px);
  margin-right: 2px;
  max-width: 90px;
}

.side-section {
  margin-top: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.side-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sp-side-section {
  display: none;
}

.category-list-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.side-category-item {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding-right: 12px;
}
.side-category-item p,
.side-category-item a {
  width: 100%;
  padding: 15px 0;
  display: inline-block;
}
.side-category-item p:before {
  display: block;
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  margin: auto;
  width: 12px;
  height: 1px;
  background-color: #333333;
  transition: 0.2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.side-category-item p:after {
  display: block;
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  margin: auto;
  width: 12px;
  height: 1px;
  background-color: #333333;
  transition: 0.3s;
}
.side-category-item p.on {
  width: 95%;
  background: #333333;
  color: #fff;
  padding-left: 6px;
  padding-right: 14px;
}
.side-category-item p.on:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  background: #fff;
  right: 10px;
}
.side-category-item p.on:after {
  background-color: transparent;
  background: #fff;
  right: 10px;
}

.child-item {
  padding: 8px !important;
  font-size: 12px;
}

.close {
  display: none;
}

.accordion {
  cursor: pointer;
}

.side-contact li {
  margin-bottom: 16px;
}

.calendar-wrap {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.calendar-title {
  padding: 8px;
  color: #fff;
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}
.calendar-title dt {
  font-size: 12px;
  margin-right: 6px;
}

.makeshop-calendar1,
.makeshop-calendar2 {
  width: 100%;
  border-collapse: inherit;
  padding: 8px;
}
.makeshop-calendar1 tr,
.makeshop-calendar2 tr {
  text-align: center;
  font-size: 12px;
}
.makeshop-calendar1 thead tr th,
.makeshop-calendar2 thead tr th {
  padding-bottom: 8px;
}
.makeshop-calendar1 tbody tr td,
.makeshop-calendar2 tbody tr td {
  padding-bottom: 2px;
  height: auto !important;
}

.makeshop-calendar1 td.today {
  background: #f23e0c;
  color: #fff;
  height: auto;
}

.this-month {
  background: #808080;
}

.next-month {
  background: #808080;
}

.saturday {
  color: #006bed;
}

.sunday {
  color: #f23e0c;
}

/* -----------------------------------------------------------------
   check
----------------------------------------------------------------- */
.checked-contents {
  margin-top: 40px;
  padding-bottom: 60px;
  display: block;
  width: 100%;
}
.checked-contents h2 {
  text-align: center;
}

.checked-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 200px));
  gap: 16px; /* デスクトップ用の商品カード間隔 */
  padding-inline-start: 0;
  justify-content: center; /* アイテムを中央配置 */
}
.checked-item-list li {
  width: auto; /* gridで自動調整 */
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.checked-item-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.checked-item-list li img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 8px;
}

.item-list-image {
  background: white;
}

/* -----------------------------------------------------------------
   main
----------------------------------------------------------------- */
.main {
  max-width: 1200px;
  width: 100%;
  flex: 1;
}

.border:after {
  content: "";
  display: block;
  width: 100%;
  border: 1px solid #cbcbcb;
  margin: 30px 0 60px;
}

h2 {
  font-size: 18px;
  margin-bottom: 40px;
}
h2 span {
  font-size: 12px;
  margin-left: 8px;
}

.shop-comment {
  margin-bottom: 40px;
}

/* モダンなセクションデザイン */
.main-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 40px;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

/* トップページ用のボーダー（VTuberサイトらしいシンプル表示のため、カテゴリーページでは非表示） */
.main-section.border {
  border-top: 4px solid #007bff;
}


.main-section h2 {
  color: #2c3e50;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 12px;
}

/* VTuberサイトらしいシンプル表示のため、h2下の青いボーダーラインを削除
.main-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
  border-radius: 2px;
}
*/

/* モダンな商品リストデザイン */
.item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
  padding-inline-start: 0;
}

.item-list li {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.item-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #007bff;
}
.item-list li img {
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.item-list li:hover img {
  transform: scale(1.02);
}

.item-list-review {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.item-list-review .item-list-review-rate {
  margin: 0 6px;
}

/* モダンなランキングアイコン */
.ranking-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  text-align: center;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
  font-weight: bold;
  z-index: 2;
  font-size: 12px;
  color: #333333;
  width: 30px;
  height: 30px;
  line-height: 2.5;
}

.rank-1 {
  background: #d1af28;
  color: #fff;
}

.rank-2 {
  background: #aba8a8;
  color: #fff;
}

.rank-3 {
  background: #d18858;
  color: #fff;
}

.item-icon {
  position: absolute;
  top: -10px;
  font-size: 12px;
  color: #fff;
  z-index: 1;
}
.item-icon p {
  padding: 0 3px;
}
.item-icon .item-soldout {
  background: #b5b5b5;
}
.item-icon .item-sale {
  background: #f23e0c;
}

.item-category {
  margin-bottom: 8px;
  font-size: 12px;
}

.original-price {
  text-decoration: line-through;
}

.item-sale-price {
  color: #f23e0c;
}

.news-list {
  margin-bottom: 10px;
}
.news-list li {
  border-bottom: 1px solid #cbcbcb;
  padding: 14px 0;
}
.news-list li:first-child {
  padding-top: 0;
}
.news-list dl dt {
  margin-bottom: 8px;
}
.news-list dl dd {
  font-size: 12px;
}

.news-wrap {
  display: flex;
}
.news-wrap dl dt a {
  text-decoration: underline;
}
.news-wrap dl dt a:hover {
  text-decoration: none;
}

.news-more a {
  text-decoration: underline;
}
.news-more a:hover {
  text-decoration: none;
}

.news-date {
  font-size: 12px;
  color: #b5b5b5 !important;
  min-width: 120px;
}

.news-content:after,
.news-list-content:after {
  content: "…";
}

.news-more {
  text-align: right;
  padding-bottom: 60px;
}

.index-review-list li {
  display: flex;
  margin-bottom: 60px;
}
.index-review-list li .index-review-image {
  margin-right: 18px;
  width: 140px;
  min-width: 140px;
}
.index-review-list li .index-review-image img {
  width: 100%;
}

.review-list-category {
  margin-bottom: 8px;
  font-size: 12px;
}

.review-index-score {
  display: flex;
  align-items: baseline;
}
.review-index-score p {
  margin-right: 16px;
}

.foot-category {
  background: #f2f2f2;
  padding: 60px 0;
}
.foot-category h2 {
  text-align: center;
}

/* -----------------------------------------------------------------
   footer
----------------------------------------------------------------- */
.footer-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #333;
  border-top: none;
}

.footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px 40px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col--brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo {
  max-height: 44px;
}
.footer-brand__name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer-brand__desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col__title a {
  color: #fff;
  text-decoration: none;
}
.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col__list li {
  margin-bottom: 16px;
}
.footer-col__list li:last-child {
  margin-bottom: 0;
}
.footer-col__list a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-col__list a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}
.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  margin: 0;
}

/* -----------------------------------------------------------------
   item-list-cart
----------------------------------------------------------------- */
/* モダンな商品カートボタン */
.item-list-cart {
  margin: auto 0 0 0;
  padding-top: 8px;
  display: flex;
  justify-content: center;
}
.item-list-btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.item-list-sold {
  background: linear-gradient(135deg, #6c757d, #5a6169);
  color: #fff;
  cursor: not-allowed;
}
.option-list-cart {
  background: #ffffff;
  border: 2px solid #007bff;
  color: #007bff;
}
.option-list-cart:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.add-list-cart {
  background: #20c997;
  color: #fff;
}
.add-list-cart:hover {
  background: #1ba471;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}
.price {
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

/* -----------------------------------------------------------------
   category
----------------------------------------------------------------- */
.breadcrumb {
  font-size: 12px;
  padding-top: 10px;
}

.breadcrumb-item {
  margin-right: 8px;
}
.breadcrumb-item::after {
  content: ">";
  margin-left: 12px;
}
.breadcrumb-item:last-child::after {
  display: none;
}

.category-image {
  margin-bottom: 20px !important;
  display: flex;
}

.category-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.category-title dl {
  display: flex;
  font-size: 12px;
  margin-bottom: 40px;
}
.category-title dd {
  margin-right: 8px;
}

/* 並び替えメニューのモダン化（VTuberコアファン向けサイトのため一時非表示、復元時は下記コメントを解除）
.list-head-sort {
  display: flex !important;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  font-size: 14px !important;
}

.list-head-sort dt {
  font-weight: 600;
  color: #495057;
  white-space: nowrap;
  margin: 0;
}

.list-head-sort dd {
  margin: 0 !important;
}

.list-head-sort dd a {
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  color: #495057;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.list-head-sort dd a:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
  transform: translateY(-1px);
}
*/

.category-child-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category-child-item li {
  margin: 0 20px 12px 0;
}

.total-count span {
  font-weight: bold;
}

.pager-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
}

.total-count {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.pager {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pager li {
  margin-right: 0;
}
.pager li:last-child {
  margin-right: 0;
}
.pager li a,
.pager li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pager li a:hover {
  background: #f0f0f0;
  color: #333;
}
.pager li .current {
  background: #1FD5AD;
  color: #fff;
  font-weight: 700;
}
.pager li a .prev,
.pager li a .next {
  font-size: 0;
}
.pager li a .prev::before {
  content: '\2039';
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
}
.pager li a .next::before {
  content: '\203A';
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
}
.pager li a .prev::before,
.pager li a .next::before {
  color: #999;
}
.pager li a:hover .prev::before,
.pager li a:hover .next::before {
  color: #1FD5AD;
}
.pager .pager-ellipsis {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 2px;
  pointer-events: none;
}

.bulk-group {
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: bold;
}

.bulk-group a {
  color: #b5b5b5;
}

/* -----------------------------------------------------------------
   detail
----------------------------------------------------------------- */
.detail {
  padding: 48px 0 60px;
}

.item-image {
  width: 540px;
}
.item-image img {
  width: 100%;
}

.main-image {
  width: 540px;
}
.main-image img {
  width: 100%;
}

/*スライダーcss*/
.gallery li {
  list-style: none;
}
.gallery li img {
  width: 90%;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  height: 15px;
  width: 15px;
}

.slick-prev:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -8px;
  width: 40px;
  opacity: 0.5;
  height: 30px;
  transform: rotate(45deg);
  background-color: rgba(251, 250, 247, 0.75);
}

.slick-next:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -8px;
  width: 40px;
  opacity: 0.5;
  height: 30px;
  transform: rotate(45deg);
  background-color: rgba(251, 250, 247, 0.75);
}

.slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

.slick-track {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.choice-btn {
  margin: 6px 0 40px;
}
.choice-btn li {
  cursor: pointer;
  background: #333;
  width: 130px !important;
  margin-bottom: 12px;
}
.choice-btn li:nth-child(5n) {
  margin-right: 0;
}
.choice-btn .slick-track {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.choice-btn .slick-track::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.choice-btn .slick-track::after {
  content: "";
  display: block;
  width: 23%;
}

.choice-btn li img {
  opacity: 0.4;
  width: 130px;
}

.choice-btn li.slick-current img {
  opacity: 1;
}

/*追加*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*スライダーcssここまで*/
.add-image-section {
  margin-bottom: 40px;
}

.add-image-title {
  font-size: 18px;
  margin: 40px 0 20px;
}

.add-image-list {
  width: 164px;
  display: inline-block;
  margin-right: 20px;
}
.add-image-list:last-child {
  margin-right: 0;
}
.add-image-list img {
  width: 100%;
}

.group-review-section {
  width: 540px;
  display: inline-block;
}

.group-item-list {
  display: flex;
  flex-wrap: wrap;
}
.group-item-list li {
  width: 120px;
  margin-bottom: 40px;
  margin-right: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.group-item-list li img {
  width: 100%;
}
.group-item-list li:nth-child(4n) {
  margin-right: 0;
}

.item-detail {
  width: 400px;
  padding-left: 40px;
  float: right;
}
.item-detail .item-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 26px;
  position: relative;
}
.item-detail .item-category-name {
  font-size: 12px;
  margin-bottom: 6px;
}

.item-detail-icon {
  position: absolute;
  display: contents;
  font-size: 12px;
  font-weight: normal;
  top: 0;
}
.item-detail-icon .item-detail-sale {
  color: #f23e0c;
}
.item-detail-icon p {
  margin-bottom: 12px;
}

.item-price-wrap {
  margin-bottom: 20px;
}
.item-price-wrap .item-price {
  font-size: 30px;
  font-weight: 500;
}
.item-price-wrap .item-tax {
  font-size: 14px;
  color: #333333;
}
.item-price-wrap .fixed-price {
  font-size: 12px;
}

.member-original-price {
  font-size: 12px;
}
.member-original-price span {
  font-size: 18px;
}

.sale-text .original {
  text-decoration: line-through;
}
.sale-text .sale-rate,
.sale-text .sale-price {
  color: #f23e0c;
}
.sale-text .sale-rate {
  margin: 0 10px;
}
.sale-text .sale-price {
  font-size: 30px;
  font-weight: 500;
}

.sale-priod {
  font-size: 12px;
  margin: 6px 0 12px;
}

.item-point,
.review-empty {
  margin-bottom: 20px;
}

.item-sell-text {
  margin: 20px 0;
}
.item-sell-text .sell-start {
  margin-bottom: 8px;
}

.item-reserve {
  margin: 20px 0;
}
.item-reserve .item-reserve-release-text,
.item-reserve .item-reserve-text {
  font-size: 12px;
  margin-top: 6px;
}

.nameprint-area {
  margin-top: 20px;
}
.nameprint-area .nameprint-title-wrap {
  margin: 18px 0 8px;
  font-size: 12px;
}
.nameprint-area .nameprint-text-wrap p {
  margin-bottom: 4px;
  font-size: 12px;
}
.nameprint-area .nameprint-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}
.nameprint-area .nameprint-title span {
  color: #f23e0c;
  font-size: 12px;
  font-weight: normal;
  margin-left: 6px;
}
.nameprint-area .nameprint-text input,
.nameprint-area .nameprint-text textarea {
  width: 75%;
  border: 1px solid #333333;
}

.item-quantity {
  font-size: 12px;
  margin-bottom: 20px;
}
.item-quantity input {
  width: 40px;
  border: 1px solid #333333;
  margin-left: 8px;
}

.item-review {
  font-size: 12px;
}
.review-link {
  margin-bottom: 20px;
}
.review-link a {
  text-decoration: underline;
}
.review-link a:hover {
  text-decoration: none;
}

.item-option {
  width: 100%;
}
.item-option .btn {
  margin-top: 20px;
}

.makeshop-option-wrap {
  margin-top: 10px;
}

.makeshop-option-label {
  font-size: 12px;
  margin-bottom: 6px;
}

.makeshop-option-select {
  border: 1px solid #333333;
  margin-bottom: 12px;
  width: 75%;
}

.add-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0 40px;
}
.stock-wrap {
  width: 100%;
  margin-bottom: 8px;
}
.add-cart .item-stock {
  margin-right: 14px;
  font-size: 10px;
}
.add-cart .btn {
  width: 180px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  padding: 15px 0;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
}
.add-cart .add-cart-btn {
  background: #1fd5ad;
}
.add-cart .restock-btn {
  background: #333333;
}
.add-cart .disabled-btn {
  background: #b5b5b5;
}
.add-cart .subscription-btn {
  background: #006bed;
  margin-top: 8px;
}
.add-cart .off {
  display: none;
}
.add-cart .on {
  display: block;
}

.subscription-only {
  margin-top: 0 !important;
}

.item-stock-sku {
  margin-bottom: 8px;
}

.sku-btn {
  width: 130px !important;
  padding: 10px 0 !important;
  font-size: 12px !important;
}

.favorite-wrap {
  display: flex;
  align-items: baseline;
}

.favorite a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f004";
  font-size: 24px;
  font-weight: 900;
  margin-left: 14px;
  margin-right: 4px;
  color: #ff7683;
}

.item-contact {
  margin-bottom: 40px;
}
.item-contact::before {
  content: "";
  display: block;
  width: 100%;
  border: 1px solid #cbcbcb;
  margin: 30px 0 40px;
}
.item-contact a {
  width: 100%;
  display: inline-block;
  padding: 8px 0;
  border: 1px solid #333333;
  border-radius: 2px;
  text-align: center;
}
.item-contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-size: 16px;
  font-weight: 900;
  padding-right: 10px;
  color: #707070;
}

.item-description dt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #1FD5AD;
}

.item-info-list {
  margin-top: 20px;
}
.item-info-list li {
  margin-bottom: 10px;
}
.item-info-list li dl {
  display: flex;
}
.item-info-list li dt {
  width: 34%;
}
.item-info-list li dd {
  width: 66%;
}

.item-share li {
  margin-right: 8px;
  display: inline-block;
  vertical-align: top;
}

.border-top::before {
  content: "";
  display: block;
  width: 100%;
  border: 1px solid #cbcbcb;
  margin: 30px 0;
}

.item-share {
  margin-bottom: 40px;
}

.sku tbody {
  align-items: center;
}

.sku-option-title {
  width: 120px;
  font-weight: bold;
  text-align: left;
  padding: 0 20px 10px 0;
  vertical-align: middle;
}

.sku-option-name {
  font-size: 14px;
  text-align: left;
  padding: 0 16px 20px 0;
  vertical-align: middle;
}

.sku-img {
  vertical-align: middle;
}
.sku-img img {
  padding-right: 20px;
}
.option-image {
  max-width: 80px;
}
.option-image:hover {
  cursor: pointer;
}

.sku-cart {
  padding-bottom: 20px;
}

.sku-price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.sku-price-wrap .price {
  margin: 0 6px 4px 0;
  width: 100%;
}

.item-review-detail {
  margin-bottom: 60px;
}

.item-review-detail h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.item-review-list li {
  margin-bottom: 60px;
}

.item-review-list-link {
  margin-bottom: 30px;
  font-size: 12px;
}
.item-review-list-link a {
  text-decoration: underline;
}
.item-review-list-link a:hover {
  text-decoration: none;
}

.review-list-unit .review-list-name {
  margin-bottom: 12px;
}
.review-list-unit .star-score {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.review-list-unit .review-star {
  margin-right: 6px;
}
.review-list-unit .review-list-date {
  font-size: 12px;
  color: #b5b5b5;
  margin: 12px 0;
}
.review-list-unit .review-list-content {
  font-size: 12px;
}

.reviewRateStar {
  display: inline-block;
  font-size: 0;
  color: #ffa41c;
}
.reviewRateStar::before {
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  font-size: 12px;
  font-weight: 900;
}

.starOff::before {
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  font-weight: 400;
}

.starHalf::before {
  font-family: "Font Awesome 5 Free";
  content: "\f5c0";
}

.review-post {
  margin-top: 40px;
}

.review-post {
  text-align: center;
}
.review-post a {
  width: 260px;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 0;
  border: 1px solid #333333;
  border-radius: 2px;
  text-align: center;
}
.review-post a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f304";
  font-size: 16px;
  font-weight: 900;
  padding-right: 10px;
  color: fff;
}

/*定期購入*/
.product-price-block {
  font-size: 30px;
  margin: 12px 0;
  font-weight: 500;
  color: #fe5a74;
}

.product-price-block small {
  font-size: 14px;
  color: #333333;
}

.subscription-gift {
  display: flex;
  margin-top: 30px;
}
.subscription-gift img {
  margin-right: 20px;
  width: 80px;
  max-height: 80px;
}

.subscription-price {
  font-size: 26px;
  font-weight: 500;
  color: #fe5a74;
}
.subscription-price small {
  font-size: 14px;
}

.item-group-icon img {
  width: auto !important;
  height: auto !important;
  display: block;
  margin-top: 8px;
}

/* -----------------------------------------------------------------
   review
----------------------------------------------------------------- */
.review-item-wrap {
  border: 1px solid #333333;
  padding: 20px;
  border-radius: 3px;
  display: flex;
  margin-bottom: 60px;
}
.review-item-wrap .review-item-image {
  padding-right: 20px;
  width: 120px;
}
.review-item-wrap .review-item-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.review-item-info .review-item-category {
  font-size: 12px;
  margin-bottom: 8px;
}
.review-item-info .review-item-name {
  font-size: 18px;
}
.review-item-info .total-review {
  display: flex;
  align-items: baseline;
  margin-top: 10px;
}
.review-item-info .review-star {
  margin-right: 10px;
}
.review-item-info .review-average {
  font-size: 20px;
  font-weight: bold;
}
.review-item-info .review-count {
  font-size: 12px;
}

.review-form-wrap {
  width: 485px;
  margin: 0 auto;
}

.review-form {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.review-form:last-child {
  margin-bottom: 60px;
}
.review-form dt {
  width: 150px;
  text-align: left;
}
.review-form .review-form-content {
  width: 100%;
}
.review-form dd input {
  border: 1px solid #707070;
  width: 100%;
}
.review-form dd .reviewRateStar:before {
  font-size: 18px;
}

.review-post-btn {
  border: none !important;
  background: #707070;
  color: #fff;
}

/* -----------------------------------------------------------------
   cart
----------------------------------------------------------------- */
.cart {
  margin-bottom: 100px;
}

.cart-section-title {
  padding-top: 60px;
  font-size: 16px;
}

.free-shipping-wrap {
  text-align: right;
  margin-bottom: 16px;
  font-size: 12px;
}
.free-shipping-wrap .free-shipping-text em {
  color: #f23e0c;
}

.cart-list-table {
  width: 100%;
  padding: 20px;
}
.cart-list-table th {
  background: #ffffff;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #1FD5AD;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.cart-list-table th:first-child {
  width: 360px;
}
.cart-list-table th:nth-child(2) {
  width: 190px;
}
.cart-list-table th:nth-child(3) {
  width: 200px;
}
.cart-list-table th:last-child {
  width: 200px;
}
.cart-list-table tbody tr {
  border-bottom: 1px solid #e6e6e6;
}
.cart-list-table tbody td {
  vertical-align: middle;
  padding: 20px;
}
.cart-list-table tbody td:first-child {
  display: flex;
}

.cart-list-info {
  font-size: 12px;
}

.cart-list-image {
  width: 80px;
  min-width: 80px;
  margin-right: 12px;
}
.cart-list-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.item-cart-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.item-cart-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.item-cart-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-cart-quantity input {
  width: 50px;
  height: 36px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.item-cart-quantity input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.item-cart-quantity > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: auto;
  background: #1FD5AD;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.item-cart-quantity > a:hover {
  background: #1ac49e;
  transform: translateY(-1px);
}

.item-cart-delete {
  margin-left: 8px;
}

.item-cart-delete a,
.item-cart-delete button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: auto;
  background: transparent;
  color: #888;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.item-cart-delete a:hover,
.item-cart-delete button:hover {
  background: #f5f5f5;
  color: #666;
  border-color: #ccc;
}

.item-cart-subtotal {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.cart-total {
  background: linear-gradient(135deg, #f0fdfb 0%, #e6faf6 100%);
  border-left: 4px solid #1FD5AD;
}
.cart-total td {
  display: table-cell !important;
}
.cart-total .cart-total-title {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.cart-total .cart-total-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1FD5AD;
  margin-bottom: 6px;
}
.cart-total .cart-total-point {
  font-size: 12px;
  color: #666;
}
.cart-total .cart-bulk {
  margin-top: 6px;
  font-size: 12px;
  color: #e74c3c;
}

.cart-button-wrap {
  text-align: right;
  margin-top: 40px;
}
.cart-button-wrap .cart-button a {
  width: 320px;
  display: inline-block;
  text-align: center;
  background: #1fd5ad;
  border-radius: 5px;
  padding: 20px 0;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.cart-button-wrap .cart-back-button a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  font-size: 12px;
  font-weight: bold;
  padding-right: 8px;
  color: #707070;
}

/* -----------------------------------------------------------------
   news
----------------------------------------------------------------- */
.news-list-unit {
  padding: 30px 0 !important;
}

.news-list-title {
  margin-bottom: 6px;
}
.news-list-title a {
  text-decoration: underline;
}
.news-list-title a:hover {
  text-decoration: none;
}

.news-list-date {
  font-size: 12px;
  color: #b5b5b5 !important;
  margin-bottom: 8px;
}

.news-content-wrap {
  margin-bottom: 30px;
}

.news-pager {
  display: flex;
  justify-content: space-between;
}
.news-pager .pager-left {
  display: flex;
}
.news-pager .pager-left .prev {
  margin-right: 20px;
}
.news-pager a {
  text-decoration: underline;
}
.news-pager a:hover {
  text-decoration: none;
}

/* -----------------------------------------------------------------
   guide
----------------------------------------------------------------- */
.guide-section {
  width: 85%;
  margin: 0 auto 60px;
  line-height: 1.2;
}
.guide-section .guide-section-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.contract-section {
  width: 85%;
  margin: 0 auto 60px;
}
.contract-section dt {
  font-weight: bold;
  margin-bottom: 8px;
}

.policy-box {
  width: 85%;
  margin: 0 auto 60px;
}

.policy-content h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.policy-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
}

.policy-content p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.policy-list li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.policy-sublist {
  list-style: none;
  padding-left: 1.5em;
  margin-top: 8px;
}

.policy-sublist li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  padding-left: 1em;
  text-indent: -1em;
}

/* -----------------------------------------------------------------
   catalog
----------------------------------------------------------------- */
.catalog-list {
  width: 100%;
  margin-bottom: 48px;
}

.catalog-list th {
  background: #e6e6e6;
}
.catalog-list td,
.catalog-list th {
  border: 1px solid #ccc;
  padding: 6px 18px;
  vertical-align: middle;
}
.catalog-list input {
  border: 1px solid #ccc;
}

.catalog-input-num {
  width: 10rem;
}

.catalog-input-quantity {
  width: 3rem;
}

.catalog-info-wrap {
  text-align: left;
  font-size: 0.9rem;
  width: 397px;
  display: flex;
  box-sizing: border-box;
}

.catalog-img img {
  margin-right: 8px;
  width: 80px;
}

.catalog-search-btn {
  width: 60px;
}

.catalog-cart-btn {
  width: 25%;
}

.catalog-cart {
  text-align: center;
  display: block;
}

.catalog-search-btn {
  background: #333;
  padding: 10px 6px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 12px;
}

/* =================================================================
   responsive
================================================================= */

/* ========== DESKTOP (1200px+) ========== */
@media (min-width: 1200px) {
  header .top-nav {
    padding: 0px 40px;
  }

  .container {
    max-width: 1400px;
    padding: 48px 20px 60px;
    margin: 0 auto;
    justify-content: center;
  }

  .main {
    width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-section {
    padding: 20px;
  }

  .item-list {
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
  }
}

/* ========== TABLET (768px - 1199px) ========== */
@media (min-width: 768px) and (max-width: 1199px) {
  header .top-nav {
    padding: 0px 20px;
  }

  .contents {
    padding-top: 61px;
  }

  /* タブレット: テキスト付きリンクを非表示、モバイルと同じコンパクトヘッダー */
  .header-favorite,
  .header-mypage,
  .header-login,
  .header-logout {
    display: none;
  }
  .header-nav-group {
    display: none;
  }
  .header-search-toggle-wrap {
    display: list-item !important;
    list-style: none;
  }
  .header-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0;
  }
  .header-search-toggle i {
    font-size: 22px;
  }
  .header-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .openbtn--header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .openbtn--header span {
    display: block;
    position: absolute;
    left: 6px;
    height: 2px;
    border-radius: 1px;
    width: 20px;
    background: #333;
    transition: all 0.3s ease;
  }
  .openbtn--header span:nth-of-type(1) { top: 8px; }
  .openbtn--header span:nth-of-type(2) { top: 15px; }
  .openbtn--header span:nth-of-type(3) { top: 22px; }
  header .header-menu {
    margin-left: auto;
  }
  header .header-menu .gnav {
    gap: 16px;
  }
  /* タブレット: gnavテキスト非表示（アイコンのみ） */
  .gnav-menu {
    font-size: 0;
  }
  .gnav-menu a i {
    font-size: 22px;
  }
  .header-search-toggle-wrap,
  .header-cart {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  /* タブレット: ロゴ調整 */
  header .header-logo img {
    max-height: 40px;
    max-width: 100%;
  }
  /* タブレット: モバイル検索バー展開 */
  .header-search-mobile {
    display: none;
    padding: 8px 20px 12px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
  }
  .header-search-mobile.active {
    display: flex;
  }
  .header-search-mobile .header-search-input {
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .header-search-mobile .header-search-btn {
    width: 48px;
    height: auto;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, #3b82f6, #22c1e0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* タブレット: sideを表示（ドロワーのDOM親要素） */
  .side {
    display: block;
    width: auto;
    padding-right: 0;
  }
  /* タブレット: ハンバーガーメニュードロワー */
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    left: auto;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transition: all 0.4s ease;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 40px;
    box-sizing: border-box;
  }
  .side > .openbtn {
    display: none;
  }
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 0;
    margin: 0 -12px;
    min-height: 56px;
  }
  .drawer-close-button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .drawer-close-button svg {
    width: 18px;
    height: 18px;
  }
  /* タブレット: ドロワー内メニュースタイル */
  .sp-side-section {
    display: block;
    padding: 0;
    margin-bottom: 0;
  }
  .sp-gnav--account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .sp-gnav--account li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
  }
  .sp-gnav--account li:first-child {
    border-right: 1px solid #eee;
  }
  .sp-gnav--account li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
  }
  .sp-gnav--account li a i {
    font-size: 20px;
    color: #888;
  }
  .sp-side-auth {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #eee;
  }
  .sp-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-auth-btn--login { background: #1FD5AD; color: #fff; }
  .sp-auth-btn--register { background: transparent; color: #555; border: 1.5px solid #ddd; }
  .sp-auth-btn--logout { background: transparent; color: #888; border: 1.5px solid #ddd; }
  .sp-gnav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-gnav li { padding: 0; margin: 0; }
  .sp-gnav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
  }
  .sp-gnav li a i { font-size: 18px; color: #999; width: 20px; text-align: center; }
  .sp-gnav li:last-child a { border-bottom: none; }
  .sp-gnav--primary li a { font-size: 16px; font-weight: 600; padding: 18px 0; border-bottom: none; }
  .sp-gnav--primary + .sp-side-section { border-top: 1px solid #eee; }
  .sp-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 20px 0 4px;
    margin: 0;
  }
  .sp-side-legal { margin-top: 12px; padding-top: 12px; border-top: 1px solid #eee; }
  .sp-gnav--legal li a { font-size: 12px; font-weight: 400; color: #999; padding: 10px 0; border-bottom: none; gap: 0; }
  .sp-gnav--nav li a { font-size: 16px; font-weight: 500; padding: 20px 0; }

  .main-image img {
    height: 600px;
  }

    .item-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }

  .sku-option-title {
    width: 100px;
  }

  .sku-cart {
    min-width: 400px;
  }

  .choice-btn li:nth-child(5n) {
    margin-right: 8px;
  }
  .choice-btn li:nth-child(10n) {
    margin-right: 0;
  }
}


/* ========== MOBILE (max-width: 767px) ========== */
@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
  }

  header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
  }

  .header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header .top-nav {
    flex-direction: row;
    padding: 8px 12px;
    gap: 12px;
  }

  /* モバイル: ヘッダーメニューはカートのみ表示 */
  header .header-menu {
    justify-content: flex-end;
    margin-bottom: 0;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
  }
  header .header-menu .gnav {
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  /* モバイル: お気に入り・マイページ・ログインはハンバーガーへ移動 */
  .header-favorite,
  .header-mypage,
  .header-login,
  .header-logout {
    display: none;
  }
  /* モバイル: ナビグループ（全商品一覧+検索バー）を非表示 */
  .header-nav-group {
    display: none;
  }

  /* モバイル: ロゴ */
  header .header-logo {
    flex: 1;
    background: transparent;
    margin: 0;
    line-height: 0;
  }
  header .header-logo img {
    max-height: 40px;
    max-width: 100%;
    display: block;
  }

  /* モバイル: デスクトップ検索バーを隠す */
  .header-search {
    display: none;
  }

  /* モバイル: 検索トグルボタン表示 */
  .header-search-toggle-wrap {
    display: list-item;
    list-style: none;
  }
  .header-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
  }
  .header-search-toggle i {
    font-size: 22px;
  }
  .header-search-toggle:hover {
    color: #24c1ff;
  }

  /* モバイル: 展開検索バー */
  .header-search-mobile {
    display: none;
    padding: 8px 12px 12px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
  }
  .header-search-mobile.active {
    display: flex;
  }
  .header-search-mobile .header-search-input {
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .header-search-mobile .header-search-btn {
    width: 48px;
    height: auto;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, #3b82f6, #22c1e0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .gnav {
    padding-right: 0;
  }

  .gnav .account {
    display: none;
  }

  .gnav-menu {
    font-size: 0;
  }
  .gnav-menu a i {
    font-size: 22px;
  }
  /* モバイル: 検索・カートを32x32コンテナに統一 */
  .header-search-toggle-wrap,
  .header-cart {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .header-cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .main-visual {
    margin: 20px auto 40px;
  }
  .main-visual img {
    height: auto;
  }

  .bx-wrapper {
    margin-bottom: 0 !important;
  }
  .banner-area {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .banner-area img {
    width: 96%;
    max-width: 100%;
    margin: 0 auto 6px;
  }

  .contents {
    width: 100%;
    padding: 57px 6px 48px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0;
  }

  header .top-nav {
    max-width: 100%;
  }

  .side {
    display: block;
    width: auto;
    padding-right: 0;
  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    left: auto;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transition: all 0.4s ease;
  }

  #g-nav.panelactive {
    right: 0;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 40px;
    box-sizing: border-box;
  }

  /* aside内の旧openbtn: 非表示（閉じるボタンはドロワー内に移動） */
  .side > .openbtn {
    display: none;
  }

  /* ドロワー内ヘッダー */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 0;
    margin: 0 -12px;
    min-height: 56px; /* ヘッダー高さと一致: 8px padding + 40px logo + 8px padding */
  }
  .drawer-close-button {
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .drawer-close-button svg {
    width: 18px;
    height: 18px;
  }

  /* gnav内ハンバーガー表示 */
  .header-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .openbtn--header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  .openbtn--header span {
    display: block;
    position: absolute;
    left: 6px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    width: 20px;
    transition: all 0.4s;
  }
  .openbtn--header span:nth-of-type(1) {
    top: 8px;
  }
  .openbtn--header span:nth-of-type(2) {
    top: 15px;
  }
  .openbtn--header span:nth-of-type(3) {
    top: 22px;
  }
  /* openbtn--header.active は不要（閉じるボタンはドロワー内に配置） */

  /* メニュー内セクション */
  .sp-side-section {
    display: block;
    padding: 0;
    margin-bottom: 0;
  }

  /* アカウント（お気に入り・マイページ）2カラム */
  .sp-gnav--account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .sp-gnav--account li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
  }
  .sp-gnav--account li:first-child {
    border-right: 1px solid #eee;
  }
  .sp-gnav--account li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .sp-gnav--account li a i {
    font-size: 20px;
    color: #888;
  }

  /* ログイン/会員登録ボタン */
  .sp-side-auth {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #eee;
  }
  .sp-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .sp-auth-btn i {
    font-size: 16px;
  }
  .sp-auth-btn--login {
    background: #1FD5AD;
    color: #fff;
  }
  .sp-auth-btn--login:hover {
    background: #1ac49e;
  }
  .sp-auth-btn--register {
    background: transparent;
    color: #555;
    border: 1.5px solid #ddd;
  }
  .sp-auth-btn--register:hover {
    border-color: #1FD5AD;
    color: #1FD5AD;
  }
  .sp-auth-btn--logout {
    background: transparent;
    color: #888;
    border: 1.5px solid #ddd;
  }
  .sp-auth-btn--logout:hover {
    color: #666;
    border-color: #bbb;
  }

  /* ナビゲーション共通 */
  .sp-gnav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-gnav li {
    padding: 0;
    margin: 0;
  }
  .sp-gnav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s ease;
  }
  .sp-gnav li a i {
    font-size: 18px;
    color: #999;
    width: 20px;
    text-align: center;
  }
  .sp-gnav li:last-child a {
    border-bottom: none;
  }
  .sp-gnav li a:hover {
    color: #1FD5AD;
  }
  .sp-gnav li a:hover i {
    color: #1FD5AD;
  }

  /* プライマリーナビ（全商品一覧） */
  .sp-gnav--primary li a {
    font-size: 16px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: none;
  }
  .sp-gnav--primary + .sp-side-section {
    border-top: 1px solid #eee;
  }

  /* セクション見出し */
  .sp-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 20px 0 4px;
    margin: 0;
  }

  /* 法的リンク（控えめ） */
  .sp-side-legal {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
  }
  .sp-gnav--legal li a {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    padding: 10px 0;
    border-bottom: none;
    gap: 0;
  }
  .sp-gnav--legal li a:hover {
    color: #666;
  }

  /* メニュー内検索バー（未使用・互換性保持） */
  .sp-side-search {
    padding: 16px 0;
  }
  .sp-search-bar {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  .sp-search-input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
  }
  .sp-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    background: #666;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .sp-search-btn:hover {
    background: #24c1ff;
  }

  /* ナビゲーションリスト */
  .sp-gnav--nav li a {
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
  }
  .side-category-item p.on {
    width: 96%;
    background: #333333;
    color: #fff;
    padding-left: 10px;
    padding-right: 18px;
  }

  .side-contact {
    text-align: center;
    padding: 0;
  }

  .side-section:has(.side-contact) {
    background: none;
    box-shadow: none;
    padding: 20px 0;
    width: 100%;
    margin: 0;
  }

  .side-contact a {
    color: #333;
    border-radius: 8px;
    display: inline-block;
    padding: 4px 0px;
    margin: 0;
    width: 120px;
    transition: all 0.3s ease;
  }

  .side-contact a:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
  }

  .makeshop-calendar1,
  .makeshop-calendar2 {
    background: #fff;
    width: 100%;
    height: auto;
  }
  .makeshop-calendar1 tr,
  .makeshop-calendar2 tr {
    text-align: center;
    font-size: 14px;
  }
  .makeshop-calendar1 thead tr th,
  .makeshop-calendar2 thead tr th {
    padding-bottom: 2px;
  }
  .makeshop-calendar1 tbody tr td,
  .makeshop-calendar2 tbody tr td {
    padding-bottom: 2px;
  }

  .calendar-wrap {
    width: 75%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .calendar-wrap div {
    background: #fff;
  }

  .calendar-title {
    margin-bottom: 0;
  }

  .main {
    width: 100%;
  }

  /* モバイル対応の商品リスト */
  .item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .item-list li {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 8px;
    margin-bottom: 0;
    margin-right: 0;
  }
  .item-list li:nth-child(2n) {
    margin-right: 0;
  }
  .item-list li img {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 6px;
  }

  /* カートボタンの調整 */
  .item-list-btn {
    font-size: 12px;
    padding: 10px 8px;
  }

  .news-list li {
    padding: 30px 0;
  }
  .news-list li:first-child {
    padding-top: 0;
  }

  .news-wrap {
    display: block;
  }

  .news-date {
    width: 100%;
    margin-bottom: 8px;
  }

  .index-review-list li {
    display: block;
    margin-bottom: 60px;
  }

  .review-index-score {
    display: block;
  }
  .review-index-score .review-score {
    display: none;
  }
  .review-index-score .review-list-unit,
  .review-index-score .review-list-name {
    margin-bottom: 5px;
  }
  .review-index-score .review-list-date {
    margin: 5px 0 12px;
  }

  .footer {
    width: 100%;
    padding: 48px 28px 40px;
    box-sizing: border-box;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  .footer-links {
    display: contents;
  }
  .footer-logo {
    max-height: 40px;
  }
  .footer-brand__desc {
    margin-top: 8px;
  }
  .footer-col__title {
    margin-bottom: 14px;
  }
  .footer-bottom {
    border-top: none;
    margin-top: 24px;
    padding-top: 0;
    text-align: left;
  }

  .breadcrumb {
    margin-bottom: 20px;
  }

  .category-title {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .category-title dl {
    margin-bottom: 20px;
  }

  .category-child-item li {
    width: 175px;
    margin: 0 0 20px 0;
  }

  .detail {
    padding: 0;
  }

  .item-image {
    width: 100%;
  }

  .main-image {
    width: 100%;
  }

  .choice-btn {
    width: 100%;
  }
  .choice-btn li {
    width: calc(93% / 4) !important;
  }
  .choice-btn .slick-track {
    width: 100% !important;
  }

  .choice-btn li img {
    width: 100% !important;
  }

  .add-image-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .add-image-list:nth-child(2n) {
    margin-right: 0;
  }
  .add-image-list:last-child {
    margin-bottom: 0;
  }

  .group-review-section {
    width: 100%;
  }

  .group-item-list {
    justify-content: space-between;
  }
  .group-item-list li {
    width: calc((100% - 16px) / 2);
    margin-bottom: 40px;
    margin-right: 0;
    position: relative;
  }
  .group-item-list li img {
    height: auto;
  }

  .item-detail {
    width: 100%;
    padding-left: 0;
  }
  .item-detail .item-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.6;
    word-break: break-word;
  }
  .item-detail .item-category-name {
    font-size: 14px;
  }

  .slick-prev,
  .slick-next {
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
  }

  .slick-prev:after {
    display: none;
  }

  .slick-next:after {
    display: none;
  }

  .item-price-wrap {
    margin-bottom: 8px;
  }
  .item-price-wrap .item-price {
    font-size: 24px;
  }
  .item-price-wrap .item-tax {
    font-size: 12px;
  }

  .item-point {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .item-sell-text {
    margin: 20px 0;
  }

  .item-option {
    margin-bottom: 12px;
  }

  .makeshop-option-select {
    width: 100%;
  }

  .nameprint-area {
    margin-bottom: 40px;
  }
  .nameprint-area .nameprint-text input,
  .nameprint-area .nameprint-text textarea {
    width: 100%;
  }

  .item-share {
    margin-bottom: 40px;
  }

  .review-category-title {
    margin-bottom: 20px;
  }

  .item-review-list li {
    margin-bottom: 30px;
  }

  .review-item-wrap {
    margin-bottom: 30px;
  }

  .review-form-wrap {
    width: 100%;
  }

  .review-form {
    display: block;
    align-items: center;
    margin-bottom: 30px;
  }
  .review-form:last-child {
    margin-bottom: 60px;
  }
  .review-form dt {
    width: 100%;
    margin-bottom: 8px;
  }
  .review-form dd textarea {
    width: 98%;
  }

  .add-cart {
    display: block;
    margin: 0 0 16px;
  }
  .add-cart .item-stock {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .add-cart .btn {
    width: 100%;
    font-size: 18px;
  }

  .sku-cart .btn {
    font-size: 12px;
    max-width: 100px !important;
  }
  .sku-option-title {
    font-size: 12px;
  }
  .option-image {
    max-width: 40px;
  }

  .item-contact::before {
    display: none;
  }

  .item-info-list li dt {
    width: 40%;
  }
  .item-info-list li dd {
    width: 60%;
  }

  .checked-contents {
    margin-top: 60px;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .checked-item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .checked-item-list li {
    width: auto;
  }
  .checked-item-list li img {
    width: 100%;
  }

  .cart {
    margin-bottom: 40px;
  }

  .cart-section-title {
    padding-top: 0;
  }

  .free-shipping-wrap {
    text-align: left;
  }

  .cart-list-table {
    display: block;
    width: 100%;
    padding: 20px 0;
  }
  .cart-list-table tbody {
    display: block;
    width: 100%;
  }
  .cart-list-table tbody tr {
    display: block;
    width: 100%;
  }
  .cart-list-table th {
    display: none;
  }
  .cart-list-table tbody td {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 6px;
  }
  .cart-list-table tbody td:first-child {
    width: 100%;
    margin-top: 30px;
  }

  .item-cart-price {
    font-size: 16px;
    text-align: right;
    white-space: nowrap;
  }

  .item-cart-quantity {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .item-cart-quantity input {
    width: 50px;
    height: 32px;
    margin: 0;
    font-size: 14px;
  }

  .item-cart-quantity > a {
    min-width: auto;
    height: auto;
    font-size: 11px;
    padding: 5px 10px;
    white-space: nowrap;
  }

  .item-cart-delete {
    margin-left: 0;
    margin-top: 0;
    display: inline-flex;
  }

  .item-cart-delete a {
    width: auto;
    height: auto;
    font-size: 11px;
    padding: 4px 8px;
    white-space: nowrap;
  }

  .item-cart-subtotal {
    font-size: 20px;
    text-align: right;
    margin-bottom: 30px !important;
    white-space: nowrap;
  }
  .item-cart-subtotal::before {
    content: "小計 ";
    font-size: 14px;
    font-weight: normal;
  }

  .cart-total {
    padding: 20px 16px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .cart-total td {
    background: transparent !important;
    padding: 0 !important;
  }

  .cart-total-title {
    margin: 0 0 8px 0 !important;
    text-align: left !important;
    font-size: 14px !important;
  }

  .cart-total-price-wrap {
    text-align: left;
  }

  .cart-total .cart-total-price {
    font-size: 24px;
    white-space: nowrap;
  }

  .cart-button-wrap .cart-button a {
    width: 100%;
  }

  .guide-section {
    width: 100%;
  }

  .contract-section {
    width: 100%;
  }

  .policy-box {
    width: 100%;
  }

  .policy-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .policy-content h3 {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .policy-content p {
    font-size: 14px;
    line-height: 2.0;
    margin: 0;
  }

  .policy-list li {
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 0;
  }

  .policy-sublist li {
    font-size: 13px;
    line-height: 2.0;
    margin-bottom: 0;
  }

  .guide-title {
    font-size: 32px;
    margin: 40px 0 20px;
  }

  select::-ms-expand {
    display: none;
  }

  .makeshop-option-select-wrap {
    position: relative;
    background: #ffffff;
  }
  .makeshop-option-select-wrap::before {
    position: absolute;
    top: 10px;
    right: 8px;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
  }

  select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .catalog-info-wrap {
    width: 100%;
  }

  .catalog-img {
    margin: 10px 0 4px;
  }

  .catalog-list,
  .catalog-list td,
  .catalog-list th {
    border-collapse: collapse;
    text-align: center;
  }

  .catalog-list thead th {
    display: none;
  }

  .catalog-list td {
    padding: 8px 12px;
    display: block;
  }

  .catalog-list td[data-title]::before {
    color: #666;
    content: attr(data-title) "";
    font-weight: bold;
    padding: 0 10px 0 0;
    display: inline;
  }
}

/* ========== SMALL SCREEN (max-width: 374px) ========== */
@media (max-width: 374px) {
  .header .header-menu {
    padding: 20px 20px;
  }

  .choice-btn li {
    width: 56px !important;
    margin-right: 4px;
  }

  .choice-btn li img {
    width: 56px !important;
    height: 56px;
  }
}

/* -----------------------------------------------------------------
   free page
----------------------------------------------------------------- */
.accordion_title {
  position: relative;
  top: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.accordion_qa {
  margin: 1em 0;
}
.accordion__summary:hover {
  opacity: 0.7;
}
.accordion__summary {
  display: block;
  background: #b2e5ff; /* 見出しの背景色 */
  font-weight: bold;
  position: relative;
  left: 2px;
  top: 2px;
  list-style: none; /* 矢印を消す */
  cursor: pointer;
  padding: 10px 38px 10px 10px;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__summary::after {
  content: "+";
  font-size: 1.4em; /* 記号のサイズ */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion_qa[open] .accordion__summary::after {
  content: "－";
  display: block;
}
.accordion__detail {
  padding: 4px 10px;
  margin: 10px 0;
  position: relative;
  display: block;
}
.accordion__text {
  margin: 0;
}

/* -----------------------------------------------------------------
   home page修正
----------------------------------------------------------------- */
.item-list-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-list-image img {
  height: 180px;
  width: 100%;
  object-fit: contain;
}
.item-category {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 15px;
}
.item-name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  -webkit-font-smoothing: antialiased;
  min-height: calc(3 * 1.5 * 15px); /* 3行分を常に確保 */
}
.price {
  display: flex;
  justify-content: left;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

/* -----------------------------------------------------------------
   contents page修正
----------------------------------------------------------------- */
.item-image img {
  height: 540px;
  width: 100%;
  object-fit: contain;
}

/* -----------------------------------------------------------------
   スライドバナー追加
----------------------------------------------------------------- */
.swiper {
  margin: 0 calc(50% - 50vw) !important; /* 余白なし */
  width: 100vw !important; /* 画面幅いっぱい */
  height: auto !important;
  min-height: 200px;
  opacity: 0.01;
  transition: opacity 0.3s ease;
}
.swiper.swiper-initialized {
  opacity: 1;
}

/* 確実なフォールバック */
.swiper {
  animation: ensureVisible 2s ease-in-out forwards;
}
.swiper.swiper-initialized {
  animation: none;
}
@keyframes ensureVisible {
  0% {
    opacity: 0.01;
  }
  95% {
    opacity: 0.01;
  }
  100% {
    opacity: 1;
  }
}

.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: auto;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  height: 100%;
  /* width: 990.667px !important; */
  text-align: center;
  line-height: 300px;
  text-align: center;
  overflow: hidden;
}

.swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: 10px !important;
  margin-bottom: 20px;
  position: relative;
}

/* サムネイル表示用 */
.thumb-swiper {
  margin-top: 16px;
  height: 100px;
}

.thumb-swiper .swiper-slide {
  width: auto;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.main-swiper .swiper-slide {
  /* width 864px 固定。viewport が広がっても拡大しない設計
     (実装: @media (min-width: 864px) { .swiper-slide { width: 864px } } 相当)
     高さは画像のアスペクト比に従って自動。1920:1080 は既定サイズ、
     3:2 画像はそのまま全体表示(クロップなし) */
  width: 864px;
  flex-shrink: 0;
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
}

/* レスポンシブ対応：モバイルサイズ */
@media (max-width: 767px) {
  .main-swiper .swiper-slide {
    width: 85vw; /* モバイル：約1.2枚表示 */
  }
}

.main-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Swiperのコンテナとスライドのボックスモデルを統一し、余分な余白をリセット */
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  box-sizing: border-box; /* パディングとボーダーを要素の幅と高さに含める */
  margin: 0; /* 他のCSSによるマージンの影響を確実に排除 */
  padding: 0; /* 他のCSSによるパディングの影響を確実に排除 */
}

/* メインスライダーのコンテナが親要素の幅いっぱいに広がり、Swiperが意図通り動作するための設定 */
.main-swiper {
  width: 100%;
  overflow: hidden; /* 確実にSwiper内で見切れるように */
  position: relative; /* Swiperコンテナには明示的にposition: relative; を設定 */
  min-height: 480px; /* JS生成前のレイアウトシフト防止 */
}
@media (max-width: 767px) {
  .main-swiper {
    min-height: 200px;
  }
}

/* サムネイルスライダーのコンテナも同様に確認 */
.thumb-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* スライド内の画像がスライドの幅に収まるようにします */
.main-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: none; /* スライド幅に合わせるため、max-widthは一時的に無効化を検討 */
}

/* -----------------------------------------------------------------
   スライダー機能強化
----------------------------------------------------------------- */

/* スライドオーバーレイ効果（軽微なホバー効果） */
.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  transition: transform 0.6s ease;
}

.swiper-slide:hover img {
  transform: scale(1.02); /* 軽微なズーム効果 */
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.swiper-slide:hover .slide-overlay {
  opacity: 1;
}

/* カスタムナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold !important;
  color: #333 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* カスタムページネーション */
.swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
  text-align: center !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ddd !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4) !important;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  /* スマホでナビゲーションボタンを非表示 */
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  /* スマホ表示時の左右余白を削除 */
  .swiper,
  .main-swiper {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important; /* 画面幅いっぱい */
  }

  /* 非アクティブなスライドを少し暗く */
  .main-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
  }

  /* アクティブなスライドを強調 */
  .main-swiper .swiper-slide-active {
    opacity: 1;
  }

  /* ページネーションの調整 */
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 3px !important;
  }
}

/* ECサイト向け実用的背景 */
.swiper-background-practical {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px 0;
  position: relative;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
}

/* スライダーコンテナの調整 */
.main-swiper {
  position: relative;
  z-index: 2;
}

/* スライド画像にシャドウを追加（背景と調和） */
.main-swiper .swiper-slide img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.main-swiper .swiper-slide:hover img {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

/* -----------------------------------------------------------------
   イベントカード型カテゴリデザインに修正
----------------------------------------------------------------- */
.category-list-title {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 14px 16px;
  margin: 0 0 18px 0;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}

.category-list-title::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2bb"; /* fa-tag アイコン */
  font-weight: 900;
  margin-right: 8px;
}

/* 新しいイベントカードスタイルを適用 */
.event-cards-style .side-category-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: none;
  border: none;
  padding: 0;
}

.event-cards-style .side-category-item:hover {
  box-shadow: none;
  transform: none;
}

.event-cards-style .side-category-item p,
.event-cards-style .side-category-item > a {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 16px 14px;
  margin: 0;
  color: #2c3e50;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border-left: 2px solid #e9ecef;
}

.event-cards-style .side-category-item p::before,
.event-cards-style .side-category-item > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502, #ff6b6b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-cards-style .side-category-item p::after,
.event-cards-style .side-category-item > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.event-cards-style .side-category-item p:hover,
.event-cards-style .side-category-item > a:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  border-color: #ff6b6b;
  border-left-color: #ff6b6b;
}

.event-cards-style .side-category-item p:hover::before,
.event-cards-style .side-category-item > a:hover::before {
  transform: scaleX(1);
}

.event-cards-style .side-category-item p:hover::after,
.event-cards-style .side-category-item > a:hover::after {
  left: 100%;
}

/* アコーディオンの矢印アイコンを削除 */
.event-cards-style .side-category-item p.on {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border-left-color: #ffc107;
  border-color: #ff6b6b;
}

.event-cards-style .side-category-item p.on::before {
  transform: scaleX(1);
}

.event-cards-style .side-category-item p.on::after {
  left: 100%;
}

/* 子カテゴリのスタイル調整（必要に応じて） */
.event-cards-style .side-category-child-item {
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  border-radius: 0 0 12px 12px;
  margin-top: -12px;
  padding-top: 12px;
  width: 100%;
  box-sizing: border-box;
}

.event-cards-style .side-category-child-item .child-item {
  display: block;
  padding: 10px 10px 10px 20px;
  color: #6c757d;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
}

.event-cards-style .side-category-child-item .child-item::before {
  content: "\2022";
  color: #007bff;
  margin-right: 8px;
  font-weight: bold;
  position: static;
  width: auto;
  height: auto;
  background: none;
  transform: none;
  transition: none;
}

.event-cards-style .side-category-child-item .child-item:hover {
  background: #e9ecef;
  color: #495057;
  border-left-color: #007bff;
  transform: translateX(5px);
  box-shadow: none;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .event-cards-style .side-category-item p,
  .event-cards-style .side-category-item > a {
    background: none;
    border: none;
    border-radius: 0;
    padding: 10px 0;
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    box-shadow: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }

  .event-cards-style .side-category-item p:hover,
  .event-cards-style .side-category-item > a:hover {
    background: none;
    color: #007bff;
    transform: none;
    box-shadow: none;
  }
}

/* ========================================
   イベントカード型カテゴリの修正
   ======================================== */

/* カテゴリータイトルとアイテムの幅統一 */
.category-list-title {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 14px 16px;
  margin: 0 0 18px 0;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.category-list-title::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2bb"; /* タグアイコン */
  font-weight: 900;
  margin-right: 8px;
}

/* イベントカードスタイルの適用 */
.event-cards-style {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.event-cards-style .side-category-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: none;
  border: none;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.event-cards-style .side-category-item p,
.event-cards-style .side-category-item > a {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 16px 14px;
  margin: 0;
  color: #2c3e50;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border-left: 2px solid #e9ecef;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  min-height: 48px;
}

.event-cards-style .side-category-item p::before,
.event-cards-style .side-category-item > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502, #ff6b6b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-cards-style .side-category-item p::after,
.event-cards-style .side-category-item > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.event-cards-style .side-category-item p:hover,
.event-cards-style .side-category-item > a:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  border-color: #ff6b6b;
  border-left-color: #ff6b6b;
}

.event-cards-style .side-category-item p:hover::before,
.event-cards-style .side-category-item > a:hover::before {
  transform: scaleX(1);
}

.event-cards-style .side-category-item p:hover::after,
.event-cards-style .side-category-item > a:hover::after {
  left: 100%;
}

/* アコーディオンのアクティブ状態 */
.event-cards-style .side-category-item p.on {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  border-left-color: #ffc107;
  border-color: #ff6b6b;
}

.event-cards-style .side-category-item p.on::before {
  transform: scaleX(1);
}

.event-cards-style .side-category-item p.on::after {
  left: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .event-cards-style .side-category-item p,
  .event-cards-style .side-category-item > a {
    font-size: 12px;
    padding: 12px 10px;
  }

  .category-list-title {
    font-size: 13px;
    padding: 12px 14px;
  }
}

/* -----------------------------------------------------------------
   イベントグリッド（トップページ）
----------------------------------------------------------------- */
.event-grid-section {
  padding: 60px 0;
}
.event-grid-header {
  text-align: center;
  margin-bottom: 32px;
}
.event-grid-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: normal;
  color: #000;
  margin: 0 0 4px;
  line-height: 24px;
}
.event-grid-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #666;
  margin: 4px 0 0;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  min-height: 300px; /* JS生成前のレイアウトシフト防止 */
  row-gap: 48px;
  align-items: start;
}
/* 「すべて見る」リンク(中央 + 丸囲み矢印アイコン) */
.event-grid-footer {
  text-align: center;
  margin-top: 48px;
}
.event-grid-view-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.event-grid-view-all:hover {
  opacity: 0.6;
}
.event-grid-view-all-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.event-grid-view-all:hover .event-grid-view-all-arrow {
  transform: translateX(4px);
}
.event-grid-view-all-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}
.event-card {
  display: block;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}
.event-card:hover {
  opacity: 0.8;
}
/* イベントカード画像枠: 正方形固定 + 白余白
   - 横長/縦長/正方形の画像が混在しても枠は常に正方形
   - 前景画像は object-fit: contain で全体表示、余白は白(レターボックス方式)
   - グリッド一覧での視認性を優先し、ぼかし背景は採用しない
     (ぼかし背景は単体ヒーロー画像向きの演出で、24カード並列だと
      色のパッチワークになり雑然とするため) */
.event-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: transparent;
}
.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.event-card__image img.loaded {
  opacity: 1;
}
/* 販売状態ラベル(タイトル前に独立した行で表示。
   width: fit-content で内容幅のブロックに留め、続くタイトルは次の行へ) */
.event-card__status-badge {
  display: block;
  width: fit-content;
  padding: 2px 8px;
  margin-bottom: 4px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.event-card__status-badge--ended {
  background: #9ca3af;
}
.event-card__title {
  font-family: "Noto Sans JP", sans-serif;
  margin: 16px 0 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
.event-card__price {
  font-family: 'DM Sans', sans-serif;
  margin: 4px 0 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

/* タブレット: 2列 */
@media (min-width: 768px) and (max-width: 1199px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 46px;
  }
}

/* モバイル: 2列 */
@media (max-width: 767px) {
  .event-grid-section {
    padding: 40px 0;
  }
  .event-grid-header {
    margin-bottom: 24px;
  }
  .event-grid-title {
    font-size: 26px;
    line-height: 20px;
  }
  .event-grid-subtitle {
    font-size: 13px;
  }
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 36px;
  }
  .event-card__title {
    font-size: 13px;
    margin: 12px 0 0 0;
  }
  .event-card__price {
    font-size: 13px;
    margin: 4px 0 0 0;
  }
  .event-card__status-badge {
    font-size: 10px;
    padding: 2px 6px;
    margin-bottom: 3px;
  }
}

/* -----------------------------------------------------------------
   カート追加トースト通知
----------------------------------------------------------------- */
#cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#cart-toast.cart-toast--show {
  opacity: 1;
  transform: translateX(0);
}
.cart-toast-inner {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 20px 24px;
  min-width: 280px;
  max-width: 340px;
}
.cart-toast-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cart-toast-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.cart-toast-message {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.cart-toast-count {
  font-size: 13px;
  color: #888;
  margin: 0 0 16px;
  padding-left: 38px;
}
.cart-toast-actions {
  display: flex;
  gap: 8px;
}
.cart-toast-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}
.cart-toast-btn:hover {
  opacity: 0.85;
}
.cart-toast-btn--view {
  background: #f5f5f5;
  color: #444;
}
.cart-toast-btn--close {
  background: #1FD5AD;
  color: #fff;
}

@media (max-width: 767px) {
  #cart-toast {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translateY(100%);
  }
  #cart-toast.cart-toast--show {
    transform: translateY(0);
  }
  .cart-toast-inner {
    border-radius: 16px 16px 0 0;
    min-width: auto;
    max-width: none;
    padding: 20px 20px 24px;
  }
}

/* ===== ソート・フィルターバー ===== */
.sf-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}
.sf-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sf-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sf-count {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.02em;
}
.sf-filter-wrap {
  position: relative;
}
.sf-filter-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}
.sf-filter-btn:hover .sf-filter-current { color: #111; }
.sf-filter-current {
  color: #222;
  font-weight: 600;
  transition: color 0.15s;
}
.sf-sort-label {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.02em;
}
.sf-sort-wrap {
  position: relative;
}
.sf-sort-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #222;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}
.sf-sort-btn:hover { color: #111; }
.sf-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  z-index: 200;
  min-width: 130px;
}
.sf-dropdown.sf-open {
  display: block;
}
.sf-filter-dropdown {
  left: 0;
}
.sf-sort-dropdown {
  right: 0;
  min-width: 148px;
}
.sf-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 9px 18px;
  font-size: 13px;
  color: #555;
  text-align: left;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.02em;
  transition: background 0.1s;
  white-space: nowrap;
}
.sf-option:hover {
  background: #f6f6f6;
}
.sf-option--selected {
  color: #111;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sf-bar {
    padding: 0 0 12px;
    margin-bottom: 16px;
  }
  .sf-filter-btn,
  .sf-sort-btn {
    font-size: 13px;
  }
  .sf-sort-label {
    display: none;
  }
}

