*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --navy: #1B2E4B;
  --blue: #3A7BD5;
  --sky: #A8CFFB;
  --white: #fff;
  --bg: #F5F8FC;
  --border: #D8E4F0;
  --text: #1B2E4B;
  --muted: #6B82A0;
  --hint: #A3B5CB;
  --ac: #3A7BD5;
  --ap: #EBF2FC;
  --fd: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --fb: 'Noto Sans JP', sans-serif;
  --rlg: 16px;
  --rfl: 999px
}
html { scroll-behavior: smooth }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden
}

/* ---- Header ---- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s
}
.hdr.on { box-shadow: 0 2px 16px rgba(27,46,75,.08) }
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 62px
}
.logo {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  margin-right: auto;
  letter-spacing: -.02em
}
.logo span { color: var(--blue) }
.nl { display: flex }
.nl a {
  padding: 0 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  height: 62px;
  display: flex;
  align-items: center;
  white-space: nowrap
}
.nl a:hover { color: var(--ac) }
.ncta {
  margin-left: 14px;
  padding: 9px 18px;
  background: var(--ac);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s
}
.ncta:hover { opacity: .88 }

/* ---- Breadcrumb ---- */
.bc {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px
}
.bc-in {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--hint)
}
.bc-in a { color: var(--muted); text-decoration: none }
.bc-in a:hover { color: var(--navy) }

/* ---- Page Hero ---- */
.phero {
  background: var(--navy);
  padding: 52px 32px 48px;
  position: relative;
  overflow: hidden
}
.phero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--ac);
  opacity: .1
}
.phero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--sky);
  opacity: .07
}
.phero-in {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}
.phero-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  animation: fu .5s ease .1s forwards
}
.phero-h1 {
  font-family: var(--fd);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 12px;
  opacity: 0;
  animation: fu .5s ease .2s forwards
}
.phero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.58);
  line-height: 1.85;
  opacity: 0;
  animation: fu .5s ease .3s forwards
}
@keyframes fu {
  from { opacity: 0; transform: translateY(14px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ---- Main Layout ---- */
.main-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px 80px
}

/* ---- Scroll reveal ---- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease
}
.rv.in { opacity: 1; transform: none }

/* ---- Section ---- */
.ci-sec { margin-bottom: 52px }
.ci-sec-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ac);
  font-weight: 700;
  margin-bottom: 10px
}
.ci-sec-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ac);
  margin-bottom: 24px
}
.ci-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.9
}

/* ---- Info table ---- */
.ci-tbl {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden
}
.ci-row {
  display: flex;
  border-bottom: 1px solid var(--border)
}
.ci-row:last-child { border-bottom: none }
.ci-th {
  width: 180px;
  flex-shrink: 0;
  padding: 16px 20px;
  background: var(--bg);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 18px
}
.ci-td {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  display: flex;
  align-items: flex-start
}
.ci-td a {
  color: var(--ac);
  text-decoration: none
}
.ci-td a:hover { text-decoration: underline }

/* ---- Address group (複数拠点) ---- */
.ci-addr-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%
}
.ci-addr {
  display: flex;
  gap: 9px;
  align-items: flex-start
}
.ci-addr-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--hint);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px
}

/* ---- Group companies ---- */
.ci-group-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%
}
.ci-group-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border)
}
.ci-group-item:first-child { padding-top: 0 }
.ci-group-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}
.ci-group-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px
}
.ci-group-addrs {
  display: flex;
  flex-direction: column;
  gap: 5px
}

/* ---- Business content list ---- */
.ci-biz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%
}
.ci-biz-list li {
  display: flex;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  align-items: flex-start
}
.ci-biz-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ac);
  flex-shrink: 0;
  margin-top: 8px
}

/* ---- Note ---- */
.ci-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--hint);
  border-radius: 0 var(--rlg) var(--rlg) 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75
}

/* ---- CTA block ---- */
.ci-cta {
  background: var(--navy);
  border-radius: var(--rlg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden
}
.ci-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--ac);
  opacity: .1
}
.ci-cta-e {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px
}
.ci-cta-t {
  font-family: var(--fd);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4
}
.ci-cta-d {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
  line-height: 1.8
}
.ci-cta-btn {
  display: inline-block;
  padding: 13px 36px;
  background: var(--ac);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  transition: opacity .15s
}
.ci-cta-btn:hover { opacity: .88 }

/* ---- Footer ---- */
.ftr {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 36px 32px 32px
}
.ftin {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start
}
.flogo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none
}
.flogo span { color: var(--sky) }
.ftag {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 4px
}
.fls {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}
.fls a {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  text-decoration: none
}
.fls a:hover { color: rgba(255,255,255,.75) }
.fcp {
  max-width: 1080px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 11px;
  color: rgba(255,255,255,.22)
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nl { display: none }
  .bc { padding: 10px 20px }
  .phero { padding: 44px 20px }
  .main-wrap { padding: 40px 20px 60px }
  .ci-tbl { border-radius: 12px }
  .ci-row { flex-direction: column }
  .ci-th { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding-top: 14px }
  .ci-th, .ci-td { padding: 14px 16px }
  .ci-group-item:first-child { padding-top: 14px }
  .ci-cta { padding: 28px 20px }
  .ftr { padding: 28px 20px 24px }
  .ftin { flex-direction: column; gap: 16px }
}
