@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-latin-400-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/raleway-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik Dirt';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/rubik-dirt-latin-400-normal.woff2') format('woff2');
}

:root {
  --bg-color: #FFFFFF;
  --bg-color-light: #F5FAFF;
  --text-color: #0E0E0E;
  --accent-color: #cfe6ef;
  --accent-color-light: #52A0EE;
  --dark-bg: #0E0E0E;
  --dark-bg-soft: #1E2733;
  --white-text: #E8F2FC;
  --gold-pale: #DCEEFB;
  --rust: #1A5BA8;
  --ff-main: 'Raleway', sans-serif;
  --ff-display: 'Rubik Dirt', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at top left, rgba(213,235,253,0.20), transparent 28%);
  font-family: var(--ff-main);
  color: var(--text-color);
  overflow-x: hidden;
}

.lp-x92-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.wrap {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 92px;
  background: rgba(232,242,252,0.94);
  border-bottom: 1px solid rgba(14,14,14,0.1);
  backdrop-filter: blur(14px);
  z-index: 1100;
  box-shadow: 0 10px 30px rgba(14,14,14,0.08);
}

.site-nav__inner {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
  text-decoration: none;
}

.site-nav__brand-mark,
.site-footer__brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav__brand-text,
.site-footer__brand-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav__brand-text span,
.site-footer__brand-text span {
  color: var(--accent-color);
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1024px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--text-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__cta {
  display: none;
  padding: 14px 24px;
  background: var(--dark-bg);
  color: var(--white-text);
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

@media (min-width: 1180px) {
  .site-nav__cta {
    display: inline-flex;
    align-items: center;
  }
}

.site-nav__cta:hover,
.mobile-menu__cta:hover {
  background: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-2px);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger__line {
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(232,242,252,0.98);
  box-shadow: 0 16px 30px rgba(14,14,14,0.12);
  border-bottom: 1px solid rgba(14,14,14,0.08);
  transition: max-height 0.45s ease;
  z-index: 1050;
}

.mobile-menu.is-open {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu__inner {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 0 32px;
}

.mobile-menu__inner a {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14,14,14,0.08);
  text-decoration: none;
}

.mobile-menu__cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  padding: 16px 22px;
  background: var(--dark-bg);
  color: var(--white-text);
  border-radius: 999px;
}

.site-footer {
  background: var(--dark-bg);
  color: var(--white-text);
  padding: 80px 20px 32px;
}

.site-footer__grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer__desc,
.site-footer__legal,
.site-footer__legal-links a,
.site-footer__links a {
  color: var(--gold-pale);
}

.site-footer__desc {
  line-height: 1.7;
}

.site-footer__col-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a,
.site-footer__legal-links a {
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__legal-links a:hover {
  color: var(--white-text);
}

.site-footer__bottom {
  width: min(1440px, 100%);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--gold-pale);
  font-size: 13px;
  font-weight: 700;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.h-q81-box {
  width: 100%;
  height: 100px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.l-z52-img {
  width: 80px;
  height: auto;
}

@media (min-width: 1024px) {
  .l-z52-img {
    width: 120px;
  }
}

.n-k31-nav {
  display: none;
}

@media (min-width: 1024px) {
  .n-k31-nav {
    display: flex;
    gap: 24px;
  }
}

.n-k31-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.n-k31-nav a:hover {
  opacity: 0.7;
}

.m-r92-tgl {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .m-r92-tgl {
    display: none;
  }
}

.m-r92-tgl span {
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: 0.3s;
}

.m-r92-tgl.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.m-r92-tgl.is-active span:nth-child(2) {
  opacity: 0;
}
.m-r92-tgl.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mob-v31-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: var(--bg-color);
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  gap: 30px;
  transition: right 0.4s ease;
  z-index: 1050;
}

.mob-v31-menu.is-open {
  right: 0;
}

.mob-v31-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
}

.s-v12-hero {
  width: 100%;
  min-height: 800px;
  padding: 150px 5% 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .s-v12-hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-top: 100px;
  }
}

.bg-z52-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg-z52.avif?v=13');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media (min-width: 1024px) {
  .bg-z52-layer {
    width: 60%;
    height: 100%;
    left: 0;
    background-position: left center;
  }
}

.c-y31-cnt {
  width: 100%;
  max-width: 800px;
  z-index: 10;
}

.t-y31-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  .t-y31-ttl {
    font-size: 86px;
  }
}

.d-w82-txt {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 40px;
  max-width: 520px;
}

@media (min-width: 1024px) {
  .d-w82-txt {
    font-size: 20px;
  }
}

