@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Pretendard-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Pretendard-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Pretendard-Bold.woff2") format("woff2");
}
/**
 * Design tokens exported as CSS Custom Properties (:root).
 */
:root {
  /* Base colors */
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray-4: #444444;
  --color-gray-6: #666666;
  --color-gray-9: #999999;
  --color-gray-d: #dddddd;
  --color-gray-e: #eeeeee;
  /* Brand */
  --color-primary: #11c5a7;
  --color-primary-10: #effaf9;
  --color-primary-50: #87E1D2;
  /* Background */
  --color-bg: #f6f8f9;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-size: 1.6rem;
  font-family: "Pretendard", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: clip;
}
body.is-hero-intro-lock {
  overflow: hidden;
}

/* media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

/* list */
ol,
ul {
  list-style: none;
}

/* Button Styles */
button, a {
  display: flex;
  align-items: center;
  justify-content: center;
}
button.btn-common, a.btn-common {
  border: 1px solid var(--color-white);
  border-radius: 0.8rem;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 400;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
button.btn-common:hover, a.btn-common:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}
button.btn-primary, a.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
button.btn-primary:hover, a.btn-primary:hover {
  background-color: var(--color-primary-50);
}

section, footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
.section-inner .text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}
.section-inner .text h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 7.2rem;
}
.section-inner .text p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: var(--color-gray-4);
}

/* --- header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 8rem;
  padding: 1.6rem 0;
  background-color: transparent;
  transition: all 0.3s ease;
}
.header.is-scrolled {
  background-color: var(--color-white);
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 4.8rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.header .header-inner a.btn-primary {
  width: 12rem;
  height: 4.8rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
}
@media (max-width: 1024px) {
  .header {
    height: 5.6rem;
    padding: 1.8rem 0;
  }
  .header .header-inner {
    height: 4rem;
  }
  .header a.logo {
    width: 7.2rem;
  }
  .header .nav {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 12rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-black);
}

/* --- Section Styles --- */
#visual {
  position: relative;
  align-items: start;
  --visual-extra-height: 28rem;
  min-height: calc(100vh + var(--visual-extra-height));
  height: calc(100vh + var(--visual-extra-height));
  margin-top: -8rem;
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: linear-gradient(180deg, var(--color-primary-10) 0%, var(--color-white) 100%);
  overflow: hidden;
}
#visual.is-hero-pinned {
  z-index: 20;
}
#visual.is-hero-exit-phase {
  overflow-x: clip;
  overflow-y: visible;
}
#visual.is-hero-collage-frozen {
  pointer-events: none;
}
#visual .section-inner {
  max-width: none;
  width: 100%;
  overflow: visible;
}
#visual .text {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 7rem;
  text-align: center;
}
#visual .text h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.5;
}
#visual .text h1 span {
  color: var(--color-primary);
}
#visual .text p {
  margin-top: 2.4rem;
  font-size: 3.2rem;
  color: var(--color-gray-4);
}
#visual .text a.btn-primary {
  width: 24rem;
  height: 7.2rem;
  border-radius: 999px;
  margin: 2rem auto;
  font-size: 2rem;
}
#visual .visual-image {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  height: 82rem;
  min-height: 82rem;
  margin-top: -6rem;
  overflow: visible;
}
#visual .visual-image .hero-collage-item,
#visual .visual-image .hero-collage-cursor {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
}
#visual .visual-image .hero-collage-item.js-hero-sample {
  top: 27%;
  z-index: 1;
}
#visual .visual-image .hero-collage-item.js-hero-main1, #visual .visual-image .hero-collage-item.js-hero-main3 {
  z-index: 4;
}
#visual .visual-image .hero-collage-item.js-hero-main2, #visual .visual-image .hero-collage-item.js-hero-main4, #visual .visual-image .hero-collage-item.js-hero-main5 {
  z-index: 3;
}
#visual .visual-image .hero-collage-cursor {
  z-index: 5;
}
@media (max-width: 1024px) {
  #visual .text h1 {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }
  #visual .text p {
    font-size: 1.6rem;
  }
}

