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

/* ===== SECTION FADE-IN ===== */
.fade-section {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease-out;
  will-change: opacity, transform, filter;
}
.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger children inside the section */
.fade-section > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}
.fade-section.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.fade-section.is-visible > *:nth-child(2) { transition-delay: 0.3s; }
.fade-section.is-visible > *:nth-child(3) { transition-delay: 0.45s; }
.fade-section.is-visible > *:nth-child(4) { transition-delay: 0.6s; }
.fade-section.is-visible > *:nth-child(5) { transition-delay: 0.75s; }
.fade-section.is-visible > *:nth-child(n+6) { transition-delay: 0.9s; }

@media (prefers-reduced-motion: reduce) {
  .fade-section,
  .fade-section > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}


:root {
  --dark-bg: #1a1411;
  --mid-bg: #231c17;
  --card-bg: #2d2219;
  --accent: #c8a228;
  --text: #e8e0d8;
  --muted: #9a8f85;
  --border: #3d3028;
}

html {
  scroll-behavior: smooth;
  background: #d4d4d4;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  background: #373332;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  z-index: 100;
  background: #373332;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  border-bottom: 1px solid var(--border);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.site-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #fff;
}

.site-sub {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
  text-align: center;
  margin-top: 2px;
}

.header-center { text-align: center; }

.hamburger { cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; }

/* ===== NAV ===== */
nav {
  background: #4a4a4a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow:
    6px 8px 12px rgba(0, 0, 0, 0.55),
    12px 16px 28px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 5;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li a {
  display: block;
  padding: 16px 14px;
  color: #e8e0d8;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  transition: color 0.2s;
  text-shadow:
    0 3px 3px rgba(0, 0, 0, 0.7),
    0 6px 10px rgba(0, 0, 0, 0.45);
}

nav ul li a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  margin-top: 66px;
  position: relative;
  overflow: hidden;
  background: #373332;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide .slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.55));
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 0;
  background: #373332;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active { background: #fff; }

/* ===== SECTION BASE ===== */
section { padding: 60px 24px; }

.sec-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 40px;
  color: #fff;
  text-shadow:
    3px 4px 4px rgba(0, 0, 0, 0.85),
    6px 8px 16px rgba(0, 0, 0, 0.7);
}

/* ===== CONCEPT ===== */
#concept {
  background: #373332;
  padding: 0;
}

.concept-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.concept-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  background: linear-gradient(
    180deg,
    rgba(55, 51, 50, 0.99) 40%,
    rgba(55, 51, 50, 0.80) 75%,
    rgba(55, 51, 50, 0.4) 80%,
    rgba(255, 240, 215, 0.05) 100%
  );
}

.concept-title {
  margin-bottom: 32px;
  text-shadow:
    3px 4px 4px rgba(0, 0, 0, 0.85),
    6px 8px 16px rgba(0, 0, 0, 0.7);
}

.concept-text {
  color: #f3ece2;
  font-size: 14px;
  line-height: 2.4;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* ===== FOOD MENU ===== */
#food-menu {
  width: 100%;
  height: 750px;
  position: relative;
  padding: 60px 0px;
  background-image: url('../source/foodmenu-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3ece2;
  isolation: isolate;
}

#food-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0);
  z-index: -1;
}

#food-menu .sec-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}

.food-block {
  width: 50%;
  margin: 0 0 32px auto;
  padding-right: 4px;
}

.food-block-second {
  margin: 240px 0 32px auto;
}

.food-text h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.food-text h3 .ja {
  font-size: 10px;
  font-weight: 400;
  color: #c9beb0;
  margin-left: 6px;
}

.food-list { list-style: none; margin-bottom: 4px; }

.food-list li {
  font-size: 12px;
  color: #e8e0d4;
  padding: 2px 0;
  display: flex;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.food-list .price {
  color: #fff;
  font-weight: 600;
  margin-left: 10px;
}

.food-list-inline {
  display: flex;
  gap: 20px;
}

.food-list-inline li {
  padding: 2px 0;
}

/* ===== DRINK MENU ===== */
#drink-menu {
  background: #524e4d;
  padding: 48px 24px;
  margin-top: -36px;
  position: relative;
  border-radius: 100px;
}

