:root {
  --c-red: #D85F5C;
  --c-yellow: #E8C32F;
  --c-teal: #4FB7C5;
  --c-purple: #8D5A8B;
  --c-gray: #A8A8A8;
  --c-green: var(--c-teal);
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --surface: #ffffff;
  --ink: #2C2416;
  --ink-soft: #555148;
  --ink-mute: #8a8478;
  --line: #EDE8E0;
  --brand: #4FB7C5;
  --brand-deep: #3A8E9D;
  --brand-soft: #d8eef2;
  --cta: #D85F5C;
  --cta-deep: #B84743;
  --accent: #E8C32F;
  --accent-warm: #D85F5C;
  --accent-cool: #8D5A8B;
  --danger: #D85F5C;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(31, 42, 35, 0.06), 0 2px 6px rgba(31, 42, 35, 0.04);
  --shadow: 0 6px 24px rgba(31, 42, 35, 0.08);
  --shadow-lg: 0 18px 48px rgba(31, 42, 35, 0.12);
  --font-sans: Zen Kaku Gothic New, Noto Sans JP, system-ui, -apple-system, sans-serif;
  --font-display: Zen Kaku Gothic New, Noto Sans JP, serif;
  --font-mono: JetBrains Mono, Roboto Mono, ui-monospace, monospace;
  --density: 1;
}

[data-theme=bold] {
  --bg: #f4f1ea;
  --bg-soft: #ebe7dc;
  --ink: #14140f;
  --ink-soft: #3a3a32;
  --ink-mute: #6a6a5e;
  --line: #d9d4c4;
  --brand: #14140f;
  --brand-deep: #000000;
  --brand-soft: #e5e0cf;
  --accent: #b9e34a;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

.lp {
  background: var(--bg);
}

.lp > .section,
.lp > .footer {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 80px 28px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 56px 18px;
  }
}

.section-eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin: 0 0 8px;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin: 0 0 36px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.section-title b {
  color: var(--brand);
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: clamp(20px, 5.4vw, 24px);
    margin-bottom: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform 0.12s, background 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--cta);
  color: white;
  box-shadow: 0 2px 0 var(--cta-deep);
}
.btn-primary:hover {
  background: var(--cta-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
img.is-illust {
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.site-header {
  background: white;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 12px 16px;
  }
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .logo-img {
    height: 32px;
  }
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a {
  color: var(--ink);
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand);
}
@media screen and (max-width: 767px) {
  .main-nav {
    display: none;
  }
}

.header-cta {
  background: var(--cta);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--cta-deep);
}
@media screen and (max-width: 767px) {
  .header-cta {
    font-size: 11px;
    padding: 8px 12px;
    letter-spacing: 0;
  }
}

.hero {
  padding: 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  min-height: 560px;
}
@media screen and (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 18px 20px;
    min-height: 0;
    align-content: start;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 48px 32px 48px max(28px, (100vw - 1080px) / 2);
}
@media screen and (max-width: 767px) {
  .hero-copy {
    order: 2;
    padding: 0;
  }
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  color: var(--ink);
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .hero-copy h1 {
    font-size: clamp(20px, 5.4vw, 26px);
    margin-bottom: 10px;
    line-height: 1.4;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
@media screen and (max-width: 767px) {
  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }
}

.hero-lead {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  line-height: 1.85;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .hero-lead {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .hero-ctas {
    margin-top: 8px;
  }
  .hero-ctas .btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.hero-art {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-soft);
  margin-left: -80px;
}
.hero-art .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, color-mix(in srgb, var(--bg) 92%, transparent) 6%, color-mix(in srgb, var(--bg) 60%, transparent) 16%, color-mix(in srgb, var(--bg) 20%, transparent) 28%, transparent 42%);
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .hero-art {
    order: 1;
    height: 38vh;
    max-height: 320px;
    min-height: 0;
    margin-left: 0;
    border-radius: var(--radius);
  }
  .hero-art::after {
    display: none;
  }
  .hero-art .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.learn-banner {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  margin: 0 0 32px;
  object-fit: cover;
  display: block;
}

.learn-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--ink);
  font-size: 15px;
  line-height: 2;
  text-align: left;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}
.learn-intro > p {
  margin: 0 0 1.6em;
  color: var(--ink);
}
.learn-intro > p.muted {
  margin: 0 0 1.8em;
  color: var(--ink-soft);
}
.learn-intro > p.muted:last-child {
  margin-bottom: 0;
}
.learn-intro > h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 0.6em;
  color: var(--c-purple);
  line-height: 1.6;
  text-align: center;
}

.learn-intro-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  margin: 1em 0 1.4em;
  object-fit: cover;
  display: block;
}

.learn-steps-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--c-purple);
  line-height: 1.6;
  text-align: center;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .learn-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.learn-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.learn-img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .learn-img {
    aspect-ratio: 16/9;
  }
}

.learn-body {
  padding: 18px 20px 22px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .learn-body {
    padding: 16px;
  }
}

.learn-step {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 6px;
}

.learn-card:nth-child(1) .learn-step {
  color: var(--c-green);
}