#section1 {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
  min-height: 100vh;
  height: auto;
}
#section1.is-section-pinned {
  z-index: 20;
  background-color: transparent;
}
#section1.is-section-pinned .section-inner {
  min-height: 100vh;
  background-color: var(--color-white);
}
#section1 .problems-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  height: 100%;
}
#section1 .problems-wrap h2 {
  margin: 0;
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 7.2rem;
  word-break: keep-all;
}
#section1 .problems-wrap .problems-masonry {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2.4rem;
  width: min(100%, 58.8rem);
  height: 100vh;
  overflow: hidden;
  min-width: 0;
}
#section1 .problems-wrap .problems-masonry .problems-col + .problems-col {
  margin-top: 2.5rem;
}
#section1 .problems-wrap .problems-masonry .problems-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  align-items: center;
  gap: 2.5rem;
  max-width: 28.2rem;
  min-width: 0;
  will-change: transform;
}
#section1 .problems-wrap .problems-masonry .problems-col .problems-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 28.2rem;
  aspect-ratio: 282/300;
  height: auto;
  padding: 28.37% 14.18% 14.18%;
  background-color: var(--color-bg);
  border-radius: clamp(1.2rem, 8.5%, 2.4rem);
}
#section1 .problems-wrap .problems-masonry .problems-col .problems-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
}
#section1 .problems-wrap .problems-masonry .problems-col .problems-card__icon img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 8rem;
  object-fit: contain;
}
#section1 .problems-wrap .problems-masonry .problems-col .problems-card__title {
  margin: 0;
  padding-top: 1.6rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--color-black);
  text-align: center;
}
#section1 .problems-wrap .problems-masonry .problems-col .problems-pill {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 28.2rem;
  height: 8rem;
  padding: 0 2.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-black);
  white-space: normal;
  text-align: center;
  word-break: keep-all;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-d);
  border-radius: 999px;
}
@media (max-width: 1024px) {
  #section1 {
    overflow: visible;
    min-height: auto;
  }
  #section1 .section-inner {
    padding: 8rem 2.4rem;
  }
  #section1 .problems-wrap {
    flex-direction: column;
  }
  #section1 .problems-wrap h2 {
    font-size: 2.6rem;
    line-height: 3.8rem;
    text-align: center;
  }
  #section1 .problems-wrap .problems-masonry {
    align-items: center;
    margin-top: 4rem;
    height: auto;
  }
  #section1 .problems-wrap .problems-masonry .problems-col .problems-pill {
    height: 4.8rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  #section1 .problems-wrap .problems-masonry .problems-col .problems-card {
    padding: 0;
    gap: 1.6rem;
    justify-content: center;
    height: 17.2rem;
  }
  #section1 .problems-wrap .problems-masonry .problems-col .problems-card__title {
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding-top: 0;
  }
  #section1 .problems-wrap .problems-masonry .problems-col .problems-card__icon img {
    width: 5.2rem;
  }
}

#section2 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: auto;
  overflow-x: clip;
  background-color: var(--color-white);
}
#section2.is-section-pinned {
  z-index: 20;
}
#section2.is-section2-overlay {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  background-color: var(--color-white);
}
#section2.is-section2-overlay .section-inner {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
#section2.is-section2-overlay .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#section2.is-pass-through-layout {
  height: 0 !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}
#section2.is-pass-through-complete {
  height: 0 !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#section2 .section-inner:before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 10rem;
  width: 74.2rem;
  height: 74.2rem;
  background: url(../images/bg_circle_green.svg) no-repeat center center;
}
#section2 .section-inner:after {
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 10rem;
  width: 63.5rem;
  height: 63.5rem;
  background: url(../images/bg_circle_blue.svg) no-repeat center center;
}
#section2 .text h2 {
  text-align: center;
}
#section2 .text h2 .line-row {
  display: block;
}
#section2 .text strong {
  font-size: 8rem;
  font-weight: 800;
  color: var(--color-primary);
}
#section2 .text .line {
  display: inline-block;
  width: 0;
  height: 0.6rem;
  background-color: var(--color-primary);
  transform-origin: left center;
  will-change: transform, width, opacity;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #section2 .text img {
    width: 7.1rem;
  }
  #section2 .text {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

.section2-flow-placeholder {
  width: 100%;
  flex-shrink: 0;
}

