/*
  Original corporate template inspired by a Japanese product/company site structure.
  No third-party code or copyrighted images are included.
*/ :root {
  --ink: #192431;
  --sub: #687583;
  --line: #dfe5ea;
  --soft: #f4f7fa;
  --white: #fff;
  --blue: #0d3d63;
  --deep: #10202f;
  --accent: #9aaec1;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(19, 35, 53, .12);
  --font-jp: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  --font-en: 'Century Gothic', CenturyGothic, Futura, "Questrial", sans-serif;
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-jp);
  line-height: 1.85;
  background: #fff;
  letter-spacing: .02em
}
a {
  color: inherit;
  text-decoration: none
}
img {
  max-width: 100%;
  display: block
}
button, input, textarea, select {
  font: inherit
}
.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto
}
.narrow {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto
}
/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 92px;
  z-index: 1000;
  background: rgba(255, 255, 255, .0);
  backdrop-filter: blur(16px);
  backdrop-filter: blur(6px);
  /*border-bottom: 1px solid rgba(222, 229, 236, .65);*/
  transition: .35s ease
}
.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 10px 30px rgba(28, 44, 60, .08)
}
.header-inner {
  height: 100%;
  width: min(1360px, calc(100% - 38px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 245px
}
.logo-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -.05em;
  background: #fff
}
.logo-mark:before, .logo-mark:after {
  content: "";
  position: absolute;
  background: var(--ink)
}
.logo-mark:before {
  width: 18px;
  height: 2px;
  transform: rotate(45deg)
}
.logo-mark:after {
  width: 18px;
  height: 2px;
  transform: rotate(-45deg)
}
.logo-text {
  display: grid;
  line-height: 1.2
}
.logo-text strong {
  font-size: 17px;
  letter-spacing: .08em
}
.logo-text small {
  font-size: 10px;
  color: var(--sub);
  letter-spacing: .18em;
  text-transform: uppercase
}
.logo-img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
  display: block
}
.site-header.is-scrolled .logo-img {
  max-height: 50px
}
.global-nav {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}
.nav-link {
  display: grid;
  gap: 1px;
  padding: 22px 16px 18px;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap
}
.nav-link .en {
  font-family: Arial, Helvetica, var(--font-jp);
  font-size: 16px;
  letter-spacing: .05em
}
.nav-link .jp {
  font-size: 10px;
  color: var(--sub);
  letter-spacing: .12em
}
.nav-item:hover .nav-link, .nav-item.is-current .nav-link {
  color: var(--blue)
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease
}
.dropdown a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: #2a3644
}
.dropdown a:after {
  content: "›";
  color: var(--accent)
}
.dropdown a:hover {
  background: var(--soft);
  color: var(--blue)
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}
.outline-btn, .dark-btn {
  height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap
}
.outline-btn {
  border: 1px solid var(--ink);
  background: #fff
}
.dark-btn {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink)
}
.outline-btn:hover, .dark-btn:hover {
  transform: translateY(-1px)
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  position: relative
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--ink);
  margin: 7px auto;
  transition: .25s
}
body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg)
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg)
}
/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--soft)
}
.hero-slider {
  position: absolute;
  inset: 0
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s ease, transform 4.5s ease;
  transform: scale(1.02)
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1)
}
.hero-slide img {
  width: 100%;
 height: 100%;
  object-fit: cover;
	
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .44) 37%, rgba(255, 255, 255, .02) 74%)
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  padding-top: 80px
}
.hero-text {
  max-width: 660px
}
.hero-kicker {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: 22px
}
.hero h1 {
  font-family: var(--font-en);
  font-size: clamp(48px, 8.2vw, 112px);
  line-height: .95;
  letter-spacing: -.045em;
  margin: 0 0 32px
}
.hero-lead {
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 22px
}
.hero-desc {
  max-width: 520px;
  color: #3f4b57;
  font-size: 15px
}
.hero-no {
  position: absolute;
  right: calc(50% - 650px);
  bottom: 118px;
  z-index: 3;
  font-family: var(--font-en);
  font-size: 22px;
  letter-spacing: .1em
}
.hero-dots {
  position: absolute;
  left: calc(50% - 650px);
  bottom: 70px;
  z-index: 4;
  display: flex;
  gap: 12px
}
.hero-dot {
  width: 44px;
  height: 2px;
  background: rgba(25, 36, 49, .28);
  border: 0;
  padding: 0
}
.hero-dot.is-active {
  background: var(--ink)
}
.scroll {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 35px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .16em;
  color: #172231
}
.scroll:after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  margin: 12px auto 0;
  background: var(--ink);
  animation: scrollLine 1.8s infinite
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }
  45% {
    transform: scaleY(1);
    transform-origin: top
  }
  46% {
    transform-origin: bottom
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}
.side-store {
  position: fixed;
  right: 0;
  top: 220px;
  z-index: 999;
  writing-mode: vertical-rl;
  background: var(--ink);
  color: #fff;
  padding: 18px 12px;
  border-radius: 16px 0 0 16px;
  font-size: 12px;
  letter-spacing: .14em
}
.side-sns {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 999;
  display: grid;
  gap: 9px
}
.side-sns a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}
/* Sections */
.section {
  padding: 112px 0
}
.section-soft {
  background: var(--soft)
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px
}
.section-title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(42px, 7vw, 42px);
  line-height: .85;
  letter-spacing: -.04em
}
.section-title span {
  display: block;
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--sub);
  letter-spacing: .18em;
  margin-top: 16px
}
.view-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 220px);
  min-width: 130px;
  padding: 0 0 13px;
  overflow: hidden;
  font-family: Arial, Helvetica, var(--font-jp);
  font-size: clamp(15px, 1.02vw, 14px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .005em;
  transition: padding-left .38s cubic-bezier(.22, .61, .36, 1), color .28s ease
}
.view-more:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left
}
.view-more:after {
  content: "";
  flex: 0 0 46px;
  width: 76px;
  height: 16px;
  margin-left: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 76 16'%3E%3Cpath d='M1 8H64' fill='none' stroke='%23262626' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M58 3L64.5 8L58 13' fill='none' stroke='%23262626' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  transform: translateX(0);
  transition: transform .44s cubic-bezier(.22, .61, .36, 1), opacity .28s ease
}
.view-more:hover {
  padding-left: 8px
}
.view-more:hover:before {
  animation: viewMoreLine .72s cubic-bezier(.22, .61, .36, 1)
}
.view-more:hover:after {
  transform: translateX(12px)
}
@keyframes viewMoreLine {
  0% {
    transform-origin: right;
    transform: scaleX(1)
  }
  45% {
    transform-origin: right;
    transform: scaleX(0)
  }
  46% {
    transform-origin: left;
    transform: scaleX(0)
  }
  100% {
    transform-origin: left;
    transform: scaleX(1)
  }
}
.news-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line)
}
.news-card {
  display: grid;
  grid-template-columns: 150px 120px 1fr 46px;
  gap: 22px;
  align-items: center;
  background: #fff;
  padding: 24px 28px;
  transition: .25s
}
.news-card:hover {
  background: #f9fbfd
}
.news-date {
  font-family: var(--font-en);
  font-size: 16px
}
.news-tag {
  font-size: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  padding: 4px 10px;
  color: var(--sub)
}
.news-title {
  font-weight: 400
}
.news-arrow {
  font-size: 24px;
  color: var(--accent);
  text-align: right
}
/* Service */
.service-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: min(8vw, 90px);
  align-items: center
}
.service-visual {
  position: relative;
  min-height: 590px
}
.service-visual img {
  position: absolute;
  border-radius: 0;
  box-shadow: var(--shadow);
  object-fit: cover
}
.service-visual .photo-a {
  width: 56%;
  left: 0;
  top: 140px
}
.service-visual .photo-b {
  width: 49%;
  right: 0;
  bottom: 0
}
.service-visual:before {
  content: "Our Service";
  position: absolute;
  left: -18px;
  top: 0;
  font-family: var(--font-en);
  font-size: 72px;
  line-height: .85;
  color: rgba(16, 32, 47, .08);
  z-index: 0
}
.service-copy .small-en {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: .16em;
  color: var(--blue);
  margin-bottom: 22px
}
.service-copy h2 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.5;
  margin: 0 0 28px
}
.service-copy p {
  color: #52606e
}
.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.service-points span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  text-align: center
}
/* Feature */
.feature-band {
  padding: 95px 0;
  background: var(--deep);
  color: #fff;
  overflow: hidden
}
.feature-band .container {
  position: relative
}
.feature-en {
  position: absolute;
  right: 0;
  top: -60px;
  font-family: var(--font-en);
  font-size: 96px;
  line-height: .85;
  color: rgba(255, 255, 255, .06);
  white-space: nowrap
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  position: relative
}
.feature-card {
  background: #fff;
  color: var(--ink);
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2)
}
.feature-card:nth-child(even) {
  margin-top: 70px
}
.feature-card img {
  height: 100%;
  width: 100%;
  object-fit: cover
}
.feature-card-body {
  padding: 42px
}
.feature-card h3 {
  font-size: 26px;
  margin: 0 0 8px
}
.feature-card .en {
  font-family: var(--font-en);
  color: var(--blue);
  letter-spacing: .05em
}
.feature-card p {
  font-size: 14px;
  color: #52606e
}
/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: .28s;
  overflow: hidden
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}
.product-image {
  background: var(--soft);
  /*aspect-ratio: 1.22/1;*/
  overflow: hidden
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}
.product-card:hover img {
  transform: scale(1.04)
}
.product-body {
  padding: 24px
}
.product-body h3 {
  font-size: 18px;
  margin: 0 0 6px;
	line-height: 1.25;
}
.product-body p {
  font-size: 13px;
  color: var(--sub);
  margin: 0
}
.product-body .code {
  font-size: 11px;
  color: #9ca7b3;
  margin-bottom: 10px;
  letter-spacing: .14em;
  line-height: 1.35;
}
/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: min(7vw, 90px);
  align-items: center
}
.about-image {
  position: relative
}
.about-image:before {
  content: "About";
  position: absolute;
  left: -40px;
  top: -60px;
  font-family: var(--font-en);
  font-size: 120px;
  color: rgba(16, 32, 47, .07);
  z-index: 0
}
.about-image img {
  position: relative;
  box-shadow: var(--shadow)
}
.about-copy h2 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.55;
  margin: 0 0 24px;

}
.about-copy p {
  color: #52606e
}
.about-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px
}
.about-links a {
  position: relative;
  border: 1px solid var(--line);
  padding: 20px 24px;
  background: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  box-shadow: 0 10px 24px rgba(16, 36, 61, .05);
  transition: color .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease, transform .28s ease;
}
.about-links a:after {
  content: "→";
  color: currentColor;
  transform: translateX(0);
  transition: transform .28s ease, color .28s ease;
}
.about-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(215,25,32,.32);
  box-shadow: 0 20px 42px rgba(215,25,32,.12);
}
.about-links a:hover:after {
  transform: translateX(8px);
}

