:root {
    --color-bk: #25262B;
    --color-gy: #848890;
    --color-wh: #ffffff;

    --color-bg: #F8FAFC;
    --color-line: #EEF0F2;

    --color-hl: #299C4B;
    --color-hl-2: #35C55F;
    
    --title-1: 45px;
    --title-2: 40px;
    --title-3: 32px; 

    --font-xl: 28px;
    --font-l: 24px;
    --font-m: 20px;
    --font-s: 18px;
    --font-xs: 16px;

    --size-xl: 120px;
    --size-l: 80px;
    --size-m: 60px;
    --size-s: 40px;
    --size-xs: 20px;
}

/* ---------------- COMMON ---------------- */

::selection {
    background-color: var(--color-bg);
    color: var(--color-hl);
}

* {
    font-family: 'Pretendard Variable', sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 360px;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-wh);
}

section{
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--size-xl);
    padding-bottom: var(--size-xl);
}

#iframe_lawedu {
	width: 100%;
	height: 580px;
	border: none;
	background-color: var(--color-bg);
}

#check { padding-bottom: 0; }

.section-wrapper{
    max-width: 1380px;
    width: 100%;
    padding-left: var(--size-s);
    padding-right: var(--size-s);
}

.section-tag{
  font-size: var(--font-m);
  font-weight: 700;
  color: var(--color-hl);
  text-align: center;
  margin-bottom: 12px;
}

.section-title{
    font-size: var(--title-1);
    font-weight: 700;
    text-align: center;
    color: var(--color-bk);
    word-break: keep-all;
    line-height: 135%;
}

.section-title > span{
  font-weight: 400;
}

.section-desc{
  font-size: var(--font-m);
  font-weight: 400;
  text-align: center;
  color: var(--color-gy);
  word-break: keep-all;
  line-height: 150%;
}

.section-desc > span{
  font-weight: 700;
}

/* ---------------- MAIN ---------------- */

#main{
  padding-top: 0;
  padding-bottom: var(--size-l);
}

.banner-swiper {
  max-width: 1920px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--size-s);
}

.banner-swiper .swiper-wrapper {
  display: flex;
}

.banner-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  transition: transform 0.4s ease;
}

.banner-swiper .swiper-slide img {
  max-width: 860px;
  width: 100%;
  border-radius: 16px;
  pointer-events: none;
}

.banner-swiper .swiper-slide-active {
  opacity: 1;
}

.banner-swiper .slide-counter {
  position: absolute;
  bottom: 16px;
  right: 32%;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-wh);
  background-color: #25262B80;
  padding: 4px 12px;
  border-radius: 24px;
  z-index: 10;
}

#main > .section-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.main-l{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}

.main-l div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.main-l img{
  width: 80px;
  object-fit: contain;
  border-radius: 20px;
}

.main-l p{
  font-size: var(--font-s);
  font-weight: 500;
  color: var(--color-bk);
  text-align: center;
}

.main-r{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-xs);
  padding: 36px 48px;
  border-radius: 20px;
  background-color: #E6FFF2;
}

.main-r > p{
  font-size: var(--font-s);
  font-weight: 500;
  color: var(--color-hl);
  line-height: 135%;
  text-align: center;
}

.main-r > p > span{
  font-weight: 700;
}

.main-r div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 80px;
  padding: 14px var(--size-s);
  background: linear-gradient(135deg, #35C55F, #03BB9C);
}

.main-r div > img{
  width: 32px;
  object-fit: contain;
}

.main-r div > p{
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--color-wh);
}

/* ---------------- WHYUS ---------------- */

#whyus{
  background-color: var(--color-bg);
}

#whyus > .section-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.counter-wrapper{
  max-width: 1024px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: var(--size-m) 0;
}

.counter-wrapper > div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.counter-wrapper > div:nth-of-type(2){
  border-left: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

.counter-tag{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--color-hl-2);
  padding: 8px 20px;
  border-radius: 40px;
}

.counter-tag > img{
  width: 20px;
  object-fit: contain;
}

.counter-tag > span{
  font-size: var(--font-s);
  font-weight: 500;
  color: var(--color-wh);
}

.counter{
  font-size: var(--title-2);
  font-weight: 700;
  color: var(--color-bk);
}

.merits{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--size-xs);
}

.merit{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:space-between;
  align-items: flex-start;
  gap: var(--size-s);
  background-color: var(--color-wh);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: var(--size-m) var(--size-s) var(--size-s) var(--size-s);
  transition: 0.2s;
  cursor: pointer;
}