#section3, #section4 {
  position: relative;
  height: auto;
  background-color: var(--color-white);
}
#section3.is-section-pinned, #section4.is-section-pinned {
  z-index: 20;
  background-color: var(--color-white);
  overflow: hidden;
}
#section3.is-section-pinned .section-inner, #section4.is-section-pinned .section-inner {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  padding: 8rem 2rem 4rem;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
}
#section3.is-pass-through-complete, #section4.is-pass-through-complete {
  height: 0 !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#section3 .section-inner, #section4 .section-inner {
  position: relative;
  min-height: 100vh;
}
#section3 .divice-pc, #section3 .divice-mo, #section4 .divice-pc, #section4 .divice-mo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
}
#section3 .divice-pc.is-active, #section3 .divice-mo.is-active, #section4 .divice-pc.is-active, #section4 .divice-mo.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#section3 .divice-pc .text, #section3 .divice-mo .text, #section4 .divice-pc .text, #section4 .divice-mo .text {
  align-items: flex-start;
}
#section3 .divice-pc .device-wrap, #section3 .divice-mo .device-wrap, #section4 .divice-pc .device-wrap, #section4 .divice-mo .device-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}
#section3 .divice-pc .device-wrap .device-slide, #section3 .divice-mo .device-wrap .device-slide, #section4 .divice-pc .device-wrap .device-slide, #section4 .divice-mo .device-wrap .device-slide {
  position: relative;
}
#section3 .divice-pc .device-wrap .item, #section3 .divice-mo .device-wrap .item, #section4 .divice-pc .device-wrap .item, #section4 .divice-mo .device-wrap .item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}
#section3 .divice-pc .device-wrap .item img, #section3 .divice-mo .device-wrap .item img, #section4 .divice-pc .device-wrap .item img, #section4 .divice-mo .device-wrap .item img {
  width: 100%;
  height: auto;
}
#section3 .divice-pc .device-wrap .item.is-active, #section3 .divice-mo .device-wrap .item.is-active, #section4 .divice-pc .device-wrap .item.is-active, #section4 .divice-mo .device-wrap .item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#section3 .divice-pc .device-pager, #section3 .divice-mo .device-pager, #section4 .divice-pc .device-pager, #section4 .divice-mo .device-pager {
  display: flex;
  justify-content: center;
}
#section3 .divice-pc .device-pager .device-dots, #section3 .divice-mo .device-pager .device-dots, #section4 .divice-pc .device-pager .device-dots, #section4 .divice-mo .device-pager .device-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
#section3 .divice-pc .device-pager .device-dots .dot, #section3 .divice-mo .device-pager .device-dots .dot, #section4 .divice-pc .device-pager .device-dots .dot, #section4 .divice-mo .device-pager .device-dots .dot {
  cursor: pointer;
  outline: none;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
  background-color: var(--color-gray-d);
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
#section3 .divice-pc .device-pager .device-dots .dot.is-active, #section3 .divice-mo .device-pager .device-dots .dot.is-active, #section4 .divice-pc .device-pager .device-dots .dot.is-active, #section4 .divice-mo .device-pager .device-dots .dot.is-active {
  background-color: var(--color-primary);
  width: 2rem;
  height: 1rem;
}
#section3 .divice-pc .device-pager .device-dots .dot:hover, #section3 .divice-mo .device-pager .device-dots .dot:hover, #section4 .divice-pc .device-pager .device-dots .dot:hover, #section4 .divice-mo .device-pager .device-dots .dot:hover {
  width: 4rem;
  height: 1rem;
  background-color: var(--color-primary);
}
@media (max-width: 1024px) {
  #section3, #section4 {
    height: auto;
    padding-block: clamp(7rem, 12vh, 10rem);
  }
  #section3 .divice-pc,
  #section3 .divice-mo, #section4 .divice-pc,
  #section4 .divice-mo {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(3.2rem, 8vw, 4rem);
  }
  #section3 .text, #section4 .text {
    flex: unset;
    order: 2;
    gap: 2.4rem;
    max-width: 100%;
  }
  #section3 .text h2, #section4 .text h2 {
    font-size: clamp(2.4rem, 5vw + 1rem, 2.8rem);
    line-height: 1.45;
  }
  #section3 .device-wrap, #section4 .device-wrap {
    order: 1;
    width: 100%;
    max-width: 69rem;
    align-self: center;
    gap: 3.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  #section3 .device-slide, #section4 .device-slide {
    transition: none;
  }
}

