:root {
  --ink: #382635;
  --muted: #806d7b;
  --pink: #ff6fa5;
  --pink-dark: #e84e8a;
  --blush: #fff3f8;
  --blush-strong: #fde5f0;
  --cream: #fffdf9;
  --line: #f0d8e4;
  --white: #ffffff;
  --yellow: #ffd66b;
  --purple: #9b6dff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Cloudflare Pages版で使用する共通パーツ */
.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 15px 15px 15px 5px;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  transform: rotate(-3deg);
  width: 48px;
}

.brand-mark.small {
  height: 42px;
  width: 42px;
}

.site-header nav a[aria-current="page"] {
  color: var(--pink-dark);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 em {
  color: var(--pink-dark);
  font-style: normal;
}

.hero-lead {
  color: var(--muted);
  font-size: 17px;
  margin: 30px 0 24px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  padding: 13px 23px;
}

.button.primary {
  background: var(--pink);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.button.wide {
  margin-top: 24px;
  width: 100%;
}

.notice {
  color: var(--muted);
  font-size: 13px;
  margin: 20px 0 0;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.message-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(80, 46, 67, 0.13);
  padding: 28px;
  position: relative;
  transform: rotate(2deg);
  width: 260px;
  z-index: 2;
}

.message-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.55;
  margin: 12px 0;
}

.message-card p,
.message-label {
  color: var(--muted);
  font-size: 12px;
}

.heart-stamp {
  align-items: center;
  background: var(--pink);
  border: 6px solid var(--white);
  border-radius: 50%;
  bottom: 45px;
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 90px;
  justify-content: center;
  line-height: 1.3;
  position: absolute;
  right: -32px;
  text-align: center;
  transform: rotate(8deg);
  width: 90px;
  z-index: 3;
}

.orbit {
  border: 1px solid rgba(232, 78, 138, 0.22);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 340px;
  width: 340px;
}

.orbit-two {
  height: 250px;
  width: 250px;
}

.feature-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  min-height: 260px;
  padding: 30px;
}

.feature-grid article > span {
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid h3 {
  font-size: 21px;
  margin: 42px 0 12px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 14px;
}

.safety-card {
  align-items: center;
  background: var(--ink);
  border-radius: 34px;
  color: var(--white);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 0 auto 100px;
  max-width: 1180px;
  padding: 54px 64px;
}

.safety-card h2 {
  font-size: 30px;
  margin: 0;
}

.safety-card > p {
  color: #eadfe8;
  font-size: 14px;
}

.page-hero {
  background: var(--blush);
  border-radius: 38px;
  margin: 20px auto 48px;
  max-width: 1180px;
  padding: 70px 80px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.25;
  margin: 0 0 20px;
}

.page-hero > p:not(.eyebrow) {
  color: var(--muted);
}

.updated {
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  margin: 0 auto 100px;
  max-width: 900px;
  padding: 40px 70px;
}

.legal-section {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  margin: 0 0 14px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 14px;
}

.legal-section a,
.email-link {
  color: var(--pink-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 50px;
  max-width: 1000px;
}

.contact-card,
.guide-card,
.operator-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 40px;
}

.contact-icon {
  align-items: center;
  background: var(--blush-strong);
  border-radius: 50%;
  color: var(--pink-dark);
  display: flex;
  font-size: 28px;
  height: 64px;
  justify-content: center;
  margin-bottom: 24px;
  width: 64px;
}

.email-link {
  display: block;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.guide-card h2,
.contact-card h2,
.operator-card h2 {
  line-height: 1.45;
  margin-top: 0;
}

.guide-card li,
.guide-card p {
  color: var(--muted);
  font-size: 14px;
}

.operator-card {
  margin: 0 auto 100px;
  max-width: 1000px;
}

.operator-card dl > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 18px 0;
}

.operator-card dt {
  color: var(--muted);
}

.operator-card dd {
  margin: 0;
}

footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 55px 0 35px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 15px;
}