.merit:hover{
  border: 1px solid var(--color-hl-2);
}

.merit > div:first-of-type{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.merit > div:last-of-type{
  width: 100%;
  height: 240px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.merit > div > div{
  color: var(--color-hl);
  font-weight: 700;
  font-size: var(--font-s);
}

.merit > div > h3{
  color: var(--color-bk);
  font-weight: 700;
  font-size: var(--title-3);
  line-height: 135%;
  margin-top: 12px;
  margin-bottom: var(--size-xs);
}

.merit > div > p{
  color: var(--color-gy);
  font-weight: 400;
  font-size: var(--font-s);
  line-height: 150%;
  word-break: keep-all;
}

.merit > div > p > span{
  font-weight: 700;
}

.merit > div > img{
  max-height: 240px;
  width: 100%;
  object-fit: contain;
}

/* ---------------- VERIFY ---------------- */

#verify > .section-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--size-m);
}

.verify-txt{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.verify-txt > img{
  width: var(--size-s);
  object-fit: contain;
}

#verify .section-title{
  text-align: left;
  margin-top: var(--size-xs);
  margin-bottom: var(--size-s);
}

#verify .section-desc{
  text-align: left;
}

.verify-img{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--size-xs);
  row-gap: var(--size-s);
}

.verify-img > img{
  width: 240px;
  object-fit: contain;
}

/* ---------------- CHECK ---------------- */

#check{
  background-color: var(--color-bg);
}

#check .section-title{
  margin-bottom: var(--size-xs);
}

/* ---------------- pricing ---------------- */

#pricing > .section-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#pricing .section-title{
  margin-bottom: var(--size-m);
}

.pricing-wrapper{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--size-xs);
}

.pricing-wrapper > div{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--color-bg);
  padding: var(--size-s);
  border-radius: 12px;
  border: 1px solid var(--color-line);
  transition: 0.2s;
  cursor: pointer;
}

.pricing-wrapper > div:hover{
  border: 1px solid var(--color-hl-2);
}

.pricing-num{
  font-size: var(--font-s);
  font-weight: 600;
  color: var(--color-wh);
  width: 32px;
  height: 32px;
  background-color: var(--color-hl-2);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-wrapper > div > p{
  color: var(--color-bk);
  font-size: var(--title-3);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: var(--size-xs);
}

.pricing-info{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.pricing-info > p:first-of-type{
  color: #B0B2B7;
  font-weight: 400;
  font-size: var(--font-m);
  text-decoration: line-through;
  margin-bottom: 4px;
  text-align: right;
}

.pricing-info > p:last-of-type{
  color: #DD3C28;
  font-weight: 700;
  font-size: var(--font-m);
  text-align: right;
}

.pricing-info > p:last-of-type > span{
  font-size: var(--title-3);
}

.pricing-discount{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: var(--size-xs);
  padding: var(--size-s);
  border-radius: 12px;
  background-image: url('../img/landing/lp_pricing_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.pricing-discount > div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pricing-discount > div > img{
  width: var(--size-s);
  object-fit: contain;
}

.pricing-discount > div > h3{
  font-size: var(--title-3);
  color: var(--color-wh);
  font-weight: 700;
}

.pricing-discount > p{
  font-size: var(--font-s);
  color: var(--color-wh);
}

/* ---------------- WHY ---------------- */

#why{
  background-image: url('../img/landing/lp_why_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--size-l);
}

#why > .section-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#why > .section-wrapper > img:first-of-type{
  width: 84px;
  object-fit: contain;
}

#why > .section-wrapper > img:last-of-type{
  width: 32px;
  object-fit: contain;
}

#why .section-title{
  color: var(--color-wh);
  margin: 12px 0;
}

/* ---------------- PERFORMANCE ---------------- */

#performance > .section-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#performance > .section-wrapper > div{
  max-width: 860px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--size-m) 0 var(--size-l) 0;
}

#performance .section-desc{
  font-size: var(--font-xs);
  margin-top: 12px;
}

.chart-bg{
  width: 100%;
  object-fit: contain;
}

.chart-rising{
  position: absolute;
  bottom: 0%;
  left: 20%;
  width: 450px;
  object-fit: contain;
  transform-origin: bottom left;
  opacity: 0;
  animation: scaleUp 3s ease-in-out infinite;
}

