@font-face {
  font-family: "Zen Maru Gothic";
  src: url("fonts/ZenMaruGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru Gothic";
  src: url("fonts/ZenMaruGothic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru Gothic";
  src: url("fonts/ZenMaruGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-text: #222222;
  --color-muted: #5e5e5e;
  --color-border: #e5dcd5;
  --color-bg: #fffaf7;
  --color-surface: #ffffff;
  --color-accent: #1e6fa8;
  --color-accent-dark: #155c8e;
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-hand: "Zen Maru Gothic", system-ui, sans-serif;
  --container: 1120px;
  --measure: 720px;
}

* {
  box-sizing: border-box;
}

html {
  line-break: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 82px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font-family: var(--font-base);
}

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

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

.narrow {
  max-width: var(--measure);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px 20px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-logo {
  display: inline-grid;
  gap: 7px;
  min-width: 0;
}

.site-logo__main {
  position: relative;
  width: fit-content;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
}

.site-logo__main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--color-accent);
  transform: rotate(-2deg);
}

.site-logo__sub {
  display: block;
  width: 160px;
  height: auto;
  margin-top: 4px;
  width: 50%;
}

.site-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 64px);
  padding: 95px 0;
}

.hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
  width: min(100%, 720px);
  padding: 0;
  color: var(--color-text);
  text-shadow: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-surface);
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.hero h1 {
  display: grid;
  gap: 4px;
  max-width: 860px;
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(2.1rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero h1 span {
  width: fit-content;
  max-width: 100%;
  padding: 0.02em 0.16em 0.1em;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-accent);
}

.hero__lead {
  max-width: 640px;
  margin: 18px 0 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  display: grid;
  place-items: center;
  width: 130px;
  aspect-ratio: 1;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  text-shadow: none;
  text-align: center;
  place-content: center;
  gap: 4px;
}

.hero__badges strong {
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__badges span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.hero__actions {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-shadow: none;
}

.button--accent {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.button--accent:hover {
  background: var(--color-accent-dark);
}

.button--plain {
  background: var(--color-surface);
}

.hero__actions .button--accent {
  display: inline-flex;
}

.hero__note {
  margin: 14px 0 0;
  width: fit-content;
  max-width: 640px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.section {
  padding: 68px 0;
  background: var(--color-surface);
}

.section--soft {
  background: var(--color-bg);
}

.intro {
  padding-top: 84px;
}

.intro__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-word {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: clamp(1.75rem, 7.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-word small {
  color: var(--color-text);
  font-size: 0.72em;
}

.brand-word::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -10px;
  height: 3px;
  background: var(--color-accent);
  transform: rotate(-2deg);
}

.intro__text {
  max-width: 740px;
  margin: 38px 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.intro__text span {
  display: inline;
}

.features {
  display: grid;
  gap: 18px;
  width: min(100%, 900px);
  margin-top: 44px;
}

.feature,
.life-card,
.subsidy,
.faq-list {
  background: var(--color-surface);
}

.feature {
  padding: 24px;
  background: transparent;
  text-align: left;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border: 0;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.feature__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.feature h2,
.life-card h3,
.flow h3,
.bottom-cta h2 {
  margin: 0;
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1.45;
}

.feature h2 {
  font-size: 20px;
  text-align: center;
}

.feature p,
.life-card p,
.flow p,
.section-lead,
.check-list,
dd,
details p,
.bottom-cta p {
  color: var(--color-muted);
}

.feature p {
  margin: 14px 0 0;
  font-size: 14px;
}

.section-heading {
  max-width: var(--measure);
  margin-bottom: 34px;
}

.section-title {
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
}

.section-lead {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.island-layout {
  display: grid;
  gap: 34px;
  margin-bottom: 34px;
}

.island-copy {
  max-width: var(--measure);
}

.island-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 0;
  background: var(--color-bg);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

.map-panel {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 32px;
  border: 0;
  background: var(--color-bg);
}

.map-panel p {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.area-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border-top: 0;
}

.area-list div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.area-list dt {
  font-family: var(--font-hand);
  font-size: 22px;
}

.area-list dd {
  line-height: 1.85;
}

.life-grid {
  display: grid;
  gap: 18px;
}

.life-card {
  display: grid;
}

.photo-slot {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 24px;
  background-position: center;
  background-size: cover;
}

.photo-slot--stay {
  background-image: url("images/stay-room.webp");
  background-position: center 42%;
}

.photo-slot--market {
  background-image: url("images/local-market.webp");
  background-position: center 45%;
}

.photo-slot--people {
  background-image: url("images/local-people.webp");
  background-position: center 42%;
}

.life-card h3,
.life-card p {
  padding-inline: 20px;
}

.life-card h3 {
  padding-top: 22px;
  font-size: 20px;
}

.life-card p {
  margin: 12px 0 0;
  padding-bottom: 22px;
  font-size: 14px;
}

.split {
  display: grid;
  gap: 30px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.host-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.host-list li {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--color-surface);
}

.host-card__photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.host-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.host-card__photo span {
  color: var(--color-muted);
  font-family: var(--font-hand);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.host-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.host-card__head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px;
  align-items: center;
}

.host-card__head span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1;
}

.host-list strong {
  font-family: var(--font-hand);
  font-size: 21px;
  line-height: 1.45;
}

.host-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.condition-layout {
  display: grid;
  gap: 20px;
}

.subsidy {
  padding: 24px;
  background: var(--color-bg);
}

.subsidy__label {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-weight: 800;
}

.subsidy h3 {
  display: flex;
  align-items: baseline;
  gap: 0.04em;
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: clamp(3rem, 14vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
}

.subsidy h3 span {
  font-size: 0.42em;
  line-height: 1;
}

.subsidy p:last-child {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.info-list {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.info-list div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

dt {
  color: var(--color-accent);
  font-weight: 800;
}

dd {
  margin: 0;
  font-size: 14px;
}

.flow {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.flow li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.flow span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--color-bg);
  border-radius: 999px;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1;
}

.flow h3 {
  font-size: 19px;
}

.flow p {
  margin: 8px 0 0;
  font-size: 14px;
}

.flow__image {
  width: 112px;
  margin: 0;
}

.flow__image img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-list {
  background: var(--color-surface);
}

details {
  border-top: 1px solid var(--color-border);
}

details:first-child {
  border-top: 0;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--color-accent);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 14px;
}

.bottom-cta {
  padding: 76px 0;
  background: var(--color-surface);
  border-top: 0;
  text-align: center;
}

.bottom-cta .section-label {
  color: var(--color-accent);
}

.bottom-cta h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.bottom-cta p {
  margin: 18px 0 28px;
}

.site-footer {
  padding: 32px 20px 112px;
  border-top: 1px solid var(--color-border);
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer__name {
  color: #fff;
  font-family: var(--font-hand);
  font-weight: 700;
}

.mobile-sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky .button {
  width: 100%;
}

.form-page {
  padding-bottom: 0;
  background: var(--color-bg);
}

.form-page .site-header {
  position: static;
}

.form-hero {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.form-hero__inner {
  max-width: 820px;
}

.form-hero h1 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.16;
}

.form-hero p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.9;
}

.form-section {
  background: var(--color-bg);
}

.form-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.consult-form,
.form-side {
  border: 0;
  background: var(--color-surface);
}

.consult-form {
  display: grid;
  gap: 0;
}

.consult-form fieldset {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 24px 20px 28px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.consult-form legend,
.form-side h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.field,
.consent {
  display: grid;
  gap: 8px;
}

.field span,
.consent span {
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.5;
}

.field strong {
  display: inline-block;
  margin-left: 6px;
  color: #ee4200;
  font-size: 12px;
  line-height: 1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font: inherit;
  line-height: 1.6;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(30, 111, 168, 0.2);
  outline-offset: 0;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field--output {
  align-content: start;
}

.field--output output {
  display: grid;
  align-items: center;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-muted);
  font-weight: 700;
}

.consent {
  grid-template-columns: 24px 1fr;
  align-items: start;
  padding: 22px 20px;
  border-bottom: 1px solid var(--color-border);
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 5px 0 0;
  accent-color: var(--color-accent);
}

.terms-details {
  padding: 0;
  border-top: 0;
  border-bottom: 1px solid var(--color-border);
}

.terms-details summary {
  padding: 20px;
  color: #ee4200;
  font-family: var(--font-hand);
  font-size: 18px;
}

.terms-details__body {
  display: grid;
  gap: 18px;
  padding: 0 20px 22px;
}

.terms-details__body section {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.terms-details__body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.terms-details__body ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.25em;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.form-actions {
  display: grid;
  gap: 14px;
  padding: 22px 20px 24px;
}

.form-actions .button {
  width: 100%;
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-actions p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-weight: 700;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-type="success"] {
  border-color: rgba(30, 111, 168, 0.35);
  color: var(--color-accent-dark);
}

.form-status[data-type="error"] {
  border-color: rgba(238, 66, 0, 0.35);
  color: #b53200;
}

.form-side {
  padding: 22px 20px;
}

.form-side ol {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-border);
}

.form-side li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.form-side span {
  color: var(--color-accent);
  font-family: var(--font-hand);
  font-weight: 700;
}

.form-side p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.8;
}

@media (min-width: 640px) {
  .hero__actions {
    display: flex;
    max-width: none;
  }

  .field-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  }

  .form-actions {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 48px;
  }

  .site-logo__main {
    font-size: 25px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 800;
  }

  .hero__inner {
    align-items: end;
    min-height: calc(100svh - 72px);
    padding: 54px 0;
  }

  .hero__copy {
    width: min(68vw, 820px);
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 5rem);
    line-height: 1.16;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.85;
  }

  .intro__text span {
    display: block;
  }

  .hero__actions .button--accent {
    display: inline-flex;
  }

  .section {
    padding: 96px 0;
  }

  .intro {
    padding-top: 104px;
  }

  .features,
  .life-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .island-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: 64px;
    margin-bottom: 44px;
  }

  .area-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    border-left: 0;
  }

  .area-list div {
    padding: 22px;
    border-right: 0;
  }

  .split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 64px;
  }

  .host-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .host-list li {
    grid-column: span 2;
    align-content: start;
  }

  .host-list li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .host-list strong {
    font-size: 24px;
  }

  .condition-layout {
    grid-template-columns: 340px 1fr;
    align-items: start;
    gap: 42px;
  }

  .info-list div {
    grid-template-columns: 150px 1fr;
    gap: 28px;
    padding: 22px 0;
  }

  .flow li {
    grid-template-columns: 82px minmax(0, 1fr) 190px;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
  }

  .flow span {
    width: 48px;
    height: 48px;
  }

  .flow__image {
    justify-self: end;
    width: 190px;
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .form-hero {
    padding: 76px 0 58px;
  }

  .form-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
  }

  .consult-form fieldset {
    padding: 30px 32px 34px;
  }

  .consent,
  .form-actions {
    padding-inline: 32px;
  }

  .form-side {
    position: sticky;
    top: 24px;
    padding: 28px;
  }
}
