/* ===========================
   電's オオハラ久留米店 - Common Styles
   =========================== */

/* No vertical writing on this site */
html, body, * { writing-mode: horizontal-tb !important; }

:root {
  --red: #d8232a;
  --red-dark: #b51b21;
  --red-soft: #fcecee;
  --blue: #0a4ea8;
  --blue-dark: #073b80;
  --blue-soft: #eaf2fc;
  --ink: #1a1f2c;
  --ink-2: #4a5163;
  --ink-3: #8a92a3;
  --line: #e6e9ef;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-cream: #fbf9f4;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, .06), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg: 0 22px 48px rgba(15, 23, 42, .12), 0 6px 14px rgba(15, 23, 42, .06);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Manrope", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TOP NOTICE BAR ---------- */
.topbar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 60%, var(--red-dark) 100%);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .02em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.topbar__left { display: flex; gap: 18px; align-items: center; opacity: .95; }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar__right a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .topbar__left .hide-sm { display: none; }
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
    padding: 8px 16px;
    text-align: center;
  }
  .topbar__right a {
    white-space: nowrap;
    font-family: var(--font-en);
    font-weight: 600;
    letter-spacing: -.01em;
  }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand__logo {
  width: auto;
  height: 44px;
  max-width: 120px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  min-width: 0;
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand__sub {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .1em;
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
}

.nav {
  display: flex; align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav ul, .nav .nav-menu, .nav .nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap;
}
.nav li { display: inline-flex; }
.nav .current-menu-item > a,
.nav .current_page_item > a { color: var(--blue); }
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  content:""; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--blue);
  border-radius: 2px;
}
.nav a {
  position: relative;
  padding: 10px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  letter-spacing: 0;
}
@media (max-width: 1100px) {
  .nav a { padding: 8px 8px; font-size: 13px; }
}
.nav a:hover { color: var(--blue); background: var(--blue-soft); }
.nav a.active { color: var(--blue); }
.nav a.active::after {
  content:""; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--blue);
  border-radius: 2px;
}

.header-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-cta__phone {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--red-soft);
  color: var(--red-dark);
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .2s;
}
.header-cta__phone:hover { transform: translateY(-1px); }
.header-cta__phone svg { width: 16px; height: 16px; }
.header-cta__contact {
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.header-cta__contact:hover { background: var(--blue-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  .hide-mobile { display: none !important; }
  .nav, .header-cta { display: none; }
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    justify-content: stretch;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
  }
  .brand__logo {
    height: 38px;
    max-width: 100px;
  }
  .brand__sub {
    font-size: 9px;
    letter-spacing: .08em;
  }
  .brand__name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-nav.open ~ * { /* placeholder */ }
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 40;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav .mob-cta {
  margin-top: 24px;
  display: grid; gap: 12px;
}
.mobile-nav .mob-cta a {
  border-bottom: none;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
}
.mob-cta .phone { background: var(--red); color: #fff; }
.mob-cta .contact { background: var(--blue); color: #fff; }
.mob-cta .line { background: #06c755; color: #fff; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(216,35,42,.25); }
.btn--red:hover { background: var(--red-dark); box-shadow: 0 12px 26px rgba(216,35,42,.32); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(10,78,168,.22); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05a847; }

/* ---------- SECTION HEADINGS ---------- */
.section { padding: 100px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }

.eyebrow {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--red);
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--blue::before { background: var(--blue); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, rgba(216, 35, 42, .22) 65%);
  padding: 0 2px;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head--left { text-align: left; }
.section-head--left .section-lede { margin: 0; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 140px 0 110px;
  background: linear-gradient(135deg, #f4f7fc 0%, #fbf9f4 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: saturate(.9);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.55) 0%, rgba(255,255,255,.78) 60%, rgba(255,255,255,.92) 100%),
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(251,249,244,.55) 100%);
}
.page-hero::before {
  content:"";
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,78,168,.10), transparent 70%);
  z-index: 0;
}
.page-hero::after {
  content:"";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,35,42,.08), transparent 70%);
  z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; text-align: center; }
.page-hero__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.page-hero__sub {
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 12.5px; color: var(--ink-3);
  margin-top: 28px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--line); }