.learn-card:nth-child(2) .learn-step {
  color: var(--c-yellow);
}

.learn-card:nth-child(3) .learn-step {
  color: var(--c-red);
}

.learn-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.learn-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.8;
}

.points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.point {
  display: grid;
  grid-template-columns: 80px 220px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
@media screen and (max-width: 767px) {
  .point {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.point-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}
.point-num b {
  font-size: 22px;
  display: block;
  font-family: var(--font-display);
}

.point:nth-child(1) .point-num {
  color: var(--c-green);
  border-color: var(--c-green);
}

.point:nth-child(2) .point-num {
  color: var(--c-yellow);
  border-color: var(--c-yellow);
}

.point:nth-child(3) .point-num {
  color: var(--c-purple);
  border-color: var(--c-purple);
}

.point-img {
  width: 220px;
  aspect-ratio: 4/3;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .point-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.point-body h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.point-body p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.flow-duration {
  text-align: center;
  margin: -16px 0 32px;
}
.flow-duration > span {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 2px;
}

.flow {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.flow-row {
  display: grid;
  grid-template-columns: 90px 36px 200px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.flow-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .flow-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 16px 18px;
  }
  .flow-row .flow-icon {
    display: none;
  }
  .flow-row .flow-step {
    grid-column: 1;
    grid-row: 1;
  }
  .flow-row .flow-title {
    grid-column: 2;
    grid-row: 1;
  }
  .flow-row .flow-desc {
    grid-column: 1/-1;
    grid-row: 2;
    font-size: 13px;
  }
}

.flow-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.flow-step b {
  font-size: 16px;
  display: block;
  color: var(--ink);
}

.flow-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.flow-title {
  font-size: 15px;
  font-weight: 700;
}

.flow-desc {
  font-size: 13px;
  color: var(--ink-soft);
}

.place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .place {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.place-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.place-info h2 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
}
.place-info p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.place-meta {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.place-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.place-meta-row svg {
  color: var(--brand);
  flex-shrink: 0;
}
.place-meta-row a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.place-map {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  height: auto;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .place-map iframe {
    aspect-ratio: 16/10;
  }
}

.event-card {
  margin: 0 28px;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .event-card {
    padding: 22px;
    margin: 0 16px;
  }
}

.event-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  align-items: center;
}

.event-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.16em;
}

.event-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  color: var(--brand-deep);
}

.event-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .event-title {
    font-size: 18px;
  }
}

.event-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.event-target {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

.event-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-right .event-date {
  text-align: center;
}
.event-right .slot {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.event-right .event-note {
  text-align: center;
}

.event-date {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.event-date small {
  font-size: 16px;
  color: var(--ink-soft);
  margin-left: 8px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .event-date {
    font-size: 22px;
  }
}

.slot {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--bg);
  font-weight: 600;
  font-size: 15px;
}

.slot-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  flex-shrink: 0;
}

.event-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px 32px;
  max-width: 560px;
  margin: 0 auto;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-full {
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.field label .req {
  font-size: 10px;
  background: var(--danger);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}
.field input,
.field select {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
}
.field input.error,
.field select.error {
  border-color: var(--danger);
}
@media screen and (max-width: 767px) {
  .field input,
  .field select {
    font-size: 16px;
  }
}

.field-error {
  font-size: 11px;
  color: var(--danger);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success {
  margin-top: 20px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-thanks {
  margin: 24px 0 0;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.7;
}
.form-thanks strong {
  font-weight: 800;
}
.form-thanks svg {
  flex-shrink: 0;
}

.form-error-banner {
  margin: 24px 0 0;
  background: #fff3e0;
  color: #c66900;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
}

.mirista-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s ease;
}
.faq-item.open {
  border-color: var(--brand);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.faq-q .qmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.faq-q .toggle {
  margin-left: auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  transition: transform 0.25s;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .faq-q {
    padding: 14px 16px;
    gap: 12px;
    font-size: 14px;
  }
}

.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.faq-item.open .faq-a {
  max-height: 800px;
}

.faq-a-inner {
  padding: 0 22px 18px 60px;
}
@media screen and (max-width: 767px) {
  .faq-a-inner {
    padding: 0 16px 16px 50px;
    font-size: 12.5px;
  }
}

.about-lead {
  text-align: center;
  color: var(--ink-soft);
  margin: -24px 0 36px;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .about-img {
    aspect-ratio: 16/9;
  }
}

.about-body {
  padding: 18px 20px 22px;
}
@media screen and (max-width: 767px) {
  .about-body {
    padding: 16px;
  }
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.about-card:nth-child(1) .about-tag {
  background: var(--c-green);
}

.about-card:nth-child(2) .about-tag {
  background: var(--c-red);
}

.about-card:nth-child(3) .about-tag {
  background: var(--c-purple);
}

.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.about-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.75;
}

.cta-banner-img {
  display: block;
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.cta-banner-img:hover {
  opacity: 0.92;
}
.cta-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .cta-banner-img {
    width: 100%;
    max-width: none;
  }
}

.footer {
  margin-top: 0;
  padding: 36px 28px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 28px 18px;
  }
}
