@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@500;600;700&display=swap');

:root {
  /* 八咫烏テーマ: 墨(crow ink) × 朱(torii / 朝日) × 金 × 和紙 */
  --zn-ink: #221b15;
  --zn-muted: #6c6258;
  --zn-sumi: #16120f;
  --zn-green: #1d1812;        /* legacy name → 墨色 (primary dark) */
  --zn-green-soft: #f1e8d8;   /* 和紙 tint */
  --zn-shu: #b23a26;          /* 朱色 (vermilion accent) */
  --zn-shu-deep: #8f2c1d;
  --zn-gold: #bb8a2e;
  --zn-gold-soft: #f5ecd6;
  --zn-paper: #faf5ec;
  --zn-white: #fffdf8;
  --zn-line: #e6ddcc;
  --zn-content: 1040px;
  --zn-wide: 1200px;
  --zn-gutter: 20px;
  --zn-radius: 8px;
  --zn-shadow: 0 18px 44px rgba(22, 18, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zn-ink);
  background: var(--zn-paper);
  background-image: url('../img/washi-texture.svg');
  background-repeat: repeat;
  background-size: 300px 300px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.zn-banner-photo {
  position: relative;
  margin: 0 0 42px;
  height: 260px;
  overflow: hidden;
  --zn-parallax-offset: 0px;
}

.zn-banner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.9);
}

.zn-banner-photo--parallax {
  background: var(--zn-sumi);
}

.zn-banner-photo--parallax img {
  opacity: 0;
}

.zn-banner-photo--parallax::before {
  content: "";
  position: absolute;
  inset: -72px 0;
  z-index: 0;
  background-image: var(--zn-banner-photo);
  background-repeat: no-repeat;
  background-position: center var(--zn-banner-y, 40%);
  background-size: cover;
  transform: translate3d(0, var(--zn-parallax-offset), 0) scale(1.04);
  will-change: transform;
}

.zn-banner-photo--kumano {
  --zn-banner-photo: url("../img/photo-torii-trees.jpg");
  --zn-banner-y: 45%;
}

.zn-banner-photo--shrine {
  --zn-banner-photo: url("../img/photo-shrine-building.jpg");
  --zn-banner-y: 38%;
}

.zn-banner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 18, 15, 0.15) 0%, rgba(22, 18, 15, 0.55) 100%);
}

@media (width >= 48em) {
  .zn-banner-photo {
    height: 360px;
  }
}

@media (max-width: 47.9375em), (prefers-reduced-motion: reduce) {
  .zn-banner-photo {
    --zn-parallax-offset: 0px;
  }
}

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

input,
textarea,
button {
  font: inherit;
}

.zn-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--zn-gutter);
  border-bottom: 1px solid rgba(31, 36, 33, 0.08);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
}

.zn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.zn-brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(180, 138, 52, 0.55);
  border-radius: 50%;
  background: var(--zn-white);
  color: var(--zn-green);
  font-weight: 700;
}

.zn-brand__name,
.zn-brand__copy {
  display: block;
}

.zn-brand__name {
  font-weight: 700;
  line-height: 1.2;
}

.zn-brand__copy {
  color: var(--zn-muted);
  font-size: 12px;
  line-height: 1.4;
}

.zn-nav {
  display: none;
}

.zn-nav__cta,
.zn-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.zn-nav__cta {
  padding: 8px 18px;
  background: var(--zn-green);
  color: var(--zn-white);
}

.zn-nav [aria-current="page"] {
  color: var(--zn-green);
  font-weight: 700;
}

.zn-hero {
  position: relative;
  display: grid;
  gap: 28px;
  min-height: calc(100svh - 69px);
  padding: 56px var(--zn-gutter) 42px;
  overflow: hidden;
  background: var(--zn-paper) url("../img/hero-consultation.png") center / cover no-repeat;
}

.zn-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.62);
  content: "";
}

.zn-hero > * {
  position: relative;
}

.zn-hero__inner,
.zn-hero__panel,
.zn-container {
  width: min(100%, var(--zn-content));
  margin-inline: auto;
}

h1,
h2 {
  margin: 0;
  color: var(--zn-green);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

h1 {
  max-width: 820px;
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

.zn-hero__lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.9;
}

.zn-hero__note {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--zn-muted);
  font-size: 16px;
}

