/* ====== Design Tokens ====== */
:root{
  --pink:#9C1D52;
  --green:#004035;
  --black:#333333;
  --bg:#ffffff;
  --radius:18px;
}

*{box-sizing:border-box;}
html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 100px;
}
body{
  margin:0;
  font-family:'Figtree',system-ui,sans-serif;
  color:var(--black);
  background:var(--bg);
  padding-top: 93px;
}

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

/* =========================
   Layout Container
========================= */

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Header Base
========================= */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #9c1d52;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  overflow: visible;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
}

/* =========================
   Logo
========================= */

.header-logo {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
  flex-shrink: 0;
}

.header-logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}

/* PCロゴ（初期表示） */
.logo-pc {
  display: block;         
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* SPロゴ（初期は必ず非表示） */
.logo-sp {
  display: none !important; 
  width: 33px;
}

/* =========================
   Navigation (PC)
========================= */

.header-nav {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav a {
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}

/* Mobile Navigation Bar */
.header-nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1001;
  padding: 10px 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.header-nav-mobile a {
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  padding: 4px 0;
}

/* =========================
   Actions
========================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* =========================
   Search-検索メニュー-
========================= */

.search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--pink);
  font-size: 18px;
}

.search-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(67%) saturate(2000%) hue-rotate(310deg) brightness(0.6) contrast(1.2);
}

/* ===== Search Modal ===== */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.search-modal.active {
  display: block;
}

.search-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}

.search-panel {
  position: relative;
  background: #fff;
  width: 90%;
  max-height: 60vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 44px;
  margin: auto;
  top: 26%;
  transform: translateY(-50%);
}

/* Header */
.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-header h2 {
  font-size: 20px;
  margin: 0;
}

.search-close {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Body */
.search-body {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.filter-group h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  cursor: pointer;
}

/* Footer */
.search-footer {
  margin-top: 24px;
  text-align: center;
}

.search-footer-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.search-apply {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #7D1649;
  background: #7D1649;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.search-back-to-list {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #7D1649;
  background: transparent;
  color: #7D1649;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: all 0.2s ease;
}

.search-back-to-list:hover {
  background: #7D1649;
  color: #fff;
}

/* Search results page */
.search-result-count {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.no-results {
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-size: 16px;
}

/* =========================
   Search layout
   Mobile first
========================= */

/* モバイル：縦並び */
.search-body {
  display: block;
}

/* filter group */
.filter-group {
  margin-bottom: 32px;
}

.filter-group h3 {
  margin-bottom: 12px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
}

/* =========================
   PC layout（4カラム）
========================= */
@media (min-width: 1024px) {
  .search-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ★ 4カラム */
    column-gap: 48px;
  }

  .filter-group {
    margin-bottom: 0; /* 横並びなので不要 */
  }
}

/* =========================
   Mobile modal behavior
========================= */
@media (max-width: 768px) {
  .search-panel {
    width: 100%;
    height: calc(100vh - 80px); /* CTAボタンの高さ分を引く */
    border-radius: 16px 16px 0 0;
    top: auto;
    bottom: 0;
    transform: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(100vh - 80px); /* CTAボタンの高さ分を引く */
    margin-bottom: 0;
  }
  
  .search-header {
    padding: 20px;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
  }
  
  .search-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0px 12px;
    padding-left: 16px;
    padding-right: 16px;
    flex: 1;
    overflow-y: auto;
    overflow-x: visible;
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 0;
    box-sizing: border-box;
  }
  
  .filter-group {
    margin-bottom: 0; /* gapで管理 */
    min-width: 0; /* テキストが切れないように */
    overflow: visible; /* テキストが切れないように */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .filter-group h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: normal; /* タイトルも折り返し可能に */
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    width: 100%;
  }
  
  .filter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 13px;
    white-space: normal; /* テキストを折り返し可能に */
    word-wrap: break-word; /* 長い単語も折り返し */
    overflow-wrap: break-word; /* 長い単語も折り返し */
    min-width: 0; /* テキストが切れないように */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    line-height: 1.4;
  }
  
  .filter-group label input[type="checkbox"] {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .search-footer {
    padding: 20px 20px 60px; /* 下部のpaddingを60pxに増やす */
    flex-shrink: 0;
    border-top: 1px solid #eee;
    background: #fff;
    position: relative; /* stickyからrelativeに変更 */
    margin-bottom: 0;
    z-index: 1;
  }
  
  .search-footer-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .search-apply,
  .search-back-to-list {
    width: 100%;
    max-width: 300px;
  }
}



/* =========================
   Request Samples
========================= */