.footer-brand p,
.copyright {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 20px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .site-header nav {
    gap: 12px;
  }

  .site-header nav a {
    display: none;
  }

  .site-header nav a:last-child {
    background: var(--ink);
    border-radius: 999px;
    color: white;
    display: block;
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero {
    display: block;
    margin: 5px 14px 0;
    min-height: 0;
    padding: 52px 28px 34px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-visual {
    margin: 50px auto 20px;
    min-height: 280px;
  }

  .message-card {
    width: 245px;
  }

  .heart-stamp {
    right: 0;
  }

  .feature-section {
    padding: 75px 20px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-grid h3 {
    margin-top: 25px;
  }

  .safety-card {
    display: block;
    margin: 0 14px 75px;
    padding: 38px 28px;
  }

  .safety-card > p {
    margin-top: 25px;
  }

  .page-hero {
    margin: 5px 14px 30px;
    padding: 48px 28px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .legal-card {
    border-radius: 26px;
    margin: 0 14px 75px;
    padding: 18px 24px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    margin: 0 14px 30px;
  }

  .contact-card,
  .guide-card,
  .operator-card {
    padding: 28px;
  }

  .operator-card {
    margin: 0 14px 75px;
  }

  .operator-card dl > div {
    display: block;
  }

  .operator-card dd {
    margin-top: 5px;
    overflow-wrap: anywhere;
  }

  footer {
    display: block;
    margin: 0 20px;
    padding: 40px 0 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .copyright {
    margin-top: 30px;
  }
}

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 22px 32px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand__mark {
  align-items: center;
  background: var(--ink);
  border-radius: 15px 15px 15px 5px;
  color: var(--white);
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  transform: rotate(-3deg);
  width: 48px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--pink-dark);
}

.site-header .nav-support {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  padding: 10px 20px;
}

.site-header .nav-support:hover {
  background: var(--pink-dark);
  color: var(--white);
}

.hero {
  background: var(--blush);
  border-radius: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  margin: 10px auto 0;
  max-width: 1180px;
  min-height: 570px;
  overflow: hidden;
  padding: 88px 92px;
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 15px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1.16;
  margin: 0;
}

.hero h1 span {
  color: var(--pink-dark);
  position: relative;
}

.hero h1 span::after {
  background: var(--yellow);
  bottom: 2px;
  content: "";
  height: 12px;
  left: -4px;
  opacity: 0.65;
  position: absolute;
  transform: rotate(-1deg);
  width: calc(100% + 10px);
  z-index: -1;
}

.hero__lead {
  color: var(--muted);
  font-size: 17px;
  margin: 30px 0;
}

.hero__notice {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 78, 138, 0.15);
  border-radius: 18px;
  display: flex;
  gap: 13px;
  max-width: 610px;
  padding: 17px 19px;
}

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

.hero__notice-mark {
  align-items: center;
  background: var(--pink);
  border-radius: 50%;
  color: white;
  display: flex;
  flex: 0 0 auto;
  font-family: Georgia, serif;
  font-weight: 700;
  height: 23px;
  justify-content: center;
  margin-top: 2px;
  width: 23px;
}

.hero__stamp {
  align-items: center;
  align-self: center;
  background: var(--pink);
  border: 9px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(232, 78, 138, 0.24);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 210px;
  justify-content: center;
  position: relative;
  transform: rotate(7deg);
  width: 210px;
  z-index: 2;
}

.hero__stamp::before,
.hero__stamp::after {
  background: var(--pink);
  border-radius: 50% 50% 5px 50%;
  content: "";
  height: 42px;
  position: absolute;
  top: -14px;
  width: 42px;
  z-index: -1;
}

.hero__stamp::before {
  left: 35px;
  transform: rotate(43deg);
}

.hero__stamp::after {
  right: 35px;
  transform: rotate(47deg);
}

.hero__stamp span {
  font-size: 16px;
  font-weight: 700;
}

.hero__stamp strong {
  font-size: 32px;
  letter-spacing: 0.05em;
}

.hero__glow {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  position: absolute;
}

.hero__glow--one {
  background: #ffd5e6;
  height: 420px;
  right: -80px;
  top: -150px;
  width: 420px;
}

.hero__glow--two {
  background: #eadfff;
  bottom: -150px;
  height: 360px;
  left: 42%;
  width: 360px;
}

.link-section,
.operator-panel,
.document-wrap,
.support-wrap {
  margin: 0 auto;
  max-width: 1180px;
}

.link-section {
  padding: 110px 0 100px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.operator-panel h2 {
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.section-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

.link-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  box-shadow: 0 24px 60px rgba(80, 46, 67, 0.11);
  transform: translateY(-5px);
}

.guide-card__top {
  align-items: center;
  color: var(--pink-dark);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: space-between;
}

.guide-card__arrow {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.guide-card h3 {
  font-size: 23px;
  line-height: 1.4;
  margin: 38px 0 13px;
}

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

.guide-card strong {
  color: var(--pink-dark);
  font-size: 13px;
  margin-top: auto;
}

.operator-panel {
  align-items: flex-start;
  background: var(--ink);
  border-radius: 34px;
  color: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.7fr 1.3fr;
  margin-bottom: 110px;
  padding: 60px;
}

.operator-panel .eyebrow {
  color: #ffafd0;
}

.operator-panel dl {
  margin: 0;
}

.operator-panel dl div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  font-size: 14px;
  gap: 20px;
  grid-template-columns: 140px 1fr;
  padding: 14px 0;
}

.operator-panel dt {
  color: #cfbdc9;
}

.operator-panel dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.operator-panel a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.document-wrap {
  padding: 70px 0 120px;
}

.document-hero {
  max-width: 850px;
  padding: 30px 0 70px;
}

.back-link {
  color: var(--muted);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 50px;
}

.back-link:hover {
  color: var(--pink-dark);
}

.document-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.055em;
  line-height: 1.2;
  margin: 0 0 25px;
}

.document-hero > p:last-of-type {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 20px;
}

.document-hero > span {
  color: #aa98a5;
  font-size: 12px;
}

.document-layout {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.document-layout aside {
  background: var(--blush);
  border-radius: 22px;
  padding: 25px;
  position: sticky;
  top: 24px;
}

.document-layout aside p {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 8px;
}

.document-layout aside span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.7;
}

.document-layout aside a {
  border-top: 1px solid var(--line);
  color: var(--pink-dark);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 18px;
  padding-top: 18px;
}

.document-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px 68px;
}

.document-card section {
  border-bottom: 1px solid var(--line);
  padding: 38px 0;
}

.document-card section:last-child {
  border-bottom: 0;
}

.document-card h2 {
  font-size: 21px;
  line-height: 1.5;
  margin: 0 0 15px;
}

.document-card p,
.document-card li {
  color: #66545f;
  font-size: 14px;
  line-height: 2;
}

.document-card p {
  margin: 8px 0;
}

.document-card ul {
  margin: 14px 0 0;
  padding-left: 1.3em;
}

.document-card li {
  margin: 7px 0;
  padding-left: 5px;
}

.document-card li::marker {
  color: var(--pink);
}

.support-wrap {
  padding: 70px 0 120px;
}

.support-hero {
  background: var(--blush);
  border-radius: 42px;
  padding: 70px 80px;
}

.support-hero .back-link {
  margin-bottom: 60px;
}

.support-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.25;
  margin: 0 0 24px;
}

.support-hero > p:last-of-type {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 32px;
}

.support-mail {
  align-items: center;
  background: var(--pink);
  border-radius: 18px;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  padding: 18px 30px;
}

.support-mail span {
  font-size: 15px;
  font-weight: 900;
}

.support-mail strong {
  font-size: 11px;
  letter-spacing: 0.03em;
  margin-top: 3px;
}

.support-hero small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 15px;
}

