@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --color-bg-primary: #f7f6f2;
  --color-bg-secondary: #fffefa;
  --color-bg-tertiary: #eceae4;
  --color-text-primary: #20242a;
  --color-text-secondary: #59616b;
  --color-text-muted: #747982;
  --color-accent-gold: #d71920;
  --color-accent-silver: #2f6f6a;
  --color-border: #ddd9d1;
  --color-header: #07111d;
  --font-family-base: 'Inter', 'Noto Sans JP', sans-serif;
  --font-family-display: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  --container-width: 1168px;
  --header-height: 72px;
  --shadow-soft: 0 8px 24px rgba(20, 24, 28, 0.08);
  --bg: #f7f6f2;
  --card-bg: #fffefa;
  --fg: #20242a;
  --muted: #59616b;
  --line: #ddd9d1;
  --accent: #d71920;
  --font-main: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  --font-body: 'Inter', 'Noto Sans JP', sans-serif;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

img {
  max-width: 100%;
}

/* Imagegen-like spacing system: calmer width, more breathing room */
.container {
  max-width: var(--container-width);
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
}

.section {
  padding-top: clamp(80px, 7vw, 112px);
  padding-bottom: clamp(80px, 7vw, 112px);
}

.page-header,
.product-header {
  padding-top: calc(var(--header-height) + clamp(72px, 6vw, 96px)) !important;
  padding-bottom: clamp(64px, 6vw, 86px) !important;
}

.page-header .container,
.product-header .container {
  max-width: 980px;
}

.page-header p,
.product-header p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-family-base);
  font-weight: 500;
}

p {
  color: var(--color-text-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.04em;
}

.header {
  height: var(--header-height);
  background: rgba(7, 17, 29, 0.94) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

body > header {
  background: rgba(7, 17, 29, 0.94) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body > header .nav-links a {
  color: rgba(255, 255, 255, 0.78) !important;
}

body > header .nav-links a:hover,
body > header .nav-links a.active {
  color: #fff !important;
}

.logo img {
  height: 34px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-accent-gold);
  margin-top: 8px;
}

.section {
  padding: 76px 0;
}

.section h2,
.product-header h1,
.page-header h1,
.dealer-header h1,
.contact-container h1 {
  color: var(--color-text-primary);
}

.section h2,
.product-header h1,
.page-header h1 {
  text-align: center;
}

.section h2::after,
.product-header h1::after,
.page-header h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--color-accent-gold);
  border-radius: 999px;
}

.btn {
  border-radius: 4px;
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
  background: transparent;
  font-family: var(--font-family-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.btn:hover {
  background: var(--color-text-primary);
  color: #fff;
}

.btn-primary {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: #fff;
}

.btn-primary:hover {
  background: #b7141b;
  border-color: #b7141b;
  color: #fff;
}

.card,
.product-card,
.blog-card,
.contact-container,
.map-section,
.shop-card {
  background: var(--color-bg-secondary);
  border-color: var(--color-border);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.hero {
  color: #fff;
}

.home-hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 29, 0.70), rgba(7, 17, 29, 0.24));
  z-index: 0;
  pointer-events: none;
}

.home-hero .hero-content,
.about-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
}

.home-hero p {
  color: #fff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.home-hero h1,
.home-hero p,
.home-hero .btn {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.trust-badge img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.categories-grid {
  gap: 24px;
}

.category-card {
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.category-badges {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  max-width: calc(100% - 28px);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(7, 17, 29, 0.12);
}

.category-badge img {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.category-overlay {
  background: linear-gradient(to top, rgba(7, 17, 29, 0.88), rgba(7, 17, 29, 0.10));
}

.category-title {
  font-size: 2rem;
}

.category-overlay p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.page-header,
.product-header {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-border);
}

.page-header p,
.product-header p,
.dealer-header p {
  color: var(--color-text-secondary);
}

.filter-btn {
  color: var(--color-text-secondary);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}

.product-card:hover,
.blog-card:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-4px);
}

.product-title,
.product-price,
.blog-card-title,
.news-title {
  color: var(--color-text-primary);
}

.product-price,
.news-category,
.faq-category-title,
.faq-q-mark,
.faq-q::after {
  color: var(--color-accent-gold);
}

.product-desc,
.blog-card-excerpt,
.article-body,
.faq-a,
.shop-info,
.contact-info {
  color: var(--color-text-secondary);
}

.blog-thumb,
.product-image {
  background: #e1dbd0;
}

.news-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(20, 24, 28, 0.04);
}

.news-item:hover .news-title {
  color: var(--color-accent-gold);
}

.faq-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 0 22px;
}

.faq-category-title {
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 12px;
}

.about-hero {
  position: relative;
}

.about-content {
  color: var(--color-text-primary);
  line-height: 1.95;
}

.tech-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.tech-item h3 {
  color: var(--color-accent-gold) !important;
}

details {
  border-color: var(--color-border) !important;
}

.dealer-container {
  color: var(--color-text-primary);
}

.region-path {
  fill: #e1dbd0;
  stroke: var(--color-border);
}

.region-path:hover {
  fill: var(--color-accent-gold);
  filter: none;
}

.region-label {
  fill: var(--color-text-secondary);
}

.region-title::after {
  background: var(--color-border);
}

.prefecture-name {
  color: var(--color-accent-gold);
  border-left-color: var(--color-accent-gold);
}

.form-input,
.form-textarea {
  background: #fbfaf6;
  border-color: var(--color-border);
  color: var(--color-text-primary);
  border-radius: 4px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.10);
}

.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
  text-align: left;
}

.footer-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 190px minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.footer-nav,
.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav {
  gap: clamp(18px, 2.1vw, 30px);
}

.footer-meta {
  justify-content: flex-end;
  gap: 24px;
}

.footer-nav a,
.footer-meta a,
.footer-meta span {
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--color-accent-gold);
}

.hero-pill {
  color: var(--color-accent-gold) !important;
  border-left-color: var(--color-accent-gold) !important;
}

.hero-h1 {
  color: var(--color-text-primary) !important;
}

.hero-h2 {
  color: var(--color-text-secondary) !important;
}

.hero-slider,
.geo-table-container,
.material-card,
.highlight-box,
.spec-card {
  background: var(--color-bg-secondary) !important;
  border-color: var(--color-border) !important;
  box-shadow: var(--shadow-soft);
}

.geometry-section,
.specs-section,
.gallery-section,
.related-section {
  background: var(--color-bg-primary) !important;
  border-top-color: var(--color-border) !important;
}

.geo-table th,
.geo-table td {
  border-color: var(--color-border) !important;
}

.geo-table th,
.geo-table td:first-child {
  background: var(--color-bg-tertiary) !important;
}

.geo-table td {
  color: var(--color-text-primary) !important;
}

.section-title {
  color: var(--color-accent-gold) !important;
}

@media (max-width: 768px) {
  .nav-menu {
    background: rgba(7, 17, 29, 0.97);
  }

  .section {
    padding: 56px 0;
  }

  .home-hero h1 {
    font-size: 2.75rem;
  }

  .category-card {
    height: 320px;
  }

  .news-item {
    padding: 18px;
  }
}

/* Product detail wide sheet: closer to the imagegen reference */
body:has(.product-sheet-section) .product-hero-detail {
  padding-top: 76px !important;
  padding-bottom: 18px !important;
}