.chart-index{
  position: absolute;
  top: 0;
  right: 4%;
  width: 200px;
  object-fit: contain;
  opacity: 0;
  animation: scaleUp 3s ease-in-out infinite;
}

@keyframes scaleUp {
      0% {
        transform: scale(0);
        opacity: 0;
      }
      33% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
}

.left-slider{
    white-space: nowrap;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.right-slider{
    white-space: nowrap;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    margin: var(--size-s) 0;
}

.left-slider > .slide-wrapper{
    flex-shrink: 0;
    width: max-content;
    display: flex;
    justify-content: center;
    animation: move-rtl 24s linear infinite;
}

.right-slider > .slide-wrapper{
    flex-shrink: 0;
    width: max-content;
    display: flex;
    justify-content: center;
    animation: move-ltr 24s linear infinite;
}

@keyframes move-rtl{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

@keyframes move-ltr{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(100%);
    }
}

.slide-wrapper > img{
    width: 120px;
    object-fit: contain;
    margin-right: var(--size-s);
}

/* ---------------- OVERVIEW ---------------- */

#overview{
  background-color: #F5F8FA;
}

#overview .section-desc{
  margin-top: var(--size-xs);
  margin-bottom: var(--size-m);
}

#overview > .section-wrapper > div{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--size-s);
  align-items: flex-start;
}

.overview-1{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--size-xs);
}

.overview-1 > p{
  font-weight: 400;
  font-size: var(--font-xs);
  color: var(--color-gy);
}

table{
  width: 100%;
  border-collapse : collapse;
  border-top: 2px solid var(--color-bk);
}

thead{
  background-color: #E6E8EB;
}

tbody{
  background-color: var(--color-wh);
}

th{
  font-weight: 700;
  line-height: 135%;
}

td{
  font-weight: 500;
}

th, td {
  font-size: var(--font-s);
  color: var(--color-bk);
  padding: var(--size-xs) 8px;
  border: 1px solid #EDF0F3;
  text-align: center;
}

tbody > tr:last-of-type > td{
  padding: var(--size-m) 8px;
}

td > span{
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gy);
}

tbody > tr > td:first-of-type{
  font-weight: 700;
}

tbody > tr:last-of-type > td:nth-of-type(2){
  background-color: #E2EEFF;
}

tbody > tr:last-of-type > td:nth-of-type(3){
  background-color: #FFF8E1;
}
tbody > tr:last-of-type > td:nth-of-type(4){
  background-color: #E8FFEF;
}

.overview-2{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  column-gap: 12px;
}

.overview-2 > div{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}

.overview-2 > div > div{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}

.overview-2 img{
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--color-line);
}

/* ---------------- PROGRAM ---------------- */

.program-title{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: var(--size-m);
  margin-bottom: var(--size-m);
}

.program-contents{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: var(--size-xs);
  row-gap: var(--size-s);
}

.program > div > div{
  position: relative;
}

.program > div > div > img{
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.program > div > div > div{
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.program span{
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.program > div > p:first-of-type{
  font-size: var(--font-s);
  color: var(--color-bk);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 8px;
  line-height: 135%;
  word-break: keep-all;
}

.program > div > p:last-of-type{
  font-size: 14px;
  color: var(--color-gy);
  font-weight: 400;
  line-height: 150%;
  word-break: keep-all;
}

.program-a span:first-of-type{
  color: #E6FFF2;
  background-color: #299C4B;
}

.program-a span:last-of-type{
  color: #299C4B;
  background-color: #E6FFF2;
}

.program-b span:first-of-type{
  color: #EEF4FF;
  background-color: #4574B9;
}

.program-b span:last-of-type{
  color: #4574B9;
  background-color: #EEF4FF;
}

.program-c span:first-of-type{
  color: #FFFCF3;
  background-color: #F3B803;
}

.program-c span:last-of-type{
  color: #F3B803;
  background-color: #FFFCF3;
}

.program-d span:first-of-type{
  color: #F8FAFC;
  background-color: #848890;
}

.program-d span:last-of-type{
  color: #848890;
  background-color: #F8FAFC;
}

/* ---------------- PHOTO ---------------- */

#photo{
  background-color: var(--color-bg);
}

#photo > .section-wrapper > .section-title{
  margin-bottom: var(--size-m);
}

.photo-swiper {
  width: 100%;
  overflow: hidden;
}

.photo-swiper .swiper-wrapper {
  display: flex;
}

.photo-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-swiper .swiper-slide img {
  max-width: 640px;
  width: 100%;
  border-radius: 12px;
}

.corp-admin{
  max-width: 1640px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/landing/lp_admin_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--size-xs);
  margin-top: var(--size-l);
}

