@charset "UTF-8";
/* Responsive Design Variables */
:root {
  /* Breakpoints */
  --mobile: 320px;
  --tablet: 768px;
  --desktop: 1024px;
  --lg-desktop: 1440px;
  /* Container max-widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  /* Typography */
  --font-family-primary: "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.m-br {
  display: none;
}
@media (max-width: 1023px) {
  .m-br {
    display: block;
  }
}

.p-br {
  display: none;
}
@media (min-width: 1024px) {
  .p-br {
    display: block;
  }
}

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

html {
  font-size: 10px;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1;
  color: #000;
  background-color: #fff;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background-color: #2f3542;
  border-radius: 10px;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  color: inherit;
  background: none;
  border: none;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

[hidden] {
  display: none;
}

body, html {
  width: 100%;
}

#wrap {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.mobile-block {
  display: none;
}
@media (max-width: 768px) {
  .mobile-block {
    display: block;
  }
}

@media (max-width: 900px) {
  .mobile-hidden {
    display: none;
  }
}

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

#footer {
  padding: 40px 20px;
  background: #222;
}
@media (min-width: 1024px) {
  #footer {
    padding-top: 42.5px;
    padding-bottom: 59.5px;
  }
  #footer .container {
    max-width: 1370px;
    margin: 0 auto;
    position: relative;
  }
}

.footer .logo {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: rgb(148, 148, 148);
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .footer .logo {
    font-size: 30.6px;
    line-height: 64.6px;
    color: #fff;
  }
}
.footer-info {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: #949494;
}
.footer-info .underline {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .footer-info {
    font-size: 13.6px;
    line-height: 27.2px;
  }
}
.footer-links {
  padding-top: 30px;
}
.footer-links a {
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  padding: 4.5px 8px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-links .copyright {
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  color: #949494;
}
@media (min-width: 1024px) {
  .footer-links {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-top: 0;
    text-align: right;
  }
  .footer-links a {
    font-size: 13.6px;
    height: 28.9px;
    line-height: 27.2px;
    width: auto;
    padding: 0 6.8px;
    text-align: center;
  }
  .footer-links .copyright {
    padding-top: 6.8px;
    font-size: 13.6px;
  }
}

/* Header & Drawer */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 100;
  border-bottom: 1px solid rgba(124, 124, 124, 0.6);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  background-color: transparent;
}
.header.is-scrolled {
  background: rgb(18, 18, 18);
  border-color: rgb(18, 18, 18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.header .header-container {
  max-width: 1370px;
  margin: 0 auto;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header .header-container {
    height: 102px;
  }
}
.header .header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .header .header-buttons {
    display: none;
  }
  .header .header-buttons .link-blank {
    display: none;
  }
}
.header .util-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header .util-links.d-none {
  display: none;
}
@media (min-width: 1024px) {
  .header .util-links {
    gap: 0 20px;
  }
  .header .util-links.d-none {
    display: flex;
  }
}
.header .link-blank {
  height: 30px;
  border-radius: 90px;
  padding-top: 7px;
  padding-right: 14px;
  padding-bottom: 9px;
  padding-left: 14px;
  gap: 2px;
  background-color: #000;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header .link-blank {
    font-size: 18px;
    gap: 0 10px;
    height: 44px;
    width: 140px;
  }
}
.header a.home-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../images/home.png") no-repeat center center/contain;
}
@media (min-width: 1024px) {
  .header a.home-icon {
    width: 16px;
    height: 16px;
  }
}
.header .logo a {
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .header .logo a {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .header .logo a {
    font-size: 36px;
  }
}
.header .btn-menu {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .header .btn-menu {
    display: none;
  }
}
.header .btn-menu .hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}
.header .btn-menu .line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.header .btn-menu .line-1 {
  top: 0;
}
.header .btn-menu .line-2 {
  top: 7px;
}
.header .btn-menu .line-3 {
  top: 14px;
}
.header .drawer {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}
.header .drawer .link-blank {
  display: none;
}
@media (min-width: 1024px) {
  .header .drawer {
    position: static;
    opacity: 1;
    visibility: visible;
    transition: none;
    display: flex;
    gap: 0 51px;
  }
  .header .drawer .link-blank {
    display: flex;
  }
}
.header .drawer .drawer-inner {
  position: absolute;
  right: 0;
  top: 50px;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 20px 40px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .header .drawer .drawer-inner {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    transform: none;
    align-items: center;
  }
}
.header .drawer .gnb {
  padding-top: 30px;
}
.header .drawer .gnb li + li {
  margin-top: 35px;
}
@media (min-width: 1024px) {
  .header .drawer .gnb {
    padding-top: 0;
    display: flex;
    gap: 0 28px;
  }
  .header .drawer .gnb li + li {
    margin-top: 0;
  }
}
@media (min-width: 1240px) {
  .header .drawer .gnb {
    gap: 0 48px;
  }
}
.header .drawer .gnb a {
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  text-align: left;
  vertical-align: middle;
  color: rgb(18, 18, 18);
  display: block;
}
@media (min-width: 1024px) {
  .header .drawer .gnb a {
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    color: #fff;
  }
}