#section3 .divice-pc .text {
  width: 41.5rem;
}
#section3 .device-wrap {
  width: 69rem;
}
#section3 .device-slide {
  width: 69rem;
  min-height: 48rem;
}

#section4 .divice-mo .text {
  width: 38.5rem;
}
#section4 .device-wrap {
  width: 33.4rem;
}
#section4 .device-slide {
  position: static;
  width: 33.4rem;
  min-height: 68.7rem;
}
#section4 .item {
  position: static;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
  transition: none;
}
#section4 .item.is-active {
  display: block;
}
#section4 .item img {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  #section4 .divice-mo .text {
    width: 100%;
  }
  #section4 .device-wrap,
  #section4 .device-slide {
    width: min(100%, 33.4rem);
  }
}

#section5 {
  position: relative;
  background: var(--color-bg);
  height: 100vh;
  overflow: hidden;
  align-items: start;
}
#section5 .text {
  position: relative;
  align-items: start;
  margin-top: 26.8rem;
}
#section5 .text ul {
  position: absolute;
  top: calc(100% + 10rem);
  left: 0;
  display: flex;
  gap: 2.4rem;
  margin-top: 0;
  width: max-content;
  padding-right: var(--section5-right-bleed);
}
#section5 .text ul li {
  width: 48.6rem;
  height: 25.6rem;
  background-color: var(--color-white);
  border-radius: 1.6rem;
  padding: 4rem;
  will-change: transform;
  transition: background-color 0.2s ease;
}
#section5 .text ul li > div {
  display: flex;
  flex-direction: column;
}
#section5 .text ul li > div.title {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 500;
}
#section5 .text ul li > div.number {
  font-size: 6rem;
  line-height: 9rem;
  font-weight: 600;
}
#section5 .text ul li > div.desc {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: var(--color-gray-6);
}
#section5 .text ul li:hover {
  background-color: var(--color-primary);
}
#section5 .text ul li:hover > * {
  color: var(--color-white);
}
@media (max-width: 1024px) {
  #section5 .section-inner {
    --section5-right-bleed: 0px;
  }
  #section5 .text {
    width: 100%;
    margin-top: 0;
  }
  #section5 .text h2 {
    line-height: 1.4;
  }
  #section5 .text p {
    line-height: 1.5;
  }
  #section5 ul {
    right: 0;
    padding-right: 0;
  }
}

#section6 {
  position: relative;
  background-color: var(--color-white);
  height: 100rem;
}
#section6 ul {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-top: 10rem;
}
#section6 ul li {
  width: calc((100% - 2.4rem) / 2);
  background-color: var(--color-bg);
  border-radius: 2.4rem;
  padding: 4rem;
}
#section6 ul li > div {
  display: flex;
  flex-direction: column;
}
#section6 ul li > div.title {
  font-size: 2.4rem;
  font-weight: 600;
}
#section6 ul li > div.desc {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-gray-4);
}
#section6 p {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gray-6);
  margin-top: 4rem;
  text-align: center;
}

.section7 {
  position: relative;
  background-color: var(--color-primary);
  height: 56rem;
}
.section7:before {
  content: "";
  position: absolute;
  top: 0;
  right: 8rem;
  width: 63.4rem;
  height: 56rem;
  background: url(../images/symbol_big.svg) no-repeat center center;
}
.section7 .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section7 .section-inner .text {
  align-items: start;
}
.section7 .section-inner .text h2 {
  color: var(--color-white);
}
.section7 .section-inner .text .tags {
  display: flex;
  gap: 1.6rem;
  margin-top: 4.8rem;
}
.section7 .section-inner .text .tags .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 4.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 999px;
}
.section7 .section-inner .qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38.3rem;
  height: 29.4rem;
  background-color: var(--color-white);
  border-radius: 1.6rem;
}
.section7 .section-inner .qr .app-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.section7 .section-inner .qr .app-links span {
  display: flex;
  align-items: center;
}