/* ---------- FOOTER ---------- */
.footer-cta {
  position: relative;
  background: linear-gradient(135deg, #0a4ea8 0%, #073b80 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.footer-cta::before {
  content:""; position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(216,35,42,.25), transparent 60%);
  transform: rotate(-15deg);
}
.footer-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 820px) {
  .footer-cta__inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
}
.footer-cta p { opacity: .85; margin: 0 0 8px; }
.footer-cta__phone {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.footer-cta__phone .label { font-size: 12px; letter-spacing: .15em; opacity: .8; margin-bottom: 6px; }
.footer-cta__phone .num {
  font-family: var(--font-en); font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
}
.footer-cta__phone .num svg { width: 22px; height: 22px; flex-shrink: 0; }
.footer-cta__phone .hours { font-size: 13px; opacity: .85; margin-top: 4px; }
.footer-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.footer {
  background: #0c1220;
  color: #b9c0d0;
  padding: 64px 0 24px;
  font-size: 13px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255,255,255,.55); }
.footer .brand__logo { filter: brightness(1.05); }
.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer ul a:hover { color: #fff; }
.footer__addr { line-height: 1.9; margin: 12px 0 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* ---------- FLOATING CTA (mobile) ---------- */
.fab {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.fab a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.fab .phone { background: var(--red); }
.fab .form { background: var(--blue); }
.fab .line { background: #06c755; }
@media (max-width: 720px) {
  .fab { display: flex; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .fab { padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.reveal.in {
  animation: revealIn .8s cubic-bezier(.16,.84,.3,1) forwards;
}
.reveal.in[data-delay="1"] { animation-delay: .08s; }
.reveal.in[data-delay="2"] { animation-delay: .16s; }
.reveal.in[data-delay="3"] { animation-delay: .24s; }
.reveal.in[data-delay="4"] { animation-delay: .32s; }
.reveal.in[data-delay="5"] { animation-delay: .40s; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}

/* ---------- HERO (home) ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: saturate(.95);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.75) 45%, rgba(255,255,255,.45) 100%),
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(251,250,247,.65) 100%);
}
.hero__bg--store {
  display: none;
}
@media (max-width: 980px) {
  .hero__bg:not(.hero__bg--store)::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 100%);
  }
}
.hero::before {
  content:""; position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(10,78,168,.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(216,35,42,.07), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
.hero__copy { position: relative; z-index: 2; }
.hero__storefront {
  display: none;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__tag .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title-line .ja-accent,
.hero__title-line .blue,
.hero__title-line .red {
  display: inline;
}
.hero__title .ja-accent {
  background: linear-gradient(180deg, transparent 60%, rgba(216,35,42,.18) 60%);
}
.hero__title .blue { color: var(--blue); }
.hero__title .red { color: var(--red); }
.hero__lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.85;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
}
.hero__meta .item {
  display: flex; gap: 12px; align-items: center;
}
.hero__meta .item .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
}
.hero__meta .item .icon svg { width: 18px; height: 18px; }
.hero__meta .item .txt { font-size: 13px; line-height: 1.4; }
.hero__meta .item .txt b { display: block; font-size: 15px; color: var(--ink); }

.hero__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 980px) {
  .hero__visual {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
}
.hero__visual .pic {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual .pic img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual .badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 180px;
}
.hero__visual .badge--top {
  top: -16px; left: -16px;
  animation: float 5s ease-in-out infinite;
}
.hero__visual .badge--bot {
  bottom: 18px; right: -16px;
  animation: float 6s ease-in-out infinite reverse;
}
@media (max-width: 980px) {
  .hero__visual .badge--bot { right: 0; }
  .hero__visual .badge--top { left: 0; }
}
.hero__visual .badge .num {
  font-family: var(--font-en); font-weight: 800;
  font-size: 28px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero__visual .badge .num small { font-size: 14px; }
.hero__visual .badge .lbl {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.45;
  font-weight: 600;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  letter-spacing: .01em;
}

/* Decorative grid behind hero visual */
.hero__deco {
  position: absolute;
  top: 40px; right: -40px;
  width: 220px; height: 220px;
  z-index: 0;
  border-radius: 40px;
  background:
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  opacity: .08;
}
.hero__deco2 {
  position: absolute;
  bottom: -30px; left: -20px;
  width: 140px; height: 140px;
  background: var(--red);
  opacity: .08;
  border-radius: 30px;
  z-index: 0;
}

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 18px 0;
  background: #0c1220;
  color: #fff;
  overflow: hidden;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--blue);
}
.marquee__track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 40px;
}
.marquee__track .sep { color: var(--red); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- SERVICE CARDS ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--bg-soft);
  z-index: 0;
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.service-card:nth-child(2) .service-card__icon { background: var(--blue-soft); color: var(--blue); }
.service-card:nth-child(3) .service-card__icon { background: #fff3e7; color: #d97706; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 10px;
  position: relative; z-index: 1;
}
.service-card p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0 0 18px;
  position: relative; z-index: 1;
}
.service-card ul {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: grid; gap: 6px;
  position: relative; z-index: 1;
}
.service-card ul li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content:""; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--red);
}
.service-card__link {
  position: relative; z-index: 1;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .05em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s;
}
.service-card:hover .service-card__link { gap: 12px; }

/* ---------- INFO STRIP ---------- */
.info-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 820px) {
  .info-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
.info-strip__item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; gap: 14px; align-items: center;
}
.info-strip__item:last-child { border-right: none; }
@media (max-width: 820px) {
  .info-strip__item:nth-child(2) { border-right: none; }
  .info-strip__item:nth-child(1), .info-strip__item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}
