:root {
  --bg: #fbfaf4;
  --bg-plain: #fffdfa;
  --ink: #222620;
  --muted: #667064;
  --line: #d8ded1;
  --green: #426b48;
  --green-dark: #244331;
  --teal: #1f5f66;
  --coral: #c86f53;
  --gold: #a7782b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(31, 47, 35, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #f5f8f1 44%, #ffffff 100%);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 208px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(22, 51, 38, 0.22), 0 0 0 1px rgba(36, 67, 49, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(22, 51, 38, 0.28), 0 0 0 1px rgba(36, 67, 49, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  background: rgba(66, 107, 72, 0.11);
}

.section,
.section-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-band {
  border: 1px solid rgba(66, 107, 72, 0.16);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 106px);
  padding: 52px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.13;
  font-weight: 800;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.1rem;
  line-height: 1.26;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.lead {
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.9;
}

.hero-actions,
.sns-actions,
.panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.button.primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(36, 67, 49, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
}

.button.full {
  width: 100%;
}

.inline-payment {
  margin-top: 10px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.quick-facts div {
  min-height: 94px;
  padding: 14px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.72);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 1.28rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(26, 49, 36, 0.22);
}

.media-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(240px, calc(100% - 44px));
  padding: 16px;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(66, 107, 72, 0.2);
  border-radius: var(--radius);
}

.media-note span,
.media-note strong {
  display: block;
}

.media-note span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.media-note strong {
  color: var(--teal);
  font-size: 1.32rem;
}

.intro-grid,
.split-section,
.register-section,
.admin-hero {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 36px;
  align-items: start;
}

.concern-list,
.plan-grid,
.sns-grid,
.sns-admin-grid,
.admin-stats {
  display: grid;
  gap: 14px;
}

.concern-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concern-list article,
.plan-card,
.sns-grid article,
.sns-admin-grid article,
.admin-stats article,
.admin-panel,
.admin-side,
.booking-box,
.payment-box,
.register-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.concern-list article,
.sns-grid article,
.sns-admin-grid article,
.admin-stats article {
  padding: 18px;
}

.concern-list p,
.sns-grid p,
.sns-admin-grid p,
.plan-card p,
.section-heading p,
.split-copy p,
.register-copy p,
.admin-panel p,
.admin-side li {
  color: var(--muted);
}