.drawer-open {
  overflow: hidden;
}
.drawer-open .header {
  background: rgb(18, 18, 18);
}
.drawer-open .header-buttons {
  z-index: 5;
}
.drawer-open .header-buttons .link-blank {
  border: 1px solid #fff;
}
.drawer-open .header .drawer {
  opacity: 1;
  visibility: visible;
}
.drawer-open .header .drawer .drawer-inner {
  transform: translateX(0);
}
.drawer-open .header .btn-menu .line-1 {
  top: 7px;
  transform: rotate(45deg);
}
.drawer-open .header .btn-menu .line-2 {
  opacity: 0;
}
.drawer-open .header .btn-menu .line-3 {
  top: 7px;
  transform: rotate(-45deg);
}

/* Visual Slider (배경 제외 컨텐츠만) */
.visual .visual-slider {
  position: relative;
}
.visual .visual-slide-1 {
  background: url("../images/visual-slide-1.png") no-repeat center center/cover;
  min-height: 100vh;
  max-height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual .visual-slide-1 .frames {
  background: url("../images/frame1-mobile.png") no-repeat center 0;
  background-size: 100% 100%;
  max-width: 690px;
  width: 100%;
  aspect-ratio: 375/408;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .visual .visual-slide-1 .frames {
    display: none;
  }
}
@media (min-width: 1024px) {
  .visual .visual-slide-1 {
    max-height: inherit;
    background: url("../images/main01.png") no-repeat center center/cover;
    padding-top: 0;
  }
}
.visual .visual-slide-2 {
  background: url("../images/visual-slide-2.png") no-repeat center center/cover;
  min-height: 100vh;
  max-height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .visual .visual-slide-2 {
    max-height: inherit;
    padding-top: 0;
    background: url("../images/main02.png") no-repeat center center/cover;
  }
}
@media (min-width: 1024px) {
  .visual .visual-slide-content {
    display: none;
  }
}
.visual .visual-slide-content .visual-slide-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #B9EAFF;
  padding-bottom: 10px;
  text-align: center;
}
.visual .visual-slide-content .visual-slide-text span {
  border: 1px solid #B9F7FF;
  border-radius: 10px;
  padding: 10px 15px;
}
.visual .visual-slide-content .visual-slide-text span em {
  font-style: normal;
  color: #00B2FF;
  font-weight: 700;
}
.visual .visual-slide-content .visual-slide-title {
  line-height: 120%;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 34px;
  padding: 30px 0 15px;
}
@media (max-width: 1023px) {
  .visual .visual-slide-content .visual-slide-title span {
    display: block;
    font-size: 24px;
  }
}
.visual .visual-slide-content .visual-slide-text-2 {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: center;
}
.visual .swiper-pagination {
  gap: 0 12px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .visual .swiper-pagination {
    bottom: inherit;
    top: 50%;
    right: 150px;
    left: inherit;
    width: auto;
    flex-direction: column;
    gap: 12px 0;
  }
}
.visual .swiper-pagination-bullet {
  background: transparent;
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #949494;
  margin: 0;
}
@media (min-width: 1024px) {
  .visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.visual .swiper-pagination-bullet-active {
  background: #B9F7FF;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.visual-text {
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .visual-text {
    top: inherit;
    bottom: 50px;
  }
}
.visual-text i {
  width: 10px;
  height: 15px;
  background: url("../images/Vector.png") no-repeat center center/contain;
  display: inline-block;
  margin-top: 14px;
  vertical-align: top;
  animation: updown 3s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .visual-text i {
    margin-top: 22px;
    background-image: url("../images/Vector2.png");
    width: 30px;
    height: 14px;
  }
}
.visual-text p {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 23px;
}
@media (min-width: 1024px) {
  .visual-text p {
    font-size: 20px;
    line-height: 34px;
  }
}

.section-roadmap {
  background: rgb(247, 247, 250);
  padding: 60px 20px;
}
@media (min-width: 1024px) {
  .section-roadmap {
    padding-top: 102px;
    padding-bottom: 102px;
  }
  .section-roadmap .container {
    max-width: 1164.5px;
    margin: 0 auto;
  }
}
.section-roadmap .section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 139%;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-roadmap .section-title {
    font-size: 42.5px;
  }
  .section-roadmap .section-title br {
    display: none;
  }
}
.section-roadmap .roadmap-content {
  position: relative;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .section-roadmap .roadmap-content {
    margin-top: 51px;
  }
}
.section-roadmap .roadmap-content .image img {
  max-width: 100%;
}
.section-roadmap .zoomin {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: rgb(9, 63, 167) url("../images/icon-zoomin.png") no-repeat center center;
  border-radius: 50%;
  display: flex;
}
@media (min-width: 1024px) {
  .section-roadmap .zoomin {
    display: none;
  }
}