.b-q12-btn {
  display: inline-block;
  padding: 18px 48px;
  background-color: var(--dark-bg);
  color: var(--white-text);
  text-decoration: none;
  border-radius: 56px;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s, background-color 0.3s;
}

.b-q12-btn:hover {
  transform: translateY(-3px);
  background-color: #222;
}

.st-r52-box {
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .st-r52-box {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-k81-card {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st-v12-val {
  font-family: 'Rubik Dirt', cursive;
  font-size: 48px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .st-v12-val {
    font-size: 64px;
  }
}

.st-n31-lbl {
  font-size: 22px;
  font-weight: 700;
}

.st-d82-desc {
  font-size: 16px;
  line-height: 1.4;
}

.pl-x12-sec {
  padding: 40px 5%;
}

.pl-k31-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1520px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pl-k31-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pl-z52-card {
  border: 1px solid var(--text-color);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--white-text);
}

.pl-img-j12 {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.pl-t-v12-ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1024px) {
  .pl-t-v12-ttl {
    font-size: 40px;
  }
}

.pl-d-n31-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pl-d-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pl-d-lbl {
  font-size: 24px;
  font-weight: 700;
}

.pl-d-val {
  font-size: 16px;
  color: var(--text-color);
}

.pl-b-v92-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--text-color);
  border-radius: 56px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}

.pl-b-v92-btn:hover {
  background-color: var(--text-color);
  color: var(--white-text);
}

.in-v31-hdr {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.in-t-y31 {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .in-t-y31 {
    font-size: 48px;
  }
}

.in-d-w82 {
  font-size: 18px;
  line-height: 1.6;
}

.pl-m-t {
  margin-top: 60px;
}

.sl-v81-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .sl-v81-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.sl-v81-info {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 5;
}

.sl-v81-img {
  display: none;
}

@media (min-width: 1024px) {
  .sl-v81-img {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 600px;
    height: auto;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
  }
}

.sl-v81-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .sl-v81-ttl {
    font-size: 64px;
  }
}

.sl-v81-txt {
  font-size: 20px;
  line-height: 1.4;
}

.sl-v81-grid {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sl-v81-card {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sl-v81-c-ttl {
  font-size: 24px;
  font-weight: 700;
}

.sl-v81-c-txt {
  font-size: 20px;
  line-height: 1.4;
}

.gm-s92-sec {
  padding: 80px 5%;
  background-color: var(--bg-color);
}

.gm-s92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1520px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gm-s92-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .gm-s92-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gm-s92-card {
  border: 1px solid var(--text-color);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  transition: transform 0.3s;
}

.gm-s92-card:hover {
  transform: translateY(-10px);
}

.gm-s92-card.is-top {
  background-color: var(--accent-color);
}

.gm-s92-badge {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
}

.gm-s92-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 400/467;
  object-fit: cover;
}

.gm-s92-ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.gm-s92-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}

.gm-s92-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gm-s92-lbl {
  font-size: 20px;
  font-weight: 700;
}

.gm-s92-val {
  font-size: 16px;
  line-height: 1.4;
}

.gm-s92-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--text-color);
  border-radius: 56px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s;
}

.gm-s92-btn.is-dark {
  background-color: var(--text-color);
  color: #fff;
}

.gm-s92-btn:hover {
  background-color: var(--text-color);
  color: #fff;
}

.gm-s92-btn.is-dark:hover {
  background-color: transparent;
  color: var(--text-color);
}

.tp-v52-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tp-v52-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .tp-v52-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.tp-v52-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 505px;
}

@media (min-width: 1024px) {
  .tp-v52-ttl {
    font-size: 64px;
  }
}

.tp-v52-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 790px;
}

.tp-v52-box {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 56px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .tp-v52-box {
    padding: 40px;
    gap: 40px;
  }
}

.tp-v52-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .tp-v52-row.is-top {
    grid-template-columns: repeat(3, 1fr);
  }
  .tp-v52-row.is-bot {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tp-v52-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

.cr-v92-sec {
  padding: 80px 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden;
}

.cr-v92-bg {
  display: none;
}

@media (min-width: 1024px) {
  .cr-v92-bg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1024px;
    height: 1024px;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
  }
}

.cr-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .cr-v92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.cr-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .cr-v92-ttl {
    font-size: 64px;
  }
}

.cr-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

.cr-v92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .cr-v92-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.cr-v92-card {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .cr-v92-grid .cr-v92-card:nth-child(even) {
    justify-self: end;
    width: 100%;
    max-width: 481px;
  }
  .cr-v92-grid .cr-v92-card:nth-child(odd) {
    justify-self: start;
    width: 100%;
    max-width: 481px;
  }
  .cr-v92-grid .cr-v92-card:nth-child(5) {
    max-width: 625px;
  }
}

