/* Copied and adapted from FLOORSEAL WEB SITE/floorseal-shared.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, sans-serif;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

:root {
  --blue:      #1a4d8a;
  --blue-mid:  #2563b0;
  --blue-lite: #e8f0fb;
  --grey-dark: #2c2c2c;
  --grey-mid:  #5a5a5a;
  --grey-lite: #f4f5f7;
  --orange:    #e07420;
  --white:     #ffffff;
  --nav-h:     72px;
}

.placeholder {
  background: #e5eaf2;
  border: 1.5px dashed #a0b0c8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7e96;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  padding: 12px;
  line-height: 1.5;
  width: 100%;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav__logo-name { color: var(--white); font-weight: 700; font-size: 20px; letter-spacing: 0; line-height: 1; }
.nav__logo-sub { color: rgba(255,255,255,0.55); font-size: 10px; letter-spacing: 0; margin-top: 3px; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__link { color: rgba(255,255,255,0.8); font-size: 13px; cursor: pointer; transition: color 0.15s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav__link:hover { color: var(--white); }
.nav__link.active { color: var(--white); border-bottom-color: var(--orange); }
.nav__tel { background: var(--orange); color: var(--white); padding: 10px 18px; border-radius: 2px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.nav__tel:hover { opacity: 0.88; }
.nav__actions { display: flex; align-items: center; gap: 14px; margin-left: 28px; }
.nav__lang { display: flex; align-items: center; gap: 8px; }
.nav__lang-link { color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 700; text-decoration: none; transition: color 0.15s; }
.nav__lang-link:hover { color: #fff; }
.nav__lang-link.is-active { color: #fff; }
.nav__lang-sep { color: rgba(255,255,255,0.35); font-size: 11px; }
.nav__lang--mobile { padding: 18px 0 8px; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 8px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }

/* Header menu: slightly larger, right-aligned (desktop only) */
@media (min-width: 896px) {
  .nav__links {
    margin-left: auto;
    justify-content: flex-end;
    gap: 28px;
  }
  .nav__link { font-size: 14px; }
  .nav__actions { margin-left: 32px; }
  .nav__tel { font-size: 14px; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--blue);
  flex-direction: column;
  padding: 88px 40px 40px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block;
}
.mobile-menu__tel {
  margin-top: 28px;
  background: var(--orange) !important;
  text-align: center !important;
  padding: 18px !important;
  border-radius: 4px;
  border: none !important;
  font-size: 18px !important;
}

