:root {
  --black: #050505;
  --ink: #0b0b0c;
  --panel: #111113;
  --panel-2: #171719;
  --line: #d6b15c;
  --gold: #d6b15c;
  --gold-soft: #f1d58f;
  --red: #9f1f1f;
  --red-deep: #641010;
  --text: #f4efe5;
  --muted: #b7afa2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --container: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

.br-pc {
  display: inline;
}

.br-sp {
  display: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #050505;
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  padding: 20px 0;
  line-height: 1.1;
}

.brand-mark,
.footer-logo {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: min(320px, 52vw);
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav li {
  position: relative;
}

.global-nav a {
  display: block;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  padding: 6px 0;
}

.global-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 190px;
  display: grid;
  gap: 0;
  padding: 10px 0;
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.global-nav li:hover > .sub-menu,
.global-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.global-nav .sub-menu a {
  padding: 9px 16px;
  white-space: nowrap;
}

.global-nav .menu-item-fish-mega {
  position: static;
}

.global-nav .menu-item-fish-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
  display: none;
  z-index: 1;
}

.global-nav .menu-item-fish-mega:hover::after,
.global-nav .menu-item-fish-mega:focus-within::after,
.global-nav .menu-item-fish-mega.is-mega-open::after {
  display: block;
}

.global-nav .menu-item-fish-mega > .sub-menu {
  left: 50%;
  right: auto;
  top: calc(100% - 1px);
  z-index: 3;
  width: 100vw;
  min-width: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  padding: 22px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(5, 5, 5, 0.97);
  border-width: 1px 0;
}

.global-nav .menu-item-fish-mega:hover > .sub-menu,
.global-nav .menu-item-fish-mega:focus-within > .sub-menu,
.global-nav .menu-item-fish-mega > .sub-menu:hover,
.global-nav .menu-item-fish-mega.is-mega-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.global-nav .menu-item-fish-mega > .sub-menu > li {
  min-width: 0;
}

.global-nav .menu-item-fish-mega > .sub-menu::before {
  content: "商品カテゴリー";
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.global-nav .menu-item-fish-mega > .sub-menu a {
  min-height: 128px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.86)),
    var(--panel);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  white-space: normal;
}

.global-nav .menu-item-fish-mega > .sub-menu a:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

.global-nav .menu-item-fish-mega > .sub-menu .mega-archive-link {
  grid-column: 1 / -1;
  justify-self: end;
}

.global-nav .menu-item-fish-mega > .sub-menu .mega-archive-link a {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 15px;
}

.global-nav .menu-item-fish-mega > .sub-menu .mega-archive-link a::after {
  content: "→";
  display: inline-block;
  transition: transform 0.18s ease;
}

.global-nav .menu-item-fish-mega > .sub-menu .mega-archive-link a:hover::after {
  transform: translateX(4px);
}

.global-nav a:hover,
.text-link:hover {
  color: var(--gold-soft);
}

.global-nav .current-menu-item > a,
.global-nav .current-menu-ancestor > a,
.global-nav .current_page_item > a,
.global-nav .current_page_ancestor > a,
.global-nav .current-menu-parent > a,
.global-nav .current-post-type-archive > a,
.global-nav .current-menu-item > a:hover,
.global-nav .current-menu-ancestor > a:hover {
  color: var(--gold);
}

.global-nav .current-menu-item > a,
.global-nav .current-menu-ancestor > a,
.global-nav .current_page_item > a,
.global-nav .current_page_ancestor > a,
.global-nav .current-menu-parent > a,
.global-nav .current-post-type-archive > a {
  position: relative;
}

.global-nav .current-menu-item > a::after,
.global-nav .current-menu-ancestor > a::after,
.global-nav .current_page_item > a::after,
.global-nav .current_page_ancestor > a::after,
.global-nav .current-menu-parent > a::after,
.global-nav .current-post-type-archive > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  border: 1px solid rgba(159, 31, 31, 0.9);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-contact-btn .btn-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.header-contact-btn .btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.global-nav .mobile-nav-contact {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 150px);
  display: grid;
  align-items: end;
  padding: 130px 0 88px;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.64) 45%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.35) 48%, rgba(5, 5, 5, 0.92) 100%),
    radial-gradient(circle at 78% 62%, rgba(159, 31, 31, 0.22), transparent 28%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #050505;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    var(--hero-visual-image, url("../images/hero-bg.jpg"));
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  transform: scale(1);
  animation: hero-visual-zoom-in 9s ease-out forwards;
}

