/* 共通設定 */
  body {
  font-family: sans-serif,'Noto Sans JP' ;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color:  #cac09d48
}
/* ========== 共通スタイル ========== */

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: hsl(40, 50%, 21%);
  margin-bottom: 20px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.site-header {
  background-color: #a67b3082;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
}

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

.logo img {
  max-height: 80px;
  width: auto;
}

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

.menu > li {
  position: relative;
}

.menu > li > a {
  color: #5a472a;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 8px;
  transition: color 0.6s ease;
}
.menu > li > a:hover {
  color: #fff;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 100;
}

.submenu li {
  padding: 10px 20px;
  white-space: nowrap;
}

.submenu li a {
  color: #564204;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
}

.dropdown:hover .submenu {
  display: block;
}
.submenu > li > a:hover {
 font-weight: bold;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-actions a {
  text-decoration: none;
  color: #4a3a1f;
  font-weight: bold;
  padding: 8px 12px;
  border: 1px solid #d6c6a5;
  border-radius: 5px;
  background-color: #fff;
  transition: background 0.5s ease;
  font-size: 0.9rem;
}
.header-actions a:hover {
  background-color: #ffcd5a;
}

/* ========== Heroスライダー ========== */
.hero-slider {
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}
.hero-slider .slick-slide {
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== ハンバーガーメニュー ========== */

/* PCのときは非表示 */
.br-btn {
  display: none;
}

/* メニュー開いたとき */
.on .global-nav,
.on .header-actions {
  display: flex;
}

/* ハンバーガーアニメーション（×に変化） */
.on .br-btn span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.on .br-btn span:nth-child(2) {
  opacity: 0;
}
.on .br-btn span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 768px) {
  .br-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }

  .br-btn span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.3s;
  }

  .global-nav {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #C5C5C5;
    transition: 0.5s;
  }

  .on .global-nav {
    right: 0;
  }

  .header-actions {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #C5C5C5;
    width: 100%;
    padding-top: 20px;
    position: fixed;
    top: 60px;
    z-index: 9998;
  }

  .on .header-actions {
    display: flex;
  }

  .global-nav .menu {
    background-color: rgba(119, 95, 46, 0.8);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 6px;
  }
  .global-nav .menu a{
    color: #ffffff;
  }
  
.global-nav .submenu {
  background-color: #a67b30b4; 
  padding: 10px;
  border-radius: 6px;
}

.global-nav .submenu a {
  color: #582f03; /* サブメニューのリンクも白文字に */
  display: block;
  padding: 8px 12px;
  font-weight: 500;
}

.global-nav .submenu a:hover {
  background-color: rgba(255, 255, 255, 0.8); /* hoverで少し明るく */
}
}




.hero-slider .slick-slide img {
  width: 100vw;     
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-item {
  position: relative;
  height: 100%;
}

.hero-slider,
.hero-slider .slick-slide,
.slide-item {
  height: 70vh;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; 
  background: rgba(0, 0, 0, 0.4); 
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  text-align: center;
  width: 60%;
  max-width: 600px;
  box-sizing: border-box;
  color: #fff;
}

.hero-caption h1 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.hero-caption h2 {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff8e7;
  line-height: 1.4;
}

.hero-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ボタン群のスタイルと中央配置 */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;  
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  background-color: #fff;
  color: #413103;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.6s ease;
}

.hero-buttons .btn:hover {
  background-color: #a67b30b4;
  color: #fff;
}


/* スマホ用レスポンシブ */
@media (max-width: 768px) {
  .hero-caption {
    width: 80%;
    padding: 1rem;
  }

  .hero-caption h1 {
    font-size: 1.3rem;
  }

  .hero-caption p {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}



/* キャンペーンバナー */
.campaign {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}

.banner-link {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}
.banner-link img {
  display: block;
  width: auto;        
  height: auto;
  max-width: 100%;   
  margin: 0 auto;
}
/* 茶色の帯部分（ボタンの背景） */
.campaign-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
  gap: 14px;
  padding: 10px 0 10px 0;  
  background: rgba(74, 59, 28, 0.8);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-sizing: border-box;
}
.campaign .btn {
  display: flex;                    
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  background-color: #fff;
  color: #4a3b1c;
  border: 2px solid #4a3b1c;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 5px;
  text-align: center;
  line-height: 1.4;
}


