@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #0aa876;
  --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
 * 역할   : 메인페이지 레이아웃
 */
body {
  background-color: #f2f2f2;
}

.visual {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
@media screen and (max-width: 1200px) {
  .visual {
    padding: 1rem;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-direction: column;
  }
}
.visual .swiper-container {
  width: 65%;
  height: auto;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-container {
    width: 100%;
  }
}
.visual .swiper-container .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  line-height: normal;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide {
    padding: 2rem;
  }
}
.visual .swiper-container .swiper-slide.slide1 {
  background-color: #03c5a0;
}
.visual .swiper-container .swiper-slide.slide1 > a {
  color: #03c5a0;
}
.visual .swiper-container .swiper-slide.slide2 {
  background-color: #0e7efa;
}
.visual .swiper-container .swiper-slide.slide2 > a {
  color: #0e7efa;
}
.visual .swiper-container .swiper-slide.slide3 {
  background-color: #8940ca;
}
.visual .swiper-container .swiper-slide.slide3 > a {
  color: #8940ca;
}
.visual .swiper-container .swiper-slide h2 {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide h2 {
    font-size: 1rem;
  }
}
.visual .swiper-container .swiper-slide em {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide em {
    font-size: 1.4rem;
  }
}
.visual .swiper-container .swiper-slide p {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide p {
    font-size: 1rem;
  }
  .visual .swiper-container .swiper-slide p > br {
    display: none;
  }
}
.visual .swiper-container .swiper-slide a {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  background-color: #fff;
  border-radius: 2rem;
  margin-top: 1rem;
  padding: 10px 2rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide a {
    font-size: 0.95rem;
  }
}
.visual .swiper-container .swiper-slide .img {
  position: absolute;
  right: 3rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide .img {
    position: static;
    display: flex;
    justify-content: flex-end;
  }
}
.visual .swiper-container .swiper-slide .img img {
  width: auto;
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-slide .img img {
    height: 100px;
  }
}
.visual .swiper-container .swiper-pagination {
  bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-pagination {
    width: auto;
    left: 2rem;
    bottom: 10px !important;
    margin: 0;
  }
}
.visual .swiper-container .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .visual .swiper-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.visual .swiper-container .swiper-pagination-bullet-active {
  background: #fff;
}
.visual .cs {
  width: 35%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .cs {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .visual .cs {
    padding: 1.5rem;
  }
}
.visual .cs__title p {
  font-weight: 600;
  text-align: center;
}
.visual .cs__input {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
}
.visual .cs__input > span {
  width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.visual .cs__input > input {
  width: calc(100% - 70px);
  height: 100%;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  padding: 0 1rem;
}
.visual .cs__input > input:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.visual .cs__input #csType {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
}
.visual .cs__input #csType input[type=radio] {
  display: none;
}
.visual .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: 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csType input[type=radio] + label {
    font-size: 0.85rem;
  }
}
.visual .cs__input #csType input[type=radio]:checked + label {
  font-weight: 500;
  background-color: var(--color-main);
  border: none;
  color: #fff;
}
.visual .cs__input #csGender {
  width: calc(100% - 70px);
  height: 100%;
  display: flex;
  gap: 10px;
}
.visual .cs__input #csGender input[type=radio] {
  display: none;
}
.visual .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: 5px;
  cursor: pointer;
}
.visual .cs__input #csGender input[type=radio]:checked + label {
  font-size: 0.95rem;
  font-weight: 500;
  background-color: var(--color-main);
  border: none;
  color: #fff;
}
.visual .cs__info {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.visual .cs__info label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.visual .cs__info label > input {
  width: 16px;
  height: 16px;
}
.visual .cs__info label > span {
  font-size: 0.9rem;
}
.visual .cs__info button {
  font-size: 0.9rem;
  color: cornflowerblue;
  text-decoration: underline;
  cursor: pointer;
}
.visual .cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.visual .cs__btn > a {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  background-color: var(--color-main);
  border-radius: 5px;
  cursor: pointer;
}
.visual .cs__btn > a.katalk {
  color: #000;
  background-color: #fee500;
}
.visual .cs__des {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.visual .cs__des span {
  font-size: 0.9rem;
  color: #555;
}
.visual .cs__des p {
  font-weight: 600;
}

.reason {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0 1rem 2rem;
}
@media screen and (max-width: 1200px) {
  .reason {
    padding: 2rem 1rem;
  }
}
.reason__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.reason__title {
  margin-bottom: 1rem;
}
.reason__title h3 {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .reason__title h3 {
    font-size: 1.2rem;
  }
}
.reason__list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .reason__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .reason__list {
    flex-direction: column;
  }
}
.reason__list > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
.reason__list > li h5 {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .reason__list > li h5 {
    font-size: 1.1rem;
  }
}
.reason__list > li img {
  width: 100%;
  max-width: 380px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .reason__list > li img {
    max-width: 250px;
  }
}
.reason__list > li span {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__list > li span {
    font-size: 0.85rem;
  }
}

.fit {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .fit {
    padding: 0 1rem 2rem;
  }
}
.fit__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.fit__title {
  margin-bottom: 1rem;
}
.fit__title h3 {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .fit__title h3 {
    font-size: 1.2rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.fit__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fit__list > li {
  width: calc(50% - 8px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .fit__list > li {
    width: 100%;
  }
}
.fit__list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 1rem;
  transition: all 0.2s ease;
  padding: 2rem;
}
.fit__list > li > a:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  transform: translateY(-3px);
}
.fit__list > li > a .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: normal;
}
.fit__list > li > a .txt em {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-main);
}
@media screen and (max-width: 1200px) {
  .fit__list > li > a .txt em {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .fit__list > li > a .txt em {
    font-size: 1rem;
  }
}
.fit__list > li > a .txt p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fit__list > li > a .txt p {
    font-size: 0.95rem;
  }
}
.fit__list > li > a .img img {
  width: auto;
  height: 90px;
  min-height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .fit__list > li > a .img img {
    height: 80px;
    min-height: 80px;
  }
}