.hero-visual-intro {
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-visual-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes hero-visual-zoom-in {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  animation: hero-video-soft-in 2.2s ease 0.2s forwards;
  pointer-events: none;
}

@keyframes hero-video-soft-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.86;
  }
}

@media (min-width: 861px) {
  .hero-pc-overlay-disabled::before {
    display: none;
  }

  .hero-pc-overlay-disabled .hero-video {
    animation-name: hero-video-soft-in-full;
  }
}

@keyframes hero-video-soft-in-full {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-video-file {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

.hero-video-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.28;
  font-weight: 800;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 82px);
}

.single-fish h1 {
  font-size: 54px;
}

.single-supply .product-heading h1,
.single-bait .product-heading h1 {
  font-size: clamp(32px, 4vw, 46px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 20px;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(23px, 4.7vw, 66px);
}

.hero p:not(.eyebrow) {
  max-width: 920px;
  margin: 0;
  font-size: clamp(20px, 3.6vw, 52px);
  line-height: 1.35;
  color: rgba(248, 244, 232, 0.9);
}

.hero-social-links {
  position: absolute;
  top: 50%;
  right: 28px;
  z-index: 4;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-social-link {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(214, 177, 92, 0.5);
  background: rgba(5, 5, 5, 0.76);
  color: var(--gold);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-social-link:hover {
  transform: translateX(-4px);
  border-color: var(--gold-soft);
  background: rgba(5, 5, 5, 0.94);
  color: var(--gold-soft);
}

.hero-social-link i {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.hero-social-link .btn-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
}

.hero-social-link .btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-contact-btn .btn-icon i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.hero-social-youtube .btn-icon svg,
.hero-social-facebook .btn-icon svg {
  fill: currentColor;
  stroke: none;
}

.hero-social-contact {
  border-color: rgba(159, 31, 31, 0.72);
  color: #fff;
  background: rgba(91, 15, 18, 0.88);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cta-buttons.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(214, 177, 92, 0.36);
  border-radius: 2px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.btn span {
  font-family: Georgia, "Times New Roman", serif;
}

.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.kk-back-icon {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.btn .btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-youtube .btn-icon svg,
.btn-facebook .btn-icon svg {
  fill: currentColor;
  stroke: none;
}

.btn-gold {
  background: linear-gradient(135deg, #b98b35, #f1d58f 45%, #9e7428);
  color: #130d04;
  text-decoration: none;
}

.btn-gold:hover,
.btn-gold:focus {
  color: #130d04;
  text-decoration: none;
}

.btn-red {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fff;
  border-color: rgba(159, 31, 31, 0.8);
}

.btn-dark,
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-instagram:hover {
  border-color: #d94f8c;
}

.btn-youtube:hover {
  border-color: #c4302b;
}

.btn-facebook:hover {
  border-color: #4f79c7;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.2s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.genre-card.reveal-item:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, #070707, #101012);
  border-top: 1px solid rgba(214, 177, 92, 0.12);
  border-bottom: 1px solid rgba(214, 177, 92, 0.12);
}

.front-news-section {
  display: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(16, 16, 18, 0.82)),
    url("../images/bg-gorilla06.png") right bottom / min(500px, 42vw) auto no-repeat,
    #101012;
}

.front-stock-section {
  display: none;
}

.front-voice-section {
  display: none;
}

.front-lineup-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.front-category-sidebar {
  position: sticky;
  top: 128px;
}

.front-category-sidebar .section-head {
  /* margin-bottom: 22px; */
}

.front-category-sidebar h2 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.front-sidebar-genre-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.front-sidebar-genre-grid .genre-card {
  min-height: 76px;
}

.front-sidebar-genre-grid .genre-card span {
  font-size: 16px;
}

.front-sidebar-extra-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.genre-card-bait {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)), url("../images/bait-category01.jpg");
}

.genre-card-aquarium {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)), url("../images/aquarium-category01.jpg");
}

.genre-card .label-sp {
  display: none;
}

.front-category-sidebar .front-fish-tag-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

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

.front-feature-grid .feature-panel {
  justify-content: flex-start;
}

.front-feature-grid .feature-panel > .btn,
.front-feature-grid .feature-panel > .cta-buttons {
  margin-top: auto;
}

.front-feature-grid a.feature-panel {
  position: relative;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.front-feature-grid a.feature-panel:hover {
  border-color: var(--gold-soft);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.feature-panel-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 177, 92, 0.7);
  background: rgba(5, 5, 5, 0.72);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-panel-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.18s ease;
}

.front-feature-grid a.feature-panel:hover .feature-panel-link::after {
  transform: translateX(5px);
}

.front-feature-free-area {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 177, 92, 0.22);
}