.section-training {
  padding: 60px 20px;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .section-training {
    padding-top: 102px;
    padding-bottom: 102px;
    overflow: hidden;
    padding-right: 20px;
  }
}
.section-training .container {
  max-width: 1370px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-training .container {
    max-width: 1164px;
  }
}
.section-training .training-content + .training-content {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .section-training .training-content + .training-content {
    margin-top: 102px;
  }
}
.section-training .training-content .hgroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}
@media (min-width: 1024px) {
  .section-training .training-content .hgroup {
    margin-bottom: 38.25px;
  }
}
.section-training .training-content .hgroup-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .section-training .training-content .hgroup-left {
    flex-direction: row;
    align-items: center;
    gap: 34px;
  }
}
.section-training .training-content .hgroup-title {
  font-size: 24px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .section-training .training-content .hgroup-title {
    font-size: 34px;
  }
}
.section-training .training-content .tag-group {
  display: flex;
  align-items: center;
  gap: 3px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: calc(100vw - 40px);
  min-width: 0;
}
@media (min-width: 1024px) {
  .section-training .training-content .tag-group {
    gap: 5.1px;
  }
}
.section-training .training-content .tag-group button {
  flex-shrink: 0;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 25px;
  background-color: #fff;
  font-weight: 500;
  font-size: 11px;
  border: 1px solid #DFDFE8;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .section-training .training-content .tag-group button {
    font-size: 11.9px;
    padding: 5.1px 8.5px;
  }
}
@media (min-width: 1400px) {
  .section-training .training-content .tag-group button {
    font-size: 15.3px;
    padding: 11.9px 17px;
  }
}