.corp-admin > div{
  max-width: 1380px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--size-s);
}

.admin-txt{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--size-m) 0;
}

.admin-txt > img{
  width: 84px;
  object-fit: contain;
}

.admin-txt > .section-title{
  color: var(--color-wh);
  margin-top: 12px;
  margin-bottom: var(--size-xs);
}

.admin-txt > p{
  color: var(--color-wh);
  font-size: var(--font-s);
  font-weight: 400;
  line-height: 200%;
}

.admin-txt > p > span{
  font-size: var(--font-l);
  font-weight: 700;
  color: #FFF050;
}

.admin-img{
  line-height: 0;
  padding-top: var(--size-m);
}

.admin-img > img{
  width: 440px;
  object-fit: contain;
}

/* ---------------- REVIEW ---------------- */

#review{
  background-image: url('../img/landing/lp_review_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#review .section-desc{
  margin-top: var(--size-xs);
  margin-bottom: var(--size-m);
}

.reviews{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--size-xs);
}

.review{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--size-s);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background-color: var(--color-wh);
}

.review img{
  height: 60px;
  object-fit: contain;
}

.review h3{
  font-size: var(--font-xl);
  color: var(--color-bk);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: var(--size-xs);
  line-height: 140%;
  word-break: keep-all;
}

.review p{
  font-size: var(--font-s);
  color: var(--color-gy);
  font-weight: 400;
  line-height: 150%;
  word-break: keep-all;
}

.review a{
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-wh);
  font-size: var(--font-s);
  background-color: var(--color-bk);
  margin-top: var(--size-s);
  transition: 0.2s;
}

.review a:hover{
  background-color: var(--color-hl);
}

/* ---------------- FAQ ---------------- */

#faq .section-title{
  margin-bottom: var(--size-m);
}

.faq-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border-radius: 12px;
  background-color: var(--color-bg);
  padding: 32px 32px 16px 32px;
  border: 1px solid var(--color-line);
  transition: 0.2s;
}

.faq-item.active {
  border: 1px solid var(--color-hl);
  background-color: #F5FFFA;
  padding-bottom: 32px;
}

.faq-item.active > .faq-question{
  color: var(--color-hl);
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-bk);
  font-weight: 500;
  font-size: var(--font-m);
  line-height: 150%;
  padding-bottom: 16px;
  word-break: keep-all;
  transition: 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-gy);
  font-weight: 400;
  font-size: var(--font-s);
  word-break: keep-all;
  line-height: 150%;
}

.faq-arrow {
  width: 18px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(-180deg);
}

/* ---------------- RELATED ---------------- */

#related{
  background-color: var(--color-bg);
  padding: var(--size-m) 0;
}

#related > .section-wrapper{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: var(--size-xs);
  row-gap: var(--size-xs);
}

#related > .section-wrapper > div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#related img{
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--color-line);
}

#related p{
  font-size: var(--font-s);
  font-weight: 400;
  color: var(--color-gy);
  margin-top: 12px;
}

/* ---------------- CONTACT ---------------- */

#contact{
  background-image: url('../img/landing/lp_contact_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
}

#contact .section-title{
  color: #FFF050;
}

#contact .section-title > span{
  color: var(--color-wh);
}

#contact .section-desc{
  color: var(--color-wh);
  margin-top: var(--size-xs);
  margin-bottom: var(--size-m);
}

form{
  width: 100%;
  padding: var(--size-s);
  background-color: var(--color-wh);
  border-radius: var(--size-xs);
}

form > div{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--size-s);
}

form > div > div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

form > div > div:first-of-type{
  gap: 32px;
}

.input-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.input-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    font-weight: 500;
    color: var(--color-bk);
}

.input-wrapper > label > span{
  color: var(--color-hl);
}

.input-wrapper > input, .input-wrapper > textarea{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-s);
    font-weight: 400;
    color: var(--color-bk);
    background-color: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 16px 24px;
    resize: none;
}

.input-wrapper > input:focus, .input-wrapper > textarea:focus{
    background-color: var(--color-wh);
    border: 1px solid var(--color-hl);
    outline: none;
}

.textarea-wrapper{
    margin-bottom: 32px;
}

.checkbox-wrapper{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 12px;
}

.checkbox-wrapper > input{
    accent-color: var(--color-hl);
}

