@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #f28800;
  --color-sub: #023870;
  --color-error: #ef4444;
  --color-gray: #555555;
  --color-base: #334155;
  --color-border: #e2e8f0;
}

.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;
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .visual__inner {
    gap: 1rem;
    padding: 0;
  }
}
.visual .swiper {
  width: 60%;
  height: auto;
  background-color: #ffa938;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (max-width: 1200px) {
  .visual .swiper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper {
    border-radius: 0;
    box-shadow: none;
  }
}
.visual .swiper .swiper-slide > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  line-height: normal;
  padding: 5rem 2rem 3rem 2rem;
}
.visual .swiper .swiper-slide > a .hd__logo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a .hd__logo {
    top: 1rem;
    left: 1rem;
  }
}
.visual .swiper .swiper-slide > a .hd__logo img {
  width: 110px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a .hd__logo img {
    width: 80px;
  }
}
.visual .swiper .swiper-slide > a .hd__logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-sub);
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a .hd__logo span {
    font-size: 0.95rem;
  }
}
.visual .swiper .swiper-slide > a > h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a > h2 {
    font-size: 1.1rem;
  }
}
.visual .swiper .swiper-slide > a > h3 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a > h3 {
    font-size: 1.4rem;
  }
}
.visual .swiper .swiper-slide > a .img {
  margin: 1.5rem 0;
}
.visual .swiper .swiper-slide > a .img img {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a .img img {
    width: 100px;
  }
}
.visual .swiper .swiper-slide > a > p {
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide > a > p {
    font-size: 1rem;
    text-wrap: balance;
    word-break: keep-all;
  }
  .visual .swiper .swiper-slide > a > p br {
    display: none;
  }
}
.visual .swiper .swiper-control .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-image: url(../img/left.png);
  background-size: 40px;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-control .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-size: 35px;
    left: 1rem;
  }
}
.visual .swiper .swiper-control .swiper-button-next {
  width: 40px;
  height: 40px;
  background-image: url(../img/right.png);
  background-size: 40px;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-control .swiper-button-next {
    width: 35px;
    height: 35px;
    background-size: 35px;
    right: 1rem;
  }
}
.visual .direct {
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .visual .direct {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .visual .direct {
    padding: 0 1rem;
  }
}
.visual .direct > ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.visual .direct > ul > li {
  width: calc(33.33% - 11px);
  height: auto;
  background-color: #fff7f1;
  border: 2px solid var(--color-main);
  border-radius: 0.5rem;
}
.visual .direct > ul > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1rem;
}
.visual .direct > ul > li > a img {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .visual .direct > ul > li > a img {
    width: 30px;
  }
}
.visual .direct > ul > li > a span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-sub);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .visual .direct > ul > li > a span {
    font-size: 0.9rem;
    line-height: normal;
  }
}

.cs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
  .cs {
    padding: 2rem 1rem;
  }
}
.cs__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 1rem;
  padding: 2rem;
}
.cs__inputs {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cs__inputs #csSelect {
  width: calc(50% - 8px);
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 500;
  color: #595959;
  background-color: #fff;
  appearance: none;
  /* 기본 브라우저 스타일 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background: url("../img/caret-down-solid.svg") no-repeat right 1rem center;
  background-size: 12px;
  padding: 10px 1rem;
}
@media screen and (max-width: 767px) {
  .cs__inputs #csSelect {
    width: 100%;
  }
}
.cs__inputs #csSelect option {
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  padding: 10px;
}
.cs__inputs #csGender {
  width: calc(50% - 8px);
  height: 50px;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .cs__inputs #csGender {
    width: 100%;
  }
}
.cs__inputs #csGender input[type=radio] {
  display: none;
}
.cs__inputs #csGender input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.cs__inputs #csGender input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
.cs__inputs > input {
  width: calc(50% - 8px);
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .cs__inputs > input {
    width: 100%;
  }
}
.cs .cs__apply {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs .cs__apply .cs__info {
  display: flex;
  gap: 5px;
  margin: 1rem 0;
}
.cs .cs__apply .cs__info label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cs .cs__apply .cs__info label > span {
  font-weight: 500;
  color: #595959;
}
@media screen and (max-width: 767px) {
  .cs .cs__apply .cs__info label > span {
    font-size: 0.9rem;
  }
}
.cs .cs__apply .cs__info input {
  width: 17px;
  height: 17px;
}
.cs .cs__apply .cs__info > span {
  font-weight: 600;
  color: var(--color-sub);
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cs .cs__apply .cs__info > span {
    font-size: 0.9rem;
  }
}
.cs .cs__apply .cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cs .cs__apply .cs__btn .submit {
  width: 50%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .cs .cs__apply .cs__btn .submit {
    width: 100%;
  }
}

.banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0 0 2rem;
}
@media screen and (max-width: 1200px) {
  .banner {
    padding: 0 1rem 2rem;
  }
}
.banner__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.banner__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.banner__list > li {
  width: calc(50% - 8px);
  height: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner__list > li {
    width: 100%;
  }
}
.banner__list > li:nth-of-type(1) {
  background-color: #f9f1fb;
}
.banner__list > li:nth-of-type(2) {
  background-color: #ffefea;
}
.banner__list > li:nth-of-type(3) {
  background-color: #f4f9ee;
}
.banner__list > li:nth-of-type(4) {
  background-color: #ecf9ff;
}
.banner__list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
@media screen and (max-width: 1200px) {
  .banner__list > li > a {
    padding: 2rem;
  }
}
.banner__list > li > a h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .banner__list > li > a h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__list > li > a h3 {
    font-size: 1.1rem;
  }
}
.banner__list > li > a p {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .banner__list > li > a p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__list > li > a p {
    font-size: 0.95rem;
  }
}
.banner__list > li > a .img {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media screen and (max-width: 1200px) {
  .banner__list > li > a .img {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
  }
}
.banner__list > li > a .img img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .banner__list > li > a .img img {
    width: 60px;
  }
}