.zn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zn-button {
  border: 1px solid transparent;
  padding: 12px 22px;
  cursor: pointer;
}

.zn-button--primary {
  background: var(--zn-green);
  color: var(--zn-white);
  box-shadow: 0 10px 24px rgba(22, 63, 51, 0.18);
}

.zn-button--ghost {
  border-color: rgba(22, 63, 51, 0.28);
  background: rgba(255, 255, 255, 0.62);
  color: var(--zn-green);
}

.zn-hero__panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(180, 138, 52, 0.3);
  border-radius: var(--zn-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--zn-shadow);
}

.zn-panel__label {
  display: block;
  margin-bottom: 10px;
  color: var(--zn-green);
  font-weight: 700;
}

.zn-hero__panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--zn-muted);
}

.zn-page-hero {
  padding: 72px var(--zn-gutter) 56px;
  background: var(--zn-green-soft);
}

.zn-page-hero h1 {
  max-width: 880px;
}

.zn-page-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--zn-muted);
  font-size: 18px;
  line-height: 1.9;
}

.zn-section,
.zn-value,
.zn-contact {
  padding: 64px var(--zn-gutter);
}

.zn-section--tint {
  background: var(--zn-green-soft);
}

.zn-section--deep {
  background: var(--zn-green);
  color: var(--zn-white);
}

.zn-section--photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.zn-section--photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.86) 0%, rgba(22, 18, 15, 0.92) 100%);
}

.zn-section--photo-bg > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 47.9375em) {
  .zn-section--photo-bg {
    background-attachment: scroll;
  }
}

.zn-section--deep h2 {
  color: var(--zn-white);
}

.zn-two-column {
  display: grid;
  align-items: start;
  gap: 28px;
}

.zn-text-stack {
  display: grid;
  align-content: start;
  gap: 14px;
}

.zn-text-stack p,
.zn-profile p,
.zn-callout p,
.zn-contact p {
  margin: 0;
}

.zn-check-grid,
.zn-support-grid,
.zn-counter-grid,
.zn-principle-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.zn-check-grid p,
.zn-support-grid p,
.zn-counter-grid article,
.zn-principle-grid article {
  margin: 0;
  border: 1px solid var(--zn-line);
  border-radius: var(--zn-radius);
  background: var(--zn-white);
}

.zn-check-grid p,
.zn-support-grid p {
  position: relative;
  padding: 16px 16px 16px 42px;
}

.zn-check-grid p::before,
.zn-support-grid p::before {
  position: absolute;
  left: 16px;
  color: var(--zn-gold);
  content: "✓";
  font-weight: 700;
}

.zn-section--deep .zn-support-grid p {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.zn-value {
  background: var(--zn-green);
  color: var(--zn-white);
}

.zn-value h2 {
  max-width: 880px;
  color: var(--zn-white);
}

.zn-value__sub {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.zn-notes {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--zn-radius);
  background: rgba(255, 255, 255, 0.08);
}

.zn-notes p,
.zn-small {
  margin: 0;
  color: var(--zn-muted);
  font-size: 13px;
}

.zn-notes p {
  color: rgba(255, 255, 255, 0.78);
}

.zn-counter-grid article {
  padding: 20px;
}

.zn-principle-grid article {
  padding: 22px;
}

.zn-principle-grid h3,
.zn-scope-list h3 {
  margin: 0 0 10px;
  color: var(--zn-green);
  font-size: 18px;
  line-height: 1.45;
}

.zn-principle-grid p,
.zn-scope-list p {
  margin: 0;
  color: var(--zn-muted);
}

.zn-counter-grid strong,
.zn-counter-grid span {
  display: block;
}

.zn-counter-grid strong {
  color: var(--zn-green);
  font-size: 28px;
  line-height: 1.2;
}

.zn-counter-grid span {
  margin-top: 8px;
  color: var(--zn-muted);
}

.zn-profile {
  display: grid;
  gap: 24px;
}

.zn-profile__portrait {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border-radius: 50%;
  background: var(--zn-green);
  color: var(--zn-white);
  font-size: 36px;
  font-weight: 700;
}

.zn-profile h2,
.zn-profile p + p {
  margin-top: 14px;
}

.zn-profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.zn-profile-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(22, 63, 51, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--zn-green);
  font-size: 13px;
  font-weight: 700;
}