/* FAQ / Repair guide above contact */
.footer-guide {
  padding: 18px 0 18px;
  background: transparent;
}
.footer-guide-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.footer-guide-card {
  position: relative;
  min-height: 236px;
  padding: 44px 46px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(236, 208, 194, .95);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 246, 242, .98) 55%, rgba(255, 251, 248, 1) 100%);
  box-shadow: 0 18px 42px rgba(222, 92, 72, .08);
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.footer-guide-card + .footer-guide-card {
  border-left: 1px solid rgba(236, 208, 194, .95);
}
.footer-guide-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(236, 102, 78, .12), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(248, 223, 210, .45), transparent 34%),
    linear-gradient(145deg, transparent 0 69%, rgba(255, 255, 255, .78) 69% 100%);
  pointer-events: none;
}
.footer-guide-card:after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 72px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 14'%3E%3Cpath d='M1 7H61' fill='none' stroke='%23db4a38' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M55 2L61 7L55 12' fill='none' stroke='%23db4a38' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  opacity: .85;
  transition: transform .28s ease, opacity .28s ease;
}
.footer-guide-en,
.footer-guide-ja,
.footer-guide-text,
.footer-guide-more {
  position: relative;
  z-index: 1;
}
.footer-guide-en {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #d74738;
}
.footer-guide-ja {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--ink);
}
.footer-guide-text {
  max-width: 420px;
  margin: 14px 0 0;
  color: #6f7076;
  font-size: 14px;
  line-height: 1.9;
}
.footer-guide-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #d74738;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.footer-guide-more:after {
  content: ">";
  font-size: 12px;
  transform: scaleX(1.1);
}
.footer-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 134, 110, .92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 241, 234, 1) 58%, rgba(255, 249, 245, 1) 100%);
  box-shadow: 0 22px 48px rgba(222, 92, 72, .14);
}
.footer-guide-card:hover:after {
  transform: translateX(8px);
  opacity: 1;
}
.footer-guide-faq {
  background: linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 245, 240, .98) 58%, rgba(255, 250, 247, 1) 100%);
}
.footer-guide-faq .footer-guide-en {
  color: #d64638;
}
.footer-guide-repair {
  background: linear-gradient(135deg, rgba(255, 255, 255, .99) 0%, rgba(255, 248, 242, .98) 58%, rgba(255, 252, 248, 1) 100%);
}
.footer-guide-repair .footer-guide-en {
  color: #e26a49;
}

/* CTA/Footer */
.cta {
  padding: 118px 0;
  background: url("../assets/img/contact-bg.png") center center / cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 43, .42);
}
.cta:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 20%, rgba(17,31,43,.22) 100%);
  pointer-events: none;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta-panel {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 10px 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}
.cta-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: var(--font-en);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
  font-weight: 400;
}
.cta p {
  margin: 16px auto 34px;
  max-width: 640px;
  color: rgba(255, 255, 255, .96);
  font-size: 15px;
  line-height: 1.9;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .22);
}
.white-btn {
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  font-weight: 700;
  letter-spacing: .1em;
  box-shadow: 0 10px 28px rgba(10, 23, 36, .18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 23, 36, .24);
  background: #fff;
}

.footer {
  background: #fff;

  padding: 58px 0 34px
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr .8fr;
  gap: 40px
}
.footer a {
  /*color: rgba(255, 255, 255, .78)*/
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px
}
.follow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.follow a {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(25, 36, 49, .08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.32);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.follow a:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 61, 99, .18);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 24px rgba(25,36,49,.08);
}
.follow a svg {
  width: 22px;
  height: 22px;
  fill: var(--ink);
  display: block;
}
.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  /*color: rgba(255, 255, 255, .55)*/
}
/* Lower pages */
.page-hero {
  padding: 180px 0 86px;
  background: linear-gradient(120deg, #f3f7fb, #fff);
  position: relative;
  overflow: hidden
}
.page-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgb(250 166 187 / 8%);
}
.page-title {
  position: relative;
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(54px, 9vw, 40px);
  line-height: .85;
  letter-spacing: -.04em
}
.page-title span {
  display: block;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--sub);
  letter-spacing: .16em;
  margin-top: 20px
}
.breadcrumb {
  margin-top: 34px;
  color: var(--sub);
  font-size: 13px
}
.two-col {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px
}
.side-title {
  font-family: var(--font-en);
	color: var(--brand-red);
  font-size: 46px;
  line-height: 1;
  margin: 0;
  position: sticky;
  top: 110px
}
.content-block {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px
}
.content-block h2 {
  font-size: 30px;
  margin: 0 0 20px
}
.content-block p {
  color: #53616f
}
.table {
  width: 100%;
  border-collapse: collapse
}
.table th, .table td {
  border-bottom: 1px solid var(--line);
  padding: 20px;
  text-align: left
}
.table th {
  width: 210px;
  background: #f8fafc;
  color: #465463
}
.faq-list {
  display: grid;
  gap: 14px
}
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px
}
.faq-q {
  font-weight: 700;
  font-size: 18px
}
.faq-a {
  color: #53616f;
  margin-top: 12px
}

