.elementor-5983 .elementor-element.elementor-element-3446125{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3d54d15 */:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --primary-pale: #eaf2f8;
  --accent: #c0932e;
  --accent-hover: #d4a83a;
  --bg: #f5f7fa;
  --bg-white: #ffffff;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --text-white: #f0f4f8;
  --shadow-sm: 0 1px 8px rgba(0,0,0,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 14px;
}

body {
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0b1c2e 0%, #163d5c 40%, #1f6fa3 100%);
  color: var(--text-white);
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 40%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 80%, rgba(192,147,46,0.08) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero h1 span { color: var(--accent); }
.hero-left p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 17px 52px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(192,147,46,0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(192,147,46,0.45);
}
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.hero-stat .unit {
  font-size: 13px;
  opacity: 0.7;
  display: block;
}

/* ── Section ── */
section { padding: 56px 40px; }
.container { max-width: 1320px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  background: var(--primary-pale);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-light);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Service Overview (2 col) ── */
.service-overview { background: var(--bg-white); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  border: 2px solid #e8ecf2;
  border-radius: var(--radius);
  padding: 32px 36px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-card:nth-child(1)::before { background: var(--primary); }
.service-card:nth-child(2)::before { background: var(--primary-light); }
.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.badge-oem {
  background: var(--primary);
  color: #fff;
}
.badge-pl {
  background: var(--primary-pale);
  color: var(--primary);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 8px;
}

/* ── Product Detail Blocks ── */
.products { background: var(--bg); }
.product-block {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 28px;
}
.product-block:last-child { margin-bottom: 0; }
.product-block-header {
  background: var(--primary);
  color: #fff;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-block-header.alt { background: var(--primary-light); }
.product-block-header .pb-icon { font-size: 32px; flex-shrink: 0; }
.product-block-header h3 { font-size: 22px; font-weight: 800; }
.product-block-header .pb-tag {
  margin-left: auto;
  background: rgba(255,255,255,0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.product-block-body {
  padding: 28px 36px;
}
.product-block-body > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table tr { border-bottom: 1px solid #f0f2f6; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th {
  text-align: left;
  padding: 16px 24px;
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 700;
  width: 170px;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.spec-table td {
  padding: 16px 24px;
  color: var(--text);
  line-height: 1.7;
}
.spec-table strong { color: var(--primary); }
.template-note {
  margin-top: 24px;
  background: var(--primary-pale);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
}
.template-note strong { color: var(--primary); }
.size-chips {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.size-chip {
  background: var(--primary-pale);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* ── Private Label Grid ── */
.private-label { background: var(--bg-white); }
.pl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pl-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.pl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #dde3ec;
}
.pl-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.pl-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.pl-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}
.pl-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  border-left: 4px solid var(--primary-light);
}
.pl-notice-icon {
  font-size: 28px;
  padding-top: 2px;
}
.pl-notice strong { color: var(--primary); }

/* ── Flow ── */
.flow { background: var(--bg); }
.flow-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-step {
  text-align: center;
  padding: 24px 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.flow-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-left: 12px;
  padding-right: 12px;
}
.flow-connector svg {
  width: 32px;
  height: 32px;
  color: var(--primary-light);
}

/* ── FAQ ── */
.faq { background: var(--bg-white); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: #d5dde8; }
.faq-q {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: #edf0f5; }
.faq-q::before {
  content: "Q";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.faq-q .toggle {
  margin-left: auto;
  font-size: 22px;
  color: var(--text-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px 0 76px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 24px 76px;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a strong { color: var(--primary); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, #0b1c2e 0%, #163d5c 50%, #1a5276 100%);
  color: var(--text-white);
  text-align: center;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(192,147,46,0.1) 0%, transparent 70%);
}
.cta > * { position: relative; }
.cta h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 16px;
}
.cta .btn-primary {
  font-size: 17px;
  padding: 16px 56px;
}
.cta-sub {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.6;
}

/* ── Footer ── */
footer {
  background: #081520;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 28px 40px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-right { max-width: 400px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .product-block-body { padding: 28px 24px; }
  .pl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  section { padding: 40px 16px; }
  .header-inner { padding: 14px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-right { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stat { padding: 16px 10px; }
  .hero-stat .num { font-size: 22px; }
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-notice { grid-template-columns: 1fr; text-align: center; }
  .flow-track {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
  .flow-connector { display: none; }
  .spec-table th { width: 120px; padding: 12px 16px; }
  .spec-table td { padding: 12px 16px; }
}/* End custom CSS */