.zn-callout {
  padding: 28px;
  border: 1px solid rgba(180, 138, 52, 0.32);
  border-radius: var(--zn-radius);
  background: var(--zn-white);
  box-shadow: var(--zn-shadow);
}

.zn-callout strong {
  display: block;
  margin-top: 14px;
  color: var(--zn-green);
  font-size: 20px;
}

.zn-faq {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.zn-faq details {
  border: 1px solid var(--zn-line);
  border-radius: var(--zn-radius);
  background: var(--zn-white);
}

.zn-faq summary {
  min-height: 54px;
  padding: 14px 18px;
  color: var(--zn-green);
  cursor: pointer;
  font-weight: 700;
}

.zn-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--zn-muted);
}

.zn-contact {
  background: var(--zn-gold-soft);
}

.zn-contact__inner {
  display: grid;
  gap: 28px;
}

.zn-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(180, 138, 52, 0.32);
  border-radius: var(--zn-radius);
  background: var(--zn-white);
  box-shadow: var(--zn-shadow);
}

.zn-form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zn-form-steps li {
  min-height: 34px;
  border: 1px solid rgba(187, 138, 46, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(250, 245, 236, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.zn-form-steps li[aria-current="step"] {
  border-color: rgba(187, 138, 46, 0.68);
  background: rgba(187, 138, 46, 0.16);
  color: #f5ecd6;
}

.zn-form__screen {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.zn-form__screen[hidden] {
  display: none;
}

.zn-form label {
  display: grid;
  gap: 6px;
  color: var(--zn-green);
  font-weight: 700;
}

.zn-form__label-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zn-required {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--zn-shu);
  color: var(--zn-white);
  font-size: 11px;
  font-weight: 700;
}

.zn-form input,
.zn-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--zn-line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--zn-ink);
  background: #fff;
  font-size: 16px;
}

.zn-form textarea {
  resize: vertical;
}

.zn-confirm {
  border: 1px solid rgba(187, 138, 46, 0.24);
  border-radius: var(--zn-radius);
  padding: 18px;
  background: rgba(12, 9, 7, 0.28);
}

.zn-confirm h3 {
  margin: 0 0 14px;
  color: #f0e4c6;
  font-size: 18px;
  line-height: 1.45;
}

.zn-confirm dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.zn-confirm dt,
.zn-confirm dd {
  margin: 0;
  border-top: 1px solid rgba(187, 138, 46, 0.18);
  padding: 10px 0;
}

.zn-confirm dt {
  color: rgba(250, 245, 236, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.zn-confirm dd {
  color: var(--zn-paper);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.zn-turnstile {
  min-height: 65px;
}

.zn-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zn-form__actions .zn-button {
  flex: 1 1 180px;
}

.zn-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.zn-consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
  color: var(--zn-muted) !important;
  font-weight: 400 !important;
}

.zn-consent input {
  width: 18px;
  min-height: 18px;
}

.zn-consent a {
  color: var(--zn-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zn-form__status {
  min-height: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.zn-form__status:empty {
  display: none;
}

.zn-form__status--success,
.zn-form__status--error {
  padding: 12px 14px;
}

.zn-form__status--success {
  border-color: rgba(69, 128, 89, 0.32);
  background: rgba(69, 128, 89, 0.12);
  color: #f1fff5;
}

.zn-form__status--error {
  border-color: rgba(178, 58, 38, 0.42);
  background: rgba(178, 58, 38, 0.14);
  color: #fff1ec;
}

.zn-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.zn-footer {
  padding: 28px var(--zn-gutter);
  background: var(--zn-green);
  color: var(--zn-white);
  text-align: center;
}

.zn-footer p {
  margin: 0;
}

.zn-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 14px;
  font-size: 13px;
}

.zn-footer__nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zn-footer__nav [aria-current="page"] {
  color: var(--zn-white);
  font-weight: 700;
}

.zn-footer .zn-small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.zn-scope-list {
  display: grid;
  gap: 12px;
}

.zn-scope-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--zn-radius);
  background: rgba(255, 255, 255, 0.08);
}

.zn-scope-list h3 {
  color: var(--zn-white);
}

.zn-scope-list p {
  color: rgba(255, 255, 255, 0.78);
}

.zn-contact--compact {
  padding-block: 64px;
}

.zn-legal-content {
  max-width: 860px;
}

.zn-legal-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.zn-legal-content h2:first-child {
  margin-top: 0;
}

.zn-legal-content p,
.zn-legal-content li {
  color: var(--zn-muted);
}

.zn-legal-content ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.zn-info-table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.zn-info-table th,
.zn-info-table td {
  display: block;
  border-top: 1px solid var(--zn-line);
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

.zn-info-table th {
  color: var(--zn-green);
  font-weight: 700;
}

.zn-info-table td {
  color: var(--zn-muted);
}

@media (width >= 48em) {
  :root {
    --zn-gutter: 32px;
  }

  body {
    font-size: 16px;
  }

  .zn-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--zn-muted);
    font-size: 14px;
  }

  .zn-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
    min-height: 680px;
    padding-top: 92px;
  }

  .zn-hero__inner,
  .zn-hero__panel {
    width: 100%;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .zn-section,
  .zn-value,
  .zn-contact {
    padding-block: 88px;
  }

  .zn-two-column,
  .zn-contact__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .zn-check-grid,
  .zn-support-grid,
  .zn-counter-grid,
  .zn-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zn-profile {
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
  }

  .zn-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
  }

  .zn-form__screen {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zn-form__wide {
    grid-column: 1 / -1;
  }

  .zn-info-table th,
  .zn-info-table td {
    display: table-cell;
    padding: 18px 0;
  }

  .zn-info-table th {
    width: 220px;
    padding-right: 28px;
  }
}

@media (width >= 80em) {
  :root {
    --zn-gutter: 40px;
  }

  .zn-site-header {
    padding-inline: 40px;
  }

  h1 {
    font-size: 60px;
  }

  .zn-support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .zn-counter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .zn-principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================================
   八咫烏（やたがらす）テーマ — 導きの神鳥
   ============================================================ */

h1,
h2,
h3,
.zn-brand__name,
.zn-counter-grid strong,
.zn-callout strong,
.zn-panel__label,
.zn-info-table th {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.zn-brand__name {
  letter-spacing: 0.04em;
}

/* 八咫烏の紋章マーク（日輪＋三本足烏） */
.zn-brand__mark {
  border: none;
  background: transparent;
  color: var(--zn-sumi);
  padding: 0;
  overflow: visible;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(22, 18, 15, 0.18);
}

.zn-brand__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* CTA は朱色で */
.zn-button {
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.zn-nav__cta,
.zn-button--primary {
  background: var(--zn-shu);
  box-shadow: 0 10px 24px rgba(178, 58, 38, 0.26);
}

.zn-nav__cta:hover,
.zn-button--primary:hover {
  background: var(--zn-shu-deep);
}

.zn-button--ghost {
  border-color: rgba(178, 58, 38, 0.42);
  color: var(--zn-shu);
}

.zn-button--ghost:hover {
  background: var(--zn-white);
}

.zn-check-grid p::before,
.zn-support-grid p::before {
  color: var(--zn-shu);
}

/* プロフィールの頭文字アイコンに金の輪 */
.zn-profile__portrait {
  border: 2px solid var(--zn-gold);
  box-shadow: 0 0 0 4px rgba(187, 138, 46, 0.14);
}

/* ヒーロー — 墨色の暁に昇る朝日と導きの烏 */
.zn-hero {
  background:
    radial-gradient(120% 92% at 82% 16%, rgba(196, 86, 44, 0.55) 0%, rgba(22, 18, 15, 0) 48%),
    linear-gradient(180deg, rgba(20, 16, 13, 0.82) 0%, rgba(20, 16, 13, 0.7) 52%, rgba(20, 16, 13, 0.9) 100%),
    var(--zn-sumi) url("../img/hero-consultation.png") center / cover no-repeat;
}

.zn-hero::before {
  display: none;
}

.zn-hero::after {
  content: "";
  position: absolute;
  top: 7%;
  right: 6%;
  width: min(40vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(246, 217, 138, 0.92) 0%, rgba(224, 164, 59, 0.5) 40%, rgba(178, 58, 38, 0) 72%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.zn-hero__inner {
  z-index: 1;
}


.zn-hero h1 {
  color: var(--zn-paper);
}

.zn-hero__lead {
  color: rgba(250, 245, 236, 0.92);
}

.zn-hero__note {
  color: rgba(250, 245, 236, 0.72);
}

.zn-hero__panel {
  z-index: 1;
  border-color: rgba(187, 138, 46, 0.45);
  background: rgba(28, 23, 19, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.zn-hero__panel .zn-panel__label {
  color: var(--zn-gold);
}

.zn-hero__panel ol {
  color: rgba(250, 245, 236, 0.82);
}

/* 暗色セクションに金のかすかな差し込み光 */
.zn-section--deep,
.zn-value {
  background-image: radial-gradient(120% 80% at 88% 0%, rgba(187, 138, 46, 0.16) 0%, rgba(0, 0, 0, 0) 55%);
}

/* ページ下層ヒーロー(各法務ページ)も和紙トーンに八咫烏の朱差し */
.zn-page-hero {
  border-bottom: 3px solid var(--zn-shu);
}

/* アクセシビリティ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--zn-shu);
  outline-offset: 2px;
  border-radius: 4px;
}

.zn-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.zn-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   Mockup refinement — Yatagarasu premium dark
   ============================================================ */

/* --- Header: dark, light brand + full nav --- */
.zn-site-header {
  background: rgba(18, 14, 11, 0.86);
  border-bottom: 1px solid rgba(187, 138, 46, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.zn-header-hidden .zn-site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.zn-home .zn-site-header {
  position: fixed;
  right: 0;
  left: 0;
}

.zn-home .zn-hero {
  min-height: 100svh;
  padding-top: 42px;
}

.zn-brand__name {
  color: var(--zn-paper);
}

.zn-brand__copy {
  color: rgba(250, 245, 236, 0.6);
}

.zn-nav {
  color: rgba(250, 245, 236, 0.82);
}

.zn-nav a {
  transition: color 0.2s ease;
}

.zn-nav a:hover,
.zn-nav [aria-current="page"] {
  color: var(--zn-gold);
}

/* --- Hero: sun + crow + embers --- */
.zn-hero {
  background: radial-gradient(150% 130% at 68% 28%, #2a1d12 0%, #19120c 46%, #0c0906 100%);
  color: var(--zn-paper);
}

.zn-hero::after {
  display: none;
}

.zn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.zn-hero__sun {
  position: absolute;
  top: -8%;
  right: 0%;
  width: min(72vw, 660px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(247, 222, 150, 0.95) 0%, rgba(216, 152, 54, 0.5) 33%, rgba(166, 74, 32, 0.16) 56%, rgba(0, 0, 0, 0) 70%);
  filter: blur(3px);
}

.zn-hero__crow {
  position: absolute;
  top: 4%;
  right: 2%;
  width: min(78vw, 680px);
  height: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(202, 162, 74, 0.28));
}

.zn-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0.85;
  filter: saturate(1.05) contrast(1.08) brightness(1.08);
  animation: znPhotoDrift 18s ease-in-out infinite;
}

@keyframes znPhotoDrift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.04) translateY(-8px); }
}

.zn-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.25) 0%, rgba(22, 18, 15, 0.55) 70%, rgba(22, 18, 15, 0.88) 100%),
    linear-gradient(100deg, rgba(22, 18, 15, 0.92) 0%, rgba(22, 18, 15, 0.62) 42%, rgba(22, 18, 15, 0.1) 78%);
}

@media (max-width: 47.9375em) {
  .zn-hero__photo-overlay {
    background:
      linear-gradient(180deg, rgba(22, 18, 15, 0.3) 0%, rgba(22, 18, 15, 0.65) 60%, rgba(22, 18, 15, 0.94) 100%),
      linear-gradient(100deg, rgba(22, 18, 15, 0.85) 0%, rgba(22, 18, 15, 0.55) 100%);
  }
}

.zn-hero h1 {
  max-width: none;
  color: var(--zn-paper);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.28;
}

.zn-hero__logo {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}

.zn-ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe9a8 0%, #caa24a 70%, rgba(202, 162, 74, 0) 100%);
  box-shadow: 0 0 8px 2px rgba(202, 162, 74, 0.45);
  opacity: 0;
  animation: znFloat 8s linear infinite;
}

.zn-ember--1 { left: 12%; bottom: 6%; animation-delay: 0s; }
.zn-ember--2 { left: 30%; bottom: 12%; animation-delay: 1.6s; }
.zn-ember--3 { left: 52%; bottom: 4%; animation-delay: 3.1s; }
.zn-ember--4 { left: 68%; bottom: 16%; animation-delay: 4.4s; }
.zn-ember--5 { left: 80%; bottom: 8%; animation-delay: 2.3s; width: 3px; height: 3px; }
.zn-ember--6 { left: 22%; bottom: 20%; animation-delay: 5.5s; width: 5px; height: 5px; }

@keyframes znFloat {
  0% { transform: translateY(24px) scale(0.8); opacity: 0; }
  12% { opacity: 0.95; }
  85% { opacity: 0.55; }
  100% { transform: translateY(-200px) scale(1); opacity: 0; }
}

/* --- Support: gold line-icon cards --- */
.zn-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zn-support-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(187, 138, 46, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.zn-support-grid article:hover {
  border-color: rgba(187, 138, 46, 0.55);
  background: rgba(187, 138, 46, 0.08);
}

.zn-support-grid__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  color: var(--zn-gold);
  border: 1px solid rgba(187, 138, 46, 0.4);
  background: rgba(187, 138, 46, 0.1);
}

.zn-support-grid__icon svg {
  width: 22px;
  height: 22px;
}

.zn-support-grid article p {
  margin: 0;
  color: rgba(250, 245, 236, 0.92);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
}

/* --- Decorative gold streaks (profile) --- */
.zn-has-streak {
  position: relative;
  overflow: hidden;
}

/* gold light streaks on profile */
.zn-has-streak::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 92% 60%, rgba(202, 162, 74, 0.18) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(115deg, rgba(0, 0, 0, 0) 60%, rgba(202, 162, 74, 0.1) 72%, rgba(0, 0, 0, 0) 80%);
}

.zn-has-streak > * {
  position: relative;
  z-index: 1;
}

/* --- Pricing card --- */
.zn-pricing .zn-text-stack {
  margin-top: 18px;
}

.zn-price-card {
  align-self: center;
  padding: 36px 32px;
  border: 1px solid rgba(187, 138, 46, 0.4);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf8 0%, #f6ecd6 100%);
  box-shadow: var(--zn-shadow);
  text-align: center;
}

.zn-price-card__label {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--zn-sumi);
  color: #f0e4c6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.zn-price-card__amount {
  margin: 20px 0 0;
  color: var(--zn-shu);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
}

.zn-price-card__amount strong {
  font-size: 46px;
  line-height: 1;
}

.zn-price-card__note {
  margin: 14px 0 0;
  color: var(--zn-muted);
  font-size: 13px;
}

/* --- FAQ + Contact (combined dark section) --- */
.zn-faq-contact__grid {
  display: grid;
  gap: 36px;
}

.zn-faq-contact__grid--solo {
  max-width: 640px;
  margin: 0 auto;
}

.zn-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
}