/* FAQ page refined Q&A */
.faq-page-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}
.faq-intro {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.faq-intro .small-en {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--font-en);
  letter-spacing: .22em;
  font-weight: 700;
}
.faq-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: .08em;
}
.faq-intro p:not(.small-en) {
  margin: 0;
  color: var(--sub);
}
.faq-list-refined {
  display: grid;
  gap: 22px;
}
.faq-list-refined .faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe7ee;
  border-radius: 22px;
  background: #fff;
  padding: 0;
  box-shadow: 0 18px 42px rgba(16, 32, 47, .06);
}
.faq-list-refined .faq-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--accent));
}
.faq-list-refined .faq-q {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 34px 24px;
  background:
    linear-gradient(135deg, rgba(13, 61, 99, .06), rgba(255, 255, 255, 0) 58%),
    #fff;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .04em;
}
.faq-list-refined .faq-a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin: 0;
  padding: 24px 34px 30px;
  border-top: 1px solid #edf1f4;
  background: #fff;
  color: #53616f;
}
.faq-list-refined .faq-q span,
.faq-list-refined .faq-a > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}
.faq-list-refined .faq-q span {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 32, 47, .18);
}
.faq-list-refined .faq-a > span {
  background: #fff;
  color: var(--blue);
  border: 1px solid #d8e2ea;
}
.faq-list-refined .faq-a p {
  margin: 0 0 12px;
  line-height: 1.95;
}
.faq-list-refined .faq-a p:last-child {
  margin-bottom: 0;
}
.faq-list-refined .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(16, 32, 47, .09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.text-link {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.contact-lead {
  margin-bottom: 34px;
  color: #53616f
}
.contact-lead p {
  margin: 0 0 10px
}
.form-note {
  font-size: 13px
}
.required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d84b4b;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important
}
.contact-result {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 48px rgba(16, 32, 47, .06);
  padding: 42px
}
.contact-result h2 {
  font-size: 30px;
  margin: 0 0 18px
}
.contact-result p {
  color: #53616f;
  margin: 0
}
.contact-result--success {
  border-top: 5px solid #2f8f5b
}
.contact-result--error {
  border-top: 5px solid #d84b4b
}
.contact-form {
  display: grid;
  gap: 18px
}
.form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start
}
.form-row label {
  font-weight: 700
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff
}
.form-row textarea {
  min-height: 180px;
  resize: vertical
}
.submit-btn {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  height: 58px;
  padding: 0 42px;
  font-weight: 700;
  letter-spacing: .1em;
  justify-self: start
}
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.mini-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px
}
.mini-card .num {
  font-family: var(--font-en);
  font-size: 38px;
  color: var(--blue);
  line-height: 1
}
.mini-card h3 {
  margin: 14px 0 8px
}
.mini-card p {
  font-size: 13px;
  color: var(--sub)
}
@media (max-width:1100px) {
  .global-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    height: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: .28s;
    display: block
  }
  .nav-open .global-nav {
    transform: translateY(0)
  }
  .nav-list {
    display: block;
    height: auto;
    padding: 14px 24px 26px
  }
  .nav-item {
    height: auto;
    display: block
  }
  .nav-link {
    text-align: left;
    padding: 16px 0
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 12px;
    margin: 0 0 8px;
    display: none
  }
  .nav-item:hover .dropdown {
    transform: none
  }
  .nav-item.open .dropdown {
    display: block
  }
  .menu-toggle {
    display: block
  }
  .header-actions {
    margin-left: auto
  }
  .side-sns, .side-store {
    display: none
  }
  .hero-no {
    right: 24px
  }
  .hero-dots {
    left: 24px
  }
  .feature-list {
    grid-template-columns: 1fr
  }
  .feature-card:nth-child(even) {
    margin-top: 0
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .two-col {
    grid-template-columns: 1fr
  }
  .side-title {
    position: static
  }
  .card-row {
    grid-template-columns: 1fr
  }
}
@media (max-width:760px) {
  .site-header {
    height: 76px
  }
	.hero-slide img {
  width: 100%;
  height: 80%;
 
}
  .header-inner {
    width: calc(100% - 24px)
  }
  .logo {
    min-width: auto
  }
  .logo-img {
    width: 150px;
    max-height: 46px
  }
  .logo-text strong {
    font-size: 14px
  }
  .logo-text small {
    display: none
  }
  .outline-btn {
    display: none
  }
  .dark-btn {
    height: 42px;
    padding: 0 15px
  }
  .hero-copy {
    width: calc(100% - 32px)
  }
	.hero-text {
    max-width: 260px;
}
  .hero:after {
    /*background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .44))*/
  }
  .hero h1 {
    font-size: 44px
  }
  .section {
    padding: 78px 0
  }
  .section-head {
    display: block
  }
  .view-more {
    margin-top: 22px;
    width: 100%;
    min-width: 0;
    font-size: 15px
  }
  .news-card {
    grid-template-columns: 1fr 80px;
    gap: 8px;
    padding: 20px
  }
  .news-date {
    grid-column: 1
  }
  .news-tag {
    grid-column: 2;
    grid-row: 1
  }
  .news-title {
    grid-column: 1/3
  }
  .news-arrow {
    display: none
  }
  .service-grid, .about-layout {
    grid-template-columns: 1fr
  }
  .service-visual {
    min-height: 520px
  }
  .feature-card {
    grid-template-columns: 1fr
  }
  .feature-card img {
    height: 260px
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-links {
    grid-template-columns: 1fr
  }
  .footer-nav {
    grid-template-columns: 1fr
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px
  }
  .table th, .table td {
    display: block;
    width: 100%;
    padding: 14px
  }
  .scroll {
    display: none
  }
}
/* News admin */
.page-actions {
  margin-top: 28px
}
.admin-note {
  margin-top: 24px;
  color: #53616f;
  max-width: 760px
}
.admin-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start
}
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 48px rgba(16, 32, 47, .06);
  padding: 34px
}
.admin-panel h2 {
  margin: 0 0 24px;
  font-size: 26px
}
.admin-form {
  display: grid;
  gap: 18px
}
.admin-row {
  grid-template-columns: 130px 1fr
}
.admin-buttons, .admin-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}
.outline-admin-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  height: 46px;
  height: 3rem;
	line-height: 3rem;
  padding: 0 20px;
  font-weight: 400;
  letter-spacing: .04em;
  cursor: pointer
}
.outline-admin-btn:hover {
  background: #f8fafc
}
.outline-admin-btn.danger {
  color: #b42318
}
.admin-json {
  width: 100%;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  resize: vertical
}
.admin-news-list {
  display: grid;
  gap: 12px
}
.admin-news-item {
  border: 1px solid var(--line);
  background: #fbfcfe;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start
}
.admin-news-item h3 {
  font-size: 17px;
  margin: 10px 0 6px
}
.admin-news-item p {
  font-size: 13px;
  color: #53616f;
  margin: 0
}
.admin-news-item .news-tag {
  display: inline-block;
  margin-left: 10px
}
.admin-item-actions {
  display: flex;
  gap: 8px
}
.admin-item-actions button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer
}
.admin-item-actions button:hover {
  background: #eef4fa
}
@media (max-width:900px) {
  .admin-layout {
    grid-template-columns: 1fr
  }
  .admin-row {
    grid-template-columns: 1fr;
    gap: 8px
  }
  .admin-news-item {
    grid-template-columns: 1fr
  }
  .admin-item-actions {
    justify-content: flex-start
  }
}
/* News detail page */
.detail-kicker {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: .2em;
  color: var(--blue);
  text-transform: lowercase;
  margin-bottom: 18px
}
.news-detail-hero .page-title {
  font-size: clamp(48px, 7vw, 46px)
}
.article-section {
  background: #fff
}
.news-article {
  background: #fff;
padding: 40px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px
}
.article-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.5;
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line)
}
.article-body {
  font-size: 16px;
  color: #3f4b57;
  line-height: 2.05
}
.article-body p {
  margin: 0 0 24px
}
.article-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line)
}
.admin-field-note {
  margin: 0;
  color: #53616f;
  font-size: 13px
}
.admin-detail-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700
}
.admin-detail-link:after {
  content: "→";
  margin-left: 6px
}
@media (max-width:760px) {
  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px
  }
  .article-title {
    font-size: 26px
  }
  .article-body {
    font-size: 15px
  }
  .article-actions .dark-btn {
    display: inline-flex
  }
}
/* Product detail / unified admin */
.product-card {
  display: block;
  color: inherit
}
.product-card:focus-visible {
  outline: 3px solid rgba(13, 61, 99, .25);
  outline-offset: 4px
}
.product-code {
  font-family: var(--font-en);
  letter-spacing: .16em;
  color: #7b8794;
  font-size: 13px
}
.product-detail-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: min(6vw, 70px);
  align-items: start
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: sticky;
  top: 110px
}
.product-detail-image {
  background: var(--soft);
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  overflow: hidden
}
.product-detail-image:first-child {
  grid-column: 1/3;
  aspect-ratio: 1.35/1
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.product-detail-main .article-title {
  margin-bottom: 26px
}
.product-spec-block, .product-store-block {
  margin-top: 40px
}
.product-store-block {
  display:none;
}
.product-spec-block h3, .product-store-block h3 {
  font-size: 22px;
  margin: 0 0 16px
}
.product-spec-table th {
  width: 150px
}
.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  letter-spacing: .06em
}
.store-link:after {
  content: "→";
  margin-left: 10px
}
.admin-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}
.admin-tab {
  height: 54px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 28px;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer
}
.admin-tab.is-active {
  background: var(--ink);
  color: #fff
}
.admin-tab-panel {
  display: none
}
.admin-tab-panel.is-active {
  display: block
}
.admin-product-item {
  grid-template-columns: 82px 1fr auto
}
.admin-product-thumb {
  width: 82px;
  height: 82px;
  background: var(--soft);
  border: 1px solid var(--line);
  overflow: hidden
}
.admin-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.admin-form textarea#productImages, .admin-form textarea#productSpecs, .admin-form textarea#productStores {
  min-height: 110px
}
@media (max-width:900px) {
  .product-detail-layout {
    grid-template-columns: 1fr
  }
  .product-gallery {
    position: static
  }
  .admin-product-item {
    grid-template-columns: 1fr
  }
  .admin-product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1.6/1
  }
}
@media (max-width:760px) {
  .product-gallery {
    grid-template-columns: 1fr
  }
  .product-detail-image:first-child {
    grid-column: auto
  }
  .product-spec-table th {
    width: 100%
  }
  .admin-tabs {
    gap: 10px
  }
  .admin-tab {
    width: 100%;
    justify-content: center
  }
}
/* Product image upload / gallery update */
.admin-image-upload {
  display: grid;
  gap: 12px;
  align-items: start
}
.image-data-store {
  display: none !important
}
.admin-image-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px
}
.admin-image-preview-item {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: grab
}
.admin-image-preview-item:active {
  cursor: grabbing
}
.admin-image-preview-item.is-dragging {
  opacity: .55
}
.admin-image-preview-item.is-drag-over {
  outline: 3px solid rgba(21, 36, 51, .38);
  outline-offset: 2px
}
.admin-image-drag-handle {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #152433;
  font-size: 14px;
  line-height: 1;
  pointer-events: none
}
.admin-image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.admin-image-preview-item button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 36, 51, .88);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer
}
.admin-image-preview-item button:hover {
  background: #000
}
.product-gallery {
  display: block;
  position: sticky;
  top: 110px
}
.product-gallery-main {
  background: var(--soft);
  border: 1px solid var(--line);
  /*aspect-ratio: 1.22/1;*/
  overflow: hidden
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 10px;
  -webkit-overflow-scrolling: touch
}
.product-gallery-thumbs::-webkit-scrollbar {
  height: 7px
}
.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: #c8d1db;
  border-radius: 999px
}
.product-gallery-thumb {
  flex: 0 0 94px;
  width: 94px;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: .72
}
.product-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(21, 36, 51, .12)
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
@media (max-width:900px) {
  .product-gallery {
    position: static
  }
  .admin-image-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}