/* --- Footer --- */
footer {
  background-color: var(--color-black);
  color: #ffffff;
  height: 40rem;
}
footer .footer-contents {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer-contents .footer-col-group {
  display: flex;
  align-items: start;
  gap: 9.8rem;
}
footer .footer-contents .footer-col-group .footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: start;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
}
footer .footer-contents .footer-col-group .footer-col .footer-col-title {
  font-size: 2rem;
  font-weight: 700;
}
footer .footer-contents .footer-col-group .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .footer-contents .footer-col-group .footer-col ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
}
footer .footer-contents .footer-col-group .footer-col ul li a {
  justify-content: start;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.4rem;
  font-size: 1.2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-bottom .footer-social-slot {
  display: flex;
  gap: 2.4rem;
}
footer .footer-bottom .copyright {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 400;
  color: var(--color-white);
}

body.is-modal-open {
  overflow: hidden;
}

.inquiry-main {
  background: #fff;
}

.inquiry-hero {
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 10rem;
  background: #fff;
}

.inquiry-card {
  width: 100%;
  max-width: 43.2rem;
}

.inquiry-title {
  text-align: center;
}

.inquiry-title h1 {
  font-size: 3.2rem;
  line-height: 4.6rem;
  font-weight: 600;
  color: #1a1a1a;
}

.inquiry-title p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #444;
}

.inquiry-form {
  margin-top: 4rem;
}

.inquiry-field + .inquiry-field {
  margin-top: 2.4rem;
}

.inquiry-input {
  width: 100%;
  height: 5.6rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  color: #1a1a1a;
  background: #fff;
}

.inquiry-input::placeholder {
  color: #999;
}

.inquiry-consent {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.inquiry-checkbox {
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.inquiry-checkbox::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.25rem;
  width: 0.6rem;
  height: 1rem;
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  opacity: 0;
}

.inquiry-consent.is-checked .inquiry-checkbox {
  border-color: #11c5a7;
  background: #11c5a7;
}

.inquiry-consent.is-checked .inquiry-checkbox::after {
  opacity: 1;
}

.inquiry-consent__button {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #666;
}

.inquiry-consent__required {
  color: #11c5a7;
  font-weight: 600;
}

.inquiry-consent__text {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.inquiry-submit {
  margin-top: 6rem;
  width: 100%;
  height: 5.6rem;
  border: 0;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: #999;
  background: #eaecf0;
  cursor: not-allowed;
}

.inquiry-submit.is-enabled {
  background: #11c5a7;
  color: #fff;
  cursor: pointer;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.policy-modal.is-open {
  display: block;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
}

.policy-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48rem;
  background: var(--color-white);
  border-radius: 1.6rem;
  overflow: hidden;
}
.policy-modal__dialog .policy-modal__head {
  position: relative;
  height: 7.2rem;
  padding: 2.1rem 0;
}
.policy-modal__dialog .policy-modal__head h2 {
  font-size: 2rem;
  text-align: center;
  line-height: 3rem;
  font-weight: 600;
}
.policy-modal__dialog .policy-modal__head .policy-modal__close {
  position: absolute;
  right: 2.8rem;
  top: 2.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: transparent;
}
.policy-modal__dialog .policy-modal__head .policy-modal__close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/icon_close.svg) no-repeat center center/contain;
}

.policy-modal__body {
  padding: 2.8rem;
  max-height: min(52rem, 100vh - 24rem);
  overflow: auto;
}

.policy-modal__body p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #1a1a1a;
}

.policy-modal__body p + p {
  margin-top: 1.2rem;
}

.policy-modal__body .highlight {
  color: #11c5a7;
  font-weight: 600;
}

.policy-modal__foot {
  padding: 0 2.8rem 2.8rem;
  display: flex;
  gap: 1.2rem;
}

.policy-modal__btn {
  width: 100%;
  height: 5.6rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  cursor: pointer;
}

.policy-modal__btn--cancel {
  border: 1px solid #444;
  color: #1a1a1a;
  background: #fff;
}

.policy-modal__btn--agree {
  border: 0;
  color: #fff;
  background: #11c5a7;
  font-weight: 600;
}

.submit-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.submit-modal.is-open {
  display: block;
}

.submit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.submit-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48rem;
  background: var(--color-white);
  border-radius: 1.6rem;
}

.submit-modal__body {
  padding: 4rem 2.8rem 2.4rem;
  text-align: center;
}

.submit-modal__body p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: #1a1a1a;
}

.submit-modal__foot {
  padding: 0 2.8rem 2.8rem;
}

.submit-modal__confirm {
  width: 100%;
  height: 5.6rem;
  border: 0;
  border-radius: 0.8rem;
  background: #11c5a7;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 600;
  cursor: pointer;
}
