/* ===== Design tokens ===== */
:root {
  --navy: #14243f;
  --navy-deep: #0e1b30;
  --navy-soft: #2a3c5e;
  --cream: #f3efe9;
  --cream-2: #efeae2;
  --paper: #ffffff;
  --ink: #243043;
  --muted: #6b7384;
  --line-green: #06c755;
  --line-green-d: #05b34c;
  --border: #e3ddd3;
  --shadow: 0 18px 40px -24px rgba(20, 36, 63, .35);
  --radius: 14px;
  --maxw: 1120px;
  --serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 15px 30px; border-radius: 10px; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .2s, color .2s;
  text-align: center; line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn--line { background: var(--line-green); color: #fff; box-shadow: 0 12px 24px -10px rgba(6,199,85,.6); }
.btn--line:hover { background: var(--line-green-d); }
.btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); flex-direction: row; }
.btn--ghost em { font-style: normal; transition: transform .25s; }
.btn--ghost:hover em { transform: translateX(4px); }
.btn--outline { background: #fff; color: var(--navy); border: 1px solid var(--navy); flex-direction: row; padding: 14px 40px; border-radius: 999px; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; flex-direction: row; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--block { display: flex; width: 100%; }
.btn__sub { font-size: 11px; font-weight: 500; opacity: .9; }

/* ===== Header ===== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .3s;
}
.header.is-hidden { transform: translateY(-100%); }
.header.is-scrolled { box-shadow: 0 6px 20px -16px rgba(0,0,0,.4); }
.header__inner {
  width: min(100% - 40px, 1280px); margin-inline: auto;
  display: flex; align-items: center; gap: 20px; height: 72px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.logo__mark { color: var(--navy); display: grid; place-items: center; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-family: var(--serif); font-size: 20px; letter-spacing: .06em; }
.logo__text small { font-size: 9px; letter-spacing: .28em; color: var(--muted); }
.logo--light, .logo--light .logo__mark { color: #fff; }
.logo--light .logo__text small { color: rgba(255,255,255,.65); }

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav__link { font-size: 13.5px; font-weight: 500; position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--navy); transition: width .25s;
}
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; gap: 10px; }
.head-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 8px; line-height: 1.25; gap: 1px;
}
.head-btn__main { font-weight: 700; font-size: 14px; }
.head-btn__sub { font-size: 9.5px; opacity: .85; }
.head-btn--tel { background: var(--navy); color: #fff; }
.head-btn--line { background: var(--line-green); color: #fff; }
.head-btn--tel:hover { background: var(--navy-deep); }
.head-btn--line:hover { background: var(--line-green-d); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer; padding: 9px;
}
.nav__toggle span { height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; padding-top: 72px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero__inner {
  width: min(100% - 40px, 1280px); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 40px;
  min-height: calc(100vh - 72px); padding: 40px 0 70px;
}
.hero__title {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: clamp(38px, 5.5vw, 68px); line-height: 1.35; letter-spacing: .04em;
}
.hero__lead { margin-top: 28px; color: var(--ink); font-size: 16px; line-height: 2; }
.hero__actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__media > img {
  width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover;
  border-radius: 0 0 0 120px; box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute; right: -10px; bottom: -34px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  box-shadow: var(--shadow); display: grid; place-content: center; text-align: center;
  padding: 20px; gap: 8px;
}
.hero__badge-sub { font-size: 11px; color: var(--muted); line-height: 1.6; }
.hero__badge-main { font-family: var(--serif); color: var(--navy); font-size: 22px; line-height: 1.4; }
.hero__badge-note { font-size: 11px; color: var(--ink); }

.hero__scroll {
  position: absolute; left: 28px; bottom: 0; writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: .25em; color: var(--muted); padding-bottom: 60px;
}
.hero__scroll::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 48px;
  background: var(--muted); animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline { 0%,100% { transform: scaleY(.3); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ===== Section common ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--cream); }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head__en { font-size: 12px; letter-spacing: .32em; color: var(--muted); font-weight: 700; }
.sec-head__ja {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: clamp(26px, 3.4vw, 36px); margin-top: 10px; letter-spacing: .05em;
}
.sec-action { text-align: center; margin-top: 48px; }

/* ===== Reason ===== */
.reasons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.reason-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 18px; text-align: center; transition: transform .3s, box-shadow .3s;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reason-card__icon { font-size: 34px; margin-bottom: 14px; }
.reason-card h3 { font-family: var(--serif); color: var(--navy); font-size: 16px; margin-bottom: 10px; }
.reason-card p { font-size: 12.5px; color: var(--muted); line-height: 1.8; }

/* ===== Services ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 30px -22px rgba(20,36,63,.4); transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__img { aspect-ratio: 16/11; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__body { padding: 20px 22px 24px; position: relative; }
.service-card__body h3 { font-family: var(--serif); color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.service-card__body p { font-size: 13px; color: var(--muted); }
.service-card__arrow { position: absolute; right: 20px; bottom: 22px; color: var(--navy); font-size: 20px; }

/* ===== Works / Before-After ===== */
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.work { text-align: center; }
.ba {
  position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); user-select: none;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before-wrap .ba__before { width: 100vw; max-width: none; height: 100%; }
.ba .ba__before { width: 100%; }
.ba__before-wrap { will-change: width; }
.ba__label {
  position: absolute; top: 10px; z-index: 3; font-size: 11px; font-weight: 700;
  color: #fff; background: rgba(20,36,63,.7); padding: 3px 10px; border-radius: 4px;
}
.ba__label--before { left: 10px; }
.ba__label--after { right: 10px; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; z-index: 4;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff;
  z-index: 3; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(20,36,63,.2);
}
.ba__handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--navy);
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow); letter-spacing: -1px;
}
.work__title { font-family: var(--serif); color: var(--navy); font-size: 16px; margin-top: 16px; }
.work__text { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ===== About ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__text .sec-head__en { text-align: left; }
.about__title {
  font-family: var(--serif); color: var(--navy); font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.5; margin: 12px 0 24px; letter-spacing: .05em;
}
.about__text p { color: var(--ink); margin-bottom: 18px; }
.about__text .btn { margin-top: 8px; }
.about__media { position: relative; min-height: 360px; }
.about__img { border-radius: 12px; box-shadow: var(--shadow); object-fit: cover; }
.about__img--main { width: 74%; aspect-ratio: 4/3; }
.about__img--sub {
  width: 50%; aspect-ratio: 4/3; position: absolute; right: 0; bottom: -10px;
  border: 6px solid var(--cream);
}

/* ===== Contact ===== */
.contact__title { font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: .04em; }
.contact__lead { color: var(--muted); margin-top: 16px; }
.contact__methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.contact-method a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 20px; transition: transform .3s, box-shadow .3s; text-align: center;
}
.contact-method a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-method__icon { font-size: 30px; }
.contact-method__main { font-family: var(--serif); color: var(--navy); font-size: 17px; font-weight: 600; }
.contact-method__sub { font-size: 12px; color: var(--muted); }
.contact-method--line a { background: #f1fbf4; border-color: #bfe9cd; }

.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px;
  max-width: 760px; margin-inline: auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 14px 30px -24px rgba(20,36,63,.4);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label span { color: #d9534f; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14px; padding: 11px 13px;
  border: 1px solid var(--border); border-radius: 8px; background: #fcfbf9; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(20,36,63,.08);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #d9534f; background: #fdf4f4; }
.field__error { color: #d9534f; font-size: 12px; min-height: 0; }
.field.is-invalid .field__error { min-height: 16px; }
.contact__success {
  margin-top: 14px; text-align: center; color: var(--line-green-d); font-weight: 700;
  background: #f1fbf4; border: 1px solid #bfe9cd; border-radius: 8px; padding: 12px;
}

/* ===== Area ===== */
.area__body { text-align: center; }
.area__lead { color: var(--ink); margin-bottom: 24px; }
.area__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area__list li {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 18px; font-size: 13.5px; color: var(--navy); font-weight: 500;
}

/* ===== Company ===== */
.company__table { width: 100%; max-width: 820px; margin-inline: auto; border-collapse: collapse; }
.company__table th, .company__table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--border); vertical-align: top; }
.company__table th { width: 150px; color: var(--navy); font-weight: 700; background: var(--cream); font-size: 14px; }
.company__table td { font-size: 14px; color: var(--ink); }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 64px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 2.2fr 1.2fr; gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__lead { font-size: 13px; line-height: 1.9; margin-top: 18px; color: rgba(255,255,255,.7); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer__col h4 { font-size: 14px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col a { font-size: 12.5px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__info { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.75); }
.footer__company { font-family: var(--serif); color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer__tel { color: #fff; font-weight: 700; font-size: 16px; margin-top: 10px; }
.footer__copy { text-align: center; font-size: 11px; color: rgba(255,255,255,.5); padding: 22px 0; letter-spacing: .1em; }

/* ===== Service page: page hero ===== */
.page-hero {
  position: relative; margin-top: 72px; min-height: 320px;
  background: var(--cream); display: flex; align-items: center; overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0 0 0 auto; width: 50%; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(243,239,233,.4) 30%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 2; padding: 60px 0; }
.page-hero__en { font-size: 12px; letter-spacing: .32em; color: var(--muted); font-weight: 700; }
.page-hero__title {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: clamp(30px, 4.4vw, 48px); letter-spacing: .12em; margin: 10px 0 18px;
}
.page-hero__lead { color: var(--ink); font-size: 15px; line-height: 1.9; }
.breadcrumb { margin-top: 26px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }

/* ===== Service page: group heading ===== */
.group-head { text-align: center; margin-bottom: 44px; }
.group-head h2 {
  font-family: var(--serif); font-weight: 600; color: var(--navy);
  font-size: clamp(22px, 3vw, 30px); letter-spacing: .08em;
}
.group-head h2::after {
  content: ""; display: block; width: 46px; height: 2px; background: var(--navy);
  margin: 16px auto 0; opacity: .55;
}

/* ===== Service page: cards ===== */
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.svc-cards--biz { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 30px -22px rgba(20,36,63,.4); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-card__img img { transform: scale(1.07); }
.svc-card__icon {
  position: absolute; left: 18px; bottom: -22px; width: 52px; height: 52px;
  border-radius: 50%; background: #fff; display: grid; place-items: center;
  font-size: 22px; box-shadow: 0 8px 18px -8px rgba(20,36,63,.45); z-index: 2;
}
.svc-card__body { padding: 34px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-family: var(--serif); color: var(--navy); font-size: 16px; line-height: 1.5; margin-bottom: 10px; }
.svc-card__body p { font-size: 12.5px; color: var(--muted); line-height: 1.8; flex: 1; }
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 18px; align-self: stretch; padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--navy); color: var(--navy); font-size: 13px; font-weight: 700;
  transition: background .2s, color .2s;
}
.pill-btn em { font-style: normal; transition: transform .25s; }
.pill-btn:hover { background: var(--navy); color: #fff; }
.pill-btn:hover em { transform: translateX(3px); }

/* ===== Service page: CTA band ===== */
.cta-band { background: var(--cream-2); padding: 56px 0; }
.cta-band__inner {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  background: linear-gradient(180deg, #fff, #fbf9f5); border: 1px solid var(--border);
  border-radius: 18px; padding: 40px; box-shadow: var(--shadow);
}
.cta-band__title { font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: clamp(20px, 2.6vw, 27px); line-height: 1.6; letter-spacing: .03em; }
.cta-band__lead { color: var(--muted); margin-top: 14px; font-size: 14px; }
.cta-band__actions { display: flex; gap: 14px; }
.cta-method {
  display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: 12px;
  background: #fff; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
  min-width: 200px;
}
.cta-method:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cta-method__icon { font-size: 26px; }
.cta-method__txt { display: flex; flex-direction: column; line-height: 1.3; }
.cta-method__txt strong { font-family: var(--serif); color: var(--navy); font-size: 17px; }
.cta-method__txt small { font-size: 11px; color: var(--muted); }
.cta-method--line { background: var(--line-green); border-color: var(--line-green); }
.cta-method--line .cta-method__txt strong, .cta-method--line .cta-method__txt small { color: #fff; }

@media (max-width: 1080px) {
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .page-hero__media { width: 100%; }
  .page-hero__media::before { background: linear-gradient(90deg, var(--cream) 10%, rgba(243,239,233,.55) 55%, rgba(243,239,233,.3) 100%); }
  .svc-cards, .svc-cards--biz { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-cards, .svc-cards--biz { grid-template-columns: 1fr; }
  .cta-method { min-width: 0; width: 100%; }
  .cta-band__inner { padding: 26px; }
}

/* ===== Anchor chips (service / price pages) ===== */
.service-anchors { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 72px; z-index: 50; }
.service-anchors__inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 14px 0; }
.service-anchors a {
  font-size: 13px; font-weight: 700; color: var(--navy); padding: 7px 18px;
  border: 1px solid var(--border); border-radius: 999px; transition: background .2s, color .2s;
}
.service-anchors a:hover { background: var(--navy); color: #fff; }

/* ===== Price table ===== */
.ptable-wrap { max-width: 880px; margin-inline: auto; overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ptable thead th { background: var(--navy); color: #fff; font-size: 14px; font-weight: 700; padding: 16px 20px; text-align: left; }
.ptable tbody td { padding: 16px 20px; border-top: 1px solid var(--border); font-size: 14px; color: var(--ink); vertical-align: middle; }
.ptable tbody tr:nth-child(even) { background: #fbfaf7; }
.ptable td small { color: var(--muted); font-size: 12px; font-weight: 500; }
.ptable td:nth-child(2) { font-family: var(--serif); color: var(--navy); font-weight: 600; white-space: nowrap; }

/* ===== Plan cards ===== */
.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 26px 30px; text-align: center; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card--feature { border-color: var(--navy); border-width: 2px; box-shadow: var(--shadow); }
.plan-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--line-green); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.plan-card__name { font-family: var(--serif); color: var(--navy); font-size: 19px; }
.plan-card__detail { font-size: 12.5px; color: var(--muted); margin-top: 8px; min-height: 36px; }
.plan-card__price { font-family: var(--serif); color: var(--navy); font-size: 18px; margin-top: 14px; }
.plan-card__num { font-size: 40px; line-height: 1; }
.plan-card__price small { font-size: 12px; color: var(--muted); }
.plan-card__regular { font-size: 12px; color: var(--muted); text-decoration: line-through; margin-top: 6px; margin-bottom: 22px; }
.plan-card .pill-btn { margin-top: auto; }
.pill-btn--fill { background: var(--navy); color: #fff; }
.pill-btn--fill:hover { background: var(--navy-deep); }

/* ===== Price note / note list ===== */
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 24px; line-height: 1.8; }
.note-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.note-list li {
  position: relative; padding: 16px 20px 16px 48px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px; font-size: 13.5px; color: var(--ink); line-height: 1.8;
}
.note-list li::before {
  content: "!"; position: absolute; left: 18px; top: 16px; width: 20px; height: 20px;
  background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

@media (max-width: 900px) {
  .service-anchors { top: 72px; }
  .plan-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .ptable thead { display: none; }
  .ptable, .ptable tbody, .ptable tr, .ptable td { display: block; width: 100%; }
  .ptable tbody tr { border-top: 1px solid var(--border); padding: 8px 0; }
  .ptable tbody td { border: 0; padding: 8px 18px; display: flex; justify-content: space-between; gap: 16px; }
  .ptable tbody td::before { content: attr(data-label); color: var(--muted); font-size: 12px; font-weight: 700; }
  .ptable td:nth-child(2) { white-space: normal; text-align: right; }
}

/* ===== Area page ===== */
.area-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-group {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 28px 30px; transition: transform .3s, box-shadow .3s;
}
.area-group:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.area-group__name {
  font-family: var(--serif); color: var(--navy); font-size: 18px; letter-spacing: .04em;
  display: flex; align-items: center; gap: 8px; padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.area-group__icon { font-size: 16px; }
.area__list--left { justify-content: flex-start; }
.area-group--wide { grid-column: 1 / -1; }
.area-group__note { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.area-near { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.area-near__pref {
  font-family: var(--serif); color: var(--navy); font-size: 15px; font-weight: 600;
  margin-bottom: 12px; padding-left: 12px; border-left: 3px solid var(--navy);
}
@media (max-width: 600px) { .area-near { grid-template-columns: 1fr; } }

.area-map {
  max-width: 960px; margin-inline: auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff;
}
.area-map iframe { display: block; width: 100%; height: 440px; border: 0; }

.outside {
  max-width: 820px; margin-inline: auto; text-align: center;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 36px;
}
.outside__title { font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: .04em; }
.outside__text { color: var(--ink); font-size: 14px; line-height: 1.95; margin: 18px 0 26px; }

@media (max-width: 700px) {
  .area-groups { grid-template-columns: 1fr; }
  .area-map iframe { height: 320px; }
  .outside { padding: 30px 22px; }
}

/* ===== Voice (testimonials) page ===== */
.voice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.voice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.voice-card__stars { color: #f0a020; font-size: 16px; letter-spacing: 2px; }
.voice-card__tag {
  align-self: flex-start; margin-top: 14px; font-size: 11.5px; font-weight: 700; color: var(--navy);
  background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 4px 14px;
}
.voice-card__text { font-size: 13.5px; color: var(--ink); line-height: 1.95; margin: 16px 0 18px; flex: 1; }
.voice-card__author { font-size: 12.5px; color: var(--muted); font-weight: 700; padding-top: 14px; border-top: 1px solid var(--border); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; position: relative;
  font-weight: 700; color: var(--navy); font-size: 14.5px; line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; color: var(--line-green); font-family: var(--serif); margin-right: 10px; font-weight: 700; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--muted); transition: transform .25s; line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 22px 20px 44px; font-size: 13.5px; color: var(--ink); line-height: 1.9; }

/* ===== Staff cards ===== */
.staff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 920px; margin-inline: auto; }
.staff-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: transform .3s, box-shadow .3s;
}
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.staff-card__photo { width: 110px; height: 110px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); }
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__name { font-family: var(--serif); color: var(--navy); font-size: 18px; }
.staff-card__role { font-size: 12px; color: var(--line-green-d); font-weight: 700; margin: 6px 0 14px; }
.staff-card__text { font-size: 13px; color: var(--muted); line-height: 1.85; }

/* 3-column works grid (works page) */
.works-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .voice-cards { grid-template-columns: repeat(2, 1fr); }
  .staff-cards { grid-template-columns: 1fr; max-width: 360px; }
  .works-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .voice-cards { grid-template-columns: 1fr; }
  .works-grid--3 { grid-template-columns: 1fr; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .header__actions { display: none; }
  .reasons { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border); margin: 0;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 16px 24px; border-top: 1px solid var(--border); font-size: 15px; }
  .nav__link::after { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: 24px; }
  .hero__media { order: -1; }
  .hero__media > img { border-radius: 0 0 0 60px; aspect-ratio: 16/10; }
  .hero__badge { width: 150px; height: 150px; right: 8px; bottom: -24px; }
  .hero__badge-main { font-size: 17px; }
  .hero__scroll { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .contact__methods { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 24px; }
  .company__table th { width: 110px; padding: 14px; }
  .company__table td { padding: 14px; }
  .hero__title { line-height: 1.4; }
}
