@font-face {
  font-family: "Cormorant";
  src: url("cormorant.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "BG Shippori";
  src: url("/wp-content/uploads/2026/07/ShipporiMinchoB1-Regular-BGSubset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BG Shippori";
  src: url("/wp-content/uploads/2026/07/ShipporiMinchoB1-Bold-BGSubset.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-paper: #f4f0e7;
  --bg-paper-deep: #e9e1d2;
  --bg-ink: #171714;
  --bg-ink-soft: #56554e;
  --bg-gold: #ae7a24;
  --bg-gold-light: #d2ad63;
  --bg-moss: #36453a;
  --bg-line: rgba(31, 29, 23, 0.18);
  --bg-white: #fffefa;
  --bg-display: "BG Shippori", "Iowan Old Style", "Baskerville", serif;
  --bg-sans: "Avenir Next", "Futura", "Century Gothic", sans-serif;
  --bg-shadow: 0 24px 70px rgba(39, 32, 18, 0.11);
}

html {
  scroll-behavior: smooth;
}

body.bg-recovery-site {
  margin: 0;
  color: var(--bg-ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(202, 165, 90, 0.15), transparent 29rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    var(--bg-paper);
  font-family: var(--bg-sans);
  line-height: 1.65;
}

body.bg-recovery-site *,
body.bg-recovery-site *::before,
body.bg-recovery-site *::after {
  box-sizing: border-box;
}

body.bg-recovery-site a {
  color: inherit;
}

body.bg-recovery-site img {
  max-width: 100%;
  height: auto;
}

.bg-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  color: #fff;
  background: #111;
}

.bg-skip-link:focus {
  top: 1rem;
}

.bg-vertical-rail {
  position: fixed;
  z-index: 60;
  left: 0;
  top: 50%;
  display: flex;
  width: 29px;
  height: 190px;
  align-items: center;
  justify-content: center;
  color: var(--bg-ink);
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--bg-line);
  border-left: 0;
  text-decoration: none;
  transform: translateY(-50%);
  box-shadow: 5px 10px 25px rgba(42, 36, 24, 0.08);
}

.bg-vertical-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--bg-display);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.bg-site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--bg-line);
  background: rgba(244, 240, 231, 0.92);
  backdrop-filter: blur(14px);
}

.admin-bar .bg-site-header {
  top: 0;
}

.bg-site-header__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
}

.bg-brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
  line-height: 1;
}

.bg-brand__name {
  font-family: var(--bg-display);
  font-size: 21px;
  letter-spacing: 0.05em;
}

.bg-brand__sub {
  margin-top: 4px;
  color: var(--bg-gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.bg-main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  align-items: center;
  justify-content: center;
}

.bg-main-nav a {
  position: relative;
  padding: 30px 0 27px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.bg-main-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 1px;
  background: var(--bg-gold);
  content: "";
  transition: right 180ms ease;
}

.bg-main-nav a:hover::after,
.bg-main-nav a:focus-visible::after {
  right: 0;
}

.bg-header-search {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--bg-ink);
}

.bg-header-search input {
  width: 100%;
  min-width: 0;
  padding: 8px 4px;
  border: 0;
  outline: 0;
  color: var(--bg-ink);
  background: transparent;
  font: 12px var(--bg-sans);
}

.bg-header-search button {
  border: 0;
  color: var(--bg-gold);
  background: transparent;
  font: 700 10px var(--bg-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.bg-main {
  min-height: 70vh;
  overflow: clip;
}

.bg-shell {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}

.bg-shell--narrow {
  width: min(790px, calc(100% - 64px));
}

.bg-kicker {
  margin: 0 0 14px;
  color: var(--bg-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bg-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bg-button--solid {
  border-color: var(--bg-gold);
  color: #17130b;
  background: var(--bg-gold-light);
}

.bg-text-link {
  color: var(--bg-gold);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bg-home-hero {
  position: relative;
  display: grid;
  min-height: min(710px, 78vh);
  place-items: center;
  isolation: isolate;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(18, 15, 11, 0.86), rgba(18, 15, 11, 0.25)),
    url("/wp-content/uploads/2026/07/will-aged-sake-unveil-a-new-dimension-of-japanese-sake-in-2026-17591.webp") center / cover no-repeat;
}

.bg-home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.09) 25%);
  content: "";
}

.bg-home-hero__wash {
  position: absolute;
  inset: 10% auto 10% 7%;
  z-index: -1;
  width: min(560px, 70vw);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.bg-home-hero__content {
  width: min(1060px, calc(100% - 96px));
  padding: 90px 0;
  animation: bg-rise 700ms ease both;
}

.bg-home-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.bg-home-hero__content > p:not(.bg-kicker) {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-family: var(--bg-display);
  font-size: clamp(17px, 2vw, 23px);
}

.bg-home-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.bg-home-paths,
.bg-home-journal {
  padding-block: 100px;
}

.bg-section-heading h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
}

.bg-section-heading--split {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.bg-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--bg-line);
  border-left: 1px solid var(--bg-line);
}

