:root {
  --brandColor: #308b61;
  --brandColor2: #ffca3c;
  /* --subBrandColor: #fff; */
  --brandColor-dark: #d0bdea;
  --backgroundColor: #fbf6f4;
  --backgroundColor-gray: #e9eef2;
  --textColor-light: #969696;

  --radius: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

.bohumSwiper {
  padding: 15px 0 35px 0 !important;
}

main {
  overflow: hidden;
}

.highlight {
  color: #2f895f;
}

.underline {
  /* background-color: #aacfbd; */
  background-color: #2f895f;
  color: #fff;
  /* font-weight: 500; */
  padding: 0 5px;
}

/* 공통 CSS */
.section_title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
  line-height: 1.3;
  word-break: keep-all;
}

/* main_banner */
.main_banner {
  padding-bottom: 70px;
}

.main_banner .img_wrap {
  width: 100%;
  height: 260px;
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.main_banner .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_banner .title_wrap {
  line-height: 1.4;
}

.main_banner .title_wrap .title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main_banner .title_wrap .sub_title {
  font-size: 24px;
  font-weight: 500;
  text-align: right;
  word-break: keep-all;
}

/* section1, seciton2 공통 스타일 */
.section1 .layout_wrap,
.section2 .layout_wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  font-size: 22px;
}

.section1 .tab_list,
.section2 .tab_list {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section1 .tab_item button,
.section2 .tab_item button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 30px;
  border: 3px solid #ccc;
  border-radius: 50px;
  line-height: 1.3;
}

.section1 .tab_item button span,
.section2 .tab_item button span {
  flex-shrink: 0;
}

.section1 .tab_item.active button,
.section2 .tab_item.active button {
  border-color: #2f895f;
  background-color: #e2eee9;
}

.section1 .tab_panel_item,
.section2 .tab_panel_item {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  word-break: keep-all;
  line-height: 1.5;
}

.section1 .tab_panel_item img {
  width: 190px;
}

.section1 .tab_panel_item.active,
.section2 .tab_panel_item.active {
  display: flex;
}

/* section1 */
.section1 .tab_panel_item {
  align-items: flex-end;
  text-align: right;
}

.section1 .tab_item button img {
  width: 45px;
}

/* section2 */
.section2 .tab_list {
  align-items: flex-end;
}

.section2 .tab_item button img {
  width: 57px;
}

.section2 .tab_panel_item {
  gap: 50px;
}

.section2 .tab_panel_item img {
  width: 270px;
}

/* section03 */
.section3 .layout_wrap {
  display: flex;
  gap: 60px;
}

.section3 .img_slide {
  /* flex-shrink: 0; */
  width: 60%;
  height: 370px;
  border-radius: 15px;
  overflow: hidden;
}

.section3 .img_slide .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.section3 .img_slide .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 40%);
}

.section3 .img_slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section3 .img_slide .swiper-slide .title_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  word-break: keep-all;
}

.section3 .text_slide {
  flex-basis: 40%;
}

.section3 .text_slide .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section3 .text_slide .badge_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 600;
  color: var(--brandColor);
}

.section3 .text_slide img {
  width: 45px;
}

.section3 .text_slide .text_wrap {
  flex-grow: 1;
}