.front-feature-free-area.has-image.has-body {
  grid-template-columns: minmax(180px, 36%) minmax(0, 1fr);
}

.front-feature-free-image {
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  background: var(--panel-2);
}

.front-feature-free-image a,
.front-feature-free-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.front-feature-free-image img {
  object-fit: cover;
}

.front-feature-free-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.front-feature-free-body h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.3vw, 34px);
}

.front-feature-free-text {
  color: var(--muted);
}

.front-feature-free-text p {
  margin: 0 0 10px;
}

.front-feature-free-text p:last-child {
  margin-bottom: 0;
}

.front-feature-free-body .btn {
  align-self: flex-start;
  margin-top: 18px;
}

.feature-sns-buttons {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.feature-sns-buttons a {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(214, 177, 92, 0.7);
  background: rgba(5, 5, 5, 0.72);
  transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.feature-sns-buttons a:hover {
  border-color: var(--gold-soft);
  filter: brightness(1.1);
  transform: translateY(-3px);
}

.feature-sns-buttons img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-sns-back span {
  color: var(--gold);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.front-info-section {
  padding: 22px 0;
  border-top: 1px solid rgba(214, 177, 92, 0.22);
  border-bottom: 1px solid rgba(214, 177, 92, 0.22);
  background: rgba(255, 255, 255, 0.012);
}

.front-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.front-info-panel {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 16px 18px;
  border-left: 1px solid rgba(214, 177, 92, 0.22);
}

.front-info-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 30px);
}

.front-info-panel p:not(.eyebrow) {
  color: var(--muted);
}

.front-info-panel p.front-info-address {
  width: fit-content;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.45;
}

.front-info-panel p.front-info-address span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.front-info-map .map-wrap,
.front-info-map .map-wrap iframe {
  min-height: 180px;
}

.front-info-map .map-wrap {
  flex: 1 1 auto;
  box-shadow: none;
}

.front-info-contact .btn {
  margin-top: auto;
  align-self: flex-start;
}

.front-info-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.front-info-contact-actions .btn {
  margin-top: 0;
  min-height: 46px;
  padding-right: 16px;
  padding-left: 16px;
}

.front-info-phones {
  display: grid;
  gap: 7px;
  margin: 10px 0 12px;
}

.front-info-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  text-decoration: none;
}

.front-info-phone span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.front-info-phone:hover {
  color: var(--gold-soft);
}

.front-info-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.front-info-sns a {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(214, 177, 92, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.front-info-sns a:hover {
  border-color: var(--gold);
  background: rgba(214, 177, 92, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.front-info-sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-info-sns-back span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.front-info-sns .btn-icon {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 18px;
}

.front-info-image {
  flex: 1 1 auto;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 92, 0.28);
  background: var(--panel-2);
}

.front-info-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.front-info-placeholder {
  display: grid;
  place-items: center;
  flex: 1 1 auto;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(214, 177, 92, 0.28);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  text-align: center;
}

.business-calendar {
  display: grid;
  gap: 10px;
}

.business-calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
}

.business-calendar-head p {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.business-calendar-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(214, 177, 92, 0.46);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.business-calendar-head button:disabled {
  opacity: 0.28;
  cursor: default;
}

.business-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.business-calendar-weekday {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.business-calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 35px;
  border: 1px solid rgba(214, 177, 92, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
}

.business-calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.business-calendar-day.is-today {
  border-color: var(--gold);
}

.business-calendar-day.is-closed {
  background: rgba(159, 31, 31, 0.24);
  color: #fff;
}

.business-calendar-day em {
  position: absolute;
  right: 2px;
  bottom: 2px;
  color: #ffb0a8;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.business-calendar-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.business-calendar-note span {
  width: 12px;
  height: 12px;
  background: rgba(159, 31, 31, 0.34);
  border: 1px solid rgba(214, 177, 92, 0.18);
}

.section-head {
  /* margin-bottom: 34px; */
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-button-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.genre-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.genre-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.front-category-sidebar .genre-grid.front-sidebar-genre-grid {
  grid-template-columns: 1fr !important;
}

.genre-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.genre-card:hover {
  border-color: rgba(214, 177, 92, 0.55);
  transform: translateY(-2px);
}

.genre-card-bait {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)), url("../images/bait-category01.jpg");
}

.genre-card-aquarium {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)), url("../images/aquarium-category01.jpg");
}

.supply-genre-grid .genre-card {
  min-height: 0;
}

.genre-card span {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.genre-card small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(214, 177, 92, 0.18);
  box-shadow: var(--shadow);
}

.post-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.voice-scroll-shell {
  position: relative;
}

.voice-scroll-shell > .voice-scroll-grid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.voice-scroll-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 14px;
}