@media (max-width:560px) {
  .admin-image-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .product-gallery-thumb {
    flex-basis: 76px;
    width: 76px
  }
}
/* Global link color effects */
a {
  transition: color .28s ease, background-color .28s ease, border-color .28s ease, opacity .28s ease, transform .28s ease
}
a:hover {
  color: var(--accent)
}
.nav-link:hover, .drop-link:hover, .footer-nav a:hover, .footer-brand a:hover {
  color: var(--accent)
}
.news-card:hover .news-title, .product-card:hover h3, .service-card:hover h3, .about-links a:hover strong {
  color: var(--accent)
}
.text-link, .footer-nav a, .footer-brand a, .contact-info a {
  position: relative
}
.text-link:after, .footer-nav a:after, .footer-brand a:after, .contact-info a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.22, .61, .36, 1)
}
.text-link:hover:after, .footer-nav a:hover:after, .footer-brand a:hover:after, .contact-info a:hover:after {
  transform: scaleX(1);
  transform-origin: left
}
.product-card, .service-card, .about-links a, .news-card {
  transition: color .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease, transform .28s ease
}
.product-card:hover, .service-card:hover, .about-links a:hover {
  border-color: var(--accent)
}
/* Header navigation hover effects */
.nav-link {
  position: relative;
  overflow: hidden;
  transition: color .28s ease, transform .28s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}
.nav-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item.has-dropdown:hover .nav-link {
  color: var(--accent);
}
.nav-item.has-dropdown:hover .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}
.dropdown {
  transform: translateY(10px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s cubic-bezier(.22, .61, .36, 1);
}
.nav-item:hover .dropdown {
  transform: translateY(0);
}
.drop-link {
  position: relative;
  transition: color .25s ease, background-color .25s ease, padding-left .25s ease;
}
.drop-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: width .25s ease;
}
.drop-link:hover {
  color: var(--accent);
  background: #f5f8fb;
  padding-left: 34px;
}
.drop-link:hover::before {
  width: 10px;
}
/* About page - standard company profile layout */
.page-kicker {
  margin: 0 0 18px;
  font-family: var(--font-en);
  color: var(--blue);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}
.about-page-hero {
  background: linear-gradient(120deg, #eef4f8 0%, #ffffff 64%);
}
.vision-grid,
.story-grid,
.message-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: min(8vw, 92px);
  align-items: center;
}
.small-en {
  margin: 0 0 18px;
  font-family: var(--font-en);
  color: var(--blue);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 14px;
}
.vision-title h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(42px, 6.5vw, 62px);
  line-height: 1.16;
  letter-spacing: -.04em;
}
.vision-sub {
  margin: 28px 0 0;
  font-weight: 700;
  font-size: 18px;
}
.vision-text h3,
.story-copy h2,
.message-card h2 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.55;
}
.vision-text p,
.story-copy p,
.message-card p {
  color: #52606e;
}
.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.strength-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.strength-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.message-grid {
  grid-template-columns: 1fr;
}
.message-card {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16, 32, 47, .08);
}
.signature {
  margin-top: 34px;
  color: var(--ink) !important;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
}
.signature span {
  display: block;
  margin-bottom: 4px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 400;
}
.company-two-col {
  align-items: start;
}
.company-table td span {
  color: var(--sub);
  font-size: 13px;
}
.company-note {
  margin: 20px 0 0;
  color: var(--sub);
  font-size: 13px;
}
.access-box {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.access-box h3 {
  margin: 0 0 14px;
  font-size: 22px;
}
.access-box p {
  margin: 0 0 8px;
  color: #52606e;
}
.map-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9eef3, #f8fafc);
  border: 1px solid var(--line);
  color: var(--sub);
  font-family: var(--font-en);
  letter-spacing: .12em;
}
.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 960px) {
  .vision-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .vision-title h2 {
    font-size: 42px;
  }
  .message-card {
    padding: 28px 22px;
  }
  .map-placeholder {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
}

/* Repair page - after service layout */
.repair-page-hero {
  background: linear-gradient(120deg, #eef4f8 0%, #ffffff 62%);
}
.repair-lead-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: min(8vw, 90px);
  align-items: start;
}
.repair-lead-grid h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.35;
}
.repair-lead-grid p {
  color: #52606e;
}
.repair-two-col {
  align-items: start;
}
.repair-card {
  padding: clamp(28px, 4vw, 46px);
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(16, 32, 47, .06);
}
.repair-card-large {
  border-top: 4px solid var(--blue);
}
.repair-card-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.repair-card-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.repair-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: .04em;
  flex: 0 0 auto;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #52606e;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}
.notice-box {
  margin-top: 28px;
  padding: 22px 24px;
  background: #f8fafc;
  border-left: 4px solid var(--blue);
}
.notice-box p,
.repair-note {
  margin: 0;
  color: #52606e;
}
.repair-note {
  margin-top: 18px;
  font-size: 13px;
}
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.warranty-item {
  padding: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.warranty-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.warranty-item p {
  margin: 0;
  color: #52606e;
}
.two-columns-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}
.exemption-card {
  background: linear-gradient(180deg, #fff, #fbfcfd);
}
@media (max-width: 960px) {
  .repair-lead-grid {
    grid-template-columns: 1fr;
  }
  .warranty-grid,
  .two-columns-list {
    grid-template-columns: 1fr;
  }
}

/* Repair page visual update */
.repair-visual-hero {
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0 clamp(60px, 8vw, 100px);
}
.repair-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.repair-hero-text {
  max-width: 560px;
  color: #52606e;
  font-size: 16px;
  line-height: 2;
  margin: 26px 0 28px;
}
.repair-hero-photo {
  position: relative;
  min-height: 430px;
  border-radius: 34px 0 0 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(16, 32, 47, .15);
}
.repair-hero-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.08), rgba(255,255,255,0));
  z-index: 1;
}
.repair-hero-photo img,
.repair-image-photo img,
.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.repair-lead-with-photo {
  align-items: center;
}
.repair-lead-panel {
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 32, 47, .06);
}
.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}
.split-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}
.split-heading > p {
  max-width: 420px;
  color: #52606e;
  margin: 0 0 8px;
}
.repair-flow-section {
  padding-top: 0;
}
.repair-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flow-card {
  position: relative;
  min-height: 230px;
  padding: 30px 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16, 32, 47, .05);
}
.flow-card span {
  font-family: var(--font-en);
  color: var(--blue);
  letter-spacing: .14em;
  font-weight: 700;
}
.flow-card h3 {
  margin: 36px 0 14px;
  font-size: 21px;
}
.flow-card p {
  color: #52606e;
  margin: 0;
}
.repair-image-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(42px, 6vw, 76px);
}
.repair-image-block.reverse-block .repair-image-copy {
  order: 2;
}
.repair-image-copy h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.22;
  margin: 0 0 24px;
}
.repair-image-copy p:not(.small-en) {
  color: #52606e;
  line-height: 2;
}
.repair-image-photo {
  height: clamp(330px, 40vw, 560px);
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(16, 32, 47, .12);
}
.repair-detail-col {
  margin-top: 20px;
}
.repair-card-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.repair-card-split.reverse {
  grid-template-columns: .95fr 1.05fr;
}
.repair-card-split.reverse > div:first-child {
  order: 2;
}
.mini-photo {
  height: 250px;
  overflow: hidden;
  border-radius: 24px;
}
.repair-contact-band {
  padding: clamp(54px, 7vw, 86px) 0;
  color: #fff;
  background: linear-gradient(120deg, rgba(13, 33, 54, .96), rgba(29, 91, 132, .9)), url('../assets/img/marason-1280-200_weidang.jpg') center/cover no-repeat;
}
.repair-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.repair-contact-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
}
.repair-contact-inner p {
  margin: 0;
  opacity: .88;
}
.repair-contact-inner .small-en {
  opacity: .75;
  color: #fff;
}
@media (max-width: 1024px) {
  .repair-hero-grid,
  .repair-image-block,
  .repair-image-block.reverse-block {
    grid-template-columns: 1fr;
  }
  .repair-image-block.reverse-block .repair-image-copy {
    order: 0;
  }
  .repair-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .repair-hero-photo {
    min-height: 300px;
    border-radius: 24px;
  }
  .split-heading,
  .repair-contact-inner {
    display: block;
  }
  .repair-flow-grid,
  .repair-card-split,
  .repair-card-split.reverse {
    grid-template-columns: 1fr;
  }
  .repair-card-split.reverse > div:first-child {
    order: 0;
  }
  .mini-photo {
    height: 210px;
  }
  .repair-contact-inner .white-btn {
    margin-top: 26px;
  }
}