.campaign .btn:hover {
  background-color: #ffcd5a;
}
@media screen and (max-width: 768px) {
  .campaign {
    padding: 20px 10px;
  }

  .campaign-buttons {
    flex-direction: column;
    padding: 12px 0;
    gap: 10px;
  }

  .campaign .btn {
    width: 80%;
    max-width: 300px;
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .banner-link img {
    width: 100%;     
    height: auto;
  }
}



/* 親コンテナにflexを指定（main + asideの親） */
.container,
.container.sidebar-layout {
  display: flex;
  gap: 20px; /* mainとasideの間の余白 */
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  flex-wrap: nowrap; /* 横並び固定 */
}

/* メインコンテンツ */
.main-content {
  flex-grow: 1;       
  min-width: 0;      
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

/* サイドバー */
.sidebar-filter {
  width: 280px;         
  max-width: 100%;      
  background-color: #fff8e7;
  padding: 24px 28px;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* サイドバー内 セクションの余白 */
.sidebar-filter section {
  margin-bottom: 30px;
}

/* サイドバー内 見出し */
.sidebar-filter h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #4a3b1c;
}

/* チェックボックスのラベル */
.sidebar-filter label {
  font-size: 1rem;
  color: #5a4b22;
  display: block;
  margin-bottom: 10px;
  line-height: 1.6;
  cursor: pointer;
}

/* チェックボックスとテキストの間のスペース */
.sidebar-filter input[type="checkbox"] {
  margin-right: 8px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .container.sidebar-layout {
    flex-direction: column;
  }
  .sidebar-filter {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ランキングセクション全体 */
.product-section.ranking {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ランキング商品カードの親ラッパー */
.product-card-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* 各商品カード */
.product-card {
  width: 30%;
  min-width: 280px;
  background-color: #fffdf7;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-sizing: border-box;
  text-align: center;
}

/* 商品画像 */
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* 商品名 */
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #2e2e2e;
}

/* 商品説明 */
.product-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  min-height: 56px; 
}

/* 容量・価格 */
.product-weight, .product-price {
  font-weight: bold;
  margin-bottom: 8px;
  color: #4a3a1f;
}


/* 「もっと見る」ボタンラッパー */
.ranking-more {
  text-align: center;
  margin-top: 30px;
}
.more-btn-container {
  text-align: center;
  margin-top: 1.5em;
}

.btn.more-btn {
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #a77c33;  
  color: #fff;                
  border: 2px solid #a77c33;  
}

.btn.more-btn:hover {
  background-color: #fff;      
  color: #a77c33;              
  border-color: #a77c33;       
}
.more-btn::before {
  content: "▶";
  margin-right: 6px;
  font-size: 1rem;
  color: inherit;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .product-card-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .product-card {
    width: 100%;
    min-width: auto;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-card {
    flex: 1 1 100%;
  }
}


/* 商品カテゴリ全体 */
.categories {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

.categories h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.categories p {
  font-size: 1.1rem;
  color: #262323;
  margin-bottom: 40px;
}

/* 商品カテゴリグリッド */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* カテゴリカード */
.category {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;  
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease; 
}

.category:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* カテゴリ画像 */
.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease; /
}

.category:hover img {
  transform: scale(1.05);
}

/* 画像上の文字 */
.category-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  background: #a67b30b4;
  padding: 14px 24px;
  border-radius: 28px;
  max-width: 90%;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
  pointer-events: none;
}

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

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category {
    aspect-ratio: unset;         /* スマホでは高さ固定に変更 */
  }

  .category img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }
}



/* 商品ページ */
/* 共通 container */
.product-section {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.product-section h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto 30px auto;
  padding-left: 12px;
}

/* 商品カード群 */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

/* 商品カード */
.product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 18px 16px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  width:350px;
}

.product-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: transform 0.3s ease; 
}

.product-card:hover img {
  transform: scale(1.05); 
}


/* 商品名 */
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #171717;
  text-align: left;
  padding-left: 12px;
}