body:has(.product-sheet-section) .product-detail-shell,
.product-sheet-container,
.product-gallery-container {
  width: min(calc(100vw - 96px), 1840px) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body:has(.product-sheet-section) .product-detail-shell {
  grid-template-columns: minmax(720px, 1fr) minmax(560px, 640px) !important;
  column-gap: clamp(44px, 4vw, 72px) !important;
  row-gap: 10px !important;
}

body:has(.product-sheet-section) header .nav-wrap {
  width: min(calc(100vw - 96px), 1840px) !important;
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body:has(.product-sheet-section) .product-breadcrumb {
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 7.35 !important;
  margin-top: 0 !important;
  margin-bottom: 72px !important;
  background: #fff !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider .slide img {
  padding: clamp(18px, 2vw, 28px) !important;
  object-fit: contain !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider .ctrl {
  width: 54px !important;
  height: 54px !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider .dot {
  height: 74px !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider .dot img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
}

body:has(.product-sheet-section) .product-hero-info {
  padding-top: 6px !important;
}

body:has(.product-sheet-section) .product-hero-info .hero-h1 {
  font-size: clamp(3.15rem, 3.35vw, 4.1rem) !important;
  line-height: 1 !important;
  white-space: nowrap;
}

body:has(.product-sheet-section) .product-hero-info .hero-h2 {
  max-width: 620px !important;
  margin-bottom: 18px !important;
  padding-bottom: 20px !important;
  font-size: clamp(1rem, 1.08vw, 1.14rem) !important;
  font-weight: 700 !important;
}

body:has(.product-sheet-section) .product-hero-info .price-tag {
  margin-bottom: 14px !important;
  font-size: clamp(2rem, 2.4vw, 2.75rem) !important;
}

body:has(.product-sheet-section) .product-trust-row {
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 16px;
}

body:has(.product-sheet-section) .product-trust-row span {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 1.02rem;
}

body:has(.product-sheet-section) .product-primary-cta {
  width: min(100%, 330px);
  min-height: 52px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

body:has(.product-sheet-section) .product-text-link {
  font-size: 0.98rem;
}

body:has(.product-sheet-section) .product-hero-info .uci-badge {
  width: min(100%, 500px);
  padding: 14px 18px !important;
}

body:has(.product-sheet-section) .product-hero-info .uci-logo {
  height: 48px !important;
}

body:has(.product-sheet-section) .specs-section,
body:has(.product-sheet-section) .geometry-section {
  display: none !important;
}

.product-sheet-section {
  padding: 0 !important;
  background: var(--br-bg-soft);
  border-top: 1px solid var(--br-line);
  border-bottom: 1px solid var(--br-line);
}

.product-sheet-container {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(520px, 0.92fr);
  gap: 0;
  background: rgba(255, 253, 248, 0.86);
  border-right: 1px solid var(--br-line);
  border-left: 1px solid var(--br-line);
}

.product-geometry-panel,
.product-info-panel {
  min-width: 0;
  padding: clamp(22px, 2.6vw, 32px);
}

.product-geometry-panel {
  border-right: 1px solid var(--br-line);
}

.product-geometry-panel h2,
.product-material-strip h2,
.product-spec-panel h2,
.product-gallery-section h2 {
  margin: 0 0 14px !important;
  color: var(--br-ink) !important;
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(1.7rem, 1.9vw, 2.3rem) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.product-geometry-panel > p {
  margin-bottom: 18px;
  color: var(--br-ink);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-geometry-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
}

.product-geometry-image img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}

.product-geometry-table {
  min-width: 0;
}

.product-geometry-table table {
  width: 100%;
  border-collapse: collapse;
  color: var(--br-ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
}

.product-geometry-table th,
.product-geometry-table td {
  padding: 5px 8px;
  border: 1px solid rgba(217, 210, 199, 0.58);
  text-align: center;
  white-space: nowrap;
}

.product-geometry-table td:first-child {
  text-align: left;
  font-size: 0.68rem;
}

.product-info-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.product-material-strip {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--br-line);
}

.product-material-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px 0;
}

.product-material-item {
  position: relative;
  min-width: 0;
  padding: 0 18px 0 56px;
  border-right: 1px solid var(--br-line);
}

.product-material-item:last-child {
  border-right: 0;
}

.product-material-item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  height: 40px;
  background: center / contain no-repeat;
}

.product-material-item:nth-child(1)::before {
  background-image: url("../assets/design-ui/icon-material-grid-dark.svg");
}

.product-material-item:nth-child(2)::before {
  background-image: url("../assets/design-ui/icon-eps-cells-dark.svg");
}

.product-material-item:nth-child(3)::before {
  background-image: url("../assets/design-ui/icon-shield-dark.svg");
}

.product-material-item:nth-child(4)::before {
  background-image: url("../assets/design-ui/icon-dealer-dark.svg");
}

.product-material-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--br-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-material-item span {
  display: block;
  color: var(--br-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.product-spec-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 0;
  margin: 0;
}

.product-spec-panel dl div {
  display: grid;
  grid-template-columns: minmax(92px, 0.52fr) minmax(0, 1fr);
  gap: 12px;
  padding: 4px 0;
}

.product-spec-panel dt,
.product-spec-panel dd {
  margin: 0;
  color: var(--br-ink);
  font-size: clamp(0.75rem, 0.78vw, 0.88rem);
  line-height: 1.6;
}

.product-spec-panel dt {
  font-weight: 900;
}

.product-spec-panel dd {
  color: var(--br-muted);
}

.sheet-note {
  margin: 8px 0 0;
  color: var(--br-muted) !important;
  font-size: 0.72rem;
  text-align: right;
}

.product-gallery-section {
  padding: 22px 0 clamp(56px, 5vw, 78px) !important;
  background: var(--br-bg-soft);
}

.product-gallery-container {
  border-right: 1px solid var(--br-line);
  border-left: 1px solid var(--br-line);
  padding: 22px clamp(22px, 2.6vw, 32px) 0 !important;
}

.product-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-gallery-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.product-gallery-row--contain img {
  object-fit: contain;
  padding: 10px;
}

body:has(img[src$="mount-v2-igp-bina.jpg"]) .product-hero-detail .hero-slider {
  margin-bottom: 150px !important;
}

body:has(img[src$="mount-v2-igp-bina.jpg"]) .product-hero-detail .hero-slider .dots {
  bottom: -144px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-sheet-container--component {
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
}

body:has(.product-sheet-container--component) .product-hero-info .hero-h1 {
  white-space: normal !important;
}

.product-specsheet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.product-specsheet-grid--with-image {
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
}

.product-specsheet-image {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(217, 210, 199, 0.58);
}

.product-specsheet-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}

.product-visual-spec-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--br-ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.76rem, 0.78vw, 0.9rem);
}

.product-visual-spec-table th,
.product-visual-spec-table td {
  padding: 9px 12px;
  border: 1px solid rgba(217, 210, 199, 0.66);
  vertical-align: top;
}

.product-visual-spec-table th {
  width: 34%;
  color: var(--br-ink);
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.product-visual-spec-table td {
  color: var(--br-muted);
  line-height: 1.7;
}

.product-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-feature-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.product-hero-info .product-support-badge {
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 0 !important;
  padding: 14px 18px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 4px;
}

.product-support-mark {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #fff;
  background: linear-gradient(180deg, #e02028, #c70f18);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-support-badge span {
  color: var(--br-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-tech-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-tech-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--br-muted);
  font-size: clamp(0.8rem, 0.82vw, 0.92rem);
  line-height: 1.7;
}

.product-tech-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background: url("../assets/design-ui/icon-check-red.svg") center / contain no-repeat;
}

.product-story-section {
  padding: clamp(46px, 5vw, 74px) 0;
  background: var(--br-bg-soft);
  border-top: 1px solid var(--br-line);
}

.product-story-container {
  width: min(calc(100vw - 96px), 1840px);
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(22px, 2.6vw, 32px);
}

.product-story-container h2 {
  margin: 0 0 18px;
  color: var(--br-ink);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.7rem, 1.9vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-story-body {
  max-width: 980px;
  color: var(--br-muted);
  font-size: 0.98rem;
  line-height: 1.95;
}

.product-story-body h2,
.product-story-body h3 {
  margin-top: 28px;
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 1.12rem;
  line-height: 1.5;
  text-transform: none;
}

.product-story-body p {
  margin: 0 0 16px;
}

.product-story-body strong {
  color: var(--br-ink);
}

.product-compatibility-section {
  padding: clamp(44px, 4.6vw, 72px) 0;
  background: var(--br-bg-soft);
  border-top: 1px solid var(--br-line);
}

.product-compatibility-container {
  width: min(calc(100vw - 96px), 1840px);
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(22px, 2.6vw, 32px);
}

.product-compatibility-heading {
  max-width: 880px;
  margin-bottom: clamp(22px, 2.8vw, 36px);
}

.product-compatibility-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--br-red);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-compatibility-heading h2 {
  margin: 0 0 12px;
  color: var(--br-ink);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.product-compatibility-heading p,
.compatibility-note {
  color: var(--br-muted);
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  line-height: 1.8;
}

.product-compatibility-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: start;
}

.product-compatibility-art {
  margin: 0;
  padding: clamp(12px, 1.2vw, 18px);
  background: #fff;
  border: 1px solid var(--br-line);
  box-shadow: 0 16px 34px rgba(20, 24, 30, 0.06);
}

.product-compatibility-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 980px;
  object-fit: contain;
}

.compatibility-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compatibility-brand-card {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 252, 0.9);
  border: 1px solid var(--br-line);
  border-radius: 4px;
}

.compatibility-brand-card h3 {
  margin: 0 0 8px;
  color: var(--br-ink);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.compatibility-brand-card p {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.compatibility-note {
  margin: clamp(18px, 2vw, 26px) 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 252, 0.82);
  border: 1px solid var(--br-line);
}

.product-related-section {
  padding: clamp(46px, 5vw, 76px) 0 clamp(64px, 6vw, 96px);
  background:
    radial-gradient(circle at 76% 0%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0) 34rem),
    var(--br-bg);
  border-top: 1px solid var(--br-line);
}

.product-related-container {
  width: min(calc(100vw - 96px), 1840px);
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(22px, 2.6vw, 32px);
}

.product-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 2.6vw, 34px);
}

.product-related-heading span {
  color: var(--br-red);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-related-heading h2 {
  margin: 0;
  color: var(--br-ink);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.product-related-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  color: var(--br-ink);
  background: rgba(255, 255, 252, 0.84);
  border: 1px solid var(--br-line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 24, 30, 0.045);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-related-card:hover {
  border-color: rgba(215, 25, 32, 0.42);
  box-shadow: 0 16px 32px rgba(20, 24, 30, 0.08);
  transform: translateY(-3px);
}

.product-related-image {
  display: block;
  padding: 14px;
  background: #fff;
  border-bottom: 1px solid var(--br-line);
}

.product-related-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
}

.product-related-body {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 1.8vw, 24px);
}

.product-related-kicker,
.product-related-price,
.product-related-desc {
  display: block;
}