.sample-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px; /* 左に余白を多め */
  border-radius: 999px;
  background: linear-gradient(135deg, #9C1D52, #004035);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.sample-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* アイコン */
.sample-icon img {
  width: 16px;
  height: 16px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  object-fit: contain;
}

/* hover */
.sample-btn:hover {
  filter: brightness(1.05);
}

/* =========================
   Hamburger
========================= */

.menu-btn {
  display: block; /* PC版でも表示 */
  width: 28px;
  height: 20px;
  min-width: 28px;
  min-height: 20px;
  max-width: 28px;
  max-height: 20px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #004035;
  margin: 5px 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================
   Mobile Menu
========================= */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
}

/* PC版でのメニューパネル幅の調整 */
@media (min-width: 769px) {
  .mobile-menu-panel {
    width: 360px;
    max-width: 40%;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-tour {
  padding: 16px 12px 16px;
}

.mobile-tour-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid #9c1d52;
  color: #9c1d52;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-tour-btn:hover {
  background: #9c1d52;
  color: #fff;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  background-color: #f8f8f8;
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

.mobile-menu-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* 下部ボタン（Contact / Company） */
.mobile-menu-bottom {
  display: flex;
  gap: 5px;
  padding: 0 14px 32px;
}

.mobile-menu-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 50px;
  background: #004035;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.mobile-menu-bottom-btn:hover,
.mobile-menu-bottom-btn:active {
  opacity: 0.85;
}

.mobile-menu-bottom-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* =========================
   SP
========================= */

@media (max-width: 768px) {
  body {
    padding-top: 120px; /* ヘッダー(68px) + モバイルナビ(52px) */
  }

  .header-inner {
    padding: 12px 16px;
  }
  
  .header-logo {
    padding-left: 0;
    margin-left: 0;
  }

  /* ロゴ切り替え */
  .logo-pc {
    display: none !important;
  }

  .logo-sp {
    display: block !important;
    width: 33px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* Hide PC nav */
  .header-nav {
    display: none;
  }

  /* Show mobile nav */
  .header-nav-mobile {
    display: flex;
    justify-content: center;
  }
  
  /* #listセクションのパディング調整（375pxと同じ） */
  #list.section {
    padding: 24px 0px 0px;
  }
  
  /* list-header（375pxと同じ） */
  #list .list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
  }
  
  #list .list-header .section__title {
    font-size: 20px;
    margin-bottom: 0;
  }
  
  #list .list-header .search-btn {
    font-size: 16px;
  }
  
  #list .list-header .search-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(67%) saturate(2000%) hue-rotate(310deg) brightness(0.6) contrast(1.2);
  }
  
  /* リストページの検索ボタンでは「search」テキストを表示 */
  #list .list-header .search-btn .search-text {
    display: inline;
  }
  
  /* カテゴリセクション（375pxと同じ） */
  #list .category-section {
    margin-bottom: 32px;
    padding: 0;
  }
  
  /* カテゴリタイトル（375pxと同じ） */
  #list .category-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid #9C1D52;
    text-align: left;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  #list .category-title .category-count {
    font-size: 14px;
  }
  
  /* 商品グリッド（375pxと同じ） */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 4px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 40px;
  }
  
  #list .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 20px;
    padding: 0 4px;
    max-width: 100%;
  }
  
  /* 商品カード（375pxと同じ） */
  .catalog-card {
    padding: 6px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  #list .catalog-card {
    padding: 6px;
    border-radius: 10px;
  }
  
  /* カタログヘッダー（375pxと同じ） */
  #list .catalog-header {
    margin-bottom: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }
  
  /* 商品名（375pxと同じ） */
  #list .catalog-name {
    font-size: 10px;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    flex-shrink: 1;
  }
  
  /* カタログノート（375pxと同じ） */
  #list .catalog-note {
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    text-align: left;
  }
  
  /* 商品画像（375pxと同じ） */
  .catalog-img {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
  }
  
  #list .catalog-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 6px;
  }
  
  #list .catalog-img.slider {
    min-height: 0;
  }
  
  #list .slider-track {
    height: 100%;
  }
  
  #list .slider-track img {
    height: 100%;
    object-fit: cover;
  }
  
  /* カテゴリセクション（375pxと同じ） */
  .category-section {
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* コンテナの幅調整 */
  .container {
    max-width: 100%;
    padding: 0 0px;
    box-sizing: border-box;
  }

  /* Hero section - Add side padding for mobile */
  .hero {
    padding: 0 12px;
    box-sizing: border-box;
  }

  /* FV Slider - Adjust for mobile with margins */
  .hero-slider {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }

  /* Larger image size for mobile - show only one slide */
  .hero-slide {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
    box-sizing: border-box;
  }

  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
  }

  /* Ensure Swiper container takes full width */
  .hero-slider .hero-swiper {
    width: 100%;
  }

  /* Adjust arrow buttons position for mobile - 1/3 hidden */
  .hero-slider .swiper-button-prev {
    left: -19px; /* 56px * 1/3 ≈ 19px */
  }

  .hero-slider .swiper-button-next {
    right: -19px; /* 56px * 1/3 ≈ 19px */
  }

  /* Hide search text */
  .search-text {
    display: none;
  }

  /* Compact Request button */
  .sample-btn {
    padding: 6px 14px 6px 6px;
    font-size: 12px;
  }

  .sample-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .sample-icon img {
    width: 18px;
    height: 18px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
  }

  /* モバイル版では既に表示されているので変更不要 */
}



.hero{
  text-align:center;
}

.hero__title-wrapper {
  background-image: url('../assets/fv.png');
  background-image: image-set(
    url('../assets/fv.webp') type('image/webp'),
    url('../assets/fv.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 190px 20px;
  margin-bottom: 30px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero__title{
  font-size:clamp(42px,6vw,54px);
  font-family: 'Antonio', sans-serif;
  letter-spacing:.02em;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  position: relative;
}

@media (max-width: 768px) {
  .hero__title-wrapper {
    padding: 120px 0;
  }
}

.hero-slider {
  width: 100vw;
  overflow: hidden;
  margin-bottom: 60px;
}


/* =========================
   Swiper Arrow Buttons
   ========================= */

/* 矢印共通 */
.swiper-button-prev,
.swiper-button-next {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;

  top: 50%;
  transform: translateY(-50%);
}

/* 枠から半分はみ出す配置 */
.swiper-button-prev {
  left: -14px; /* 56px / 2 */
}

.swiper-button-next {
  right: -14px;
}

/* 矢印アイコン（Swiper標準） */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
  color: #9C1D52; /* 指定ピンク */
}

/* hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-50%) scale(1.05);
  transition: transform 0.2s ease;
}


/* =========================
   Swiper Base
   ========================= */

.hero-swiper {
  width: 100%;
  padding-bottom: 40px; /* pagination 分 */
  overflow: visible; /* ← 矢印はみ出し許可 */
}


/* =========================
   Slide
   ========================= */

/* PC：375px */
.hero-slide {
  width: 375px !important;
  height: 375px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-slide img {
  width: 375px;
  height: 375px;
  object-fit: cover;
  display: block;
}

/* ドット */
.swiper-pagination-bullet {
  background: #9C1D52;
  opacity: .3;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}


.placeholder{
  background:#f3f3f3;
  display:grid;
  place-items:center;
  color:#aaa;
  font-weight:600;
}

.section {
  padding: 50px 0px;
}

.section__title{
  text-align:center;
  font-size:28px;
  margin-bottom:32px;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0px;
    margin: 0px 8px;
  }
  /* 入れ子になっている .section は margin を打ち消す */
  .section .section {
    margin: 0;
  }
}

/* =========================
   Grade Section
========================= */


/* SP */
@media (max-width: 768px) {
  .grade-section {
    padding: 20px 0;
    overflow: visible;
  }

  .grade-grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}


/* Grade Comparison: 幅広コンテナ */
.container--grade {
  max-width: 1400px;
}

@media (max-width: 768px) {
  .container--grade {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
}

/* Grade Comparison heading */
.grade-heading {
  text-align: center;
  margin-bottom: 40px;
}

.grade-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #000;
}

.grade-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Grid */
.grade-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Card */
.grade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  max-width: 458px;
  cursor: pointer;
}

@media (hover: hover) {
  .grade-card:hover .grade-card__img-wrap {
    transform: scale(1.04);
  }
}

.grade-card:active .grade-card__img-wrap {
  transform: scale(1.01);
  transition-duration: 0.1s;
}

/* Label (emoji + name) */
.grade-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.grade-card__emoji {
  font-size: 34px;
  line-height: 1;
}

.grade-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #262626;
  margin: 0;
  line-height: 1.2;
}

/* Image */
.grade-card__img-wrap {
  display: grid;
  grid-template-areas: 'stack';
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.35s ease;
}

.grade-card__img {
  grid-area: stack;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.grade-card__img--2 {
  opacity: 0;
}

/* デスクトップ：ホバーで切り替え（カードごとに独立） */
@media (hover: hover) {
  .grade-card:hover .grade-card__img--1 {
    opacity: 0;
  }
  .grade-card:hover .grade-card__img--2 {
    opacity: 1;
  }
}

/* モバイル：JS で .is-alt クラスを付与して切り替え */
.grade-card__img-wrap.is-alt .grade-card__img--1 {
  opacity: 0;
}
.grade-card__img-wrap.is-alt .grade-card__img--2 {
  opacity: 1;
}

/* SP */
@media (max-width: 768px) {
  .grade-title {
    font-size: 26px;
  }

  .grade-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 28px 16px 36px;
  }
  .grade-grid::-webkit-scrollbar { display: none; }

  .grade-card {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
  }

}