.btn-group {
  display: flex;
  gap: 7px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media (min-width: 1024px) {
  .btn-group {
    display: flex;
  }
}
.btn-group button {
  border-radius: 50%;
  border: 1px solid #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 30px;
  height: 30px;
  background-size: 6px auto;
}
.btn-group button.swiper-button-disabled {
  background-color: #DFDFE8;
  border-color: #DFDFE8;
  cursor: not-allowed;
  background-image: url("../images/t-btn-disabled.png");
}
@media (min-width: 1024px) {
  .btn-group button {
    width: 42.5px;
    height: 42.5px;
    background-size: 8.5px auto;
  }
}
.btn-group .btn-prev {
  background-image: url("../images/t-btn.png");
  transform: rotate(180deg);
}
.btn-group .btn-next {
  background-image: url("../images/t-btn.png");
}

.training-card {
  border-radius: 24px;
  border: 1px solid #DADADA;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .training-card {
    height: 255px;
  }
}
.training-card .training-name {
  font-size: 14px;
  font-weight: 700;
  padding: 20px 20px 8px 20px;
  margin: 0;
  line-height: 139%;
}
@media (min-width: 1024px) {
  .training-card .training-name {
    font-size: 15.3px;
    padding: 23.8px 25.5px 10.2px;
  }
}
.training-card .training-desc {
  font-size: 12px;
  font-weight: 600;
  height: 84px;
  line-height: 136%;
  padding: 0 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.training-card .training-desc br {
  display: none;
}
@media (min-width: 1024px) {
  .training-card .training-desc {
    font-size: 20.4px;
    padding: 0 25.5px;
    height: 85px;
  }
}
.training-card .training-links {
  margin-top: auto;
  padding: 0 20px 20px;
}
@media (min-width: 1024px) {
  .training-card .training-links {
    padding: 0 25.5px 25.5px;
  }
}
.training-card .training-links a {
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  gap: 0 4px;
  color: #fff;
  font-weight: 500;
  padding: 2px 5px 2px 10px;
  line-height: 156%;
  vertical-align: top;
  border-radius: 5px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .training-card .training-links a {
    padding: 2px 3.4px 2px 8.5px;
    font-size: 15.3px;
  }
}
.training-card .training-links a i {
  vertical-align: top;
  display: inline-block;
  width: 11px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url("../images/links-ak.png");
  background-size: auto 100%;
}
@media (min-width: 1024px) {
  .training-card .training-links a i {
    width: 13.6px;
    height: 11.9px;
    background-size: auto;
  }
}

.training-content-1 .training-card {
  background: linear-gradient(180deg, rgba(9, 63, 167, 0.15) 0%, rgba(9, 63, 167, 0.08) 20%, rgba(9, 63, 167, 0.03) 35%, #FFFFFF 40%, #FFFFFF 100%);
}
.training-content-1 .training-card .training-name {
  color: #093FA7;
}
.training-content-1 .training-card .training-links a {
  background-color: #7892C5;
}
.training-content-1 .sort-toggle:hover {
  font-weight: 700 !important;
  border-color: #093FA7 !important;
  color: #093FA7 !important;
}

.training-content-2 .training-card {
  background: linear-gradient(180deg, rgba(25, 128, 221, 0.15) 0%, rgba(25, 128, 221, 0.08) 20%, rgba(25, 128, 221, 0.03) 35%, #FFFFFF 40%, #FFFFFF 100%);
}
.training-content-2 .training-card .training-name {
  color: #1980DD;
}
.training-content-2 .training-card .training-links a {
  background-color: #669ED0;
}
.training-content-2 .sort-toggle:hover {
  font-weight: 700 !important;
  border-color: #1980DD !important;
  color: #1980DD !important;
}

.training-content-3 .training-card {
  background: linear-gradient(180deg, rgba(7, 183, 209, 0.15) 0%, rgba(7, 183, 209, 0.08) 20%, rgba(7, 183, 209, 0.03) 35%, #FFFFFF 40%, #FFFFFF 100%);
}
.training-content-3 .training-card .training-name {
  color: #07B7D1;
}
.training-content-3 .training-card .training-links a {
  background-color: #6FC1CD;
}
.training-content-3 .sort-toggle:hover {
  font-weight: 700 !important;
  border-color: #07B7D1 !important;
  color: #07B7D1 !important;
}

.training-content-4 .training-card {
  background: linear-gradient(180deg, rgba(7, 183, 209, 0.15) 0%, rgba(7, 183, 209, 0.08) 20%, rgba(7, 183, 209, 0.03) 35%, #FFFFFF 40%, #FFFFFF 100%);
}
.training-content-4 .training-card .training-name {
  color: #07B7D1;
}
.training-content-4 .training-card .training-links a {
  background-color: #6FC1CD;
}
.training-content-4 .sort-toggle:hover {
  font-weight: 700 !important;
  border-color: #07B7D1 !important;
  color: #07B7D1 !important;
}

.section-solution {
  padding: 60px 20px;
  background-color: #F7F7FA;
}
@media (min-width: 1024px) {
  .section-solution {
    padding-top: 102px;
    padding-bottom: 102px;
  }
  .section-solution .container {
    max-width: 1164.5px;
    margin: 0 auto;
  }
}
.section-solution h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.24;
}
.section-solution h2 span {
  color: #073CA2;
}
@media (min-width: 1024px) {
  .section-solution h2 {
    font-size: 42.5px;
    margin-bottom: 51px;
  }
}
.section-solution h3 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .section-solution h3 {
    font-size: 27.2px;
    margin-bottom: 34px;
    font-weight: 600;
  }
}
.section-solution .mtd-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-solution .mtd-process {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.section-solution .process-card {
  background: #FFFFFF;
  border: 1px solid #DFDFE8;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .section-solution .process-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .section-solution .process-card {
    flex: 1;
    min-width: 0;
  }
}
.section-solution .process-card .process-top {
  padding: 24px 20px;
  flex: 1;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-top {
    padding: 25.5px;
  }
}
.section-solution .process-card .process-top .process-number {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-top .process-number {
    font-size: 22.1px;
  }
}
.section-solution .process-card .process-top .process-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 146%;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-top .process-title {
    font-size: 19.55px;
    margin-bottom: 13.6px;
  }
}
.section-solution .process-card .process-top .process-question {
  font-weight: 600;
  color: #093FA7;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-top .process-question {
    font-size: 14.45px;
  }
}
.section-solution .process-card .process-top .process-desc {
  font-size: 14px;
  font-weight: 400;
  color: #949494;
  line-height: 1.6;
}
.section-solution .process-card .process-bottom {
  background: #1980DD;
  padding: 20px;
  display: flex;
  gap: 10px;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-bottom {
    padding: 20.4px 25.5px;
    flex-direction: column;
    gap: 0;
  }
}
.section-solution .process-card .process-bottom p {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1024px) {
  .section-solution .process-card .process-bottom p {
    font-size: 13.6px;
  }
  .section-solution .process-card .process-bottom p + p {
    margin-top: 3.4px;
  }
}

.p {
  display: none;
}
@media (min-width: 1024px) {
  .p {
    display: inline-block;
  }
}

.m {
  padding-top: 6px;
}
@media (min-width: 1024px) {
  .m {
    display: none;
  }
}

.title-group {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .title-group {
    margin-bottom: 51px;
  }
}
.title-group .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #093FA7;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .title-group .sub-title {
    font-size: 20.4px;
    margin-bottom: 15.3px;
  }
}
.title-group h2 {
  font-size: 19px;
  font-weight: 600;
  line-height: 138%;
}
@media (min-width: 768px) {
  .title-group h2 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .title-group h2 {
    font-size: 34px;
  }
}
.title-group .desc {
  font-size: 14px;
  font-weight: 500;
  color: #696969;
  line-height: 1.6;
  margin-top: 14px;
}
@media (min-width: 1024px) {
  .title-group .desc {
    margin-top: 20.4px;
    font-size: 17px;
  }
}