.faq-section {
  padding: 100px 0 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 50px 1fr;
  padding: 32px 12px;
}

.faq-list article > span {
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 900;
}

.faq-list h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.faq-list p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.support-links {
  align-items: center;
  background: var(--ink);
  border-radius: 28px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 36px 42px;
}

.support-links p {
  color: #d8c7d2;
  font-size: 13px;
  margin: 0;
}

.support-links div {
  display: flex;
  gap: 28px;
}

.support-links a {
  font-size: 13px;
  font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 45px 0 35px;
}

.footer__brand {
  align-items: center;
  display: flex;
  gap: 13px;
}

.brand__mark--small {
  border-radius: 11px 11px 11px 4px;
  font-size: 17px;
  height: 36px;
  width: 36px;
}

.footer__brand p {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  margin: 0;
}

.footer__brand strong {
  font-size: 13px;
}

.footer__brand span {
  color: var(--muted);
  font-size: 11px;
}

.footer__links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.footer__links a {
  color: var(--muted);
  font-size: 11px;
}

.copyright {
  color: #aa98a5;
  font-size: 10px;
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header,
  .link-section,
  .operator-panel,
  .document-wrap,
  .support-wrap,
  footer {
    margin-left: 24px;
    margin-right: 24px;
  }

  .hero {
    margin-left: 24px;
    margin-right: 24px;
    padding: 70px 55px;
  }

  .hero__stamp {
    height: 170px;
    width: 170px;
  }

  .hero__stamp strong {
    font-size: 27px;
  }

  .document-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .document-card {
    padding: 25px 44px;
  }
}