/* =========================
   Top Matcha Ranking
========================= */

/* ===== title ===== */

.top-section {
  padding-top: 0;
  padding-bottom: 60px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Matcha List ヘッダー */
#list .list-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

#list .list-header .section__title {
  margin-bottom: 0;
}

#list .list-header .search-btn {
  font-size: 18px;
}

/* リストページの検索ボタンでは「search」テキストを表示（PC版） */
#list .list-header .search-btn .search-text {
  display: inline;
}

/* =========================
   Product Filter (Inline)
========================= */

.product-filter {
  border: 1px solid #7e7e7e;
  border-radius: 20px;
  padding: 40px 24px;
  background: #fff;
  margin-bottom: 38px;
}

.product-filter__body {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: center;
}

.product-filter__group {
  min-width: 100px;
}

.product-filter__group h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: #000;
}

.product-filter__group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.product-filter__group label input[type="checkbox"] {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #7c1649;
}

.product-filter__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
}


.product-filter__all {
  padding: 9px 22px;
  height: 37px;
  border-radius: 999px;
  border: 3px solid #7c1649;
  background: #fff;
  color: #7c1649;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.product-filter__all:hover {
  background: #7c1649;
  color: #fff;
}

.product-filter__apply {
  padding: 9px 26px;
  height: 46px;
  border-radius: 999px;
  background: #9c1d53;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-filter__apply:hover {
  background: #7c1649;
}

.product-filter__clear {
  flex-basis: 100%;
  text-align: center;
  background: none;
  border: none;
  color: #272727;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.product-filter__clear:hover {
  color: #555;
}

@media (min-width: 1024px) {
  .product-filter {
    padding: 50px 16px;
  }

  .product-filter__body {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    column-gap: clamp(24px, 8vw, 90px);
  }
}

@media (max-width: 768px) {
  .product-filter {
    padding: 12px 16px;
    border-radius: 14px;
    margin: 30px 0px;
  }

  .product-filter__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 16px;
    justify-content: unset;
  }

  .product-filter__group label {
    font-size: 13px;
    white-space: normal;
  }

  .product-filter__footer {
    flex-direction: row;
    gap: 12px;
    margin-top: 24px;
  }

  .product-filter__all,
  .product-filter__apply {
    width: 40%;
    max-width: 280px;
    height: 48px;
  }
}

/* ===== scroll ===== */

.top-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.top-scroll::-webkit-scrollbar {
  display: none;
}

/* ===== Card ===== */

.top-card {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.top-image-wrap {
  position: relative;
  overflow: visible;
}

.product-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: block;
}

/* ===== crown svg ===== */

.ranking-crown-wrap {
  position: absolute;
  top: -36px;                 /* ← ここが重要 */
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  z-index: 10;
  pointer-events: none;
}

.top-card:nth-child(1) .ranking-crown-wrap {
  content: url("../assets/ranking-no1.svg");
}
.top-card:nth-child(2) .ranking-crown-wrap {
  content: url("../assets/ranking-no2.svg");
}
.top-card:nth-child(3) .ranking-crown-wrap {
  content: url("../assets/ranking-no3.svg");
}
.top-card:nth-child(4) .ranking-crown-wrap {
  content: url("../assets/ranking-no4.svg");
}
.top-card:nth-child(5) .ranking-crown-wrap {
  content: url("../assets/ranking-no5.svg");
}

/* ===== ranking追加 ===== */

.top-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  padding-top: 20px;
}

.ranking-crown-wrap {
  position: absolute;
  top: -24px;               
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 20;
  pointer-events: none;
}

.ranking-crown-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}


/* ===== text ===== */

.top-card p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ===== scroll ===== */

.scroll-indicator {
  margin-top: 24px;
}

.scroll-track {
  width: 100%;
  height: 4px;
  background: #e6e6e6;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  height: 100%;
  width: 40px;
  background: #999;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition: transform 0.05s linear;
}

/* ===== SP ===== */

@media (max-width: 768px) {
  .top-section {
    padding: 40px 20px 0;
  }

  .product-image {
    width: 220px;
    height: 220px;
  }

  .ranking-crown-wrap {
    top: -30px;
    width: 40px;
  }
}


/* =========================
   Card
========================= */

.top-card {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
  overflow: visible;
}

/* =========================
   Image + Crown
========================= */

.top-image-wrap {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 商品画像 */
.product-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: block;
}



/* =========================
   Text
========================= */

.top-card p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* =========================
   Scroll Indicator
========================= */

.scroll-indicator {
  margin-top: 12px;
}

.scroll-track {
  width: 100%;
  height: 3px;
  background: #e5e5e5;
  position: relative;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 30%;
  background: #999;
}

/* ===== SP ===== */

@media (max-width: 768px) {
  .top-section {
    padding: 40px 20px 0;
  }

  .ranking-crown-wrap {
    width: 28px;
    height: 28px;
    top: -14px;
  }
}


/* =========================
   商品リスト
========================= */

.category-section {
  margin-bottom: 60px;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #9C1D52;
  text-align: left;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.category-title .category-name {
  flex-shrink: 0;
}

.category-title .category-count {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
}

.catalog-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width:1200px;
  margin:0 auto 40px;
  padding: 0 20px;
  min-height: 50px; /* 最小高さを確保 */
}

.catalog-card{
  border:1px solid #eee;
  border-radius:var(--radius);
  padding: 16px;
  width: 100%;
  box-sizing: border-box; /* paddingを含めた幅計算 */
  overflow: hidden; /* はみ出しを防ぐ */
}

.catalog-header {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%; /* 親要素の幅を超えないように */
  box-sizing: border-box;
  overflow: hidden; /* はみ出しを防ぐ */
}

.catalog-name{
  font-size: 14px;
  margin-top: 4px; /* タイトルの上に4pxのマージンを追加 */
  margin-bottom: 0; /* タイトル下のマージンを0に */
  line-height: 1.2;
  width: 100%;
  max-width: 100%; /* 親要素の幅を超えないように */
  min-width: 0; /* flexboxの子要素が親の幅を超えないように */
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* 長い単語も折り返す */
  flex-shrink: 1; /* 縮小可能にする */
}

.catalog-note {
  font-size: 12px;
  color: #666;
  margin-top: 4px; /* フレーバーメーターとの間隔を4pxに */
  margin-bottom: 0;
  line-height: 1.4;
  width: 100%;
  max-width: 100%; /* 親要素の幅を超えないように */
  min-width: 0; /* flexboxの子要素が親の幅を超えないように */
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* 長い単語も折り返す */
  text-align: left; /* 左寄せ */
}

.catalog-img{
  height: 230px;
  width: 230px;
  max-width: 100%;
  border-radius:12px;
  margin-bottom:12px;
  margin-left: auto;
  margin-right: auto;
}

.grade{
  color:var(--pink);
  font-weight:600;
  font-size: 16px;
  text-align: left;
}

.catalog-meta {
  padding-left: 18px;       /* ← 黒ポチ分の余白だけ残す */
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: left;        /* ← 明示的に左寄せ */
}