/* Repair page - Pacific style content / original visual design */
.repair-copy-hero {
  background: linear-gradient(120deg, rgba(246,249,252,.96), rgba(255,255,255,.86)), url('../assets/img/kv-04.jpg') center/cover no-repeat;
  padding-bottom: clamp(72px, 9vw, 120px);
}
.repair-main-copy { background: #fff; }
.repair-copy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}
.repair-side-nav {
  position: sticky;
  top: 98px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.repair-side-nav .small-en { margin-bottom: 16px; }
.repair-side-nav a {
  display: block;
  padding: 13px 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(16,32,47,.08);
  font-size: 14px;
}
.repair-side-nav a:hover { color: var(--blue); transform: translateX(4px); }
.repair-copy-content { min-width: 0; }
.repair-copy-section {
  margin-bottom: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(34px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}
.repair-copy-section.image-right,
.repair-copy-section.image-left {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.repair-copy-section.image-left {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
}
.repair-copy-section h2 {
  font-size: clamp(32px, 5vw, 36px);
  line-height: 1.22;
  margin: 0 0 26px;
}
.repair-copy-section h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 22px;
}
.repair-copy-section p {
  color: #52606e;
  line-height: 2;
  margin: 0 0 16px;
}
.repair-copy-photo {
  margin: 0;
  height: clamp(300px, 32vw, 470px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 62px rgba(16, 32, 47, .12);
}
.repair-copy-photo.small { height: 280px; }
.repair-copy-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.repair-simple-list,
.repair-disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}
.repair-simple-list li,
.repair-disclaimer-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  color: #334155;
  border-bottom: 1px solid rgba(16,32,47,.08);
  line-height: 1.8;
}
.repair-simple-list li:before,
.repair-disclaimer-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--blue);
}
.mark-list li:before { border-radius: 2px; }
.repair-attention,
.repair-note {
  background: #fff;
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  color: #334155 !important;
}
.compact-card {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, #fff, #f8fafc);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(16,32,47,.05);
}
.compact-card.image-left { border-bottom: 1px solid var(--line); }
.warranty-copy-section { padding-top: 12px; }
.warranty-includes {
  margin-top: 28px;
  padding: 26px;
  background: #fff;
  border-radius: 24px;
}
.warranty-includes h4 { margin: 0 0 16px; font-size: 20px; }
.warranty-includes ul { margin: 0 0 16px; padding-left: 20px; }
.warranty-includes li { margin: 8px 0; }
.warranty-includes p { /*color: rgba(255,255,255,.78);*/ margin: 0; }
.disclaimer-copy-section {
  padding: clamp(30px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.repair-disclaimer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}
.repair-contact-band.refined {
  background: linear-gradient(120deg, rgba(13, 33, 54, .96), rgba(28, 84, 122, .88)), url('../assets/img/marason-1280-200_weidang.jpg') center/cover no-repeat;
}
@media (max-width: 980px) {
  .repair-copy-layout { grid-template-columns: 1fr; }
  .repair-side-nav { position: static; }
  .repair-copy-section.image-right,
  .repair-copy-section.image-left { grid-template-columns: 1fr; }
  .repair-disclaimer-list { grid-template-columns: 1fr; }
}

/* ===== Fix product detail gallery display (2026-06) ===== */
.product-detail-layout {
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: min(5vw, 56px);
}
.product-gallery {
  width: 100%;
  max-width: 100%;
}
.product-gallery-main {
  width: 100%;
  /*aspect-ratio: 4 / 3;*/
  max-height: min(62vh, 560px);
  background: var(--soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.product-gallery-thumb {
  flex: 0 0 76px;
  width: 76px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-main {
  min-width: 0;
}
.product-detail-main .article-title,
.article-body,
.product-spec-table {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery {
    position: static;
  }
  .product-gallery-main {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .product-detail-section {
    padding-top: 42px;
  }
  .product-gallery-main {
    aspect-ratio: 1 / 1;
  }
  .product-gallery-thumb {
    flex-basis: 64px;
    width: 64px;
  }
  .product-detail-main .article-title {
    font-size: 24px;
    line-height: 1.45;
  }
  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }
  .product-spec-table th {
    padding-bottom: 6px;
  }
  .product-spec-table td {
    padding-top: 0;
  }
}

/* ===== Mobile fix for product detail page (scs58009 / suitcase images) ===== */
.product-detail-layout,
.product-gallery,
.product-gallery-main,
.product-detail-main {
  min-width: 0;
}
.product-gallery-main img {
  object-fit: contain !important;
  object-position: center center;
}
@media (max-width: 900px) {
  .product-detail-layout {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .product-gallery {
    position: static !important;
    width: 100%;
  }
  .product-gallery-main {
    width: 100%;
    max-height: 50vh;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 560px) {
  .product-detail-section {
    padding-top: 30px;
  }
  .product-detail-layout {
    gap: 22px;
  }
  .product-gallery-main {
    height: min(48vh, 360px);
    max-height: 360px;
    aspect-ratio: auto !important;
  }
  .product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
  }
  .product-gallery-thumbs {
    gap: 8px;
    margin-top: 10px;
  }
  .product-gallery-thumb {
    flex: 0 0 58px !important;
    width: 58px !important;
  }
  .product-detail-main .article-title {
    font-size: 22px;
    line-height: 1.4;
  }
  .article-body {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* Product list pagination */
.product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.product-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: .24s;
}
.product-page-btn:hover:not(:disabled),
.product-page-btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.product-page-btn:disabled {
  opacity: .45;
  cursor: default;
}


@media (max-width:760px) {
  .footer-guide-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-guide-card {
    min-height: 190px;
    padding: 34px 26px 32px;
  }
  .footer-guide-card + .footer-guide-card {
    border-left: 1px solid rgba(236, 208, 194, .95);
    border-top: 0;
  }
  .footer-guide-card:after {
    right: 24px;
    bottom: 30px;
    width: 56px;
  }
  .footer-guide-ja {
    font-size: 20px;
  }
  .footer-guide-text {
    max-width: none;
    margin-top: 10px;
    font-size: 13px;
  }
  .footer-guide-more {
    margin-top: 18px;
  }
}

@media (max-width:760px) {
  .faq-intro {
    margin-bottom: 26px;
    padding-bottom: 22px;
  }
  .faq-list-refined {
    gap: 16px;
  }
  .faq-list-refined .faq-item {
    border-radius: 18px;
  }
  .faq-list-refined .faq-q,
  .faq-list-refined .faq-a {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .faq-list-refined .faq-q {
    padding: 22px 20px 18px;
    font-size: 16px;
  }
  .faq-list-refined .faq-a {
    padding: 18px 20px 24px;
    font-size: 14px;
  }
  .faq-list-refined .faq-q span,
  .faq-list-refined .faq-a > span {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

@media (max-width:760px) {
  .cta {
    padding: 84px 0;
    background-position: center center;
  }
  .cta-panel {
    padding: 0 10px;
  }
  .cta h2 {
    font-size: 54px;
  }
  .cta p {
    margin: 12px auto 24px;
    font-size: 14px;
    line-height: 1.8;
  }
  .white-btn {
    height: 52px;
    padding: 0 28px;
  }
}


/* Business page premium layout */
.business-intro-section {
  padding-top: 98px;
  background:
    radial-gradient(circle at right top, rgba(13, 61, 99, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}
.business-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: min(6vw, 72px);
  align-items: center;
}
.business-eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--blue);
}
.business-eyebrow--light {
  color: rgba(255,255,255,.72);
}
.business-intro-copy h2,
.business-premium-copy h2,
.business-cta-card h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: .04em;
}
.business-intro-copy p,
.business-premium-copy p,
.business-cta-card p {
  color: #53616f;
}
.business-lead-text {
  font-size: 16px;
  line-height: 2;
}
.business-keypoints,
.business-premium-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.business-keypoints span,
.business-premium-list span {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--brand-red);
  box-shadow: 0 10px 24px rgba(16, 32, 47, .04);
  font-size: 13px;
  font-weight: 700;
}
.business-intro-visual {
  position: relative;
  min-height: 560px;
}
.business-main-photo,
.business-sub-photo {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 26px 66px rgba(16, 32, 47, .14);
}
.business-main-photo {
  width: 82%;
  margin-left: auto;
  border-radius: 36px 36px 36px 110px;
}
.business-main-photo img,
.business-sub-photo img,
.business-card-media img,
.business-premium-visual img,
.business-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.business-sub-photo {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 44%;
  border-radius: 28px;
  background: #fff;
}
.business-float-card {
  position: absolute;
  right: 4%;
  bottom: -12px;
  min-width: 220px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(223,229,234,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 54px rgba(16, 32, 47, .1);
}
.business-float-card strong {
  display: block;
  font-family: var(--font-en);
  font-size: 28px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.business-float-card p {
  margin: 0;
  font-size: 13px;
  color: var(--sub);
}
.business-section-head {
  margin-bottom: 38px;
}
.business-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.business-card-premium {
  background: #fff;
  border: 1px solid #e1e7ec;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 32, 47, .06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.business-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(16, 32, 47, .1);
}
.business-card-media {
  height: 250px;
  overflow: hidden;
}
.business-card-body-premium {
  padding: 32px 28px 30px;
}
.business-card-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4f8;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .14em;
}
.business-card-body-premium h3 {
  margin: 18px 0 12px;
  font-size: 28px;
}
.business-card-body-premium p {
  margin: 0;
  color: #53616f;
}
.business-card-body-premium ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.business-card-body-premium li {
  position: relative;
  padding-left: 18px;
  color: #53616f;
  font-size: 14px;
}
.business-card-body-premium li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #96afc6);
  transform: translateY(-50%);
}
.business-premium-band {
  background:
    linear-gradient(135deg, #0f2233 0%, #163650 55%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}
.business-premium-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.08), transparent 26%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,.06), transparent 20%);
  pointer-events: none;
}
.business-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: min(5vw, 56px);
  align-items: center;
}
.business-premium-copy p {
  /*color: rgba(255,255,255,.76);*/
}
.business-premium-list span {
  background: #fff;
  border: 1px solid var(--brand-red);
  
  box-shadow: none;
}
.business-premium-visual {
  min-height: 480px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.business-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.business-flow-item {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid #e1e7ec;
  box-shadow: 0 14px 34px rgba(16, 32, 47, .05);
}
.business-flow-no {
  font-family: var(--font-en);
  font-size: 44px;
  line-height: 1;
  color: rgba(13, 61, 99, .18);
  margin-bottom: 18px;
}
.business-flow-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.business-flow-item p {
  margin: 0;
  color: #53616f;
  font-size: 14px;
}
.business-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 24px;
}
.business-gallery-card {
  position: relative;
  min-height: 460px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(16, 32, 47, .08);
  background: #dfe5ea;
}
.business-gallery-card.large {
  min-height: 560px;
}
.business-gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,26,0) 30%, rgba(10,18,26,.68) 100%);
}
.business-gallery-card figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}
.business-gallery-card strong {
  display: block;
  font-family: var(--font-en);
  font-size: 28px;
  margin-bottom: 8px;
}
.business-gallery-card span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.business-cta-section {
  background: #fff;
}
.business-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 48px 54px;
  border-radius: 34px;
  background: #ffffff ;
  border: 1px solid #dfe6ec;
  box-shadow: 0 20px 54px rgba(16, 32, 47, .06);
}
.business-cta-card h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}
.business-cta-btn {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
}
.business-cta-btn:hover {
  background: #223549;
}

