* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px
}

.shell {
  position: relative
}

.page-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px 84px
}

.page-head {
  margin-bottom: 44px
}

.eyebrow {
  font-family: var(--ff-disp);
  letter-spacing: .24em;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px
}

.page-head h1 {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.24;
  letter-spacing: .01em;
  margin-bottom: 18px
}

.lead {
  color: var(--muted);
  font-size: 17px;
  /* max-width: 62ch */
}

.block {
  margin: 0 0 52px
}

.block h2 {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: clamp(21px, 3.3vw, 30px);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line)
}

.block p {
  margin-bottom: 15px
}

.block.has-img {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 38px;
  align-items: center
}

.block.has-img h2 {
  border: none;
  padding: 0
}

.block-fig img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .4)
}

@media(max-width:760px) {
  .block.has-img {
    grid-template-columns: 1fr;
    gap: 22px
  }
}

.faq-list {
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 44px 20px 0;
  position: relative;
  display: block
}

.faq-mark {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%)
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: .3s
}

.faq-mark::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px
}

.faq-mark::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px
}

.faq-item.open .faq-mark::after {
  transform: scaleY(0)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-a p {
  padding: 0 0 20px;
  color: var(--muted)
}

.sitemap-page .sitemap-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px
}

.sitemap-list a {
  display: block;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: .25s
}

.sitemap-list a:hover {
  transform: translateY(-3px);
  border-color: var(--accent)
}

.sitemap-list span {
  display: block;
  font-weight: 700;
  font-family: var(--ff-disp)
}

.sitemap-list small {
  color: var(--muted);
  font-size: 12px
}

.site-footer {
  background: var(--foot-bg);
  color: var(--foot-fg);
  margin-top: 72px
}

.site-footer ul {
  list-style: none
}

.site-footer a {
  color: inherit;
  opacity: .82;
  transition: .2s
}

.site-footer a:hover {
  opacity: 1;
  color: var(--accent2)
}

.site-footer .ft-name {
  font-family: var(--ff-disp);
  font-weight: 700
}

.site-footer .ft-tag {
  opacity: .7;
  font-size: 14px
}

.site-footer .ft-addr {
  opacity: .6;
  font-size: 13px
}

.site-footer .ft-copy {
  font-size: 12px;
  opacity: .55
}

/* columns */
.ft-columns .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 26px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px
}

.ft-columns .ft-name {
  font-size: 20px;
  margin-bottom: 8px
}

.ft-columns .ft-addr {
  margin-top: 12px
}

.ft-columns .ft-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px
}

.ft-columns .ft-copy {
  text-align: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

@media(max-width:760px) {
  .ft-columns .ft-in {
    grid-template-columns: 1fr;
    gap: 22px
  }
}

/* centered */
.ft-centered .ft-in {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 24px;
  text-align: center
}

.ft-centered .ft-name {
  font-size: 26px;
  margin-bottom: 10px
}

.ft-centered .ft-tag {
  margin-bottom: 22px
}

.ft-centered .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 14px;
  margin-bottom: 20px
}

.ft-centered .ft-addr {
  margin-bottom: 6px
}

.ft-centered .ft-copy {
  text-align: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

/* split */
.ft-split .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start
}

.ft-split .ft-brand {
  max-width: 46%
}

.ft-split .ft-name {
  font-size: 30px;
  margin-bottom: 10px
}

.ft-split .ft-addr {
  margin-top: 14px
}

.ft-split .ft-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  font-size: 14px;
  text-align: right
}

.ft-split .ft-copy {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: var(--maxw);
  margin: 0 auto
}

@media(max-width:760px) {
  .ft-split .ft-brand {
    max-width: 100%
  }

  .ft-split .ft-nav ul {
    text-align: left
  }
}

/* inline */
.ft-inline {
  border-top: 3px solid var(--accent)
}

.ft-inline .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.ft-inline .ft-name {
  font-size: 18px
}

.ft-inline .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13.5px
}

/* bigtype */
.ft-bigtype .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 34px
}

.ft-bigtype .ft-name {
  font-size: clamp(38px, 8vw, 82px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.ft-bigtype .ft-tag {
  margin-bottom: 24px
}

.ft-bigtype .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 16px
}

/* band */
.ft-band-top {
  background: var(--accent);
  color: var(--foot-bg)
}

.ft-band-top p {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: clamp(16px, 2.6vw, 22px)
}

.ft-band .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.ft-band .ft-name {
  font-size: 20px
}

.ft-band .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.ft-band .ft-nav a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  opacity: 1
}

.ft-band .ft-nav a:hover {
  background: var(--accent);
  color: var(--foot-bg)
}

.ft-band .ft-copy {
  text-align: center;
  padding: 14px
}

/* card */
.ft-card .ft-in {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 24px 18px
}

.ft-card-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center
}

.ft-card .ft-name {
  font-size: 22px;
  margin-bottom: 8px
}

.ft-card .ft-tag {
  margin-bottom: 20px
}

.ft-card .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14px
}

.ft-card .ft-copy {
  text-align: center;
  padding: 16px
}

/* stack2 */
.ft-stack2 .ft-row {
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.ft-stack2 .ft-row ul {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  font-size: 14.5px
}

.ft-stack2 .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.ft-stack2 .ft-name {
  font-size: 18px
}

/* rail */
.ft-rail .ft-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 300px 1fr
}

.ft-rail .ft-rail-brand {
  background: rgba(255, 255, 255, .05);
  border-right: 3px solid var(--accent);
  padding: 46px 30px
}

.ft-rail .ft-name {
  font-size: 22px;
  margin-bottom: 10px
}

.ft-rail .ft-addr {
  margin-top: 14px
}

.ft-rail .ft-nav {
  padding: 46px 30px;
  display: flex;
  align-items: center
}