.catalog-meta li {
  list-style: disc;        /* ← 黒ポチを表示 */
  margin-bottom: 0px;
  font-weight: 600;
}

/* =========================
   Catalog Image Swipe Slider
========================= */

.catalog-img.slider {
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
}

/* 横並び画像 */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

/* 各画像 */
.slider-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: contain;
}

/* ドット */
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
}

.slider-dots .dot.active {
  background: var(--pink);
}

/* =========================
   Flavor Meter
========================= */

.flavor-meter {
  margin-top: 12px;
  background-color: #fafafa;
  padding: 11px 4px;
  border-radius: 7px;
}

.flavor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.flavor-label {
  font-size: 13px;
  font-weight: 300;
  color: #111;
  min-width: 90px;   /* ← ラベル揃えの肝 */
  text-align: right;
}

.flavor-icons {
  display: flex;
  gap: 3px;
}

.flavor-icons img {
  width: 22px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  /* チャートサイズを375pxに合わせる */
  .flavor-icons img {
    width: 12px;
  }
  .flavor-icons {
    display: flex;
    gap: 1px;
  }
  
  /* フレーバーメーターのパディング調整 */
  .flavor-meter {
    margin-top: 6px;
    padding: 10px 4px;
    border-radius: 4px;
  }
  
  .flavor-row {
    gap: 4px;
    margin-bottom: 3px;
  }
  
  .flavor-row:last-child {
    margin-bottom: 0;
  }
  
  .flavor-label {
    font-size: 10px;
    min-width: 52px;
  }
  
  /* グレードのfont-sizeを375pxに合わせる */
  .grade {
    font-size: 10px;
    margin-bottom: 4px;
  }
  
  #list .grade {
    font-size: 10px;
    margin-bottom: 4px;
  }
  
  .catalog-meta {
    font-size: 10px;
    padding-left: 14px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  #list .catalog-meta {
    font-size: 10px;
    padding-left: 14px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  /* #list内のフレーバーメーター設定（375pxと同じ） */
  #list .flavor-meter {
    margin-top: 6px;
    padding: 10px 4px;
    border-radius: 4px;
  }
  
  #list .flavor-row {
    gap: 4px;
    margin-bottom: 3px;
  }
  
  #list .flavor-row:last-child {
    margin-bottom: 0;
  }
  
  #list .flavor-label {
    font-size: 10px;
    min-width: 52px;
  }
  
  #list .flavor-icons {
    gap: 1px;
  }
  
  #list .flavor-icons img {
    width: 12px;
    height: auto;
  }
}


/* =========================
   Tablet (iPad Air/Pro)
========================= */

@media (min-width: 769px) and (max-width: 1024px) {
  /* ボディのパディング調整（ヘッダー + モバイルナビ） */
  body {
    padding-top: 120px;
  }
  
  /* コンテナとセクションの余白 */
  .container {
    padding: 0 40px;
  }
  
  .section {
    padding: 10px 0px;
  }
  
  #list.section {
    padding: 60px 0px;
  }
  
  .top-section {
    padding: 60px 40px 0;
  }
  
  /* ヘッダー */
  .header-inner {
    padding: 14px 40px;
  }
  
  /* モバイルナビゲーションバーを表示 */
  .header-nav-mobile {
    display: flex;
    top: 68px;
    padding: 12px 40px;
    justify-content: center;
  }
  
  /* PCナビゲーションを非表示 */
  .header-nav {
    display: none;
  }
  
  /* 商品グリッド */
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0 auto 40px;
  }
  
  /* カテゴリセクション */
  .category-section {
    margin-bottom: 50px;
  }
  
  .category-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .category-title .category-count {
    font-size: 15px;
  }
  
  /* 商品カード */
  .catalog-card {
    padding: 14px;
  }
  
  .catalog-img {
    height: 200px;
    width: 200px;
    max-width: 100%;
  }
  
  .catalog-name {
    font-size: 13px;
  }
  
  /* TOPセレクション */
  .top-scroll {
    gap: 24px;
    padding-bottom: 20px;
  }
  
  .top-card {
    width: 220px;
  }
  
  .product-image {
    width: 220px;
    height: 220px;
  }
  
  .top-image-wrap {
    width: 220px;
    height: 220px;
  }
  
  /* グレードセクション */
  .grade-section {
    padding: 40px 40px;
  }
  
  /* セクションタイトル */
  .section__title {
    font-size: 32px;
    margin-bottom: 36px;
  }
  
  #list .list-header {

    margin-bottom: 28px;
  }
  
  #list .list-header .section__title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  #list.section {
    padding: 24px 0 0;
  }
  .section__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
  }
}


/* =========================
   CTA
========================= */

.cta-btn {
  display: block;
  margin: 0 auto;
  padding: 22px 20px;
  border-radius: 999px;
  border: none;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  width: 17%;
}

/* モバイル版のCTAボタン */
@media (max-width: 768px) {
  .cta-btn {
    width: auto;
    min-width: 100px;
    max-width: 60%;
    padding: 16px 24px;
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* =========================
   Number Image Grid
========================= */

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

.number-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 高さを安定させたい場合（不要なら削除OK） */
  overflow: hidden;
}

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

/* 中央の数字 */
.number-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 800;
  line-height: 1;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .number-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}





/* =========================
   movieコンテンツ
========================= */

.movie {
  padding-top: 0;
}

.section--no-pt {
  padding-top: 0;
}

.movie-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:100%;
  margin:0 auto;
}
.movie-box{
  position:relative;
  width:100%;
  padding-bottom:56.25%; /* 16:9のアスペクト比（動画のアスペクト比に合わせて調整可能） */
  border-radius:var(--radius);
  overflow:hidden;
  background:#000;
}

.movie-box video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover; /* 黒い縁をなくすためにcoverを使用 */
  display:block;
}

/* =========================
   Global Markets（実績マップ）
========================= */

.global-markets .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.global-markets__lead {
  margin: 6px 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
}

.global-markets__map-container {
  width: 100%;
  max-width: 1100px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.global-markets__svg {
  width: 100%;
  height: auto;
  display: block;
}

.global-markets__country {
  fill: #d2d2d2;
  stroke: #fff;
  stroke-width: 0.5;
  transition: fill 0.3s ease;
}

.global-markets__country.global-markets__country--highlighted {
  fill: #004035;
}

.global-markets__country.global-markets__country--highlighted:hover {
  fill: #9C1D52;
  cursor: pointer;
}

.global-markets__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.global-markets__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #555;
}

.global-markets__dot {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  flex-shrink: 0;
}

