/* ================================================================
   LUPICIA Coffee – 共通スタイル (統合・最適化版)
================================================================ */

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Zen Antique Soft', sans-serif;
  color: #2a2422;
  background: #fff;
  font-size: 16px; /* 地の文をすべて16pxに統一 */
  line-height: 1.8;
  padding-left: 60px; /* 左側に固定サイドバー（幅60px）が常駐するためPC時はコンテンツをずらす */
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Typography helpers ── */
/* 英字用のクラス：ご指定の「EB Garamond」 */
.font-display  { font-family: 'EB Garamond', serif; }
/* 明朝体用のクラス：ご指定の「Zenオールド明朝」 */
.font-serif-jp { font-family: 'Zen Old Mincho', serif; }

.mt-25rem { margin-top: 2.5rem; }

/* ── SIDEBAR (左側の固定縦帯) ── */
.site-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 60px; z-index: 200;
  background: #39354f; /* ラフ画像通りのシックな濃い紫・紺色系 */
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  padding-top: 20px;
}

/* ハンバーガーボタン */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  width: 44px; height: 44px;
  position: relative; z-index: 210;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}
/* 開いた状態：×アイコンに変形 */
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MENU テキスト */
.sidebar-menu-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── DRAWER MENU ── */
.nav-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190;
  display: flex;
  pointer-events: none;
}