.zn-faq summary::-webkit-details-marker {
  display: none;
}

.zn-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.zn-faq details[open] summary::after {
  transform: rotate(225deg);
}

.zn-faq-contact .zn-faq details {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(187, 138, 46, 0.22);
}

.zn-faq-contact .zn-faq summary {
  color: #f4ecd8;
}

.zn-faq-contact .zn-faq details p {
  color: rgba(250, 245, 236, 0.74);
}

.zn-contact-block__lead {
  margin: 14px 0 22px;
  color: rgba(250, 245, 236, 0.82);
}

.zn-faq-contact .zn-form {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(187, 138, 46, 0.24);
  box-shadow: none;
}

.zn-faq-contact .zn-form label {
  color: #f0e4c6;
}

.zn-faq-contact .zn-form input,
.zn-faq-contact .zn-form textarea {
  background: rgba(12, 9, 7, 0.5);
  border-color: rgba(187, 138, 46, 0.3);
  color: var(--zn-paper);
}

.zn-faq-contact .zn-form input::placeholder,
.zn-faq-contact .zn-form textarea::placeholder {
  color: rgba(250, 245, 236, 0.4);
}

.zn-faq-contact .zn-consent {
  color: rgba(250, 245, 236, 0.72) !important;
}

.zn-faq-contact .zn-consent a {
  color: var(--zn-gold);
}