.bg-path-grid a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  background: rgba(255, 254, 250, 0.28);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.bg-path-grid a:hover {
  z-index: 1;
  background: var(--bg-white);
  transform: translateY(-6px);
  box-shadow: var(--bg-shadow);
}

.bg-path-grid span {
  color: var(--bg-gold);
  font-family: var(--bg-display);
  font-size: 15px;
}

.bg-path-grid strong {
  margin-top: auto;
  font-family: var(--bg-display);
  font-size: 28px;
  font-weight: 400;
}

.bg-path-grid small {
  margin-top: 12px;
  color: var(--bg-ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.bg-home-journal {
  border-top: 1px solid var(--bg-line);
}

.bg-home-statement {
  padding-block: 110px;
  color: #f7f0e2;
  background:
    radial-gradient(circle at 80% 20%, rgba(188, 139, 56, 0.2), transparent 24rem),
    var(--bg-moss);
}

.bg-home-statement blockquote {
  max-width: 940px;
  margin: 0 0 32px;
  font-family: var(--bg-display);
  font-size: clamp(36px, 5.7vw, 74px);
  line-height: 1.12;
}

.bg-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--bg-line);
  color: var(--bg-ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bg-breadcrumbs a {
  color: var(--bg-gold);
  text-decoration: none;
}

/* Matches the preserved pre-recovery product breadcrumb treatment. */
.bg-breadcrumbs--product {
  display: block;
  width: min(1180px, calc(100% - 48px));
  margin: 22px auto 18px;
  padding: 0 24px;
  border-bottom: 0;
  box-sizing: border-box;
  color: #5f5f5f;
  font-family: "Noto Sans JP", "Avenir Next", sans-serif;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  position: relative;
  text-transform: none;
  z-index: 2;
}

body.bg-recovery-site .bg-breadcrumbs--product a,
.bg-breadcrumbs--product .bg-crumb-home {
  color: #c8a04c;
  text-decoration: none;
}

.bg-breadcrumbs--product a:hover {
  color: #1a1a1a;
}

.bg-breadcrumbs--product .bg-crumb-home {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #c8a04c;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bg-breadcrumbs--product .bg-crumb-sep {
  display: inline-block;
  margin: 0 10px;
  color: #8a8a8a;
}

.bg-breadcrumbs--product .bg-crumb-current {
  color: #2b2b2b;
}

@media (max-width: 767px) {
  .bg-breadcrumbs--product {
    width: 100%;
    margin: 16px auto 14px;
    padding: 0 20px;
  }

  .bg-breadcrumbs--product .bg-crumb-sep {
    margin: 0 7px;
  }
}

.bg-archive-hero {
  padding: 92px 0 70px;
  border-bottom: 1px solid var(--bg-line);
}

.bg-archive-hero--compact {
  padding-top: 58px;
}

.bg-archive-hero h1,
.bg-page__header h1,
.bg-not-found h1 {
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.bg-archive-hero .bg-shell > p:not(.bg-kicker),
.bg-archive-description {
  max-width: 620px;
  margin-top: 22px;
  color: var(--bg-ink-soft);
  font-family: var(--bg-display);
  font-size: 18px;
}

.bg-archive-search {
  display: flex;
  max-width: 620px;
  margin-top: 34px;
}

.bg-archive-search input {
  min-width: 0;
  flex: 1;
  padding: 15px 17px;
  border: 1px solid var(--bg-line);
  color: var(--bg-ink);
  background: var(--bg-white);
  font: 14px var(--bg-sans);
}

.bg-archive-search button {
  padding: 0 26px;
  border: 1px solid var(--bg-ink);
  color: var(--bg-white);
  background: var(--bg-ink);
  font: 700 11px var(--bg-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.bg-card-grid--archive {
  padding-block: 64px;
}

/* Restored manufacturer index for the main SAKE collection. */
.bg-collection-hero {
  padding: 56px 0 34px;
  border-bottom: 1px solid var(--bg-line);
}

.bg-collection-hero h1 {
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.bg-collection-hero p:not(.bg-kicker) {
  margin: 15px 0 0;
  color: var(--bg-ink-soft);
  font-size: 16px;
}

.bg-maker-collection {
  padding-block: 34px 72px;
}

.bg-maker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.bg-maker-card {
  position: relative;
  display: flex;
  min-height: 260px;
  padding: 27px 25px 21px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  background-color: #080808;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.76) 100%),
    url('sake-marble.png');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.bg-maker-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: rgba(0, 0, 0, 0.12);
  transition: background 220ms ease;
}

.bg-maker-card:hover::after,
.bg-maker-card:focus-visible::after {
  background: rgba(27, 22, 13, 0.42);
}

.bg-maker-card__content,
.bg-maker-card__button {
  display: block;
}

.bg-maker-card__name {
  display: block;
  color: #fff !important;
  font-family: "Cormorant", "Iowan Old Style", "Baskerville", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.72);
}

.bg-maker-card__description {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.bg-maker-card__button {
  width: 100%;
  padding: 13px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  font: 700 13px var(--bg-sans);
  letter-spacing: 0;
  text-align: center;
}

.bg-maker-card:hover .bg-maker-card__button,
.bg-maker-card:focus-visible .bg-maker-card__button {
  background: rgba(204, 160, 76, 0.9);
}

.bg-card {
  overflow: hidden;
  border: 1px solid var(--bg-line);
  background: rgba(255, 254, 250, 0.76);
  animation: bg-rise 500ms ease both;
}

.bg-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd4c5;
}

.bg-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bg-card:hover .bg-card__image img {
  transform: scale(1.035);
}

.bg-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 22% 20%, rgba(205, 163, 84, 0.65), transparent 20%),
    linear-gradient(140deg, #273329, #b68b49 65%, #eee5d6);
}

.bg-card__body {
  padding: 27px 28px 30px;
}

.bg-card h2 {
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

.bg-card h2 a {
  text-decoration: none;
}

.bg-card__body > p:not(.bg-kicker) {
  display: -webkit-box;
  overflow: hidden;
  margin: 18px 0 24px;
  color: var(--bg-ink-soft);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Match the recovered Elementor NEW ARRIVALS archive and its July 2026 curation. */
body.category-new-releases .bg-archive-hero {
  padding: 58px 0 52px;
}

body.category-new-releases .bg-archive-hero h1 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

body.category-new-releases .bg-card-grid--archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-block: 52px 64px;
}

body.category-new-releases .bg-card__body {
  padding: 22px 20px 25px;
}

body.category-new-releases .bg-card h2 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

body.category-new-releases .bg-card__body > p:not(.bg-kicker) {
  margin: 14px 0 20px;
  font-family: "BG Shippori", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

body.category-getting-started .bg-archive-hero {
  padding: 46px 0 28px;
}

body.category-getting-started .bg-archive-hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.06;
}

body.category-getting-started .bg-archive-description {
  margin-top: 14px;
  font-family: var(--bg-sans);
  font-size: 15px;
  line-height: 1.6;
}

body.category-getting-started .bg-card-grid--archive {
  padding-block: 38px 58px;
}

body.category-getting-started .bg-card h2 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.22;
}

body.category-wine-map .bg-archive-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--bg-white);
  background: linear-gradient(rgba(27, 27, 27, 0.6), rgba(27, 27, 27, 0.6)), url("https://bacchusglobal.co.th/wp-content/uploads/2023/08/vignoble.jpg") center / cover;
}

body.category-wine-map .bg-archive-hero .bg-shell {
  display: grid;
  min-height: 500px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

body.category-wine-map .bg-archive-hero .bg-kicker {
  display: none;
}

body.category-wine-map .bg-archive-hero h1 {
  grid-column: 2;
  color: transparent;
  font-size: 0;
  letter-spacing: 0.015em;
  text-align: left;
}

body.category-wine-map .bg-archive-hero h1::after {
  content: "WINE MAP AND NOTES";
  color: var(--bg-white);
  font-family: var(--bg-display);
  font-size: clamp(32px, 4vw, 38px);
  font-weight: 400;
  line-height: 1;
}

body.category-wine-map .bg-card-grid--archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px 8px;
  padding: 0 0 100px;
}

body.category-wine-map .bg-card-grid--archive::before {
  content: "EXPLORE OUR WINE MAP AND NOTES";
  display: grid;
  grid-column: 1 / -1;
  min-height: 20vh;
  padding: 0;
  color: var(--bg-ink);
  font-family: var(--bg-display);
  font-size: clamp(24px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
}

body.category-wine-map .bg-empty {
  margin: 100px 0;
  padding: 0;
  border: 0;
  font-size: 0;
}

body.category-wine-map .bg-empty::after {
  content: "It seems we can\2019t find what you\2019re looking for.";
  font-size: 16px;
}

@media (max-width: 767px) {
  body.category-wine-map .bg-archive-hero .bg-shell {
    grid-template-columns: 1fr;
  }

  body.category-wine-map .bg-archive-hero h1 {
    grid-column: 1;
    text-align: center;
  }

  body.category-wine-map .bg-card-grid--archive {
    grid-template-columns: 1fr;
  }
}

.bg-pagination {
  padding-bottom: 70px;
}

.bg-pagination .page-numbers {
  display: flex;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.bg-pagination a,
.bg-pagination span {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--bg-line);
  text-decoration: none;
}

.bg-pagination .current {
  color: #fff;
  background: var(--bg-ink);
}

.bg-article__header {
  padding-top: 78px;
  text-align: center;
}

.bg-article__header h1 {
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.08;
}

.bg-article__date {
  margin: 22px 0 0;
  color: var(--bg-ink-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bg-article__hero {
  margin-top: 52px;
}

.bg-article__hero img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.bg-prose {
  font-family: var(--bg-display);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.9;
}

.bg-article .bg-prose {
  padding-block: 62px 100px;
}

.bg-prose h2,
.bg-prose h3,
.bg-prose h4 {
  margin: 2em 0 0.7em;
  color: var(--bg-ink);
  font-family: var(--bg-display);
  line-height: 1.25;
}

.bg-prose h2 {
  font-size: clamp(29px, 3.6vw, 45px);
  font-weight: 400;
}

.bg-prose h3 {
  font-size: 25px;
}

.bg-prose p {
  margin: 0 0 1.35em;
}

.bg-prose a {
  color: #8b5c13;
  text-underline-offset: 0.18em;
}

.bg-prose blockquote {
  margin: 2.2em 0;
  padding: 0.8em 0 0.8em 1.4em;
  border-left: 2px solid var(--bg-gold);
  font-size: 1.18em;
}

.bg-page__header {
  padding-block: 66px 30px;
}

.bg-page__content {
  padding-block: 42px 100px;
}

.bg-page__content > style:first-child + * {
  margin-top: 0;
}

.bg-restoration-note {
  margin-bottom: 90px;
  padding: 24px 28px;
  border: 1px solid var(--bg-line);
  color: var(--bg-ink-soft);
  background: rgba(255, 254, 250, 0.6);
}

.bg-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  padding-block: 70px 110px;
}

.bg-product__visual {
  align-self: start;
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(220, 209, 191, 0.48));
  box-shadow: var(--bg-shadow);
}

.bg-product__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.bg-product__placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(140deg, #1e2922, #b4873e);
}

.bg-product__intro {
  align-self: center;
}

.bg-product__intro h1 {
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1;
}

.bg-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 44px 0 0;
  border-top: 1px solid var(--bg-line);
  border-left: 1px solid var(--bg-line);
}

.bg-facts div {
  padding: 16px 18px;
  border-right: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}

.bg-facts dt {
  color: var(--bg-ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bg-facts dd {
  margin: 5px 0 0;
  font-family: var(--bg-display);
  font-size: 17px;
}

.bg-product__story {
  grid-column: 2;
  padding-top: 10px;
}

/* Restored product-detail proportions for every non-wine product page. */
.bg-product--legacy-pilot {
  width: min(1100px, calc(100% - 64px));
  grid-template-columns: 40% 60%;
  gap: 0;
  padding-block: 25px 70px;
}

.bg-product--legacy-pilot .bg-product__visual {
  padding: 0 20px 0 0;
  background: none;
  box-shadow: none;
}

.bg-product--legacy-pilot .bg-product__intro {
  align-self: start;
  padding: 80px 0 0 20px;
}

.bg-product--legacy-pilot .bg-kicker {
  display: none;
}

.bg-product--legacy-pilot .bg-product__intro h1 {
  font-family: "Cormorant", var(--bg-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.bg-product__subtitle {
  margin: 18px 0 0;
  font-family: "BG Shippori", serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}

.bg-product__type {
  margin: 60px 0 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.bg-product__spec-title {
  margin: 20px 0;
  font-family: "Cormorant", var(--bg-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.bg-product--legacy-pilot .bg-facts {
  display: block;
  width: 85%;
  margin: 0;
  border: 0;
}

.bg-product--legacy-pilot .bg-facts div {
  display: block;
  padding: 1px 0;
  border: 0;
}

.bg-product--legacy-pilot .bg-facts dt,
.bg-product--legacy-pilot .bg-facts dd {
  color: var(--bg-ink);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.bg-product--legacy-pilot .bg-facts dt {
  display: inline;
  font-weight: 500;
}

.bg-product--legacy-pilot .bg-facts dt::after {
  content: " : ";
}

.bg-product--legacy-pilot .bg-facts dd {
  display: inline;
  margin: 0;
  font-weight: 400;
}

.bg-product--legacy-pilot .bg-product__story {
  width: 85%;
  padding: 0 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

.bg-not-found {
  padding-block: 130px;
  text-align: center;
}

.bg-not-found p:not(.bg-kicker) {
  color: var(--bg-ink-soft);
}

.bg-not-found form {
  display: flex;
  max-width: 500px;
  margin: 30px auto;
}

.bg-not-found form label {
  flex: 1;
}

.bg-not-found input {
  width: 100%;
  padding: 13px;
}

.bg-activity-archive {
  width: min(1160px, 100%);
  margin: 54px auto 80px;
  color: var(--bg-ink);
}

.bg-activity-archive__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-line);
}

.bg-activity-archive__heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.bg-activity-archive__heading > p {
  margin: 0;
  color: var(--bg-ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.bg-activity-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bg-activity-card {
  overflow: hidden;
  border: 1px solid var(--bg-line);
  color: var(--bg-ink);
  background: var(--bg-white);
  text-decoration: none;
}

.bg-activity-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d9d1c3;
}

.bg-activity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bg-activity-card:hover .bg-activity-card__image img,
.bg-activity-card:focus-visible .bg-activity-card__image img {
  transform: scale(1.035);
}

.bg-activity-card__image--empty {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(185, 138, 58, 0.24), transparent 55%),
    #27332c;
  font: 700 10px var(--bg-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bg-activity-card__copy {
  display: flex;
  min-height: 108px;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 26px;
}

.bg-activity-card__copy strong {
  font-family: var(--bg-display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.25;
}

.bg-activity-card__copy small {
  flex: 0 0 auto;
  margin-top: 7px;
  color: var(--bg-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bg-activity-album {
  padding-bottom: 100px;
}

.bg-activity-album__header {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 70px 0 48px;
}

.bg-activity-album__header h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--bg-display);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.bg-activity-album__header p:not(.bg-kicker) {
  margin: 14px 0 0;
  color: var(--bg-ink-soft);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bg-activity-album__header .bg-button {
  flex: 0 0 auto;
}

.bg-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bg-activity-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d9d1c3;
}

.bg-activity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.bg-activity-photo:hover img,
.bg-activity-photo:focus-visible img {
  filter: contrast(1.03);
  transform: scale(1.025);
}

.bg-activity-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 54px;
  border: 0;
  color: #fff;
  background: rgba(12, 12, 10, 0.94);
}

.bg-activity-lightbox[open] {
  display: grid;
  place-items: center;
}

.bg-activity-lightbox::backdrop {
  background: rgba(12, 12, 10, 0.94);
}

.bg-activity-lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 108px);
  object-fit: contain;
}

.bg-activity-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 22px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #fff;
  background: transparent;
  font: 700 10px var(--bg-sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.bg-site-footer {
  padding: 72px 0 26px;
  color: #e9e1d2;
  background: #171714;
}

.bg-site-footer__grid,
.bg-site-footer__legal {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}

.bg-site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.bg-site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bg-site-footer__brand {
  margin: 0;
  font-family: var(--bg-display);
  font-size: 25px;
  letter-spacing: 0.05em;
}

.bg-site-footer__grid > div:first-child > p:last-child {
  max-width: 480px;
  color: rgba(233, 225, 210, 0.63);
  font-family: var(--bg-display);
  font-size: 17px;
}

.bg-site-footer__label {
  margin: 0 0 12px;
  color: var(--bg-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bg-site-footer__grid a {
  padding: 5px 0;
  color: rgba(233, 225, 210, 0.78);
  text-decoration: none;
  font-size: 13px;
}

.bg-site-footer__legal {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(233, 225, 210, 0.48);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.bg-site-footer__legal a {
  text-decoration: none;
}

.bg-empty {
  grid-column: 1 / -1;
  padding: 50px;
  border: 1px solid var(--bg-line);
  text-align: center;
}

@keyframes bg-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-card,
  .bg-home-hero__content { animation: none; }
  .bg-card__image img { transition: none; }
}

@media (max-width: 1050px) {
  .bg-site-header__inner {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .bg-main-nav {
    justify-content: flex-end;
    overflow-x: auto;
  }

  .bg-header-search {
    display: none;
  }

  .bg-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bg-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.category-new-releases .bg-card-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bg-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Elementor used the full right column for the product description below desktop. */
  .bg-product--legacy-pilot .bg-product__story {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .bg-vertical-rail {
    display: none;
  }

  .bg-site-header__inner,
  .bg-shell,
  .bg-shell--narrow,
  .bg-breadcrumbs,
  .bg-site-footer__grid,
  .bg-site-footer__legal {
    width: min(100% - 36px, 1160px);
  }

  .bg-site-header__inner {
    display: block;
    padding: 18px 0 10px;
  }

  .bg-main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow-x: visible;
    margin-top: 12px;
    padding-bottom: 0;
    border-top: 1px solid var(--bg-line);
    border-left: 1px solid var(--bg-line);
  }

  .bg-main-nav a {
    display: flex;
    min-width: 0;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-right: 1px solid var(--bg-line);
    border-bottom: 1px solid var(--bg-line);
    font-size: 8px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .bg-main-nav a::after {
    display: none;
  }

  .bg-home-hero {
    min-height: 590px;
  }

  .bg-home-hero__content {
    width: calc(100% - 44px);
    padding: 70px 0;
  }

  .bg-home-hero__wash {
    inset: 7% 18px;
    width: auto;
  }

  .bg-home-hero h1 {
    font-size: clamp(58px, 21vw, 90px);
  }

  .bg-home-hero__actions,
  .bg-section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .bg-home-paths,
  .bg-home-journal {
    padding-block: 70px;
  }

  .bg-path-grid,
  .bg-card-grid,
  .bg-site-footer__grid {
    grid-template-columns: 1fr;
  }

  body.category-new-releases .bg-card-grid--archive {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 42px 54px;
  }

  .bg-path-grid a {
    min-height: 190px;
  }

  .bg-archive-hero {
    padding: 62px 0 48px;
  }

  .bg-archive-hero h1,
  .bg-page__header h1,
  .bg-not-found h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .bg-archive-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .bg-card-grid--archive {
    padding-block: 42px;
  }

  .bg-activity-archive {
    width: 100%;
    margin: 38px auto 62px;
  }

  .bg-activity-archive__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bg-activity-cards,
  .bg-activity-grid {
    grid-template-columns: 1fr;
  }

  .bg-activity-card__copy {
    min-height: 0;
    padding: 20px;
  }

  .bg-activity-album {
    padding-bottom: 70px;
  }

  .bg-activity-album__header {
    gap: 26px;
    align-items: flex-start;
    flex-direction: column;
    padding: 48px 0 34px;
  }

  .bg-activity-lightbox {
    padding: 48px 14px 14px;
  }

  .bg-article__header {
    padding-top: 50px;
  }

  .bg-article__hero {
    width: 100%;
    margin-top: 34px;
  }

  .bg-article .bg-prose,
  .bg-page__content {
    padding-block: 42px 72px;
  }

  .bg-product {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 42px 80px;
  }

  .bg-product__story {
    grid-column: 1;
  }

  .bg-facts {
    grid-template-columns: 1fr;
  }

  .bg-product--legacy-pilot {
    width: min(100% - 50px, 800px);
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 25px 70px;
  }

  .bg-product--legacy-pilot .bg-product__visual {
    padding: 50px 0 0;
  }

  .bg-product--legacy-pilot .bg-product__intro {
    padding: 20px 0 0;
    text-align: center;
  }

  .bg-product--legacy-pilot .bg-product__intro h1 {
    font-size: 38px;
  }

  .bg-product--legacy-pilot .bg-product__type {
    margin-top: 36px;
  }

  .bg-product--legacy-pilot .bg-facts {
    width: 85%;
    margin-inline: auto;
  }

  .bg-product--legacy-pilot .bg-facts {
    text-align: left;
  }

  .bg-product--legacy-pilot .bg-product__story {
    grid-column: 1;
    width: 100%;
    margin-inline: 0;
    padding: 28px 0 0;
    text-align: left;
  }

  .bg-site-footer__grid {
    gap: 34px;
  }

  .bg-site-footer__legal {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
}



/* Match the New Releases card typography for the AKABU maker archive. */
body.category-akabu-iwate .bg-card h2 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

body.category-akabu-iwate .bg-card__body > p:not(.bg-kicker) {
  margin: 14px 0 20px;
  font-family: "BG Shippori", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

body.category-akabu-iwate .bg-card__image { aspect-ratio: 1 / 1; }
body.category-akabu-iwate .bg-card__image img { object-fit: contain; }

body.category-born-imperial-household .bg-card__image { aspect-ratio: 1 / 1; }
body.category-born-imperial-household .bg-card__image img { object-fit: contain; }
body.category-born-imperial-household .bg-card h2 { font-family: Cormorant, Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 600; line-height: 1.15; text-transform: uppercase; }
body.category-born-imperial-household .bg-card__body > p:not(.bg-kicker) { font-family: "BG Shippori", serif; font-size: 16px; line-height: 1.6; }


/* Product-only maker archives: square image cards and matched typography. */
body.category-chiebijin-oita-sake-nakano .bg-card__image,
body.category-sake-eks .bg-card__image {
  aspect-ratio: 1 / 1;
}

body.category-chiebijin-oita-sake-nakano .bg-card__image img,
body.category-sake-eks .bg-card__image img {
  object-fit: contain;
}

body.category-chiebijin-oita-sake-nakano .bg-card h2,
body.category-sake-eks .bg-card h2 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

body.category-chiebijin-oita-sake-nakano .bg-card__body > p:not(.bg-kicker),
body.category-sake-eks .bg-card__body > p:not(.bg-kicker) {
  margin: 14px 0 20px;
  font-family: "BG Shippori", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}


/* Product-only sake maker archives: square artwork and consistent bilingual typography. */
body.category-born-imperial-household .bg-card__image,
body.category-chiebijin-oita-sake-nakano .bg-card__image,
body.category-sake-eks .bg-card__image,
body.category-sake-four-fox .bg-card__image,
body.category-gikyo-sake-aichi .bg-card__image,
body.category-toyama-fumigiku .bg-card__image,
body.category-sake-fukuoka .bg-card__image,
body.category-jokigen-yamahai-sake .bg-card__image,
body.category-nakata-hidetoshi-japan-craft-sake-company .bg-card__image,
body.category-kagura-kyoto-matsui-brewery .bg-card__image,
body.category-kid-muryozan-heiwa .bg-card__image,
body.category-kinryo .bg-card__image,
body.category-sake-kinu-no-mine .bg-card__image,
body.category-kotsuzumi-plumtonic .bg-card__image,
body.category-librom-fukuoka .bg-card__image,
body.category-mizubasho-sake-gunma .bg-card__image,
body.category-n-by-hidetoshi-nakata .bg-card__image,
body.category-noguchi-naohiko-ishikawa .bg-card__image,
body.category-sake-hundred .bg-card__image,
body.category-shichida .bg-card__image,
body.category-shichiken .bg-card__image,
body.category-tamagawa-sake-philip-harper .bg-card__image,
body.category-tanaka-rokujugo-sake-fukuoka .bg-card__image,
body.category-sake-tatenokawa .bg-card__image,
body.category-sake-tosatsuru .bg-card__image,
body.category-yamagata-rokkasen .bg-card__image,
body.category-yuki-no-bijin .bg-card__image {
  aspect-ratio: 1 / 1;
}

body.category-born-imperial-household .bg-card__image img,
body.category-chiebijin-oita-sake-nakano .bg-card__image img,
body.category-sake-eks .bg-card__image img,
body.category-sake-four-fox .bg-card__image img,
body.category-gikyo-sake-aichi .bg-card__image img,
body.category-toyama-fumigiku .bg-card__image img,
body.category-sake-fukuoka .bg-card__image img,
body.category-jokigen-yamahai-sake .bg-card__image img,
body.category-nakata-hidetoshi-japan-craft-sake-company .bg-card__image img,
body.category-kagura-kyoto-matsui-brewery .bg-card__image img,
body.category-kid-muryozan-heiwa .bg-card__image img,
body.category-kinryo .bg-card__image img,
body.category-sake-kinu-no-mine .bg-card__image img,
body.category-kotsuzumi-plumtonic .bg-card__image img,
body.category-librom-fukuoka .bg-card__image img,
body.category-mizubasho-sake-gunma .bg-card__image img,
body.category-n-by-hidetoshi-nakata .bg-card__image img,
body.category-noguchi-naohiko-ishikawa .bg-card__image img,
body.category-sake-hundred .bg-card__image img,
body.category-shichida .bg-card__image img,
body.category-shichiken .bg-card__image img,
body.category-tamagawa-sake-philip-harper .bg-card__image img,
body.category-tanaka-rokujugo-sake-fukuoka .bg-card__image img,
body.category-sake-tatenokawa .bg-card__image img,
body.category-sake-tosatsuru .bg-card__image img,
body.category-yamagata-rokkasen .bg-card__image img,
body.category-yuki-no-bijin .bg-card__image img {
  object-fit: contain;
}

body.category-born-imperial-household .bg-card h2,
body.category-chiebijin-oita-sake-nakano .bg-card h2,
body.category-sake-eks .bg-card h2,
body.category-sake-four-fox .bg-card h2,
body.category-gikyo-sake-aichi .bg-card h2,
body.category-toyama-fumigiku .bg-card h2,
body.category-sake-fukuoka .bg-card h2,
body.category-jokigen-yamahai-sake .bg-card h2,
body.category-nakata-hidetoshi-japan-craft-sake-company .bg-card h2,
body.category-kagura-kyoto-matsui-brewery .bg-card h2,
body.category-kid-muryozan-heiwa .bg-card h2,
body.category-kinryo .bg-card h2,
body.category-sake-kinu-no-mine .bg-card h2,
body.category-kotsuzumi-plumtonic .bg-card h2,
body.category-librom-fukuoka .bg-card h2,
body.category-mizubasho-sake-gunma .bg-card h2,
body.category-n-by-hidetoshi-nakata .bg-card h2,
body.category-noguchi-naohiko-ishikawa .bg-card h2,
body.category-sake-hundred .bg-card h2,
body.category-shichida .bg-card h2,
body.category-shichiken .bg-card h2,
body.category-tamagawa-sake-philip-harper .bg-card h2,
body.category-tanaka-rokujugo-sake-fukuoka .bg-card h2,
body.category-sake-tatenokawa .bg-card h2,
body.category-sake-tosatsuru .bg-card h2,
body.category-yamagata-rokkasen .bg-card h2,
body.category-yuki-no-bijin .bg-card h2 {
  font-family: Cormorant, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

body.category-born-imperial-household .bg-card__body > p:not(.bg-kicker),
body.category-chiebijin-oita-sake-nakano .bg-card__body > p:not(.bg-kicker),
body.category-sake-eks .bg-card__body > p:not(.bg-kicker),
body.category-sake-four-fox .bg-card__body > p:not(.bg-kicker),
body.category-gikyo-sake-aichi .bg-card__body > p:not(.bg-kicker),
body.category-toyama-fumigiku .bg-card__body > p:not(.bg-kicker),
body.category-sake-fukuoka .bg-card__body > p:not(.bg-kicker),
body.category-jokigen-yamahai-sake .bg-card__body > p:not(.bg-kicker),
body.category-nakata-hidetoshi-japan-craft-sake-company .bg-card__body > p:not(.bg-kicker),
body.category-kagura-kyoto-matsui-brewery .bg-card__body > p:not(.bg-kicker),
body.category-kid-muryozan-heiwa .bg-card__body > p:not(.bg-kicker),
body.category-kinryo .bg-card__body > p:not(.bg-kicker),
body.category-sake-kinu-no-mine .bg-card__body > p:not(.bg-kicker),
body.category-kotsuzumi-plumtonic .bg-card__body > p:not(.bg-kicker),
body.category-librom-fukuoka .bg-card__body > p:not(.bg-kicker),
body.category-mizubasho-sake-gunma .bg-card__body > p:not(.bg-kicker),
body.category-n-by-hidetoshi-nakata .bg-card__body > p:not(.bg-kicker),
body.category-noguchi-naohiko-ishikawa .bg-card__body > p:not(.bg-kicker),
body.category-sake-hundred .bg-card__body > p:not(.bg-kicker),
body.category-shichida .bg-card__body > p:not(.bg-kicker),
body.category-shichiken .bg-card__body > p:not(.bg-kicker),
body.category-tamagawa-sake-philip-harper .bg-card__body > p:not(.bg-kicker),
body.category-tanaka-rokujugo-sake-fukuoka .bg-card__body > p:not(.bg-kicker),
body.category-sake-tatenokawa .bg-card__body > p:not(.bg-kicker),
body.category-sake-tosatsuru .bg-card__body > p:not(.bg-kicker),
body.category-yamagata-rokkasen .bg-card__body > p:not(.bg-kicker),
body.category-yuki-no-bijin .bg-card__body > p:not(.bg-kicker) {
  margin: 14px 0 20px;
  font-family: "BG Shippori", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