.page-hero {
  background: var(--blue);
  padding: 72px 60px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero__label { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0; margin-bottom: 12px; }
.page-hero__title { color: var(--white); font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: 0; margin-bottom: 14px; }
.page-hero__sub { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 560px; line-height: 1.8; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-top: 32px; font-size: 12px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Page hero: products */
.page-hero.page-hero--products {
  background-image: url("../img/hero/products-hero.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.page-hero.page-hero--products::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  width: auto;
  height: auto;
  right: auto;
  top: auto;
  background: linear-gradient(105deg, rgba(26,77,138,0.72) 0%, rgba(26,77,138,0.45) 45%, rgba(14,30,50,0.15) 100%);
}
.page-hero.page-hero--products > * { position: relative; z-index: 1; }

/* PC: show full-width (no crop) */
@media (min-width: 1024px) {
  .page-hero.page-hero--products {
    background-size: 100% auto;
  }
}

.section { padding: 80px 60px; }
.section--grey { background: var(--grey-lite); }
.section--white { background: var(--white); }

.btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; transition: opacity 0.15s, transform 0.15s; text-align: center; font-family: inherit; border: none; }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--blue { background: var(--blue); color: var(--white); padding: 14px 32px; border-radius: 2px; font-size: 14px; }
.btn--white { background: var(--white); color: var(--blue); padding: 16px 36px; border-radius: 2px; font-size: 15px; }
.btn--ghost { border: 2px solid var(--blue); color: var(--blue); padding: 14px 32px; border-radius: 2px; font-size: 14px; background: transparent; }

.container { max-width: 1180px; margin: 0 auto; }
.prose { color: var(--grey-mid); }
.prose p { margin: 0 0 16px; line-height: 1.95; }
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: var(--grey-dark);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}
.prose h2 { font-size: 22px; margin: 28px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 10px; }
.prose h4 { font-size: 15px; margin: 22px 0 8px; font-weight: 800; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 1.2em; }
.prose li { margin: 6px 0; line-height: 1.85; }
.prose a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose a.btn { text-decoration: none; }
.prose a.btn--blue { color: var(--white); }
.prose a.btn--white { color: var(--blue); }
.prose img { width: 100%; height: auto; border-radius: 6px; border: 1px solid #e0e5f0; background: #fff; }
.prose table { width: 100%; border-collapse: collapse; margin: 14px 0 18px; font-size: 14px; }
.prose th, .prose td { border-bottom: 1px solid #e8eaf0; padding: 12px 14px; vertical-align: top; }
.prose th { background: var(--grey-lite); color: var(--grey-dark); font-weight: 800; }
.prose td { color: var(--grey-mid); }

.content-panel {
  background: #fff;
  border: 1px solid #e0e5f0;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(26,77,138,0.06);
}

.section-label {
  color: var(--blue-mid);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--grey-dark);
  letter-spacing: 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 16px;
  flex-wrap: wrap;
}
.accent-bar {
  width: 44px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px 0 32px;
}
.accent-bar--center { margin: 14px auto 0; }
.center-head { text-align: center; margin-bottom: 56px; }

/* Home (minimal, aligned to mock) */
.hero {
  position: relative;
  min-height: 580px;
  background: #1e2a38;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg .placeholder { width: 100%; height: 100%; border-radius: 0; border: none; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,77,138,0.93) 0%, rgba(26,77,138,0.72) 45%, rgba(14,30,50,0.3) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 88px 60px; max-width: 660px; }
.hero__eyebrow { color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 0; margin-bottom: 22px; }
.hero__title { color: #fff; font-size: clamp(34px, 4.2vw, 54px); font-weight: 900; line-height: 1.2; margin-bottom: 22px; letter-spacing: 0; }
.hero__title em { color: #7eb3e8; font-style: normal; }
.hero__sub { color: rgba(255,255,255,0.73); font-size: clamp(13px, 1.4vw, 15px); line-height: 1.95; margin-bottom: 44px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Home hero: image only (show full image) */
.hero--image-only {
  min-height: 0;
  display: block;
  background: #0e1e32;
}
.hero--image-only .hero__bg {
  position: relative;
  inset: auto;
}
.hero--image-only .hero__bg picture { display: block; }
.hero--image-only .hero__bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero--brand {
  min-height: clamp(620px, 78vh, 840px);
  background: #143249;
}
.hero--brand .hero__bg picture,
.hero--brand .hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero--brand .hero__bg img {
  object-fit: cover;
}
.hero--brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 27, 38, 0.9) 0%, rgba(20, 50, 73, 0.78) 42%, rgba(20, 50, 73, 0.16) 100%),
    linear-gradient(180deg, rgba(12, 27, 38, 0.08) 0%, rgba(12, 27, 38, 0.46) 100%);
  z-index: 1;
}
.hero-brand__content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 120px));
  padding: 140px 0 96px;
  margin-left: clamp(60px, calc(25% - 330px), 180px);
  color: #fff;
}
.hero-brand__eyebrow {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.hero-brand__title {
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-brand__tagline {
  display: inline-block;
  color: #fffdf8;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  border-bottom: 4px solid var(--orange);
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.hero-brand__lead {
  max-width: 48em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 34px;
}
.hero-brand__lead span,
.home-concept__title span,
.home-concept__copy p span {
  display: block;
}
.hero-brand__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-brand__ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-news {
  border-bottom: 1px solid rgba(45, 82, 96, 0.14);
}

.home-concept {
  position: relative;
  box-shadow: inset 0 1px 0 rgba(45, 82, 96, 0.08);
}

.home-concept__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}
.home-concept__title {
  color: var(--grey-dark);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.home-concept__copy p {
  color: var(--grey-mid);
  font-size: 15px;
  line-height: 2.05;
  max-width: 46em;
  overflow-wrap: anywhere;
}
.home-concept__copy p + p {
  margin-top: 14px;
}
.home-concept__copy,
.home-concept__points {
  min-width: 0;
}
.home-concept__points {
  display: grid;
  gap: 12px;
}
.home-concept__point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(45, 82, 96, 0.15);
  border-radius: 6px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}
.home-concept__point span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}
.home-concept__point strong {
  color: var(--grey-dark);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Section headings (home, products, etc.) */
.section-head { margin-bottom: 36px; }
.section-head__label {
  color: var(--blue-mid);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--grey-dark);
  letter-spacing: 0;
  margin-bottom: 8px;
}
.section-head__sub { font-size: 14px; color: var(--grey-mid); line-height: 1.7; }

/* News */
.container--narrow { max-width: 860px; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-item { border-bottom: 1px solid #e8eaf0; }
.news-item:last-child { border-bottom: none; }
.news-item__link,
.news-item__static { display: block; padding: 20px 0; text-decoration: none; color: inherit; }
.news-item__link:hover .news-item__title { color: var(--blue); }
.news-item__date {
  display: block;
  color: var(--blue-mid);
  font-size: 12px;
  margin-bottom: 6px;
}
.news-item__title {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.75;
  transition: color 0.15s;
}
.news-item__arrow { color: var(--blue); font-weight: 700; }
.news-empty { color: var(--grey-mid); font-size: 14px; line-height: 1.8; }
.home-news__scroll {
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e0e5f0;
  border-radius: 4px;
  background: #fff;
  padding: 0 20px;
}
.home-news__scroll .news-item__link,
.home-news__scroll .news-item__static { padding: 16px 0; }
.home-news__more { margin-top: 16px; text-align: right; }
.home-news__more a { color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.home-news__more a:hover { opacity: 0.85; }

/* Home: PICK UP */
.home-pickup .section-head { margin-bottom: 48px; }
.home-pickup .section-head__sub { max-width: 760px; }
.home-series {
  display: grid;
  gap: 28px;
}
.home-series-row {
  --series-accent: #174f83;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 430px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(45, 82, 96, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.home-series-row--flip {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
}
.home-series-row--flip .home-series-row__media {
  order: 2;
}
.home-series-row--flip .home-series-row__body {
  order: 1;
}
.home-series-row__media {
  position: relative;
  min-height: 430px;
  background: #e7eeec;
  overflow: hidden;
}
.home-series-row__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(18, 45, 65, 0) 0%, rgba(18, 45, 65, 0.36) 100%);
  pointer-events: none;
}
.home-series-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}
.home-series-row__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 7px 12px;
  border-radius: 3px;
}
.home-series-row__image-note {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.home-series-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 66px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 253, 248, 0.98) 100%),
    linear-gradient(180deg, rgba(95, 127, 108, 0.05), rgba(23, 79, 131, 0.04));
}
.home-series-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.home-series-row__meta span:first-child {
  color: #fff;
  background: var(--series-accent);
  padding: 5px 9px;
  border-radius: 3px;
}
.home-series-row__title {
  color: var(--grey-dark);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.home-series-row__en {
  color: var(--grey-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-series-row__bar {
  width: 72px;
  height: 4px;
  background: var(--series-accent);
  margin: 24px 0;
}
.home-series-row__catch {
  color: var(--blue);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 12px;
}
.home-series-row__teaser {
  color: var(--grey-mid);
  font-size: 14px;
  line-height: 2;
  max-width: 46em;
}
.home-series-row__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.home-series-row__price {
  color: var(--grey-dark);
  font-size: 13px;
  font-weight: 800;
  margin-right: auto;
}
.home-pickup__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.home-pickup-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e5f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 77, 138, 0.06);
}
.home-pickup-item__media {
  position: relative;
  background: #eef2f8;
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.home-pickup-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-pickup-item__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 6px 12px;
  border-radius: 2px;
}
.home-pickup-item__body {
  flex: 1;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-pickup-item__num {
  color: rgba(95, 127, 108, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.home-pickup-item__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: 0;
}
.home-pickup-item__title {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 900;
  color: var(--grey-dark);
  line-height: 1.25;
}
.home-pickup-item__en {
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-pickup-item__catch {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.65;
}
.home-pickup-item__teaser {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.8;
}
.home-pickup-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}
.home-pickup-item__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-dark);
}
.home-pickup-item__soon {
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-mid);
}