#drink-menu .sec-title {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 500;
}

.drink-block { margin-bottom: 36px; }

.drink-sub {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #fff;
  margin: 0 -24px 14px;
  padding: 12px 24px;
  background: #251d1b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.beer-col .drink-sub {
  margin: 0 -16px 14px;
  padding-left: 16px;
  padding-right: 16px;
}

.drink-sub-ja-inline {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 400;
}

.divider {
  max-width: 460px;
  margin: 0 auto 18px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.divider-short {
  max-width: 100%;
  margin-bottom: 12px;
}

.section-divider {
  max-width: 100%;
  margin: 0 auto 32px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Whisky */
.whisky-desc {
  font-size: 11px;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.9;
}

.whisky-desc-note {
  display: inline-block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.whisky-table {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 26px;
  border-collapse: collapse;
}

.whisky-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 6px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.whisky-table th small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.whisky-table td {
  padding: 11px 6px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.whisky-table tr td:first-child {
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.5px;
  font-size: 12px;
}

/* Whisky picks (rank photos, stacked vertically) */
.whisky-picks {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
  margin: 0 auto;
}

.pick {
  text-align: center;
}

.pick-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 4px;
}

.pick-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-name {
  font-size: 14px;
  color: var(--text);
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.pick-price {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

/* All ¥XXX */
.all-text {
  text-align: center;
  font-size: 14px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 18px;
}

.all-price {
  font-size: 18px;
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 1px;
}

.cocktail-list {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  line-height: 2.2;
}

/* Beer & Other */
.beer-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 -24px;
}

.beer-col {
  padding: 0;
}

.beer-col .drink-sub {
  margin: 0 0 14px;
  padding: 12px 24px;
}

.beer-col ul { list-style: none; margin-top: 25px; padding: 0 20px; }

.beer-col ul li {
  font-size: 11px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.beer-col ul li .price { color: var(--text); }

/* ===== GAME CHARGE ===== */
#game-charge {
  background: #373332;
  border-top: 2px solid var(--border);
  padding: 0 24px;
}

#game-charge .sec-title {
  background: #4a4644;
  margin: 20px -24px;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#access .sec-title {
  background: #4a4644;
  margin: 20px -24px;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#game-charge {
  padding-top: 20px;
  padding-bottom: 40px;
}

.pass-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 40px auto 32px;
}

/* GAME PASS row (image + info) */
.pass-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 14px;
  align-items: center;
}

.pass-image {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    6px 8px 12px rgba(0, 0, 0, 0.75),
    12px 16px 28px rgba(0, 0, 0, 0.55);
}

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

.pass-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pass-recommend {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.2em;
}

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

.pass-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--muted);
  color: var(--text);
  font-size: 10px;
  line-height: 1.2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.pass-tag-primary {
  background: #c25a3a;
  border-color: #c25a3a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.pass-row .pass-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 4px;
  text-align: left;
}

.pass-note {
  display: inline;
  color: var(--muted);
  font-size: 9px;
}

/* Seat feature (4 photos + caption) */
.seat-feature {
  margin: 4px 0 4px;
}

.seat-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.seat-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.seat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seat-feature-text {
  text-align: left;
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-top: 2px;
}

/* Counter pass card */
.pass-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
}

.pass-badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1411;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.pass-label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.pass-price {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pass-price span { font-size: 14px; font-weight: 400; }

.pass-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
  text-align: left;
}

.pass-night {
  font-size: 10px;
  color: var(--accent);
  margin-top: 6px;
}

.extension-notice {
  max-width: 500px;
  margin: 0 auto 28px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #4a4a4a, #3d3d3d);
  border: 1px solid #5a5a5a;
  border-radius: 6px;
  text-align: center;
}