/* 商品説明 */
.product-card p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: left;
  padding-left: 12px;
}

/* 容量・価格 */
.product-weight,
.product-price,
.price {
  font-size: 14px;
  color: #555;
  margin: 4px 0 12px 12px;
  text-align: left;
}

.product-weight strong,
.product-price strong {
  font-weight: 600;
  color: #333;
}

/* 価格のみ強調 */
.price {
  font-size: 16px;
  font-weight: 700;
  color: #f5b342;
  margin-bottom: 18px;
}

/* ボタン */
.product-card button,
.product-card .btn {
  background-color: #f5b342;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.product-card button:hover,
.product-card .btn:hover {
  background-color: #d4971f;
}



/* レスポンシブ */
@media (max-width: 768px) {
  .product-cards {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
    max-width: 400px;
  }
  .product-section h2,
  .product-card h3,
  .product-card p,
  .product-weight,
  .product-price,
  .price {
    text-align: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar-filter {
    display: none;
  }

  .container {
    flex-direction: column;
  }

  .main-content {
    width: 100%;
  }
}



/* M'sの世界セクション */
/* M's World セクション全体 */
.ms-world {
  padding: 60px 20px;
  background-color: #fff;
  max-width: 1300px;
  margin: 60px auto 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3b1c;
}

.ms-world h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* カラム全体 */
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* 各カラム */
.column {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 画像 */
.image-hover .image-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 2 / 3;
}

.image-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-hover .image-link:hover img {
  transform: scale(1.05);
}

/* タイトル・テキスト・ボタン */
.column h3 {
  font-size: 1.6rem;
  margin: 20px 0 15px;
  font-weight: 600;
}

.column p {
  font-size: 1rem;
  line-height: 1.5;
  color: #201802;
  flex-grow: 1;
}

.column .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d4aa00;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.column .btn:hover {
  background-color: #b88c00;
}

/* === レスポンシブ対応 === */
@media screen and (max-width: 1024px) {
  .column {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .columns {
    gap: 20px;
  }

  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ms-world {
    padding: 40px 15px;
  }

  .ms-world h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .column h3 {
    font-size: 1.4rem;
  }

  .column p {
    font-size: 0.95rem;
  }

  .column .btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .image-hover .image-link {
    aspect-ratio: unset;
  }

  .image-hover img {
    height: 260px;
  }
}


/* ご購入についてセクション */
.purchase-info {
  background-color: #fff; 
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  box-sizing: border-box;
}

/* セクション見出し */
.purchase-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(40, 50%, 21%);
  margin-bottom: 20px;
}
/* 説明文 */
.purchase-info p {
  font-size: 1.1rem;
  color: #151414;
  margin-bottom: 24px;
  line-height: 1.8;
}
/* リスト */
.purchase-info ul {
  display: flex;
  justify-content: space-between; 
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none!important;
}
.purchase-info ul li {
  flex: 1; /* それぞれ均等幅 */
  text-align: center;
}
.purchase-info ul li a {
  display: inline-block;
  text-decoration: none;
  background-color: #deb887;  
  color: #fff;                
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid #deb887;  
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.purchase-info ul li a:hover {
  background-color: #fff;      
  color: #573106;               
  border-color: #573106;        
}

.purchase-info ul li {
  margin-bottom: 10px;
}
.purchase-info h2 {
  text-align: center;
}

.purchase-info p {
  text-align: center;
}

/* レスポンシブ（スマホなど） */
@media screen and (max-width: 900px) {
  .columns {
    flex-direction: column;
  }
  .column {
    flex: 1 1 100%;
  }
}

footer {
  background-color: rgba(166, 123, 48, 0.51); 
  color: #3a2e1f; 
  font-family: sans-serif;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2e261b; 
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #4a3a1f; 
  transition: color 0.6s ease;
}

.footer-section ul li a:hover {
  color: #fff; 
}

.footer-bottom {
  background-color: rgba(166, 123, 48, 0.51); 
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #3a2e1f;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-bottom {
    background-color: rgba(105, 78, 30, 0.51);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #3a2e1f;
  }
}
footer {
  background-color: rgba(143, 110, 53, 0.404); 
  color: #3a2e1f; 
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-top: 1px solid #615003a8;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2e261b; 
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #4a3a1f; 
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff; 
}

.footer-bottom {
  background-color: rgba(59, 38, 2, 0.51); /* フッター下部も同じ背景色 */
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-bottom {
    background-color: rgba(166, 123, 48, 0.51);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #3a2e1f;
  }
}

/* 商品ページ */
.product-page {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

.campaign-banner img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.product-section {
  margin-bottom: 50px;
}

.product-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #d8a64a;
  padding-bottom: 8px;
  color: #5a3e1b;
}

.product-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-card {
  background-color: #fff;
  border: 1px solid #d8a64a;
  border-radius: 8px;
}


/* slick矢印基本スタイル */
.hero-slider .slick-arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

/* 左右の位置調整 */
.hero-slider .slick-prev {
  left: 1rem;  /* またはお好みの位置 */
}

.hero-slider .slick-next {
  right: 1rem; /* またはお好みの位置 */
}

/* ホバーで表示 */
.hero-slider:hover .slick-arrow {
  opacity: 1;
}

/* 矢印の中身（文字） */
.hero-slider .slick-prev::before {
  content: "◀";
  color: #aaaaa9;
  font-size: 24px;
  opacity: 1 !important;
  font-family: inherit;  /* slickのアイコンフォントを無効化 */
}

.hero-slider .slick-next::before {
  content: "▶";
  color: #8d8c8c78;
  font-size: 24px;
  opacity: 1 !important;
  font-family: inherit;
}



/* --- M's STORY 全体ラッパー --- */
.ms-story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f8f5f2; /* 上品なグレージュ */
  color: #3b2d1f; /* 深めブラウン */
}

/* --- M's STORY 導入セクション --- */
.m-intro {
  max-width: 900px;
  margin: 10px auto 30px;
  text-align: center;
}

.m-intro h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #2e261b;
  position: relative;
}