.faq {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 0 1rem 2rem;
  }
}
.faq__inner {
  width: 100%;
  max-width: 1200px;
}
.faq__title {
  margin-bottom: 1rem;
}
.faq__title h3 {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .faq__title h3 {
    font-size: 1.2rem;
  }
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background-color: #ededed;
  border-radius: 1rem;
  overflow: hidden;
}
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
}
.faq__btn:focus-visible {
  outline: 2px solid var(--color-main);
}
.faq {
  /* 질문 텍스트 */
}
.faq__question {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 0.95rem;
    line-height: normal;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.faq {
  /* Q 아이콘 */
}
.faq__icon {
  width: 35px;
  min-width: 35px;
  height: 35px;
  background-color: #0e7efa;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: 12px;
}
.faq {
  /* 우측 화살표 아이콘 (CSS 그리기) */
}
.faq__arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 16px;
}
.faq {
  /* 답변 영역 (기본 숨김) */
}
.faq__answer {
  display: none;
  border-top: 1px solid #e0e0e0;
}
.faq__answer-content {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  padding: 20px 24px 24px 24px;
}
.faq {
  /* 💡 활성화 상태 클래스 (button에 적용) */
}
.faq__btn.is-active .faq__arrow {
  transform: rotate(-135deg);
}

.insu {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .insu {
    padding: 0 1rem 2rem;
  }
}
.insu__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
.insu__title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .insu__title {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.insu__title b {
  font-weight: inherit;
  color: var(--color-main);
}
.insu__item {
  width: 100%;
  height: auto;
}
.insu__item:not(:nth-last-of-type(1)) {
  margin-bottom: 4rem;
}
.insu__item .title {
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--color-main);
  margin-bottom: 2rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .insu__item .title {
    font-size: 1rem;
  }
}
.insu__item .list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.insu__item .list > li {
  width: calc(20% - 13px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .insu__item .list > li {
    width: calc(33.33% - 11px);
  }
}
@media screen and (max-width: 767px) {
  .insu__item .list > li {
    width: calc(50% - 8px);
  }
}
.insu__item .list > li .img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 3px;
  border-radius: 1rem;
  padding: 1rem;
}
.insu__item .list > li .img img {
  width: 110px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.insu__item .list > li > span {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .insu__item .list > li > span {
    font-size: 0.9rem;
  }
}