/* --- Profile portrait emblem --- */
.zn-profile__portrait {
  overflow: hidden;
  background: rgba(187, 138, 46, 0.08);
  border: 2px solid var(--zn-gold);
  box-shadow: 0 0 0 5px rgba(187, 138, 46, 0.12);
}

.zn-profile__portrait svg {
  width: 80%;
  height: 80%;
}

.zn-section--deep .zn-profile-list span {
  border-color: rgba(187, 138, 46, 0.4);
  background: rgba(187, 138, 46, 0.12);
  color: #f0e4c6;
}

/* --- Footer --- */
.zn-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  background: #0e0b08;
  border-top: 1px solid rgba(187, 138, 46, 0.2);
}

.zn-footer__brand {
  justify-content: center;
  gap: 12px;
}

.zn-copyright {
  color: rgba(250, 245, 236, 0.5);
  font-size: 12px;
}

/* --- Responsive --- */
@media (width >= 48em) {
  .zn-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zn-faq-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
  }

  .zn-faq-contact__grid--solo {
    grid-template-columns: 1fr;
  }
}

@media (width >= 80em) {
  .zn-support-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* fix: neutralize legacy support-grid <p> styling inside icon cards */
.zn-support-grid article p {
  border: none;
  background: transparent;
  padding: 0;
}

.zn-support-grid article p::before {
  content: none;
}

.zn-section--deep .zn-support-grid article p {
  background: transparent;
  border: none;
}

/* hero without panel/actions: single-column, vertically centered */
.zn-hero {
  align-items: center;
}

@media (width >= 48em) {
  .zn-hero {
    grid-template-columns: minmax(0, 720px);
    align-content: center;
  }
}

/* --- Hero dynamic animation --- */
.zn-hero {
  isolation: isolate;
}

/* breathing dawn glow */
.zn-hero__glow {
  position: absolute;
  top: 14%;
  right: 4%;
  width: min(72vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(247, 222, 150, 0.5) 0%, rgba(216, 152, 54, 0.26) 38%, rgba(166, 74, 32, 0) 68%);
  filter: blur(8px);
  transform-origin: center;
  animation: znDawn 9s ease-in-out infinite;
}

@keyframes znDawn {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.72; }
  50% { transform: scale(1.12) translateY(-12px); opacity: 1; }
}