.section-insight {
  padding: 60px 20px;
}
@media (min-width: 1024px) {
  .section-insight {
    padding-top: 116.45px;
    padding-bottom: 116.45px;
    background-color: #fff;
  }
  .section-insight .container {
    max-width: 1164.5px;
    margin: 0 auto;
  }
}
.section-insight .insight-content {
  position: relative;
}
.section-insight .insight-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-insight .insight-top {
    flex-direction: row;
    gap: 25.5px;
  }
}
.section-insight .team-card {
  border: 1px solid #DFDFE8;
  background: #F7F7FA;
  border-radius: 24px;
  padding: 22px;
  flex: 1;
}
@media (min-width: 1024px) {
  .section-insight .team-card {
    padding: 27.2px 23.8px;
    border-radius: 17px;
  }
}
.section-insight .team-card .team-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #093FA7;
  margin-bottom: 12px;
  text-align: center;
  border-radius: 8px;
  padding: 6px 0;
  line-height: 156%;
}
@media (min-width: 1024px) {
  .section-insight .team-card .team-title {
    border-radius: 13.6px;
    font-size: 20.4px;
    padding: 10.2px 0;
    margin-bottom: 23.8px;
  }
}
.section-insight .team-card .team-desc {
  list-style: none;
  margin: 0;
}
@media (min-width: 1024px) {
  .section-insight .team-card .team-desc {
    padding-left: 17px;
  }
}
.section-insight .team-card .team-desc li {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  padding-left: 10px;
  position: relative;
}
.section-insight .team-card .team-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 2px;
  height: 2px;
  background: #000;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .section-insight .team-card .team-desc li {
    font-size: 15.3px;
  }
  .section-insight .team-card .team-desc li::before {
    width: 2.55px;
    height: 2.55px;
    top: 11.05px;
  }
}
.section-insight .insight-connector {
  position: relative;
  text-align: center;
}
.section-insight .insight-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .section-insight .insight-bottom {
    flex-direction: row;
    margin-top: 34px;
    gap: 18.7px;
    padding: 45.9px;
    background-color: #F7F7FA;
    border: 1px solid #DFDFE8;
    border-radius: 20.4px;
  }
}
.section-insight .service-card {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1023px) {
  .section-insight .service-card {
    padding: 10px 15px;
    border: 1px solid #DFDFE8;
    background-color: #fff;
    min-height: 90px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .section-insight .service-card.v2 {
    background: rgba(15, 141, 255, 0.1);
    border: 1px solid rgba(25, 128, 221, 0.4);
  }
}
@media (min-width: 768px) {
  .section-insight .service-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .section-insight .service-card {
    flex: 1;
    min-width: 0;
  }
}
.section-insight .service-card .service-top {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-top {
    border-radius: 20.4px;
    display: flex;
    flex-direction: column;
    gap: 2.55px;
    border: 1px solid #DFDFE8;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    height: 139.4px;
    padding: 0;
  }
  .section-insight .service-card .service-top.v2 {
    background: rgba(15, 141, 255, 0.1);
    border: 1px solid rgba(25, 128, 221, 0.4);
  }
}
.section-insight .service-card .service-badge {
  font-size: 14px;
  font-weight: 600;
  color: #4C4C4C;
  line-height: 125%;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-badge {
    font-weight: 600;
    color: #696969;
    font-size: 17px;
  }
}
.section-insight .service-card .service-title {
  font-size: 14px;
  font-weight: 600;
  color: #4C4C4C;
  line-height: 125%;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-title {
    font-weight: 700;
    color: #000;
    font-size: 20.4px;
  }
}
.section-insight .service-card .service-desc {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  line-height: 1.34;
  margin-top: 3px;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-desc {
    margin-top: 13.6px;
  }
}
.section-insight .service-card .service-desc li {
  position: relative;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-desc li + li {
    margin-top: 4.25px;
  }
}
.section-insight .service-card .service-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 2px;
  background: #696969;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .section-insight .service-card .service-desc li {
    font-size: 15.3px;
  }
  .section-insight .service-card .service-desc li::before {
    width: 2.55px;
    height: 2.55px;
    top: 9.35px;
  }
}

