@charset "utf-8";
/* CSS Document */
/*===== 基本設定 =====*/
:root {
  --color-primary: #555555;
  --color-secondary: #8B6D5E;
  --color-accent: #DCC4B8;
  --color-frame: #CCCCCC;	
  --color-text: #444444;
  --color-light: #f9f9f9;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-sand: #C2B495;	
  --color-pink: #D8A7A7;
  --color-mint: #A8C3A3;
  --color-blue: #A7C6D8;
  --color-green: #A8C3A3;
  --color-attn: #D59B09;
  --color-sale: #C30002;
  --color-line: #3D863D;	
  --color-rakuten: #BF0000;
  --color-yahoo: #FF0033;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-primary);
  line-height: 1.7;
  max-width: 1080px;
  margin: 0 auto;
}

main {
  padding: 0px;
  background-color: var(--color-light);
}

article {
  display: block;
  margin: 0 auto;
  /*max-width: 720px;*/
}

section {
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: var(--transition);
}

a {
  color: inherit; /* 親要素から色を継承 */
  text-decoration: none; /* 下線を消したい場合 */
  transition: var(--transition);
}

a:link {
  /* color: inherit; 未訪問リンクも親要素の色を継承 */
}

a:visited {
  /* color: inherit; 訪問済みリンクも親要素の色を継承 */
}

a[href^="mailto:"] {
  color: inherit !important; /* mailtoリンクに強制的に親の色を適用 */
}

a:hover {
  /* ホバー時のスタイルがあれば追加 */
  /* 例: color: var(--color-accent); */
}

/* ボタンリンクのスタイル上書き */
a.btn, a.btn:link, a.btn:visited {
  color: var(--color-white); /* btnクラスのリンクは常に白文字 */
}
/*===== =====*/