@media (max-width:1100px) {
  .business-card-grid,
  .business-flow-grid,
  .business-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-gallery-card.large {
    grid-column: 1 / -1;
    min-height: 420px;
  }
  .business-intro-grid,
  .business-premium-grid,
  .business-cta-card {
    grid-template-columns: 1fr;
  }
  .business-cta-card {
    display: grid;
  }
}

@media (max-width:760px) {
  .business-intro-section {
    padding-top: 72px;
  }
  .business-intro-copy h2,
  .business-premium-copy h2,
  .business-cta-card h2 {
    font-size: 29px;
  }
  .business-intro-visual {
    min-height: 420px;
  }
  .business-main-photo {
    width: 100%;
    border-radius: 24px;
  }
  .business-sub-photo {
    width: 42%;
    left: 12px;
    bottom: 18px;
    border-radius: 18px;
  }
  .business-float-card {
    right: 12px;
    left: auto;
    bottom: -18px;
    min-width: 0;
    width: calc(100% - 84px);
    padding: 18px 20px;
  }
  .business-card-grid,
  .business-flow-grid,
  .business-gallery-grid {
    grid-template-columns: 1fr;
  }
  .business-card-media {
    height: 220px;
  }
  .business-premium-visual {
    min-height: 300px;
  }
  .business-gallery-card,
  .business-gallery-card.large {
    min-height: 320px;
  }
  .business-gallery-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .business-cta-card {
    padding: 34px 26px;
    gap: 24px;
  }
  .business-cta-btn {
    width: 100%;
  }
}

/* Product filter page */
.product-select-section .section-head p {
  max-width: 760px;
}
.product-filter-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}
.product-filter-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 16px 46px rgba(13, 61, 99, .07);
}
.product-filter-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.product-filter-heading span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .08em;
}
.product-filter-heading h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: .05em;
}
.product-filter-buttons {
  display: grid;
  gap: 14px;
}
.product-filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  min-height: 76px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .25s;
}
.product-filter-btn span {
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}
.product-filter-btn:hover,
.product-filter-btn.is-active {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.product-filter-btn.is-active {
  background: var(--blue);
  color: #fff;
}
.product-filter-btn.is-active span {
  color: var(--blue);
}
.product-filter-btn.is-empty {
  opacity: .65;
}
.product-filter-result {
  margin-top: 56px;
}
.product-filter-result[hidden] {
  display: none;
}
.product-filter-result-head {
  margin-bottom: 24px;
}
.product-empty-message {
  grid-column: 1 / -1;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--sub);
  text-align: center;
}
@media (max-width: 860px) {
  .product-filter-layout {
    grid-template-columns: 1fr;
  }
  .product-filter-block {
    padding: 24px 20px;
  }
  .product-filter-heading h3 {
    font-size: 19px;
  }
  .product-filter-btn {
    min-height: 66px;
    font-size: 17px;
    padding: 15px 16px;
  }
}