.section-diagnosis {
  padding: 60px 20px;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .section-diagnosis {
    padding-top: 116.45px;
    padding-bottom: 116.45px;
  }
  .section-diagnosis .container {
    max-width: 1164.5px;
    margin: 0 auto;
  }
}
.section-diagnosis .diagnosis-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
  padding-top: 10px;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-title {
    font-size: 27.2px;
    margin-bottom: 34px;
  }
}
.section-diagnosis .diagnosis-top {
  text-align: center;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-top img {
    width: 739.5px;
  }
}
.section-diagnosis .arrow-down {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .section-diagnosis .arrow-down {
    margin: 17px 0 42.5px;
  }
  .section-diagnosis .arrow-down img {
    width: 134.3px;
  }
}
.section-diagnosis .diagnosis-middle {
  margin: 15px 0 0;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle {
    margin: 51px 0 25.5px;
  }
}
.section-diagnosis .diagnosis-middle .middle-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .middle-title {
    font-size: 32px;
    margin-bottom: 25.5px;
  }
}
.section-diagnosis .diagnosis-middle .process-steps {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1261px;
  border: 1px solid #DFDFE8;
  padding: 20px;
  background: rgb(247, 247, 250);
  padding-left: 0px;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-steps {
    border-radius: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0;
    border-radius: 0;
    background: url("../images/diagnosis-step-bg.png") no-repeat center center;
    display: none;
  }
}
.section-diagnosis .diagnosis-middle .process-steps-pc {
  display: none;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-steps-pc {
    display: block;
    text-align: center;
  }
}
.section-diagnosis .diagnosis-middle .process-step {
  gap: 16px;
  flex: 1;
  min-width: 0;
  text-align: center;
}
.section-diagnosis .diagnosis-middle .process-step:not(:first-child) {
  border-top: 1px solid #DFDFE8;
  padding-top: 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .section-diagnosis .diagnosis-middle .process-step {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-step {
    padding-left: 42.5px;
    padding-top: 31.45px !important;
    margin-top: 0 !important;
    border-top: 0 !important;
    height: 189.55px;
    flex: 1;
    min-width: 0;
  }
}
.section-diagnosis .diagnosis-middle .process-step .step-number {
  color: #093FA7;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-step .step-number {
    font-size: 23.8px;
    padding-bottom: 17px;
  }
}
.section-diagnosis .diagnosis-middle .process-step .step-content {
  flex: 1;
}
.section-diagnosis .diagnosis-middle .process-step .step-content .step-title {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-step .step-content .step-title {
    font-size: 17px;
    margin-bottom: 10.2px;
  }
}
.section-diagnosis .diagnosis-middle .process-step .step-content .step-desc {
  font-size: 14px;
  font-weight: 400;
  color: #949494;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-middle .process-step .step-content .step-desc {
    font-size: 13.6px;
  }
}
.section-diagnosis .diagnosis-bottom {
  text-align: center;
}
.section-diagnosis .diagnosis-bottom .conclusion-text {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-diagnosis .diagnosis-bottom .conclusion-text {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-bottom .conclusion-text {
    font-size: 22.1px;
  }
}
.section-diagnosis .diagnosis-bottom .diagnosis-bottom-content {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.section-diagnosis .diagnosis-bottom .diagnosis-bottom-content p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 169%;
}
.section-diagnosis .diagnosis-bottom .diagnosis-bottom-content p b {
  display: block;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .section-diagnosis .diagnosis-bottom .diagnosis-bottom-content {
    padding-top: 40.8px;
    margin-top: 45.9px;
  }
  .section-diagnosis .diagnosis-bottom .diagnosis-bottom-content p {
    font-size: 20.4px;
  }
  .section-diagnosis .diagnosis-bottom .diagnosis-bottom-content p b {
    font-size: 27.2px;
  }
}
.section-diagnosis .btn-diagnosis {
  display: inline-block;
  margin-top: 20px;
  width: 194px;
  height: 46px;
  background: #093FA7;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
@media (min-width: 1024px) {
  .section-diagnosis .btn-diagnosis {
    padding: 0;
    width: 187px;
    height: 59.5px;
    font-size: 17px;
    border-radius: 10px;
  }
}

/* 강사진 섹션 - 모바일 슬라이드 / PC 그리드 */
.section-teachers {
  padding: 60px 20px;
  padding-right: 0;
  background-color: #F7F7FA;
}
@media (min-width: 1024px) {
  .section-teachers {
    padding-top: 102px;
    padding-bottom: 102px;
    padding-right: 20px;
  }
}
.section-teachers .container {
  max-width: 1370px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-teachers .container {
    max-width: 1164px;
  }
}
.section-teachers .teachers-slider {
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .section-teachers .teachers-slider {
    padding-right: 0;
  }
}
.section-teachers .section-title {
  font-family: Pretendard;
  font-weight: 600;
  font-size: 24px;
  line-height: 139%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-teachers .section-title .btn-group {
  display: flex;
  right: 20px;
}
@media (min-width: 1024px) {
  .section-teachers .section-title .btn-group {
    right: 0;
  }
}
.section-teachers .teacher-card {
  background: #fff;
  border: 1px solid rgb(218, 218, 218);
  border-radius: 12px;
  padding: 24px;
  height: 430px;
  position: relative;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card {
    height: 416.5px;
    padding: 25.5px;
    border-radius: 20.4px;
  }
}
.section-teachers .teacher-card .teacher-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 1px solid rgb(218, 218, 218);
  padding-bottom: 10px;
  color: #093FA7;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .teacher-name {
    font-size: 23.8px;
    margin-bottom: 17px;
    padding-bottom: 14.45px;
  }
}
.section-teachers .teacher-card .teacher-desc li {
  font-weight: 500;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 10px;
}
.section-teachers .teacher-card .teacher-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 2px;
  height: 2px;
  background: #111;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .teacher-desc li {
    font-size: 16px;
  }
  .section-teachers .teacher-card .teacher-desc li::before {
    top: 7.65px;
    width: 2px;
    height: 2px;
  }
}
.section-teachers .teacher-card .teacher-desc2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 15px;
  background: #E8F3FC;
  border-radius: 0 0 12px 12px;
  height: 194px;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .teacher-desc2 {
    border-radius: 0 0 20.4px 20.4px;
    height: 177.65px;
  }
}
.section-teachers .teacher-card .teacher-desc2 ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 156%;
  letter-spacing: -0.04em;
  padding-left: 10px;
  position: relative;
  color: #676767;
}
.section-teachers .teacher-card .teacher-desc2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 2px;
  height: 2px;
  background: #676767;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .teacher-desc2 ul li {
    font-size: 13.6px;
    padding-left: 5.95px;
  }
  .section-teachers .teacher-card .teacher-desc2 ul li::before {
    top: 8.5px;
    width: 2px;
    height: 2px;
  }
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .teacher-desc2 {
    padding: 23.8px 22.95px;
  }
}
.section-teachers .teacher-card .avatar {
  text-align: right;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .avatar {
    bottom: 34px;
    right: 34px;
  }
}
.section-teachers .teacher-card .avatar img {
  width: 52px;
  height: 52px;
}
@media (min-width: 1024px) {
  .section-teachers .teacher-card .avatar img {
    width: 76.5px;
    height: 76.5px;
  }
}
.section-teachers {
  /* 기본: 모바일 - 슬라이더 노출 */
}
.section-teachers .teachers-slider {
  display: block;
}
.section-teachers .teachers-slider.is-hidden {
  display: none;
}
.section-teachers .teachers-slider .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.section-teachers .teachers-slider .swiper-pagination-bullet-active {
  background: #111;
}