.voice-scroll-grid .card {
  scroll-snap-align: start;
}

.voice-scroll-grid::-webkit-scrollbar {
  display: none;
}

.voice-scroll-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.84);
  color: var(--gold);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.voice-scroll-arrow:hover {
  background: var(--gold);
  color: #100b04;
}

.voice-scroll-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice-scroll-arrow-prev {
  left: -4px;
}

.voice-scroll-arrow-next {
  right: -4px;
}

.voice-scroll-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.fish-filter-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.card-link {
  display: block;
  height: 100%;
}

.card-image,
.product-image,
.single-main-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, #111, #1d1713);
}

.card-image {
  aspect-ratio: 1.35 / 1;
}

.card-image img,
.product-image img,
.single-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 22px;
}

.card-body p {
  color: var(--muted);
}

.image-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(214, 177, 92, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.sold-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  background: rgba(159, 31, 31, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.card-category-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(214, 177, 92, 0.58);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.feature-grid,
.shop-grid,
.product-detail,
.contact-grid,
.news-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.feature-panel,
.contact-panel {
  padding: 47px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-panel.accent-red {
  background: linear-gradient(145deg, rgba(159, 31, 31, 0.22), rgba(17, 17, 19, 1) 55%);
}

.feature-panel.feature-purchase {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla01.jpg");
}

.feature-panel.feature-trade {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla03.jpg");
}

.feature-panel.feature-event {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla08.jpg");
}

.feature-panel.feature-news {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla09.jpg");
}

.feature-panel.feature-sns {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla10.jpg");
}

.feature-panel.feature-blank {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla11.jpg");
}

.feature-panel.feature-aquarium-sales {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla04.jpg");
}

.feature-panel.feature-order-aquarium {
  background-image: linear-gradient(270deg, rgba(5, 5, 5, 0.24), rgb(20 4 4 / 90%)), url("../images/bg-gorilla05.jpg");
}

.front-feature-grid .feature-panel.feature-news {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla02.jpg");
}

.front-feature-grid .feature-panel.feature-event {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla08.jpg");
}

.front-feature-grid .feature-panel.feature-purchase {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla01.jpg");
}

.front-feature-grid .feature-panel.feature-trade {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla03.jpg");
}

.front-feature-grid .feature-panel.feature-blank {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla11.jpg");
}

.front-feature-grid .feature-panel.feature-sns {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 55%, rgba(110, 18, 20, 0.24) 100%), url("../images/text-bg-nogorilla10.jpg");
}

.feature-panel.feature-order-aquarium h2 {
  font-size: 40px;
}

.feature-panel .cta-buttons {
  margin-top: 18px;
}

.feature-panel .cta-buttons .btn {
  min-height: 42px;
  padding: 10px 14px;
}

.feature-panel p,
.contact-panel p,
.shop-grid p {
  color: var(--muted);
}

.kk-mw-form {
  display: grid;
  gap: 22px;
}

.kk-mw-form__lead {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.kk-mw-form__row {
  display: grid;
  gap: 10px;
}

.kk-mw-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kk-mw-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.kk-mw-form__required,
.kk-mw-form__optional {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.kk-mw-form__required {
  background: var(--red);
  color: #fff;
}

.kk-mw-form__optional {
  border: 1px solid var(--line);
  color: var(--gold);
}

.kk-mw-form input[type="text"],
.kk-mw-form input[type="email"],
.kk-mw-form input[type="tel"],
.kk-mw-form select,
.kk-mw-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kk-mw-form textarea {
  min-height: 170px;
  resize: vertical;
}

.kk-mw-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.kk-mw-form select option {
  background: #fff;
  color: #111;
}

.kk-mw-form input:focus,
.kk-mw-form select:focus,
.kk-mw-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(214, 177, 92, 0.16);
}

.kk-mw-form input::placeholder,
.kk-mw-form textarea::placeholder {
  color: rgba(245, 242, 232, 0.45);
}

.kk-mw-form__check {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.kk-mw-form__check label,
.kk-mw-form .horizontal-item,
.kk-mw-form .vertical-item {
  color: var(--muted);
  line-height: 1.8;
}

.kk-mw-form__check input {
  margin-right: 8px;
  accent-color: var(--gold);
}

.kk-mw-form__privacy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.kk-mw-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
}

.kk-mw-form__actions input[type="submit"],
.kk-mw-form__actions button {
  min-width: 190px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--gold);
  color: #070707;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.kk-mw-form__actions input[type="submit"]:hover,
.kk-mw-form__actions button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.kk-mw-form__actions input[name*="back"] {
  border-color: var(--line);
  background: transparent;
  color: var(--gold);
}

.mw_wp_form .error {
  margin-top: 8px;
  color: #ffb0a8;
  font-size: 13px;
  font-weight: 700;
}

.feature-panel p {
  max-width: 70%;
}

.shop-name {
  margin: 18px 0 26px;
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 0 22px rgba(214, 177, 92, 0.18);
}

.shop-name span {
  color: #b88a32;
  font-size: 0.72em;
}

.shop-info {
  margin: 0 0 22px;
  padding: 4px 0;
  border-top: 1px solid rgba(214, 177, 92, 0.45);
  border-bottom: 1px solid rgba(214, 177, 92, 0.45);
}

.shop-info div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.shop-info div:last-child {
  border-bottom: 0;
}

.shop-info dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.shop-info dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.shop-info a {
  color: var(--text);
}

.list-panel {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.list-panel a,
.list-placeholder {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.14);
}

.list-panel time,
.list-placeholder time {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.list-placeholder {
  min-height: 67px;
  pointer-events: none;
}

.list-more-link {
  display: inline-flex;
  justify-content: flex-end;
  margin-top: 18px;
  width: 100%;
}

.list-more-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.list-more-link:hover::after {
  transform: translateX(4px);
}

.map-wrap {
  min-height: 390px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.55), var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.page-hero {
  padding: 120px 0 84px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 78% 30%, rgba(159, 31, 31, 0.26), transparent 28%);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding-top: 86px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gold);
}

.single-fish-breadcrumb {
  padding: 22px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.single-detail-breadcrumb {
  padding: 22px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.single-fish-breadcrumb .breadcrumb,
.single-detail-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.archive-breadcrumb {
  padding: 22px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.archive-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.product-section {
  padding-top: 48px;
}

.single-detail-section {
  padding-top: 48px;
}

.single-detail-heading {
  margin-bottom: 42px;
}

.single-detail-heading h1 {
  max-width: 1040px;
}

.contact-form-inline {
  margin: 34px auto;
  max-width: 920px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.contact-phone-grid {
  grid-template-columns: 1fr;
}

.archive-section {
  padding-top: 48px;
}

.archive-heading {
  margin-bottom: 42px;
}

.archive-heading h1 {
  max-width: 1040px;
}

.archive-list {
  display: grid;
  gap: 22px;
}

.archive-list-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.archive-list-link {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.archive-list-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--panel-2);
}

.archive-list-image img,
.archive-list-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
}

.archive-list-body time {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.archive-list-body h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 34px);
}

.archive-list-body p {
  margin: 0;
  color: var(--muted);
}

.archive-list-link:hover .archive-list-body h2 {
  color: var(--gold);
}

.genre-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.genre-filter a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.archive-genre-grid {
  margin-bottom: 36px;
}

.fish-filter-form {
  margin-bottom: 42px;
}

.filter-genre-option {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.filter-genre-option .genre-card {
  opacity: 0.52;
  filter: saturate(0.65) brightness(0.72);
}

.filter-genre-option > input,
.fish-tag-choice > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.filter-genre-option > input:checked + .genre-card {
  border-color: var(--gold-soft);
  opacity: 1;
  filter: none;
  box-shadow: 0 0 0 2px rgba(214, 177, 92, 0.62), 0 18px 56px rgba(214, 177, 92, 0.16), var(--shadow);
}

.filter-genre-option > input:checked + .genre-card::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #090909;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.filter-genre-option > input:focus-visible + .genre-card,
.fish-tag-choice > input:focus-visible + span {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.fish-tag-list {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(214, 177, 92, 0.18);
  border-bottom: 1px solid rgba(214, 177, 92, 0.18);
}

.front-fish-tag-list {
  margin-top: 28px;
}

.fish-tag-list-title {
  flex: 0 0 auto;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.fish-tag-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
}

.fish-tag-list-items a,
.fish-tag-choice span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 177, 92, 0.28);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.58;
}

.fish-tag-list-items a:hover,
.fish-tag-choice span:hover,
.fish-tag-choice > input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

.fish-tag-choice > input:checked + span {
  background: rgba(214, 177, 92, 0.13);
  box-shadow: 0 0 0 1px rgba(214, 177, 92, 0.34);
}

.fish-tag-list-items a span,
.fish-tag-choice em {
  margin-left: 4px;
  color: var(--gold);
  font-style: normal;
}

.fish-filter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -12px auto 42px;
}

.fish-filter-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.fish-filter-count span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  margin-right: 4px;
}

.fish-stock-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.fish-stock-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.fish-stock-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 5px 12px 5px 7px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 177, 92, 0.24);
  color: var(--muted);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.fish-stock-toggle span::before {
  content: "";
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(214, 177, 92, 0.38);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset -20px 0 0 rgba(5, 5, 5, 0.9);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fish-stock-toggle input:checked + span {
  background: rgba(214, 177, 92, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.fish-stock-toggle input:checked + span::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 20px 0 0 rgba(5, 5, 5, 0.92);
}

.fish-filter-reset {
  margin-left: auto;
}

.product-detail {
  align-items: start;
}

.product-heading {
  margin-bottom: 42px;
}

.product-heading h1 {
  max-width: 1040px;
}

.product-image {
  aspect-ratio: 1.18 / 1;
  border: 1px solid var(--line);
}

.product-info {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.spec-list {
  margin: 0;
  /* border-top: 1px solid var(--line); */
}

.spec-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.14);
}

.spec-list dt {
  color: var(--gold);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--text);
}