.global-markets__dot--green { background: #004035; }
.global-markets__dot--gray  { background: #d2d2d2; border: 1px solid #bbb; }

.global-markets__count-pill {
  background: #9C1D52;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
}

.global-markets__tooltip {
  position: fixed;
  background: #9C1D52;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap;
  z-index: 100;
}

@media (max-width: 480px) {
  .global-markets__map-container { border-radius: 4px; }
  .global-markets__footer { gap: 14px; margin-top: 10px; }
}

/* ---- FV variant ---- */
.global-markets--fv {
  background: #fff;
  padding: 0;
  overflow: hidden;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.global-markets--fv > .container:first-child {
  padding-top: 36px;
  padding-bottom: 12px;
  flex-shrink: 0;
}

.global-markets--fv > .container:last-child {
  padding-top: 10px;
  padding-bottom: 24px;
  flex-shrink: 0;
}

.global-markets__fv-title {
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: #0d1a16;
  margin: 0 0 6px;
  line-height: 1.1;
}

.global-markets--fv .global-markets__lead {
  font-size: 12px;
  margin: 0 0 12px;
}

.global-markets--fv .global-markets__map-container {
  width: 97%;
  max-width: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #fff;
  overflow: hidden;
  margin: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.global-markets__svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  max-width: 100%;
  max-height: calc(80vh - 160px);
}

.global-markets--fv .global-markets__footer {
  margin-top: 10px;
}

.global-markets--fv .global-markets__count-pill {
  font-size: 14px;
  padding: 4px 14px;
}

@media (max-width: 768px) {
  .global-markets--fv {
    max-height: 80vh;
    padding: 0;
  }
  .global-markets--fv > .container:first-child {
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .global-markets--fv > .container:last-child {
    padding-top: 8px;
    padding-bottom: 16px;
  }
  .global-markets--fv .global-markets__lead {
    margin-bottom: 8px;
  }
  .global-markets--fv .global-markets__count-pill {
    font-size: 13px;
    padding: 4px 12px;
  }
  .global-markets--fv .global-markets__map-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    width: 100%;
  }
  .global-markets__svg {
    width: 180% !important;
    max-height: none;
    height: auto !important;
  }
  .global-markets--fv .global-markets__map-container::after {
    content: none;
  }
}

/* =========================
   口コミ
========================= */

/* ===== Testimonials ===== */

.testimonials {
  overflow-x: auto;
  padding: 20px 0;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px; /* ← 1カードの幅 */
  gap: 20px;
  padding: 0 0px 20px;
}

/* カード */
.testimonial-card {
  background: #fff;
  text-align: left;
}

/* アイコン（丸） */
.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* 名前 */
.testimonial-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* 国 */
.testimonial-card .country {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

/* コメント */
.testimonial-card .comment {
  font-size: 14px;
  line-height: 1.6;
}

/* ── Item Purchased / Sampled ─────────────── */
.review-items {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.review-items-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 8px;
}

.review-items-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f4f7f4;
  border: 1px solid #c8dbc9;
  font-size: 12px;
  font-weight: 600;
  color: #2a5c38;
  line-height: 1;
  white-space: nowrap;
}

.review-tag-code {
  font-size: 10px;
  font-weight: 400;
  color: #6a9e74;
  opacity: 0.9;
}

/* スクロールバーを目立たせない（任意） */
.testimonials::-webkit-scrollbar {
  height: 6px;
}
.testimonials::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 999px;
}

.testimonial-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}


/* =========================
   contact
========================= */

.contact {
  scroll-margin-top: 100px;
  background: linear-gradient(135deg, #9C1D52, #004035);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* =========================
   Contact Actions
========================= */

.contact-actions{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-top:32px;
  flex-wrap: wrap;
}

/* 共通ボタン */
.contact-btn{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 36px 14px 18px;
  border-radius:999px;
  border:2px solid #fff;
  background:transparent;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 280px;   /* ← ここが肝 */
  justify-content: center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* アイコン丸 */
.contact-btn .icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.contact-btn .icon img{
  width:18px;
  height:18px;
}

/* サンプルボタンのアイコンだけ大きく */
.contact-btn--sample .icon img {
  width: 28px;
  height: 28px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

/* PRIMARY（左：CONTACT） */
.contact-btn.primary{
  background:#fff;
  color:#7D1649;
  border-color:#fff;
}

.contact-btn.primary .icon{
  background:#7D1649;
}

.contact-btn.primary .icon img{
  filter: brightness(0) invert(1);
}

/* hover */
.contact-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* SP */
@media (max-width: 768px) {
  .contact-actions{
    flex-direction: column;
    align-items: center;
  }
}


/* =========================
   Footer
========================= */

.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 60px 40px 40px;
  background: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 54px;
  justify-items: start;
}

/* ロゴ */
.footer-logo {
  width: 230px;
  height: auto;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 14px;
  color: #9c1d52;
  font-weight: 600;
}

/* リンク */
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 90px;
  align-items: start;
  justify-content: start;
}

.footer-list {
  list-style: disc;
  padding-left: 0px;
  list-style: none;
  margin: 0;
}

.footer-list.secondary {
  margin-top: 0;
}

.footer-list li {
  margin-bottom: 20px;
}

.footer-list.primary a {
  font-weight: 700;
}

.footer-list a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  /* フッター全体を縦並び */
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  
  .footer-logo {
    width: 160px;
  }

  /* ロゴ＋住所：中央寄せ */
  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* リンク群：縦並び */
  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin: 24px 0px;
  }

  /* 各リストを縦に */
  .footer-list {
    text-align: left;
    margin: 0px;
  }

  .footer-list li{
    margin-bottom: 10px;

  }

  /* CTAボタン中央 */
  .footer-cta {
    justify-content: center;
  }

  /* SNSアイコン：下段・横並び */
  .footer-sns {
    order: 99;
    justify-content: center;
    gap: 16px;
  }

  .site-footer {
    padding: 24px 12px 40px;
  }
}


@media (min-width: 769px) {
  .footer-cta{
    grid-column: 1 / -1;   /* 3カラム全体の下 */
    grid-row: 2;           /* リストの下段 */
    justify-self: center;  /* 中央寄せ */
    margin-top: 32px;
  }
}


/* CTA */
.footer-cta {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
}

.footer-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  border: 2px solid #9c1d52;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  margin-top: 32px;
}

/* SNS */
.footer-sns {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  gap: 2px;
  grid-column: 3;
  justify-self: end;
}

.footer-sns img {
  width: 38px;
  height: 38px;
}

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

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #9c1d52; /* 既存のワイン系カラーに合わせるなら */
}

.site-copy{
  margin: 24px;
}

/* =========================
   SP
========================= */

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-cta {
    justify-content: center;
  }

  .footer-sns {
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .footer-address {
    text-align: left;
  }
}

/* Responsive - スムーズなレスポンシブ */

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