.section-teachers .section-title {
  position: relative;
}
.section-teachers .swiper-buttons {
  position: absolute;
  right: 0;
  top: 30px;
  display: flex;
  gap: 0 10px;
}

/* PC - 그리드 노출 */
@media (min-width: 1024px) {
  .section-teachers .section-title {
    font-size: 42.5px;
    margin-bottom: 23.8px;
  }
  .section-teachers .section-title {
    margin-bottom: 49.3px;
  }
}
.section-subscription {
  background: url("../images/bg-subscription.png") no-repeat center center/cover;
  padding: 60px 20px;
}
@media (min-width: 1024px) {
  .section-subscription {
    padding-top: 59.5px;
    padding-bottom: 59.5px;
    background-image: url("../images/bg-subscription-pc.png");
  }
}
.section-subscription .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1370px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section-subscription .container {
    flex-direction: row;
    gap: 0 22.1px;
    max-width: 1164.5px;
  }
}
.section-subscription .contact,
.section-subscription .newletter {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 21px 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  .section-subscription .contact,
  .section-subscription .newletter {
    width: 50%;
    padding: 40.8px 42.5px;
  }
}
.section-subscription .section-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  color: #fff;
}
@media (min-width: 1024px) {
  .section-subscription .section-title {
    font-size: 27.2px;
    line-height: 28.05px;
  }
}
.section-subscription .section-desc {
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  color: #fff;
  letter-spacing: -0.04em;
}
@media (min-width: 1024px) {
  .section-subscription .section-desc {
    font-size: 17px;
    line-height: 28.05px;
    margin-top: 10.2px;
  }
}
.section-subscription .newsletter-form {
  padding-top: 20px;
}
.section-subscription .newsletter-form .agree {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .section-subscription .newsletter-form .agree {
    gap: 6.8px;
  }
}
.section-subscription .newsletter-form .agree input {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
}
@media (min-width: 1024px) {
  .section-subscription .newsletter-form .agree input {
    width: 15.3px;
    height: 15.3px;
  }
}
.section-subscription .newsletter-form .agree label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .section-subscription .newsletter-form .agree label {
    font-size: 11.9px;
    line-height: 1;
  }
}
.section-subscription .newsletter-form .fields {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 15px;
}
@media (min-width: 1024px) {
  .section-subscription .newsletter-form .fields {
    padding-top: 17px;
  }
}
.section-subscription .newsletter-form .fields input {
  flex: 1;
  height: 32px;
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0 10px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
}
.section-subscription .newsletter-form .fields input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  .section-subscription .newsletter-form .fields input {
    height: 42.5px;
    font-size: 15.3px;
    padding: 0 17px;
  }
}
.section-subscription .btn-primary {
  background: rgb(185, 247, 255);
  border-radius: 4px;
  width: 72px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  height: 32px;
  font-weight: 700;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .section-subscription .btn-primary {
    width: 93.5px;
    height: 42.5px;
    font-size: 15.3px;
  }
}
.section-subscription .contact .actions {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .section-subscription .contact .actions {
    margin-top: 51px;
  }
}