.content-notice {
  font-size: 13px;
  color: var(--grey-mid);
  background: var(--grey-lite);
  border: 1px solid #e0e5f0;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.home-categories-section .section-head__sub strong { color: var(--grey-dark); font-weight: 900; }
.home-categories-section .section-header { align-items: flex-start; margin-bottom: 36px; }

.u-pc-only { display: inline; }
@media (max-width: 768px) {
  .u-pc-only { display: none; }
}

.card { background: #fff; border-radius: 4px; border: 1px solid #e0e5f0; padding: 28px; transition: box-shadow 0.25s, transform 0.25s; }
.cards-grid .card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.cards-grid .card__img { background: #eef2f8; overflow: hidden; }
.cards-grid .card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cards-grid .card__cta { margin-top: auto; }
.card:hover { box-shadow: 0 8px 32px rgba(26,77,138,0.14); transform: translateY(-4px); }

/* Fixed media frame (≈ golden ratio) for cards */
.card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eef2f8;
}
.card-media::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: calc(100% * 500 / 809); /* ≈ 1:1.618 (golden-ish), integer ratio for padding hack */
}
.card-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@supports (aspect-ratio: 809 / 500) {
  .card-media::before { display: none; }
  .card-media { aspect-ratio: 809 / 500; }
  .card-media > img { position: absolute; inset: 0; }
}
.card__title { font-size: 18px; font-weight: 900; color: var(--grey-dark); margin-bottom: 10px; }
.card__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 16px; }
.card__cta { color: var(--blue); font-size: 13px; font-weight: 700; }

/* Home: corporate CTA band (mock-aligned) */
.corp-cta {
  background: var(--grey-dark);
  padding: 64px 60px;
}
.corp-cta__grid {
  display: grid;
  grid-template-columns: 140px 1fr 320px;
  gap: 40px;
  align-items: center;
}
.corp-cta__badge {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}
.corp-cta__badge-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-lite);
  border: 1px solid rgba(26,77,138,0.25);
  position: relative;
}
.corp-cta__badge-mark::before {
  content: '';
  position: absolute;
  inset: 10px 10px auto 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0.9;
}
.corp-cta__badge-mark::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 14px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0.55;
}
.corp-cta__badge-text {
  font-size: 12px;
  font-weight: 900;
  color: var(--grey-dark);
  letter-spacing: 0;
  text-align: center;
  padding: 0 10px;
  line-height: 1.35;
}
.corp-cta__title {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.corp-cta__sub {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.95;
}
.corp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  padding: 18px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.corp-cta__btn:hover { opacity: 0.92; transform: translateY(-1px); }

.cta-band { background: var(--blue); padding: 72px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-radius: 4px; }
.cta-band__title { color: var(--white); font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; margin-bottom: 8px; }
.cta-band__sub { color: rgba(255,255,255,0.65); font-size: 14px; }
.cta-band__actions { display: flex; gap: 12px; }
.cta-band__right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cta-band__tel { color: var(--white); font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; letter-spacing: 0; }
.cta-band--full { border-radius: 0; }

/* Products */
/* Products (match mock: filter bar + pcard + featured rows) */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid #e0e5f0;
  padding: 0 60px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}
.filter-btn:hover { color: var(--blue); }
.filter-btn.active { color: var(--blue); border-bottom-color: var(--orange); }