.spec-list.compact {
  margin-top: 16px;
}

.spec-list.compact div {
  grid-template-columns: 72px 1fr;
  padding: 8px 0;
}

.point-box {
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--red);
}

.point-box h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.content-body {
  max-width: 880px;
}

.product-detail + .content-body {
  margin-top: 54px;
}

.editor-lp {
  display: grid;
  gap: 10px;
}

.editor-lp-section {
  display: grid;
  gap: 28px;
}

.editor-lp-lead {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.editor-lp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.editor-lp-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-lp-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 177, 92, 0.18);
  box-shadow: var(--shadow);
}

.editor-lp-card h2,
.editor-lp-card h3 {
  margin-bottom: 14px;
}

.editor-lp-card p,
.editor-lp-card li,
.editor-lp-flow li {
  color: var(--muted);
}

.editor-lp-card ul,
.editor-lp-card ol {
  margin: 16px 0 0;
  padding-left: 1.2em;
}

.editor-lp-highlight {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(159, 31, 31, 0.2), rgba(5, 5, 5, 0.6)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 177, 92, 0.26);
}

.editor-lp-highlight p {
  color: var(--text);
  font-size: 18px;
}

.editor-lp-flow {
  counter-reset: lp-flow;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editor-lp-flow li {
  counter-increment: lp-flow;
  position: relative;
  padding: 22px 24px 22px 76px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 177, 92, 0.16);
}