/* 375px：Matcha List 2カラムで収める */
@media (max-width: 375px) {
  #list .category-title .category-count {
    font-size: 10px;
  }
  #list.section {
    padding: 24px 0px 0px;
  }
  #list .list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
  }
  
  #list .section__title {
    font-size: 20px;
    margin-bottom: 0;
  }
  
  #list .search-btn {
    font-size: 16px;
  }
  
  #list .search-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(67%) saturate(2000%) hue-rotate(310deg) brightness(0.6) contrast(1.2);
  }
  
  /* リストページの検索ボタンでは「search」テキストを表示 */
  #list .search-btn .search-text {
    display: inline;
  }
  #list .category-section {
    margin-bottom: 32px;
    padding: 0;
  }
  
  #list .category-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid #9C1D52;
    text-align: left;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  #list .category-title .category-count {
    font-size: 14px;
  }
  
  #list .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 20px;
    padding: 0 4px;
    max-width: 100%;
  }
  #list .catalog-card {
    padding: 6px;
    border-radius: 10px;
  }
  #list .catalog-header {
    margin-bottom: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }
  
  #list .catalog-name {
    font-size: 10px;
    margin-top: 4px; /* タイトルの上に4pxのマージンを追加 */
    margin-bottom: 0; /* タイトル下のマージンを0に */
    line-height: 1.1;
    width: 100%;
    max-width: 100%; /* 親要素の幅を超えないように */
    min-width: 0; /* flexboxの子要素が親の幅を超えないように */
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; /* 長い単語も折り返す */
    flex-shrink: 1; /* 縮小可能にする */
  }
  
  #list .catalog-note {
    font-size: 12px;
    margin-top: 4px; /* フレーバーメーターとの間隔を4pxに */
    margin-bottom: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%; /* 親要素の幅を超えないように */
    min-width: 0; /* flexboxの子要素が親の幅を超えないように */
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; /* 長い単語も折り返す */
    text-align: left; /* 左寄せ */
  }
  #list .catalog-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    margin-bottom: 6px;
  }
  #list .catalog-img.slider {
    min-height: 0;
  }
  #list .slider-track {
    height: 100%;
  }
  #list .slider-track img {
    height: 100%;
    object-fit: cover;
  }
  #list .slider-dots {
    bottom: 4px;
    gap: 4px;
  }
  #list .slider-dots .dot {
    width: 4px;
    height: 4px;
  }
  #list .grade {
    font-size: 10px;
    margin-bottom: 4px;
  }
  #list .catalog-meta {
    font-size: 10px;
    padding-left: 14px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  #list .flavor-meter {
    margin-top: 6px;
    padding: 10px 4px;
    border-radius: 4px;
  }
  #list .flavor-row {
    gap: 4px;
    margin-bottom: 3px;
  }
  #list .flavor-row:last-child {
    margin-bottom: 0;
  }
  #list .flavor-label {
    font-size: 10px;
    min-width: 52px;
  }
  #list .flavor-icons {
    gap: 1px;
  }
  #list .flavor-icons img {
    width: 12px;
    height: auto;
  }
}

@media (max-width: 600px) {
  /* SP：画像サイズを大きくして1枚だけ表示 */
  .hero-slide {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
    box-sizing: border-box;
  }

  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
  }

  /* Ensure Swiper container takes full width */
  .hero-slider .hero-swiper {
    width: 100%;
  }


  /* SPでは矢印を少し内側へ */
  .swiper-button-prev {
    left: -18px;
  }

  .swiper-button-next {
    right: -18px;
  }
}

/* =========================
   固定追従ボタン
========================= */

.fixed-buttons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.fixed-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.fixed-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.fixed-btn-request {
  background: linear-gradient(135deg, #9C1D52, #004035);
  gap: 0px;
}

.fixed-btn-search {
  background: #9C1D52;
}

.fixed-btn-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.fixed-btn-label {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 20px;
    right: -5px;
    gap: 6px;
  }

  .fixed-btn {
    width: 40px;
    height: 89px;
    padding: 16px 12px;
    border-radius: 12px 0 0 12px;
  }

  .fixed-btn-icon {
    display: none;
  }

  .fixed-btn-request {
    background: #9C1D52;
  }

  .fixed-btn-search {
    background: #fff;
    border: 3px solid #9C1D52;
    border-right: none;
  }

  .fixed-btn-search .fixed-btn-label {
    color: #9C1D52;
  }

  .fixed-btn-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
  }
}

/* ====== Modern Design for Sub Pages ====== */
/* TOPページ以外の全ページに適用するモダンデザイン */

/* =========================
   ヒーローセクション（FV）
========================= */

.fv {
  background: linear-gradient(to right, #9c1d52, #004035);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.fv-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fv-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.fv-lead {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
}

/* =========================
   セクション共通
========================= */

/* TOPページ以外のページのみに適用（コンタクトセクションを除く） */
body:not(.top-page) .section:not(.contact) {
  padding: 80px 20px;
  background: #ffffff;
}

body:not(.top-page) .section:not(.contact):nth-child(even) {
  background: #f8f9fa;
}

/* セクションタイトル */
.company-section-title {
  font-size: clamp(32px, 5vw, 32px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 48px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 1px;
}

.company-section-title::after {
  display: none;
}

/* 下層ページの一般的なh2スタイル（コンタクトセクションを除く） */
body:not(.top-page) main h2,
body:not(.top-page) section:not(.contact) > h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #333333;
  margin: 0 0 0px;
  text-align: center;
  position: relative;
  /* padding-bottom: 20px; */
}

body:not(.top-page) main h2::after,
body:not(.top-page) section:not(.contact) > h2::after {
  display: none;
}

.company-section-title--light {
  color: #ffffff;
}

.company-section-title--light::after {
  display: none;
}

/* =========================
   Company ページ
========================= */

.company-section {
  padding: 80px 20px;
}

.company-about {
  background: #ffffff;
}

.company-certificates {
  background: linear-gradient(135deg, #9C1D52 0%, #004035 100%);
  color: #ffffff;
  padding-left: 0;
  padding-right: 0;
}

.company-certificates .company-container {
  max-width: 100%;
  padding: 0;
}

.company-partners {
  background: #f8f9fa;
}

.company-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About Block */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block--img-right {
  grid-template-columns: 1fr 1fr;
}

.about-block--img-right .about-block-img {
  order: 2;
}

.about-block--img-right .about-block-text {
  order: 1;
}

.about-block-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-block-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-block-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
}

.about-block-text p {
  margin: 0;
}

/* Certificates */
.certificates-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  /* max-width: 1370px; */
  margin: 0 auto;
}

.cert-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Partner Suppliers */
.partners-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.partners-map {
  border-radius: 20px;
  overflow: hidden;
}

.partners-map img {
  width: 100%;
  height: auto;
  display: block;
}

.partners-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
}

.partners-text p {
  margin: 0;
}

/* =========================
   Contact ページ
========================= */

.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
  text-align: center;
}