.products-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pcard { background: #fff; border-radius: 4px; border: 1px solid #e0e5f0; overflow: hidden; cursor: pointer; transition: box-shadow 0.25s, transform 0.25s; }
.pcard:hover { box-shadow: 0 8px 36px rgba(26,77,138,0.13); transform: translateY(-4px); }
.pcard__stripe { height: 5px; }
.pcard__img { position: relative; overflow: hidden; background: #eef2f8; }
.pcard__img .card-media { background: #eef2f8; }
.pcard__badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 2px; letter-spacing: 0; }
.pcard__badge--muted { background: #6b7280; }
.pcard__body { padding: 24px 28px; }
.pcard__en { font-size: 10px; color: var(--grey-mid); letter-spacing: 0; margin-bottom: 4px; }
.pcard__jp { font-size: 20px; font-weight: 700; color: var(--grey-dark); margin-bottom: 4px; }
.pcard__sub { font-size: 13px; color: var(--grey-mid); margin-bottom: 14px; }
.pcard__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 20px; }
.pcard__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pcard__tag { background: var(--blue-lite); color: var(--blue-mid); font-size: 11px; padding: 4px 10px; border-radius: 20px; }
.pcard__cta { color: var(--blue); font-size: 13px; font-weight: 700; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #fff; }
.feature-row__img { overflow: hidden; }
.feature-row__img > img { display: block; width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.feature-row__body { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.feature-row--flip .feature-row__img { order: 2; }
.feature-row--flip .feature-row__body { order: 1; }
.feature-row--grey { background: var(--grey-lite); }
.feature-row__title { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--grey-dark); margin-bottom: 12px; }
.feature-row__en { color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0; margin-bottom: 14px; }
.feature-row__text { color: var(--grey-mid); font-size: 14px; line-height: 2; margin-bottom: 32px; }
.feature-row__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Product detail */
/* Product detail (match mock FloorSeal Product Detail.html) */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-bottom: 2px solid var(--blue);
  padding: 12px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar__name { font-size: 16px; font-weight: 700; color: var(--grey-dark); }
.sticky-bar__sub { font-size: 12px; color: var(--grey-mid); }
.sticky-bar__actions { display: flex; gap: 10px; }
.sticky-bar__btn { padding: 10px 20px; border-radius: 2px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.sticky-bar__btn--orange { background: var(--orange); color: #fff; }
.sticky-bar__btn--blue { background: var(--blue); color: #fff; }

.product-hero {
  background: var(--grey-lite);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.product-hero__media { position: sticky; top: 100px; }
.product-hero__main-img {
  border-radius: 8px; overflow: hidden; margin-bottom: 12px;
  background: #fff; border: 1px solid #e0e5f0;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-hero__thumbs { display: flex; gap: 10px; }
.product-hero__thumb {
  width: 72px; height: 72px; border-radius: 4px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.15s;
  background: #fff; border-color: #e0e5f0;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-hero__thumb.active { border-color: var(--blue); }

.product-hero__badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.product-hero__badge { font-size: 10px; font-weight: 700; letter-spacing: 0; padding: 4px 12px; border-radius: 2px; }
.product-hero__badge--new { background: var(--orange); color: #fff; }
.product-hero__badge--cat { background: var(--blue-lite); color: var(--blue-mid); }
.product-hero__name { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--grey-dark); letter-spacing: 0; margin-bottom: 6px; line-height: 1.1; }
.product-hero__name-en { font-size: 13px; color: var(--grey-mid); letter-spacing: 0; margin-bottom: 16px; }
.product-hero__catchcopy { font-size: 17px; color: var(--blue); font-weight: 700; margin-bottom: 20px; line-height: 1.5; }
.product-hero__desc { font-size: 14px; color: var(--grey-mid); line-height: 2; margin-bottom: 28px; }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tag { background: var(--grey-lite); color: var(--grey-mid); font-size: 12px; padding: 5px 14px; border-radius: 20px; border: 1px solid #e0e5f0; }

.buy-box { background: #fff; border-radius: 8px; padding: 28px; border: 1.5px solid #e0e5f0; margin-bottom: 20px; }
.buy-box__label { font-size: 11px; color: var(--grey-mid); letter-spacing: 0; margin-bottom: 16px; font-weight: 700; }
.buy-box__shops { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.shop-btn { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-radius: 4px; cursor: pointer; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity 0.15s, transform 0.15s; }
.shop-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.shop-btn--rakuten { background: #BF0000; color: #fff; }
.shop-btn--yahoo { background: #6001D2; color: #fff; }
.shop-btn--amazon { background: #FF9900; color: #fff; }
.shop-btn__arrow { font-size: 18px; }
.buy-box__divider { border: none; border-top: 1px solid #e8eaf0; margin: 16px 0; }
.buy-box__contact { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--grey-mid); }
.buy-box__contact a { color: var(--blue); font-weight: 700; }

.trust-row { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--grey-mid); background: var(--grey-lite); padding: 7px 12px; border-radius: 20px; }
.trust-badge__icon { font-size: 14px; }

.features-section { padding: 80px 60px; background: #fff; }
.spec-section { padding: 80px 60px; background: #fff; }
.spec-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #e8eaf0; }
.spec-table th { text-align: left; padding: 16px 20px; background: var(--grey-lite); font-size: 13px; font-weight: 700; color: var(--grey-dark); width: 160px; vertical-align: top; }
.spec-table td { padding: 16px 20px; font-size: 14px; color: var(--grey-mid); line-height: 1.7; }

.related-section { padding: 64px 60px; background: var(--grey-lite); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.related-card { background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #e0e5f0; cursor: pointer; text-decoration: none; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.related-card:hover { box-shadow: 0 4px 20px rgba(26,77,138,0.1); transform: translateY(-3px); }
.related-card__stripe { height: 4px; }
.related-card__body { padding: 18px; }
.related-card__jp { font-size: 14px; font-weight: 700; color: var(--grey-dark); margin-bottom: 4px; }
.related-card__sub { font-size: 11px; color: var(--grey-mid); }
.related-card__cta { font-size: 12px; color: var(--blue); font-weight: 700; margin-top: 10px; }

.final-cta { background: linear-gradient(135deg, #0f3460 0%, var(--blue) 60%, #1565c0 100%); padding: 80px 60px; text-align: center; }
.final-cta__title { color: #fff; font-size: clamp(24px, 3.5vw, 44px); font-weight: 900; letter-spacing: 0; margin-bottom: 14px; }
.final-cta__sub { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 48px; line-height: 1.8; }
.final-cta__shops { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.final-shop-btn { padding: 18px 40px; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: opacity 0.15s, transform 0.15s; min-width: 220px; justify-content: center; }
.final-shop-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.final-shop-btn--rakuten { background: #BF0000; color: #fff; }
.final-shop-btn--yahoo { background: #6001D2; color: #fff; }
.final-shop-btn--amazon { background: #FF9900; color: #fff; }
.final-cta__note { margin-top: 28px; color: rgba(255,255,255,0.45); font-size: 12px; }
.final-cta__note a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* Product Template (FloorSeal Product Template.html) — scoped */
.product-page .sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: #fff; border-bottom: 3px solid var(--blue);
  padding: 0 60px; height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.product-page .sticky.show { transform: translateY(0); }
.product-page .sticky__name { font-size: 15px; font-weight: 700; color: var(--grey-dark); }
.product-page .sticky__price { font-size: 13px; color: var(--orange); font-weight: 700; }
.product-page .sticky__btns { display: flex; gap: 8px; }
.product-page .sticky__btn { padding: 9px 18px; border-radius: 2px; font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; white-space: nowrap; transition: opacity 0.15s; }
.product-page .sticky__btn:hover { opacity: 0.85; }
.product-page .sticky__btn--r { background: #BF0000; color: #fff; }
.product-page .sticky__btn--y { background: #6001D2; color: #fff; }
.product-page .sticky__btn--a { background: #FF9900; color: #fff; }

.product-page .hero {
  background: var(--grey-lite);
  padding: 48px 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-page .hero__media { position: sticky; top: 76px; }
.product-page .hero__main-img {
  background: #fff; border-radius: 4px;
  border: 1px solid #e0e5f0;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 12px;
  position: relative;
}
.product-page .hero__main-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-page .hero__new-badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 2px; letter-spacing: 0; }
.product-page .hero__thumbs { display: flex; gap: 10px; margin-bottom: 20px; }
.product-page .hero__thumb { width: 72px; height: 72px; border-radius: 3px; background: #fff; border: 2px solid #e0e5f0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.15s; overflow: hidden; flex-shrink: 0; }
.product-page .hero__thumb.active { border-color: var(--blue); }
.product-page .hero__thumb-label { font-size: 9px; color: #aaa; text-align: center; padding: 4px; }

.product-page .hero__alert { background: #fff8e8; border: 1px solid #f5d07a; border-radius: 4px; padding: 12px 16px; font-size: 12px; color: #7a5a00; line-height: 1.7; display: flex; gap: 8px; align-items: flex-start; }
.product-page .hero__alert-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.product-page .hero__breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--grey-mid); margin-bottom: 20px; }
.product-page .hero__breadcrumb a { color: var(--blue-mid); }
.product-page .hero__breadcrumb span { color: #c0c8d8; }
.product-page .hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.product-page .badge { font-size: 10px; font-weight: 700; letter-spacing: 0; padding: 4px 12px; border-radius: 2px; }
.product-page .badge--new { background: var(--orange); color: #fff; }
.product-page .badge--cat { background: var(--blue-lite); color: var(--blue-mid); }
.product-page .hero__name { font-size: clamp(26px,3.2vw,40px); font-weight: 900; color: var(--grey-dark); letter-spacing: 0; line-height: 1.1; margin-bottom: 6px; }
.product-page .hero__name-en { font-size: 12px; color: var(--grey-mid); letter-spacing: 0; margin-bottom: 16px; }
.product-page .hero__copy { font-size: 16px; font-weight: 700; color: var(--blue); line-height: 1.55; padding-left: 14px; border-left: 4px solid var(--orange); margin-bottom: 18px; }
.product-page .hero__desc { font-size: 14px; color: var(--grey-mid); line-height: 2; margin-bottom: 22px; }
.product-page .hero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.product-page .hero__tag { background: #fff; border: 1px solid #d8dce8; color: var(--grey-mid); font-size: 12px; padding: 4px 12px; border-radius: 20px; }

.product-page .pbox { background: #fff; border-radius: 8px; padding: 24px; border: 1.5px solid #e0e5f0; margin-bottom: 18px; }
.product-page .pbox__label { font-size: 11px; font-weight: 700; letter-spacing: 0; color: var(--grey-mid); margin-bottom: 14px; }
.product-page .variants { display: flex; gap: 10px; margin-bottom: 16px; }
.product-page .variant { flex: 1; border: 2px solid #e0e5f0; border-radius: 6px; padding: 12px 14px; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.product-page .variant:hover { border-color: var(--blue); }
.product-page .variant.active { border-color: var(--blue); background: var(--blue-lite); }
.product-page .variant__size { font-size: 16px; font-weight: 700; color: var(--grey-dark); margin-bottom: 2px; }
.product-page .variant__price { font-size: 20px; font-weight: 900; color: var(--orange); letter-spacing: 0; }
.product-page .variant__tax { font-size: 10px; color: var(--grey-mid); font-weight: 400; }
.product-page .variant__area { font-size: 11px; color: var(--grey-mid); margin-top: 4px; }
.product-page .pbox__contents { background: var(--blue-lite); border-radius: 4px; padding: 12px 14px; font-size: 12px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 16px; }
.product-page .pbox__contents strong { color: var(--grey-dark); display: block; margin-bottom: 2px; }
.product-page .pbox__ship { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #2e7d32; font-weight: 700; margin-bottom: 16px; }
.product-page .pbox__ship::before { content: '✓'; }
.product-page .buy-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.product-page .buy-btn { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-radius: 3px; cursor: pointer; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity 0.15s, transform 0.12s; }
.product-page .buy-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.product-page .buy-btn--r { background: #BF0000; color: #fff; }
.product-page .buy-btn--y { background: #6001D2; color: #fff; }
.product-page .buy-btn--a { background: #FF9900; color: #fff; }
.product-page .buy-btn__icon { font-size: 18px; }
.product-page .buy-btn__label { flex: 1; padding: 0 12px; }
.product-page .buy-btn__arrow { opacity: 0.6; }
.product-page .pbox__fax { border-top: 1px solid #e8eaf0; padding-top: 12px; font-size: 12px; color: var(--grey-mid); display: flex; justify-content: space-between; align-items: center; }
.product-page .pbox__fax a { color: var(--blue); font-weight: 700; }
.product-page .trust { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.product-page .trust__item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--grey-mid); background: var(--grey-lite); padding: 6px 12px; border-radius: 20px; }

.product-page .divider-label { text-align: center; padding: 16px; background: var(--grey-dark); color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0; font-weight: 700; }

/* Match template full-width rhythm on product page */
.product-page .container { max-width: none; }

/* Problem -> Solution */
.product-page .problem-band { background: #fff; padding: 72px 60px; display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; align-items: center; }
.product-page .problem-box,
.product-page .solution-box { background: var(--grey-lite); border-radius: 8px; padding: 36px; }
.product-page .solution-box { background: var(--blue-lite); border: 2px solid var(--blue); }
.product-page .pb__label { font-size: 11px; font-weight: 700; letter-spacing: 0; margin-bottom: 12px; }
.product-page .problem-box .pb__label { color: var(--orange); }
.product-page .solution-box .pb__label { color: var(--blue); }
.product-page .pb__title { font-size: 20px; font-weight: 700; color: var(--grey-dark); margin-bottom: 16px; line-height: 1.4; }
.product-page .pb__list { list-style: none; margin: 0; padding: 0; }
.product-page .pb__list li { font-size: 14px; color: var(--grey-mid); line-height: 1.8; padding: 4px 0; display: flex; gap: 8px; }
.product-page .problem-box .pb__list li::before { content: '✗'; color: #e53935; flex-shrink: 0; }
.product-page .solution-box .pb__list li::before { content: '✓'; color: var(--blue); flex-shrink: 0; font-weight: 700; }
.product-page .arrow-center { display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--orange); font-weight: 900; }

/* Features */
.product-page .features { padding: 80px 60px; background: var(--grey-dark); }
.product-page .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; }
.product-page .feat { background: #1e2a38; padding: 36px 28px; transition: background 0.2s; }
.product-page .feat:hover { background: #253545; }
.product-page .feat__num { font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 12px; letter-spacing: 0; }
.product-page .feat__icon { font-size: 28px; margin-bottom: 14px; display: block; }
.product-page .feat__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.product-page .feat__desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.product-page .feat__accent { color: var(--orange); }

/* Applications */
.product-page .applications { padding: 80px 60px; background: #fff; }
.product-page .app-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.product-page .app-card { border-radius: 4px; overflow: hidden; border: 1px solid #e0e5f0; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; background: #fff; }
.product-page .app-card:hover { box-shadow: 0 8px 32px rgba(26,77,138,0.1); transform: translateY(-4px); }
.product-page .app-card__img { position: relative; }
.product-page .app-card__tag { position: absolute; bottom: 12px; left: 12px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0; padding: 5px 12px; border-radius: 2px; }
.product-page .app-card__body { padding: 18px 18px 20px; }
.product-page .app-card__title { font-size: 16px; font-weight: 800; color: var(--grey-dark); margin-bottom: 8px; }
.product-page .app-card__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.8; }

/* Detail section spacing */
.product-page .product-detail { padding: 72px 60px; background: #fff; }

@media (max-width: 1024px) {
  .product-page .hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .product-page .hero__media { position: static; }
  .product-page .sticky { padding: 0 32px; }
  .product-page .hero, .product-page .problem-band, .product-page .features, .product-page .applications { padding-left: 32px; padding-right: 32px; }
  .product-page .features-grid { grid-template-columns: repeat(2,1fr); }
  .product-page .product-detail { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .product-page .hero { padding: 32px 20px; gap: 28px; }
  .product-page .sticky { padding: 0 20px; height: 52px; }
  .product-page .sticky__btn { padding: 8px 12px; font-size: 11px; }
  .product-page .variants { flex-direction: column; }
  .product-page .hero, .product-page .features, .product-page .applications { padding-left: 20px; padding-right: 20px; }
  .product-page .problem-band { grid-template-columns: 1fr; padding: 52px 20px; }
  .product-page .arrow-center { transform: rotate(90deg); padding: 16px 0; }
  .product-page .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .product-page .app-grid { grid-template-columns: 1fr; }
  .product-page .product-detail { padding-left: 20px; padding-right: 20px; }
}

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.contact-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-group { margin-bottom: 28px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--grey-dark); margin-bottom: 8px; }
.form-label .required { background: var(--orange); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 2px; margin-left: 8px; letter-spacing: 0; font-weight: 700; }
.form-label .optional { color: var(--grey-mid); font-size: 11px; font-weight: 400; margin-left: 6px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d0d5e0;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  color: var(--grey-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,77,138,0.08); }
.form-input.error, .form-textarea.error { border-color: #e53935; }
.form-error { color: #e53935; font-size: 12px; margin-top: 6px; display: none; }
.form-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.alert { padding: 14px 16px; border-radius: 4px; margin-bottom: 16px; }
.alert--error { background: #fff1f1; border: 1px solid #ffd1d1; color: #b71c1c; }

.form-notice {
  background: var(--blue-lite);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  border-radius: 0 3px 3px 0;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.contact-sidebar { position: sticky; top: 92px; }
.sidebar-card { background: var(--grey-lite); border-radius: 4px; padding: 32px; margin-bottom: 20px; border: 1px solid #e0e5f0; }
.sidebar-card__title { font-size: 15px; font-weight: 700; color: var(--grey-dark); margin-bottom: 16px; }
.sidebar-tel { font-size: 28px; font-weight: 900; color: var(--blue); letter-spacing: 0; margin-bottom: 6px; }
.sidebar-tel-sub { font-size: 12px; color: var(--grey-mid); margin-bottom: 16px; }
.sidebar-shops { display: flex; flex-direction: column; gap: 10px; }
.sidebar-shop { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #fff; border-radius: 3px; border: 1px solid #e0e5f0; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--grey-dark); transition: box-shadow 0.15s; }
.sidebar-shop:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* Cases (match mock) */
.cases-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-tile { background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #e0e5f0; cursor: pointer; transition: box-shadow 0.25s, transform 0.25s; }
.case-tile:hover { box-shadow: 0 8px 36px rgba(26,77,138,0.13); transform: translateY(-4px); }
.case-tile--large { grid-column: span 2; }
.case-tile__img { position: relative; overflow: hidden; }
.case-tile__tag { position: absolute; bottom: 12px; left: 12px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 2px; letter-spacing: 0; }
.case-tile__body { padding: 24px 28px; }
.case-tile__product { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 0; margin-bottom: 8px; }
.case-tile__title { font-size: 18px; font-weight: 700; color: var(--grey-dark); margin-bottom: 10px; }
.case-tile__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 16px; }
.case-tile__meta { display: flex; gap: 20px; }
.case-tile__meta-item { font-size: 12px; color: var(--grey-mid); }
.case-tile__meta-item strong { color: var(--grey-dark); display: block; font-size: 13px; }
.case-tile__cta { margin-top: 16px; color: var(--blue); font-size: 13px; font-weight: 700; }

.stats-bar { background: var(--grey-dark); padding: 48px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat__num { color: #fff; font-size: 48px; font-weight: 900; letter-spacing: 0; line-height: 1; margin-bottom: 6px; }
.stat__unit { color: var(--orange); font-size: 16px; }
.stat__label { color: rgba(255,255,255,0.45); font-size: 12px; letter-spacing: 0; }

.cat-tabs { background: #fff; border-bottom: 1px solid #e0e5f0; padding: 0 60px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { padding: 18px 28px; font-size: 13px; font-weight: 600; color: var(--grey-mid); cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; transition: color 0.15s, border-color 0.15s; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; }
.cat-tab:hover { color: var(--blue); }
.cat-tab.active { color: var(--blue); border-bottom-color: var(--orange); }

/* About (match mock) */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card { background: #fff; border-radius: 4px; padding: 36px 32px; border: 1px solid #e0e5f0; }
.mission-card__num { font-size: 48px; font-weight: 900; color: var(--blue-lite); line-height: 1; margin-bottom: 16px; letter-spacing: 0; }
.mission-card__title { font-size: 18px; font-weight: 700; color: var(--grey-dark); margin-bottom: 12px; }
.mission-card__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.8; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stats-row--blue { background: var(--blue); }
.stat-cell { padding: 52px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-cell:last-child { border-right: none; }
.stat-cell__num { color: #fff; font-size: 56px; font-weight: 900; letter-spacing: 0; line-height: 1; margin-bottom: 6px; }
.stat-cell__unit { color: var(--orange); font-size: 20px; }
.stat-cell__label { color: rgba(255,255,255,0.45); font-size: 12px; letter-spacing: 0; margin-top: 8px; }

.two-col-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #e8eaf0; }
.info-table th { text-align: left; padding: 20px 24px; background: var(--grey-lite); font-size: 13px; font-weight: 700; color: var(--grey-dark); width: 200px; vertical-align: top; }
.info-table td { padding: 20px 24px; font-size: 14px; color: var(--grey-mid); line-height: 1.8; }

.timeline { position: relative; padding: 0; }
.timeline::before { content: ''; position: absolute; left: 120px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--blue-lite)); }
.timeline-item { display: flex; gap: 48px; padding: 0 0 48px; align-items: flex-start; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { flex-shrink: 0; width: 120px; text-align: right; padding-right: 36px; padding-top: 3px; font-size: 22px; font-weight: 900; color: var(--blue); letter-spacing: 0; position: relative; }
.timeline-year::after { content: ''; position: absolute; right: -7px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
.timeline-content { flex: 1; padding-top: 0; }
.timeline-title { font-size: 17px; font-weight: 700; color: var(--grey-dark); margin-bottom: 6px; }
.timeline-desc { font-size: 13px; color: var(--grey-mid); line-height: 1.8; }

/* Footer (mock-aligned: former home-prefooter) */
.footer { background: #fff; border-top: 1px solid #e8eaf0; padding: 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  padding: 64px 0 48px;
  border-bottom: 1px solid #e8eaf0;
}
.footer__logo-name { color: var(--grey-dark); font-weight: 900; font-size: 22px; letter-spacing: 0; margin-bottom: 8px; }
.footer__logo-sub { color: var(--grey-mid); font-size: 12px; font-weight: 700; }
.footer__meta { margin-top: 14px; color: var(--grey-mid); font-size: 13px; line-height: 1.95; }
.footer__cols { display: contents; }
.footer__col-title { color: var(--grey-dark); font-weight: 900; font-size: 13px; margin-bottom: 14px; letter-spacing: 0; }
.footer__link { display: block; color: var(--grey-mid); font-size: 13px; line-height: 2.2; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.footer__link:hover { color: var(--blue); }
.footer__bottom { background: #f7f8fb; border-top: 1px solid #e8eaf0; padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: flex-start; align-items: center; }
.footer__bottom small { color: rgba(26,34,51,0.45); font-size: 11px; }

/* Reveal: visible by default, animate only when JS enabled */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .nav__links { gap: 20px; }
  .section { padding: 64px 32px; }
  .page-hero { padding: 60px 32px 52px; }
  .footer__inner { padding: 52px 32px 40px; grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom-inner { padding-left: 32px; padding-right: 32px; }
  .hero__content { padding: 72px 32px; }
  .filter-bar { padding: 0 32px; }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--flip .feature-row__img { order: 0; }
  .feature-row--flip .feature-row__body { order: 0; }
  .feature-row__body { padding: 48px 32px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { position: static; }

  .cases-masonry { grid-template-columns: repeat(2, 1fr); }
  .case-tile--large { grid-column: span 2; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 40px 32px; }
  .cat-tabs { padding: 0 32px; }

  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 80px; }
  .timeline-year { width: 80px; font-size: 17px; }
  .two-col-wide { grid-template-columns: 1fr; gap: 40px; }

  .corp-cta { padding: 52px 32px; }
  .corp-cta__grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .corp-cta__badge { margin: 0 auto; }
  .corp-cta__action { justify-self: stretch; }

  .hero-brand__content { width: min(680px, calc(100% - 64px)); margin-left: 32px; padding-top: 120px; }
  .home-concept__grid { grid-template-columns: 1fr; gap: 36px; }
  .home-series-row,
  .home-series-row--flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-series-row--flip .home-series-row__media,
  .home-series-row--flip .home-series-row__body {
    order: 0;
  }
  .home-series-row__media {
    min-height: 340px;
  }
  .home-pickup__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-pickup-item__body { padding: 32px 28px; }

  .product-hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .product-hero__media { position: static; }
  .spec-wrap { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .features-section, .spec-section, .related-section, .final-cta { padding: 60px 32px; }
  .sticky-bar { padding: 12px 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__tel { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 52px 20px 44px; }
  .hero__content { padding: 72px 20px; }
  .hero--brand { min-height: 620px; }
  .hero-brand__content { width: calc(100% - 40px); margin-left: 20px; padding: 104px 0 72px; }
  .hero-brand__lead,
  .home-concept__title,
  .home-concept__copy p {
    word-break: break-all;
    line-break: anywhere;
  }
  .hero-brand__lead { font-size: 14px; }
  .hero-brand__actions .btn { width: 100%; }
  .home-concept__point { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cards-grid { grid-template-columns: 1fr; }
  .filter-bar { padding: 0 12px; }
  .filter-btn { padding: 16px 18px; font-size: 12px; }
  .products-full-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-band { padding: 44px 20px; flex-direction: column; text-align: center; }
  .footer__inner { padding: 44px 20px 34px; grid-template-columns: 1fr; }
  .footer__bottom-inner { padding-left: 20px; padding-right: 20px; }

  .corp-cta { padding: 44px 20px; }

  .home-categories-section .section-header { flex-direction: column; align-items: stretch; }
  .home-categories-section .section-header .btn { width: 100%; }
  .home-series { gap: 22px; }
  .home-series-row {
    border-radius: 6px;
  }
  .home-series-row__media {
    min-height: 260px;
  }
  .home-series-row__body {
    padding: 30px 22px;
  }
  .home-series-row__title {
    font-size: clamp(25px, 7.3vw, 34px);
  }
  .home-series-row__footer .btn {
    width: 100%;
  }
  .home-pickup__list { grid-template-columns: 1fr; }
  .home-pickup-item__body { padding: 24px 20px; }

  .cases-masonry { grid-template-columns: 1fr; }
  .case-tile--large { grid-column: span 1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 40px 20px; }
  .stat__num { font-size: 36px; }
  .cat-tabs { padding: 0 12px; }
  .cat-tab { padding: 16px 16px; font-size: 12px; }

  .mission-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 36px 20px; }
  .timeline::before { left: 60px; }
  .timeline-year { width: 60px; font-size: 14px; padding-right: 24px; }
  .timeline-item { gap: 28px; }
  .info-table th { width: 120px; padding: 16px; font-size: 12px; }
  .info-table td { padding: 16px; font-size: 13px; }

  .product-hero { padding: 32px 20px; gap: 28px; }
  .features-section, .spec-section, .related-section, .final-cta { padding: 52px 20px; }
  .sticky-bar { padding: 10px 20px; }
  .sticky-bar__name { font-size: 14px; }
  .final-cta__shops { flex-direction: column; align-items: center; }
  .final-shop-btn { width: 100%; max-width: 320px; }
}

/* Editorial refinement layer: preserve structure, reduce generated-template feel */
:root {
  --blue: #174f83;
  --blue-mid: #2d6f9f;
  --blue-lite: #edf5f8;
  --grey-dark: #202833;
  --grey-mid: #66717d;
  --grey-lite: #f6f7f4;
  --orange: #c96f2d;
  --ink-soft: #394552;
  --line: #dfe6e8;
  --paper: #fffdf8;
  --mist: #eef3f1;
  --green: #5f7f6c;
  --shadow-soft: 0 18px 44px rgba(32, 40, 51, 0.08);
  --shadow-lift: 0 24px 54px rgba(32, 40, 51, 0.14);
}

body {
  color: var(--grey-dark);
  background: #fbfbf8;
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(201, 111, 45, 0.22);
}

.nav {
  height: 76px;
  background: rgba(20, 50, 73, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.nav.scrolled {
  box-shadow: 0 14px 34px rgba(14, 30, 43, 0.18);
}

.nav__logo-name,
.footer__logo-name {
  letter-spacing: 0;
}

.nav__logo-sub {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0;
}

.nav__links {
  gap: 22px;
}

.nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  padding: 27px 0 25px;
  letter-spacing: 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__tel,
.mobile-menu__tel,
.corp-cta__btn,
.form-submit,
.btn,
.final-shop-btn,
.product-page .buy-btn,
.product-page .sticky__btn,
.sticky-bar__btn {
  border-radius: 3px;
}

.nav__tel {
  background: #d27a36;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.mobile-menu {
  background: #143249;
}

.page-hero {
  background: linear-gradient(110deg, #143249 0%, #194864 62%, #5f7f6c 100%);
  padding-top: 86px;
  padding-bottom: 74px;
}

.page-hero::after {
  display: none;
}

.page-hero__label,
.section-head__label,
.section-label,
.product-page .divider-label,
.stat__label,
.stat-cell__label {
  letter-spacing: 0;
}

.page-hero__title,
.section-head__title,
.section-title,
.feature-row__title,
.corp-cta__title,
.cta-band__title,
.final-cta__title,
.product-page .hero__name,
.product-page .feat__num,
.stat__num,
.stat-cell__num {
  letter-spacing: 0;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero.page-hero--products {
  background-color: #1b425d;
  background-size: cover;
}

.page-hero.page-hero--products::after {
  display: block;
  background: linear-gradient(100deg, rgba(18, 45, 65, 0.86) 0%, rgba(23, 79, 131, 0.58) 48%, rgba(255, 253, 248, 0.05) 100%);
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section--grey {
  background: var(--mist);
}

.section--white {
  background: #fffdf8;
}

.section-head {
  margin-bottom: 42px;
}

.section-head__label,
.section-label {
  color: var(--green);
  font-weight: 800;
}

.section-head__title,
.section-title {
  color: #1d2731;
  line-height: 1.28;
}

.section-head__sub {
  color: #697582;
}

.content-panel,
.card,
.pcard,
.case-tile,
.mission-card,
.related-card,
.product-page .pbox,
.product-page .app-card,
.sidebar-card {
  border: 1px solid rgba(45, 82, 96, 0.14);
  box-shadow: var(--shadow-soft);
}

.content-panel,
.mission-card,
.product-page .pbox {
  background: rgba(255, 255, 255, 0.86);
}

.card:hover,
.pcard:hover,
.case-tile:hover,
.related-card:hover,
.product-page .app-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.card-media,
.pcard__img,
.cards-grid .card__img,
.home-pickup-item__media {
  background: #e7eeec;
}

.card-media > img,
.hero__bg img,
.product-page .hero__main-img > img {
  filter: saturate(0.95) contrast(1.03);
}

.cards-grid .card__body,
.pcard__body,
.case-tile__body,
.feature-row__body,
.home-pickup-item__body {
  background: #fff;
}

.card__title,
.pcard__jp,
.case-tile__title,
.related-card__jp,
.product-page .app-card__title,
.mission-card__title {
  font-weight: 800;
  letter-spacing: 0;
}

.card__cta,
.pcard__cta,
.case-tile__cta,
.related-card__cta,
.home-news__more a {
  color: #1b6b86;
}

.home-news__scroll {
  border-color: rgba(45, 82, 96, 0.14);
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.news-item {
  border-bottom-color: rgba(45, 82, 96, 0.12);
}

.news-item__date {
  color: var(--green);
  font-weight: 700;
}

.pcard__stripe,
.related-card__stripe {
  height: 4px;
}

.pcard__tag,
.product-page .badge--cat {
  background: #edf5f1;
  color: #4e755f;
}

.product-page .hero__tag,
.tag,
.trust-badge,
.product-page .trust__item {
  background: #f6f7f4;
  border-color: rgba(45, 82, 96, 0.13);
  color: #5f6974;
}

.filter-bar,
.cat-tabs {
  background: rgba(255, 253, 248, 0.96);
  border-bottom-color: rgba(45, 82, 96, 0.14);
  box-shadow: 0 8px 24px rgba(32, 40, 51, 0.05);
}

.filter-btn,
.cat-tab {
  color: #6b7682;
  border-bottom-width: 2px;
}

.filter-btn:hover,
.filter-btn.active,
.cat-tab:hover,
.cat-tab.active {
  color: #174f83;
}

.filter-btn.active,
.cat-tab.active {
  border-bottom-color: #c96f2d;
}

.corp-cta,
.stats-bar,
.product-page .features {
  background: #202833;
}

.corp-cta__badge {
  background: #fffdf8;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.corp-cta__badge-mark {
  background: #edf5f1;
  border-color: rgba(95, 127, 108, 0.28);
}

.corp-cta__badge-mark::before,
.corp-cta__badge-mark::after {
  background: var(--green);
}

.corp-cta__sub,
.cta-band__sub,
.final-cta__sub {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  background: linear-gradient(110deg, #174f83 0%, #1d5f83 55%, #5f7f6c 100%);
}

.final-cta {
  background: linear-gradient(115deg, #143249 0%, #174f83 58%, #5f7f6c 100%);
}

.btn--blue,
.form-submit,
.product-page .sticky__btn--a {
  background: #174f83;
}

.btn--ghost {
  border-color: rgba(23, 79, 131, 0.42);
  color: #174f83;
  background: rgba(255, 255, 255, 0.32);
}

.hero-brand__ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--white {
  color: #174f83;
}

.placeholder {
  background: repeating-linear-gradient(135deg, #eef3f1 0, #eef3f1 10px, #f8f8f4 10px, #f8f8f4 20px);
  border-color: rgba(45, 82, 96, 0.18);
  color: #75808a;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, sans-serif;
}

.product-page .hero {
  background: #eef3f1;
}

.product-page .hero__main-img {
  border-color: rgba(45, 82, 96, 0.14);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.product-page .hero__copy {
  color: #174f83;
  border-left-color: #c96f2d;
}

.product-page .variant {
  border-color: rgba(45, 82, 96, 0.14);
  background: #fff;
}

.product-page .variant.active,
.product-page .variant:hover {
  border-color: #2d6f9f;
  background: #edf5f8;
}

.product-page .variant__price,
.product-page .sticky__price,
.case-tile__product,
.stat__unit,
.stat-cell__unit {
  color: #c96f2d;
}

.product-page .problem-box,
.product-page .solution-box {
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.product-page .problem-box {
  background: #fffdf8;
  border: 1px solid rgba(201, 111, 45, 0.16);
}

.product-page .solution-box {
  background: #edf5f1;
  border-color: rgba(95, 127, 108, 0.28);
}

.product-page .arrow-center {
  color: #c96f2d;
}

.product-page .feat {
  background: #26313d;
}

.product-page .feat:hover {
  background: #304050;
}

.product-page .feat__num {
  color: rgba(255, 255, 255, 0.08);
}

.form-input,
.form-textarea {
  border-color: rgba(45, 82, 96, 0.2);
  border-radius: 4px;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #2d6f9f;
  box-shadow: 0 0 0 4px rgba(45, 111, 159, 0.1);
}

.form-notice {
  background: #edf5f1;
  border-left-color: var(--green);
}

.sidebar-card {
  background: #fffdf8;
}

.sidebar-shop {
  border-color: rgba(45, 82, 96, 0.14);
}

.footer {
  background: #fffdf8;
  border-top-color: rgba(45, 82, 96, 0.12);
}

.footer__inner {
  border-bottom-color: rgba(45, 82, 96, 0.12);
}

.footer__bottom {
  background: #f1f4f1;
  border-top-color: rgba(45, 82, 96, 0.12);
}

@media (max-width: 1024px) {
  .nav {
    height: var(--nav-h);
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .page-hero {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .nav__link {
    padding: 0;
  }

  .home-news__scroll {
    padding-left: 16px;
    padding-right: 16px;
  }
}