.cr-v92-ic {
  width: 64px;
  height: 57px;
  flex-shrink: 0;
  object-fit: contain;
}

.cr-v92-c-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.ch-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .ch-v92-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.ch-v92-side {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ch-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 48px;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .ch-v92-ttl {
    font-size: 64px;
  }
}

.ch-v92-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.ch-v92-grid {
  width: 100%;
  max-width: 1010px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ch-v92-card {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .ch-v92-card {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
}

.ch-v92-num {
  font-family: 'Rubik Dirt', cursive;
  font-size: 24px;
  color: var(--text-color);
  flex-shrink: 0;
}

.ch-v92-c-hdr {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  max-width: 372px;
}

.ch-v92-c-txt {
  font-size: 20px;
  line-height: 1.4;
  flex-grow: 1;
}

.sp-r82-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .sp-r82-sec {
    flex-direction: row;
    justify-content: space-between;
    min-height: 800px;
  }
}

.sp-r82-img-box {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .sp-r82-img-box {
    max-width: 810px;
    height: 100%;
  }
}

.sp-r82-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.sp-r82-cnt {
  width: 100%;
  max-width: 750px;
  position: relative;
  z-index: 5;
}

.sp-r82-circ {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 50%;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .sp-r82-circ {
    width: 750px;
    height: 750px;
    padding: 80px;
  }
}

.sp-r82-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 32px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .sp-r82-ttl {
    font-size: 64px;
    margin-bottom: 32px;
  }
}

.sp-r82-txt {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 1024px) {
  .sp-r82-txt {
    font-size: 20px;
  }
}

.pg-x92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.pg-x92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .pg-x92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.pg-x92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .pg-x92-ttl {
    font-size: 64px;
  }
}

.pg-x92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

.pg-x92-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pg-x92-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .pg-x92-row.is-alt1 {
    grid-template-columns: 3fr 1fr;
  }
  .pg-x92-row.is-alt2 {
    grid-template-columns: 1fr 3fr;
  }
}

.pg-x92-img {
  width: 100%;
  height: auto;
  min-height: 339px;
  object-fit: cover;
  border: 1px solid var(--text-color);
  border-radius: 24px;
}

.vn-r82-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.vn-r82-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .vn-r82-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.vn-r82-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .vn-r82-ttl {
    font-size: 64px;
  }
}

.vn-r82-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

.vn-r82-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .vn-r82-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vn-r82-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vn-r82-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.vn-r82-ic {
  width: 109px;
  height: 97px;
  object-fit: contain;
}

.vn-r82-info {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vn-r82-c-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.vn-r82-c-txt {
  font-size: 20px;
  line-height: 1.4;
}

.vn-r82-img-col {
  height: 100%;
  display: flex;
  align-items: center;
}

.vn-r82-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .vn-r82-img {
    height: 100%;
    min-height: 516px;
  }
}

.sc-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.sc-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .sc-v92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.sc-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .sc-v92-ttl {
    font-size: 64px;
  }
}

.sc-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

.sc-v92-sub {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1024px) {
  .sc-v92-sub {
    font-size: 32px;
  }
}

.sc-v92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .sc-v92-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sc-v92-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 250px;
}

.sc-v92-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.sc-v92-box {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  padding: 16px 24px;
  width: 100%;
  max-width: 328px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.sc-v92-c-txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.ci-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ci-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .ci-v92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ci-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .ci-v92-ttl {
    font-size: 64px;
  }
}

.ci-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

.ci-v92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .ci-v92-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .ci-v92-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ci-v92-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ci-v92-num {
  font-family: 'Rubik Dirt', cursive;
  font-size: 48px;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  .ci-v92-num {
    font-size: 64px;
  }
}

.ci-v92-card {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 32px 24px;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.ci-v92-c-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.ci-v92-c-txt {
  font-size: 18px;
  line-height: 1.4;
}

.ci-v92-img-box {
  display: none;
}

@media (min-width: 1200px) {
  .ci-v92-img-box {
    display: block;
    grid-column: span 2;
    margin-top: 32px;
  }
  .ci-v92-img-row {
    display: flex;
    gap: 32px;
  }
  .ci-v92-side-img {
    width: 356px;
    height: 513px;
    object-fit: cover;
    border-radius: 24px;
  }
}

.fq-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.fq-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .fq-v92-hdr {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

.fq-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 830px;
}

@media (min-width: 1024px) {
  .fq-v92-ttl {
    font-size: 64px;
    text-align: right;
  }
}

.fq-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 658px;
}

@media (min-width: 1024px) {
  .fq-v92-desc {
    text-align: left;
  }
}