.product-related-kicker {
  width: fit-content;
  padding: 4px 10px;
  color: var(--br-red);
  background: rgba(215, 25, 32, 0.06);
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-related-body strong {
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.02rem, 1.05vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
}

.product-related-price {
  color: var(--br-ink);
  font-weight: 900;
}

.product-related-desc {
  color: var(--br-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.product-zoomable {
  cursor: zoom-in;
}

.product-zoomable:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.56);
  outline-offset: 4px;
}

.product-lightbox-open,
.product-lightbox-open body {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  grid-template-columns: minmax(48px, 0.1fr) minmax(0, 1fr) minmax(48px, 0.1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(7, 17, 29, 0.94);
  backdrop-filter: blur(8px);
}

.product-lightbox.is-open {
  display: grid;
}

.product-lightbox-close {
  grid-column: 1 / -1;
  justify-self: end;
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font: 800 0.88rem/1 'Inter', 'Noto Sans JP', sans-serif;
  cursor: pointer;
}

.product-lightbox-figure {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
  margin: 0;
}

.product-lightbox-figure img {
  max-width: min(100%, 1680px);
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.product-lightbox-figure figcaption {
  max-width: min(100%, 980px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: center;
}

.product-lightbox-nav {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 52px;
  height: 72px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.product-lightbox-prev {
  grid-column: 1;
}

.product-lightbox-next {
  grid-column: 3;
}

@media (max-width: 1480px) {
  body:has(.product-sheet-section) .product-detail-shell {
    grid-template-columns: minmax(640px, 1fr) minmax(500px, 580px) !important;
    gap: 46px !important;
  }

  body:has(.product-sheet-section) .product-hero-info .hero-h1 {
    font-size: clamp(3.05rem, 3.7vw, 4rem) !important;
  }
}

@media (max-width: 1180px) {
  body:has(.product-sheet-section) .product-detail-shell,
  .product-sheet-container,
  .product-gallery-container {
    width: min(calc(100vw - 44px), 1100px) !important;
  }

  body:has(.product-sheet-section) .product-detail-shell,
  .product-sheet-container,
  .product-geometry-grid {
    grid-template-columns: 1fr !important;
  }

  body:has(.product-sheet-section) .product-hero-info .hero-h1 {
    white-space: normal;
  }

  .product-geometry-panel {
    border-right: 0;
    border-bottom: 1px solid var(--br-line);
  }

  .product-material-items,
  .product-spec-panel dl,
  .product-specsheet-grid,
  .product-specsheet-grid--with-image,
  .product-feature-list,
  .product-gallery-row {
    grid-template-columns: 1fr !important;
  }

  .product-material-item {
    min-height: 54px;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--br-line);
  }

  .product-material-item:last-child {
    border-bottom: 0;
  }

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

/* Imagegen structure alignment */
.home-hero {
  position: relative !important;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  height: 640px !important;
  min-height: 640px !important;
  margin-top: var(--header-height);
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  background-image: none !important;
  background-position: center center !important;
  background-size: cover !important;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.home-hero::after {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.88), rgba(7, 17, 29, 0.46) 42%, rgba(7, 17, 29, 0.18)),
    linear-gradient(180deg, rgba(7, 17, 29, 0.08), rgba(7, 17, 29, 0.22)) !important;
}

.home-hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(100% - 32px, var(--container-width)) !important;
  max-width: var(--container-width) !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

.home-hero .hero-title {
  max-width: 600px;
  margin-bottom: 18px !important;
  font-size: clamp(4.25rem, 6.7vw, 6rem) !important;
  line-height: 0.98 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.home-hero .hero-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 18px;
  background: var(--color-accent-gold);
}

.home-hero .hero-subtitle {
  margin-bottom: 24px !important;
  font-size: 1.55rem !important;
}

.home-hero .hero-buttons {
  display: flex;
  justify-content: flex-start;
}

.home-hero .btn-primary {
  min-width: 184px;
  padding: 13px 32px;
  text-align: center;
}

.home-hero .hero-trust {
  justify-content: flex-start !important;
  margin-top: 16px;
}

.section:has(.categories-grid) {
  padding-top: 44px;
  padding-bottom: 50px;
}

.home-collections {
  position: relative;
  z-index: 2;
  background: var(--color-bg-primary) !important;
}

.section:has(.categories-grid) h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
}

.categories-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}

.category-card {
  position: relative !important;
  display: block !important;
  height: 285px !important;
  min-height: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

.category-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.category-badges {
  left: 14px !important;
  top: 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 7px !important;
  max-width: calc(100% - 28px) !important;
}

.category-badge {
  width: auto !important;
  height: 26px !important;
  min-width: 0 !important;
  min-height: 26px !important;
  max-height: 26px !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 4px 9px !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  line-height: 1 !important;
  overflow: hidden !important;
}

.category-badge img {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  display: block !important;
  object-fit: contain !important;
}

.category-overlay {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  background: linear-gradient(to top, rgba(7, 17, 29, 0.88), rgba(7, 17, 29, 0.10)) !important;
  padding: 28px 24px 20px !important;
  transform: none !important;
}

.category-title {
  color: #fff !important;
  margin-bottom: 2px !important;
  font-size: 2.15rem !important;
  line-height: 1 !important;
}

.category-overlay p {
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 0 !important;
  font-size: 0.86rem !important;
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: 1fr !important;
  }

  .category-card {
    height: 280px !important;
  }
}

.home-news {
  position: relative;
  z-index: 2;
  background: var(--br-paper);
  padding: 58px 0 64px;
  border-top: 1px solid var(--br-line);
  border-bottom: 1px solid var(--br-line);
}

.home-news-container {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.home-news-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.home-news-heading span {
  display: block;
  color: var(--br-red);
  font-family: var(--font-family-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.home-news-heading h2 {
  text-align: left;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.home-news-heading h2::after {
  margin: 18px 0 0;
}

.home-news-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--br-line);
  color: var(--br-ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-news-link:hover {
  color: var(--br-red);
  border-color: rgba(215, 25, 32, 0.45);
  transform: translateY(-1px);
}

.home-news-list {
  display: grid;
  gap: 0;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--br-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(7, 17, 29, 0.06);
}

.home-news-item {
  display: grid;
  grid-template-columns: 116px 104px minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--br-line);
  color: var(--br-ink);
  background: transparent;
  transition: background 0.2s ease;
}

.home-news-item:last-child {
  border-bottom: 0;
}

.home-news-item::after {
  content: ">";
  color: var(--br-red);
  font-weight: 900;
  text-align: right;
}

.home-news-item:hover {
  background: rgba(255, 255, 255, 0.78);
}

.home-news-date {
  font-family: var(--font-family-display);
  font-weight: 900;
  color: var(--br-ink);
  white-space: nowrap;
}

.home-news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--br-red);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.home-news-title {
  min-width: 0;
  color: var(--br-ink);
  font-weight: 900;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news-noscript {
  grid-column: 2;
  margin-top: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .home-news-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-news-heading {
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
  }

  .home-news-noscript {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .home-news {
    padding: 44px 0 48px;
  }

  .home-news-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-news-item {
    grid-template-columns: 1fr 24px;
    gap: 8px 12px;
    min-height: 0;
    padding: 18px;
  }

  .home-news-date,
  .home-news-category,
  .home-news-title {
    grid-column: 1;
  }

  .home-news-category {
    justify-self: start;
  }

  .home-news-title {
    white-space: normal;
  }

  .home-news-item::after {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}

.home-fit-guide {
  background: #fffdfa;
  padding: 72px 0 78px;
  border-bottom: 1px solid var(--br-line);
}

.home-fit-container {
  display: grid;
  gap: 28px;
}

.home-fit-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.home-fit-heading > span {
  grid-column: 1 / -1;
  color: var(--br-red);
  font-family: var(--font-family-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.home-fit-heading h2 {
  text-align: left;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.home-fit-heading h2::after {
  margin: 18px 0 0;
}

.home-fit-heading p {
  margin: 0 0 8px;
  color: var(--br-muted);
  font-weight: 800;
  line-height: 1.8;
}

.home-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-fit-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--br-line);
  border-radius: 8px;
  background: #fff;
  color: var(--br-ink);
  box-shadow: 0 16px 38px rgba(7, 17, 29, 0.06);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-fit-card:hover {
  border-color: rgba(215, 25, 32, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(7, 17, 29, 0.1);
}

.home-fit-kicker {
  color: var(--br-red);
  font-family: var(--font-family-display);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.home-fit-card strong {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.35;
  margin-bottom: 14px;
}

.home-fit-card p {
  color: var(--br-muted);
  font-weight: 800;
  line-height: 1.78;
  margin: 0 0 24px;
}

.home-fit-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--br-ink);
  font-weight: 900;
}

.home-fit-action::after {
  content: ">";
  color: var(--br-red);
  font-weight: 900;
}

.home-fit-note {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--br-red);
  background: #f8f6ef;
  color: var(--br-muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .home-fit-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-fit-grid {
    grid-template-columns: 1fr;
  }

  .home-fit-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .home-fit-guide {
    padding: 50px 0 54px;
  }

  .home-fit-card {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    height: 560px !important;
    min-height: 560px !important;
    background-image: none !important;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(7, 17, 29, 0.76), rgba(7, 17, 29, 0.42)) !important;
  }

  .home-hero .hero-title {
    font-size: 3.15rem !important;
  }
}

.home-about {
  position: relative;
  z-index: 2;
  background: var(--color-bg-secondary);
  padding: 78px 0 22px;
}

.home-about-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.home-about-copy h2 {
  text-align: left;
  margin-bottom: 20px;
}

.home-about-copy h2::after {
  margin: 14px 0 0;
}

.home-about-copy p {
  max-width: 560px;
  line-height: 1.9;
}

.home-about-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(0.35) contrast(1.05);
}

@media (max-width: 900px) {
  .home-about-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Imagegen page system / applies across all pages
   ============================================================ */

body {
  background: var(--color-bg-primary) !important;
}

.container {
  max-width: var(--container-width) !important;
  padding-left: clamp(24px, 4vw, 48px) !important;
  padding-right: clamp(24px, 4vw, 48px) !important;
}

.section {
  padding-top: clamp(82px, 7vw, 116px) !important;
  padding-bottom: clamp(82px, 7vw, 116px) !important;
}

.page-header,
.product-header,
.dealer-header {
  padding-top: calc(var(--header-height) + clamp(72px, 7vw, 104px)) !important;
  padding-bottom: clamp(68px, 6vw, 92px) !important;
  background: var(--color-bg-tertiary) !important;
}

.page-header .container,
.product-header .container,
.dealer-header {
  max-width: 980px !important;
}

.page-header p,
.product-header p,
.dealer-header p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.product-header + .section,
.page-header + .section {
  padding-top: clamp(76px, 6vw, 100px) !important;
}

.filter-bar {
  gap: clamp(24px, 3vw, 44px) !important;
  margin-bottom: clamp(48px, 5vw, 70px) !important;
}

.filter-btn {
  padding: 8px 4px 12px !important;
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
}

.products-grid,
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(28px, 3vw, 42px) !important;
}

.product-card,
.blog-card {
  border-radius: 6px !important;
  overflow: hidden !important;
  background: var(--color-bg-secondary) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: 0 14px 34px rgba(24, 32, 39, 0.07) !important;
}

.product-card:hover,
.blog-card:hover {
  transform: translateY(-3px) !important;
}

.product-image,
.blog-thumb {
  height: 245px !important;
  object-fit: cover !important;
}

.product-info,
.blog-card-body {
  padding: 26px 26px 28px !important;
}

.product-title,
.blog-card-title {
  margin-bottom: 14px !important;
  line-height: 1.25 !important;
}

.product-desc,
.blog-card-excerpt {
  line-height: 1.85 !important;
  margin-bottom: 24px !important;
}

.news-list,
.faq-wrap,
.article {
  max-width: 860px !important;
}

.news-list,
.faq-wrap {
  margin-left: auto !important;
  margin-right: auto !important;
}

.news-item {
  min-height: 78px;
  padding: 24px 30px !important;
  margin-bottom: 16px !important;
  display: grid !important;
  grid-template-columns: 118px 96px minmax(0, 1fr) 24px;
  gap: 18px !important;
  align-items: center !important;
}

.news-item::after {
  content: "›";
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  text-align: right;
}

.faq-category-title {
  margin-top: 58px !important;
  margin-bottom: 18px !important;
}

.faq-item {
  margin-bottom: 16px !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.faq-q {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.faq-a {
  padding-bottom: 28px !important;
  line-height: 1.9 !important;
}

.article {
  margin-left: auto !important;
  margin-right: auto !important;
}

.article-header {
  margin-bottom: clamp(34px, 5vw, 56px) !important;
  padding-bottom: 28px !important;
}

.article-title {
  font-size: clamp(2.3rem, 4.4vw, 4rem) !important;
  line-height: 1.14 !important;
  letter-spacing: 0.03em !important;
}

.article-eyecatch {
  width: 100% !important;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px !important;
  margin-bottom: clamp(40px, 5vw, 64px) !important;
}

.article-body {
  font-size: 1.04rem !important;
  line-height: 2.05 !important;
}

.article-body > * + * {
  margin-top: 1.2em;
}

.dealer-container {
  max-width: var(--container-width) !important;
  padding-left: clamp(24px, 4vw, 48px) !important;
  padding-right: clamp(24px, 4vw, 48px) !important;
}

.map-section,
.dealer-list-section,
.contact-container {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.map-section {
  padding: clamp(34px, 5vw, 54px) !important;
}

.contact-container {
  margin-top: calc(var(--header-height) + 76px) !important;
  margin-bottom: 92px !important;
  padding: clamp(38px, 5vw, 58px) !important;
}

.footer {
  background: var(--color-bg-secondary) !important;
  border-top: 1px solid var(--color-border) !important;
  padding: 24px 0 !important;
  text-align: left !important;
}

.footer-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 190px minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.footer-nav,
.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav {
  gap: clamp(18px, 2vw, 30px);
}

.footer-meta {
  justify-content: flex-end;
  gap: 24px;
}

.footer-nav a,
.footer-meta a,
.footer-meta span {
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--color-accent-gold);
}

@media (max-width: 1020px) {
  .products-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px !important;
  }

  .news-item::after {
    display: none;
  }
}

/* Product detail pages: replace legacy dense/dark styling with imagegen-like layout */
main .hero {
  background: var(--color-bg-tertiary) !important;
  color: var(--color-text-primary) !important;
  padding-top: calc(var(--header-height) + 78px) !important;
  padding-bottom: 78px !important;
  min-height: 0 !important;
  height: auto !important;
  text-align: left !important;
}

main .hero > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(44px, 5vw, 74px);
  align-items: center;
}

.hero-pill,
.hero-h1,
.hero-h2,
.uci-badge {
  grid-column: 1;
}

.hero-slider {
  grid-column: 2;
  grid-row: 1 / span 6;
  margin-top: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.hero-pill {
  display: inline-block !important;
  margin-bottom: 18px !important;
  color: var(--color-accent-gold) !important;
  border-left: 3px solid var(--color-accent-gold) !important;
  padding-left: 12px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.hero-h1 {
  max-width: 520px;
  margin-bottom: 18px !important;
  font-size: clamp(3rem, 5vw, 5.2rem) !important;
  line-height: 1.02 !important;
  color: var(--color-text-primary) !important;
}

.hero-h2 {
  max-width: 520px;
  margin-bottom: 28px !important;
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  letter-spacing: 0.04em !important;
  color: var(--color-text-secondary) !important;
}

.uci-badge {
  width: fit-content;
  background: var(--color-bg-secondary) !important;
  color: var(--color-text-primary) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 4px !important;
  padding: 10px 14px !important;
}

.specs-section,
.geometry-section,
.story-section,
.gallery-section,
.related-section {
  background: var(--color-bg-primary) !important;
  padding-top: clamp(86px, 7vw, 118px) !important;
  padding-bottom: clamp(86px, 7vw, 118px) !important;
  border-top: 1px solid var(--color-border) !important;
}

.geometry-section {
  background: var(--color-bg-tertiary) !important;
}

.section-title {
  display: block !important;
  margin-bottom: 34px !important;
  color: var(--color-accent-gold) !important;
  font-family: var(--font-family-display) !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.16em !important;
  text-align: left !important;
}

.grid-2,
.materials-grid {
  gap: clamp(34px, 4vw, 58px) !important;
}

.content-block {
  line-height: 1.95 !important;
}

.content-block p {
  line-height: 1.95 !important;
}

.material-card,
.highlight-box,
.geo-table-container,
.weight-table-wrap {
  background: var(--color-bg-secondary) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(24, 32, 39, 0.07) !important;
}

.material-card {
  padding: 32px !important;
}

.geo-img-wrap {
  max-width: 760px;
  margin: 0 auto 42px !important;
}

.geo-img-wrap img {
  border-radius: 8px;
}

main footer,
body > footer:not(.footer) {
  background: var(--color-bg-secondary) !important;
  border-top: 1px solid var(--color-border) !important;
  color: var(--color-text-secondary) !important;
  padding: 32px 0 !important;
  text-align: center !important;
}

@media (max-width: 980px) {
  main .hero > .container {
    grid-template-columns: 1fr;
  }

  .hero-pill,
  .hero-h1,
  .hero-h2,
  .uci-badge,
  .hero-slider {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ============================================================
   Imagegen faithful implementation pass / 2026-06-24
   Source of truth: design-output/*.png.
   Photos stay as real files from src/assets/images; text remains editable.
   ============================================================ */

:root {
  --br-bg: #f7f6f2;
  --br-bg-soft: #fffefa;
  --br-panel: rgba(255, 255, 252, 0.92);
  --br-line: #ddd9d1;
  --br-ink: #171d25;
  --br-muted: #5c6470;
  --br-red: #d71920;
  --br-header: #0b1521;
  --br-shadow: 0 10px 28px rgba(20, 24, 30, 0.08);
}

html {
  background: var(--br-bg);
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 38rem),
    var(--br-bg) !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-weight: 500;
}

body p,
body li,
body td,
body dd {
  color: var(--br-muted);
}

.container {
  width: min(100%, var(--container-width)) !important;
  max-width: 1280px !important;
  padding-left: clamp(22px, 4.6vw, 52px) !important;
  padding-right: clamp(22px, 4.6vw, 52px) !important;
}

.header,
body > header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  background:
    linear-gradient(180deg, rgba(15, 26, 38, 0.98), rgba(8, 17, 27, 0.98)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 24px rgba(5, 13, 22, 0.16);
}

.header-container,
body > header .nav-wrap {
  width: 100% !important;
  min-height: 76px !important;
  max-width: 1280px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-left: clamp(22px, 4.6vw, 52px) !important;
  padding-right: clamp(22px, 4.6vw, 52px) !important;
  margin: 0 auto !important;
}

.logo img,
.logo-img {
  height: 38px !important;
  width: auto !important;
  object-fit: contain;
}

.nav-menu,
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: clamp(26px, 3.6vw, 52px) !important;
}

.nav-link,
.nav-links a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  position: relative;
  padding: 27px 0 24px !important;
}

.nav-link:hover,
.nav-link.active,
.nav-links a:hover,
.nav-links a.active {
  color: #fff !important;
}

.nav-link.active::after,
.nav-links a.active::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 3px !important;
  margin: 0 !important;
  background: var(--br-red) !important;
  border-radius: 0 !important;
}

.page-header,
.product-header,
.dealer-header {
  padding-top: calc(76px + clamp(4px, 1.6vw, 16px)) !important;
  padding-bottom: clamp(14px, 2.2vw, 22px) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 34rem),
    var(--br-bg-soft) !important;
  border-bottom: 1px solid rgba(217, 210, 199, 0.72);
  text-align: center !important;
}

.page-header .container,
.product-header .container,
.dealer-header {
  max-width: 980px !important;
}

.page-header h1,
.product-header h1,
.dealer-header h1,
.contact-container h1 {
  margin-bottom: 12px !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(2.45rem, 4.2vw, 3.45rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}

.dealer-header h1 {
  font-size: clamp(4.2rem, 8vw, 6.2rem) !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
}

.page-header h1,
.product-header h1 {
  font-size: clamp(2.1rem, 3.5vw, 3rem) !important;
}

.page-header h1::after,
.product-header h1::after,
.dealer-header h1::after,
.contact-container h1::after,
.section h2::after {
  content: "" !important;
  display: block !important;
  width: 64px !important;
  height: 3px !important;
  margin: 20px auto 0 !important;
  background: var(--br-red) !important;
  border-radius: 999px !important;
}

.page-header h1::after,
.product-header h1::after {
  display: none !important;
}

.page-header p::after,
.product-header p::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 13px auto 0;
  background: var(--br-red);
  border-radius: 999px;
}

.page-header p,
.product-header p,
.dealer-header p {
  margin: 0 auto !important;
  color: var(--br-ink) !important;
  font-size: clamp(1rem, 1.5vw, 1.22rem) !important;
  letter-spacing: 0.06em;
  max-width: min(100%, 720px);
  overflow-wrap: anywhere;
}

.section {
  padding-top: clamp(44px, 5vw, 66px) !important;
  padding-bottom: clamp(72px, 7.5vw, 110px) !important;
}

.product-header + .section,
.page-header + .section {
  padding-top: clamp(22px, 3vw, 34px) !important;
}

.notice-bar {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 3.8vw, 44px) !important;
  padding: 16px 22px !important;
  color: var(--br-ink) !important;
  background: rgba(255, 253, 248, 0.76) !important;
  border: 1px solid var(--br-line) !important;
  border-left: 4px solid var(--br-red) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}

.notice-bar strong,
.notice-bar code {
  color: var(--br-red) !important;
}

.filter-bar {
  width: min(100%, 640px);
  margin: 0 auto clamp(28px, 3vw, 38px) !important;
  padding: 8px !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px !important;
  background: rgba(255, 253, 248, 0.66) !important;
  border: 1px solid var(--br-line);
  border-radius: 4px;
}

.filter-btn {
  min-height: 36px;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 3px !important;
  color: var(--br-ink) !important;
  background: transparent !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--br-ink) !important;
  color: #fff !important;
  border-bottom: 0 !important;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.product-card {
  display: flex !important;
  flex-direction: column;
  min-height: 0;
  border-radius: 5px !important;
  background: rgba(255, 253, 248, 0.88) !important;
  border: 1px solid var(--br-line) !important;
  box-shadow: 0 4px 14px rgba(23, 29, 37, 0.06) !important;
  overflow: hidden !important;
}

.product-card:hover {
  transform: translateY(-2px) !important;
  border-color: #cfc5b8 !important;
  box-shadow: 0 12px 24px rgba(23, 29, 37, 0.1) !important;
}

.product-image {
  width: 100% !important;
  height: clamp(168px, 17vw, 236px) !important;
  padding: 16px !important;
  object-fit: contain !important;
  background: linear-gradient(180deg, #fff, #f8f6f0) !important;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 12px !important;
}

.product-title {
  margin-bottom: 4px !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.product-price {
  margin-bottom: 6px !important;
  color: var(--br-ink) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.product-desc {
  margin-bottom: 10px !important;
  color: var(--br-ink) !important;
  font-size: 0.84rem !important;
  line-height: 1.55 !important;
}

.product-info .btn {
  margin-top: auto;
  width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px !important;
  color: #fff !important;
  background: var(--br-ink) !important;
  border: 0 !important;
  border-bottom: 3px solid var(--br-red) !important;
  border-radius: 3px !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.product-info .btn:hover {
  background: #0f1722 !important;
  color: #fff !important;
}

.product-info::after {
  content: "検品済　　保証つき";
  order: 3;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 3px 7px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 3px;
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
}

.product-info .btn {
  order: 4;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.7vw, 32px) !important;
}

.blog-card {
  border-radius: 5px !important;
  background: rgba(255, 253, 248, 0.9) !important;
  border: 1px solid var(--br-line) !important;
  box-shadow: 0 8px 22px rgba(23, 29, 37, 0.07) !important;
}

.blog-thumb {
  width: 100% !important;
  height: clamp(210px, 21vw, 270px) !important;
  object-fit: cover !important;
  background: #eee !important;
}

.blog-card-body {
  padding: 20px 20px 24px !important;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-card-title {
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(1.1rem, 1.6vw, 1.38rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  text-transform: none !important;
}

.blog-card-excerpt {
  color: var(--br-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
}

.blog-card .btn {
  padding: 8px 16px !important;
  color: var(--br-red) !important;
  background: transparent !important;
  border: 1px solid var(--br-red) !important;
  border-radius: 3px !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.news-list,
.faq-wrap,
.article {
  max-width: 1000px !important;
}

.news-list {
  padding: 18px 28px !important;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--br-line);
  border-radius: 3px;
}

.news-item {
  min-height: 58px !important;
  margin: 0 !important;
  padding: 18px 12px !important;
  grid-template-columns: 112px 96px minmax(0, 1fr) 24px !important;
  border-bottom: 1px solid var(--br-line) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.news-item:last-child {
  border-bottom: 0 !important;
}

.news-date,
.news-title {
  color: var(--br-ink) !important;
}

.news-category {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 4px 9px !important;
  color: #fff !important;
  background: var(--br-red) !important;
  border-radius: 999px !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.faq-wrap {
  padding: clamp(24px, 3vw, 36px) !important;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--br-line);
  border-radius: 3px;
}

.faq-category-title {
  margin-top: 26px !important;
  margin-bottom: 14px !important;
  padding-left: 16px;
  color: var(--br-ink) !important;
  border-left: 4px solid var(--br-red);
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.52rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.faq-category-title:first-child {
  margin-top: 0 !important;
}

.faq-item {
  margin-bottom: 0 !important;
  padding: 0 18px !important;
  background: rgba(255, 255, 255, 0.52) !important;
  border: 1px solid var(--br-line) !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--br-line) !important;
}

.faq-q {
  min-height: 58px !important;
  color: var(--br-ink) !important;
  font-weight: 800 !important;
}

.faq-q-mark,
.faq-q::after {
  color: var(--br-red) !important;
}

.faq-a {
  padding: 4px 38px 24px !important;
  color: var(--br-muted) !important;
}

.about-hero {
  min-height: clamp(260px, 26vw, 320px) !important;
  height: auto !important;
  margin-bottom: 0 !important;
  justify-content: flex-start !important;
  text-align: left !important;
  background:
    linear-gradient(90deg, rgba(8, 14, 20, 0.78), rgba(8, 14, 20, 0.28)),
    url('../assets/images/factory.jpg') center 48% / cover no-repeat !important;
}

.about-hero .container {
  padding-top: 76px !important;
}

.about-hero h1 {
  color: #fff !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(2.5rem, 4.8vw, 4.3rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
}

.about-hero p {
  color: #fff !important;
  font-size: 1.36rem !important;
}

.about-content {
  max-width: 1120px !important;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.about-content > h2,
.about-content > p {
  grid-column: 1;
}

.about-content > h2 {
  margin-bottom: 18px !important;
  color: var(--br-ink) !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(2rem, 3vw, 2.7rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
}

.about-content > h2::after {
  margin: 12px 0 0 !important;
}

.about-content > p {
  margin-bottom: 1.25rem !important;
  color: var(--br-ink) !important;
  font-size: 0.96rem !important;
  line-height: 1.9 !important;
}

.tech-grid {
  grid-column: 2;
  grid-row: 1 / span 6;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
}

.tech-item {
  min-height: 250px;
  padding: 28px 22px !important;
  text-align: center;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid var(--br-line);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(23, 29, 37, 0.07);
}

.tech-item::before {
  content: "";
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: center / contain no-repeat;
}

.tech-item:nth-child(1)::before {
  background-image: url("../assets/design-ui/icon-carbon-layers-red.svg");
}

.tech-item:nth-child(2)::before {
  background-image: url("../assets/design-ui/icon-eps-molding-red.svg");
}

.tech-item:nth-child(3)::before {
  background-image: url("../assets/design-ui/icon-testing-clipboard-red.svg");
}

.tech-item h3 {
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}

.tech-item h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 18px auto;
  background: var(--br-red);
}

.tech-item p {
  color: var(--br-ink) !important;
  font-size: 0.88rem !important;
  line-height: 1.85 !important;
  text-align: left;
}

.about-content > details {
  grid-column: 2;
  margin-top: 22px !important;
  padding: 0 !important;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--br-line);
}

.about-content > details summary {
  padding: 18px 22px !important;
}

.about-content > details summary h2 {
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.about-content > details .details-content {
  padding: 0 22px 24px !important;
}

.dealer-container {
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: calc(76px + clamp(44px, 5.4vw, 72px)) clamp(22px, 4.6vw, 52px) clamp(72px, 7vw, 104px) !important;
}

.dealer-header {
  margin: 0 auto clamp(30px, 4vw, 44px) !important;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: 0 !important;
}

.map-section {
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(390px, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(44px, 5vw, 64px) !important;
  padding: clamp(30px, 4vw, 50px) !important;
  background: rgba(255, 253, 248, 0.82) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 22px rgba(23, 29, 37, 0.06) !important;
}

.japan-map-svg {
  width: min(100%, 560px) !important;
  max-height: 380px;
  justify-self: center;
  display: block;
  object-fit: contain;
}

.region-path {
  fill: #eef1ed !important;
  stroke: #aeb8b4 !important;
  stroke-width: 1.8 !important;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.map-hokkaido { fill: #e5eef5 !important; }
.map-tohoku { fill: #e6f0e9 !important; }
.map-kanto { fill: #f1ead7 !important; }
.map-chubu { fill: #eff0dc !important; }
.map-kinki { fill: #efe3d6 !important; }
.map-chugoku { fill: #eadfe3 !important; }
.map-shikoku { fill: #f0ecd7 !important; }
.map-kyushu { fill: #ead8d8 !important; }

.region-path:hover {
  fill: #f5e6e5 !important;
  filter: drop-shadow(0 3px 7px rgba(215, 25, 32, 0.18)) !important;
}

.region-label {
  fill: var(--br-ink) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

.map-guide {
  stroke: #9b9b9b;
  stroke-width: 1.4;
}

.dealer-map-copy h2 {
  margin-bottom: 20px !important;
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.38rem !important;
  font-weight: 800;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.dealer-map-copy p {
  color: var(--br-ink);
  font-size: 0.98rem;
  line-height: 2;
}

.dealer-alert {
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--br-ink);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--br-line);
  border-left: 3px solid var(--br-red);
  border-radius: 4px;
  font-size: 0.92rem;
  line-height: 1.8;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.dealer-alert::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background: url("../assets/design-ui/icon-warning-red.svg") center / contain no-repeat;
}

.dealer-list-section {
  max-width: 100% !important;
  margin-top: 0 !important;
}

.region-block {
  margin-bottom: 32px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.region-title {
  margin-bottom: 12px !important;
  padding-left: 14px;
  border-left: 4px solid var(--br-red);
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.42rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
}

.region-title::after {
  display: none !important;
}

.prefecture-name {
  color: var(--br-ink) !important;
  border-left-color: var(--br-red) !important;
  font-weight: 800;
}

.shops-grid {
  display: block !important;
}

.shop-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) 28px;
  gap: 24px;
  align-items: center;
  min-height: 108px;
  padding: 18px 22px !important;
  background: rgba(255, 253, 248, 0.88) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 18px rgba(23, 29, 37, 0.05) !important;
}

.shop-card::before {
  display: none;
}

.shop-card::after {
  content: "›";
  color: var(--br-ink);
  font-size: 2rem;
  line-height: 1;
}

.shop-name::after {
  content: "正規取扱販売店";
  display: inline-flex;
  margin-left: 12px;
  padding: 3px 7px;
  color: var(--br-red);
  border: 1px solid var(--br-red);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 800;
  vertical-align: middle;
  white-space: nowrap;
}

.shop-name {
  margin: 0 !important;
  color: var(--br-ink) !important;
  font-size: 1.08rem !important;
}

.shop-info {
  color: var(--br-muted) !important;
  font-size: 0.92rem !important;
}

.shop-info a {
  color: var(--br-red) !important;
  border-bottom: 0 !important;
}

.contact-container {
  max-width: 760px !important;
  margin-top: calc(76px + clamp(44px, 5.4vw, 72px)) !important;
  margin-bottom: 24px !important;
  padding: clamp(28px, 4vw, 42px) !important;
  background: rgba(255, 253, 248, 0.9) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 5px !important;
  box-shadow: 0 8px 24px rgba(23, 29, 37, 0.08) !important;
}

.contact-container h1 {
  text-align: center !important;
}

.contact-container > p {
  max-width: 620px;
  margin: 0 auto 30px !important;
  text-align: center;
  color: var(--br-ink) !important;
  line-height: 1.9;
}

.form-group {
  margin-bottom: 22px !important;
}

.form-label {
  color: var(--br-ink) !important;
  font-weight: 800;
}

.form-input,
.form-select,
.form-textarea {
  min-height: 46px;
  background: #fff !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 3px;
  color: var(--br-ink) !important;
}

.form-select {
  appearance: auto;
  padding: 12px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.form-textarea {
  min-height: 120px !important;
}

.contact-container .btn-primary {
  min-height: 48px;
  background: linear-gradient(180deg, #e02028, #c70f18) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 3px !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

.contact-info {
  max-width: 760px;
  margin: 16px auto 64px !important;
  padding: 22px 26px !important;
  text-align: left !important;
  background: rgba(255, 253, 248, 0.88) !important;
  border: 1px solid var(--br-line) !important;
  border-left: 3px solid var(--br-red) !important;
  border-radius: 5px !important;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-info::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 3px;
  background: url("../assets/design-ui/icon-mail-red.svg") center / contain no-repeat;
}

.contact-info p {
  grid-column: 2;
}

.contact-line-panel {
  margin: 24px 0 18px;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 252, 0.92);
  border: 1px solid var(--br-line);
  border-radius: 5px;
}

.contact-line-heading {
  margin-bottom: 16px;
}

.contact-line-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--br-red);
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line-heading h2 {
  margin: 0 0 8px;
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.22rem, 1.6vw, 1.58rem);
  line-height: 1.35;
}

.contact-line-heading p {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-line-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-bottom: 3px solid #06c755;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-line-card:hover {
  border-color: rgba(6, 199, 85, 0.55);
  box-shadow: 0 12px 26px rgba(20, 24, 30, 0.08);
  transform: translateY(-2px);
}

.contact-line-kicker {
  width: fit-content;
  padding: 4px 9px;
  color: #057d37;
  background: rgba(6, 199, 85, 0.1);
  border: 1px solid rgba(6, 199, 85, 0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-line-card strong {
  color: var(--br-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-line-card span:last-child {
  color: var(--br-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-help {
  margin: 8px 0 0;
  color: var(--br-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-robot-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.contact-robot-check input {
  width: 22px;
  height: 22px;
  accent-color: var(--br-red);
  flex: 0 0 auto;
}

.contact-confirmation {
  margin-top: 22px;
  padding: clamp(18px, 2.5vw, 26px);
  background: rgba(255, 255, 252, 0.96);
  border: 1px solid var(--br-line);
  border-left: 4px solid var(--br-red);
  border-radius: 5px;
}

.contact-confirmation h2 {
  margin: 0 0 8px;
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
}

.contact-confirmation p {
  margin: 0 0 16px;
  color: var(--br-muted);
  line-height: 1.7;
}

.contact-confirmation dl {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 210, 199, 0.66);
}

.contact-confirmation dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  border-bottom: 1px solid rgba(217, 210, 199, 0.66);
}

.contact-confirmation dl div:last-child {
  border-bottom: 0;
}

.contact-confirmation dt,
.contact-confirmation dd {
  margin: 0;
  padding: 10px 12px;
  color: var(--br-ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-confirmation dt {
  background: rgba(244, 240, 232, 0.56);
  font-weight: 900;
}

.contact-confirmation dd {
  color: var(--br-muted);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-confirm-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 12px;
}

.contact-secondary-btn {
  min-height: 48px;
  color: var(--br-ink) !important;
  background: #fff !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 3px !important;
  font-weight: 800 !important;
}

@media (max-width: 620px) {
  .contact-line-grid,
  .contact-confirmation dl div,
  .contact-confirm-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-confirmation dt {
    border-bottom: 1px solid rgba(217, 210, 199, 0.66);
  }
}

.footer,
main footer,
body > footer:not(.footer) {
  background:
    radial-gradient(circle at 80% 0%, rgba(61, 78, 96, 0.22), rgba(61, 78, 96, 0) 26rem),
    linear-gradient(180deg, #111d29, #07111d) !important;
  color: rgba(255, 255, 255, 0.76) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: clamp(34px, 4.2vw, 54px) 0 !important;
  text-align: left !important;
}

.footer-inner {
  min-height: 86px !important;
  grid-template-columns: 210px minmax(280px, 1fr) auto !important;
}

.footer-logo img {
  height: 42px !important;
}

.footer-nav,
.footer-meta {
  gap: clamp(16px, 2vw, 28px) !important;
}

.footer-nav a,
.footer-meta a,
.footer-meta span,
main footer p,
body > footer:not(.footer) p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0 !important;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: #fff !important;
}

/* Product detail: make old individual pages follow the imagegen two-column structure. */
main .hero {
  padding-top: calc(76px + clamp(28px, 4vw, 46px)) !important;
  padding-bottom: clamp(42px, 5vw, 68px) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 38rem),
    var(--br-bg-soft) !important;
  color: var(--br-ink) !important;
}

body:has(.hero-slider) main .hero > .container,
body:has(.gallery-grid) main .hero > .container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr) !important;
  gap: clamp(36px, 5vw, 64px) !important;
  align-items: start !important;
}

body:has(.hero-slider) .hero-slider,
body:has(.gallery-grid) .gallery-grid {
  grid-column: 1 !important;
  grid-row: 1 / span 5 !important;
  width: 100% !important;
  margin: 0 !important;
  align-self: start !important;
}

body:has(.hero-slider) .hero-pill,
body:has(.hero-slider) .hero-h1,
body:has(.hero-slider) .hero-h2,
body:has(.hero-slider) .price-tag,
body:has(.hero-slider) .uci-badge,
body:has(.gallery-grid) .hero-pill,
body:has(.gallery-grid) .hero-h1,
body:has(.gallery-grid) .hero-h2,
body:has(.gallery-grid) .price-tag,
body:has(.gallery-grid) .uci-badge {
  grid-column: 2 !important;
}

.hero-slider {
  position: relative !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  background: #fff !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  margin-bottom: 86px !important;
}

.hero-slider .slides,
.hero-slider .slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-slider .slide {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.28s ease !important;
}

.hero-slider .slide.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.hero-slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  background: #fff !important;
}

.hero-slider .ctrl {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82) !important;
  color: var(--br-ink) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 0 !important;
}

.hero-slider .dots {
  left: 0 !important;
  right: 0 !important;
  bottom: -86px !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px !important;
  transform: none !important;
}

.hero-slider .dot {
  width: 100% !important;
  height: 70px !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  opacity: 1 !important;
}

.hero-slider .dot.active {
  border-color: var(--br-red) !important;
  box-shadow: inset 0 0 0 2px var(--br-red);
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.gallery-item {
  min-height: 96px;
  background: #fff !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.gallery-item:first-child {
  grid-column: 1 / -1;
  min-height: clamp(320px, 40vw, 520px);
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  background: #fff !important;
}

.hero-pill {
  width: fit-content;
  margin-bottom: 10px !important;
  padding: 5px 10px !important;
  color: #fff !important;
  background: var(--br-red) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.hero-h1 {
  max-width: none !important;
  margin-bottom: 16px !important;
  color: var(--br-ink) !important;
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(2.9rem, 5.5vw, 5rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.03 !important;
  text-transform: none !important;
}

.hero-h2 {
  max-width: none !important;
  margin-bottom: 22px !important;
  padding-bottom: 22px;
  color: var(--br-ink) !important;
  border-bottom: 1px solid var(--br-line);
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.85 !important;
}

.price-tag {
  display: block !important;
  margin-bottom: 18px !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.uci-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px !important;
  padding: 14px 18px !important;
  color: var(--br-ink) !important;
  background: rgba(255, 253, 248, 0.84) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px !important;
}

.uci-logo {
  height: 32px !important;
  width: auto !important;
}

.tech-section,
.specs-section,
.geometry-section,
.story-section,
.gallery-section,
.related-section,
.comp-section,
.acc-section {
  background: var(--br-bg) !important;
  border-top: 1px solid var(--br-line) !important;
  padding-top: clamp(64px, 7vw, 94px) !important;
  padding-bottom: clamp(64px, 7vw, 94px) !important;
}

.section-title {
  color: var(--br-ink) !important;
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.grid-2,
.grid-3,
.materials-grid,
.acc-grid {
  gap: clamp(18px, 3vw, 32px) !important;
}

.content-block,
.tech-card,
.material-card,
.specs-table-wrap,
.geo-table-container,
.weight-table-wrap,
.acc-block {
  background: rgba(255, 253, 248, 0.82) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 18px rgba(23, 29, 37, 0.05) !important;
}

.content-block,
.tech-card,
.acc-block {
  padding: clamp(24px, 3vw, 34px) !important;
}

.content-block h3,
.tech-card h3,
.material-card h4,
.acc-block h3 {
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.specs-table,
.weight-table,
.geo-table {
  background: #fff !important;
  color: var(--br-ink) !important;
}

.specs-table td,
.weight-table td,
.weight-table th,
.geo-table td,
.geo-table th {
  color: var(--br-ink) !important;
  border-color: var(--br-line) !important;
  background: #fff !important;
}

.btn-inquiry {
  background: linear-gradient(180deg, #e02028, #c70f18) !important;
  color: #fff !important;
  border-radius: 3px !important;
}

.article-title {
  font-size: clamp(1.9rem, 3.2vw, 2.65rem) !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
}

.article-eyecatch {
  max-height: 520px !important;
}

.product-hero-detail {
  padding-top: calc(76px + 6px) !important;
  padding-bottom: clamp(28px, 4vw, 44px) !important;
}

.product-detail-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr) !important;
  gap: clamp(32px, 4.8vw, 58px) !important;
  align-items: start !important;
}

.product-breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
  color: var(--br-muted);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
}

.product-breadcrumb a {
  color: var(--br-ink);
}

.product-breadcrumb span {
  display: inline-flex;
  align-items: center;
  color: var(--br-muted);
}

.product-breadcrumb span::before {
  content: ">";
  margin-right: 10px;
  color: var(--br-muted);
}

.product-breadcrumb span:last-child {
  color: var(--br-red);
}

.product-hero-media {
  min-width: 0;
}

.product-hero-info {
  min-width: 0;
  padding-top: 4px;
}

.product-labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-labels .hero-pill {
  margin: 0 !important;
}

.product-sub-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-hero-info .hero-h1 {
  margin-bottom: 14px !important;
  font-size: clamp(2.7rem, 4.2vw, 4rem) !important;
}

.product-hero-info .hero-h2 {
  margin-bottom: 18px !important;
}

.product-hero-info .price-tag {
  margin-bottom: 14px !important;
  padding-bottom: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
}

.product-hero-info .price-tag small {
  font-size: 0.82rem;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 3px;
  font-weight: 900;
}

.product-trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--br-red);
  font-weight: 900;
}

.product-primary-cta {
  width: min(100%, 250px);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 12px 18px;
  color: #fff !important;
  background: linear-gradient(180deg, #e02028, #c70f18);
  border-radius: 3px;
  font-weight: 900;
}

.product-primary-cta::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url("../assets/design-ui/icon-bag-white.svg") center / contain no-repeat;
}

.product-text-link {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
  padding-bottom: 6px;
  color: var(--br-ink) !important;
  border-bottom: 1px solid var(--br-ink);
  font-weight: 700;
}

.product-hero-info .uci-badge {
  width: min(100%, 350px);
  margin-top: 0 !important;
}

.product-hero-detail .hero-slider {
  aspect-ratio: 16 / 9 !important;
  margin-bottom: 82px !important;
  overflow: visible !important;
}

.product-hero-detail .hero-slider .slides {
  overflow: hidden !important;
  border: 1px solid var(--br-line);
  border-radius: 3px;
}

.product-hero-detail .hero-slider .dots {
  bottom: -78px !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-hero-detail .hero-slider .dot {
  height: 66px !important;
  overflow: hidden;
}

.product-hero-detail .hero-slider .dot img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
}

.materials-grid .material-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background: center / contain no-repeat;
}

.materials-grid .material-card:nth-child(1)::before {
  background-image: url("../assets/design-ui/icon-material-grid-dark.svg");
}

.materials-grid .material-card:nth-child(2)::before {
  background-image: url("../assets/design-ui/icon-eps-cells-dark.svg");
}

.materials-grid .material-card:nth-child(3)::before {
  background-image: url("../assets/design-ui/icon-shield-dark.svg");
}

@media (max-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-card::before,
  .shop-card::after {
    order: initial;
  }
}

@media (max-width: 920px) {
  .products-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:has(.hero-slider) main .hero > .container,
  body:has(.gallery-grid) main .hero > .container,
  .about-content,
  .map-section {
    grid-template-columns: 1fr !important;
  }

  body:has(.hero-slider) .hero-slider,
  body:has(.gallery-grid) .gallery-grid,
  body:has(.hero-slider) .hero-pill,
  body:has(.hero-slider) .hero-h1,
  body:has(.hero-slider) .hero-h2,
  body:has(.hero-slider) .price-tag,
  body:has(.hero-slider) .uci-badge,
  body:has(.gallery-grid) .hero-pill,
  body:has(.gallery-grid) .hero-h1,
  body:has(.gallery-grid) .hero-h2,
  body:has(.gallery-grid) .price-tag,
  body:has(.gallery-grid) .uci-badge,
  .about-content > h2,
  .about-content > p,
  .tech-grid,
  .about-content > details {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .tech-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-slider .dots {
    position: static !important;
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .filter-bar,
  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .news-list {
    padding: 10px 16px !important;
  }

  .news-item {
    grid-template-columns: 1fr !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
  }
}

/* Imagegen asset integration pass: SVG marks + editable text */
.product-info::after {
  content: none !important;
  display: none !important;
}

.product-mini-badges {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.product-mini-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  gap: 5px;
  padding: 3px 7px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-mini-badges img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.category-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 24px;
  z-index: 3;
  width: 24px;
  height: 24px;
  background: url("../assets/design-ui/icon-arrow-right-white.svg") center / contain no-repeat;
}

.product-trust-row span::before {
  content: "" !important;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("../assets/design-ui/icon-check-red.svg") center / contain no-repeat;
}

.hero-slider .ctrl {
  font-size: 0 !important;
}

.hero-slider .ctrl::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../assets/design-ui/icon-arrow-right-dark.svg") center / contain no-repeat;
}

.hero-slider .prev::before {
  transform: rotate(180deg);
}

.shop-card::after {
  content: "" !important;
  width: 24px;
  height: 24px;
  background: url("../assets/design-ui/icon-arrow-right-dark.svg") center / contain no-repeat;
}

.shop-info a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 6px;
  background: url("../assets/design-ui/icon-external-red.svg") center / contain no-repeat;
  vertical-align: -2px;
}

.notice-bar {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.notice-bar::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: url("../assets/design-ui/icon-info-red.svg") center / contain no-repeat;
}

.news-item::after {
  content: "" !important;
  width: 20px;
  height: 20px;
  justify-self: end;
  background: url("../assets/design-ui/icon-arrow-right-dark.svg") center / contain no-repeat;
}

.news-item .news-date {
  grid-column: 1;
}

.news-item .news-category {
  grid-column: 2;
}

.news-item .news-title {
  grid-column: 3;
  min-width: 0;
}

.news-item::after {
  grid-column: 4;
}

.faq-category-title {
  text-align: left !important;
}

.faq-category-title::after {
  display: none !important;
}

.section .faq-category-title::after {
  display: none !important;
}

.faq-q {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "" !important;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: url("../assets/design-ui/icon-plus-dark.svg") center / contain no-repeat;
}

.faq-item[open] .faq-q::after {
  background-image: url("../assets/design-ui/icon-close-red.svg");
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .container,
  .home-hero .hero-content {
    min-width: 0;
  }

  .home-hero .hero-content {
    width: 100% !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .home-hero .hero-title {
    max-width: min(100%, 340px) !important;
    font-size: clamp(2.5rem, 12.6vw, 3.35rem) !important;
    line-height: 1.03 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .section:has(.categories-grid) h2,
  .section h2 {
    max-width: 100% !important;
    font-size: clamp(1.72rem, 8.2vw, 2.15rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .page-header .container,
  .product-header .container,
  .dealer-header {
    min-width: 0;
    max-width: 100% !important;
  }

  .page-header p,
  .product-header p,
  .dealer-header p {
    max-width: 100% !important;
    padding-right: 2px;
    padding-left: 2px;
    font-size: clamp(0.95rem, 3.8vw, 1.05rem) !important;
    line-height: 1.75 !important;
    letter-spacing: 0.02em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .product-header p {
    width: min(100%, 280px) !important;
    font-size: 0.96rem !important;
    word-break: break-all !important;
  }

  .product-title,
  .product-price,
  .product-desc,
  .blog-card-title,
  .blog-card-excerpt,
  .news-title {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .product-info {
    min-width: 0 !important;
    overflow: hidden;
  }

  .product-desc {
    display: block !important;
    width: min(100%, 292px) !important;
    max-width: 292px !important;
    font-size: 0.8rem !important;
    line-height: 1.75 !important;
    line-break: anywhere !important;
    word-break: break-all !important;
  }

  .news-item .news-date,
  .news-item .news-category,
  .news-item .news-title,
  .news-item::after {
    grid-column: auto;
  }
}

/* Product detail mobile containment */
@media (max-width: 680px) {
  body:has(.product-sheet-section),
  body:has(.product-sheet-section) main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body:has(.product-sheet-section) > header {
    overflow: hidden;
  }

  body:has(.product-sheet-section) > header .nav-wrap {
    width: 100% !important;
    min-width: 0 !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
    gap: 16px;
  }

  body:has(.product-sheet-section) > header .logo-img {
    height: 30px !important;
  }

  body:has(.product-sheet-section) > header .nav-links {
    min-width: 0;
    flex: 1 1 auto;
    gap: 20px !important;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body:has(.product-sheet-section) > header .nav-links::-webkit-scrollbar {
    display: none;
  }

  body:has(.product-sheet-section) > header .nav-links a {
    flex: 0 0 auto;
    font-size: 0.86rem !important;
  }

  body:has(.product-sheet-section) .product-hero-detail {
    padding-top: 76px !important;
    padding-bottom: 18px !important;
  }

  body:has(.product-sheet-section) .product-detail-shell,
  body:has(.product-sheet-section) .product-sheet-container,
  body:has(.product-sheet-section) .product-gallery-container {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body:has(.product-sheet-section) .product-detail-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  body:has(.product-sheet-section) .product-breadcrumb {
    max-width: 100%;
    gap: 7px;
    overflow: hidden;
    font-size: 0.86rem !important;
    white-space: nowrap;
  }

  body:has(.product-sheet-section) .product-breadcrumb span::before {
    margin-right: 7px;
  }

  body:has(.product-sheet-section) .product-hero-media,
  body:has(.product-sheet-section) .product-hero-info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10.5 !important;
    margin-bottom: 62px !important;
    overflow: visible !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider .slide img {
    padding: 12px !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider .ctrl {
    width: 42px !important;
    height: 42px !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider .dots {
    position: absolute !important;
    right: 0 !important;
    left: 0 !important;
    bottom: -58px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider .dot {
    height: 52px !important;
  }

  body:has(.product-sheet-section) .product-labels {
    margin-bottom: 12px;
  }

  body:has(.product-sheet-section) .product-hero-info .hero-h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11.2vw, 3.15rem) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  body:has(.product-sheet-section) .product-hero-info .hero-h2 {
    max-width: 100% !important;
    font-size: 0.98rem !important;
    line-height: 1.8 !important;
  }

  body:has(.product-sheet-section) .product-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body:has(.product-sheet-section) .product-trust-row span {
    min-width: 0;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.96rem;
  }

  body:has(.product-sheet-section) .product-hero-info .uci-badge {
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  body:has(.product-sheet-section) .product-hero-info .uci-logo {
    width: 104px;
    max-width: 38%;
    height: auto !important;
  }

  body:has(.product-sheet-section) .product-geometry-panel,
  body:has(.product-sheet-section) .product-info-panel,
  body:has(.product-sheet-section) .product-gallery-container {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  body:has(.product-sheet-section) .product-geometry-grid,
  body:has(.product-sheet-section) .product-material-items,
  body:has(.product-sheet-section) .product-spec-panel dl,
  body:has(.product-sheet-section) .product-specsheet-grid,
  body:has(.product-sheet-section) .product-specsheet-grid--with-image,
  body:has(.product-sheet-section) .product-feature-list,
  body:has(.product-sheet-section) .product-gallery-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body:has(.product-sheet-section) .product-geometry-table {
    overflow-x: auto;
  }

  body:has(.product-sheet-section) .product-geometry-table table {
    min-width: 620px;
  }

  body:has(.product-sheet-section) .product-visual-spec-table {
    font-size: 0.8rem;
  }

  body:has(.product-sheet-section) .product-visual-spec-table th,
  body:has(.product-sheet-section) .product-visual-spec-table td {
    display: block;
    width: 100%;
  }

  body:has(.product-sheet-section) .product-hero-info .product-support-badge {
    width: 100%;
    grid-template-columns: 52px 1fr;
  }

  body:has(.product-sheet-section) .product-story-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding-right: 0;
    padding-left: 0;
  }

  body:has(.product-sheet-section) .product-related-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding-right: 0;
    padding-left: 0;
  }

  body:has(.product-sheet-section) .product-related-heading {
    display: grid;
    gap: 8px;
  }

  body:has(.product-sheet-section) .product-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-lightbox {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .product-lightbox-close {
    grid-column: 1 / -1;
  }

  .product-lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .product-lightbox-figure img {
    max-height: calc(100vh - 150px);
  }

  .product-lightbox-nav {
    grid-row: 3;
    width: 100%;
    height: 44px;
    font-size: 1.8rem;
  }

  .product-lightbox-prev {
    grid-column: 1;
  }

  .product-lightbox-next {
    grid-column: 2;
  }
}

@media (min-width: 681px) {
  body:has(.product-sheet-section):has(.hero-slider) main .hero.product-hero-detail > .container.product-detail-shell {
    gap: 10px clamp(44px, 4vw, 72px) !important;
    column-gap: clamp(44px, 4vw, 72px) !important;
    row-gap: 10px !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider {
    margin-bottom: 72px !important;
  }
}

@media (max-width: 680px) {
  body:has(.product-sheet-section):has(.hero-slider) main .hero.product-hero-detail > .container.product-detail-shell {
    gap: 24px !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

body > header a,
.nav-links a,
.nav-menu a,
.footer-nav a,
.footer-meta a {
  text-decoration: none !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider .dots {
  position: absolute !important;
  right: 0 !important;
  bottom: -78px !important;
  left: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 0 !important;
  transform: none !important;
}

body:has(.product-sheet-section) .product-hero-detail .hero-slider.team-frame-slider .dots {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

@media (max-width: 720px) {
  body:has(.product-sheet-section) .product-hero-detail .hero-slider.team-frame-slider {
    margin-bottom: 126px !important;
  }

  body:has(.product-sheet-section) .product-hero-detail .hero-slider.team-frame-slider .dots {
    bottom: -112px !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/* Wide imagegen alignment pass */
:root {
  --br-wide-width: 1680px;
}

body:not(:has(.product-sheet-section)) .container,
body:not(:has(.product-sheet-section)) .header-container,
body:not(:has(.product-sheet-section)) .dealer-container,
body:not(:has(.product-sheet-section)) .home-hero .hero-content {
  width: min(calc(100vw - 96px), var(--br-wide-width)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body:not(:has(.product-sheet-section)) .home-hero .hero-content {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body:not(:has(.product-sheet-section)) .home-hero {
  margin-top: 76px !important;
  padding-top: 25px !important;
}

body:not(:has(.product-sheet-section)) .nav-menu {
  gap: clamp(18px, 2.8vw, 40px) !important;
}

body:not(:has(.product-sheet-section)) .nav-link {
  font-size: clamp(0.86rem, 0.9vw, 0.95rem) !important;
}

body:not(:has(.product-sheet-section)) .page-header .container,
body:not(:has(.product-sheet-section)) .product-header .container,
body:not(:has(.product-sheet-section)) .dealer-header {
  max-width: none !important;
}

.dealer-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 38rem),
    var(--br-bg) !important;
}

.dealer-page .dealer-container {
  width: min(calc(100vw - 96px), var(--br-wide-width)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.dealer-hero {
  padding-top: calc(76px + 46px);
  padding-bottom: 28px;
}

.dealer-header {
  margin: 0 0 34px !important;
  text-align: center;
}

.dealer-header h1 {
  margin: 0 0 12px !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(4.4rem, 5.2vw, 6.2rem) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
}

.dealer-header p {
  max-width: none !important;
  margin: 0 auto !important;
  color: var(--br-ink) !important;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.04em;
}

.dealer-header strong {
  color: var(--br-red);
}

.dealer-map-panel {
  display: grid !important;
  grid-template-columns: minmax(520px, 0.92fr) minmax(520px, 1fr) !important;
  gap: clamp(42px, 5vw, 82px) !important;
  align-items: center !important;
  padding: clamp(36px, 4vw, 58px) clamp(42px, 5vw, 76px) !important;
  background: rgba(255, 255, 252, 0.74) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px !important;
  box-shadow: 0 12px 34px rgba(20, 24, 30, 0.05) !important;
  min-width: 0;
  overflow: hidden;
}

.dealer-map-visual {
  min-width: 0;
}

.dealer-map-panel > * {
  min-width: 0;
}

.dealer-map-art {
  position: relative;
  width: 100%;
  max-width: min(680px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.dealer-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.dealer-map-hotspots {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.dealer-hotspot {
  position: absolute;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  outline: none;
}

.dealer-hotspot:hover,
.dealer-hotspot:focus,
.dealer-hotspot:focus-visible {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.dealer-hotspot:focus-visible {
  outline: 2px solid rgba(23, 29, 37, 0.24);
  outline-offset: 2px;
}

.dealer-hotspot--hokkaido {
  left: 56%;
  top: 3%;
  width: 30%;
  height: 27%;
}

.dealer-hotspot--tohoku {
  left: 56%;
  top: 27%;
  width: 16%;
  height: 31%;
}

.dealer-hotspot--kanto {
  left: 60%;
  top: 56%;
  width: 22%;
  height: 19%;
}

.dealer-hotspot--chubu {
  left: 41%;
  top: 50%;
  width: 22%;
  height: 20%;
}

.dealer-hotspot--kinki {
  left: 31%;
  top: 60%;
  width: 18%;
  height: 15%;
}

.dealer-hotspot--chugoku {
  left: 16%;
  top: 51%;
  width: 23%;
  height: 17%;
}

.dealer-hotspot--shikoku {
  left: 35%;
  top: 74%;
  width: 22%;
  height: 14%;
}

.dealer-hotspot--kyushu {
  left: 2%;
  top: 60%;
  width: 22%;
  height: 34%;
}

.dealer-map-svg {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto;
}

.dealer-region {
  outline: none;
  cursor: pointer;
}

.dealer-region .dealer-region-shape,
.dealer-region .dealer-region-shore {
  transition: fill 0.22s ease, stroke 0.22s ease, filter 0.22s ease, transform 0.22s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.dealer-region .dealer-region-shape {
  stroke: #c2c5c3;
}

.dealer-region .dealer-region-shore {
  fill: none !important;
  stroke: #c2c5c3;
  stroke-linecap: round;
}

.dealer-region:hover .dealer-region-shape,
.dealer-region:focus-visible .dealer-region-shape {
  fill: #ffffff !important;
  stroke: var(--br-red);
  filter: drop-shadow(0 8px 10px rgba(215, 25, 32, 0.14));
  transform: translateY(-2px);
}

.dealer-region--hokkaido .dealer-region-shape { fill: #e6eef5; }
.dealer-region--tohoku .dealer-region-shape { fill: #deede7; }
.dealer-region--kanto .dealer-region-shape { fill: #f2e9c9; }
.dealer-region--chubu .dealer-region-shape { fill: #f3edd2; }
.dealer-region--kinki .dealer-region-shape { fill: #efe7d8; }
.dealer-region--chugoku .dealer-region-shape { fill: #efddcb; }
.dealer-region--shikoku .dealer-region-shape { fill: #eadac8; }
.dealer-region--kyushu .dealer-region-shape { fill: #ecd3d8; }

.dealer-region-hit,
.dealer-region:hover .dealer-region-hit,
.dealer-region:focus-visible .dealer-region-hit {
  fill: transparent !important;
  stroke: transparent !important;
  stroke-width: 20px;
  filter: none !important;
  transform: none !important;
  pointer-events: all;
}

.dealer-map-lines {
  pointer-events: none;
}

.dealer-map-labels {
  fill: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 800;
  pointer-events: none;
}

.dealer-map-dots {
  fill: #9f9389;
  pointer-events: none;
}

.dealer-map-dots .is-primary {
  fill: var(--br-red);
}

.dealer-map-copy h2 {
  margin: 0 0 22px !important;
  color: var(--br-ink) !important;
  font-family: 'Inter', 'Noto Sans JP', sans-serif !important;
  font-size: clamp(1.45rem, 1.65vw, 1.95rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.dealer-map-copy {
  min-width: 0;
}

.dealer-map-copy h2::after {
  content: none !important;
}

.dealer-map-copy p {
  margin: 0 0 14px !important;
  color: var(--br-ink) !important;
  font-size: clamp(0.95rem, 1.05vw, 1.06rem) !important;
  line-height: 2 !important;
  overflow-wrap: anywhere;
}

.dealer-alert {
  position: relative;
  display: block !important;
  grid-template-columns: none !important;
  min-height: 0 !important;
  height: auto !important;
  margin-top: 28px !important;
  padding: 18px 22px 18px 66px !important;
  color: var(--br-ink) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 5px !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

.dealer-alert::before {
  content: "!";
  position: absolute;
  top: 19px;
  left: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--br-red);
  border: 1px solid var(--br-red);
  border-radius: 50%;
  font-weight: 900;
}

.dealer-list-section {
  padding: 0 0 clamp(72px, 6vw, 104px);
}

.dealer-prefecture {
  scroll-margin-top: 96px;
  margin-bottom: 28px;
}

.dealer-prefecture h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  color: var(--br-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.45rem, 1.65vw, 1.9rem);
  letter-spacing: 0.04em;
}

.dealer-prefecture h2::before {
  content: "";
  width: 4px;
  height: 30px;
  background: var(--br-red);
}

.dealer-shop-card {
  display: grid;
  grid-template-columns: 150px minmax(320px, 1.05fr) minmax(320px, 0.95fr) 46px;
  gap: 28px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 252, 0.84);
  border: 1px solid var(--br-line);
  border-radius: 4px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.dealer-shop-card:hover,
.dealer-prefecture.is-highlighted .dealer-shop-card {
  border-color: rgba(215, 25, 32, 0.42);
  box-shadow: 0 12px 28px rgba(20, 24, 30, 0.08);
  transform: translateY(-1px);
}

.dealer-shop-card--primary {
  border-color: rgba(215, 25, 32, 0.34);
}

.dealer-shop-logo {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111923;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dealer-shop-logo span {
  display: block;
  font-size: 0.9rem;
}

.dealer-shop-logo--north {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #05070a;
}

.dealer-shop-logo--sendai {
  background: #173744;
}

.dealer-shop-logo--tokyo {
  background: #242a31;
}

.dealer-shop-logo--bigrock {
  background: linear-gradient(180deg, #e02028, #c70f18);
}

.dealer-shop-main h3 {
  margin: 0 0 10px;
  color: var(--br-ink);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  font-weight: 900;
}

.dealer-shop-main p,
.dealer-shop-note p,
.dealer-prefecture--empty p,
.dealer-partner-panel p {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.dealer-shop-main a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--br-red);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.dealer-shop-main a::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../assets/design-ui/icon-external-red.svg") center / contain no-repeat;
}

.dealer-shop-note span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--br-red);
  background: #fff;
  border: 1px solid var(--br-red);
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
}

.dealer-shop-arrow {
  width: 34px;
  height: 34px;
  display: block;
  background: url("../assets/design-ui/icon-arrow-right-dark.svg") center / 22px no-repeat;
}

.dealer-prefecture--empty {
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(221, 217, 209, 0.72);
}

.dealer-partner-panel {
  margin-top: 56px;
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
  background: #111923;
  border-radius: 4px;
}

.dealer-partner-panel h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Oswald', 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: 0.04em;
}

.dealer-partner-panel p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.72);
}

.dealer-partner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.dealer-partner-actions .btn {
  min-width: 220px;
}

.dealer-secondary-btn {
  color: #fff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
}

.dealer-secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.72) !important;
}

@media (max-width: 1180px) {
  .dealer-map-panel,
  .dealer-shop-card {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dealer-shop-logo {
    width: 128px;
  }

  .dealer-shop-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .dealer-page .dealer-container {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body:not(:has(.product-sheet-section)) .container,
  body:not(:has(.product-sheet-section)) .header-container,
  body:not(:has(.product-sheet-section)) .dealer-container,
  body:not(:has(.product-sheet-section)) .home-hero .hero-content {
    width: calc(100vw - 32px) !important;
  }

  .dealer-hero {
    padding-top: calc(76px + 28px);
  }

  .dealer-header h1 {
    font-size: clamp(2.72rem, 14vw, 3.4rem) !important;
    letter-spacing: 0.06em !important;
    max-width: 100%;
  }

  .dealer-map-panel {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px !important;
  }

  .dealer-map-visual,
  .dealer-map-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .dealer-map-copy {
    margin-top: 24px;
  }

  .dealer-map-art {
    width: 100%;
  }

  .dealer-map-labels {
    font-size: 20px;
  }

  .dealer-shop-card {
    gap: 16px;
    padding: 14px;
  }
}

/* About page cohesion pass */
.about-page {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0) 34rem),
    var(--br-bg) !important;
  color: var(--br-ink);
}

.about-page .about-hero {
  position: relative;
  min-height: 360px !important;
  height: auto !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  background:
    linear-gradient(90deg, rgba(7, 14, 22, 0.84), rgba(7, 14, 22, 0.52) 42%, rgba(7, 14, 22, 0.18)),
    url("../assets/images/factory.jpg") center 52% / cover no-repeat !important;
  overflow: hidden;
}

.about-page .about-hero .container {
  width: min(calc(100vw - 96px), 1360px) !important;
  max-width: none !important;
  padding-top: 76px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.about-page .about-hero-kicker {
  margin: 0 0 12px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page .about-hero h1 {
  max-width: 720px;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 4rem !important;
  font-weight: 400 !important;
  line-height: 1.14 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.about-page .about-hero h1::after {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  margin-top: 22px;
  background: var(--br-red);
}

.about-page .about-hero p:not(.about-hero-kicker) {
  max-width: 700px;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.18rem !important;
  font-weight: 700;
  line-height: 1.85;
}

.about-story-section {
  padding: 58px 0 96px;
}

.about-story-container {
  width: min(calc(100vw - 96px), 1360px) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.about-lead-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  gap: 64px;
  align-items: start;
  padding: 0 0 52px;
  border-bottom: 1px solid var(--br-line);
}

.about-lead-heading > span,
.about-section-heading > span,
.about-proof-strip span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--br-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-lead-heading h2,
.about-section-heading h2 {
  margin: 0 !important;
  color: var(--br-ink) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 3rem !important;
  font-weight: 500 !important;
  line-height: 1.24 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.about-lead-heading h2::after,
.about-section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 22px 0 0;
  background: var(--br-red);
}

.about-nowrap {
  white-space: nowrap;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.about-lead-body {
  display: grid;
  gap: 18px;
}

.about-lead-body p,
.about-section-heading p,
.about-details-stack .details-content p {
  margin: 0 !important;
  color: var(--br-ink) !important;
  font-size: 1rem !important;
  line-height: 2.05 !important;
  letter-spacing: 0.02em;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 70px;
  background: var(--br-line);
  border: 1px solid var(--br-line);
}

.about-proof-strip > div {
  min-height: 156px;
  padding: 28px 30px;
  background: rgba(255, 255, 252, 0.84);
}

.about-proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--br-ink);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.3;
}

.about-proof-strip p {
  margin: 0 !important;
  color: var(--br-muted) !important;
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-technology-section,
.about-policy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(540px, 1.18fr);
  gap: 58px;
  align-items: start;
  padding: 0 0 70px;
}

.about-policy-section {
  padding-top: 58px;
  border-top: 1px solid var(--br-line);
}

.about-section-heading {
  position: sticky;
  top: 104px;
}

.about-section-heading p {
  margin-top: 24px !important;
  max-width: 460px;
}

.about-page .about-tech-grid {
  grid-column: auto !important;
  grid-row: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 !important;
}

.about-page .tech-item {
  min-height: 336px;
  padding: 34px 26px !important;
  background: rgba(255, 255, 252, 0.82) !important;
  border: 1px solid var(--br-line) !important;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(23, 29, 37, 0.06);
}

.about-page .tech-item h3 {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .about-details-stack {
  display: grid;
  gap: 12px;
}

.about-page .about-details-stack details {
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 252, 0.86);
  border: 1px solid var(--br-line);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(23, 29, 37, 0.04);
}

.about-page .about-details-stack summary {
  min-height: 70px;
  padding: 20px 28px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.about-page .about-details-stack summary::-webkit-details-marker {
  display: none;
}

.about-page .about-details-stack summary h3 {
  margin: 0 !important;
  color: var(--br-ink) !important;
  font-family: "Inter", "Noto Sans JP", sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.about-page .about-details-stack summary::after {
  content: "+";
  color: var(--br-ink);
  font-size: 1.5rem;
  line-height: 1;
}

.about-page .about-details-stack details[open] summary::after {
  content: "−";
}

.about-page .about-details-stack .details-content {
  padding: 0 28px 30px !important;
  display: grid;
  gap: 18px;
}

.about-warning,
.about-shop-box {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--br-line);
  border-radius: 4px;
}

.about-warning {
  border-color: rgba(215, 25, 32, 0.34);
  background: rgba(215, 25, 32, 0.035);
}

.about-warning h4,
.about-shop-box h4 {
  margin: 0 0 10px !important;
  color: var(--br-ink) !important;
  font-family: "Inter", "Noto Sans JP", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.about-warning h4 {
  color: var(--br-red) !important;
}

.about-shop-box a {
  color: var(--br-red);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .about-technology-section,
  .about-policy-section {
    grid-template-columns: 1fr;
  }

  .about-section-heading {
    position: static;
  }

  .about-page .about-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 920px) {
  .about-page .about-hero .container,
  .about-story-container {
    width: min(calc(100vw - 44px), 760px) !important;
  }

  .about-lead-panel,
  .about-proof-strip,
  .about-page .about-tech-grid {
    grid-template-columns: 1fr !important;
  }

  .about-proof-strip {
    gap: 0;
  }

  .about-page .tech-item {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .about-page .about-hero {
    min-height: 330px !important;
  }

  .about-page .about-hero .container,
  .about-story-container {
    width: calc(100vw - 32px) !important;
  }

  .about-page .about-hero h1 {
    font-size: 2.7rem !important;
  }

  .about-page .about-hero p:not(.about-hero-kicker) {
    font-size: 1rem !important;
  }

  .about-story-section {
    padding: 42px 0 72px;
  }

  .about-lead-panel {
    gap: 26px;
    padding-bottom: 36px;
  }

  .about-lead-heading h2,
  .about-section-heading h2 {
    font-size: 2rem !important;
  }

  .about-proof-strip {
    margin: 28px 0 48px;
  }

  .about-technology-section,
  .about-policy-section {
    gap: 28px;
    padding-bottom: 48px;
  }

  .about-page .about-details-stack summary {
    padding: 18px 20px !important;
  }

  .about-page .about-details-stack .details-content {
    padding: 0 20px 24px !important;
  }
}

.product-card.is-filter-hidden,
.product-card[hidden] {
  display: none !important;
}

.filter-btn:focus {
  outline: none;
}

.filter-btn:focus-visible {
  outline: 2px solid rgba(215, 25, 32, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  body:has(.product-sheet-section):has(.hero-slider) main .hero.product-hero-detail > .container.product-detail-shell {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  body:has(.product-sheet-section) .product-hero-media,
  body:has(.product-sheet-section) .product-hero-info,
  body:has(.product-sheet-section) .product-primary-cta,
  body:has(.product-sheet-section) .product-hero-info .product-support-badge,
  body:has(.product-sheet-section) .product-hero-info .uci-badge {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body:has(.product-sheet-section) .product-visual-spec-table th,
  body:has(.product-sheet-section) .product-visual-spec-table td,
  body:has(.product-sheet-section) .product-spec-panel dd,
  body:has(.product-sheet-section) .product-feature-list span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1120px) {
  .footer-inner {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    gap: 22px !important;
    text-align: center;
  }

  .footer-nav,
  .footer-meta {
    justify-content: center !important;
  }
}

@media (max-width: 1180px) {
  .product-compatibility-container {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  .product-compatibility-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 720px) {
  .product-compatibility-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 0;
  }

  .compatibility-brand-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .compatibility-brand-card {
    padding: 13px 14px;
  }
}

/* ===== note風ブログカード（末尾上書き / NOTE STYLE BLOG CARDS） ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e4ded1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(20, 24, 28, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 24, 28, 0.12);
  border-color: #d8d1c0;
}
.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #efeae0;
  display: block;
  border-radius: 0;
}
.blog-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: #20242a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: #6b6f76;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}
.blog-card .news-date {
  font-size: 12px;
  color: #8a8e95;
}
.blog-card .btn {
  display: none !important;
}

/* ===== ブログ一覧：カード縮小＋絞り込み/ソート＋ページャ ===== */
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.blog-card-body { padding: 16px 16px 18px; gap: 8px; }
.blog-card-title { font-size: 15.5px; line-height: 1.5; }
.blog-card-excerpt { font-size: 12.5px; }

.blog-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-bottom: 28px;
}
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-chip {
  font-size: 13px; line-height: 1; padding: 8px 14px; border-radius: 999px;
  border: 1px solid #ded8cc; color: #5c626a; background: #fff;
  text-decoration: none; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.blog-chip:hover { border-color: #d71920; color: #d71920; }
.blog-chip.is-active { background: #d71920; border-color: #d71920; color: #fff; }
.blog-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; white-space: nowrap; }
.blog-sort-link { color: #8a8e95; text-decoration: none; }
.blog-sort-link:hover { color: #20242a; }
.blog-sort-link.is-active { color: #20242a; font-weight: 700; }
.blog-sort-sep { color: #cfcabd; }

.blog-pager {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 44px; flex-wrap: wrap;
}
.blog-pager-num, .blog-pager-arrow {
  min-width: 38px; height: 38px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #ded8cc; border-radius: 8px; background: #fff;
  color: #20242a; font-size: 14px; text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.blog-pager-num:hover, .blog-pager-arrow:hover { border-color: #d71920; color: #d71920; }
.blog-pager-num.is-active { background: #d71920; border-color: #d71920; color: #fff; font-weight: 700; }

@media (max-width: 600px) {
  .blog-controls { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
}

/* ===== デスクトップのみ：ブログカードを小さめに（圧迫感軽減・モバイルは維持） ===== */
@media (min-width: 1021px) {
  .blog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 24px !important; }
  .blog-thumb { height: auto !important; aspect-ratio: 16 / 9 !important; }
  .blog-card-body { padding: 16px 18px 18px !important; }
  .blog-card-title { font-size: 15px !important; line-height: 1.5 !important; }
  .blog-card-excerpt { font-size: 12.5px !important; }
}