/* OEM page */
.oem-hero-section{background:#fff;}
.oem-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:56px;align-items:center;}
.oem-hero-copy h2{font-size:clamp(30px,4vw,52px);line-height:1.35;letter-spacing:.03em;margin:12px 0 22px;}
.oem-hero-visual{border-radius:32px;overflow:hidden;background:linear-gradient(135deg,#f7f7f7,#e9ecef);box-shadow:0 24px 60px rgba(0,0,0,.08);padding:34px;}
.oem-hero-visual img{display:block;width:100%;height:auto;object-fit:contain;}
.oem-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.oem-card{background:#fff;border:1px solid rgba(20,20,20,.08);border-radius:24px;padding:30px 24px;box-shadow:0 16px 45px rgba(0,0,0,.05);}
.oem-card span{display:inline-flex;width:44px;height:44px;border-radius:50%;align-items:center;justify-content:center;background:#111;color:#fff;font-weight:700;margin-bottom:20px;}
.oem-card h3{font-size:20px;margin:0 0 12px;letter-spacing:.04em;}
.oem-card p{line-height:1.9;color:#555;margin:0;}

.oem-brand-section{background:transparent;}
.oem-brand-lead{max-width:520px;margin:0;color:#5e6873;line-height:1.9;font-weight:600;}
.oem-brand-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px;margin-top:28px;}
.oem-brand-logo{min-height:90px;border-radius:12px;border:1px solid rgba(215,25,32,.12);background:rgba(255,255,255,.96);display:flex;align-items:center;justify-content:center;padding:14px;box-shadow:0 16px 36px rgba(215,25,32,.06);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease,background-color .28s ease;}
.oem-brand-logo img{display:block;max-width:100%;max-height:56px;width:auto;height:auto;object-fit:contain;}
.oem-brand-logo:hover{transform:translateY(-4px);border-color:rgba(215,25,32,.25);box-shadow:0 22px 46px rgba(215,25,32,.11);background:#fff;}

.oem-flow-section{background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(255,245,239,.55));}
.oem-flow-layout{display:grid;grid-template-columns:minmax(260px,.42fr) minmax(0,1fr);gap:54px;align-items:start;}
.oem-flow-heading{position:sticky;top:112px;}
.oem-flow-heading .section-title{margin-bottom:18px;}
.oem-flow-heading p:not(.business-eyebrow){color:#5e6873;line-height:1.95;font-weight:600;margin:0;}
.oem-flow{list-style:none;padding:0;margin:0;}
.oem-flow-refined{display:grid;gap:18px;counter-reset:none;}
.oem-flow-refined li{position:relative;display:grid;grid-template-columns:76px 1fr;gap:22px;align-items:start;background:rgba(255,255,255,.96);border:1px solid rgba(215,25,32,.10);border-radius:26px;padding:28px 32px;box-shadow:0 18px 44px rgba(215,25,32,.07),0 8px 22px rgba(16,36,61,.04);overflow:hidden;}
.oem-flow-refined li:before{content:"";position:absolute;left:37px;top:86px;bottom:-20px;width:1px;background:linear-gradient(180deg,rgba(215,25,32,.22),rgba(215,25,32,0));}
.oem-flow-refined li:last-child:before{display:none;}
.oem-flow-refined li span{position:relative;z-index:1;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));color:#fff;font-family:var(--font-en);font-size:18px;font-weight:800;letter-spacing:.06em;box-shadow:0 12px 24px rgba(215,25,32,.2);}
.oem-flow-refined strong{display:block;font-size:22px;line-height:1.5;letter-spacing:.06em;color:var(--brand-navy);}
.oem-flow-refined p{margin:10px 0 0;line-height:1.9;color:#555;}
.oem-target-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:46px;align-items:start;}
.oem-subtitle{font-size:clamp(28px,3vw,42px);line-height:1.35;letter-spacing:.04em;margin:10px 0 0;}
.oem-list-box{background:#fff;border-radius:28px;padding:34px 38px;box-shadow:0 18px 50px rgba(0,0,0,.06);}
.oem-list-box ul{margin:0;padding-left:1.2em;}
.oem-list-box li{margin:13px 0;line-height:1.8;font-weight:600;}
@media(max-width:960px){.oem-hero-grid,.oem-target-grid,.oem-flow-layout{grid-template-columns:1fr;}.oem-flow-heading{position:relative;top:auto;}.oem-card-grid,.oem-brand-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.oem-card-grid,.oem-flow{grid-template-columns:1fr;}.oem-hero-visual{padding:20px;border-radius:22px;}.oem-list-box{padding:26px 24px;}}

/* 2026-07 energetic red brand refresh based on approved mockup */
:root{
  --brand-red:#d71920;
  --brand-red2:#ff3b30;
  --brand-orange:#ff8a2a;
  --brand-navy:#10243d;
  --brand-sky:#effaff;
  --brand-sky2:#f7fdff;
  --brand-cream:#fff9f3;
  --brand-gold:#d8922c;
  --ink:#13233a;
  --sub:#5f6d7c;
  --line:#e6edf3;
  --soft:#f3fbff;
  --blue:var(--brand-red);
  --deep:#10243d;
  --accent:var(--brand-red);
  --shadow:0 22px 55px rgba(16,36,61,.12);
}
body{background:#fff;color:var(--ink);}
.site-header{background:rgba(255,255,255,.96);box-shadow:0 8px 28px rgba(16,36,61,.06);border-top:6px solid var(--brand-red);}
.site-header.is-scrolled{background:rgba(255,255,255,.98);box-shadow:0 12px 34px rgba(16,36,61,.1);}
.logo-img{filter:none;}
.nav-link .en{font-weight:800;color:var(--brand-navy);}
.nav-link .jp{color:#56677a;}
.nav-item:hover .nav-link,.nav-item.is-current .nav-link{color:var(--brand-red);}
.nav-item:hover .nav-link .en,.nav-item.is-current .nav-link .en,.nav-item:hover .nav-link .jp,.nav-item.is-current .nav-link .jp{color:var(--brand-red);}
.outline-btn{border:1.5px solid var(--brand-red);background:#fff;color:var(--brand-red);box-shadow:0 8px 18px rgba(215,25,32,.08);}
.dark-btn{background:linear-gradient(135deg,var(--brand-red),#b90712);border:1px solid var(--brand-red);color:#fff;box-shadow:0 10px 24px rgba(215,25,32,.22);}
.outline-btn:hover,.dark-btn:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(215,25,32,.22);}
.menu-toggle span{background:var(--brand-red);}
.dropdown{border-color:rgba(215,25,32,.16);box-shadow:0 24px 60px rgba(215,25,32,.12);}
.dropdown a:hover{background:#fff3f3;color:var(--brand-red);}

.hero:after{background:linear-gradient(90deg,rgba(255,255,255,.82) 0%,rgba(255,255,255,.52) 40%,rgba(255,255,255,.08) 78%);}
.hero-kicker{color:var(--brand-navy);font-weight:700;}
.hero h1,.page-title{color:var(--brand-red);}
.hero h1{letter-spacing:-.035em;}
.hero-lead{color:var(--brand-navy);}
.hero-dot.is-active,.scroll:after{background:var(--brand-red);}
.scroll,.hero-no{color:var(--brand-red);}

.section-soft{background:radial-gradient(circle at 80% 10%,rgba(255,255,255,.95) 0 20%,rgba(255,255,255,0) 45%),linear-gradient(135deg,#f2fbff 0%,#f8fdff 50%,#eefaff 100%);position:relative;overflow:hidden;}
.section-soft:before{content:"";position:absolute;left:-8%;bottom:-36%;width:62%;height:62%;border-radius:50%;background:rgba(255,255,255,.55);box-shadow:0 0 0 1px rgba(215,25,32,.03);pointer-events:none;}
.section-soft:after{content:"";position:absolute;right:-12%;bottom:-28%;width:55%;height:55%;border-radius:50%;background:linear-gradient(135deg,rgba(255,255,255,.65),rgba(255,255,255,0));pointer-events:none;}
.section-soft > .container{position:relative;z-index:1;}
.section-title{color:var(--brand-red);}
.section-title span,.small-en,.service-copy .small-en{color:var(--brand-navy);font-weight:600;letter-spacing:.18em;text-transform:uppercase;}
.view-more{color:var(--brand-navy);font-weight:700;}
.view-more:before{background:linear-gradient(90deg,var(--brand-red),var(--brand-orange));}
.view-more:after{filter:invert(17%) sepia(95%) saturate(3935%) hue-rotate(351deg) brightness(94%) contrast(96%);}

.news-section{padding-top:92px;padding-bottom:92px;background:#fff;}
.news-list{border-top-color:#e6eef5;border-bottom-color:#e6eef5;background:#e6eef5;}
.news-card{border-radius:0;background:#fff;}
.news-card:hover{background:#fff8f5;}
.news-tag{border-color:rgba(215,25,32,.2);color:var(--brand-red);background:#fff5f2;}
.news-arrow{color:var(--brand-red);}

.service-grid{position:relative;gap:min(8vw,96px);}
.service-visual{min-height:590px;}
.service-visual:before{font-size:clamp(62px,8vw,96px);color:rgba(90,165,210,.18);color:rgb(210 90 123 / 18%);left:-30px;top:8px;font-weight:400;}
.service-visual:after{content:"";position:absolute;left:-75px;top:220px;width:560px;height:260px;border:1.5px solid rgba(255,98,61,.48);border-left-color:rgba(255,98,61,.85);border-radius:50%;transform:rotate(-14deg);z-index:0;pointer-events:none;}
.service-visual img{border-radius:18px;border:6px solid rgba(255,255,255,.86);box-shadow:0 24px 52px rgba(16,36,61,.16);z-index:2;}
.service-visual .photo-a{width:58%;left:0;top:150px;}
.service-visual .photo-b{width:52%;right:0;bottom:0;}
.service-copy .small-en{position:relative;margin-bottom:24px;}
.service-copy .small-en:after{content:"";display:block;width:48px;height:2px;background:var(--brand-red);margin-top:13px;border-radius:99px;}
.service-copy h2{font-size:clamp(32px,4.1vw,48px);line-height:1.45;margin:0 0 26px;font-weight:600;letter-spacing:.03em;color:var(--brand-red);background:linear-gradient(90deg,#e60023 0%,#ff3b30 52%,#ff8a2a 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;text-fill-color:transparent;}
.service-copy p{color:#26364b;font-weight:500;}
.service-points{gap:20px;margin-top:34px;margin-bottom:46px;}
.service-points span{position:relative;min-height:76px;display:flex;align-items:center;justify-content:center;gap:12px;background:rgba(255,255,255,.92);border:1px solid rgba(215,25,32,.12);border-radius:16px;box-shadow:0 14px 30px rgba(16,36,61,.08);font-weight:600;}
/*.service-points span:before{content:"";width:34px;height:34px;flex:0 0 34px;border-radius:50%;background:linear-gradient(135deg,var(--brand-red),#e60023);box-shadow:0 10px 18px rgba(215,25,32,.2);}*/
.service-points span:nth-child(1):before{clip-path:polygon(50% 0,65% 30%,100% 38%,72% 57%,80% 100%,50% 74%,20% 100%,28% 57%,0 38%,35% 30%);}
.service-points span:nth-child(2):before{clip-path:polygon(50% 5%,92% 28%,92% 73%,50% 95%,8% 73%,8% 28%);}
.service-points span:nth-child(3):before{clip-path:polygon(50% 3%,90% 18%,84% 65%,50% 96%,16% 65%,10% 18%);}

.feature-band{background:linear-gradient(135deg,#10243d 0%,#132b48 70%,#98151d 100%);}
.feature-card{border-radius:24px;box-shadow:0 22px 60px rgba(0,0,0,.22);}
.feature-card .en{color:var(--brand-red);font-weight:800;}
.feature-card h3{color:var(--brand-navy);}
.product-card{border-radius:22px;border-color:#e9eef4;box-shadow:0 10px 24px rgba(16,36,61,.04);}
.product-card:hover{box-shadow:0 22px 48px rgba(215,25,32,.12);}
.product-image{background:linear-gradient(135deg,#f4fbff,#fff5f2);}
.product-body h3{color:var(--brand-navy);}
.product-filter-button,.filter-btn,.category-button{border-color:rgba(215,25,32,.15)!important;color:var(--brand-navy)!important;background:#fff!important;box-shadow:0 12px 28px rgba(16,36,61,.07)!important;}
.product-filter-button:hover,.filter-btn:hover,.category-button:hover,.product-filter-button.is-active,.filter-btn.is-active,.category-button.is-active{background:linear-gradient(135deg,var(--brand-red),var(--brand-orange))!important;color:#fff!important;border-color:transparent!important;transform:translateY(-3px);}

.about-copy h2,.cta h2,.oem-hero-copy h2,.repair-hero-text h1,.repair-copy-hero h1{color:var(--brand-white);}
.about-links a,.footer-guide-more{color:var(--brand-red);}
/*.cta-panel{background:linear-gradient(135deg,#d71920 0%,#ef342f 58%,#ff8a2a 100%);box-shadow:0 28px 70px rgba(215,25,32,.23);}*/
.white-btn{/*color:var(--brand-red);*/}
.footer{/*background:#0f2036;*/}
.footer a:hover{color:#ff6a45;}
.social-link{background:#fff;color:var(--brand-red);}

/* Energetic headings for inner pages */
.page-hero,.about-page-hero,.repair-page-hero{background:linear-gradient(135deg,#f4fbff 0%,#fff 48%,#fff7f2 100%);}
.page-title strong,.section-title strong{color:var(--brand-red);}
.oem-hero-section{background:linear-gradient(135deg,#f4fbff 0%,#fff 52%,#fff6f2 100%)!important;}
.oem-card,.oem-flow-step,.oem-list-box{border-color:rgba(215,25,32,.12)!important;box-shadow:0 14px 36px rgba(16,36,61,.07)!important;}
.oem-card:hover,.oem-flow-step:hover{box-shadow:0 22px 45px rgba(215,25,32,.12)!important;}

@media(max-width:960px){
  .site-header{height:76px;border-top-width:4px;}
  .global-nav{background:rgba(255,255,255,.98);}
  .nav-list{background:#fff;}
  .service-copy h2{font-size:clamp(28px,8vw,42px);}
  .service-visual{min-height:520px;}
}
@media(max-width:640px){
  .service-visual{min-height:420px;}
  .service-visual:after{width:360px;height:180px;left:-80px;top:160px;}
  .service-visual .photo-a{width:48%;top:115px;}
  .service-visual .photo-b{width:51%;}
  .service-points{grid-template-columns:1fr;}
  .service-points span{justify-content:flex-start;padding:16px 20px;}
}

/* 2026-07 bright airy background refresh */
:root{
  --page-bg:#fff8f3;
  --page-bg2:#fffdf8;
  --page-peach:#fff0e9;
  --page-pink:#fff5f5;
  --line:#eadfd9;
  --soft:#fff5ef;
}
html{
  background:#fff8f3;
}
body{
  background:
    radial-gradient(circle at 8% 12%, rgba(255,138,42,.13) 0 0, rgba(255,138,42,.13) 0 22%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 92% 24%, rgba(215,25,32,.08) 0 0, rgba(215,25,32,.08) 0 18%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg,#fffaf6 0%,#fff4ee 45%,#fffdf9 100%);
  background-attachment: fixed;
}
.site-header,
.site-header.is-scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
}
.section{
  position:relative;
  background:transparent;
  
}
.section-soft,
.faq-page-section,
.article-section,
.news-section,
.oem-hero-section{
  /*background:
    radial-gradient(circle at 86% 0%, rgba(255,255,255,.92) 0 0, rgba(255,255,255,.92) 0 20%, rgba(255,255,255,0) 42%),
    linear-gradient(135deg,#fff9f4 0%,#fff1ea 52%,#fffdf9 100%) !important;*/
	background:#fff!important;
}
.product-detail-section{
	background:#fff!important;
}
.page-hero,
.about-page-hero,
.repair-page-hero{
  background:
    radial-gradient(circle at 86% 18%, rgba(255,138,42,.16) 0 0, rgba(255,138,42,.16) 0 16%, rgba(255,255,255,0) 38%),
    linear-gradient(135deg,#fff9f4 0%,#fff3ec 50%,#fffdf9 100%) !important;
}
.news-card,
.product-card,
.faq-item,
.faq-list-refined .faq-item,
.contact-result,
.mini-card,
.oem-card,
.oem-flow li,
.oem-list-box,
.product-detail-card,
.category-card,
.business-card,
.service-points span,
.table th,
.table td,
.form-row input,
.form-row textarea,
.form-row select{
  background:rgba(255,255,255,.94) !important;
  border-color:rgba(215,25,32,.10) !important;
}
.product-card,
.faq-list-refined .faq-item,
.contact-result,
.mini-card,
.oem-card,
.oem-list-box,
.category-card,
.business-card{
  box-shadow:0 18px 44px rgba(215,25,32,.07), 0 8px 22px rgba(16,36,61,.04) !important;
}
.product-image,
.oem-hero-visual{
  background:linear-gradient(135deg,#fff8f3,#fff0e8) !important;
}
.product-image{
  padding:15px;
	background: #fff!important;
}
.global-nav,
.nav-list,
.dropdown{
  background:rgba(255,255,255,.96) !important;
}

@media(max-width:1100px){
  .global-nav,
  .nav-list{
    background:rgba(255,250,246,.98) !important;
  }
}

/* 2026-07 footer color refinement: light, bright and consistent with red logo */
.footer{
  position:relative;
  
  color:#192431;
  border-top:1px solid rgba(215,25,32,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.footer:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,#d71920 0%,#ff4b32 54%,#ff9a3d 100%);
}
.footer-grid,
.footer .copyright{
  position:relative;
  z-index:1;
}
.footer a,
.footer h3,
.footer-nav a{
  color:#192431 !important;
}
.footer h3{
  margin-top:0;
  font-family:var(--font-en);
  letter-spacing:.06em;
  font-weight:700;
}
.footer-nav a{
  opacity:.86;
  transition:color .25s ease, opacity .25s ease, transform .25s ease;
}
.footer-nav a:hover,
.footer-brand a:hover{
  color:var(--brand-red) !important;
  opacity:1;
  transform:translateX(2px);
}
.follow a{
  background:#fff !important;
  border-color:rgba(215,25,32,.14) !important;
  box-shadow:0 10px 24px rgba(215,25,32,.08);
}
.follow a svg{
  fill:var(--brand-red) !important;
}
.follow a:hover{
  background:linear-gradient(135deg,#d71920 0%,#ff4b32 100%) !important;
  border-color:transparent !important;
  box-shadow:0 14px 28px rgba(215,25,32,.18);
}
.follow a:hover svg{
  fill:#fff !important;
}
.copyright{
  border-top:1px solid rgba(215,25,32,.12) !important;
  color:rgba(25,36,49,.62) !important;
}


/* OEM partner recruit section */
.oem-business-dev-section {
  background: transparent;
}
.oem-partner-recruit-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
  gap: 34px;
  padding: 56px 58px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.94) 0%, rgba(252,247,244,.98) 100%);
  border: 1px solid rgba(214,224,233,.95);
  box-shadow: 0 26px 60px rgba(16,32,47,.08);
  position: relative;
  overflow: hidden;
}
.oem-partner-recruit-card:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,25,32,.10) 0%, rgba(215,25,32,0) 70%);
  pointer-events: none;
}
.oem-partner-copy,
.oem-partner-side {position: relative; z-index: 1;}
.oem-partner-copy h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.35;
  letter-spacing: .02em;
  margin: 12px 0 22px;
  color: var(--brand-navy);
}
.oem-partner-copy p {
  color: #5e6873;
  line-height: 1.95;
  font-size: 18px;
  margin: 0;
}
.oem-partner-lead {margin-bottom: 10px !important;}
.oem-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.oem-partner-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: rgba(215,25,32,.07);
  border: 1px solid rgba(215,25,32,.12);
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: .04em;
}
.oem-partner-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.oem-partner-side-box {
  padding: 26px 26px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(214,224,233,.9);
  box-shadow: 0 16px 34px rgba(16,32,47,.05);
}
.oem-partner-side-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-navy) !important;
}
.oem-partner-side-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.oem-partner-side-box li {
  position: relative;
  padding-left: 18px;
  margin: 12px 0;
  color: #5e6873;
  line-height: 1.85;
  font-weight: 600;
}
.oem-partner-side-box li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
}
.oem-partner-btn {
  width: 100%;
  justify-content: center;
  min-height: 60px;
  font-size: 17px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(215,25,32,.18);
}

@media (max-width: 980px) {
  .oem-partner-recruit-card {
    grid-template-columns: 1fr;
    padding: 40px 34px;
  }
  .oem-partner-copy h2 {
    font-size: clamp(30px, 5.4vw, 48px);
  }
}
@media (max-width: 640px) {
  .oem-partner-recruit-card {
    padding: 30px 22px;
    gap: 24px;
    border-radius: 28px;
  }
  .oem-partner-copy p {font-size: 16px;}
  .oem-partner-tags {gap: 10px; margin-top: 22px;}
  .oem-partner-tags span {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
  .oem-partner-side-box {
    padding: 20px 18px;
    border-radius: 22px;
  }
}

/* Admin product category multiple select */
.admin-checkbox-group{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
  max-width:360px;
}
.admin-checkbox{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  min-height:48px;
  padding:0 16px;
  border:1px solid rgba(215,25,32,.16);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  font-weight:700;
  color:#192431;
  transition:border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.admin-checkbox span{
  display:inline-block;
  line-height:1.4;
  white-space:nowrap;
  word-break:keep-all;
}
.admin-checkbox input[type="checkbox"]{
  width:18px !important;
  height:18px !important;
  min-width:18px;
  flex:0 0 18px;
  padding:0 !important;
  margin:0;
  border-radius:4px;
  accent-color:var(--brand-red);
}
.admin-checkbox:has(input:checked){
  border-color:rgba(215,25,32,.42);
  background:#fff5f3;
  color:var(--brand-red);
  box-shadow:0 10px 22px rgba(215,25,32,.08);
}
.admin-checkbox:hover{
  transform:translateY(-1px);
  border-color:rgba(215,25,32,.34);
}
@media(max-width:640px){
  .admin-row{
    grid-template-columns:1fr;
  }
  .admin-checkbox-group{
    max-width:none;
  }
}

/* Keep product category note under the checkbox group */
.admin-row > .admin-checkbox-group + .admin-field-note{
  grid-column:2;
  max-width:360px;
  margin-top:-2px;
  line-height:1.8;
  font-size:13px;
}
@media(max-width:640px){
  .admin-row > .admin-checkbox-group + .admin-field-note{
    grid-column:1;
    max-width:none;
  }
}