.checkbox-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xs);
    color: var(--color-bk);
    font-weight: 400;
    margin: 0 4px 0 8px;
}

.checkbox-wrapper > a{
    display: inline-block;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xs);
    color: var(--color-gy);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

form > input{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    color: var(--color-wh);
    font-weight: 700;
    background-color: var(--color-bk);
    border: none;
    border-radius: 12px;
    padding: var(--size-xs);
    margin-top: var(--size-s);
    cursor: pointer;
    transition: 0.2s;
}

form > input:hover{
    background-color: var(--color-hl-2);
}

form .phone-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: 4fr 1fr 8fr 1fr 8fr;
    align-items: center;
    padding: 0px var(--size-xs);
    background-color: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: 6px;
}

form .phone-wrapper > input{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-s);
    font-weight: 400;
    color: var(--color-bk);
    padding: 14px 0;
    text-align: center;
    border: none;
    background-color: var(--color-bg);
}

form .phone-wrapper > input:focus{
    outline: 1px solid var(--color-hl);
}

#submit-form-fixed{
  max-width: 280px;
  min-height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  border-radius: 0;
  padding: var(--size-m) var(--size-xs) var(--size-xs) var(--size-xs);
  border-right: 1px solid var(--color-line);
  z-index: 100;
  transition: 0.2s;
  box-shadow: 8px 0px 16px #25262B1A;
}

#submit-form-fixed.closed {
    transform: translateX(-280px); /* 살짝 보이게 할 거면 300px 정도만 밀어 */
}

#sidebar-toggle-btn{
  position: absolute;
  top: 0;
  right: -32px;
  width: 32px;
  height: 64px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #DD3C28;
  cursor: pointer;
    transition: 0.2s;
}

#sidebar-toggle-btn > img{
  width: 16px;
  object-fit: contain;
}

#sidebar-toggle-btn > p{
  line-height: 100%;
  color: var(--color-wh);
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
}

#submit-form-fixed > h2{
  width: 100%;
  font-size: var(--title-3);
  font-weight: 700;
  text-align: left;
  margin-bottom: var(--size-xs);
}

#submit-form-fixed > input, #submit-form-fixed > textarea{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-bk);
    background-color: var(--color-bg);
    border: 1px solid var(--color-line);
    margin: 0;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 8px;
    cursor: initial;
    resize: none;
}
#submit-form-fixed .phone-wrapper{
  border-radius: 8px;
  border: 1px solid var(--color-line);
  margin-bottom: 8px;
  padding: 0 14px;
}

#submit-form-fixed .phone-wrapper > input{
    font-size: 14px;
}

#submit-form-fixed div{
  gap: 0;
}

#submit-form-fixed > input:focus, #submit-form-fixed > textarea:focus{
    background-color: var(--color-wh);
    border: 1px solid var(--color-hl);
    outline: none;
}

#submit-form-fixed .checkbox-wrapper{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 8px;
}

#submit-form-fixed .checkbox-wrapper > input{
    accent-color: var(--color-hl);
}

#submit-form-fixed .checkbox-wrapper > label{
    display: inline-block;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 12px;
    color: var(--color-bk);
    font-weight: 400;
    margin: 0 4px 0 4px;
}

#submit-form-fixed .checkbox-wrapper > a{
    display: inline-block;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 12px;
    color: var(--color-gy);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

#submit-form-fixed > #form-submit2{
  cursor: pointer;
  margin-top: 12px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-wh);
  font-size: 15px;
  padding: 14px;
  border: none;
  background-color: var(--color-bk);
  transition: 0.2s;
}

#submit-form-fixed > #form-submit2:hover{
  background-color: var(--color-hl-2);
}

#submit-form-fixed > a{
  margin-top: 8px;
}

#submit-form-fixed > a div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#submit-form-fixed > a img{
  width: 32px;
  object-fit: contain;
}

#submit-form-fixed > a p{
  font-size: var(--font-l);
  color: var(--color-bk);
  font-weight: 600;
  margin-left: 8px;
  padding-right: 12px;
}


@media screen and (max-width: 1720px) {
  .corp-admin{
    max-width: calc(100vw - var(--size-l));
  }

  .corp-admin > div{
    padding: 0 var(--size-m);
  }
}