.m-intro h1::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #b88c00;
  display: block;
  margin: 12px auto 0;
}

.m-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a3b1c;
  margin-bottom: 20px;
}

/* --- 各Mセクション --- */
.m-item {
  padding: 60px 0;
  border-bottom: 1px solid #ddd;
}

.m-item:nth-child(even) {
  background-color: #f3efe9; /* 交互で淡い色 */
}

.m-block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.m-block.reverse {
  flex-direction: row-reverse;
}

/* --- 画像部分 --- */
.m-image {
  flex: 1 1 45%;
}

.m-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* --- テキスト部分 --- */
.m-text {
  flex: 1 1 50%;
  font-size: 1rem;
  line-height: 1.8;
  color: #3b2d1f;
}

.m-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #2a1e10;
  font-weight: 600;
}

.m-text p {
  white-space: pre-line;
  color: #4f3d28;
}

/* --- サマリーセクション --- */
.m-summary {
  text-align: center;
  padding: 80px 20px;
  background: #f1e8d8;
}

.m-summary h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2f2619;
}

.m-summary p {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
  color: #4a3b1c;
}

/* --- CTAボタン --- */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #a07e00;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #856800;
}

@media screen and (max-width: 768px) {
  .m-block {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .m-image, .m-text {
    flex: 1 1 100%;
  }
  .m-text h2 {
    font-size: 1.6rem;
  }
  .m-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .m-intro {
    padding: 0 15px;
  }
  .m-intro h1 {
    font-size: 2rem;
  }
  .m-summary {
    padding: 60px 15px;
  }
  .m-summary h2 {
    font-size: 1.6rem;
  }
  .m-summary p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}
@media screen and (max-width: 768px) {
  /* チェックボックス自体は非表示 */
  .menu-toggle {
    display: none;
  }

  /* ハンバーガーアイコン */
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger-menu span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* ナビゲーションとアクションの初期状態 */
  .global-nav,
  .header-actions {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 1.5em 0;
    z-index: 1000;
  }

  /* チェックボックスがONのときに表示 */
  .menu-toggle:checked ~ .global-nav,
  .menu-toggle:checked ~ .header-actions {
    display: flex;
  }

  .header-container {
    position: relative;
  }
}