.required-mark {
  color: #9C1D52;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9C1D52;
  box-shadow: 0 0 0 4px rgba(156, 29, 82, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-group--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

.form-group--checkbox label {
  margin: 0;
  font-size: 14px;
  text-transform: none;
  cursor: pointer;
}

.form-link {
  color: #9C1D52;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: #004035;
}

.form-actions {
  margin-top: 16px;
  text-align: center;
}

.submit-btn {
  padding: 16px 48px;
  background: linear-gradient(135deg, #9C1D52, #004035);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(156, 29, 82, 0.15);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(156, 29, 82, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

/* =========================
   Package ページ
========================= */


.label-shipping-text {
  text-align: center;
  margin-bottom: 60px;
}

.label-shipping-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
  position: static;
  padding-bottom: 0;
}

.label-shipping-text h2::after {
  display: none;
}

.label-shipping-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

.label-shipping-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.package-image-block {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.package-image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.nutrition-facts {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  /* border: 2px solid #e0e0e0; */
  transition: all 0.3s ease;
}

.nutrition-facts:hover {
  border-color: #9C1D52;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Sample Section - 左右反転 */
.sample-section .sample-text {
  order: 2;
}

.sample-section .sample-table {
  order: 1;
}

.nutrition-facts h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px;
  text-align: center;
  position: static;
  padding-bottom: 0;
}

.nutrition-facts h3::after {
  display: none;
}

.nutrition-facts table {
  width: 100%;
  border-collapse: collapse;
}

.nutrition-facts th,
.nutrition-facts td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.nutrition-facts th {
  background: #f8f9fa;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nutrition-facts tr:last-child th,
.nutrition-facts tr:last-child td {
  border-bottom: none;
}

.nutrition-facts tr:hover {
  background: #f8f9fa;
}

/* Label Support */

.label-text {
  text-align: center;
  margin-bottom: 60px;
}

.label-text h2 {
  font-size: clamp(28px, 4vw, 24px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
  position: static;
  padding-bottom: 0;
  text-align: left;
}

.label-text h2::after {
  display: none;
}

.label-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  text-align: left;
}

.label-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.label-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.lang-label {
  font-size: 16px;
  font-weight: 700;
  color: #9C1D52;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.label-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Sample Section */

.sample-text h2 {
  font-size: clamp(28px, 4vw, 24px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
  position: static;
  padding-bottom: 0;
  text-align: left;
}

.sample-text h2::after {
  display: none;
}

.sample-text p {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #666666;
}

.sample-table {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.sample-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.sample-table th,
.sample-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.sample-table thead th {
  background: #9C1D52;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
}

.sample-table tbody tr:hover {
  background: #f8f9fa;
}

.sample-table tbody tr:last-child td {
  border-bottom: none;
}

/* =========================
   レスポンシブ対応
========================= */

@media (max-width: 768px) {
  .fv {
    padding: 60px 16px;
  }

  .fv-title {
    font-size: 22px;
  }
  
  .fv-lead {
    font-size: 14px;
  }

  .section {
    padding: 60px 0px;
  }

  .company-section {
    padding: 60px 20px;
  }

  .company-certificates {
    padding-left: 0;
    padding-right: 0;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .about-block--img-right .about-block-img,
  .about-block--img-right .about-block-text {
    order: unset;
  }

  .certificates-list {
    gap: 7px;
  }

  .cert-item {
    width: 150px;
    padding: 16px;
  }

  .cert-item img {
    margin-bottom: 12px;
  }
  
  .cert-label {
    font-size: 13px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-container {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .label-shipping-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .label-images {
    grid-template-columns: 1fr;
  }

  .sample-table {
    padding: 20px;
  }
}

/* ====== Certifications Section ====== */
.certifications {
  background: linear-gradient(135deg, #9C1D52, #004035);
  padding: 40px 0;
  overflow: hidden;
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cert-heading {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 28px;
}

.certifications-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px 8px;
}
.certifications-container::-webkit-scrollbar {
  display: none;
}

.cert-item {
  flex: 0 0 auto;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cert-badge {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.cert-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .certifications {
    padding: 36px 0 32px;
  }

  .certifications-container {
    justify-content: flex-start;
    padding: 0 16px 8px;
  }

  .cert-item {
    width: 120px;
    padding: 16px 10px;
    gap: 6px;
  }

  .cert-badge {
    width: 56px;
    height: 56px;
  }

  .cert-name {
    font-size: 11px;
  }
}

/* =========================
   #list 商品カード（Figmaリデザイン）
   既存スタイルを上書き
========================= */

#list .catalog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1280px;
  padding: 0;
}

#list .catalog-card {
  border: none;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 94px rgba(135, 135, 135, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---- ヘッダー ---- */
#list .catalog-header {
  background: #004036;
  padding: 14px 26px;
  margin-bottom: 0;
  width: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  position: relative;
  overflow: visible;
}

.catalog-toppick-badge {
  position: absolute;
  right: 12px;
  bottom: -12px;
  z-index: 2;
  line-height: 0;
}

.catalog-toppick-badge img {
  width: 66px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .catalog-toppick-badge img {
    width: 56px;
  }
}

#list .catalog-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---- 画像エリア（2枚横並び） ---- */
#list .catalog-images {
  display: flex;
  width: 100%;
  aspect-ratio: 2 / 1;
}

#list .catalog-img-wrap {
  flex: 0 0 50%;
  overflow: hidden;
}

#list .catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- 情報エリア ---- */
#list .catalog-info {
  background: #f9f9f9;
  border-radius: 0 0 20px 20px;
  padding: 14px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#list .catalog-info-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}

#list .catalog-grade-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 60px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

#list .catalog-season {
  color: #375710;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.catalog-season-leaf {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

#list .catalog-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 12px;
}

/* ---- メトリクス行（Bitterness / Origin）---- */
#list .catalog-metric-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

#list .catalog-metric-label {
  font-size: 14px;
  font-weight: 700;
  color: #757575;
  min-width: 76px;
  flex-shrink: 0;
}

#list .catalog-metric-value {
  font-size: 14px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 0.02em;
  word-break: break-word;
}

/* ---- Bitternessバー ---- */
#list .catalog-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

#list .catalog-bar-track {
  flex: 1;
  height: 8px;
  background: #e6e6e6;
  border-radius: 30px;
  overflow: hidden;
}

#list .catalog-bar-fill {
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(to right, #316e42, #88c989);
  min-width: 0;
}

#list .catalog-bar-score {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  min-width: 16px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- 証明書バッジ ---- */
#list .catalog-certs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

#list .catalog-cert-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #c8922b;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  flex-shrink: 0;
}

#list .catalog-cert-badge picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#list .catalog-cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- 注記 ---- */
#list .catalog-note {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
}

/* ---- カテゴリタイトル（グリッドの上） ---- */
#list .category-section {
  margin-bottom: 48px;
}

#list .category-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #9c1d52;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* ---- SP（768px以下）---- */
@media (max-width: 768px) {
  #list .catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4px;
  }

  #list .catalog-header {
    padding: 12px 16px;
    min-height: 52px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  #list .catalog-name {
    font-size: 14px;
  }

  #list .catalog-info {
    padding: 12px 16px 14px;
  }

  #list .catalog-grade-badge {
    height: 42px;
    font-size: 14px;
    padding: 0 32px;
  }

  #list .catalog-season {
    font-size: 13px;
  }

  #list .catalog-metric-label {
    font-size: 12px;
    min-width: 64px;
  }

  #list .catalog-metric-value {
    font-size: 12px;
  }

  #list .catalog-bar-score {
    font-size: 12px;
  }

  #list .catalog-cert-badge {
    width: 40px;
    height: 40px;
  }

  #list .catalog-certs {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* =========================
   Comparison Tool
========================= */
#compare-section {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

#compare-section .container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 98px 40px;
}

@media (max-width: 640px) {
  #compare-section .container {
    padding: 48px 20px;
    margin: 0px 0px;
  }
}

.compare-title {
  font-family: 'Figtree', sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #111;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.05;
}

@media (max-width: 768px) {
  .compare-title {
    font-size: 24px;
  }
}

.compare-sub {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1.2px;
}