@media screen and (max-width: 1380px) {
  :root {
      --title-1: 40px;
      --title-2: 34px;
      --title-3: 28px; 

      --font-xl: 24px;
      --font-l: 20px;
      --font-m: 18px;
      --font-s: 16px;
      --font-xs: 14px;

      --size-xl: 96px;
      --size-l: 72px;
      --size-m: 54px;
      --size-s: 36px;
      --size-xs: 18px;
  }

  .banner-swiper .slide-counter{
    right: 28%;
  }

  .main-l img{
    width: 72px;
  }

  .main-r div > img{
    width: 24px;
  }

  .main-r div{
    padding: 12px var(--size-s);
  }

  .merits{
    column-gap: 12px;
  }

  .merit:last-of-type > div > p > br{
    display: none;
  }

  .verify-img{
    column-gap: 12px;
    row-gap: 24px;
  }

  .verify-img > img{
    width: 220px;
  }

  .pricing-num{
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .pricing-wrapper > div > p{
    font-size: var(--font-xl);
  }

  .pricing-discount > div > img{
    width: 32px;
  }

  #why > .section-wrapper > img:first-of-type{
    width: 72px;
  }

  #why > .section-wrapper > img:last-of-type{
    width: 28px;
  }

  #performance > .section-wrapper > div{
    max-width: 640px;
  }

  .chart-rising{
    width: 332px;
  }

  .chart-index{
    width: 144px;
  }

  .slide-wrapper > img{
    width: 108px;
  }

  .overview-1{
    min-width: calc(50vw - var(--size-m));
  }

  .overview-2{
    column-gap: 8px;
  }

  .overview-2 > div{
    row-gap: 8px;
  }

  .overview-2 > div > div{
    column-gap: 8px;
  }

  .overview-2 img{
    border-radius: 8px;
  }

  .program-contents{
    column-gap: 12px;
    row-gap: 24px;
  }

  .program > div > div > img{
    border-radius: 8px;
  }

  .corp-admin{
    margin-top: var(--size-m);
  }

  .admin-txt > img{
    width: 64px;
  }

  .admin-img > img{
    width: 360px;
  }

  .reviews{
    column-gap: 12px;
  }

  .review img{
    height: 54px;
  }

  .faq-item{
    padding: 24px 24px 12px 24px;
  }

  .faq-question{
    padding-bottom: 12px;
  }

  .faq-item.active{
    padding-bottom: 24px;
  }

  #related > .section-wrapper{
    column-gap: 12px;
    row-gap: 24px;
  }

  form > input{
    border-radius: 8px;
  }
}

@media screen and (max-width: 1200px) {
  .verify-img > img{
    width: 180px;
  }

  .admin-img > img{
    width: 320px;
  }
}

@media screen and (max-width: 1024px) {

  .banner-swiper .slide-counter{
    right: 20%;
  }

  .main-l{
    gap: 20px;
  }

  .main-r{
    flex-direction: column;
    padding: 24px;
    border-radius: 8px;
    gap: 12px;
  }

  .main-r div > p{
    font-size: var(--font-l);
  }

  .main-r div > img{
    width: 20px;
  }

  .counter-tag{
    padding: 6px 16px;
  }

  .counter-tag > img{
    width: 16px;
  }

  .counter-tag > span{
    font-size: var(--font-xs);
  }

  .counter{
    font-size: var(--title-3);
  }

  .merits{
    grid-template-columns: 1fr;
    column-gap: initial;
    row-gap: 12px;
  }
  .merit{
    flex-direction: row;
    padding-bottom: var(--size-m);
  }

  .merit > div:first-of-type{
    width: 100%;
  }
  
  .merit > div:last-of-type{
    max-width: 320px;
    max-height: 200px;
  }

  .merit:last-of-type > div > p > br{
    display: block;
  }

  #verify > .section-wrapper{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--size-s);
  }

  .verify-txt{
    align-items: center;
  }

  #verify .section-title{
    text-align: center;
    margin-bottom: var(--size-xs);
  }

  #verify .section-title > span > br{
    display: none;
  }

  #verify .section-desc{
    text-align: center;
  }

  .pricing-wrapper{
    grid-template-columns: 1fr;
    column-gap: initial;
    row-gap: 12px;
  }

  .pricing-wrapper > div > p{
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 12px;
  }

  .pricing-wrapper > div{
    flex-direction: row;
  }

  .pricing-discount{
    margin-top: 12px;
  }

  #overview > .section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  #overview > .section-wrapper > div{
    max-width: 640px;
    grid-template-columns: 1fr;
    column-gap: initial;
    row-gap: var(--size-s);
  }

  .program-contents{
    grid-template-columns: 1fr 1fr 1fr;
  }

  .program-contents > a:last-of-type{
    display: block !important;
  }

  .corp-admin > div{
    gap: var(--size-s);
  }

  .admin-txt > img{
    width: 48px;
  }

  .admin-txt > .section-title{
    font-size: var(--title-2);
  }

  .admin-txt > p > span{
    font-size: var(--font-s);
  }

  .admin-txt > p{
    line-height: 150%;
    word-break: keep-all;
  }

  .admin-img{
    height: 100%;
    padding-top: var(--size-xl);
  }

  .admin-img > img{
    width: 240px;
  }

  .reviews{
    grid-template-columns: 1fr;
    column-gap: initial;
    row-gap: 12px;
  }

  .faq-item{
    border-radius: 8px;
  }

  #related p{
    font-size: var(--font-xs);
    margin-top: 8px;
  }

  #contact .section-desc{
    margin-bottom: var(--size-s);
  }

}