/* オーバーレイ */
.nav-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(30, 24, 20, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* パネル本体（左サイドバーのすぐ右隣から開く仕様） */
.nav-drawer__panel {
  position: relative; z-index: 1;
  width: min(320px, 85vw);
  height: 100%;
  background: #4f4c64;
  color: #fff;
  display: flex; flex-direction: column;
  padding: 80px 0 2rem;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

/* 開いた状態 */
.nav-drawer.is-open {
  pointer-events: auto;
}
.nav-drawer.is-open .nav-drawer__overlay { opacity: 1; }
.nav-drawer.is-open .nav-drawer__panel   { transform: translateX(60px); }

/* メニューリスト */
.nav-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.nav-drawer__list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.nav-drawer__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.75rem;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: 'Zen Antique Soft', sans-serif;
  font-size: 14px; letter-spacing: 0.1em;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer__list a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.nav-drawer__list a .en {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: block; margin-top: 1px;
}

/* ドロワー内ロゴ */
.nav-drawer__logo {
  padding: 0 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 0.5rem;
}
.nav-drawer__logo .logo-en {
  font-family: 'EB Garamond', serif;
  font-size: 18px; letter-spacing: 0.08em; color: #fff;
}
.nav-drawer__logo .logo-ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 10px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em; margin-top: 2px;
}

/* ドロワー下部 */
.nav-drawer__footer {
  padding: 1.5rem 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}
.nav-drawer__footer p {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em; line-height: 2;
}

body.menu-open { overflow: hidden; }

/* ── SECTION COMMON ── */
.section-label {
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #1e2a4a;
  text-align: center;
  margin-bottom: 6px;
}
.section-title-en {
  font-family: 'EB Garamond', serif;
  font-size: clamp(34px, 4.5vw, 85px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1e2a4a;
  line-height: 1.1;
}

/* ── SELECTING BEANS (豆の選び方) ── */
.beans-section { 
  background: #fdf7f9; 
  padding: 5.5rem 0; 
  border-top: 1px solid #f6ebed; 
}

/* 左右を5:5、または見やすいバランスで横並びにするグリッド */
.beans-layout { 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; /* 左の文章と右の画像の比率 */
  gap: 4.5rem; 
  align-items: center; 
  margin-top: 3.5rem; 
}

/* 左側の文章エリア（見出しに細いグレーの下線やゴールドの縦線を入れる場合） */
.beans-text .block-title {
  font-family: 'Zen Old Mincho', serif; 
  font-size: 20px; 
  font-weight: 500;
  color: #4a486b;              /* 2枚目チャートの文字色と合わせたシックな紫紺色 */
  text-align: center;          /* テキストを中央揃えにする */
  
  /* 1枚目の左ゴールド縦線を廃止し、2枚目の下線デザインを適用 */
  border-left: none;           /* 左線を消去 */
  border-bottom: 1px solid #4a486b; /* 下側だけに細いラインを引く */
  
  /* 余白の調整 */
  padding-left: 0;             /* 左の余白をリセット */
  padding-bottom: 8px;         /* 文字と下線の間の絶妙な隙間 */
  margin-bottom: 1.25rem;      /* 見出しから下の説明文までの余白 */
  letter-spacing: 0.05em;
}
.beans-text p {
  font-size: 16px; 
  color: #2a2422; 
  line-height: 1.9; 
  margin-bottom: 2.5rem; 
  text-align: justify;
}

/* 右側の新しい画像チャート用のコンテナ */
.flavor-map-image-wrapper {
  width: 100%;
  background: transparent;
  /* 画像の周りにほんのり影をつけて、1枚目のように浮き立たせたい場合は以下を有効にしてください */
  /* box-shadow: 0 6px 25px rgba(0,0,0,0.03); */
}

/* チャート画像を枠いっぱいに綺麗に表示する */
.flavor-chart-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* 画像が歪まないように保持 */
}

/* ── レスポンシブ対応 (画面が狭いタブレットやスマホの時) ── */
@media (max-width: 1024px) {
  .beans-layout { 
    grid-template-columns: 1fr; /* 縦並びに切り替え */
    gap: 3rem; 
  }
}

/* ── Shared Button ── */
.btn-outline {
  display: inline-block;
  border: 1px solid #c4b5a4;
  font-size: 13px; letter-spacing: 0.12em;
  padding: 10px 32px; color: #6e5d4f;
  text-decoration: none; white-space: nowrap;
  background: #fff;
  font-family: 'Zen Antique Soft', sans-serif;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: #fcfaf7; border-color: #a39281; }

/* ── FOOTER (1枚目のデザイン完全再現) ── */
.site-footer {
  background: #fdfbfc;
  padding: 7rem 0 3rem;       /* 1枚目の広々とした上下余白を確保 */
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f3ebf0;
}

/* 背景の大きな白透け文字（1枚目のようにコンテンツの下に大胆に潜り込ませる） */
.footer-bg-text {
  position: absolute;
  bottom: 2rem;
  left: 4.5rem;               /* サイドバーからの綺麗なインデント位置 */
  font-family: 'EB Garamond', serif;
  font-size: clamp(40px, 7.8vw, 115px); /* 1枚目のように画面いっぱいに広がるサイズ */
  color: #f5f0f3;             /* 1枚目のとても繊細で上品な薄いグレー紫 */
  line-height: 1;
  pointer-events: none;
  z-index: 1;                 /* コンテンツの後ろに配置 */
  font-weight: 300;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  z-index: 2;                 /* 透け文字より前面に出す */
  display: flex;
  justify-content: flex-start; /* 左右に分けない */
  align-items: flex-start;
}

/* 左側に固めるブロック全体のスタイリング */
.footer-content-block {
  text-align: left;
}

.footer-logo { 
  font-family: 'EB Garamond', serif; 
  font-size: 26px; 
  letter-spacing: 0.05em; 
  color: #1e2a4a; 
  line-height: 1.2;
}

.footer-sub { 
  font-size: 18px;            /* 1枚目仕様の少し大きめで存在感のあるサイズ */
  font-weight: 500;
  color: #2a2422; 
  margin-top: 6px; 
  margin-bottom: 1.5rem;      /* 住所との間の余白 */
  letter-spacing: 0.05em;
}

.footer-addr { 
  font-size: 14px; 
  color: #6e5d4f; 
  margin-bottom: 2rem;        /* 問い合わせ先との間の余白 */
  letter-spacing: 0.02em;
}

/* お問い合わせエリア */
.footer-contact {
  font-size: 14px;
  color: #2a2422;
  line-height: 1.8;
}
.footer-contact .contact-label {
  font-size: 13px;
  color: #6e5d4f;             /* 少しマイルドな色にしてメリハリを出す */
}
.footer-contact .contact-tel {
  font-size: 15px;
  font-weight: 500;
  color: #2a2422;
  margin-top: 2px;
}
.footer-contact .contact-sub {
  font-size: 13px;
  color: #6e5d4f;
  font-weight: 400;
}

/* コピーライト（produced by LUPICIA） */
.footer-credit {
  position: relative;
  z-index: 3;                 /* 最前面 */
  text-align: center; 
  font-size: 12px; 
  color: #4a486b;             /* 1枚目の締まりのある濃紺紫に変更 */
  letter-spacing: 0.15em; 
  margin-top: 5rem;           /* 上のブロックから十分に離す */
}

/* ── レスポンシブ対応 (スマホ等) ── */
@media (max-width: 768px) {
  .site-footer {
    padding: 5rem 0 2.5rem;
  }
  .footer-bg-text {
    left: 1.5rem;
    bottom: 4rem;
  }
  .footer-credit {
    margin-top: 4rem;
  }
}

/* ── HERO & ABOUT グラデーション ── */
/* 修正点：右上（#4c68c0）から左下へ差し込むグラデーション（225deg / to bottom left） */
.bg-gradient-lupicia {
  background: linear-gradient(to bottom left, #4c68c0 0%, #2a2e70 50%, #555269 100%);
}

/* ── HERO SECTION (文字を画像の上に重ねる絶対配置版) ── */
.hero-section {
  position: relative;        /* 子要素の絶対配置の基準にする */
  width: 100%;
  height: 100vh;             /* 画面の縦幅ぴったりにする */
  min-height: 600px;         /* 画面が潰れたときの保険 */
  overflow: hidden;
}

/* 背景画像エリア */
.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;                /* 一番背面に配置 */
}
.hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 画面比率が変わっても綺麗にカバー */
}

/* 前面のテキスト・キャッチコピーエリア */
.hero-content {
  position: absolute;        /* 画像の上に重ねるための絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;               /* 画像（z-index: 1）の前面に配置 */
  
  /* 中の文字ブロック（.hero-copy）を右側の中央に配置するためのFlexbox設定 */
  display: flex;
  align-items: center;       /* 縦方向の中央揃え */
  justify-content: flex-end;  /* 横方向の右寄せ（1枚目の再現） */
}

/* キャッチコピーを包むブロックの余白調整 */
.hero-copy {
  padding-right: 8%;         /* 画面の右端から適度な隙間を空ける */
  color: #fff;
  text-align: center;        /* テキスト自体はセンター揃え */
}

/* 英語のメインキャッチ */
.hero-copy .tagline-en {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400; 
  line-height: 1.35;
  letter-spacing: 0.05em; 
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* 文字の視認性を上げるためのうっすらとした影 */
}

/* 日本語のサブキャッチ */
.hero-copy .sub-ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.15em;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ── スマホ・タブレット時の表示調整 ── */
@media (max-width: 1024px) {
  .hero-content {
    justify-content: center; /* 画面が狭いときは中央配置に変更 */
  }
  .hero-copy {
    padding-right: 0;
    padding: 0 2rem;
  }
}

/* ABOUT */
.about-section { padding: 8rem 0 6rem; }
.about-grid { display: grid; grid-template-columns: 1.7fr 0.85fr; gap: 4.5rem; align-items: center; }
.about-heading {
  font-family: 'Zen Old Mincho', serif;
  font-size: 36px; font-weight: 500;
  color: #fff; letter-spacing: 0.05em;
}
.about-body { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 2.3; text-align: justify; margin-top: 2.5rem; }
.about-body-big { font-size: 22px; margin: 2.5rem 0 0 0; }
.about-img { width: 100%; aspect-ratio: 4/4.8; box-shadow: 0 12px 30px rgba(0,0,0,0.22); }

/* ── 3つのこだわり (COMMITMENT) ── */
.commitment-section {
  background: #e6e1ea; /* ラフ画像通りの上品な薄紫・ラベンダー背景 */
  padding: 6.5rem 0;
}
.commitment-main-title {
  font-size: 38px;
  font-weight: 500;
  color: #1e2a4a;
  text-align: center;
  margin-bottom: 4.5rem;
  letter-spacing: 0.1em;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.commitment-card {
  background: transparent;
}
.commitment-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.commitment-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commitment-num {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.commitment-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #1e2a4a;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.commitment-card-text {
  font-family: 'Zen Antique Soft', sans-serif;
  font-size: 16px;
  color: #2a2422;
  line-height: 1.8;
  text-align: justify;
}
.commitment-sub-text {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* LINEUP */
.lineup-section { background: #fdf7f9; padding: 5.5rem 0; }
.lineup-grid {
  display: grid; 
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; 
  margin-top: 3.5rem;
}
.lineup-card { 
  background: transparent; 
  padding: 0; 
  position: relative; 
  text-decoration: none;
  display: flex;             /* block から flex に変更 */
  flex-direction: column;    /* 縦並びにする */
  height: 100%;              /* グリッド内での高さを揃える */
  transition: transform 0.25s ease;
}
.lineup-card:hover {
  transform: translateY(-4px);
}
.lineup-card .new-badge {
  position: absolute; top: -4px; left: -4px;
  background: #c2a783; color: #fff;
  font-size: 20px; letter-spacing: 0.05em; padding: 2px 6px; z-index: 10;
  font-weight: 500;
}
/* 画像を正方形（四角）に保つコンテナ */
.lineup-card .bean-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #f5f5f5;
  border-radius: 0; /* 丸型を完全に廃止 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.lineup-card .bean-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 焙煎タグを画像の上かつ左下に絶対配置 */
.lineup-card .roast-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  color: #4a486b;
  font-size: 21px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  font-weight: 500;
  z-index: 5;
}
.lineup-card .bean-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0.75rem 0 0.8rem 0;
  color: #1e2a4a;
  letter-spacing: 0.02em;
}
.rating-row { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.rating-label { font-size: 16px; color: #6e5d4f; width: 36px; flex-shrink: 0; }

.bean-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #ded3dc; /* デフォルトの空の豆の色 */
  -webkit-mask-image: url('/page/coffee/img/mame.svg');
  mask-image: url('/page/coffee/img/mame.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.2s ease;
}
.bean-icon.fill {
  background-color: #555269; /* しっかり焙煎されたブラウン */
}
.lineup-card .bean-desc {
  font-size: 16px;
  color: #5c5146; 
  line-height: 1.7; 
  margin-top: 1rem; 
  margin-bottom: 1.5rem;    /* ボタンとの間に適切な余白を確保 */
  text-align: justify;
  flex: 1;                  /* 余白を自動で埋めてボタンを下部に押し出す */
}

/* SELECTING BEANS */
.beans-section { background: #fdf7f9; border-top: 1px solid #f6ebed; }
.beans-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4.5rem; align-items: center; margin-top: 3.5rem; }
.beans-text p {
  font-size: 16px; /* 11.5pxから16pxに変更 */
  color: #5c5146; line-height: 1.9; margin-bottom: 2rem; text-align: justify;
}
.flavor-map-container {
  position: relative; width: 100%; background: #fff; padding: 2.5rem; box-shadow: 0 6px 25px rgba(0,0,0,0.02);
  border: 1px solid #f3ebf0;
}
.flavor-map { position: relative; width: 100%; height: 300px; }
.flavor-map::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #ebdbe3;
}
.flavor-map::after {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #ebdbe3;
}
.flavor-axis-top, .flavor-axis-bottom, .flavor-axis-left, .flavor-axis-right {
  position: absolute; font-size: 12px; color: #fff; background: #968599; padding: 3px 16px; border-radius: 12px;
  font-weight: 500; letter-spacing: 0.05em;
}
.flavor-axis-top    { top: -14px; left: 50%; transform: translateX(-50%); }
.flavor-axis-bottom { bottom: -14px; left: 50%; transform: translateX(-50%); }
.flavor-axis-left   { left: -24px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.flavor-axis-right  { right: -24px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.flavor-node {
  position: absolute; transform: translate(-50%, -50%);
  font-family: 'Zen Old Mincho', serif; font-size: 13px; text-align: center; color: #332211; line-height: 1.4;
  font-weight: 500;
}
.flavor-node::before {
  content: ''; display: block; width: 7px; height: 7px; background: #968599; border-radius: 50%; margin: 0 auto 5px;
}
.drip-hint { text-align: center; font-size: 16px; color: #fff; background: #605163; padding: 10px 15px; margin-top: 4.5rem; letter-spacing: 0.08em; }
/* ── ドリップバッグアソートバナー (2枚目完全再現デザイン) ── */
.drip-banner-container {
  max-width: 1200px;
  margin: 5.5rem auto 0 auto;
  position: relative;
  text-align: center;
}

/* 上部の吹き出し風ラベル */
.drip-badge-label {
  display: inline-block;
  background: #555269;      /* シックな濃紺紫 */
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 20px 36px;
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 2;
}
/* 下向きの小さな三角形（吹き出しのツノ） */
.drip-badge-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #555269 transparent transparent transparent;
}

/* メインコンテンツ（画像とテキスト）の横並びレイアウト */
.drip-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

/* 左側ビジュアルエリア */
.drip-left-visual {
  flex-shrink: 0;
  max-width: 320px;
}
.drip-package-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 右側テキストエリア */
.drip-right-text {
  flex: 1;
}
.drip-title {
  font-size: 26px;
  font-weight: 500;
  color: #1e2a4a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.drip-title .price {
  margin-left: 0.5rem;
}

.drip-desc {
  font-size: 16px;
  color: #2a2422;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

/* 英語の注記テキスト */
.drip-sub-details {
  font-size: 12px;
  color: #8a8499;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* 中央配置ボタンのスタイリング */
.drip-btn-center-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.drip-buy-btn {
  display: inline-block;
  background: #fdfbfc;       /* 2枚目のような、ほぼ白に近い非常に薄いパープル・グレー */
  color: #4a486b;            
  border: none;
  border-bottom: 1.5px solid #4a486b; /* 下線のみのデザインに統一 */
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 80px;        /* 横に長めのスマートなボタン */
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}
.drip-buy-btn:hover {
  background: #f3eff5;
  color: #c2a783;
  border-bottom-color: #c2a783;
}

/* ── レスポンシブ対応 (画面幅が狭い場合) ── */
@media (max-width: 768px) {
  .drip-main-content {
    flex-direction: column;  /* スマホ時は縦並びに */
    gap: 2rem;
    text-align: center;
  }
  .drip-desc {
    text-align: center;
  }
  .drip-buy-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

/* STORES */
.stores-section { background: #faf3f6; padding: 5.5rem 0; }
.stores-main-text {
  text-align: center; font-family: 'Zen Old Mincho', serif;
  font-size: 33px; font-weight: 500; color: #1e2a4a; margin-bottom: 8px;
}
.stores-sub-text { text-align: center; font-size: 14px; color: #867b83; }

.wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  font-family: 'Zen Old Mincho', serif;
}

/* ===== 地図 ===== */
.wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  font-family: 'Zen Old Mincho', serif;
}

.map {
  position:relative;
  width:min(100%,1000px);
  aspect-ratio:1/1;
  height:auto;
}

/* 地図画像 */
.map-base{
  position:absolute;
  inset:20px;
  background:url("/../img/map.png") no-repeat center;
  background-size:contain;
  z-index:1;
}

.overlay{
  position:absolute;
  inset:20px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:0;
  transition:none;
  pointer-events:none;
  z-index:1;
}

.hokkaido { background-image:url("../img/hokkaido.png"); }
.tohoku   { background-image:url("../img/tohoku.png"); }
.kanto    { background-image:url("../img/kanto.png"); }
.chubu    { background-image:url("../img/chubu.png"); }
.kinki    { background-image:url("../img/kinki.png"); }
.chugoku  { background-image:url("../img/chugoku.png"); }
.shikoku  { background-image:url("../img/shikoku.png"); }
.kyushu   { background-image:url("../img/kyushu.png"); }


/* ===== ピン ===== */
.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #feebc0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  z-index:10;
}

.pin:hover{
  box-shadow:0 0 0 4px rgba(254,235,192,.35);
}

.pin.active {
  background: #feebc0;
}

/* ===== 右パネル ===== */
.panel {
  width: 590px;
  background: #fdfbfd;
  padding: 40px;
  border-radius: 12px;
  align-self: center;
}

.panel h2 {
  margin: 0 0 20px;
  font-size: 18px;
  color: #555269;
}

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

.panel li {
  padding: 10px 0;
  border-bottom: 1px dashed #e2dbe5;
  font-size: 14px;
  color: #2c2c2c;
}
/* 地図画像 */
.map-img {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: contain;
  opacity: 0.6;
  transition: 0.3s;
}

/* ホバー用エリア（透明） */
.area {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

/* 北海道*/
.area-hokkaido {
  top: 0;
  right: 0;
  width: 40%;
  height: 35%;
}

/* 東北 */
.area-tohoku {
  top: 35%;
  left: 58%;
  width: 41%;
  height: 22%;
}

/* 関東 */
.area-kanto {
  top: 57%;
  left: 53%;
  width: 20%;
  height: 13%;
}

/* 中部 */
.area-chubu {
  top: 48%;
  left: 44%;
  width: 9%;
  height: 25%;
}

/* 近畿 */
.area-kinki {
  top: 60%;
  left: 34%;
  width: 10%;
  height: 20%;
}

/* 中国 */
.area-chugoku {
  top: 60%;
  left: 21%;
  width: 13%;
  height: 6%;
}

/* 四国 */
.area-shikoku {
  top: 67%;
  left: 24%;
  width: 10%;
  height: 9%;
}

/* 九州 */
.area-kyushu {
  top: 66%;
  left: 8%;
  width: 15%;
  height: 15%;
}

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

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    padding: 5px;
    gap: 20px;
    align-items: center;
  }

  .map {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .panel {
    width: 100%;
    max-width: 600px;
    padding: 24px;
  }
  .pin {
  width: 10px;
  height: 10px;
  
}

}

/* NEWS */
.news-section { background: #fff; padding: 5.5rem 0; }
.news-list { max-width: 1200px; margin: 3.5rem auto 0; display: flex; flex-direction: column; }
.news-item { display: flex; gap: 3rem; padding: 16px 0; border-bottom: 1px solid #f3ebf0; align-items: baseline; }
.news-item:last-child { border-bottom: 1px solid #f3ebf0; }
.news-date { font-family: 'EB Garamond', serif; font-size: 15px; color: #968599; width: 85px; flex-shrink: 0; letter-spacing: 0.05em; font-weight: 500; }
.news-text { font-size: 16px; color: #333; line-height: 1.6; }
.news-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; max-width: 860px; margin: 4.5rem auto 0; }
.promo-card { display: block; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.06); transition: transform 0.2s; border: 1px solid #f3ebf0; }
.promo-card img { width: 100%; height: auto; display: block; }
.promo-card:hover { transform: translateY(-3px); }

/* ── レスポンシブ対応 (タブレット・スマホ) ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { width: 100%; height: auto; padding: 0; }
  .hero-photo img { width: 100%; height: auto; max-height: 500px; }
  .hero-copy { padding: 4rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { aspect-ratio: 16/10; }
  .commitment-section { padding: 5rem 0; }
  .commitment-grid {
    grid-template-columns: 1fr; /* タブレット・スマホでは1カラムに縦並び */
    gap: 3.5rem;
    max-width: 480px;
    margin: 0 auto;
  }
  .lineup-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .beans-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .stores-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .news-promo-grid { grid-template-columns: 1fr; max-width: 460px; }
  .drip-banner { flex-direction: column; align-items: center; text-align: center; padding: 2rem; }
  .drip-banner .banner-left { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 768px) {
  body { padding-left: 0; padding-top: 50px; }
  .site-sidebar {
    flex-direction: row; justify-content: space-between; padding: 0 15px;
    width: 100%; height: 50px; bottom: auto; align-items: center;
  }
  .sidebar-menu-text { display: none; }
  .nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); padding-top: 60px; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-right { text-align: left; }
}
@media (max-width: 540px) {
  .lineup-grid { grid-template-columns: 1fr; max-width: 290px; margin-left: auto; margin-right: auto; }
}

/* ── 甘み・苦みなどのレベルブロック（左横に縦のゴールド線を追加） ── */
.bean-rating-box {
  border-left: 2px solid #c2a783; /* 上品なゴールドの縦線 */
  padding-left: 10px;            /* 線と文字の間の余白 */
  margin: 0.9rem 0;              /* 上下の余白 */
}

/* ── 各カード内の購入ボタンのスタイリング ── */
.card-btn-wrapper {
  text-align: center;
  margin-top: auto;          /* 念のため最下部に固定 */
  width: 100%;
}
.card-buy-btn {
  display: inline-block;
  background: #fff;                  /* 背景を白に変更 */
  color: #555269;                    /* 文字色をお茶・ロゴ系のシックな紫紺色に */
  border-bottom: 2px solid #555269;  /* 4枚目のような下線を引く */
  font-size: 18px;                   /* 文字サイズを少し調整 */
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 24px;                /* 少し縦幅にゆとりを持たせる */
  width: 100%;                       /* 横幅いっぱいに広げる */
  text-align: center;
  transition: all 0.25s ease;
}
.lineup-card:hover .card-buy-btn {
  background: #f7f5f8;               /* ホバー時にほんのり薄いグレー紫に */
  color: #c2a783;                    /* 文字色をゴールドに */
  border-color: #c2a783;             /* 下線もゴールドに */
}


      