.ft-rail .ft-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  font-size: 14.5px
}

.ft-rail .ft-copy {
  text-align: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

@media(max-width:760px) {
  .ft-rail .ft-in {
    grid-template-columns: 1fr
  }

  .ft-rail .ft-rail-brand {
    border-right: none;
    border-bottom: 3px solid var(--accent)
  }
}

/* chips */
.ft-chips .ft-in {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 20px;
  text-align: center
}

.ft-chips .ft-name {
  font-size: 22px;
  margin-bottom: 18px
}

.ft-chips .ft-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px
}

.ft-chips .ft-nav a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  font-size: 13px;
  opacity: 1
}

.ft-chips .ft-nav a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--foot-bg)
}

.ft-chips .ft-addr {
  font-size: 13px
}

.ft-chips .ft-copy {
  text-align: center;
  padding: 16px
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .3s;
  z-index: 60;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .5)
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px
}

.burger span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: .3s
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.drawer {
  display: none
}


:root {
  --bg: #ffffff;
  --ink: #22323b;
  --accent: #2f80ed;
  --accent2: #19b890;
  --soft: #eef6fb;
  --line: #dbe9ef;
  --muted: #5a6b73;
  --foot-bg: #1d3b46;
  --foot-fg: #e9f4f7;
  --ff-disp: 'M PLUS Rounded 1c', sans-serif;
  --ff-body: 'Noto Sans JP', sans-serif;
  --maxw: 1080px;
  --radius: 20px;
}

.ctr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 30px;
  border-bottom: 1px solid var(--line)
}

.ctr .logo {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 21px;
  color: var(--accent);
  text-align: center;
  padding: 0 26px;
  white-space: nowrap
}

.ctr .logo::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent2);
  margin-right: 9px;
  vertical-align: middle
}

.ctr-nav ul {
  display: flex;
  gap: 24px
}

.ctr-l ul {
  justify-content: flex-end
}

.ctr-r ul {
  justify-content: flex-start
}

.ctr-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: .2s;
  position: relative;
  padding: 8px 0
}

.ctr-nav a:hover,
.ctr-nav a.is-active {
  color: var(--accent)
}

.ctr-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--accent)
}

.shell {
  padding-top: 70px
}

.cl-hero {
  background: linear-gradient(180deg, var(--soft), #fff)
}

.cl-hero-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center
}

.cl-copy .k {
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 16px
}

.cl-copy h1 {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--ink)
}

.cl-copy h1 b {
  color: var(--accent)
}

.cl-copy p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.95
}

.cl-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  transition: .25s
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px var(--accent)
}

.btn.ghost {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent)
}

.cl-photo img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(47, 128, 237, .55);
  border: 10px solid #fff
}

.cl-serv {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 24px
}

.cl-serv .h {
  text-align: center;
  margin-bottom: 48px
}

.cl-serv .h .k {
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 10px
}

.cl-serv .h h2 {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 32px);
  color: var(--ink)
}

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

.scard {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center
}

.scard figure {
  width: 108px;
  height: 108px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .3)
}

.scard figure img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.scard h3 {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px
}

.scard p {
  color: var(--muted);
  font-size: 14.5px
}

.cl-hours {
  background: var(--soft);
  padding: 72px 24px
}

.cl-hours .in {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, .3)
}

.cl-hours h2 {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 22px;
  text-align: center
}

.cl-hours table {
  width: 100%;
  border-collapse: collapse
}

.cl-hours th,
.cl-hours td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.cl-hours th {
  color: var(--accent);
  font-family: var(--ff-disp);
  font-weight: 800
}

.cl-hours td.on {
  color: var(--accent2);
  font-weight: 800
}

.cl-hours td.off {
  color: #c0ccd1
}

.drawer {
  padding: 0
}

@media(max-width:820px) {
  .ctr {
    display: flex;
    justify-content: space-between
  }

  .ctr-nav {
    display: none
  }

  .ctr .logo {
    text-align: left;
    padding: 0
  }

  .burger {
    display: flex;
    color: var(--accent)
  }

  .drawer.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line)
  }

  .drawer.open ul {
    flex-direction: column;
    padding: 8px 24px 16px
  }

  .drawer.open li {
    padding: 9px 0;
    border-top: 1px solid var(--line)
  }

  .cl-hero-in {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .cl-photo {
    max-width: 300px;
    margin: 0 auto
  }

  .sgrid {
    grid-template-columns: 1fr
  }
}

/* ===== サイト固有の追加スタイル ===== */
/* カードをリンク化したときの色・hover調整 */
.scard {
  display: block;
  text-decoration: none;
  transition: .25s;
  border: 1px solid var(--line)
}

.scard:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 22px 44px -28px rgba(47, 128, 237, .5)
}

.scard h3 {
  margin-bottom: 10px
}

.scard p {
  color: var(--muted)
}

/* サイトマップをリスト（行）形式に */
.sitemap-page .sitemap-list--rows {
  display: block
}

.sitemap-list--rows li {
  margin-bottom: 14px
}

.sitemap-list--rows li a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: .25s
}

.sitemap-list--rows li a:hover {
  transform: translateY(-2px);
  border-color: var(--accent)
}

.sitemap-list--rows span {
  font-weight: 700;
  font-family: var(--ff-disp);
  font-size: 17px
}

.sitemap-list--rows small {
  color: var(--muted);
  font-size: 12px
}

.sitemap-list--rows .sm-desc {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 4px 0 4px;
  line-height: 1.8
}

/* ヒーロー画像（SVG）は円形マスクを外して全体表示 */
.cl-photo img[src$=".svg"] {
  border-radius: 24px;
  border: none;
  box-shadow: 0 30px 60px -30px rgba(47, 128, 237, .45);
  background: #fff
}