@media screen and (max-width: 768px) {
  :root {
      --title-1: 28px;
      --title-2: 26px;
      --title-3: 24px; 

      --font-xl: 21px;
      --font-l: 19px;
      --font-m: 17px;
      --font-s: 15px;
      --font-xs: 13px;

      --size-xl:56px;
      --size-l: 56px;
      --size-m: 42px;
      --size-s: 28px;
      --size-xs: 16px;
  }

  #floating-contact{
    position: fixed;
    bottom: 8px;
    min-width: 320px;
    width: calc(100% - 40px);
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    padding: var(--size-xs);
    border-radius: 8px;
    color: var(--color-wh);
    background-color: var(--color-hl);
    z-index: 2;
    animation-name: updownAnimation;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow: 0px 4px 16px #25262B40;
}

  #floating-contact:hover{
    background-color: var(--color-bk);
  }

@keyframes updownAnimation{
    from{
        bottom: 8px;
    }

    to{
        bottom: 12px;
    }
}

  .mo-only{
    display: block !important;
  }

  .section-wrapper{
    padding: 0 20px;
  }

  #main{
    padding-bottom: var(--size-m);
  }

  .banner-swiper{
    margin-bottom: var(--size-xs);
  }
  .banner-swiper .swiper-slide img{
    border-radius: 0px;
  }

  .banner-swiper .slide-counter{
    font-size: 12px;
    padding: 3px 9px;
  }

  .banner-swiper .slide-counter{
    right: 8%;
  }

  .main-l img{
    width: 56px;
    border-radius: 8px;
  }

  .main-r{
    padding: 20px;
  }

  .main-r div{
    padding: 10px 20px;
    gap: 4px;
  }

  .counter{
    color: #17df64;
    font-size: var(--font-xl);
  }

  .counter-wrapper{
    margin: var(--size-s) 0;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .counter-wrapper > div{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bk);
    padding: var(--size-xs);
    border-radius: 8px;
    gap: 8px;
  }

  .counter-tag{
    padding: 0;
    background:none;
  }

  .counter-tag > span{
    font-weight: 500;
    color: var(--color-wh);
    font-size: var(--font-s);
  }

  .counter-wrapper > div:nth-of-type(2){
    border: none;
  }

  .merit > div:last-of-type{
    max-height: initial;
    max-width: initial;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .merit{
    flex-direction: column;
    padding: 32px 24px;
  }

  .merit > div > h3{
    margin-top: 8px;
  }

  .merit > div > img{
    width: 100%;
    max-width: 280px;
    max-height: 144px;
  }

  .merit:last-of-type > div > p > br{
    display: none;
  }

  .verify-img{
    column-gap: 8px;
    row-gap: 16px;
  }

  .verify-img > img{
    width: 100%;
  }

  #pricing .section-title{
    margin-bottom: var(--size-s);
  }

  .pricing-wrapper > div{
    flex-direction: column;
    padding: var(--size-s) 24px;
  }

  .pricing-num{
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
  .pricing-wrapper > div > p{
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: var(--size-xs);
  }

  .pricing-discount{
    padding: var(--size-s) 24px;
  }

  .pricing-discount > div > h3{
    font-size: var(--font-xl);
    word-break: keep-all;
    line-height: 135%;
  }

  .pricing-discount > p{
    word-break: keep-all;
    line-height: 150%;
    padding-left: 8px;
    text-indent: -8px;
  }

  #why{
    padding: var(--size-m) 20px;
  }

  #why > .section-wrapper > img:first-of-type{
    width: 48px;
  }

    #why > .section-wrapper > img:last-of-type{
    width: 22px;
  }

  #performance > .section-wrapper > div{
    width: 320px;
  }

  .chart-rising{
    width: 160px;
  }

  .chart-index{
    width: 80px;
  }

  .slide-wrapper > img{
    width: 64px;
    margin-right: 24px;
  }

  .right-slider{
    margin: 24px 0;
  }

  #overview .section-desc{
    margin-bottom: var(--size-s);
  }

  th, td{
    word-break: keep-all;
    padding: var(--size-xs) 4px;
    font-size: 14px;
  }

  td > span{
    font-size: 10px;
  }

  .overview-1 > p{
    word-break: keep-all;
    line-height: 150%;
  }

  .overview-2{
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .overview-2 > div:first-of-type{
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
  }

  .program-title{
    flex-direction: column;
    gap: var(--size-xs);
    margin-bottom: var(--size-s);
  }

  .program-contents{
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 24px;
  }

  .program > div > div > div{
    top: 16px;
    left: 16px;
    gap: 4px;
  }

  .program span{
    font-size: 12px;
    padding: 4px 12px;
  }

  .program > div > p:first-of-type{
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 4px;
  }

  .program > div > p:last-of-type{
    font-size: 14px;
  }

  .program-contents > a:last-of-type{
    display: none !important;
  }

  .program > div > div > img{
    border-radius: 4px;
  }

  #photo > .section-wrapper > .section-title{
    margin-bottom: var(--size-s);
  }

  .photo-swiper img{
    border-radius: 8px;
  }

  .corp-admin > div{
    flex-direction: column;
    padding: 0 24px;
  }

  .corp-admin{
    min-width: 320px;
    max-width: calc(100vw - 40px);
    border-radius: 12px;
  }

  .admin-txt{
    padding-bottom: 0;
  }

  .admin-img{
    padding-top: 0;
  }

  .admin-txt > img{
    width: 40px;
  }
  .admin-txt > .section-title{
    margin-top: 8px;
    margin-bottom: var(--size-xs);
  }

  .admin-txt > p{
    padding-left: 10px;
    text-indent: -10px;
  }

  .admin-img > img{
    width: 220px;
  }

  #review .section-desc{
    margin-bottom: var(--size-s);
  }

    #review .section-desc > br{
      display: none;
    }
  .review{
    padding: 32px 24px 24px 24px;
  }

    .review img{
      height: 48px;
    }

    .review a{
      border-radius: 6px;
      padding: 14px;
      margin-top: 24px;
    }

    .faq-question{
      font-size: var(--font-s);
      padding-bottom: 10px;
    }

    .faq-answer{
      font-size: var(--font-xs);
    }

    .faq-arrow{
      width: 14px;
      margin-left: 20px;
    }
    .faq-item{
      padding: 20px 20px 10px 20px;
    }

    form{
      padding: var(--size-s) 24px;
      border-radius: 12px;
    }

    form > div{
      gap: 24px;
    }
    .input-wrapper > input, .input-wrapper > textarea{
      font-size: 14px;
      padding: 14px 20px;
    }

    form .phone-wrapper > input{
      font-size: 14px;
    }
    
    form > div > div:first-of-type{
      gap: 24px;
    }

    form > div{
      grid-template-columns: 1fr;
    }

    .textarea-wrapper{
      margin-bottom: var(--size-xs);
    }

    form > input{
      margin-top: 24px;
    }

    #submit-form-fixed{
      display: none;
    }
}

@media screen and (max-width: 576px) {
  
  #main > .section-wrapper{
    padding: 0 16px;
  }

  .main-l{
    gap: 8px;
  }

  .main-l div{
    gap: 6px;
  }

  .main-l img{
    width: 40px;
    border-radius: 8px;
  }

  .main-l p{
    font-size: 10px;
  }

  .main-r{
    gap: 6px;
    background: none;
    padding: 0;
  }

  .main-r > p{
    font-size: 12px;
  }

  .main-r div{
    gap: 4px;
    padding: 8px 12px;
  }

  .main-r div > img{
    width: 13px;
  }

  .main-r div > p{
    font-size: 14px;
  }

  .program-contents{
    grid-template-columns: 1fr;
  }

  .program-contents a:nth-of-type(n+5) {
    display: none;
}


      #related > .section-wrapper{
      grid-template-columns: 1fr 1fr;
    }

}

.c-b {
    color: #246BEB;
}