/* slowly rotating god rays */
.zn-hero__rays {
  position: absolute;
  top: -8%;
  left: 72%;
  width: 170vmax;
  height: 170vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(202, 162, 74, 0) 0deg,
    rgba(202, 162, 74, 0.07) 3deg,
    rgba(202, 162, 74, 0) 7deg,
    rgba(202, 162, 74, 0) 15deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0%, rgba(0, 0, 0, 0.45) 34%, transparent 60%);
  mask: radial-gradient(circle at 50% 50%, #000 0%, rgba(0, 0, 0, 0.45) 34%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: znRays 64s linear infinite;
}

@keyframes znRays {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* staggered text entrance */
.zn-hero__inner > *:not(h1) {
  animation: znRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.zn-hero__inner .zn-hero__lead { animation-delay: 0.34s; }
.zn-hero__inner .zn-hero__note { animation-delay: 0.48s; }

.zn-hero h1 {
  animation: znRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.18s both,
             znGlow 5s ease-in-out 1.2s infinite;
}

/* --- Hero budget badge --- */
.zn-budget-badge {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: min(100%, 560px);
  margin: 18px 0 22px;
  padding: 18px 26px;
  border: 1px solid rgba(187, 138, 46, 0.45);
  border-radius: 14px 14px 14px 4px;
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.92), rgba(245, 236, 214, 0.78));
  box-shadow: 0 12px 30px rgba(22, 18, 15, 0.18);
  transform: rotate(-0.6deg);
}

