@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #0150c0;
  --color-sub: #1e293b;
  --color-error: #ef4444;
  --color-gray: #555;
  --color-base: #222;
  --color-border: #ccc;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error) !important;
}

.dim {
  color: var(--color-gray) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : main.scss
 * 역할   : 메인페이지 레이아웃
 */
.visual {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.6s ease-in-out;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .visual {
    padding: 0;
  }
}
.visual.bg-active-0 {
  background-color: #fdf9ee;
}
.visual.bg-active-1 {
  background-color: #eef5fd;
}
.visual.bg-active-2 {
  background-color: #f0f7f6;
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    border-radius: 0;
  }
}
.visual .swiper-container {
  width: 100%;
  height: 100%;
}
.visual .swiper-slide {
  width: 100%;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  line-height: normal;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 3rem 5rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide {
    height: auto;
    border-radius: 0;
    padding: 2rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide {
    align-items: center;
    text-align: center;
    background-position: 30%;
    padding: 2rem;
  }
}
.visual .swiper-slide.slide1 {
  background-image: url(../img/slide01.png);
}
.visual .swiper-slide.slide1 h2 {
  color: #fa9b08;
}
.visual .swiper-slide.slide1 a {
  background-color: #fa9b08;
}
.visual .swiper-slide.slide2 {
  background-image: url(../img/slide02.png);
}
.visual .swiper-slide.slide3 {
  background-image: url(../img/slide03.png);
}
.visual .swiper-slide.slide3 h2 {
  color: #0c8c54;
}
.visual .swiper-slide.slide3 a {
  background-color: #0c8c54;
}
.visual .swiper-slide picture img {
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide picture img {
    width: 110px;
  }
}
.visual .swiper-slide h3 {
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide h3 {
    font-size: 1.2rem;
  }
}
.visual .swiper-slide h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-main);
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide h2 {
    font-size: 1.8rem;
  }
}
.visual .swiper-slide p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide p {
    font-size: 1rem;
  }
}
.visual .swiper-slide a {
  color: #fff;
  background-color: var(--color-main);
  border-radius: 2rem;
  padding: 1rem 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide a {
    padding: 12px 1.5rem;
  }
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
  background-image: url(../img/next.png);
  right: 10px;
}
@media screen and (max-width: 767px) {
  .visual .swiper-button-next,
  .visual .swiper-container-rtl .swiper-button-prev {
    display: none;
  }
}
.visual .swiper-button-prev,
.visual .swiper-container-rtl .swiper-button-next {
  background-image: url(../img/prev.png);
  left: 10px;
}
@media screen and (max-width: 767px) {
  .visual .swiper-button-prev,
  .visual .swiper-container-rtl .swiper-button-next {
    display: none;
  }
}
.visual .swiper-button-next,
.visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 50%;
}