.fq-v92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .fq-v92-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fq-v92-card {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.fq-v92-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fq-v92-q {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.fq-v92-a {
  font-size: 18px;
  line-height: 1.4;
}

.fq-v92-ic {
  width: 80px;
  height: 124px;
  object-fit: contain;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  .fq-v92-ic {
    display: block;
  }
}

.up-v92-sec {
  padding: 80px 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden;
}

.up-v92-bg {
  display: none;
}

@media (min-width: 1024px) {
  .up-v92-bg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1024px;
    height: 1024px;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
  }
}

.up-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .up-v92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.up-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 724px;
}

@media (min-width: 1024px) {
  .up-v92-ttl {
    font-size: 64px;
  }
}

.up-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 764px;
}

.up-v92-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .up-v92-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.up-v92-art {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.up-v92-date {
  font-family: 'Rubik Dirt', cursive;
  font-size: 40px;
  line-height: 1.1;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  .up-v92-date {
    font-size: 64px;
  }
}

.up-v92-card {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 32px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.up-v92-c-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.up-v92-c-txt {
  font-size: 20px;
  line-height: 1.4;
}

.tr-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tr-v92-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .tr-v92-hdr {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.tr-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 724px;
}

@media (min-width: 1024px) {
  .tr-v92-ttl {
    font-size: 64px;
  }
}

.tr-v92-desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 764px;
}

.tr-v92-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tr-v92-item {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.tr-v92-num {
  font-family: 'Rubik Dirt', cursive;
  font-size: 48px;
  line-height: 1;
  color: var(--text-color);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .tr-v92-num {
    font-size: 80px;
  }
}

.tr-v92-txt {
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .tr-v92-txt {
    font-size: 36px;
  }
}

.ct-v92-sec {
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (min-width: 1024px) {
  .ct-v92-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.ct-v92-info {
  width: 100%;
  max-width: 629px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .ct-v92-ttl {
    font-size: 64px;
  }
}

.ct-v92-txt {
  font-size: 20px;
  line-height: 1.4;
}

.ct-v92-form {
  width: 100%;
  max-width: 831px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-v92-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ct-v92-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ct-v92-grp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-v92-lbl {
  font-size: 24px;
  font-weight: 700;
}

.ct-v92-in {
  border: 1px solid var(--text-color);
  border-radius: 56px;
  padding: 16px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  background-color: var(--bg-color-light);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ct-v92-ta {
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  background-color: var(--bg-color-light);
  outline: none;
  min-height: 216px;
  resize: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ct-v92-in:focus,
.ct-v92-ta:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(147,190,224,0.28);
}

.ct-v92-in.is-error,
.ct-v92-ta.is-error {
  border-color: var(--rust);
}

.ct-v92-err {
  min-height: 20px;
  font-size: 14px;
  color: var(--rust);
  font-weight: 700;
  display: none;
}

.ct-v92-err.is-visible {
  display: block;
}

.ct-v92-btn {
  background-color: var(--text-color);
  color: #fff;
  border: none;
  border-radius: 56px;
  padding: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.ct-v92-btn:hover {
  opacity: 0.8;
}

.cl-v92-sec {
  padding: 80px 5%;
}

.cl-v92-box {
  background-color: var(--accent-color);
  border: 1px solid var(--text-color);
  border-radius: 24px;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (min-width: 1024px) {
  .cl-v92-box {
    padding: 56px 80px;
    max-width: 1071px;
    margin: 0 auto;
  }
}

.cl-v92-ttl {
  font-family: 'Rubik Dirt', cursive;
  font-size: 36px;
  line-height: 1.1;
  max-width: 959px;
}

@media (min-width: 1024px) {
  .cl-v92-ttl {
    font-size: 64px;
  }
}

.cl-v92-txt {
  font-size: 16px;
  line-height: 1.4;
  max-width: 959px;
}

.cl-v92-btn {
  background-color: var(--text-color);
  color: #fff;
  text-decoration: none;
  border-radius: 56px;
  padding: 20px 80px;
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.cl-v92-btn:hover {
  opacity: 0.8;
}

.ft-v92-sec {
  background-color: #04040c;
  color: #fff;
  padding: 64px 5% 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.ft-v92-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .ft-v92-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.ft-v92-l-box {
  max-width: 138px;
}

.ft-v92-logo {
  width: 100%;
  height: auto;
}

.ft-v92-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .ft-v92-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }
}

.ft-v92-grp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-v92-lnk {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.ft-v92-lnk:hover {
  opacity: 0.7;
}

.ft-v92-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.ft-v92-cp {
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
  max-width: 800px;
  line-height: 1.6;
}