.section3 .text_slide .desc {
  font-size: 22px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section3 .text_slide .btn_view_more {
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 22px;
  color: var(--brandColor);
  text-align: center;
  font-weight: 600;
  border: 2px solid var(--brandColor);
  border-radius: 15px;
}

/* section4 */
.section4 .layout_wrap {
  display: flex;
  background-color: var(--brandColor);
  border-radius: 30px;
  padding: 50px 30px;
}

.section4 .content_item {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-right: 1px solid #fff;
  color: #fff;
  padding: 15px 50px;
}

.section4 .content_item:last-child {
  border-right: none;
}

.section4 .content_item img {
  width: 100px;
}

.section4 .content_item .text_wrap {
  flex-grow: 1;
}

.section4 .content_item .title {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
  line-height: 1.3;
}

.section4 .content_item .desc {
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section4 .content_item .btn_view_more {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  transition: all 300ms;
}

.section4 .content_item:hover .btn_view_more {
  color: #ffca3c;
}

.section_info {
  background-color: #fafafa;
}

.section_info__body {
  max-width: 900px;
  margin: 0 auto;
}

.section_info__body .text_wrap {
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

.section_info__body .text_wrap p {
  margin-bottom: 1.2em;
}

.section_info__body .text_wrap p:first-of-type {
  font-size: 19px;
  font-weight: 500;
  color: #222;
}

.section_info__body .text_wrap strong {
  color: var(--brandColor);
}

.section_info__body .text_wrap ul {
  margin: 0 0 1.2em 1.2em;
  padding-left: 0;
  list-style: disc;
}

.section_info__body .text_wrap li {
  margin-bottom: 0.4em;
}

.section_info__list {
  margin-left: 1.2em;
}

.section_info__list--summary {
  margin-top: 1.4em;
  padding: 1.2em 1.4em;
  border-radius: 14px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
}

.section_info__list--summary li {
  font-weight: 500;
}

.section_info__steps {
  margin: 1.4em 0 1.6em;
  padding-left: 0;
  list-style: none;
  border-left: 3px solid var(--brandColor);
}

.section_info__steps li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 1.4em;
  font-size: 16px;
}

.section_info__steps li + li {
  border-top: 1px dashed #e2e2e2;
}

.section_info__steps li strong {
  display: block;
  margin-bottom: 0.1em;
  font-size: 15px;
}

.section_info__steps li span {
  display: block;
  color: #555;
}

.section_info__link-buttons {
  margin: 1.6em 0 1.8em;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section_info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--brandColor);
  font-size: 15px;
  font-weight: 500;
  color: var(--brandColor);
  background-color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.section_info__btn:hover {
  background-color: var(--brandColor);
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.section_info__table-wrap {
  margin: 1.8em 0 0;
  overflow-x: auto;
}

.section_info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

.section_info__table caption {
  margin-bottom: 0.6em;
  font-size: 15px;
  color: #777;
  text-align: left;
}

.section_info__table th,
.section_info__table td {
  padding: 0.7em 0.9em;
  border: 1px solid #e2e2e2;
  vertical-align: top;
  text-align: left;
}

.section_info__table thead th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.section_info__table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.section_info__table-wrap + p {
  margin-top: 1.6em;
}

/* qna */
.qna {
}

.qna .qna_list {
  width: 100%;
  height: fit-content;
}

.qna .qna_item {
  width: 100%;
  border: 2px solid var(--brandColor);
  border-radius: 50px;
  margin-bottom: 15px;
}

.qna .question_wrap .text_wrap,
.qna .answer_wrap .text_wrap {
  display: flex;
  gap: 20px;
  font-size: 18px;
  padding: 20px 35px;
}

.qna .question_wrap .q,
.qna .answer_wrap .a {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background-color: var(--brandColor);
  /* border: 2px solid var(--brandColor); */
}

.qna .question_wrap .question,
.qna .answer_wrap .answer {
  line-height: 1.3;
}

.qna .question_wrap {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.qna .question_wrap .text_wrap {
  align-items: center;
}

.qna .question_wrap i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 20px;
  height: 3px;
  background-color: var(--brandColor);
  transform: translate(-50%, -50%);
}

.qna .question_wrap i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 3px;
  height: 20px;
  background-color: var(--brandColor);
  transform: translate(-50%, -50%);
  transition: transform 200ms;
}

.qna .answer_wrap {
  display: none;
}

.qna .answer_wrap .a {
  background-color: #fff;
  border: 2px solid var(--brandColor);
  color: var(--brandColor);
}

.qna .question_wrap i {
  position: relative;
  margin: 0 15px 0 auto;
}

.qna .qna_item.active {
  background-color: var(--brandColor);
  color: #fff;
}

.qna .qna_item.active .question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qna .qna_item.active .question_wrap i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qna .qna_item.active .question_wrap .text_wrap {
  /* border-bottom: 1px solid var(--brandColor); */
}

.qna .qna_item.active .question_wrap .q,
.qna .qna_item.active .answer_wrap .a {
  background-color: var(--brandColor);
  border: 2px solid #fff;
  color: #fff;
}

.qna .qna_item.active .question_wrap i::before,
.qna .qna_item.active .question_wrap i::after {
  background-color: #fff;
}

/* section4 */

/* 반응형 ---------------------------------- */

/* pc */
@media screen and (max-width: 1400px) {
}

/* 1280 ~ 1024 */
@media screen and (max-width: 1280px) {
  /* section1, section2 공통 스타일 */
  .section1 .layout_wrap,
  .section2 .layout_wrap {
    gap: 50px;
  }

  /* section4 */
  .section4 .layout_wrap {
    padding: 50px 10px;
  }

  .section4 .content_item:hover .btn_view_more {
    color: #fff;
  }
}

/* 태블릿 large */
/* 960 ~ 1023 */
@media screen and (max-width: 1023px) {
  /* main_banner */
  .main_banner {
    padding: 110px 0 70px 0;
  }

  /* section1, seciton2 공통 스타일 */
  .section1 .layout_wrap,
  .section2 .layout_wrap {
    flex-direction: column;
    gap: 40px;
  }

  .section1 .tab_list,
  .section2 .tab_list {
    align-items: center;
  }

  .section1 .tab_panel_item,
  .section2 .tab_panel_item {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  /* section1 */
  .section1 .tab_panel_item img {
    width: 130px;
  }

  /* section2 */
  .section2 .tab_panel_list {
    order: 2;
  }

  .section2 .tab_list {
    order: 1;
  }

  .section2 .tab_panel_item img {
    width: 200px;
  }

  /* section3 */
  .section3 .img_slide {
    flex-basis: 50%;
  }

  .section3 .text_slide {
    flex-basis: 50%;
  }

  /* section4 */
  .section4 .layout_wrap {
    padding: 40px 10px;
  }
}

/* 태블릿 small */
/* 768 ~ 959 */
@media screen and (max-width: 959px) {
  /* 공통 css */
  .section_title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  /* section3 */
  .section3 .layout_wrap {
    gap: 40px;
    /* padding: 0 50px; */
  }

  .section3 .text_slide .desc {
    -webkit-line-clamp: 6;
  }

  /* section4 */
  .section4 .layout_wrap {
    flex-direction: column;
    padding: 40px 50px;
  }

  .section4 .content_item {
    padding: 40px 50px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .section4 .content_item:last-child {
    border-bottom: none;
  }

  .section4 .content_item .btn_view_more {
    margin-top: 0;
  }
}

/* 갤럭시 폴드, 스마트폰 가로 */
/* 587 ~ 767 */
@media screen and (max-width: 767px) {
  /* 공통 css */
  .section_title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  /* main_banner */
  .main_banner {
    padding-bottom: 55px;
  }

  .main_banner .img_wrap {
    height: 200px;
  }

  .main_banner .title_wrap .title {
    font-size: 36px;
  }

  /* section1, section2 공통 스타일 */
  .section1 .layout_wrap,
  .section2 .layout_wrap {
    font-size: 20px;
  }

  .main_banner .title_wrap .sub_title {
    font-size: 20px;
  }

  /* section1 */
  .section1 .tab_panel_item img {
    width: 110px;
  }

  /* section2 */
  .section2 .tab_panel_item img {
    width: 130px;
  }

  /* section3 */
  .section3 .layout_wrap {
    flex-direction: column;
    gap: 25px;
  }

  .section3 .img_slide {
    flex-basis: auto;
    width: 100%;
    height: 300px;
  }

  .section3 .text_slide {
    width: 100%;
  }

  .section3 .text_slide .desc {
    font-size: 20px;
  }
}

/* 모바일 large */
/* 431 ~ 586 */
@media screen and (max-width: 586px) {
  /* main_banner */
  .main_banner {
    padding: 85px 0 70px 0;
  }

  .main_banner .img_wrap {
    height: 160px;
  }

  /* secion1, sextion2 공통 스타일 */
  .section1 .tab_item,
  .section2 .tab_item {
    width: 100%;
  }

  .section1 .tab_item button,
  .section2 .tab_item button {
    justify-content: center;
    width: 100%;
  }

  .section1 .tab_item button span,
  .section2 .tab_item button span {
    flex-shrink: 1;
    word-break: keep-all;
  }

  .section1 .tab_panel_item img,
  .section2 .tab_panel_item img {
    display: none;
  }

  /* section3 */
  .section3 .img_slide {
    height: 260px;
  }

  .section3 .img_slide .swiper-slide .title_wrap {
    font-size: 30px;
  }

  /* section4 */
  .section4 .layout_wrap {
    padding: 0 50px;
  }

  .section4 .content_item {
    padding: 40px 15px;
  }
}

/* 모바일 small */
/* 360 ~ 430 */
@media screen and (max-width: 430px) {
  /* sectoion3 */
  .section3 .layout_wrap {
    gap: 20px;
  }

  /* section4 */
  .section4 .layout_wrap {
    padding: 0 20px;
  }
}