/* Modal 기본 골격 (닫기까지) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 24px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: #fff;
  width: 880px;
  outline: none;
  max-height: 90vh;
  display: none;
  flex-direction: column;
}
@media (max-width: 900px) {
  .modal {
    width: 100%;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/modal-bg1.png") no-repeat center center;
  height: 160px;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .modal-header {
    height: 68px;
    background-size: cover;
  }
}
.modal-header.v2 {
  background-image: url("../images/modal-bg2.png");
}
.modal-header.v3 {
  background-image: url("../images/modal-bg3.png");
}
.modal-header .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: url("../images/close.png") no-repeat center center/100% auto;
}
@media screen and (max-width: 900px) {
  .modal-header .modal-close {
    width: 27px;
    height: 27px;
    right: 13px;
    top: 13px;
  }
}

.modal-header h3 {
  color: #B9F7FF;
  font-weight: 600;
  font-size: 28px;
  line-height: 139%;
}
@media screen and (max-width: 900px) {
  .modal-header h3 {
    font-size: 14px;
  }
}
.modal-header .modal-title-desc {
  color: #fff;
  font-size: 20px;
  margin-top: 6px;
}
@media screen and (max-width: 900px) {
  .modal-header .modal-title-desc {
    font-size: 12px;
  }
}

.modal-close {
  background: transparent;
  border: 0;
  line-height: 1;
  cursor: pointer;
}

.modal-body {
  padding: 40px;
  flex: 1;
  overflow-y: auto;
}
@media screen and (max-width: 900px) {
  .modal-body {
    padding: 32px;
  }
}

.course-detail .course-info {
  display: flex;
  gap: 228px;
}
@media screen and (max-width: 900px) {
  .course-detail .course-info {
    gap: 18px 0;
    flex-direction: column;
  }
}
.course-detail .course-info + .course-info {
  margin-top: 17px;
}
.course-detail .course-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 900px) {
  .course-detail .course-info .info-item {
    gap: 0 18px;
  }
}
.course-detail .course-info .info-item .info-label {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  min-width: 80px;
}
@media screen and (max-width: 900px) {
  .course-detail .course-info .info-item .info-label {
    font-size: 14px;
  }
}
.course-detail .course-info .info-item .info-value {
  font-size: 16px;
  color: #696969;
  line-height: 1.24;
  flex: 1;
}
@media screen and (max-width: 900px) {
  .course-detail .course-info .info-item .info-value {
    font-size: 14px;
  }
}
.course-detail .course-steps {
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .course-detail .course-steps {
    margin-top: 12px;
  }
}

.steps-label {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal:has(.v2) .step-card .step-header {
  background: rgba(25, 128, 221, 0.1);
}
.modal:has(.v2) .step-card .step-header .step-number {
  color: #1980DD;
}
.modal:has(.v2) .btn-detail {
  background-color: #1980DD;
}

.modal:has(.v3) .step-card .step-header {
  background: rgba(7, 183, 209, 0.1);
}
.modal:has(.v3) .step-card .step-header .step-number {
  color: #07B7D1;
}
.modal:has(.v3) .btn-detail {
  background-color: #07B7D1;
}

.notic {
  color: #ff0000;
}

.step-card {
  display: flex;
  border: 1px solid rgb(223, 223, 232);
  background: rgb(247, 247, 250);
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .step-card {
    flex-direction: column;
  }
}
.step-card .step-header {
  width: 200px;
  padding: 20px;
  background: rgba(9, 63, 167, 0.1);
}
@media screen and (max-width: 900px) {
  .step-card .step-header {
    width: 100%;
    padding: 15px;
  }
}
.step-card .step-header .step-number {
  font-size: 16px;
  font-weight: 600;
  color: #093FA7;
  display: block;
  margin-bottom: 2px;
  line-height: 134%;
}
@media screen and (max-width: 900px) {
  .step-card .step-header .step-number {
    font-size: 14px;
  }
}
.step-card .step-header .step-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.24;
}
@media screen and (max-width: 900px) {
  .step-card .step-header .step-title {
    font-size: 14px;
  }
}
.step-card .step-desc {
  flex: 1;
  padding: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1.34;
}
@media screen and (max-width: 900px) {
  .step-card .step-desc {
    padding: 15px;
    font-size: 14px;
  }
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .chapter-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}
.chapter-list .chapter-card {
  border: 1px solid #DFDFE8;
  background-color: #F7F7FA;
  padding: 20px;
  border-radius: 5px;
}
.chapter-list .chapter-card .chapter-header .chapter-number {
  font-size: 14px;
  color: #07B7D1;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  line-height: 156%;
}
.chapter-list .chapter-card .chapter-header .chapter-title {
  height: 42px;
  font-weight: 500;
  color: #000;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 100%;
}
@media (max-width: 900px) {
  .chapter-list .chapter-card .chapter-header .chapter-title {
    height: auto;
    font-size: 14px;
  }
}
.chapter-list .chapter-card .chapter-content {
  display: flex;
  flex-direction: column;
}
.chapter-list .chapter-card .chapter-content .content-item {
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-top: 1px dotted #000;
}
.chapter-list .chapter-card .chapter-content .content-item span {
  background-color: #222;
  width: 24px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.chapter-list .chapter-card .chapter-content .content-item p {
  font-size: 14px;
  color: #696969;
  line-height: 1.24;
}

@media (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0);
}

.modal-footer {
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 900px) {
  .modal-footer {
    padding-top: 32px;
  }
}

.btn-detail {
  width: 100%;
  max-width: 280px;
  height: 67px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -2%;
  text-align: center;
  background: #093FA7;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .btn-detail {
    max-width: 168px;
    height: 46px;
    border-radius: 16px;
    font-size: 16px;
  }
}