.info-strip__item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.info-strip__item .icon svg { width: 20px; height: 20px; }
.info-strip__item .lbl { font-size: 11.5px; color: var(--ink-3); letter-spacing: .1em; }
.info-strip__item .val { font-weight: 700; font-size: 15px; color: var(--ink); }

/* ---------- REASONS ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.reason__no {
  position: absolute;
  top: -16px; left: 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .12em;
  padding: 6px 14px;
  border-radius: 999px;
}
.reason:nth-child(2) .reason__no { background: var(--blue); }
.reason:nth-child(3) .reason__no { background: #0c1220; }
.reason h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 18px 0 12px;
  line-height: 1.4;
}
.reason p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* ---------- WORKS GRID ---------- */
.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .works { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .works { grid-template-columns: 1fr; } }
.work {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.work:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work__img {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  overflow: hidden;
}
.work__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.work:hover .work__img img { transform: scale(1.05); }
.work__body { padding: 22px; }
.work__cat {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--blue);
  margin-bottom: 8px;
}
.work__cat.red { color: var(--red); }
.work h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  line-height: 1.4;
}
.work p { color: var(--ink-2); font-size: 13.5px; margin: 0; }
.work__meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-3);
}

/* ---------- NEWS ---------- */
.news-list {
  display: grid; gap: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.news-item {
  display: grid;
  grid-template-columns: 130px 110px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .2s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--bg-soft); }
