/* ======================메뉴 클릭 시 하이라이트====================== */
.slide_menu .menu_list .menu_item a.highlight {
  background: var(--brandColor2);
  color: var(--brandColor);
  font-weight: 700;
}

/* ====================== form ====================== */
:root{
  --formColor: #fff;
}
.sc_form__sub{
  position: relative;
  margin-top: 50px;
  background: #dcdcdc;
}
.sc_form__sub .inner{
  padding: 40px 0 30px;
}
.form_area .form_list .privacy_item .privacy_wrap{
  color: #000;
}


/* ======================메인 section====================== */
/* slide_menu */
.slide_menu{
  width: 205px;
}
.slide_menu .menu_headline{
  position: relative;
  padding: 40px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  background: var(--brandColor);
  z-index: 1;
}
.slide_menu .menu_headline::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png) no-repeat 50% 0% / 160%;  
  opacity: 0.2;
  z-index: -1;
}
.slide_menu .menu_list {
}
.slide_menu .menu_list .menu_item a{
  display: block;
  padding: 15px 10px;
  word-break: keep-all;
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  background: #eee;
  border-top: 1px solid #fff;
  cursor: pointer;
}
.slide_menu .menu_list .menu_item:last-child{
  border-bottom: 1px solid #fff;
}


/* ======================서브페이지====================== */
.sub_page{
  display: flex;
  padding: 0;
  padding-top: 40px;
}
.sub_page .inner{
  display: flex;
  gap: 40px;
}


/* ======================텍스트 크기 기본 설정====================== */
/* 텍스트 페이지 레이아웃 */
.text_page{
  padding-bottom: 60px;
  flex: 1;
}
.text_page #board{
  padding: 0;
}
.text_page .content_headline {
  position: relative;
  padding: 15px 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brandColor);
  border-bottom: 1px solid #ddd;
}
.text_page .content_headline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: var(--brandColors);
}

/* 텍스트 값 설정 */
.text_page .content_box {
  padding: 20px 0px;
}
.text_page .content_box h2 {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  padding: 15px 0 10px;
}
.text_page .content_box h2::before {
  content: '｜ ';
}
.text_page .content_box h3{
  display: block;
  padding: 20px 0 5px 0 ;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.text_page .content_box h3::before {
  content: '• ';
}
.text_page .content_box p {
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}
.text_page .content_box b{
  font-weight: 700;
}
.text_page .content_box img {
  display: block;
  padding: 20px 0;
}
.text_page .content_box i{
  display: block;
  font-size: 18px;
  color: #d43131;
  line-height: 1.6;
  padding: 15px 0;
}
.text_page .content_box span{
  display: block;
  font-size: 18px;
  line-height: 1.3;
  padding: 10px 0 10px;
}
.text_page .content_box ul {
  display: block;
  padding: 15px 0;
  margin-left: 1.5em;
}
.text_page .content_box li {
  display: block;
  font-size: 18px;
  line-height: 1.8;
}
.text_page .content_box li:not(b li)::before {
  content: '- ';
}
.text_page .content_box a {
  display: inline;
  font-size: 1.15rem;
  text-decoration: underline;
  color: #2243ff;
  font-weight: 300;
  word-break: break-all;
}
.text_page .content_box .box{
  width: 100%;
  background: #eee;
  padding: 30px;
  margin: 10px 0 30px;
}
.text_page .content_box .box::before{
  content: '💡 ';
}
.text_page .content_box table{
  width: 100%;
  margin: 10px 0 20px 0;
}
.text_page .content_box th, .text_page .content_box td {
  padding: 8px 15px;
}
.text_page .content_box th  {
  background: #e6e7e9;
  font-weight: 500;
}
.text_page .content_box td {
  line-height: 1.3;
}
.table_reponsive{
  overflow: auto;
}


@media (max-width: 959px) {
  /* 텍스트 */
  .text_page .content_headline {
    font-size: 27px;
  }
  .text_page .content_box h2{
    font-size: 24px;
  }
  .text_page .content_box p, .text_page .content_box li{
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .sub_page .inner{
    flex-direction: column;
    gap: 20px;
  }
  .slide_menu .menu_headline{
    padding: 30px 0;
  }
  .slide_menu{
    width: 100%;
  }
  .slide_menu .menu_list{
    height: 280px;
    overflow-y: scroll;
  }
  /* 스크롤바 전체 기본 꾸미기 */
  .slide_menu .menu_list::-webkit-scrollbar {
    background: #bbb;
    width: 10px;
  }
  /* 스크롤바 막대 꾸미기 */
  .slide_menu .menu_list::-webkit-scrollbar-thumb {
    background: #005fa5;
    border-radius: 20px;
  }
    

  /* 텍스트 */
  .text_page{
    width: 100%;
    padding-top: 25px;
  }
  .text_page .content_headline{
    font-size: 24px;
  }
  .text_page .content_box h2 {
    font-size: 22px;
  }
  .text_page .content_box p, .text_page .content_box li{
    font-size: 16px;
  }
  .text_page .content_box table{
    font-size: 15px;
  }

}


@media (max-width: 586px) {
  .form_area .form_list .privacy_item{
    border: 0;
  }

  .text_page .content_box h2{
    font-size: 22px;
    line-height: 1.3;
  }
}

@media (max-width: 430px) {
  .sc_visual__sub .menu_headline {
    font-size: 26px;
  }
}