.editor-lp-flow li::before {
  content: counter(lp-flow, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.editor-lp-cta {
  padding: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(159, 31, 31, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(214, 177, 92, 0.11), rgba(5, 5, 5, 0.78));
  border: 1px solid rgba(214, 177, 92, 0.28);
}

.editor-lp-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.editor-lp-cta .btn {
  margin-top: 24px;
}

.content-body h2 {
  margin: 44px 0 18px;
  font-size: 30px;
}

.content-body h3 {
  margin: 32px 0 12px;
}

.content-body p,
.content-body li {
  color: var(--muted);
}

.content-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-body a.btn {
  text-decoration: none;
}

.content-body a.btn-gold,
.content-body a.btn-gold:hover,
.content-body a.btn-gold:focus {
  color: #130d04;
  text-decoration: none;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(214, 177, 92, 0.2);
}

.content-body th,
.content-body td {
  padding: 18px 5px;
  border-bottom: 1px solid rgba(214, 177, 92, 0.14);
  vertical-align: top;
  text-align: left;
}

.content-body tr:last-child th,
.content-body tr:last-child td {
  border-bottom: 0;
}

.content-body th {
  width: 190px;
  background: rgba(214, 177, 92, 0.08);
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.content-body td {
  color: var(--text);
}

.single-main-image {
  aspect-ratio: 1.8 / 1;
  margin-bottom: 36px;
  border: 1px solid var(--line);
}

.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--gold);
}

.page-numbers.current {
  background: var(--gold);
  color: #120d05;
}

.final-cta {
  padding: 90px 0;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(159, 31, 31, 0.16), rgba(5, 5, 5, 1)) center / cover no-repeat,
    url("../images/bg-gorilla07.png") 20% 0% / min(500px, 42vw) auto no-repeat,
    var(--black);
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 860px;
  margin: 0 0 16px;
}

.final-cta .container {
  width: min(760px, calc(100% - 40px));
  margin-right: max(40px, calc((100vw - var(--container)) / 2));
  margin-left: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 52px 0 92px;
  background: #030303;
  border-top: 1px solid rgba(214, 177, 92, 0.16);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
}

.site-footer a {
  color: var(--muted);
}