.extension-lead {
  font-size: 12px;
  color: #e8e8e8;
  letter-spacing: 1.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.extension-lead .ext-em {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 2px;
}

.extension-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.ext-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ext-label {
  font-size: 11px;
  color: #b5b5b5;
  letter-spacing: 2px;
}

.ext-value {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}

.ext-unit {
  font-size: 10px;
  color: #b5b5b5;
  letter-spacing: 1px;
}

.ext-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

.game-feature {
  max-width: 500px;
  margin: 0 auto 28px;
}

.game-feature > img {
  display: block;
  width: 100%;
  height: auto;
}

.seat-feature > img {
  display: block;
  width: 100%;
  height: auto;
}

.game-feature-text {
  text-align: left;
  font-size: 11px;
  color: var(--text);
  letter-spacing: 1px;
  margin-top: 2px;
}

.game-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.game-photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.game-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-time {
  margin: 0 auto;
  max-width: 500px;
}

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

/* ===== ACCESS ===== */
#access {
  background: #373332;
  border-top: 2px solid var(--border);
  padding-top: 0;
  margin-top: -30px;
  position: relative;
}

.access-card {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 16px;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.access-text {
  text-align: left;
  color: var(--text);
}

.access-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 2px;
}

.access-zip {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 1px;
  letter-spacing: 0.11em;
}

.access-addr {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  letter-spacing: 0.11em;
}

.access-phone {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.07em;
  color: #fff;
  margin-top: -5px;
  margin-bottom: 2px;
  line-height: 1.1;
}

.access-phone a,
.access-phone a:visited {
  color: inherit;
  text-decoration: none;
}

.access-hours,
.access-holiday {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.11em;
}

.access-photo {
  width: 240px;
  height: 160px;
  overflow: hidden;
}

.access-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.access-map {
  max-width: 500px;
  margin: 28px auto 16px;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-map-btn-wrap {
  text-align: center;
}

.map-btn {
  display: inline-block;
  border: 1px solid var(--muted);
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 24px;
  transition: all 0.2s;
}

.map-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  background: #373332;
  text-align: center;
  padding: 24px 20px 20px;
  font-size: 10px;
  color: #6a6260;
  letter-spacing: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-bottom: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sns-btn:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  transform: translateY(-1px);
}

.sns-btn svg {
  display: block;
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background: rgba(10, 8, 6, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 4px;
  transition: color 0.2s;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.55),
    0 4px 6px rgba(0, 0, 0, 0.35);
}

.nav-overlay a:hover { color: #fff; }

.nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: #fff; font-size: 24px;
  cursor: pointer;
}

/* ===== RESPONSIVE: 400px - 599px ===== */
@media (max-width: 599px) {
  nav ul li a {
    padding: 14px 8px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .sec-title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  #drink-menu .sec-title {
    font-size: 28px;
  }

  .concept-hero {
    height: 360px;
  }

  .concept-text {
    font-size: 13px;
    line-height: 2.2;
  }

  .concept-overlay {
    padding: 30px 20px;
  }

  #food-menu {
    height: auto;
    min-height: 600px;
    background-size: contain;
    background-position: top center;
  }

  .access-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .access-photo {
    width: 100%;
    height: 180px;
  }

  .access-phone {
    font-size: 26px;
  }

  .pass-row {
    grid-template-columns: 2fr 3fr;
    gap: 10px;
  }

  .pass-recommend {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .pass-tag {
    font-size: 9px;
    padding: 4px 8px;
  }

  .drink-sub {
    font-size: 16px;
    letter-spacing: 3px;
    padding: 10px 20px;
  }

  .whisky-table td {
    font-size: 11px;
    padding: 8px 4px;
  }

  .whisky-table th {
    font-size: 9px;
    padding: 8px 4px;
  }

  .beer-col ul {
    padding: 0 12px;
  }

  .beer-col ul li {
    font-size: 10px;
  }

  #game-charge .sec-title,
  #access .sec-title {
    margin-left: -24px;
    margin-right: -24px;
  }

  .food-block {
    width: 55%;
    margin: -25px 0 32px auto;
  }

  .food-block-second {
    margin: 200px 0 32px auto;
  }

  .food-text h3 {
    font-size: 12px;
  }

  .food-list li {
    font-size: 10px;
  }

  .food-list .price {
    margin-left: 6px;
  }

  .food-list-inline {
    gap: 12px;
  }

  .cocktail-list {
    font-size: 9px;
    line-height: 2;
  }

  .whisky-desc {
    font-size: 10px;
  }

  .pick-name {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .pick-price {
    font-size: 13px;
  }

  .all-text {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .all-price {
    font-size: 16px;
  }
}