/* Selectors */
.compare-selectors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  max-width: 960px;
  margin: 0 auto 40px;
  align-items: end;
}

.compare-sel-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.compare-sel-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
}

.compare-select {
  display: none; /* hidden; replaced by cmp-searchsel */
}

/* ── Searchable dropdown ─────────────────────── */
.cmp-searchsel {
  position: relative;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

/* トリガーボタン（選択値表示） */
.cmp-searchsel-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  padding: 18px 16px;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.cmp-searchsel--green .cmp-searchsel-trigger {
  background: #f0f5f0;
  border: 1px solid #326f43;
  color: #111;
}
.cmp-searchsel--green.is-open .cmp-searchsel-trigger,
.cmp-searchsel--green .cmp-searchsel-trigger:focus {
  border-color: #1e4f2d;
}
.cmp-searchsel--pink .cmp-searchsel-trigger {
  background: #f6f3f4;
  border: 1px solid #9c1f54;
  color: #111;
}
.cmp-searchsel--pink.is-open .cmp-searchsel-trigger,
.cmp-searchsel--pink .cmp-searchsel-trigger:focus {
  border-color: #6e1039;
}

.cmp-searchsel-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 矢印 */
.cmp-searchsel-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-searchsel-arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.cmp-searchsel.is-open .cmp-searchsel-arrow::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* ドロップダウン本体 */
.cmp-searchsel-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  z-index: 200;
  overflow: hidden;
}
.cmp-searchsel.is-open .cmp-searchsel-dropdown {
  display: block;
}

/* 検索欄（ドロップダウン内） */
.cmp-searchsel-search-wrap {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.cmp-searchsel-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 16px;
  color: #111;
  outline: none;
  background: #fafafa;
}
.cmp-searchsel-input:focus {
  border-color: #888;
}

.cmp-searchsel-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.cmp-searchsel-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #111;
  line-height: 1.4;
  transition: background 0.1s;
}
.cmp-searchsel-item:hover,
.cmp-searchsel-item.kb-focus {
  background: #f4f4f4;
}
.cmp-searchsel-item.is-selected {
  font-weight: 600;
}
.cmp-searchsel--green .cmp-searchsel-item.is-selected { color: #1e4f2d; }
.cmp-searchsel--pink  .cmp-searchsel-item.is-selected { color: #7a1848; }

.cmp-searchsel-item mark {
  background: #ffe08a;
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

.cmp-searchsel-empty {
  padding: 12px 16px;
  color: #999;
  font-size: 0.9rem;
  text-align: center;
}

.compare-vs {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #111;
  text-align: center;
  padding-bottom: 18px;
}

.section--grade-wrap {
  padding-bottom: 0;
}

/* Table */
.compare-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.compare-prod-headers {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.compare-head-left  { text-align: right; padding-right: 24px; }
.compare-head-right { text-align: left;  padding-left:  24px; }
.compare-head-center {
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
}

.cmp-prod-img-wrap {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.cmp-prod-img-wrap--a { margin-left: auto; }
.cmp-prod-img-wrap--b { margin-right: auto; }

.cmp-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cmp-row--imgs {
  padding-top: 20px;
  border-bottom: none;
}

.cmp-prod-jp {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: #111;
  line-height: 1;
  margin-bottom: 5px;
}
.cmp-prod-en   { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; color: #111; }
.cmp-prod-code { font-size: 0.75rem; color: #888; margin-top: 3px; }

/* Spec rows */
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cmp-row:last-child { border-bottom: none; }

.cmp-left  { text-align: right; padding-right: 24px; }
.cmp-right { text-align: left;  padding-left:  24px; }
.cmp-center {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #636363;
  line-height: 1.5;
}

/* Bars */
.cmp-bwrap { display: flex; align-items: center; gap: 9px; }
.cmp-bwrap.l { justify-content: flex-end; }
.cmp-bwrap.r { justify-content: flex-start; }

.cmp-bar {
  height: 3px;
  border-radius: 999px;
  transition: width 0.55s ease;
  min-width: 2px;
  flex-shrink: 0;
}
.cmp-bar-l { background: linear-gradient(270deg, #2d6a3f, #8aca8a); }
.cmp-bar-r { background: linear-gradient(90deg, #9C1D52, #d4508a); }

.cmp-bnum {
  font-size: 0.875rem;
  color: #111;
  font-weight: 500;
  white-space: nowrap;
  min-width: 22px;
}

/* Dots (bitterness) */
.cmp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
}

/* Text value */
.cmp-tval { font-size: 14px; color: #111; }

/* Certificate tags */
.cmp-ctag {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.875rem;
  color: #111;
  margin: 2px;
  background: #f9f9f9;
}

@media (max-width: 640px) {
  .compare-selectors {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .compare-vs { padding-bottom: 0; text-align: center; }

  .cmp-searchsel-trigger {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .compare-prod-headers,
  .cmp-row { grid-template-columns: 1fr 72px 1fr; }

  .cmp-prod-jp   { font-size: 1.2rem; }
  .cmp-prod-en   { font-size: 0.65rem; letter-spacing: 0.1em; }
  .cmp-prod-code { font-size: 0.6rem; }

  .cmp-left  { padding-right: 6px; }
  .cmp-right { padding-left:  6px; }
  .compare-head-left  { padding-right: 6px; }
  .compare-head-right { padding-left:  6px; }

  .cmp-center {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .cmp-tval  { font-size: 0.78rem; }
  .cmp-bnum  { font-size: 0.72rem; min-width: 14px; }
  .cmp-ctag  { font-size: 0.6rem; padding: 2px 7px; }

  .cmp-bar { max-width: 60px; }

  .cmp-prod-img-wrap {
    width: 100px;
    height: 100px;
  }
}

/* =========================
   Tour Intro Section
========================= */
.tour-intro-section {
  padding: 50px 0 60px;
  text-align: center;
}

.tour-intro-title {
  margin-bottom: 40px;
}

/* Horizontal scroll strip */
.tour-intro-scroll-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.tour-intro-scroll {
  display: flex;
  gap: 20px;
  padding: 0 30px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  user-select: none;
}
.tour-intro-scroll::-webkit-scrollbar { display: none; }

.tour-intro-img-item {
  flex: 0 0 193px;
  width: 193px;
  height: 193px;
  border-radius: 23px;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
}

.tour-intro-img-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-intro-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body text */
.tour-intro-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 768px;
  margin: 0 auto;
}

.tour-intro-lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.tour-intro-desc {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.7;
}

/* CTA button */
.tour-intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 37px;
  border: 1px solid var(--pink);
  border-radius: 24.5px;
  background: #fff;
  color: var(--black);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tour-intro-btn:hover {
  background: var(--pink);
  color: #fff;
}

@media (max-width: 768px) {
  .tour-intro-section {
    padding: 40px 0 50px;
  }

  .tour-intro-img-item {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    border-radius: 16px;
  }

  .tour-intro-scroll {
    gap: 14px;
    padding: 0 16px;
  }

  .tour-intro-lead {
    font-size: 16px;
  }

  .tour-intro-body {
    gap: 16px;
    padding: 0 16px;
  }
}