.cs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.cs__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 2px solid var(--color-main);
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .cs__inner {
    border-radius: 0;
  }
}
.cs__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs__title img {
  width: 50px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .cs__title img {
    width: 40px;
  }
}
.cs__title p {
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cs__title p {
    font-size: 1rem;
  }
}
.cs__title p b {
  color: var(--color-main);
  font-weight: inherit;
}
.cs__inputs {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cs__input {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cs__input.w-50 {
  width: calc(50% - 8px);
}
@media screen and (max-width: 767px) {
  .cs__input.w-50 {
    width: 100%;
  }
}
.cs__input > span {
  width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.cs__input > input {
  width: 100%;
  height: 50px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  padding: 0 1rem;
}
.cs__input > input:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.cs__input > textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .cs__input > textarea {
    max-height: 90px;
  }
}
.cs__input > textarea::-moz-placeholder {
  color: #555;
}
.cs__input > textarea::placeholder {
  color: #555;
}
.cs__input > textarea:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.cs__input #csSelect {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/caret-down-solid.svg") no-repeat right 1rem center;
  background-size: 12px;
  border-radius: 0.5rem;
  padding: 10px 1rem;
  position: relative;
}
.cs__input #csSelect option {
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  padding: 10px;
}
.cs__input #csType {
  width: 100%;
  height: 50px;
  display: flex;
  gap: 10px;
}
.cs__input #csType input[type=radio] {
  display: none;
}
.cs__input #csType input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  cursor: pointer;
}
.cs__input #csType input[type=radio]:checked + label {
  font-size: 0.95rem;
  font-weight: 500;
  background-color: var(--color-main);
  border: none;
  color: #fff;
}
.cs__input #csGender {
  width: 100%;
  height: 50px;
  display: flex;
  gap: 10px;
}
.cs__input #csGender input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cs__input #csGender input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.cs__input #csGender input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.2s;
}
.cs__input #csGender input[type=radio]#male + label::before {
  background-image: url("../img/man.png");
}
.cs__input #csGender input[type=radio]#male:checked + label {
  font-weight: 500;
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
.cs__input #csGender input[type=radio]#male:checked + label::before {
  filter: brightness(0) invert(1);
}
.cs__input #csGender input[type=radio]#female + label::before {
  background-image: url("../img/woman.png");
}
.cs__input #csGender input[type=radio]#female:checked + label {
  font-weight: 500;
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
.cs__input #csGender input[type=radio]#female:checked + label::before {
  filter: brightness(0) invert(1);
}
.cs__info {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cs__info label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs__info label > input {
  width: 16px;
  height: 16px;
}
.cs__info label > span {
  font-size: 0.95rem;
}
.cs__info button {
  font-size: 0.95rem;
  color: var(--color-main);
  text-decoration: underline;
  cursor: pointer;
}
.cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .cs__btn {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.cs__btn > a {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  background-color: var(--color-main);
  border-radius: 0.5rem;
  cursor: pointer;
}
.cs__btn > a.katalk {
  color: #000;
  background-color: #fee500;
}
.cs__btn > a img {
  width: 26px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.direct {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .direct {
    padding: 0 1rem 4rem;
  }
}
.direct__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.direct__title {
  margin-bottom: 2rem;
}
.direct__title h3 {
  font-size: 1.2rem;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .direct__title h3 {
    font-size: 1.1rem;
  }
}
.direct__title span {
  font-size: 1.4rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .direct__title span {
    font-size: 1.2rem;
  }
}
.direct__title p {
  font-size: 1.1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .direct__title p {
    font-size: 0.95rem;
    word-break: keep-all;
  }
}
.direct__items {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.direct__items .item {
  width: calc(33.33% - 11px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .direct__items .item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .direct__items .item {
    width: 100%;
  }
}
.direct__items .item.item1 > h4 {
  color: #357701;
}
.direct__items .item.item2 > h4 {
  color: #3871da;
}
.direct__items .item.item3 > h4 {
  color: #7239b2;
}
.direct__items .item.item4 > h4 {
  color: #fa5a01;
}
.direct__items .item.item5 > h4 {
  color: #2e9293;
}
.direct__items .item.item6 > h4 {
  color: #3971e3;
}
.direct__items .item > h4 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .direct__items .item > h4 {
    font-size: 1.1rem;
  }
}
.direct__items .item > h4 img {
  width: 70px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .direct__items .item > h4 img {
    width: 50px;
  }
}
.direct__items .item > ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
}
.direct__items .item > ul > li:hover > a img {
  transform: translateX(-5px);
}
.direct__items .item > ul > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.direct__items .item > ul > li > a em {
  font-size: 1.05rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .direct__items .item > ul > li > a em {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .direct__items .item > ul > li > a em {
    font-size: 0.9rem;
  }
}
.direct__items .item > ul > li > a img {
  width: 10px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
}
.direct__items .item > ul > hr {
  width: 100%;
  height: 1px;
  border: none;
  margin: 0;
  background-color: #ebebeb;
}
.direct__items .item .tooltip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.direct__items .item .tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.direct__items .item .tooltip-wrap button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #0052cc;
  color: #0052cc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  background: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0;
  outline: none;
}
.direct__items .item .tooltip-wrap div {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
  max-width: 280px;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 1.5;
  z-index: 100;
  color: #0052cc;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s;
}
.direct__items .item .tooltip-wrap div.is-active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .direct__items .item .tooltip-wrap div {
    left: 50%;
    top: -5px;
    transform: translate(-50%, -100%);
    width: calc(100vw - 40px);
    max-width: 260px;
    white-space: normal;
    word-break: keep-all;
  }
}
@media (hover: hover) and (pointer: fine) {
  .direct__items .item .tooltip-wrap:hover div {
    visibility: visible;
    opacity: 1;
  }
}