@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #253A79;
  --color-sub: #EEF7FF;
  --color-error: #ef4444;
  --color-gray: #5C5C5C;
  --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;
  padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
  .visual {
    padding: 0;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  gap: 2rem;
  background-color: #dff1ff;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-wrap: wrap;
    gap: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .visual__inner {
    padding: 0;
  }
}
.visual .swiper {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .visual .swiper {
    width: 100%;
  }
}
.visual .swiper .swiper-slide {
  width: 100%;
  height: auto;
  line-height: normal;
  padding: 6rem 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide {
    padding: 2rem;
  }
}
.visual .swiper .swiper-slide h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide h3 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide h3 {
    font-size: 1.1rem;
  }
}
.visual .swiper .swiper-slide h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide h2 {
    font-size: 1.4rem;
  }
}
.visual .swiper .swiper-slide p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide p {
    word-break: keep-all;
    text-wrap: balance;
  }
}
.visual .swiper .swiper-slide a {
  display: inline-block;
  font-weight: 500;
  background-color: #fff;
  border-radius: 2rem;
  padding: 8px 1.5rem;
}
.visual .swiper .swiper-slide .img {
  position: absolute;
  top: 50%;
  right: 1rem;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide .img {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide .img {
    position: static;
    transform: none;
    display: flex;
    justify-content: flex-end;
  }
}
.visual .swiper .swiper-slide .img img {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .visual .swiper .swiper-slide .img img {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper .swiper-slide .img img {
    width: 100px;
  }
}
.visual .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background: #595959;
  border-radius: 5px;
}
.visual .cs {
  width: 40%;
  height: auto;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .cs {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .visual .cs {
    border-radius: 0;
    border-bottom: 1px solid var(--color-border);
  }
}
.visual .cs__inputs {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.visual .cs__input {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .visual .cs__input {
    width: 100%;
    gap: 0;
  }
}
.visual .cs__input > span {
  width: 70px;
  min-width: 70px;
  height: auto;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .visual .cs__input > span {
    font-size: 0.9rem;
    text-align: left;
  }
}
.visual .cs__input > input {
  width: calc(100% - 70px);
  height: 40px;
  font-size: 0.95rem;
  border-bottom: 1px solid #595959;
  padding: 0 1rem;
}
.visual .cs__input > input:focus {
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .visual .cs__input > input {
    font-size: 0.9rem;
  }
}
.visual .cs__input #csType {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.visual .cs__input #csType input[type=radio] {
  display: none;
}
.visual .cs__input #csType input[type=radio] + label {
  width: calc(25% - 8px);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #595959;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csType input[type=radio] + label {
    width: calc(33.33% - 7px);
  }
}
.visual .cs__input #csType input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
.visual .cs__input #csGender {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1rem;
}
.visual .cs__input #csGender input[type=radio] {
  display: none;
}
.visual .cs__input #csGender input[type=radio] + label {
  width: 50%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #595959;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.visual .cs__input #csGender input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
.visual .cs__apply {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.visual .cs__info {
  display: flex;
  gap: 5px;
  margin: 1rem 0;
}
.visual .cs__info > label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.visual .cs__info > label input {
  width: 17px;
  height: 17px;
}
.visual .cs__info > label span {
  font-size: 0.9rem;
}
.visual .cs__info > span {
  font-size: 0.9rem;
  color: cornflowerblue;
  text-decoration: underline;
  cursor: pointer;
}
.visual .cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.visual .cs__btn .submit {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .visual .cs__btn .submit {
    width: 100%;
  }
}

.content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .content {
    padding: 2rem 1rem;
  }
}
.content__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.content__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.content__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .content__list {
    gap: 1rem;
  }
}
.content__item {
  width: calc(33.33% - 22px);
  height: auto;
  min-height: 300px;
  border: 1px solid #ccc;
  border-radius: 1rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .content__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .content__item {
    width: 100%;
  }
}
.content__item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
.content__item a span {
  width: 100px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .content__item a span {
    font-size: 0.9rem;
  }
}
.content__item a h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.content__item a p {
  font-size: 0.95rem;
  word-break: keep-all;
  text-wrap: balance;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .content__item a p {
    text-wrap: auto;
  }
}
.content__item a button {
  width: 50%;
  height: 45px;
  align-self: center;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .content__item a button {
    width: 100%;
  }
}
.content__item a .img {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media screen and (max-width: 1200px) {
  .content__item a .img {
    top: 1rem;
    right: 1rem;
  }
}
.content__item a .img img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .content__item a .img img {
    width: 70px;
  }
}

.ft__call {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
  .ft__call {
    padding: 0 1rem 2rem;
  }
}
.ft__call .inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .ft__call .inner {
    flex-wrap: wrap;
  }
}
.ft__call .inner li {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
.ft__call .inner li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .ft__call .inner li a {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .ft__call .inner li a {
    gap: 1rem;
  }
}
.ft__call .inner li a img {
  width: 50px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .ft__call .inner li a img {
    width: 40px;
  }
}
.ft__call .inner li a p {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .ft__call .inner li a p {
    font-size: 1rem;
  }
}