@media (max-width: 720px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.news-item__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-3);
}
.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  background: var(--blue-soft);
  color: var(--blue);
  width: max-content;
}
.news-item__cat.red { background: var(--red-soft); color: var(--red); }
.news-item__cat.gray { background: #f0f2f6; color: var(--ink-2); }
.news-item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- FAQ / Q&A ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.faq__q::before {
  content: "Q";
  width: 30px; height: 30px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.faq__q::after {
  content: "+";
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-weight: 600;
  color: var(--ink-2);
  transition: transform .25s;
  font-size: 20px;
}
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div {
  overflow: hidden;
}
.faq__a-inner {
  padding: 0 24px 24px 70px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.85;
}

/* ---------- FORM ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13.5px; font-weight: 700;
  display: flex; gap: 8px; align-items: center;
}
.field label .req {
  font-size: 10px;
  padding: 2px 7px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  letter-spacing: .05em;
}
.field label .opt {
  font-size: 10px;
  padding: 2px 7px;
  background: var(--bg-soft);
  color: var(--ink-3);
  border-radius: 4px;
}
.field input, .field select, .field textarea {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,78,168,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex; gap: 6px;
}
.radio-row input { display: none; }
.radio-row input:checked + label,
.radio-row label.checked {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.form-actions {
  margin-top: 20px;
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.consent {
  font-size: 13px; color: var(--ink-2);
  display: flex; gap: 8px; align-items: flex-start;
}
.form-notice {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-notice--ok {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}
.form-notice--err {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}
.densohara-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---------- MISC ---------- */
.tag-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-size: 12.5px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.tag.red { background: var(--red-soft); color: var(--red-dark); border-color: transparent; }
.tag.blue { background: var(--blue-soft); color: var(--blue-dark); border-color: transparent; }

.divider-wave {
  display: block; width: 100%; height: 40px;
  background: var(--bg-soft);
}

/* ---------- 2-col with image ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}
.two-col__pic {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col__pic img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.two-col--flip .two-col__pic { order: 2; }
@media (max-width: 900px) { .two-col--flip .two-col__pic { order: 0; } }

.list-check { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.list-check li {
  padding-left: 36px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.list-check li::before {
  content:""; position: absolute;
  left: 0; top: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
}
.list-check li::after {
  content:""; position: absolute;
  left: 7px; top: 11px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.list-check.red li::before { background: var(--red); }

/* ---------- STAT BLOCK ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 36px 18px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.stat__num small {
  font-size: 18px; color: var(--ink-2);
  background: none;
  -webkit-text-fill-color: var(--ink-2);
}
.stat__lbl {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: .1em;
}

/* ---------- TABLE ---------- */
.info-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.info-table dl {
  margin: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media (max-width: 600px) {
  .info-table dl { grid-template-columns: 1fr; }
}
.info-table dt {
  background: var(--bg-soft);
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
}
.info-table dd {
  padding: 18px 24px;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.info-table dl > :nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 600px) {
  .info-table dt { border-bottom: none; padding-bottom: 4px; }
  .info-table dd { padding-top: 8px; }
}

/* ---------- MAP / staff card / etc ---------- */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.staff-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 720px) { .staff-card { grid-template-columns: 1fr; } }
.staff-card__pic {
  background: var(--bg-soft);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.staff-card__pic img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__body { padding: 36px; }
.staff-card__role {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 10px;
}
.staff-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 4px;
}
.staff-card__name-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: .1em;
  margin-bottom: 22px;
}
.staff-card__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
  padding: 16px 0 18px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 18px;
  color: var(--ink);
}
.staff-card__bio { color: var(--ink-2); font-size: 14.5px; line-height: 1.85; }
.staff-card__qa { margin-top: 20px; display: grid; gap: 10px; font-size: 13.5px; }
.staff-card__qa div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; }
.staff-card__qa b { color: var(--blue); font-weight: 700; }

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width: 720px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header__inner {
    padding: 12px 16px;
    gap: 10px;
  }
  .brand { gap: 10px; }
  .brand__name { font-size: 15px; }
  .brand__logo { height: 36px; max-width: 88px; }

  .hero {
    padding: 20px 0 36px;
    min-height: 0;
    display: block;
  }
  .hero__bg:not(.hero__bg--store) {
    display: block;
    opacity: .12;
  }
  .hero__bg--store {
    display: none;
  }
  .hero__storefront {
    display: block;
    margin: 0 0 14px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
  }
  .hero__storefront img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }
  .hero__copy {
    padding: 16px 14px 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
  }
  .hero__title {
    font-size: clamp(22px, 6.4vw, 34px);
    line-height: 1.42;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .hero__tag {
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    font-size: 12px;
    padding: 7px 12px;
  }
  .hero__lede {
    font-size: 15px;
    max-width: none;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .hero__cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14.5px;
  }
  .hero__meta {
    gap: 14px;
    padding-top: 20px;
  }
  .hero__meta .item {
    flex: 1 1 100%;
  }
  .hero__visual {
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: auto;
    max-width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }
  .hero__visual .pic,
  .hero__visual .hero__deco,
  .hero__visual .hero__deco2 {
    display: none;
  }
  .hero__visual .badge {
    position: static;
    animation: none;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero__visual .badge .num { font-size: 20px; }
  .hero__visual .badge .lbl {
    font-size: 11px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .info-strip__item {
    padding: 12px 8px;
    gap: 7px;
    align-items: center;
  }
  .info-strip__item .icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .info-strip__item .icon svg {
    width: 14px;
    height: 14px;
  }
  .info-strip__item .lbl {
    font-size: 9.5px;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .info-strip__item .val {
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: -.01em;
  }

  .page-hero {
    padding: 96px 0 72px;
  }
  .page-hero__title {
    font-size: clamp(26px, 7vw, 36px);
    word-break: keep-all;
  }
}

@media (max-width: 520px) {
  .brand__name { font-size: 14px; }
  .hero__meta .item .txt b { font-size: 14px; }
  .info-strip__item {
    padding: 10px 6px;
    gap: 6px;
  }
  .info-strip__item .icon {
    width: 26px;
    height: 26px;
  }
  .info-strip__item .icon svg {
    width: 12px;
    height: 12px;
  }
  .info-strip__item .val { font-size: 11px; }
  .info-strip__item .lbl { font-size: 9px; }
}

/* Skip selectors for prefers-reduced */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}