@media (max-width: 720px) {
  .site-header {
    margin: 0;
    padding: 16px 18px;
  }

  .brand__mark {
    border-radius: 12px 12px 12px 4px;
    font-size: 19px;
    height: 40px;
    width: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .site-header nav a:not(.nav-support) {
    display: none;
  }

  .site-header .nav-support {
    font-size: 12px;
    padding: 8px 15px;
  }

  .hero {
    display: block;
    margin: 5px 12px 0;
    min-height: auto;
    padding: 58px 25px 36px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__lead {
    font-size: 14px;
    margin: 24px 0;
  }

  .desktop-break {
    display: none;
  }

  .hero__stamp {
    height: 132px;
    margin: 40px 0 0 auto;
    width: 132px;
  }

  .hero__stamp::before,
  .hero__stamp::after {
    height: 28px;
    top: -9px;
    width: 28px;
  }

  .hero__stamp::before {
    left: 22px;
  }

  .hero__stamp::after {
    right: 22px;
  }

  .hero__stamp span {
    font-size: 12px;
  }

  .hero__stamp strong {
    font-size: 21px;
  }

  .link-section {
    margin: 0 18px;
    padding: 75px 0 70px;
  }

  .section-heading h2,
  .operator-panel h2 {
    font-size: 30px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 280px;
  }

  .operator-panel {
    display: block;
    margin: 0 12px 80px;
    padding: 34px 25px;
  }

  .operator-panel dl {
    margin-top: 28px;
  }

  .operator-panel dl div {
    display: block;
  }

  .operator-panel dd {
    margin-top: 4px;
  }

  .document-wrap,
  .support-wrap {
    margin: 0 14px;
    padding: 35px 0 80px;
  }

  .document-hero {
    padding: 20px 6px 45px;
  }

  .back-link {
    margin-bottom: 38px;
  }

  .document-hero h1 {
    font-size: 40px;
  }

  .document-hero > p:last-of-type {
    font-size: 14px;
  }

  .document-layout {
    display: block;
  }

  .document-layout aside {
    margin-bottom: 18px;
    position: static;
  }

  .document-card {
    border-radius: 22px;
    padding: 10px 23px;
  }

  .document-card section {
    padding: 30px 0;
  }

  .document-card h2 {
    font-size: 18px;
  }

  .document-card p,
  .document-card li {
    font-size: 13px;
  }

  .support-hero {
    border-radius: 28px;
    padding: 42px 25px;
  }

  .support-hero .back-link {
    margin-bottom: 45px;
  }

  .support-hero h1 {
    font-size: 39px;
  }

  .support-mail {
    align-items: flex-start;
    display: flex;
    padding: 15px 18px;
    width: 100%;
  }

  .support-mail strong {
    overflow-wrap: anywhere;
  }

  .faq-section {
    padding: 75px 5px 60px;
  }

  .faq-list article {
    gap: 15px;
    grid-template-columns: 34px 1fr;
    padding: 25px 3px;
  }

  .support-links {
    align-items: flex-start;
    display: block;
    padding: 28px 25px;
  }

  .support-links div {
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }

  footer {
    display: block;
    margin: 0 18px;
    padding: 35px 0 28px;
  }

  .footer__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin: 28px 0;
  }
}