#znBudgetBadge {
  animation: znBadgeRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.26s both;
}

@keyframes znBadgeRise {
  from { opacity: 0; transform: rotate(-0.6deg) translateY(24px); }
  to { opacity: 1; transform: rotate(-0.6deg) translateY(0); }
}

.zn-budget-badge__label {
  display: block;
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--zn-shu-deep);
  letter-spacing: 0.02em;
}

.zn-budget-badge__amount {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.3rem, 5.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--zn-gold);
}

.zn-budget-badge__unit {
  margin-left: 6px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--zn-muted);
}

.zn-budget-badge__sub {
  margin: 4px 0 0;
  font-size: 1.12rem;
  color: var(--zn-ink);
}

.zn-budget-badge__calc {
  margin: 10px 0 0;
  font-size: 0.74rem;
  color: var(--zn-muted);
  border-top: 1px solid rgba(187, 138, 46, 0.25);
  padding-top: 8px;
}

/* --- Fee structure section --- */
.zn-fee-lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--zn-muted);
}

.zn-section--deep .zn-fee-lead {
  color: rgba(255, 255, 255, 0.78);
}

.zn-fee-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

@media (width >= 48em) {
  .zn-fee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zn-fee-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--zn-line);
  border-radius: var(--zn-radius);
  background: var(--zn-white);
}