.split-section {
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-table {
  display: grid;
  gap: 10px;
}

.route-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.route-table span:first-child {
  color: var(--green-dark);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 306px;
  padding: 22px;
}

.plan-price {
  margin: 20px 0;
}

.plan-price strong,
.plan-price span {
  display: block;
}

.plan-price strong {
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1.2;
}

.plan-price span {
  color: var(--gold);
  font-weight: 800;
}

.addon-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.addon-strip article {
  padding: 18px;
  border-left: 5px solid var(--teal);
  background: #f3fbfb;
}

.addon-strip span,
.addon-strip strong {
  display: block;
}

.addon-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.addon-strip strong {
  color: var(--teal);
  font-size: 1.34rem;
}

.register-section {
  align-items: stretch;
}

.booking-box,
.payment-box {
  padding: 18px;
  margin-top: 22px;
}

.booking-box small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.payment-waiting {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 900;
}

.register-form,
.admin-panel,
.admin-side {
  padding: 24px;
}

.form-intro {
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f3fbfb;
}

.form-intro h3 {
  margin-bottom: 5px;
  color: var(--green-dark);
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  font-size: 0.96rem;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-line input {
  width: 18px;
  margin-top: 5px;
}

.form-message {
  min-height: 28px;
  margin: 12px 0 0;
  color: var(--teal);
  font-weight: 900;
}

.sns-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sns-grid span,
.sns-admin-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.sns-actions {
  margin-top: 22px;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 30px auto 0;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-header {
  position: relative;
}

.admin-hero {
  align-items: center;
  min-height: 280px;
  padding: 40px;
  border-radius: var(--radius);
}

.admin-hero h1 {
  font-size: 2.6rem;
}

.admin-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-stats article {
  min-height: 128px;
}

.admin-stats span,
.admin-stats strong {
  display: block;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 900;
}

.admin-stats strong {
  color: var(--green-dark);
  font-size: 2.3rem;
  line-height: 1.1;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 22px auto 80px;
  align-items: start;
}

.admin-side {
  position: sticky;
  top: 92px;
}

.admin-side ol {
  padding-left: 20px;
}

.admin-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.admin-panel {
  min-width: 0;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.table-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green-dark);
  font-size: 0.78rem;
}

td small {
  color: var(--muted);
}

.empty-cell {
  color: var(--muted);
  text-align: center;
}

.status-select,
.booking-status-select {
  min-width: 116px;
}

.pricing-editor {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding: 0 6px;
  color: var(--green-dark);
  font-weight: 900;
}

.payment-editor,
.booking-editor {
  display: grid;
  gap: 14px;
}

.sns-admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .intro-grid,
  .split-section,
  .register-section,
  .admin-hero,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 30px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: 380px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .concern-list,
  .plan-grid,
  .sns-grid,
  .quick-facts,
  .pricing-editor,
  .sns-admin-grid,
  .admin-stats,
  .addon-strip {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .section,
  .section-band,
  .site-header,
  .site-footer,
  .admin-layout {
    width: min(100% - 22px, var(--max));
  }

  .hero,
  .admin-hero,
  .register-form,
  .admin-panel,
  .admin-side {
    padding: 20px;
  }

  h1 {
    font-size: 2.04rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-media img {
    height: 280px;
  }

  .media-note {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .route-table div,
  .form-row {
    grid-template-columns: 1fr;
  }
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(31, 95, 102, 0.25);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(243, 251, 251, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-set {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.service-summary,
.service-flow article,
.location-box article,
.blog-card,
.blog-admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.service-summary {
  padding: 24px;
  border-left: 5px solid var(--coral);
}

.service-summary span,
.plan-label,
.blog-card span,
.blog-admin-card span,
.location-box span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-summary small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-flow article {
  padding: 20px;
}

.service-flow article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
}

.service-flow p,
.location-box p,
.blog-card p,
.blog-admin-card p {
  color: var(--muted);
}

.pricing-section .plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card.featured {
  border-color: rgba(31, 95, 102, 0.35);
  box-shadow: 0 18px 42px rgba(31, 95, 102, 0.12);
}

.location-box {
  display: grid;
  gap: 14px;
}

.location-box article {
  padding: 20px;
}

.location-box strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  padding: 22px;
}

.blog-card details {
  margin-top: 12px;
}

.blog-card summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}

.empty-blog {
  grid-column: 1 / -1;
}

.blog-editor {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.blog-admin-list {
  display: grid;
  gap: 12px;
}

.blog-admin-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
}

.blog-admin-card .button {
  flex: 0 0 auto;
}

@media (max-width: 920px) {
  .service-set,
  .service-flow,
  .pricing-section .plan-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .blog-admin-card {
    display: grid;
  }
}

.button.member-login-link {
  border-color: rgba(31, 95, 102, 0.38);
  background: #e6f6f8;
  color: var(--teal);
}

.button.compact {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 0.82rem;
}

.member-login-card {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.member-login-card > p,
.member-reservation-head span {
  color: var(--muted);
}

.member-login-form,
.member-reservation-form {
  display: grid;
  gap: 12px;
}

.member-reservation {
  display: grid;
  gap: 14px;
}

.member-reservation[hidden] {
  display: none;
}

.member-reservation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-left: 4px solid var(--teal);
  background: #f3fbfb;
}

.member-reservation-head span,
.member-reservation-head strong {
  display: block;
}

.member-reservation-head strong {
  color: var(--green-dark);
}

@media (max-width: 560px) {
  .hero-actions .button {
    width: 100%;
  }

  .member-reservation-head {
    align-items: stretch;
    flex-direction: column;
  }
}
.evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 58px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(216, 222, 209, 0.82);
  border-bottom: 1px solid rgba(216, 222, 209, 0.82);
}

.evidence-copy > p {
  max-width: 650px;
  color: var(--muted);
}

.evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.evidence-metrics article {
  min-height: 188px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.evidence-metrics strong,
.evidence-metrics span {
  display: block;
}

.evidence-metrics strong {
  color: var(--green-dark);
  font-size: 1.62rem;
  line-height: 1.15;
}

.evidence-metrics span {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.evidence-metrics p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.evidence-explorer {
  display: grid;
  gap: 16px;
}

.evidence-flow-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(31, 95, 102, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f3fbfb, #fffdfa 64%);
  box-shadow: 0 18px 44px rgba(26, 49, 36, 0.1);
}

.evidence-flow-map article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(66, 107, 72, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.evidence-flow-map span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
}

.evidence-flow-map strong {
  color: var(--green-dark);
  font-size: 1.14rem;
}

.evidence-flow-map p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.evidence-flow-map i {
  position: relative;
  align-self: center;
  height: 2px;
  background: rgba(31, 95, 102, 0.38);
}

.evidence-flow-map i::after {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(31, 95, 102, 0.48);
  border-right: 2px solid rgba(31, 95, 102, 0.48);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.evidence-step-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.evidence-step-tabs button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.evidence-step-tabs button:hover,
.evidence-step-tabs button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 95, 102, 0.45);
  outline: none;
}

.evidence-step-tabs button.is-active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.evidence-detail {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(31, 95, 102, 0.22);
  border-radius: var(--radius);
  background: #f3fbfb;
}

.evidence-detail span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.evidence-detail h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.evidence-detail p {
  color: var(--muted);
}

.evidence-detail small {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 95, 102, 0.18);
  color: var(--green-dark);
  font-weight: 800;
}

.evidence-source-list {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.evidence-source-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.evidence-source-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.evidence-source-list a {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
}
@media (max-width: 560px) {
  .evidence-section {
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .evidence-metrics article {
    min-height: auto;
  }

  .evidence-detail {
    min-height: auto;
    padding: 18px;
  }
}
@media (max-width: 1120px) {
  .evidence-section {
    grid-template-columns: 1fr;
  }

  .evidence-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .evidence-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .evidence-metrics,
  .evidence-step-tabs {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .evidence-flow-map {
    grid-template-columns: 1fr;
  }

  .evidence-flow-map i {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .evidence-flow-map i::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }
}
/* Simple gentle design pass */
:root {
  --bg: #fdfcf8;
  --bg-plain: #ffffff;
  --ink: #1f271f;
  --muted: #66726a;
  --line: #e0e5dc;
  --green: #3f6b4d;
  --green-dark: #213f2f;
  --teal: #28656a;
  --coral: #c97b62;
  --gold: #9a742f;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: #f6faf4;
  --highlight: rgba(201, 123, 98, 0.22);
  --focus: rgba(63, 107, 77, 0.16);
  --shadow: 0 18px 46px rgba(33, 63, 47, 0.08);
  --shadow-soft: 0 10px 28px rgba(33, 63, 47, 0.06);
}

body {
  background: linear-gradient(180deg, #fdfcf8 0%, #f8fbf5 52%, #ffffff 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

.site-header {
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(224, 229, 220, 0.8);
  background: rgba(253, 252, 248, 0.88);
  backdrop-filter: blur(16px);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(33, 63, 47, 0.16);
}

.brand strong {
  color: var(--green-dark);
  font-weight: 850;
}

.brand small {
  margin-top: 2px;
  font-size: 0.73rem;
}

.nav a {
  padding: 7px 9px;
  border-radius: 6px;
  color: #263f31;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(63, 107, 77, 0.09);
  outline: none;
}

.section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.section-band {
  border-color: rgba(224, 229, 220, 0.92);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.hero {
  min-height: min(820px, calc(100vh - 82px));
  padding: clamp(28px, 5vw, 64px);
  gap: clamp(26px, 5vw, 64px);
}

.hero-copy {
  max-width: 660px;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11.5em;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 1.08;
  font-weight: 850;
}

h2 {
  font-size: clamp(1.72rem, 3.2vw, 2.55rem);
  line-height: 1.2;
  font-weight: 850;
}

h3 {
  font-weight: 850;
}

.hero h1 .no-break {
  position: relative;
  display: inline-block;
  white-space: normal;
}

.hero h1 .no-break::after,
p strong::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.34em;
  border-radius: 999px;
  background: var(--highlight);
  content: "";
  z-index: -1;
}

.lead {
  max-width: 36em;
  color: #3f4e43;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  line-height: 1.96;
}

p strong {
  position: relative;
  display: inline;
  color: var(--green-dark);
  font-weight: 850;
  z-index: 0;
}

.eyebrow {
  margin-bottom: 16px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(201, 123, 98, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 850;
  box-shadow: none;
}

.button.primary {
  background: var(--green-dark);
  box-shadow: 0 12px 24px rgba(33, 63, 47, 0.16);
}

.button.secondary,
.button.member-login-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 12px 26px rgba(33, 63, 47, 0.1);
}

.quick-facts div,
.plan-card,
.sns-grid article,
.admin-stats article,
.admin-panel,
.admin-side,
.booking-box,
.payment-box,
.register-form,
.faq-list details,
.service-summary,
.service-flow article,
.location-box article,
.blog-card,
.blog-admin-card,
.member-login-card,
.evidence-metrics article,
.evidence-detail,
.evidence-source-list {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.quick-facts div {
  position: relative;
  min-height: 86px;
  padding: 18px 16px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-facts div::before {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(201, 123, 98, 0.75);
  content: "";
}

.quick-facts dt {
  padding-top: 9px;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.quick-facts dd {
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.25;
}

.hero-media img {
  height: clamp(360px, 45vw, 540px);
  border: 1px solid rgba(224, 229, 220, 0.9);
  box-shadow: 0 22px 48px rgba(33, 63, 47, 0.11);
}

.media-note {
  border-color: rgba(224, 229, 220, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(33, 63, 47, 0.08);
  backdrop-filter: blur(10px);
}

.media-note strong {
  color: var(--teal);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

:where(.section-heading h2, .evidence-copy h2, .register-copy h2, .split-copy h2, .faq-section > h2)::after {
  display: block;
  width: 58px;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 123, 98, 0.55), rgba(201, 123, 98, 0));
  content: "";
}

.section-heading p,
.split-copy p,
.register-copy p,
.evidence-copy > p,
.service-flow p,
.location-box p,
.blog-card p,
.faq-list p,
.sns-grid p,
.plan-card p,
.booking-box p,
.payment-box p {
  color: var(--muted);
  line-height: 1.88;
}

.evidence-section {
  gap: clamp(24px, 4vw, 48px);
  border-color: rgba(224, 229, 220, 0.92);
}

.evidence-metrics {
  gap: 14px;
}

.evidence-metrics article {
  min-height: 0;
  padding: 18px;
  border-left: 0;
  border-top: 3px solid rgba(40, 101, 106, 0.72);
}

.evidence-metrics strong {
  font-size: clamp(1.65rem, 2.8vw, 2.18rem);
  letter-spacing: 0;
}

.evidence-metrics span,
.service-summary span,
.plan-label,
.blog-card span,
.location-box span,
.sns-grid span {
  color: var(--teal);
  letter-spacing: 0;
}

.evidence-flow-map {
  border-color: var(--line);
  background: linear-gradient(135deg, #f6faf4, #ffffff 68%);
  box-shadow: var(--shadow-soft);
}

.evidence-flow-map article {
  border-color: rgba(224, 229, 220, 0.94);
  background: rgba(255, 255, 255, 0.9);
}

.evidence-flow-map span,
.service-flow article > span {
  border-radius: 8px;
  background: #ecf4ed;
  color: var(--green-dark);
}

.evidence-step-tabs button {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.evidence-step-tabs button.is-active {
  background: var(--green-dark);
  color: var(--white);
}

.evidence-detail {
  background: #f6faf4;
}

.evidence-detail span {
  color: var(--teal);
}

.service-summary {
  border-left: 0;
  border-top: 4px solid rgba(201, 123, 98, 0.68);
}

.plan-card,
.service-flow article,
.blog-card,
.location-box article,
.sns-grid article,
.booking-box,
.payment-box,
.member-login-card,
.register-form {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.plan-card:hover,
.blog-card:hover,
.location-box article:hover,
.service-flow article:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 107, 77, 0.22);
  box-shadow: 0 16px 34px rgba(33, 63, 47, 0.08);
}

.plan-card.featured {
  border-color: rgba(63, 107, 77, 0.28);
  box-shadow: 0 16px 36px rgba(33, 63, 47, 0.1);
}

.plan-price strong {
  font-size: clamp(1.55rem, 3vw, 2.18rem);
}

.addon-strip article,
.form-intro,
.member-reservation-head {
  border-left: 0;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.addon-strip article {
  border: 1px solid var(--line);
}

label {
  color: #314937;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(63, 107, 77, 0.66);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--focus);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8a948b;
}

.payment-waiting {
  border-radius: 8px;
  background: #f6faf4;
  color: var(--green-dark);
}

.faq-list details {
  box-shadow: none;
}

.faq-list summary {
  list-style-position: outside;
}

.site-footer {
  margin-top: 10px;
  color: #33463a;
}

@media (max-width: 920px) {
  .site-header {
    gap: 12px;
  }

  .hero {
    padding: 28px;
  }

  h1 {
    max-width: 12em;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 11px;
  }

  .nav a {
    padding: 6px 7px;
    font-size: 0.82rem;
  }

  .hero,
  .admin-hero,
  .register-form,
  .admin-panel,
  .admin-side {
    padding: 22px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-actions .button,
  .sns-actions .button {
    width: 100%;
  }

  .quick-facts div {
    min-height: 78px;
  }
}

/* Designer agent refinement pass */
.nav .nav-reserve {
  background: var(--green-dark);
  color: var(--white);
  padding-inline: 13px;
}

.nav .nav-reserve:hover,
.nav .nav-reserve:focus-visible {
  background: #162e22;
  color: var(--white);
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(30px, 5.2vw, 68px);
  min-height: min(760px, calc(100vh - 70px));
  padding: clamp(34px, 5vw, 62px);
}

.hero-copy {
  max-width: 590px;
}

.hero h1 {
  max-width: 9.6em;
  margin-bottom: 22px;
}

.hero h1 > span {
  display: block;
}

.hero h1 .no-break {
  width: fit-content;
  white-space: normal;
}

.lead {
  max-width: 33.5em;
}

.hero-actions {
  gap: 10px;
  margin-top: 28px;
}

.hero-actions .button.primary {
  min-width: 196px;
  min-height: 50px;
  padding-inline: 24px;
}

.hero-actions .member-login-link {
  border-color: rgba(33, 63, 47, 0.22);
  background: transparent;
  color: var(--green-dark);
}

.hero-actions .button.secondary {
  min-height: 40px;
  padding: 8px 14px;
  color: #46564b;
  font-size: 0.88rem;
  font-weight: 760;
}

.hero-media {
  min-height: auto;
}

.hero-media img {
  height: clamp(410px, 44vw, 560px);
  object-position: center;
}

.media-note {
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
}

.quick-facts {
  margin-top: 30px;
}

.quick-facts div {
  box-shadow: none;
}

p strong::after {
  display: none;
  content: none;
}

.lead > strong::after,
.evidence-copy > p > strong::after,
.pricing-section .section-heading p > strong::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  display: block;
  height: 0.32em;
  border-radius: 999px;
  background: var(--highlight);
  content: "";
  z-index: -1;
}

.evidence-section,
.register-section {
  padding-top: clamp(68px, 8vw, 104px);
  padding-bottom: clamp(68px, 8vw, 104px);
}

.service-set-section,
.pricing-section,
.split-section {
  padding-top: clamp(60px, 7vw, 88px);
  padding-bottom: clamp(60px, 7vw, 88px);
}

.blog-section,
.sns-section,
.faq-section {
  padding-top: clamp(48px, 6vw, 70px);
  padding-bottom: clamp(48px, 6vw, 70px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.evidence-metrics article {
  border-top: 0;
  border-left: 3px solid rgba(40, 101, 106, 0.58);
  box-shadow: none;
}

.evidence-metrics p {
  font-size: 0.86rem;
}

.plan-card {
  min-height: 320px;
  padding: clamp(22px, 3vw, 30px);
}

.plan-card.featured {
  position: relative;
  border-top: 4px solid var(--green-dark);
  background: linear-gradient(180deg, rgba(246, 250, 244, 0.96), rgba(255, 255, 255, 0.94));
}

.plan-card.featured .plan-label {
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white);
}

.plan-card:not(.featured) .plan-label,
.blog-card span,
.sns-grid span,
.location-box span {
  color: #68746b;
}

.plan-price {
  margin: 24px 0 22px;
}

.plan-price strong {
  letter-spacing: 0;
}

.blog-card,
.sns-grid article,
.faq-list details,
.evidence-source-list {
  box-shadow: none;
}

.sns-grid article,
.blog-card {
  background: rgba(255, 255, 255, 0.74);
}

.register-form {
  gap: 15px;
  padding: clamp(22px, 3vw, 30px);
}

.register-copy {
  max-width: 560px;
}

label {
  gap: 8px;
}

input,
select,
textarea {
  min-height: 48px;
  padding: 12px 13px;
}

textarea {
  min-height: 118px;
}

.check-line {
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf4;
  line-height: 1.7;
}

.check-line input {
  min-height: auto;
}

.member-login-card {
  box-shadow: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  }

  .hero h1 {
    max-width: 10.2em;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media img {
    height: clamp(320px, 52vw, 430px);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
  }

  .nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero h1 {
    max-width: 9.5em;
  }

  .hero-actions .button.primary {
    min-height: 50px;
  }

  .hero-actions .button.secondary,
  .hero-actions .member-login-link {
    min-height: 42px;
  }

  .quick-facts {
    gap: 8px;
  }

  .quick-facts div {
    display: flex;
    min-height: 66px;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
  }

  .quick-facts div::before {
    width: 24px;
  }

  .quick-facts dd {
    text-align: right;
  }

  .register-form {
    gap: 13px;
  }
}

/* Infographic concept adoption */
.infographic-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.34fr);
  gap: 14px;
  align-items: stretch;
}

.infographic-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: clamp(420px, 44vw, 560px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(33, 63, 47, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(33, 63, 47, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(33, 63, 47, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f6faf4 100%);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 22px 50px rgba(33, 63, 47, 0.1);
}

.info-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.info-topline span,
.info-topline strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(33, 63, 47, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
}

.info-topline strong {
  border-color: rgba(201, 123, 98, 0.36);
  color: #8d513f;
}

.info-title {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3.4vw, 2.72rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.info-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(33, 63, 47, 0.14);
  border-bottom: 1px solid rgba(33, 63, 47, 0.14);
}

.info-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num body";
  column-gap: 14px;
  align-items: center;
  padding: 16px 0;
}

.info-flow article + article {
  border-top: 1px solid rgba(33, 63, 47, 0.1);
}

.info-flow article + article::before {
  position: absolute;
  top: -8px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(201, 123, 98, 0.8);
  border-bottom: 2px solid rgba(201, 123, 98, 0.8);
  background: #f8fbf5;
  content: "";
  transform: rotate(45deg);
}

.info-flow span {
  display: grid;
  grid-area: num;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.info-flow strong {
  grid-area: title;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.info-flow p {
  grid-area: body;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.info-stats div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(33, 63, 47, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.info-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.info-stats dd {
  margin: 4px 0 0;
  color: var(--green-dark);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  font-weight: 900;
  line-height: 1.25;
}

.infographic-photo {
  position: relative;
  min-height: clamp(420px, 44vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 229, 220, 0.9);
  border-radius: var(--radius);
  background: #eef4ed;
}

.infographic-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.infographic-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

@media (max-width: 920px) {
  .infographic-hero {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.28fr);
  }
}

@media (max-width: 680px) {
  .infographic-hero {
    grid-template-columns: 1fr;
  }

  .infographic-panel {
    min-height: auto;
  }

  .infographic-photo {
    min-height: 180px;
  }

  .infographic-photo img {
    min-height: 180px;
  }

  .info-stats {
    grid-template-columns: 1fr;
  }

  .info-stats div {
    display: flex;
    min-height: 58px;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
  }

  .info-stats dd {
    text-align: right;
  }
}

/* Step evidence explanations */
.info-flow article {
  grid-template-areas:
    "num title"
    "num body"
    "num evidence";
  align-items: start;
}

.info-evidence {
  display: grid;
  grid-area: evidence;
  gap: 5px;
  margin: 9px 0 0;
}

.info-evidence div {
  display: grid;
  grid-template-columns: 2.8em minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.info-evidence dt,
.info-evidence dd {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
}

.info-evidence dt {
  color: #8d513f;
  font-weight: 900;
}

.info-evidence dd {
  color: #425148;
}

.evidence-detail-notes {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.evidence-detail-notes section {
  padding: 13px 14px;
  border: 1px solid rgba(40, 101, 106, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.evidence-detail-notes strong {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.evidence-detail-notes p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
}

@media (max-width: 680px) {
  .info-evidence div {
    grid-template-columns: 2.6em minmax(0, 1fr);
  }
}
/* Hero interactive controls */
.hero-path {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(33, 63, 47, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-path-title {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-path-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.hero-path-options button {
  min-height: 36px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--green-dark);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.hero-path-options button:hover,
.hero-path-options button:focus-visible,
.info-step:hover,
.info-step:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-path-options button.is-active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.hero-path-result {
  min-height: 48px;
  margin: 11px 0 0;
  color: #425148;
  font-size: 0.88rem;
  line-height: 1.65;
}

.info-step {
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.info-step.is-active {
  background: rgba(236, 244, 237, 0.82);
  box-shadow: inset 3px 0 0 rgba(33, 63, 47, 0.82);
}

.info-step .info-evidence {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 180ms ease, margin 180ms ease, opacity 160ms ease;
}

.info-step.is-active .info-evidence {
  max-height: 130px;
  margin-top: 9px;
  opacity: 1;
}

.info-step.is-active > span {
  background: #8d513f;
}

.hero-step-detail {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(40, 101, 106, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.hero-step-detail span,
.hero-step-detail strong {
  display: block;
}

.hero-step-detail span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-step-detail strong {
  color: var(--green-dark);
  font-size: 1.02rem;
  line-height: 1.35;
}

.hero-step-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.hero-step-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(33, 63, 47, 0.1);
}

.hero-step-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--coral));
  transition: width 180ms ease;
}

@media (max-width: 1120px) {
  .hero-path-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-path {
    margin-top: 16px;
  }

  .hero-path-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-step {
    margin-inline: -8px;
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-path-options button,
  .info-step,
  .info-step .info-evidence,
  .hero-step-progress span {
    transition: none;
  }
}
/* 2026-07-04 reservation-first image-led redesign */
:root {
  --soft-white: #fffefe;
  --mist: #f4f8f1;
  --mint: #e8f2eb;
  --sage: #6e8b70;
  --ink-strong: #1f2721;
  --coral-soft: #d47b64;
  --amber-soft: #b58a45;
  --teal-soft: #2b7472;
  --line-soft: #dfe7da;
  --shadow-card: 0 16px 38px rgba(31, 47, 35, 0.09);
}

body {
  background: linear-gradient(180deg, #f8fbf5 0%, #ffffff 42%, #f6faf4 100%);
  padding-bottom: 92px;
}

.redesigned-header {
  width: min(1240px, calc(100% - 28px));
  min-height: 68px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(223, 231, 218, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(31, 47, 35, 0.08);
}

.redesigned-header .brand strong {
  color: var(--ink-strong);
}

.fixed-action-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.82fr));
  gap: 4px;
  width: min(680px, calc(100% - 36px));
  margin: 0 auto;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(31, 50, 37, 0.94);
  box-shadow: 0 16px 38px rgba(18, 35, 24, 0.24);
  backdrop-filter: blur(14px);
}

.fixed-action-bar a {
  display: grid;
  gap: 1px;
  min-height: 46px;
  align-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
}

.fixed-action-bar a:hover,
.fixed-action-bar a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.fixed-action-bar .fixed-action-primary {
  background: #d47b64;
  color: #ffffff;
}

.fixed-action-bar .fixed-action-primary:hover,
.fixed-action-bar .fixed-action-primary:focus-visible {
  background: #c86d58;
}

.fixed-action-bar span {
  color: #d9e8d9;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.05;
}

.fixed-action-bar .fixed-action-primary span {
  color: rgba(255, 255, 255, 0.86);
}

.fixed-action-bar strong {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.24;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redesign-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: 42px;
  width: min(1240px, calc(100% - 28px));
  min-height: 690px;
  margin-top: 14px;
  padding: 52px;
  border-color: rgba(223, 231, 218, 0.9);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.58) 65%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(248, 251, 246, 0.08) 0%, rgba(248, 251, 246, 0.94) 100%),
    url("assets/generated/hero-yomogi-lymph-v2.png") right center / cover no-repeat;
}

.redesign-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.redesign-hero h1 {
  max-width: 12.4em;
  color: var(--ink-strong);
  font-size: 3rem;
  line-height: 1.12;
}

.redesign-hero h1 span {
  display: block;
}

.redesign-hero .lead {
  max-width: 38.5em;
  color: #33483a;
}

.redesign-hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
}

.hero-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: var(--shadow-card);
}

.redesign-hero-media .hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.hero-booking-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(212, 123, 100, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 236, 226, 0.72));
  box-shadow: var(--shadow-card);
}

.hero-booking-card span,
.care-copy-card span,
.next-contact-list span {
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-booking-card strong {
  color: var(--green-dark);
  font-size: 1.18rem;
  line-height: 1.45;
}

.hero-booking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.wide-heading {
  max-width: 840px;
}

.concern-section {
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(58px, 7vw, 84px);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concern-grid article {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--line-soft);
  border-left: 5px solid var(--coral-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.concern-grid article:nth-child(2) {
  border-left-color: var(--teal-soft);
}

.concern-grid article:nth-child(3) {
  border-left-color: var(--amber-soft);
}

.concern-grid span {
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.concern-grid h3 {
  color: var(--ink-strong);
  font-size: 1.28rem;
  line-height: 1.45;
}

.concern-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.concern-grid strong {
  margin-top: auto;
  color: #8d513f;
  line-height: 1.55;
}

.image-choice-section {
  padding-top: 72px;
}

.care-switcher {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.care-image-stage {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: var(--shadow-card);
}

.care-image-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.care-control-panel {
  display: grid;
  gap: 14px;
}

.care-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.care-buttons button {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--soft-white);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.care-buttons button span,
.habit-steps span,
.admin-todo-grid span,
.image-service-flow article > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.care-buttons button.is-active {
  border-color: rgba(36, 67, 49, 0.42);
  background: var(--green-dark);
  color: #ffffff;
}

.care-buttons button.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.care-copy-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.care-copy-card h3 {
  color: var(--ink-strong);
  font-size: 1.62rem;
  line-height: 1.34;
}

.care-copy-card p {
  color: var(--muted);
  line-height: 1.9;
}

.image-service-flow article {
  overflow: hidden;
  padding: 0 0 20px;
}

.image-service-flow img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.image-service-flow article > span,
.image-service-flow h3,
.image-service-flow p {
  margin-inline: 18px;
}

.image-service-flow article > span {
  margin-top: 16px;
}

.continue-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.continue-photo {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: var(--shadow-card);
}

.continue-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.continue-copy h2 {
  max-width: 12em;
}

.habit-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.habit-steps article {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #ffffff;
}

.habit-steps strong {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
}

.habit-steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.register-section {
  align-items: start;
}

.register-form {
  position: sticky;
  top: 94px;
}

.redesign-admin-hero {
  grid-template-columns: minmax(0, 1fr) 330px;
  width: min(1240px, calc(100% - 28px));
  min-height: 360px;
  margin-top: 14px;
  padding: 44px;
  background: linear-gradient(135deg, #ffffff, #f1f7f0);
}

.admin-hero-image {
  height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.admin-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 24px;
}

.today-panel,
.next-contact-panel {
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.today-panel .section-heading {
  margin-bottom: 18px;
}

.admin-todo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-todo-grid article {
  display: grid;
  gap: 9px;
  min-height: 210px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #ffffff;
}

.admin-todo-grid strong {
  color: var(--green-dark);
  line-height: 1.45;
}

.admin-todo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.admin-todo-grid a {
  align-self: end;
  color: var(--teal-soft);
  font-weight: 900;
  text-decoration: none;
}

.next-contact-panel h2 {
  font-size: 1.4rem;
}

.next-contact-list {
  display: grid;
  gap: 10px;
}

.next-contact-list article {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #ffffff;
}

.next-contact-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.next-contact-list strong {
  color: var(--green-dark);
}

.next-contact-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.admin-quick-stats {
  padding-top: 0;
  padding-bottom: 12px;
}

.admin-quick-stats .admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-quick-stats .admin-stats article {
  min-height: 108px;
}

.admin-layout {
  width: min(1240px, calc(100% - 28px));
  grid-template-columns: 250px minmax(0, 1fr);
}

.admin-panel,
.admin-side,
.today-panel,
.next-contact-panel {
  scroll-margin-top: 96px;
}

@media (max-width: 1080px) {
  .redesign-hero,
  .care-switcher,
  .continue-section,
  .redesign-admin-hero,
  .admin-workbench {
    grid-template-columns: 1fr;
  }

  .admin-todo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-form {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 112px;
  }

  .redesigned-header {
    width: min(100% - 18px, 1240px);
    margin-top: 8px;
  }

  .redesign-hero,
  .redesign-admin-hero {
    width: min(100% - 18px, 1240px);
    min-height: auto;
    padding: 24px;
  }

  .redesign-hero h1 {
    font-size: 2.28rem;
  }

  .fixed-action-bar {
    right: 9px;
    bottom: 9px;
    left: 9px;
    width: min(430px, calc(100% - 18px));
    grid-template-columns: minmax(0, 1.22fr) repeat(2, minmax(0, 0.82fr));
  }

  .fixed-action-bar a {
    min-height: 50px;
    padding: 7px 8px;
    text-align: center;
  }

  .fixed-action-bar strong {
    font-size: 0.76rem;
    white-space: normal;
  }

  .hero-photo,
  .redesign-hero-media .hero-photo img,
  .care-image-stage,
  .care-image-stage img,
  .continue-photo,
  .continue-photo img {
    min-height: 280px;
  }

  .concern-grid,
  .care-buttons,
  .habit-steps,
  .admin-todo-grid,
  .admin-quick-stats .admin-stats {
    grid-template-columns: 1fr;
  }

  .care-copy-card {
    min-height: auto;
  }

  .admin-layout {
    width: min(100% - 18px, 1240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .care-buttons button,
  .fixed-action-bar a {
    transition: none;
  }
}

/* Keep the action menu persistent without covering page text. */
.fixed-action-bar {
  position: sticky;
  top: 88px;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 10px auto 18px;
}

body {
  padding-bottom: 0;
}

@media (max-width: 760px) {
  .fixed-action-bar {
    top: 132px;
    margin-top: 8px;
  }

  body {
    padding-bottom: 0;
  }
}

/* Mobile hamburger navigation */
.menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header.redesigned-header {
    position: sticky;
    top: 8px;
    display: flex;
    width: min(100% - 18px, 1240px);
    min-height: 60px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
  }

  .site-header .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-header .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .site-header .brand small {
    font-size: 0.7rem;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(36, 67, 49, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 47, 35, 0.08);
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 160ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .nav {
    display: grid;
    width: 100%;
    max-height: 0;
    grid-template-columns: 1fr;
    gap: 4px;
    order: 3;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: max-height 220ms ease, opacity 160ms ease, padding 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .nav {
    max-height: 72vh;
    padding: 8px 0 2px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid rgba(36, 67, 49, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
  }

  .site-header .nav a::after {
    color: rgba(36, 67, 49, 0.44);
    content: ">";
    font-weight: 900;
  }

  .site-header .nav a:hover,
  .site-header .nav a:focus-visible {
    background: rgba(232, 242, 235, 0.92);
    outline: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle span,
  .site-header .nav {
    transition: none;
  }
}

/* Empathy-led public page and complete admin menu */
.redesign-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 39%, rgba(255, 255, 255, 0.54) 66%, rgba(255, 255, 255, 0.12) 100%),
    radial-gradient(circle at 18% 18%, rgba(212, 123, 100, 0.13), rgba(212, 123, 100, 0) 32%),
    linear-gradient(180deg, rgba(248, 251, 246, 0.05) 0%, rgba(248, 251, 246, 0.96) 100%),
    url("assets/generated/hero-yomogi-lymph-v2.png") right center / cover no-repeat;
}

.redesign-hero h1 {
  max-width: 13.1em;
}

.hero-path {
  border-color: rgba(212, 123, 100, 0.25);
  background: rgba(255, 255, 255, 0.74);
}

.hero-path-title {
  color: #8d513f;
}

.hero-path-options button {
  min-height: 48px;
}

.hero-path-result {
  color: #405144;
  font-weight: 700;
}

.hero-booking-card {
  border-color: rgba(36, 67, 49, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 244, 0.9));
}

.relief-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.relief-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.relief-gallery article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--mint);
  box-shadow: var(--shadow-card);
}

.relief-gallery img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.relief-gallery article::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, rgba(16, 28, 19, 0), rgba(16, 28, 19, 0.74));
  content: "";
}

.relief-gallery div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.relief-gallery span {
  font-size: 0.78rem;
  font-weight: 900;
}

.relief-gallery strong {
  max-width: 15em;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.45;
}

.concern-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 244, 0.92)),
    #ffffff;
}

.care-copy-card .button.secondary,
.plan-card .button.secondary {
  background: #ffffff;
}

body[data-page="admin"] {
  background: linear-gradient(180deg, #f6faf4 0%, #ffffff 48%, #f3f8f2 100%);
}

body[data-page="admin"] .button.primary {
  border-color: #183423;
  background: #183423;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 52, 35, 0.18);
}

body[data-page="admin"] .button.secondary {
  border-color: rgba(36, 67, 49, 0.22);
  background: #ffffff;
  color: #244331;
}

.admin-menu-overview {
  padding-top: 42px;
  padding-bottom: 32px;
}

.admin-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-menu-grid a {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 16px;
  border: 1px solid rgba(36, 67, 49, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-menu-grid a:hover,
.admin-menu-grid a:focus-visible {
  border-color: rgba(36, 67, 49, 0.34);
  box-shadow: 0 16px 34px rgba(31, 47, 35, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.admin-menu-grid span {
  color: #8d513f;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-menu-grid strong {
  color: var(--green-dark);
  font-size: 1.04rem;
  line-height: 1.38;
}

.admin-menu-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.compact-heading {
  margin-bottom: 18px;
}

.admin-quick-stats {
  padding-top: 20px;
}

.admin-side {
  padding-top: 22px;
}

.admin-side h2 {
  font-size: 1.32rem;
}

.panel-heading h2 {
  margin-bottom: 8px;
}

@media (max-width: 1180px) {
  .admin-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .relief-gallery,
  .admin-menu-grid {
    grid-template-columns: 1fr;
  }

  .relief-gallery article,
  .relief-gallery img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .redesign-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 54%, rgba(255, 255, 255, 0.52) 100%),
      url("assets/generated/hero-yomogi-lymph-v2.png") center bottom / cover no-repeat;
  }

  .relief-gallery article,
  .relief-gallery img {
    min-height: 288px;
  }

  .admin-menu-grid a {
    min-height: auto;
  }
}

/* Junpa brand logo placement */
.brand-logo-link {
  min-width: 214px;
  flex: 0 0 auto;
  gap: 0;
}

.brand-logo {
  display: block;
  width: 232px;
  max-width: min(48vw, 248px);
  height: auto;
  transition: transform 160ms ease, opacity 160ms ease;
}

.brand-logo-link:hover .brand-logo,
.brand-logo-link:focus-visible .brand-logo {
  transform: translateY(-1px);
  opacity: 0.92;
}

@media (max-width: 760px) {
  .site-header .brand-logo-link {
    min-width: 0;
    flex: 0 1 auto;
  }

  .site-header .brand-logo {
    width: 176px;
    max-width: 56vw;
  }
}

@media (max-width: 380px) {
  .site-header .brand-logo {
    width: 154px;
  }
}

/* 2026-07-08 Junpa wave identity refresh */
:root {
  --junpa-ink: #173339;
  --junpa-deep: #123f46;
  --junpa-teal: #287f82;
  --junpa-sea: #d9eeee;
  --junpa-foam: #f7fbf9;
  --junpa-paper: #fffaf1;
  --junpa-rust: #c66d55;
  --junpa-gold: #c4a35a;
  --junpa-line: rgba(18, 63, 70, 0.16);
  --junpa-shadow: 0 18px 44px rgba(18, 63, 70, 0.12);
  --junpa-soft-shadow: 0 10px 28px rgba(18, 63, 70, 0.08);
  --green-dark: var(--junpa-deep);
  --green: var(--junpa-teal);
  --teal: var(--junpa-teal);
  --coral: var(--junpa-rust);
  --line: var(--junpa-line);
  --surface-soft: var(--junpa-foam);
  --highlight: rgba(196, 163, 90, 0.25);
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f6fbfb 0%, #fffaf1 42%, #f7fbf9 100%);
  color: var(--junpa-ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='80' viewBox='0 0 220 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 42 C36 18 74 66 110 42 S184 18 220 42' fill='none' stroke='%23287f82' stroke-opacity='.12' stroke-width='2'/%3E%3Cpath d='M0 62 C36 38 74 86 110 62 S184 38 220 62' fill='none' stroke='%23c4a35a' stroke-opacity='.10' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 220px 80px;
  opacity: 0.72;
  content: "";
}

.site-header.redesigned-header {
  border-color: rgba(18, 63, 70, 0.18);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 12px 30px rgba(18, 63, 70, 0.1);
}

.brand-logo {
  filter: drop-shadow(0 8px 16px rgba(18, 63, 70, 0.1));
}

.nav a {
  color: var(--junpa-deep);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(40, 127, 130, 0.1);
}

.nav .nav-reserve,
.button.primary,
.evidence-step-tabs button.is-active {
  background: linear-gradient(135deg, var(--junpa-deep), var(--junpa-teal));
  color: #ffffff;
}

.button.primary {
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(18, 63, 70, 0.18);
}

.button.secondary,
.button.member-login-link {
  border-color: rgba(18, 63, 70, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--junpa-deep);
}

.junpa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(40, 127, 130, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  color: var(--junpa-teal);
  box-shadow: 0 10px 24px rgba(18, 63, 70, 0.07);
}

.junpa-kicker::before {
  width: 34px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='68' height='20' viewBox='0 0 68 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 C11 0 23 20 34 10 S57 0 68 10' fill='none' stroke='%23287f82' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 34px 10px;
  content: "";
}

.redesign-hero {
  border-color: rgba(18, 63, 70, 0.16);
  background:
    linear-gradient(90deg, rgba(247, 251, 249, 0.98) 0%, rgba(255, 250, 241, 0.9) 42%, rgba(217, 238, 238, 0.42) 66%, rgba(247, 251, 249, 0.2) 100%),
    url("data:image/svg+xml,%3Csvg width='420' height='180' viewBox='0 0 420 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 84 C50 28 118 140 188 84 S326 28 440 84' fill='none' stroke='%23287f82' stroke-opacity='.18' stroke-width='5'/%3E%3Cpath d='M-20 124 C50 68 118 180 188 124 S326 68 440 124' fill='none' stroke='%23c66d55' stroke-opacity='.13' stroke-width='3'/%3E%3C/svg%3E") left bottom / 420px 180px repeat-x,
    url("assets/generated/hero-yomogi-lymph-v2.png") right center / cover no-repeat;
  box-shadow: var(--junpa-shadow);
}

.redesign-hero h1,
.redesign-admin-hero h1 {
  color: var(--junpa-ink);
}

.redesign-hero h1 span:nth-child(2) {
  color: var(--junpa-teal);
}

.redesign-hero .lead {
  color: #29454a;
}

.redesign-hero .lead strong {
  color: var(--junpa-deep);
}

.hero-path,
.hero-booking-card,
.care-copy-card,
.booking-box,
.payment-box,
.member-login-card,
.register-form,
.admin-panel,
.blog-card,
.sns-grid article,
.faq-list details,
.plan-card,
.service-summary,
.service-flow article,
.location-box article,
.evidence-detail,
.evidence-source-list {
  border-color: rgba(18, 63, 70, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 249, 0.82)),
    var(--junpa-paper);
  box-shadow: var(--junpa-soft-shadow);
}

.hero-path {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(217, 238, 238, 0.52)),
    var(--junpa-foam);
}

.hero-path-title,
.hero-booking-card span,
.care-copy-card span,
.evidence-detail span,
.evidence-metrics span,
.service-summary span,
.plan-label,
.blog-card span,
.location-box span,
.sns-grid span {
  color: var(--junpa-teal);
}

.hero-path-options button,
.care-buttons button,
.evidence-step-tabs button {
  border-color: rgba(18, 63, 70, 0.15);
  background: rgba(255, 255, 255, 0.82);
  color: var(--junpa-deep);
}

.hero-path-options button.is-active,
.care-buttons button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--junpa-deep), var(--junpa-teal));
  color: #ffffff;
}

.hero-photo,
.care-image-stage,
.continue-photo,
.admin-hero-image {
  border: 1px solid rgba(18, 63, 70, 0.16);
  background: var(--junpa-sea);
  box-shadow: 0 20px 42px rgba(18, 63, 70, 0.13);
}

.hero-booking-card {
  position: relative;
  overflow: hidden;
}

.hero-booking-card::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(198, 109, 85, 0.45);
  border-radius: 50%;
  color: rgba(198, 109, 85, 0.76);
  content: "Junpa";
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-10deg);
}

.hero-booking-card strong,
.concern-grid h3,
.care-copy-card h3,
.plan-card h3,
.service-flow h3,
.blog-card h3,
.faq-list summary,
.admin-panel h2 {
  color: var(--junpa-deep);
}

.quick-facts div::before,
:where(.section-heading h2, .evidence-copy h2, .register-copy h2, .split-copy h2, .faq-section > h2)::after {
  background: linear-gradient(90deg, var(--junpa-teal), var(--junpa-gold), rgba(196, 163, 90, 0));
}

.relief-gallery article {
  border-color: rgba(18, 63, 70, 0.18);
  box-shadow: var(--junpa-shadow);
}

.relief-gallery article::after {
  background: linear-gradient(180deg, rgba(18, 63, 70, 0), rgba(18, 63, 70, 0.82));
}

.concern-grid article {
  position: relative;
  overflow: hidden;
}

.concern-grid article::before {
  width: 76px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='76' height='16' viewBox='0 0 76 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8 C12 0 25 16 38 8 S64 0 76 8' fill='none' stroke='%23c4a35a' stroke-opacity='.75' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  content: "";
}

.plan-card.featured {
  border-top-color: var(--junpa-teal);
  background:
    linear-gradient(180deg, rgba(217, 238, 238, 0.7), rgba(255, 255, 255, 0.92)),
    var(--junpa-foam);
}

.plan-card.featured .plan-label,
.evidence-flow-map span,
.service-flow article > span,
.habit-steps article span {
  background: var(--junpa-deep);
  color: #ffffff;
}

.continue-section {
  border-color: rgba(18, 63, 70, 0.14);
  background:
    linear-gradient(90deg, rgba(217, 238, 238, 0.52), rgba(255, 250, 241, 0.72));
}

.check-line,
.form-intro,
.member-reservation-head,
.addon-strip article,
.evidence-flow-map,
.evidence-detail-notes section {
  border-color: rgba(40, 127, 130, 0.16);
  background: rgba(217, 238, 238, 0.36);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(40, 127, 130, 0.72);
  box-shadow: 0 0 0 4px rgba(40, 127, 130, 0.14);
}

.site-footer {
  border-top: 1px solid rgba(18, 63, 70, 0.14);
  background: rgba(255, 250, 241, 0.68);
}

body[data-page="admin"] {
  background: linear-gradient(180deg, #f6fbfb 0%, #fffaf1 48%, #f7fbf9 100%);
}

body[data-page="admin"] .brand-mark {
  background: var(--junpa-sea);
}

body[data-page="admin"] .redesign-admin-hero {
  border-color: rgba(18, 63, 70, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(217, 238, 238, 0.72)),
    url("data:image/svg+xml,%3Csvg width='360' height='120' viewBox='0 0 360 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 62 C40 18 100 106 160 62 S282 18 380 62' fill='none' stroke='%23287f82' stroke-opacity='.18' stroke-width='4'/%3E%3C/svg%3E") right bottom / 360px 120px no-repeat;
  box-shadow: var(--junpa-shadow);
}

body[data-page="admin"] .button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--junpa-deep), var(--junpa-teal));
}

body[data-page="admin"] .button.secondary {
  border-color: rgba(18, 63, 70, 0.18);
  color: var(--junpa-deep);
}

@media (max-width: 760px) {
  .redesign-hero {
    background:
      linear-gradient(180deg, rgba(247, 251, 249, 0.98) 0%, rgba(255, 250, 241, 0.9) 54%, rgba(217, 238, 238, 0.46) 100%),
      url("assets/generated/hero-yomogi-lymph-v2.png") center bottom / cover no-repeat;
  }

  .junpa-kicker {
    max-width: 100%;
    white-space: normal;
  }

  .hero-booking-card::after {
    width: 46px;
    height: 46px;
    font-size: 0.56rem;
  }
}
/* Evidence explanation redesign: research without number-heavy claims */
.evidence-section {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.78fr) minmax(430px, 1fr);
  gap: clamp(28px, 4.8vw, 62px);
  padding: clamp(58px, 7vw, 92px) clamp(22px, 4vw, 44px);
  border: 1px solid rgba(18, 63, 70, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(247, 251, 249, 0.9) 46%, rgba(217, 238, 238, 0.54)),
    var(--junpa-paper);
  box-shadow: 0 24px 54px rgba(18, 63, 70, 0.09);
}

.evidence-section::before {
  position: absolute;
  top: 28px;
  right: clamp(18px, 5vw, 74px);
  width: 190px;
  height: 44px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='44' viewBox='0 0 190 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 28 C24 8 44 44 64 24 S104 4 124 24 S164 44 186 18' fill='none' stroke='%23287f82' stroke-opacity='.42' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M18 14 C28 4 42 4 52 14' fill='none' stroke='%23c66d55' stroke-opacity='.42' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.evidence-copy,
.evidence-explorer {
  position: relative;
  z-index: 1;
}

.evidence-copy h2 {
  max-width: 9.8em;
  color: var(--junpa-ink);
}

.evidence-copy > p {
  max-width: 34em;
  margin-top: 18px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(40, 127, 130, 0.18);
  border-left: 5px solid var(--junpa-teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: #36555a;
  box-shadow: 0 14px 26px rgba(18, 63, 70, 0.06);
}

.evidence-copy > p strong {
  color: var(--junpa-deep);
}

.evidence-metrics {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.evidence-metrics article {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 0;
  padding: 16px 18px 16px 54px;
  border: 1px solid rgba(18, 63, 70, 0.13);
  border-left: 0;
  border-top: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.7)),
    var(--junpa-paper);
  box-shadow: 0 12px 24px rgba(18, 63, 70, 0.06);
}

.evidence-metrics article::before {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(40, 127, 130, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(40, 127, 130, 0.74) 0 4px, transparent 5px),
    rgba(217, 238, 238, 0.5);
  content: "";
}

.evidence-metrics strong {
  width: fit-content;
  padding: 3px 9px;
  border: 1px solid rgba(198, 109, 85, 0.26);
  border-radius: 999px;
  background: rgba(255, 238, 219, 0.82);
  color: var(--junpa-coral);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.evidence-metrics span {
  margin-top: 0;
  color: var(--junpa-deep);
  font-size: 1rem;
  line-height: 1.45;
}

.evidence-metrics p {
  margin-top: 0;
  color: #536a62;
  font-size: 0.9rem;
  line-height: 1.75;
}

.evidence-flow-map {
  gap: 12px;
  padding: 16px;
  border-color: rgba(18, 63, 70, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(217, 238, 238, 0.42)),
    var(--junpa-foam);
  box-shadow: 0 16px 32px rgba(18, 63, 70, 0.08);
}

.evidence-flow-map article {
  min-height: 132px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.evidence-flow-map span {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 63, 70, 0.16);
  border-radius: 50%;
  background: rgba(18, 63, 70, 0.9);
  color: #fffaf1;
  font-size: 0.9rem;
}

.evidence-step-tabs {
  gap: 10px;
}

.evidence-step-tabs button {
  min-height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 16px rgba(18, 63, 70, 0.05);
}

.evidence-step-tabs button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--junpa-deep), var(--junpa-teal));
  color: #ffffff;
}

.evidence-detail {
  min-height: 250px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.74)),
    var(--junpa-paper);
}

.evidence-detail > span {
  display: inline-flex;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(217, 238, 238, 0.66);
  color: var(--junpa-teal);
  font-size: 0.78rem;
  line-height: 1.45;
}

.evidence-detail h3 {
  color: var(--junpa-deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.evidence-detail p {
  color: #536a62;
  line-height: 1.86;
}

.evidence-detail small {
  border-top-color: rgba(198, 109, 85, 0.2);
  color: #7b513f;
}

.evidence-detail-notes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evidence-detail-notes section {
  border-radius: 8px;
  background: rgba(217, 238, 238, 0.28);
}

.evidence-source-list {
  border-style: dashed;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.evidence-source-list h3 {
  color: var(--junpa-deep);
}

.evidence-source-list a {
  color: var(--junpa-teal);
}

@media (max-width: 1120px) {
  .evidence-section {
    grid-template-columns: 1fr;
  }

  .evidence-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .evidence-section {
    padding-inline: 18px;
  }

  .evidence-section::before {
    width: 130px;
    opacity: 0.72;
  }

  .evidence-copy > p,
  .evidence-metrics article,
  .evidence-detail {
    padding-inline: 16px;
  }

  .evidence-metrics article {
    padding-left: 48px;
  }

  .evidence-detail > span {
    white-space: normal;
  }

  .evidence-detail-notes {
    grid-template-columns: 1fr;
  }
}
/* Admin scope and top blog simplification */
.admin-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.admin-scope-grid a {
  display: grid;
  align-content: start;
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(18, 63, 70, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(18, 63, 70, 0.07);
}

.admin-scope-grid span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(217, 238, 238, 0.76);
  color: var(--junpa-teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-scope-grid strong {
  color: var(--junpa-deep);
  font-size: 1.2rem;
}

.admin-scope-grid p {
  margin: 8px 0 0;
  color: #536a62;
  line-height: 1.7;
}

.simplified-admin-hero {
  min-height: 0;
}

.member-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 16px;
}

.member-card-list article {
  min-height: 132px;
  padding: 15px;
  border: 1px solid rgba(18, 63, 70, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.68);
}

.member-card-list span,
.member-card-list strong,
.member-card-list small {
  display: block;
}

.member-card-list span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(40, 127, 130, 0.1);
  color: var(--junpa-teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.member-card-list strong {
  color: var(--junpa-deep);
}

.member-card-list p,
.member-card-list small {
  margin: 5px 0 0;
  color: #536a62;
  font-size: 0.86rem;
  line-height: 1.55;
}

body[data-page="admin"] table {
  min-width: 860px;
}

.top-blog-section {
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(38px, 5vw, 60px);
}

.top-blog-section .junpa-kicker {
  margin-bottom: 12px;
}

.top-blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.top-blog-head > div {
  max-width: 720px;
}

.top-blog-head h2 {
  margin-bottom: 10px;
  color: var(--junpa-ink);
}

.top-blog-head p {
  margin-bottom: 0;
  color: #536a62;
}

.top-blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.top-blog-card {
  position: relative;
  min-height: 220px;
  padding-right: 96px;
  overflow: hidden;
}

.top-blog-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(198, 109, 85, 0.44);
  border-radius: 50%;
  color: rgba(198, 109, 85, 0.8);
  content: "読む";
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 900;
  transform: rotate(-9deg);
}

.top-blog-card .button.compact {
  width: fit-content;
  margin-top: 10px;
}

@media (max-width: 920px) {
  .admin-scope-grid,
  .member-card-list,
  .top-blog-list {
    grid-template-columns: 1fr;
  }

  .top-blog-head {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .top-blog-card {
    min-height: 0;
    padding-right: 18px;
  }

  .top-blog-card::after {
    display: none;
  }
}
/* Split admin pages */
.admin-single-page {
  padding-top: clamp(18px, 4vw, 42px);
}

.admin-single-page .admin-main {
  max-width: 1120px;
}

.admin-single-page .admin-panel h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  color: var(--junpa-ink);
}

.site-header .nav a[aria-current="page"] {
  color: var(--junpa-teal);
  text-decoration: underline;
  text-underline-offset: 6px;
}

body[data-page="admin-members"] .admin-single-page,
body[data-page="admin-blog"] .admin-single-page,
body[data-page="admin-business-plan"] .admin-single-page {
  grid-template-columns: minmax(0, 1fr);
}

body[data-page="admin-members"] .admin-single-page .admin-main,
body[data-page="admin-blog"] .admin-single-page .admin-main,
body[data-page="admin-business-plan"] .admin-single-page .admin-main {
  width: 100%;
  max-width: none;
}

body[data-page="admin-members"] #members,
body[data-page="admin-blog"] #blog-admin {
  width: 100%;
}

body[data-page="admin-members"] .panel-heading,
body[data-page="admin-blog"] .panel-heading {
  flex-wrap: wrap;
}

body[data-page="admin-members"] .panel-heading > div:first-child,
body[data-page="admin-blog"] .panel-heading > div:first-child {
  min-width: min(100%, 320px);
}

body[data-page="admin-members"] .panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body[data-page="admin-blog"] .blog-editor,
body[data-page="admin-blog"] .blog-admin-list {
  width: 100%;
}

body[data-page="admin-blog"] .blog-editor .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="admin-members"] .table-tools {
  justify-content: flex-start;
}

body[data-page="admin-members"] .table-wrap {
  margin-top: 18px;
}

.admin-tool-launcher {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(18, 63, 70, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 8%, rgba(192, 155, 91, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(235, 245, 241, 0.96));
  box-shadow: 0 18px 48px rgba(18, 63, 70, 0.08);
}

.admin-tool-launcher h1 {
  margin: 0 0 8px;
  color: var(--junpa-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.admin-tool-launcher p {
  margin: 0;
  color: var(--muted);
}

.admin-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-tool-card {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(18, 63, 70, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--junpa-ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-tool-card:hover,
.admin-tool-card:focus-visible {
  border-color: rgba(18, 63, 70, 0.42);
  box-shadow: 0 14px 28px rgba(18, 63, 70, 0.1);
  transform: translateY(-2px);
}

.admin-tool-card.is-current {
  border-color: rgba(18, 63, 70, 0.3);
  background: var(--junpa-deep, #123f46);
  color: #fffdf7;
}

.admin-tool-number {
  color: var(--junpa-gold, #b78a48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.admin-tool-card strong {
  font-size: 1.25rem;
}

.admin-tool-card small {
  color: inherit;
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0.78;
}

@media (max-width: 760px) {
  body[data-page="admin-blog"] .blog-editor .form-row {
    grid-template-columns: 1fr;
  }

  .admin-tool-grid {
    grid-template-columns: 1fr;
  }

  .admin-tool-card {
    min-height: 118px;
  }
}
/* Full-width top fixed menu */
.site-header.redesigned-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  min-height: 70px;
  margin: 0;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 8px 22px rgba(18, 63, 70, 0.08);
}

.site-header.redesigned-header .nav {
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .site-header.redesigned-header {
    top: 0;
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    border-radius: 0;
  }
}
/* Balanced full-width top menu pass */
.site-header.redesigned-header {
  min-height: 64px;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  padding-block: 8px;
  border-color: rgba(18, 63, 70, 0.16);
}

.site-header.redesigned-header .brand {
  min-width: 0;
}

.site-header.redesigned-header .brand-logo-link {
  min-width: 188px;
}

.site-header.redesigned-header .brand-logo {
  width: 214px;
  max-width: min(42vw, 214px);
}

.site-header.redesigned-header .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 11px;
}

.site-header.redesigned-header .brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.site-header.redesigned-header .brand small {
  font-size: 0.76rem;
}

.site-header.redesigned-header .nav {
  min-width: 0;
  gap: 3px;
  flex-wrap: nowrap;
}

.site-header.redesigned-header .nav a {
  padding: 7px 8px;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
}

.site-header.redesigned-header .nav .nav-reserve {
  padding-inline: 13px;
}

@media (max-width: 1080px) {
  .site-header.redesigned-header .brand-logo-link {
    min-width: 166px;
  }

  .site-header.redesigned-header .brand-logo {
    width: 188px;
    max-width: min(36vw, 188px);
  }

  .site-header.redesigned-header .nav a {
    padding-inline: 6px;
    font-size: 0.8rem;
  }
}

@media (max-width: 760px) {
  .site-header.redesigned-header {
    min-height: 58px;
    gap: 8px;
    padding-block: 7px;
  }

  .site-header.redesigned-header .brand-logo-link {
    min-width: 0;
  }

  .site-header.redesigned-header .brand-logo {
    width: 166px;
    max-width: 54vw;
  }
}
/* 2026-07-09 glass creative redesign */
body.glass-redesign {
  --glass-bg: rgba(255, 253, 247, 0.74);
  --glass-soft: rgba(255, 255, 255, 0.58);
  --glass-line: rgba(53, 95, 77, 0.11);
  --glass-ink: #173d39;
  --glass-muted: #687870;
  --glass-mint: #dbeee4;
  --glass-blue: #dcebf1;
  --glass-peach: #f5ddd0;
  --glass-gold: #ead7a7;
  --glass-shadow: 0 22px 70px rgba(30, 70, 62, 0.11);
  --glass-small-shadow: 0 12px 34px rgba(30, 70, 62, 0.08);
  min-height: 100vh;
  color: var(--glass-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 221, 208, 0.52), transparent 26rem),
    radial-gradient(circle at 82% 10%, rgba(220, 235, 241, 0.68), transparent 30rem),
    linear-gradient(135deg, #fbf7ee 0%, #f0f8f3 42%, #fbfbf6 100%);
  letter-spacing: 0;
}

body.glass-redesign::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    linear-gradient(115deg, transparent 0 14%, rgba(255,255,255,0.46) 14.2% 14.7%, transparent 14.9% 45%, rgba(255,255,255,0.36) 45.2% 45.6%, transparent 45.8%),
    repeating-linear-gradient(0deg, rgba(36,67,49,0.035) 0 1px, transparent 1px 92px);
}

body.glass-redesign .site-header.redesigned-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  max-width: none;
  min-height: 68px;
  margin: 0;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-bottom: 1px solid rgba(23, 61, 57, 0.09);
  border-radius: 0;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: 0 8px 32px rgba(31, 70, 64, 0.07);
  backdrop-filter: blur(22px) saturate(135%);
}

body.glass-redesign .brand-logo {
  width: 218px;
  max-width: min(42vw, 218px);
}

body.glass-redesign .nav {
  gap: 2px;
  flex-wrap: nowrap;
}

body.glass-redesign .nav a {
  border-radius: 0;
  padding: 10px 11px;
  color: #173d39;
  font-size: 0.86rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

body.glass-redesign .nav a:hover,
body.glass-redesign .nav a[aria-current="page"] {
  color: #0d514f;
  background: rgba(31, 95, 102, 0.08);
}

body.glass-redesign main {
  overflow: hidden;
}

body.glass-redesign .section,
body.glass-redesign .section-band {
  width: min(var(--max), calc(100% - 34px));
}

body.glass-redesign .section {
  padding: clamp(62px, 8vw, 104px) 0;
}

body.glass-redesign .section-band {
  margin-top: clamp(22px, 3vw, 36px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.glass-redesign .glass-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(38px, 7vw, 82px) 0 clamp(50px, 7vw, 88px);
}

body.glass-redesign .hero-copy {
  max-width: 690px;
}

body.glass-redesign .hero-copy h1 span {
  display: block;
}

body.glass-redesign .lead strong {
  display: block;
  margin-bottom: 7px;
  color: #1c554f;
}

body.glass-redesign .hero-actions,
body.glass-redesign .sns-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

body.glass-redesign .button {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

body.glass-redesign .button:hover {
  transform: translateY(-1px);
}

body.glass-redesign .button.primary {
  background: linear-gradient(135deg, #1d5c55, #254f3b);
  color: #fffdf7;
}

body.glass-redesign .button.secondary {
  border: 1px solid rgba(29, 92, 85, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: #1d554f;
  backdrop-filter: blur(14px);
}

body.glass-redesign .hero-path,
body.glass-redesign .quick-facts,
body.glass-redesign .glass-route-card,
body.glass-redesign .care-copy-card,
body.glass-redesign .member-login-card,
body.glass-redesign .register-form,
body.glass-redesign .booking-box,
body.glass-redesign .payment-box,
body.glass-redesign .location-box {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--glass-bg);
  box-shadow: var(--glass-small-shadow);
  backdrop-filter: blur(20px) saturate(128%);
}

body.glass-redesign .hero-path {
  margin-top: 32px;
  padding: 18px;
}

body.glass-redesign .hero-path-title {
  margin: 0 0 12px;
  color: #6f6a42;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.glass-redesign .hero-path-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

body.glass-redesign .hero-path-options button,
body.glass-redesign .care-buttons button,
body.glass-redesign .evidence-step-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
  color: #31564d;
  cursor: pointer;
}

body.glass-redesign .hero-path-options button.is-active,
body.glass-redesign .care-buttons button.is-active,
body.glass-redesign .evidence-step-tabs button.is-active {
  background: #1f5f66;
  color: #fffdf7;
}

body.glass-redesign .hero-path-result {
  margin: 12px 0 0;
  color: #46665f;
  line-height: 1.8;
}

body.glass-redesign .quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  padding: 10px;
}

body.glass-redesign .quick-facts div {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.42);
}

body.glass-redesign .quick-facts dt {
  color: #6f6a42;
  font-size: 0.75rem;
  font-weight: 800;
}

body.glass-redesign .quick-facts dd {
  margin: 2px 0 0;
  color: #173d39;
  font-weight: 800;
}

body.glass-redesign .glass-media-stack {
  position: relative;
  min-height: 660px;
}

body.glass-redesign .hero-photo img {
  width: 100%;
  height: min(68vh, 590px);
  min-height: 510px;
  object-fit: cover;
}

body.glass-redesign .glass-route-card {
  position: absolute;
  width: min(290px, 56%);
  padding: 16px;
}

body.glass-redesign .glass-route-card strong {
  display: block;
  margin-top: 8px;
  color: #143b36;
  line-height: 1.55;
}

body.glass-redesign .glass-route-card p {
  margin: 8px 0 0;
  color: #557069;
  font-size: 0.9rem;
  line-height: 1.75;
}

body.glass-redesign .route-card-woman {
  right: -10px;
  bottom: 84px;
}

body.glass-redesign .route-card-man {
  left: -18px;
  bottom: 26px;
}

body.glass-redesign .glass-section {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.glass-redesign .wide-heading,
body.glass-redesign .evidence-copy {
  max-width: 900px;
}

body.glass-redesign h2 {
  margin-top: 0;
  color: #173d39;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

body.glass-redesign h3 {
  color: #173d39;
  letter-spacing: 0;
}

body.glass-redesign .gender-route-grid article {
  overflow: hidden;
}

body.glass-redesign .gender-route-grid img,
body.glass-redesign .relief-gallery img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

body.glass-redesign .gender-route-grid article > span,
body.glass-redesign .gender-route-grid h3,
body.glass-redesign .gender-route-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

body.glass-redesign .gender-route-grid article > span {
  margin-top: 18px;
}

body.glass-redesign .gender-route-grid h3 {
  margin-top: 10px;
  line-height: 1.45;
}

body.glass-redesign .relief-gallery article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

body.glass-redesign .relief-gallery img {
  height: 330px;
}

body.glass-redesign .relief-gallery div {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(16px);
}

body.glass-redesign .relief-gallery strong {
  display: block;
  color: #173d39;
  line-height: 1.4;
}

body.glass-redesign .evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

body.glass-redesign .evidence-metrics {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

body.glass-redesign .evidence-metric,
body.glass-redesign .evidence-metrics > * {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.55);
  padding: 16px;
}

body.glass-redesign .evidence-explorer {
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(128%);
}

body.glass-redesign .evidence-flow-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

body.glass-redesign .evidence-flow-map article {
  padding: 14px;
}

body.glass-redesign .evidence-flow-map i {
  align-self: center;
  width: 24px;
  height: 1px;
  background: rgba(29, 92, 85, 0.24);
}

body.glass-redesign .evidence-step-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

body.glass-redesign .evidence-detail {
  margin-top: 12px;
  padding: 18px;
}

body.glass-redesign .evidence-source-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #5a6f68;
  font-size: 0.88rem;
}

body.glass-redesign .care-switcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

body.glass-redesign .care-image-stage {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
}

body.glass-redesign .care-image-stage img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

body.glass-redesign .care-control-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

body.glass-redesign .care-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.glass-redesign .care-buttons button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px;
  text-align: left;
}

body.glass-redesign .care-buttons span {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

body.glass-redesign .care-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3.3vw, 36px);
}

body.glass-redesign .care-copy-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.22;
}

body.glass-redesign .service-set {
  margin-top: 26px;
  padding: clamp(18px, 3vw, 28px);
}

body.glass-redesign .service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.glass-redesign .service-step {
  padding: 16px;
}

body.glass-redesign .pricing-section .plan-grid,
body.glass-redesign .blog-grid,
body.glass-redesign .sns-grid,
body.glass-redesign .addon-strip,
body.glass-redesign .faq-list {
  margin-top: 24px;
}

body.glass-redesign .register-section,
body.glass-redesign .split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

body.glass-redesign .register-form,
body.glass-redesign .member-login-card {
  padding: clamp(18px, 3vw, 28px);
}

body.glass-redesign input,
body.glass-redesign select,
body.glass-redesign textarea {
  border: 1px solid rgba(23, 61, 57, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

body.glass-redesign .site-footer {
  width: min(var(--max), calc(100% - 34px));
  margin: 20px auto 0;
  border-top: 1px solid rgba(23, 61, 57, 0.1);
  background: transparent;
}

@media (max-width: 1080px) {

  body.glass-redesign .glass-media-stack {
    min-height: auto;
  }

  body.glass-redesign .hero-photo img {
    min-height: 420px;
    height: 56vh;
  }

  body.glass-redesign .glass-route-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  body.glass-redesign .evidence-flow-map {
    grid-template-columns: 1fr;
  }

  body.glass-redesign .evidence-flow-map i {
    display: none;
  }
}

@media (max-width: 820px) {
  body.glass-redesign .site-header.redesigned-header {
    min-height: 60px;
    padding: 8px 12px;
  }

  body.glass-redesign .brand-logo {
    width: 156px;
    max-width: 52vw;
  }

  body.glass-redesign .nav {
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.glass-redesign .nav::-webkit-scrollbar {
    display: none;
  }

  body.glass-redesign .nav a {
    padding: 9px 8px;
    font-size: 0.8rem;
  }

  body.glass-redesign .section,
  body.glass-redesign .section-band {
    width: min(100% - 24px, var(--max));
  }

  body.glass-redesign .glass-hero {
    min-height: auto;
    padding-top: 34px;
  }

  body.glass-redesign .care-buttons,
  body.glass-redesign .evidence-step-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.glass-redesign .site-header.redesigned-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.glass-redesign .brand-logo {
    width: 148px;
  }

  body.glass-redesign .nav {
    justify-content: flex-start;
    width: 100%;
  }

  body.glass-redesign .hero-actions,
  body.glass-redesign .sns-actions {
    display: grid;
  }

  body.glass-redesign .button {
    width: 100%;
    text-align: center;
  }
}
/* 2026-07-09 dynamic glass card alignment */
body.glass-redesign .service-summary,
body.glass-redesign .service-flow article,
body.glass-redesign .sns-grid article,
body.glass-redesign .location-box article,
body.glass-redesign .faq-list details,
body.glass-redesign .evidence-source-list,
body.glass-redesign .booking-box article,
body.glass-redesign .payment-box article {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--glass-small-shadow);
  backdrop-filter: blur(18px) saturate(126%);
}

body.glass-redesign .service-summary {
  padding: clamp(18px, 3vw, 28px);
}

body.glass-redesign .service-summary span,
body.glass-redesign .service-flow article > span,
body.glass-redesign .plan-label,
body.glass-redesign .blog-card span,
body.glass-redesign .sns-grid span,
body.glass-redesign .location-box span {
  color: #9b6b3f;
}

body.glass-redesign .service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

body.glass-redesign .service-flow article {
  overflow: hidden;
  padding: 0 0 16px;
}

body.glass-redesign .service-flow img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

body.glass-redesign .service-flow article > span,
body.glass-redesign .service-flow h3,
body.glass-redesign .service-flow p {
  margin-left: 16px;
  margin-right: 16px;
}

body.glass-redesign .service-flow article > span {
  margin-top: 16px;
}

body.glass-redesign .service-flow h3 {
  margin-top: 8px;
  margin-bottom: 6px;
}

body.glass-redesign .service-summary small,
body.glass-redesign .service-flow p,
body.glass-redesign .blog-card p,
body.glass-redesign .sns-grid p,
body.glass-redesign .faq-list p,
body.glass-redesign .location-box p {
  color: #5f746d;
}

body.glass-redesign .plan-card,
body.glass-redesign .blog-card,
body.glass-redesign .sns-grid article,
body.glass-redesign .faq-list details {
  padding: 20px;
}

body.glass-redesign .plan-card.featured {
  border-top: 0;
  background: linear-gradient(180deg, rgba(219,238,228,0.78), rgba(255,255,255,0.58));
}

body.glass-redesign .plan-card.featured .plan-label {
  background: #1f5f66;
  color: #fffdf7;
}

body.glass-redesign .faq-list summary {
  color: #173d39;
  cursor: pointer;
}

@media (max-width: 820px) {
  body.glass-redesign .service-flow {
    grid-template-columns: 1fr;
  }
}

/* Admin pages: keep the title/brand and ellipsis on one row.
   The navigation opens as a compact page switcher on every viewport. */
body[data-page="admin-members"] .site-header.junpa-header,
body[data-page="admin-business-plan"] .site-header.junpa-header,
body[data-page="admin-blog"] .site-header.junpa-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 64px;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  padding: 8px max(16px, calc((100vw - var(--max)) / 2));
  border-width: 0 0 1px;
  border-radius: 0;
}

body[data-page="admin-members"] .site-header.junpa-header .brand-logo-link,
body[data-page="admin-business-plan"] .site-header.junpa-header .brand-logo-link,
body[data-page="admin-blog"] .site-header.junpa-header .brand-logo-link {
  min-width: 0;
  flex: 1 1 auto;
}

body[data-page="admin-members"] .site-header.junpa-header .menu-toggle,
body[data-page="admin-business-plan"] .site-header.junpa-header .menu-toggle,
body[data-page="admin-blog"] .site-header.junpa-header .menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  margin-left: auto;
  padding: 0 0 7px;
  border: 1px solid rgba(36, 67, 49, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 47, 35, 0.08);
}

body[data-page="admin-members"] .site-header.junpa-header .nav,
body[data-page="admin-business-plan"] .site-header.junpa-header .nav,
body[data-page="admin-blog"] .site-header.junpa-header .nav {
  position: absolute;
  top: calc(100% + 8px);
  right: max(12px, calc((100vw - var(--max)) / 2));
  display: grid;
  width: min(320px, calc(100vw - 24px));
  max-height: 0;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 0;
  overflow: hidden;
  border: 0 solid rgba(36, 67, 49, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 18px 42px rgba(18, 63, 70, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height 220ms ease, opacity 160ms ease, padding 180ms ease, transform 180ms ease;
}

body[data-page="admin-members"] .site-header.junpa-header.is-menu-open .nav,
body[data-page="admin-business-plan"] .site-header.junpa-header.is-menu-open .nav,
body[data-page="admin-blog"] .site-header.junpa-header.is-menu-open .nav {
  max-height: 72vh;
  padding: 8px;
  overflow-y: auto;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body[data-page="admin-members"] .site-header.junpa-header .nav a,
body[data-page="admin-business-plan"] .site-header.junpa-header .nav a,
body[data-page="admin-blog"] .site-header.junpa-header .nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(36, 67, 49, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

/* Blog image generation and article layout */
.blog-card-media,
.blog-article-hero,
.blog-section-figure,
.blog-admin-card-media,
.blog-studio-thumb {
  overflow: hidden;
  background: #edf4ef;
}

.blog-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  border-radius: 8px;
}

.blog-card-media img,
.blog-article-hero img,
.blog-section-figure img,
.blog-admin-card-media img,
.blog-studio-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-article-body {
  display: grid;
  gap: 22px;
  margin-top: 16px;
}

.blog-article-hero,
.blog-section-figure {
  margin: 0;
  border-radius: 8px;
}

.blog-article-hero {
  aspect-ratio: 16 / 9;
}

.blog-section-figure {
  aspect-ratio: 16 / 10;
}

.blog-article-hero figcaption,
.blog-section-figure figcaption {
  margin-top: 8px;
  color: #66756d;
  font-size: 0.88rem;
  line-height: 1.6;
}

.blog-section-block {
  display: grid;
  gap: 10px;
}

.blog-section-block h2 {
  margin: 0;
  color: var(--junpa-deep, var(--green-dark));
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.blog-section-subtitle {
  margin: 0;
  color: #5f746d;
  font-weight: 800;
}

.blog-small-photo {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  color: #66756d;
  font-size: 0.9rem;
}

.blog-small-photo-image {
  width: 92px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-admin-card-media {
  flex: 0 0 132px;
  width: 132px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.blog-admin-card small {
  display: block;
  margin-top: 8px;
  color: #66756d;
  font-weight: 800;
}

.blog-studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(63, 107, 77, 0.18);
  border-radius: 8px;
  background: rgba(240, 247, 242, 0.78);
}

.blog-studio-panel span,
.blog-studio-preview-card span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--junpa-teal, var(--green-dark));
  font-weight: 900;
}

.blog-studio-panel h2 {
  margin: 0 0 6px;
  color: var(--junpa-deep, var(--green-dark));
  font-size: 1.15rem;
}

.blog-studio-panel p {
  margin: 0;
}

.blog-studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.blog-title-hints {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.blog-title-hints-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  justify-content: space-between;
}

.blog-title-hints-head span {
  margin: 0;
}

.blog-title-hints-head small,
.blog-title-hint small {
  color: #66756d;
  font-weight: 800;
  line-height: 1.6;
}

.blog-title-hint {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(63, 107, 77, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--junpa-deep, var(--green-dark));
  cursor: pointer;
  text-align: left;
}

.blog-title-hint:hover,
.blog-title-hint:focus-visible {
  border-color: rgba(36, 67, 49, 0.42);
  background: rgba(255, 255, 255, 0.95);
}

.blog-title-hint > span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(63, 107, 77, 0.12);
  font-size: 0.82rem;
}

.blog-title-hint strong {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.blog-studio-preview {
  grid-column: 1 / -1;
}

.blog-studio-preview-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
}

.blog-studio-thumb {
  grid-row: span 4;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.blog-studio-preview-card h3,
.blog-studio-preview-card p {
  margin: 0;
}

.blog-studio-preview-card small {
  color: #66756d;
  font-weight: 900;
}

.blog-opinion-research {
  border-left: 3px solid rgba(63, 107, 77, 0.36);
  padding-left: 12px;
}

.blog-opinion-research p {
  margin: 8px 0 0;
}

.top-blog-card {
  padding-right: 22px;
}

.top-blog-card::after {
  display: none;
}

@media (max-width: 760px) {
  .blog-studio-panel,
  .blog-studio-preview-card {
    grid-template-columns: 1fr;
  }

  .blog-admin-card-media {
    width: 100%;
    flex-basis: auto;
  }

  .blog-small-photo {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .blog-small-photo-image {
    width: 76px;
    height: 56px;
  }
}

/* 2026-07-10 Junpa layout recovery after removing HIRO */
body.glass-redesign {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(244, 250, 246, 0.96)),
    repeating-linear-gradient(0deg, rgba(31, 95, 102, 0.035) 0 1px, transparent 1px 92px);
}

body.glass-redesign main {
  overflow: visible;
}

body.glass-redesign .section,
body.glass-redesign .section-band {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

body.glass-redesign .section {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

body.glass-redesign .glass-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 44px);
  min-height: auto;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(31, 95, 102, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.78);
  box-shadow: 0 18px 48px rgba(31, 70, 64, 0.08);
  backdrop-filter: blur(18px) saturate(128%);
}

body.glass-redesign .hero-copy {
  max-width: 640px;
}

body.glass-redesign .hero-copy h1,
body.glass-redesign h2 {
  letter-spacing: 0;
}

body.glass-redesign .hero-copy h1 {
  max-width: 11.5em;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.05rem);
  line-height: 1.08;
}

body.glass-redesign .lead {
  max-width: 42em;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.9;
}

body.glass-redesign .hero-actions {
  margin-top: 20px;
}

body.glass-redesign .hero-path {
  margin-top: 22px;
  padding: 16px;
}

body.glass-redesign .hero-path-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.glass-redesign .quick-facts {
  margin-top: 12px;
}

body.glass-redesign .glass-media-stack {
  display: grid;
  gap: 12px;
  min-height: 0;
}

body.glass-redesign .hero-photo {
  min-height: 0;
  border-radius: 8px;
  box-shadow: none;
}

body.glass-redesign .hero-photo img,
body.glass-redesign .redesign-hero-media .hero-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.glass-redesign .glass-route-card {
  position: static;
  width: auto;
  margin: 0;
  padding: 14px;
}

body.glass-redesign .glass-route-card strong {
  margin-top: 4px;
  line-height: 1.45;
}

body.glass-redesign .glass-route-card p {
  margin-top: 5px;
  line-height: 1.6;
}

body.glass-redesign h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.05rem);
  line-height: 1.18;
}

body.glass-redesign .section-heading,
body.glass-redesign .wide-heading,
body.glass-redesign .evidence-copy {
  max-width: 760px;
}

body.glass-redesign .section-heading p,
body.glass-redesign .wide-heading p,
body.glass-redesign .evidence-copy > p,
body.glass-redesign .split-copy p,
body.glass-redesign .register-copy p {
  max-width: 44em;
  line-height: 1.85;
}

body.glass-redesign .gender-route-grid,
body.glass-redesign .relief-gallery,
body.glass-redesign .service-flow,
body.glass-redesign .pricing-section .plan-grid,
body.glass-redesign .blog-grid,
body.glass-redesign .sns-grid {
  gap: 16px;
}

body.glass-redesign .gender-route-grid img,
body.glass-redesign .relief-gallery img,
body.glass-redesign .service-flow img {
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.glass-redesign .relief-gallery article {
  min-height: 0;
}

body.glass-redesign .evidence-section,
body.glass-redesign .care-switcher,
body.glass-redesign .register-section,
body.glass-redesign .split-section {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(20px, 4vw, 42px);
}

body.glass-redesign .evidence-flow-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.glass-redesign .evidence-flow-map i {
  display: none;
}

body.glass-redesign .care-image-stage,
body.glass-redesign .care-image-stage img {
  min-height: 0;
}

body.glass-redesign .care-image-stage img {
  aspect-ratio: 4 / 3;
}

body.glass-redesign .care-buttons {
  grid-template-columns: 1fr;
}

body.glass-redesign .care-buttons button {
  min-height: 56px;
}

body.glass-redesign .care-copy-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

body.glass-redesign .service-set-section,
body.glass-redesign .pricing-section,
body.glass-redesign .blog-section,
body.glass-redesign .sns-section,
body.glass-redesign .faq-section {
  padding-top: clamp(38px, 5vw, 62px);
}

body.glass-redesign .service-set {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.glass-redesign .register-form,
body.glass-redesign .member-login-card,
body.glass-redesign .booking-box,
body.glass-redesign .payment-box,
body.glass-redesign .location-box,
body.glass-redesign .blog-card,
body.glass-redesign .plan-card,
body.glass-redesign .sns-grid article,
body.glass-redesign .faq-list details {
  border-radius: 8px;
}

body.glass-redesign .blog-card details[open] {
  display: block;
}

body.glass-redesign .site-footer {
  padding-bottom: 32px;
}

@media (max-width: 900px) {
  body.glass-redesign .glass-hero,
  body.glass-redesign .evidence-section,
  body.glass-redesign .care-switcher,
  body.glass-redesign .register-section,
  body.glass-redesign .split-section {
    grid-template-columns: 1fr;
  }

  body.glass-redesign .glass-hero {
    padding: 24px;
  }

  body.glass-redesign .glass-media-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  body.glass-redesign .hero-photo {
    grid-column: 1 / -1;
  }

  body.glass-redesign .evidence-flow-map,
  body.glass-redesign .service-steps,
  body.glass-redesign .service-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.glass-redesign .site-header.redesigned-header {
    position: sticky;
  }

  body.glass-redesign .section,
  body.glass-redesign .section-band {
    width: min(100% - 22px, 1120px);
  }

  body.glass-redesign .glass-hero {
    padding: 18px;
  }

  body.glass-redesign .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  body.glass-redesign .hero-path-options,
  body.glass-redesign .quick-facts,
  body.glass-redesign .glass-media-stack,
  body.glass-redesign .gender-route-grid,
  body.glass-redesign .relief-gallery,
  body.glass-redesign .pricing-section .plan-grid,
  body.glass-redesign .blog-grid,
  body.glass-redesign .sns-grid,
  body.glass-redesign .addon-strip {
    grid-template-columns: 1fr;
  }

  body.glass-redesign .hero-path-options button,
  body.glass-redesign .care-buttons button {
    min-height: 48px;
  }
}
.blog-generation-details { margin-top:12px; padding:12px; border:1px solid rgba(36,67,49,.18); border-radius:8px; background:#fff; }
.blog-generation-details summary { cursor:pointer; font-weight:800; }
.blog-generation-details label { display:grid; gap:4px; margin-top:8px; font-size:12px; font-weight:800; }
.blog-generation-details textarea { width:100%; padding:8px; border:1px solid rgba(36,67,49,.18); border-radius:6px; background:#f7faf7; font:inherit; font-size:12px; }
.blog-generation-details p { margin:8px 0 0; font-size:12px; }

/* Blog / Reel App Server workflow */
.app-server-flow { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:6px; margin:14px 0; }
.app-server-flow span { padding:8px 6px; border-radius:999px; background:rgba(36,67,49,.08); color:#244331; text-align:center; font-size:11px; font-weight:800; }
.app-server-research { margin:14px 0; padding:14px; border:1px solid rgba(36,67,49,.16); border-radius:12px; background:#f7faf7; }
.app-server-research:empty,.blog-outline-groups:empty,.reel-concepts:empty,.reel-preview:empty { display:none; }
.app-server-research-head,.reel-preview-head { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.app-server-research-head span { color:#7d5f31; font-size:11px; font-weight:800; }
.app-server-research p { margin:8px 0; line-height:1.75; white-space:pre-wrap; }
.app-server-research small { display:block; color:#7d5f31; }
.app-server-sources { display:flex; flex-wrap:wrap; gap:6px; margin:8px 0; }
.app-server-sources a { padding:5px 8px; border-radius:999px; background:#fff; color:#244331; font-size:11px; font-weight:700; text-decoration:none; }
.blog-outline-groups { display:grid; gap:10px; margin-top:16px; }
.blog-outline-group,.reel-concept { width:100%; padding:14px; border:1px solid rgba(36,67,49,.16); border-radius:12px; background:#fff; color:#24372d; text-align:left; cursor:pointer; }
.blog-outline-group.is-selected,.reel-concept.is-selected { border:2px solid #4f765f; padding:13px; background:#eff6f1; box-shadow:0 8px 24px rgba(36,67,49,.08); }
.blog-outline-group>span,.reel-concept>span { display:inline-grid; place-items:center; width:24px; height:24px; margin-right:8px; border-radius:50%; background:#244331; color:#fff; font-size:11px; }
.blog-outline-group strong,.reel-concept strong { font-size:15px; }
.blog-outline-group small,.reel-concept small { display:block; margin:6px 0; color:#617069; }
.blog-outline-group ol { margin:8px 0 0; padding-left:22px; line-height:1.75; }
.blog-title-review { padding:10px; border-left:3px solid #4f765f; background:#f2f7f3; }
.blog-studio-preview-card .blog-article-body { margin:18px 0; padding:clamp(16px,4vw,34px); border:1px solid rgba(36,67,49,.12); background:#fff; }
.blog-studio-preview-card .blog-article-hero { margin-top:0; }
.reel-app-panel { margin-top:22px; }
.account-status { display:inline-flex; align-items:center; width:max-content; padding:7px 10px; border-radius:999px; font-size:11px; font-weight:800; }
.account-status-warning { background:#fff0d9; color:#85541f; }
.reel-concepts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin:16px 0; }
.reel-concept p { margin:10px 0; font-weight:800; line-height:1.55; }
.reel-preview { margin-top:18px; padding-top:18px; border-top:1px solid rgba(36,67,49,.16); }
.reel-preview-head h3 { margin:4px 0 0; }
.reel-phone-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin:16px 0; }
.reel-phone-frame { aspect-ratio:9/16; min-width:0; padding:10px; border-radius:18px; background:linear-gradient(160deg,#3e5c4b,#b99263); color:#fff; box-shadow:0 10px 24px rgba(23,39,30,.18); }
.reel-safe-area { height:100%; padding:12% 8%; border:1px dashed rgba(255,255,255,.45); display:flex; flex-direction:column; justify-content:space-between; text-align:center; }
.reel-safe-area>span,.reel-safe-area>small { font-size:9px; color:rgba(255,255,255,.78); overflow-wrap:anywhere; }
.reel-safe-area>strong { font-size:clamp(12px,1.5vw,22px); line-height:1.5; color:#fff; text-shadow:-1px -1px 0 #111,1px -1px 0 #111,-1px 1px 0 #111,1px 1px 0 #111; }
.reel-copy-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.reel-copy-grid textarea { width:100%; }
.reel-preview-actions { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0; }
.reel-approval { padding:14px; border:1px solid #d7bc8e; border-radius:12px; background:#fffaf0; }
.reel-approval ul { margin:8px 0; padding-left:20px; line-height:1.7; }
.reel-approval p { margin:8px 0 0; font-weight:800; color:#85541f; }
@media (max-width: 900px) { .reel-concepts { grid-template-columns:1fr; } .reel-phone-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) { .app-server-flow { grid-template-columns:1fr; } .app-server-flow span { text-align:left; } .reel-phone-grid,.reel-copy-grid { grid-template-columns:1fr; } .reel-phone-frame { max-width:280px; margin:auto; } .reel-preview-head { align-items:flex-start; flex-direction:column; } .reel-preview-head .account-status { width:100%; max-width:100%; white-space:normal; overflow-wrap:anywhere; } }

/* Admin navigation switches to a hamburger before labels become cramped. */
@media (min-width: 761px) and (max-width: 980px) {
  body[data-page^="admin"] .site-header.junpa-header {
    position: sticky;
    top: 0;
    flex-wrap: nowrap;
    min-height: 64px;
    padding-inline: max(18px, calc((100vw - var(--max)) / 2));
    overflow: visible;
  }

  body[data-page^="admin"] .site-header.junpa-header .brand-logo {
    width: 188px;
    max-width: 54vw;
  }

  body[data-page^="admin"] .site-header.junpa-header .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(18, 63, 70, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--junpa-deep, var(--green-dark));
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 63, 70, 0.1);
  }

  body[data-page^="admin"] .site-header.junpa-header .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 160ms ease;
  }

  body[data-page^="admin"] .site-header.junpa-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body[data-page^="admin"] .site-header.junpa-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body[data-page^="admin"] .site-header.junpa-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body[data-page^="admin"] .site-header.junpa-header .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: max(16px, calc((100vw - var(--max)) / 2));
    display: grid;
    width: min(320px, calc(100vw - 32px));
    max-height: 0;
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 0;
    padding: 0 8px;
    overflow: hidden;
    border: 0 solid rgba(18, 63, 70, 0.16);
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: 0 18px 46px rgba(18, 63, 70, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: max-height 220ms ease, opacity 160ms ease, padding 180ms ease, transform 180ms ease;
  }

  body[data-page^="admin"] .site-header.junpa-header.is-menu-open .nav {
    max-height: 72vh;
    padding: 8px;
    overflow-y: auto;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body[data-page^="admin"] .site-header.junpa-header .nav a {
    width: 100%;
    padding: 12px 13px;
    border-radius: 11px;
    text-align: left;
  }
}

@media (max-width: 980px) {
  body[data-page^="admin"] .site-header.junpa-header .nav form {
    width: 100%;
  }

  body[data-page^="admin"] .site-header.junpa-header .nav form button {
    width: 100%;
    border: 0 !important;
    border-radius: 11px !important;
    padding: 12px 13px !important;
    background: transparent !important;
    text-align: left;
  }
}
.junpa-header .menu-toggle {
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