/*===== タイポグラフィ =====*/
h1, h2, h4, h3, h5 {
  font-family: 'Noto Serif JP', Georgia, 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HGS明朝E', 'MS P明朝', serif;
  line-height: 1.4;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

h2 {
font-size: clamp(4rem, 9vw, 6rem);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

h5 {
  font-size: clamp(0.8rem, 2.5vw, 1.25rem);
  margin-bottom: 0.9rem;
  font-weight: 300;
}

/*===== h2見出し：新作/再販スライダー・ランキング・インスタ・特集バナー =====*/
.new-arrival h2,
.restock h2,
.ranking h2,
.recommend h2,
.instagram h2,
.feature-banner h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
/*===== =====*/


/*===== テキスト関連 =====*/
p {
  font-size: 1rem;
  /*margin-bottom: 20px;*/
}

.title-p {
    margin: -22px 0 28px 0;
    font-size: 0.8rem;
    letter-spacing: 0.4rem;
    text-align: center;
}

.accent-p {
  border: 1px solid var(--color-accent); /* アクセントカラーで2pxの実線ボーダー */
  text-align: left;
  margin: 0 10px;
  padding: 5px 10px; /* 文字の周りに少し余白を持たせる */
  display: inline-block; /* 文字の幅に合わせて要素の幅を調整 */
}

/*===== 商品名/プライス  =====*/
.product-info {
  text-align: center;
  padding: 15px 0;
}

.product-name {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.line-through {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.sale-price {
  color: var(--color-sale);
  font-size: 1.2rem;
  font-weight: 700;
}

.sale-price .tax {
  font-size: 0.7em;   /* 価格より小さく */
  color: #666;        /* 少し薄いグレーで上品に */
  margin-left: 0.25em; /* 価格と少し間隔を空ける */
  vertical-align: middle; /* バランスを取る */
}

/*===== 区切り =====*/
.hr-thin {
  border: none; /* デフォルトのボーダーを削除 */
  border-top: 1px solid #DDDDDD; /* 上部に1pxの線を引く */
  height: 0px; /* 要素自体の高さをなくす */
  margin: 8px 10px; /* 上下の余白（必要に応じて調整） */
}

/*===== シャドウ =====*/
.shadow {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
		
/*===== アンダーバー =====*/
.u_bar {
  padding-bottom: 15px;
  border-bottom: 1.75px solid var(--color-accent);
	}

/*===== フェードイン＆アップ =====*/
.fade-in {
  opacity: 0.2;
  transform: translateY(20px); /* 下にズラす */
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*===== アイコン/矢印：サイズ/高さ調整 =====*/
.icon-adj {
  font-size: 0.8rem;
  vertical-align: 2px;	
}

.v_line-adj {
  font-size: 1rem;
  margin-top: -0.1rem;
  color: #aaaaaa;
}

/*===== 点滅・テキスト =====*/
.blink-text {
  animation: blink 1.75s ease-in-out infinite;
  opacity: 1;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/*===== セール・テキスト =====*/
.sale-text {
  color: var(--color-sale);
}

/*===== 注目・テキスト =====*/
.attn-text {
  color: var(--color-attn);
}

/*===== TOPに戻るボタン =====*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(200, 200, 200, 0.8);
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, background-color 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  outline: none;
}

.back-to-top:hover {
  background-color: rgba(150, 150, 150, 0.9);
}

.button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-weight: bold;
}

.arrow {
  font-size: 20px;
  line-height: 1;
  transform: translateY(2px);
}

.text {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1;
}

.center-text {
  text-align: center;
  margin: 0 auto;
  font-size: 1rem;
  margin-bottom: 20px;
}

.left-text {
  text-align: left;
  margin: 0 auto;
  font-size: 1rem;
  margin-bottom: 20px;
}

/*===== TOPに戻るボタン［レスポンシブ～768px］ =====*/
@media screen and (max-width: 768px) {
.back-to-top {
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
}
  
.arrow {
  font-size: 18px;
}
  
.text {
  font-size: 10px;
}
}
/*===== =====*/


/*===== TOPに戻るボタン［レスポンシブ～480px］ =====*/
@media screen and (max-width: 480px) {
  .back-to-top {
  width: 45px;
  height: 45px;
  bottom: 15px;
  right: 15px;
}
}
/*===== =====*/


/*===== ハンバーガーメニューの中身 =====*/
.hamburger-content {
  display: none;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  padding: 20px 0px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/*===== ボタン・グループ =====*/
.button-group {
  width: 90%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 0 auto 20px auto;
}

/* すべてのボタン風リンク共通 */
.button-group a {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  text-decoration: none;
}

/* マイページ（デフォルト白） */
.button-group .mypage-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* マイページ ホバー時 */
.button-group .mypage-btn:hover {
  background-color: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

/* 新規登録（デフォルトカラー） */
.button-group .signup-btn {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}

/* 新規登録 ホバー時 */
.button-group .signup-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}


/*===== メニュー内：検索フォーム =====*/
.search-box {
  width: 90%;
  position: relative;
  margin: 0px auto 20px auto;
}
.search-box form {
  position: relative;
  width: 100%;
  display: block;
}
.search-box input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 40px 12px 15px;
  border: 1px solid var(--color-frame);
  border-radius: 25px;
  font-size: 16px;
  -webkit-appearance: none;
}
.search-box i.fas.fa-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 16px;
  cursor: pointer;
}
.search-box i.fas.fa-search:hover {
  color: var(--color-black);
}
.search-box button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.search-box button i {
  color: var(--color-primary);
  font-size: 16px;
}
.search-box button:hover i {
  color: var(--color-black);
}

/*===== メニュー内：SNS =====*/
.menu_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.menu_sns a {
  color: var(--color-primary);
  font-size: 30px;
  transition: color 0.4s ease;
}
.menu_sns a:hover {
  color: var(--color-black);
}
/*===== メニュー内：カテゴリー =====*/
.menu-category {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  margin: 0px 0px 20px 20px;
  gap: 10px;
}

.menu-category a {
  display: inline-block; /* ★block → inline-blockに変更！ */
  position: relative; /* ★相対位置を基準にする */
  text-align: center;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.4s ease;
  padding-bottom: 5px; /* 下線とテキストに少し余白をつける */
}

.menu-category a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* ★中央寄せ */
  width: 80%; /* ★ここで線の長さを調整できる（50%くらいがバランス良い） */
  border-bottom: 1px dotted var(--color-frame);
}

.menu-category a:hover {
  color: var(--color-black);
}


/* ===== テキスト・カテゴリーリンク：横スクロール用 ===== */
.category-links-wrap {
  position: relative;
  overflow: hidden;
  margin: 5px auto;
  padding: 5px 15px;
}

.category-links {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-links::-webkit-scrollbar {
  display: none;
}

.category-links ul {
  display: flex;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.category-links li {
  flex: 0 0 auto;
}

.category-links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.category-links a:hover {
  color: var(--color-black);
}

/* モバイル時の調整 */
@media (max-width: 767px) {
  .category-links a {
    font-size: 1rem;
  }
}

/* 右端白グラデーション */
.category-links-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 125px;
  height: 100%;
  background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0.8), rgba(255,255,255,0.0));
  pointer-events: none;
  z-index: 2;
}

/* 右端白グラデーション上：矢印 */
.category-links-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  z-index: 3; /* グラデーションより上に */
  pointer-events: none; /* クリック無効化（念のため） */
  user-select: none;
  cursor: pointer; /* ← クリックできそうに見せる */
}

/* ドラッグ中にカーソルを変える（あると分かりやすい） */
.category-links.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
/*===== =====*/


/*===== ハッシュタグ・ウインドウ =====*/
.hashtag-section {
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.hashtag-category {
  margin-bottom: 20px;
}

.hashtag-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtag-category ul li a {
  background: var(--color-light);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid var(--color-frame);
  transition: 0.3s;
}

.hashtag-category ul li a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
/*===== =====*/


/*===== ヘッダー1段目 =====*/
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px 10px 18px;
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  width: 30%;
  max-width: 115px;
  margin-left: 0.45rem;
  position: relative; /* 相対位置で調整 */
  top: 0px; /* 下に移動 */
}

.brand-logo img {
  width: 100%;
  transition: opacity 0.4s ease;
}

.brand-logo img:hover {
  opacity: 0.8;
}

.header-right {
  display: flex;
  gap: 17px;
  align-items: center;
}

.cart-icon,
.hamburger-menu {
  font-size: 20px;
  color: var(--color-text);
  transition: color 0.4s ease;
}

.hamburger-menu i {
  transition: all 0.3s ease;
}

/* ハンバーガーメニューが開いてるとき（バツ印） */
.hamburger-menu.active i::before {
  content: "\f00d"; /* ← これが「バツ印」(FontAwesomeの"times"アイコン) */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.cart-icon:hover,
.hamburger-menu:hover {
  color: var(--color-black);
}
/*===== =====*/


/*===== ヘッダー2段め =====*/
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px 10px 18px;
  background-color: var(--color-light);
  border-top: 1px solid #eee;
}

.shopping-guide {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-text);;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 25px;
  background-color: var(--color-white);
  border: 1px solid var(--color-frame);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.shopping-guide:hover {
  background-color: var(--color-text);;
  color: var(--color-white);
}

.icons {
  display: flex;
  gap: 20px;
}

.icons a {
  color: var(--color-primary);
  font-size: 20px;
  transition: color 0.4s ease;
}

.icons a:hover {
  color: var(--color-black);
}
/*===== =====*/


/*===== モーダルウィンドウ =====*/
.modal-container {
  position: fixed;
  bottom: 12px; /* 下から12px */
  left: 12px; /* 左から12px */
  width: 40%; /* 幅を設定 */
  max-width: 300px; /* 幅の最大値を300pxに設定 */
  box-sizing: border-box; /* パディングを含めたサイズ計算 */
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* 透明度15%のドロップシャドウ */
  padding: 5px;
  border-radius: 5px; /* 角丸設定 */
  opacity: 0;
  visibility: hidden; /* 初期状態では非表示 */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 999; /* z-indexを999に設定 */
}

/* モーダルウィンドウ_内容 */
.modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* モーダルウィンドウ_画像 */
.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* オーバーレイ_テキスト */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
  font-size: 1.6rem;
  line-height: 1.25; /* 行間 */
  font-weight: bold;
  color: var(--color-white);
  opacity: 0.75; /* 透明度50% */
  z-index: 2; /* 画像の上に表示されるように最前面に */
  text-align: center;
  pointer-events: none; /* 「Coming Soon」をクリックできないように設定 */
}

/* モーダルウィンドウ_バツ印（改訂版） */
.close {
    position: absolute;
    top: -14px;   /* ← 少し下にずらしてバランスよく */
    right: 10px; /* ← 右も少し余裕 */
    font-size: 36px; /* バツの大きさ */
    color: #ffffff; /* バツを真っ白に */
    cursor: pointer;
    z-index: 100; /* ボタンが一番前に来る */
    background: none; /* 背景サークル無し */
    border: none;
	font-weight: 300
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6); /* 黒い光彩（影）追加 */
}

/* フェードイン・アウト_アニメーション */
.modal-container.show {
  opacity: 1;
  visibility: visible;
}

.modal-container.hide {
  opacity: 0;
  visibility: hidden;
}
/*===== =====*/


/*===== more info ボタン =====*/
.more-info {
  display: block; /* ブロック要素にして幅を親要素に合わせる */
  width: fit-content; /* ボタンの幅を内容に合わせる */
  margin: 32px auto; /* 上下にの余白、左右は自動で中央揃え */
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);;
  text-decoration: none;
  padding: 7px 25px 7px 25px; /* 上下左右のパディング */
  border-radius: 25px;
  background-color: var(--color-white);
  border: 1px solid var(--color-frame);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.more-info:hover {
  background-color: var(--color-text);;
  color: var(--color-white);
}
/*===== =====*/


/*===== 特集バナー =====*/
.feature-banner {
  width: 100%;
  max-width: 1080px;
  margin: 20px auto 0px;
  padding: 0px;
  text-align: center;
  box-sizing: border-box;
}
/*===== =====*/

/*===== 特集バナー：トップバナー =====*/
.feature-banner .top-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .top-banner img:hover {
  transform: scale(1.02);
}
/*===== =====*/


/*===== 特集バナー：上段1カラム =====*/
.feature-banner .bottom-1banner img {
  max-width: 680px;
  width: 80%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .top-banner img:hover {
  transform: scale(1.02);
}
/*===== =====*/

/* 1カラム画像 */
.single-column {
  width: 75%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
}

/* 2カラム画像 */
.double-column {
  width: calc(50% - 5px);
  height: auto;
  margin-right: 10px;
  margin-bottom: 30px; /* すべてのデバイスでマージンを追加 */
}

.double-column:nth-child(2n) {
  margin-right: 0;
}

/* 3カラム画像 */
.triple-column {
  width: calc(33.333% - 20px);
  height: auto;
  margin-right: 30px;
  margin-bottom: 30px; /* すべてのデバイスでマージンを追加 */
}

.triple-column:nth-child(3n) {
  margin-right: 0;
}


/*===== 特集バナー：下段2カラム =====*/
.feature-banner .bottom-2banners {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 16px; /* バナー間の間隔 */
  margin: 0 auto;
  padding: 0; /* デフォルトのpaddingをリセット */
  list-style: none; /* リストのマーカーを削除 */
}

.feature-banner .bottom-2banners li {
  flex: 1 1 calc(50% - 10px); /* 2つのバナーが均等に幅を分割（gapを考慮） */
  box-sizing: border-box; /* paddingやborderを含めた幅の計算 */
  min-width: calc(50% - 10px); /* 最小幅を50%に固定して2カラムを維持 */
}

.feature-banner .bottom-2banners img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .bottom-2banners img:hover {
  transform: scale(1.02);
}
/*===== =====*/

/*===== コード・クーポン =====*/
.cpn-banner {
  width: 86%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  background: linear-gradient(135deg, #bfa47c, #e9d9c1);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  box-shadow: 0 4px 15px rgba(130, 100, 60, 0.4);
  border: 1px solid #b3986e;
}

.cpn-banner p {
  margin: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.cpn-text {
  margin-top: 0.5rem;
}

.cpn-text h3 {
  font-size: 2.4rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px rgba(80, 60, 40, 0.4);
}

.cpn-text p {
  margin: 0.2;
  font-size: 1rem;
  /*font-style: italic;*/
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(80, 60, 40, 0.3);
}

.cpn-u_bar {
  padding-bottom: 15px;
  border-bottom: 1.5px solid var(--color-white);
	}

/*===== =====*/

/*===== セールリボン =====*/
.img-badge-wrapper {
  position: relative;
  display: block;
}
.badge-ribbon {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: rgba(185, 35, 42, 0.8);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 0;
  text-align: center;
  z-index: 5;
}
.big {
  bottom:20px;
  font-size: 2rem;
  padding: 2px 0;
}
/*===== =====*/


/*===== カミングスーン =====*/
.coming-soon-box {
  aspect-ratio: 4 / 5;
  background-color: var(--color-frame);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.coming-soon-text {
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.4rem;
  transform: rotate(-7deg);
  display: inline-block;
}


/*===== =====*/


/*===== クーポンコード：コピー =====*/
.copy-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10000;
  pointer-events: none;
}
.copy-toast.show {
  opacity: 1;
}

/*===== 特集バナー：下段3カラム =====*/
.feature-banner .bottom-3banners {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 8px; /* バナー間の間隔 */
  padding: 0; /* デフォルトのpaddingをリセット */
  list-style: none; /* リストのマーカーを削除 */
}

.feature-banner {
  overflow: visible; /* ← ここも必ず付ける！！ */
}

.feature-banner .bottom-3banners li {
  flex: 1 1 calc(33.333% - 8px); /* 3つのバナーが均等に幅を分割（gapを考慮） */
  box-sizing: border-box; /* paddingやborderを含めた幅の計算 */
  min-width: calc(33.333% - 8px); /* 最小幅を33.333%に固定して3カラムを維持 */
}

.feature-banner .bottom-3banners img {
  width: 100%;
  height: auto;
  padding: 0 5px;
  margin: 0;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .bottom-3banners img:hover {
  transform: scale(1.02);
}

/*===== 特集バナー：下段4カラム =====*/
.feature-banner .bottom-4banners {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  max-width: 1080px;
  margin: 0 auto; /* 中央寄せ */
}

.feature-banner .bottom-4banners li {
  flex: 1 1 calc(25% - 9px); /* gap考慮して4分割 */
  box-sizing: border-box;
  min-width: calc(25% - 9px);
}

.feature-banner .bottom-4banners img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .bottom-4banners img:hover {
  transform: scale(1.02);
}

/*===== 特集バナー：下段5カラム =====*/
.feature-banner .bottom-5banners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-banner .bottom-5banners li {
  flex: 1 1 calc(20% - 8px); /* 5分割 */
  box-sizing: border-box;
  min-width: calc(20% - 8px);
}

.feature-banner .bottom-5banners img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.feature-banner .bottom-5banners img:hover {
  transform: scale(1.02);
}

/* ランキングバッジ */
.feature-banner .bottom-3banners li {
  position: relative; /* バッジを絶対配置するために必要 */
}

/* ===== ブランド・バナー：横スクロール ===== */
.fixed-brand-banner {
  position: fixed;
  bottom: 10px; /* ← 下に10pxの余白ができる */
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.50);
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
}

.fixed-brand-banner.active {
  transform: translateY(0%);
}

.brand-banner-scroll-wrap {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.50); /* 透明度75% */
  height: 140px; /* スマホ基準の高さ */
  max-width: 1080px;      /* ← 幅を制限 */
  margin: 10px auto;     /* ← 中央寄せ！ */
  bottom: 10px; 
}

.brand-banner-scroll {
  display: flex;
  gap: 0rem;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.brand-banner-scroll::-webkit-scrollbar {
  display: none;
}

.brand-banner-scroll li {
  flex: 0 0 auto;
  width: 25%;
  height: 140px;
  display: flex;
  align-items: center;
  /* justify-content: center; ← 消す or leftにする */
}

.brand-banner-scroll img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

/* 不要な右端グラデーションはコメントアウト済 */
/*
.brand-banner-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 2;
}

.brand-banner-white-top {
  width: 100%;
  height: 10px;
  background-color: white;
  position: relative;
  z-index: 3;
}

.category-links-arrow {
  text-align: center;
  padding: 10px 0;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
}
*/

.brand-banner-scroll.dragging {
  cursor: grabbing;
}

/* ===== PC（768px以上）===== */
@media (min-width: 768px) {
  .brand-banner-scroll-wrap {
    height: 160px;
  }

  .brand-banner-scroll li {
    height: 160px;
    flex: 0 0 20%;     /* ← ここを25%から狭めることで詰まって見える！ */
    min-width: 160px;  /* ← 強制最小幅で潰れ防止、画像によって調整可能 */
  }

  .brand-banner-scroll img {
    max-height: 140px;
    width: 100%;
  }
}

/* ===== スマホ（〜767px）===== */
@media (max-width: 767px) {
  .brand-banner-scroll-wrap {
    height: 100px;
  }

  .brand-banner-scroll {
    gap: 0.5rem; /* ギュッと近づける */
    padding: 0;
  }

  .brand-banner-scroll li {
    height: 100px;
    flex: 0 0 auto;
    width: auto;           /* ← 自動幅で詰める！ */
    display: flex;
    align-items: center;
  }

  .brand-banner-scroll img {
    height: 80px;          /* ← 明確な高さ指定 */
    width: auto;
    max-height: 100%;      /* ← wrapに収まる */
    object-fit: contain;
  }
}


/*===== ランキング・バッジ =====*/
.rank-badge {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 35px;
  height: 35px;
  background: rgba(128, 128, 128, 0.7); /* グレー + 70%透明 */
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/*===== =====*/

/*===== ランキングバッジ［レスポンシブ～767px］ =====*/
@media screen and (max-width: 767px) {
.rank-badge {
  position: absolute;
  top: -4px;
  left: -2px;
  width: 28px;
  height: 28px;
}
}

/*===== 特集バナー［レスポンシブ～480px］ =====*/
@media screen and (max-width: 480px) {
.feature-banner {
  padding: 0 10px; /* スマホでは余白を狭く */
}

.feature-banner .bottom-banners {
  flex-direction: row; /* 列方向ではなく行方向に並べる */
  gap: 10px; /* 必要に応じてgapを調整 */
}

.feature-banner .bottom-banners li {
  flex: 1 1 calc(50% - 5px); /* 2カラムを維持 */
  min-width: calc(50% - 5px); /* 最小幅を50%に固定 */
}
}
/*===== =====*/


/*===== Instagram自動更新 =====*/
.insta_main {
  padding: 0 20px;
  margin: 40px auto;
  text-align: center;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

ul.insta_list {
  display: flex;
  flex-wrap: wrap; /* 2行版 */
  /*flex-wrap: nowrap; 1行版 */
  justify-content: center;
  gap: 12px; /* 画像同士の間隔も特集バナーに合わせる */
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.insta_list li {
  /* width: 32%; 1行版 */
  flex: 1 1 calc(33.333% - 8px); /* バナーと同じ割合・gap考慮して調整 */
  aspect-ratio: 3/4; /* 比率 */
  overflow: hidden;
  border-radius: 8px;
  box-sizing: border-box;
}

ul.insta_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
/*===== =====*/


/*===== アコーディオン・インフォ =====*/
.accordion {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: var(--color-light);
}

.accordion-box {
  border-bottom: 1px solid var(--color-frame);
}

.accordion-header {
  padding: 18px;
  background-color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: center; /* ← ここを center に！ */
  align-items: center;
}

.accordion-header::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.4s ease;
  position: absolute; /* ← ここ追加！ */
  right: 18px; /* ← 右にピタッとくっつける */
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: var(--color-white);
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-links {
  font-size: 0.8rem;
  padding: 15px;
  display: grid; /* ← flexじゃなく gridにする */
  grid-template-columns: 1fr 1fr; /* ← 2カラムにする */
  gap: 10px 20px; /* ← 上下左右の間隔（お好みで） */
}

.accordion-links a {
  padding: 8px 0;
  color: var(--color-text);;
  text-decoration: none;
  border-bottom: 1px solid var(--color-frame);
}

/*.accordion-links a:last-child {
  border-bottom: none;
}*/

.accordion-links a:hover {
  color: var(--color-black);
}

.accordion-box + .accordion-box {
  border-top: 1px solid var(--color-frame);
}
/*===== =====*/


/*===== クーポン説明 =====*/
.coupon-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;                /* ← 横中央の起点 */
  transform: translateX(-50%);  /* ← 要素幅の半分だけ左に戻す */
  width: 85%;
  max-width: 680px;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 3rem 1rem;
}

.coupon_conts {
  background: #fff;
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.js-modal-close {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border-radius: 18px;
  border: none;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.js-modal-close:hover {
  opacity: 1;
}
/*===== =====*/


/*===== ヘッダー2段め in フッター =====*/
.footer-bottom-wrap {
	width: 328px;
	max-width: 100%;
	margin: 15px auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 18px 0px 10px;
  background-color: var(--color-text);
}

.icons-white {
  display: flex;
  gap: 20px;
}

.icons-white a {
  color: var(--color-white);
  font-size: 20px;
  transition: color 0.4s ease;
}

.icons-white a:hover {
  color: var(--color-primary);
}
/*===== =====*/


/*===== フッター =====*/
footer {
  background-color: var(--color-text);; /* 濃いグレー */
  color: var(--color-white); /* 文字色白 */
  padding: 15px;
  text-align: center;
}

.footer-info h1 {
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin: 30px 0 0 0;
}

.footer-logo {
  width: 150px;
  margin: 16px 0px 8px;
}

.footer-info {
  margin-bottom: 18px;
}

.footer-info p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}4rem;
  margin: 30px 0 0 0;
}

.footer-logo {
  width: 150px;
  margin: 16px 0px 8px;
}

.footer-info {
  margin-bottom: 18px;
}

.footer-info p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.ap-text {
  color: var(--color-primary, #555555);
  text-align: center;
  text-decoration: underline;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  padding: 0.5em 0;
}
/*===== =====*/


/*===== PC/タブレット・マージン =====*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-200 {
  margin-bottom: 200px;
}
/*===== =====*/


/*===== マイナス・マージン =====*/
.mb-n10 {
  margin-bottom: -10px;
}

.mb-n20 {
  margin-bottom: -20px;
}

.mb-n30 {
  margin-bottom: -30px;
}

.mb-n40 {
  margin-bottom: -40px;
}

.mb-n50 {
  margin-bottom: -50px;
}
/*===== =====*/


/*===== レスポンシブ対応 =====*/
@media (max-width: 767px) {

/*===== スマホ マージン =====*/
.mb-10 {
  margin-bottom: 0.625rem; /* 10px ÷ 16 */
}

.mb-20 {
  margin-bottom: 1.25rem; /* 20px ÷ 16 */
}

.mb-30 {
  margin-bottom: 1.875rem; /* 30px ÷ 16 */
}

.mb-40 {
  margin-bottom: 2.5rem; /* 40px ÷ 16 */
}

.mb-50 {
  margin-bottom: 3.125rem; /* 50px ÷ 16 */
}

.mb-75 {
  margin-bottom: 4.6875rem; /* 75px ÷ 16 */
}

.mb-100 {
  margin-bottom: 6.25rem; /* 100px ÷ 16 */
}

.mb-125 {
  margin-bottom: 7.8125rem; /* 125px ÷ 16 */
}

.mb-150 {
  margin-bottom: 9.375rem; /* 150px ÷ 16 */
}

.mb-200 {
  margin-bottom: 12.5rem; /* 200px ÷ 16 */
}
}
/*===== =====*/


/*===== パディング =====*/
.py-20 { padding: 20px; }
.py-50 { padding: 50px 0; }
.py-100 { padding: 100px 0; }
/*===== =====*/