.copyright {
  width: min(var(--container), calc(100% - 40px));
  margin: 32px auto 0;
  color: #776f65;
  font-size: 12px;
}

.mobile-fixed-cta {
  display: none;
}

@media (min-width: 1801px) {
  .front-info-section > .container,
  .front-lineup-feature-section > .container {
    width: calc(100% - 80px);
    max-width: none;
  }

  .front-lineup-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .front-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .front-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .genre-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(0, 0, 0, 0.52);
  }

  .site-header {
    z-index: 210;
  }

  body.nav-open .mobile-fixed-cta {
    z-index: 100;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .nav-toggle {
    position: relative;
    z-index: 230;
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: min(86vw, 390px);
    padding: calc(135px + env(safe-area-inset-top)) 22px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #050505;
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 52px rgba(0, 0, 0, 0.42);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 220;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .header-contact-btn {
    display: none;
  }

  .global-nav ul {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .global-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav .menu-item-fish-mega > .sub-menu {
    display: none;
  }

  .global-nav .menu-item-fish-mega::after {
    display: none;
  }

  .global-nav a {
    position: relative;
    padding: 15px 34px 15px 0;
    border-bottom: 0;
    font-size: 16px;
  }

  .global-nav a::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 2px;
    color: var(--gold);
    font-size: 16px;
    transform: translateY(-50%);
  }

  .global-nav .current-menu-item > a::after,
  .global-nav .current-menu-ancestor > a::after,
  .global-nav .current_page_item > a::after,
  .global-nav .current_page_ancestor > a::after,
  .global-nav .current-menu-parent > a::after,
  .global-nav .current-post-type-archive > a::after {
    left: auto;
    right: 2px;
    bottom: auto;
    width: auto;
    height: auto;
    background: transparent;
  }

  .global-nav .mobile-nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 13px 18px;
    background: linear-gradient(135deg, var(--red-deep), var(--red));
    border: 1px solid rgba(159, 31, 31, 0.8);
    color: #fff;
    font-weight: 800;
  }

  .global-nav .mobile-nav-contact::after {
    content: none;
  }

  .mobile-nav-contact .btn-icon {
    display: inline-flex;
    width: 19px;
    height: 19px;
  }

  .mobile-nav-contact .btn-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .mobile-nav-contact .btn-icon i {
    display: block;
    font-size: 19px;
    line-height: 1;
  }

.btn .btn-icon i {
  display: block;
  font-size: 20px;
  line-height: 1;
}

  .section,
  .final-cta {
    padding: 68px 0;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 0 0 58px;
    overflow: visible;
  }

  .hero::before {
    display: none;
  }

  .hero-video-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(214, 177, 92, 0.35);
  }

  .hero-video,
  .hero-video-file {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
  }

  .hero-video-file {
    object-fit: contain;
  }

  .hero-video-iframe {
    object-fit: contain;
  }

  .hero-visual {
    background-size: contain;
    background-repeat: no-repeat;
  }

  .hero-copy {
    margin-top: 34px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .front-news-section {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(16, 16, 18, 0.82)),
      url("../images/bg-gorilla06.png") right bottom / min(620px, 54vw) auto no-repeat,
      #101012;
  }

  .final-cta .container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    transform: none;
    text-align: center;
  }

  .final-cta h2,
  .final-cta p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .front-lineup-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .front-info-grid {
    grid-template-columns: 1fr;
  }

  .front-info-panel {
    min-height: 0;
    padding: 16px 0 16px 16px;
  }

  .front-category-sidebar {
    position: static;
    order: 2;
  }

  .front-feature-grid {
    order: 1;
  }

  .front-feature-free-area {
    grid-column: auto;
    grid-template-columns: 1fr;
    order: 1;
  }

  .genre-grid,
  .post-grid,
  .feature-grid,
  .shop-grid,
  .product-detail,
  .contact-grid,
  .news-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fish-tag-list {
    flex-direction: column;
    gap: 12px;
  }

  .fish-stock-toggle {
    margin-left: 0;
    align-self: flex-start;
  }

  .archive-list-link {
    grid-template-columns: 1fr;
  }

  .archive-list-image,
  .archive-list-image img,
  .archive-list-image .image-placeholder {
    min-height: 0;
  }

  .archive-list-body {
    padding: 24px;
  }

  .kk-mw-form__grid {
    grid-template-columns: 1fr;
  }

  .kk-mw-form__actions {
    display: grid;
  }

  .kk-mw-form__actions input[type="submit"],
  .kk-mw-form__actions button {
    width: 100%;
  }

  .editor-lp {
    gap: 48px;
  }

  .editor-lp-grid,
  .editor-lp-grid.two-col {
    grid-template-columns: 1fr;
  }

  .editor-lp-card,
  .editor-lp-highlight,
  .editor-lp-cta {
    padding: 24px;
  }

  .editor-lp-lead,
  .editor-lp-highlight p {
    font-size: 16px;
  }

  .editor-lp-flow li {
    padding: 20px 20px 20px 64px;
  }

  .editor-lp-flow li::before {
    left: 18px;
    font-size: 19px;
  }

  .content-body table,
  .content-body tbody,
  .content-body tr,
  .content-body th,
  .content-body td {
    display: block;
    width: 100%;
  }

  .content-body th {
    padding: 14px 16px 8px;
    border-bottom: 0;
    white-space: normal;
  }

  .content-body td {
    padding: 0 16px 16px;
  }

  .content-body tr {
    border-bottom: 1px solid rgba(214, 177, 92, 0.14);
  }

  .content-body tr:last-child {
    border-bottom: 0;
  }

  .content-body .editor-lp-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-body .editor-lp-card table {
    display: table;
    min-width: 680px;
  }

  .content-body .editor-lp-card thead {
    display: table-header-group;
  }

  .content-body .editor-lp-card tbody {
    display: table-row-group;
  }

  .content-body .editor-lp-card tr {
    display: table-row;
    border-bottom: 0;
  }

  .content-body .editor-lp-card th,
  .content-body .editor-lp-card td {
    display: table-cell;
    width: auto;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(214, 177, 92, 0.14);
    white-space: nowrap;
  }

  .content-body .editor-lp-card th {
    min-width: 120px;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .voice-scroll-grid {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  body.home .post-grid:not(.voice-scroll-grid) {
    grid-template-columns: 1fr;
  }

  body.home .voice-scroll-grid {
    grid-auto-columns: min(88%, 420px);
  }

  body.home .voice-scroll-grid .card-link {
    display: block;
    min-height: 0;
  }

  body.home .voice-scroll-grid .card-image {
    aspect-ratio: 1.35 / 1;
    height: auto;
    min-height: 0;
  }

  body.home .voice-scroll-grid .card-body {
    display: block;
    padding: 18px;
  }

  body.home .voice-scroll-grid .card-body p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card-link {
    display: grid;
    grid-template-columns: minmax(128px, 38%) 1fr;
    min-height: 150px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .image-placeholder {
    min-height: 150px;
    padding: 12px;
    font-size: 11px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card-body .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.35;
  }

  body.home .post-grid:not(.voice-scroll-grid) .card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.7;
  }

  body.home .post-grid:not(.voice-scroll-grid) .spec-list.compact {
    margin-top: 8px;
  }

  body.home .post-grid:not(.voice-scroll-grid) .spec-list.compact div {
    grid-template-columns: 52px 1fr;
    gap: 8px;
    padding: 4px 0;
    font-size: 12px;
  }

  .voice-scroll-arrow {
    width: 40px;
    height: 40px;
  }

  .voice-scroll-arrow svg {
    width: 20px;
    height: 20px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card-category-label {
    top: auto;
    bottom: 10px;
    left: 10px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    display: block;
  }

  .feature-panel,
  .contact-panel,
  .product-info {
    padding: 28px;
  }

  .feature-panel p {
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .mobile-fixed-cta {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(214, 177, 92, 0.36);
    background: rgba(8, 8, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-fixed-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: var(--gold);
    font-weight: 800;
  }

  .mobile-fixed-cta a + a {
    border-left: 1px solid rgba(214, 177, 92, 0.2);
  }
}

@media (max-width: 560px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 0;
    padding: 0 0 52px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-visual {
    background-image:
      var(--hero-visual-image-mobile, var(--hero-visual-image, url("../images/hero-bg.jpg")));
  }

  h1 {
    font-size: 36px;
  }

  .single-fish h1 {
    font-size: 40px;
  }

  .single-supply .product-heading h1,
  .single-bait .product-heading h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 31px;
  }

  .feature-panel.feature-order-aquarium h2 {
    font-size: 31px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .cta-buttons {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .genre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-category-sidebar .genre-grid.front-sidebar-genre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .genre-card .label-pc {
    display: none;
  }

  .genre-card .label-sp {
    display: inline;
  }

  .genre-card {
    min-height: 132px;
    padding: 11px;
  }

  .supply-genre-grid .genre-card {
    min-height: 0;
  }

  .list-panel a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-list div {
    grid-template-columns: 92px 1fr;
  }

  .page-hero {
    padding: 72px 0 56px;
  }
}