.zn-section--deep .zn-fee-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.zn-fee-card--optional {
  border-style: dashed;
}

.zn-fee-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--zn-gold), var(--zn-shu));
  color: var(--zn-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.zn-section--deep .zn-fee-card__step {
  color: var(--zn-sumi);
}

.zn-fee-card h3 {
  margin: 0 0 12px;
  color: var(--zn-green);
  font-size: 19px;
  line-height: 1.5;
}

.zn-section--deep .zn-fee-card h3 {
  color: var(--zn-white);
}

.zn-fee-card__price {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  color: var(--zn-gold);
}

.zn-fee-card__price strong {
  font-size: 1.5rem;
}

.zn-fee-card__note {
  margin: 0;
  color: var(--zn-muted);
  font-size: 16px;
  line-height: 1.7;
}

.zn-section--deep .zn-fee-card__note {
  color: rgba(255, 255, 255, 0.7);
}

.zn-fee-disclaimer {
  margin-top: 18px;
}

/* --- Usage flow section --- */
.zn-flow-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.zn-flow-step {
  position: relative;
  padding: 0 0 28px 40px;
  border-left: 2px solid var(--zn-line);
}

.zn-flow-step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.zn-flow-step__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.zn-flow-step__num {
  position: absolute;
  left: -15px;
  top: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--zn-gold);
  color: var(--zn-white);
  font-size: 13px;
  font-weight: 700;
}

.zn-flow-step h3 {
  margin: 0;
  color: var(--zn-green);
  font-size: 18px;
  line-height: 1.5;
}

.zn-flow-step__tag {
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid var(--zn-line);
  border-radius: 999px;
  color: var(--zn-muted);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.zn-flow-step p {
  margin: 10px 0 0;
  color: var(--zn-muted);
  font-size: 16px;
  line-height: 1.8;
}

.zn-flow-step__result {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.zn-flow-step__result--reward {
  background: var(--zn-gold-soft);
  color: var(--zn-shu-deep);
}

.zn-flow-step__result--paid {
  background: var(--zn-green-soft);
  color: var(--zn-muted);
}

/* --- Value: Goodstack tool list --- */
.zn-value-tools__lead {
  max-width: 760px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.zn-value-tools {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

@media (width >= 48em) {
  .zn-value-tools {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.zn-value-tools--dense {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (width >= 36em) {
  .zn-value-tools--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (width >= 64em) {
  .zn-value-tools--dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.zn-value-tools--dense .zn-value-tools__card {
  padding: 16px;
}

.zn-value-tools--dense .zn-value-tools__brand {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.zn-value-tools--dense .zn-value-tools__card li {
  font-size: 12px;
}

.zn-value-tools__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zn-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.zn-tag--free {
  background: #f6d98a;
  color: #1d1812;
  box-shadow: 0 0 0 1px rgba(246, 217, 138, 0.45), 0 6px 14px rgba(0, 0, 0, 0.18);
}

.zn-tag--premium {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.zn-value-tools__more {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.zn-value-tools__card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--zn-radius);
  background: rgba(255, 255, 255, 0.08);
}

.zn-value-tools__brand {
  display: block;
  margin-bottom: 12px;
  color: var(--zn-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.zn-value-tools__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zn-value-tools__card li {
  margin: 0 0 8px;
  padding-left: 16px;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

.zn-value-tools__card li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--zn-gold);
}

.zn-value-tools__card li.zn-value-tools__note {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.zn-value-tools__card li.zn-value-tools__note::before {
  content: "";
}

.zn-value-tools__disclaimer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes znRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes znGlow {
  0%, 100% { text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55); }
  50% { text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55), 0 0 28px rgba(247, 222, 150, 0.38); }
}

/* --- Brush wordmark logos (社のミカタ) --- */
.zn-brand__title {
  display: block;
  width: 92px;
  height: auto;
  margin-bottom: 4px;
}

.zn-footer__brand .zn-brand__title {
  width: 108px;
}

@media (width >= 48em) {
  .zn-brand__title {
    width: 104px;
  }
}
