@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

:root {
  --max-width: 1280px;
  --line-color-line_color: #CCCCCC;
  --ui-width: calc(100% - 40px);
  --main-color: #1D4FA2;
  --main-color2: #2F76EA;
  --Secondary-1: #E1C7AE;
  --placeholder-color: #615F60;
  --sub-box-line: #CCCCCC;
  --sub-point-color: #082775;
  --Text: #030C0A;
  --bgcolor: #F3F6F6;
  --font-color-font-color-1: #111;
  --font-color-font-color-2: #222222;
  --font-color-font-color-3: #333333;
  --font-color-font-color-5: #555555;
  --font-color-font-color-8: #888888;
  --line-color-line_color-7: #727272;
  --sub-point-bg: #F3F6F8;
  --sub-point-bg2: #F7F7F7;
  --font-family: "Pretendard Variable";
  --input-line: #C8C8C8;
  --sub_tb_line: #E0E0E0;
  --Primary-3: #082775;
  --bg4: #E8EDF2;

  --font-size-body-body-1: 1.8rem;
  --font-size-body-body-2: 1.6rem;
  --font-size-body-body-4: 1.4rem;
  --font-size-Body-Label-Label-2: 1.5rem;
  --font-size-Body-Label-Label-3: 1.6rem;

  --font-size-Body-Heading-Headine-3: 2.8rem;
  --font-size-Body-Title-Title-1: 4.8rem;
  --font-size-Body-Title-Title-3: 3.2rem;
  --font-size-Body-Label-Label-1: 2rem;
  --font-size-Body-Title-Title-4: 2.4rem;
  --font-size-Body-Display-Display-4: 4rem;
  --font-size-Body-Display-Display-3: 4.8rem;
  --padding-Padding-S: 0.8rem;
  --padding-Padding-M: 1.2rem;
  --padding-Padding-L: 2rem;
  --padding-Padding-XL: 2.4rem 0;
  --padding-padding-XL-1: 2.4rem;
  --padding-padding-XL-2: 4rem;
  --padding-padding-XL-3: 6.4rem;
  --padding-padding-XL-4: 8rem;

  --Padding-XL-4: 8rem;
  --Padding-XL-5: 12rem;
}


@font-face {
  font-family: "NotoSansKR";
  font-weight: 100;
  src: url(NotoSansKR-Thin.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 100;
  src: url(NotoSansKR-Thin.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 200;
  src: url(NotoSansKR-ExtraLight.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 300;
  src: url(NotoSansKR-Light.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 400;
  src: url(NotoSansKR-Regular.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 500;
  src: url(font/notosanskr/NotoSansKR-Medium.woff) format(woff),
    /* ttf파일 추가시 */
    url(font/notosanskr/NotoSansKR-Medium.ttf) format('truetype');
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 600;
  src: url(font/notosanskr/NotoSansKR-SemiBold.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 700;
  src: url(font/notosanskr/NotoSansKR-Bold.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 800;
  src: url(font/notosanskr/NotoSansKR-ExtraBold.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 900;
  src: url(font/notosanskr/NotoSansKR-Black.woff) format(woff);
}

@font-face {
  font-family: "NotoSansKR";
  font-weight: 900;
  src: url(font/notosanskr/NotoSansKR-Black.woff) format(woff);
}

@font-face {
  font-family: "inter";
  font-weight: 700;
  src: url(font/Inter_18pt-Bold.ttf) format('truetype');
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
}

html,
body {
  font-family: "Pretendard Variable", 'NotoSansKR', 'inter', sans-serif;
  font-size: 10px;
  word-break: keep-all;
  line-height: 1.4;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

button {
  cursor: pointer;
}

em,
address,
i {
  font-style: normal;
}

a, address, blockquote, br, fieldset, legend, label, form, input, select, textarea, button, table, th, td caption, cite, code, dl, dt, dd, h1, h2, h3, h4, h5, h6, p, div, iframe, ul, ol, li, hr, img {
  margin: 0;
  padding: 0;
  word-break:keep-all;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* scrollbar */

body ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

body ::-webkit-scrollbar-thumb {
  background-color: #BABABA;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-sizing: border-box;
}

body ::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  box-shadow: inset 0.625rem 0 0 #e5e8ec;
  box-sizing: border-box;
}

textarea::-webkit-scrollbar,
.info_box::-webkit-scrollbar {
  width: 0.6rem;
  position: absolute;
}

textarea::-webkit-scrollbar-thumb,
.info_box::-webkit-scrollbar-thumb {
  width: 0.6rem;
  /* 스크롤바의 길이 */
  background: #BABABA;
  /* 스크롤바의 색상 */
  border-radius: 10px;
}

textarea::-webkit-scrollbar-track {
  background: transparent;
  /* 스크롤바 뒷 배경 색상*/
}

.body_scroll #header {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.info_box::-webkit-scrollbar-track {
  background: var(--sub-point-bg2);
  /* 스크롤바 뒷 배경 색상*/
}

.in_cover {
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.ico span,
.ico em {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  color: transparent;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

#header {
  z-index: 200;
  position: sticky;
  top: 0;
  margin: 0 auto;
  height: 74px;
  background: #fff;
  box-sizing: border-box;
  font-family: "Pretendard Variable", sans-serif;
}

#header .progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #EEE;
  z-index: 1000;
}

#header .progress-bar.active {
  height: 100%;
  width: 0%;
  background: var(--main-color2);
  transition: width 0.1s ease-out;
  position: relative;
}

#header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 361px;
  height: 100%;
  gap: 1px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 100%;
}
#header .logo img{
  max-height:38px;
  margin-top:-18px
}
#header .topbox {
  position: relative;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;


}

#header .topbox:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 74px;
  right: 0;
  height: 1px;
  background: #D1D1D6;
}

#header.hover .topbox {
  height: 425px;
  -webkit-box-shadow: 0px 4px 10px 0px #00000040;
  box-shadow: 0px 4px 10px 0px #00000040;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header .menu {
  color: var(--font-color-font-color-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
  position: relative;
}

#header nav {
  flex: 1;
}

#header nav .gnb>li:hover .sub_tit {
  color: var(--main-color);
}

#header .hd_iconBtn.iconBtn_sch {
  background-image: url(/ych-hpc/image/search_btn.png);

}

#header .hd_iconBtn.iconBtn_sch.ac {
  background-image: url(/ych-hpc/image/search_close_btn.png);

}

#header .hd_iconBtn {
  width: 44px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  cursor: pointer;
}

.ac {
  display: block !important;
}

#header .searchbox {
  display: none;
  width: 361px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header .searchbox>li {
  display: flex;
  align-items: center;
}

.sch_box {
  display: none;
  z-index: 50;
  position: fixed;
  left: 0;
  top: 62px;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid #D1D1D6;
}

.sch_box .sch_box_bg {
  position: fixed;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.sch_box .sch_box_in {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  padding: 11.4rem 0;
}

.sch_box .sch_cont {
  background-color: var(--main-color);
  padding: 4rem 8rem;
  border-radius: 8rem;
  font-size: 2rem;
  color: #FFFFFF;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.28px;
  width: calc(var(--ui-width) - 16rem);
  max-width: calc(var(--max-width) - 16rem);
  margin: 0 auto;
  font-family: 'inter';
}

.sch_box .sch_cont .txtbox {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  width: calc(100% - 15rem - 4rem);
}

.sch_box .sch_cont .txtbox button {
  background: url(/ych-hpc/image/ico_input_sch.png) no-repeat 50% 50%;
  background-size: contain;
  content: '';
  width: 5.4rem;
  height: 5.4rem;
  text-indent: -99999px;
  border-style: unset;
  border-color: initial;
  border-image: initial;
}

.sch_box .sch_cont input[type="text"] {
  border: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  width: calc(100% - 5.4rem - 1rem);
  height: 5.4rem;
  margin-left: 1rem;
  font-family: 'NotoSansKR';
}

.sch_box .sch_cont input[type="text"]::placeholder {

  color: var(--placeholder-color);
}

#header .topmenu > ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  align-items: center;
  width: 697px;
  gap: 2rem;

}

#header .topmenu > ul li {
  /*font-family: Pretendard;*/
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0px;
  vertical-align: middle;
  padding: 23px 12px;

}

#header .topmenu .submenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  color: #555555;
  width: calc(100% / 5);
  box-sizing: border-box;

}

#header.hover .topmenu .submenu {
  display: block;
  box-sizing: border-box;
  border-left: 1px solid #ddd;
  height: 363px;

}

#header .submenu div {
  font-size: 2rem;
  line-height: 150%;
  padding: 13px 17px;
  border-bottom: 1px dashed #D1D1D6;
}

#header.hover .submenu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 4px;
}

#header .topmenu .submenu .gnb_menu2_list>li {
  line-height: 140%;
  padding: 0;
  font-size: 1.7rem;
  font-weight: 400;
  width: 100%;
}

#header .topmenu .submenu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  /*width: calc(100% - 40px);*/
}

#header .topmenu .submenu li a:hover {
  color: var(--main-color);
}

#header .topmenu>ul>li:nth-child(1) .submenu {
  left: 0;
}

#header .topmenu>ul>li:nth-child(2) .submenu {
  left: calc(100% / 5);
}

#header .topmenu>ul>li:nth-child(3) .submenu {
  left: calc(100% / 5 * 2);
}

#header .topmenu>ul>li:nth-child(4) .submenu {
  left: calc(100% / 5 * 3);
}

#header .topmenu>ul>li:nth-child(5) .submenu {
  left: calc(100% / 5 * 4);
}

#header .topmenu>ul>li:nth-child(6) .submenu {
  left: calc(100% / 5 * 5);

}

#header .topmenu>ul>li:last-child .submenu {
  border-right: 1px solid #ddd;
}

#header .gnb_menu2_list>li:hover>a {
  z-index: 2;
}

#header .gnb_menu2_list>li.depth a {
  position: relative;
}

#header .gnb_menu2_list>li.depth:hover>a {
  /*margin-right:-60px;*/
  color: #fff;
  background: var(--main-color2);
  transition: margin 0.3s ease;
  color: #E1C7AE;
}

#header .gnb_menu2_list>li.depth:hover>a img {
  display: none;
}


#header .submenu .depth .gnb_menu3_list {
  display: none;
  color: #E1C7AE;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: -1.28px;
  z-index: 1;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 20px;
  width: calc(100% + 1px);
  height: 100%;
  max-height: none;
  background: var(--main-color2);
  box-sizing: border-box;
  overflow-y: auto;
}

#header .submenu .depth .gnb_menu3_list>li {
  display: block;
  position: relative;
  text-align: left;
  padding: 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4;
}

#header .submenu .depth .gnb_menu3_list>li a {
  padding: 0;
}

#header .submenu .depth .gnb_menu3_list a:hover {
  color: #FFF6ED;
}

/*전체메뉴*/
#header .sitemap {
  display: none;
  z-index: 1001;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#header .sitemap.show {
  display: block;
}

.sitemap .sitemap_box {

  display: flex;
  flex-direction: column;
  height: 100%;

}

.sitemap .map_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 100%;
  color: #404041;
  padding: 10px 0px;
  border-bottom: 2px solid var(--main-color);
  height: 74px;
}

body.smap {
  overflow: hidden;
  position: fixed;
  /* iOS 대응 */
  width: 100%;
}

.sitemap .map_top img {
  width: 3.2rem;
  height: 3.2rem;
  display: none;
}

.sitemap .map_box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: var(--font-color-font-color-1);
  line-height: 1.4;
  overflow-y: auto;
  padding: 0 20px;
}

.sitemap .map_top_list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
  /*8var(--ui-width);*/
}

.sitemap .map_top_list>li {
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;

}

.sitemap .map_top_list>li dl {
  align-items: center
}

.sitemap .map_top_list>li dl,
.sitemap .map_top_list>li dd>ul {
  display: flex;
  gap: 12px;
}

.show {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sitemap .map_top_list .map_tit {
  width: 16rem;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 600;
}

.sitemap .map_top_list .map_subtit {
  width: auto;
  padding: 8px 24px;
  height: fit-content;
  letter-spacing: -0.78px;
}

.sitemap .sub_list {
  display: flex;
  flex-direction: column;
  background-color: #F3F6F8;
  padding: 8px 0;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.78px;
  gap: 0;
  color: var(--font-color-font-color-3);
}

.sitemap .sub_list li {
  padding: 8px 12px;
}



.hamburger {
  position: relative;
  width: 22px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width:100%;
  height: 3px;
  background: #333;
  border-radius: 0px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media(max-width:500px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 60px 20px;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }

  .mobile-menu li {
    margin-bottom: 20px;
  }

  .mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
  }
}

.mobile-menu.active {
  right: 0;
}

.close-btn {
  font-size: 42px;
  line-height: 100%;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}



.containers * {
  box-sizing: content-box;
}

.containers {
  font-family: "Pretendard Variable", sans-serif;
  min-height: 1039px;
}

.banner {
  width: 100%;
  height: auto;
  position: relative;
}

.banner .banner_Swiper {
  width: 100%;
  height: 620px;
  padding-bottom: 80px;
}

.banner_Swiper .swiper-slide {
  display: flex;
  position: relative;
}

.banner_Swiper .bn_cover {
  position: relative;
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.containers .banner_Swiper .bn_cover .bn_page {
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem 1.8rem;
  bottom: 7rem;
  border-radius: 1.6rem;
  height: 3.6rem;
  z-index: 9;
}

.banner_Swiper .bn_cover .bn_page .swiper-pagination {
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  top: auto;
  margin-right: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0px;
  color: #222222;
}

.ico {
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
}

.banner_Swiper .swiper-button-prev,
.banner_Swiper .swiper-button-next,
.swiper-control .ico {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: auto;
  width: 1.4rem;
  height: 1.45rem;

}

.bn_cover .bn_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_Swiper .swiper-button-prev {
  background: url(/ych-hpc/image/ico_prev.png) no-repeat 50% 50%;
  background-size: contain;
}

.banner_Swiper .swiper-button-next {
  background: url(/ych-hpc/image/ico_next.png) no-repeat 50% 50%;
  background-size: contain;
}

.banner_Swiper .swiper-button-prev::after,
.banner_Swiper .swiper-button-next::after {
  content: '';
}

.banner_Swiper .swiper-control {
  display: flex;
}

.banner_Swiper .btn_autoPlay.btn_play {
  background: url(/ych-hpc/image/ico_start.png) no-repeat 50% 50%;
}

.banner_Swiper .btn_autoPlay.btn_stop {
  background: url(/ych-hpc/image/ico_stop.png) no-repeat 50% 50%;
}

.banner_Swiper .btn_autoPlay {
  background: url(/ych-hpc/image/ico_stop.png) no-repeat 50% 50%;
  background-size: contain;
}

.banner .banner_Swiper .bn_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 9rem auto;
  gap: 2rem;
  white-space: pre-line;
  color: #FFF6ED;
}

.banner .banner_Swiper .bn_cont .bn_txt1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.banner .banner_Swiper .bn_cont .bn_txt2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.banner .banner_Swiper .bn_cont .bn_txt3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.78px;
}

.banner .banner_Swiper .no1 {
  background-image: url('/img/bsc/main_pc_visual01.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
   background-position-x: 40%;
  background-color:#fff;
}

.banner .banner_Swiper .no2 {
  background-image: url('/img/bsc/main_pc_visual02-1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position-x: 60%;
  background-color:#fff;
}

.banner .b_info {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 100;
}

.banner .b_info .b_box {
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.78px;
  border-radius: 1.6rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 24px 48px -16px #0F19283D;
  box-shadow: 0px 24px 48px -16px #0F19283D;
  height: 12rem;
}

.banner .b_box>div {
  width: 50%;
  height: -webkit-fill-available;
  padding: 2.4rem 4rem;

}

.banner .b_info1 {
  background: var(--main-color);
  border-right: 1px solid #FFFFFF;
  width: 50%;
}

.banner .b_info1>div:first-child {
  color: #ffffff;
}

.banner .b_info1>div:last-child {
  color: #E1C7AE;
  letter-spacing: -0.187px;
  padding: 0.3rem 0;
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.banner .b_info1>div:last-child p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.banner .b_info2 {
  background: #E1C7AE;
  width: 50%;
  color: #082775;
}

.banner .b_info2>div:last-child {
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.14px;
}

.banner .b_info2>div:last-child span {
  content: '';
  background-color: #FFF6ED;
  width: 0.1rem;
  height: 1.8rem;
}


.main_pg {
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 4rem auto 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

.main_pg>div {
  background-color: #F7F7F7;
  border: 1px solid #CCCCCC80;
  border-radius: 3rem;
  width: calc(100% / 4);
  padding: var(--padding-Padding-L) var(--padding-padding-XL-2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #082775;
  cursor: pointer;
  /*height: -webkit-fill-available;*/
}

.main_pg>div:hover {
  background-color: #FFF6ED;
}

.main_pg>div a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main_pg>.pg_box1:hover .h_img {
  content: url("/ych-hpc/image/ico_health_on.png");
}

.main_pg>.pg_box1 .h_img {
  content: url("/ych-hpc/image/ico_health_off.png");
}

.main_pg>.pg_box2:hover .h_img {
  content: url("/ych-hpc/image/ico_health2_on.png");
}

.main_pg>.pg_box2 .h_img {
  content: url("/ych-hpc/image/ico_health2_off.png");
}

.main_pg>.pg_box3:hover .h_img {
  content: url("/ych-hpc/image/ico_health3_on.png");
}

.main_pg>.pg_box3 .h_img {
  content: url("/ych-hpc/image/ico_health3_off.png");
}

.main_pg>.pg_box4:hover .h_img {
  content: url("/ych-hpc/image/ico_health4_on.png");
}

.main_pg>.pg_box4 .h_img {
  content: url("/ych-hpc/image/ico_health4_off.png");
}

.main_pg .h_img {
  width: 7rem;
  height: 7rem;
}

.main_pg .pg_link {
  width: 100%;
}

.main_pg .pg_go {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2px 0;
}

.main_pg .pg_tit {
  color: var(--Primary-3);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--font-size-Body-Title-Title-4);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.main_pg .pg_txt {
  color: var(--Primary-3);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--font-size-body-body-4);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.109px;
}

.main_pg .pg_go img {
  width: 2.4rem;
  height: 2.4rem;
}

footer {
  z-index: 1;
  position: relative;
  background: #F7F7F7;
  border-top: 1px solid #e0e0e0;

}

footer .f_link {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;

  border-bottom: 1px solid #e0e0e0;
}

.f_link ul {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem 0;
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.f_link ul li {
  display: flex;
  gap: 1.2rem;
}

.f_link ul li a {
  padding: 0.4rem 0.8rem;
}

.f_copy {
  padding: 3rem 0;
  width: var(--ui-width);
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--font-color-font-color-5);
  font-size: var(--font-size-body-body-4);
  font-weight: 500;
  line-height: 1.5;
  text-overflow: ellipsis;
}

.f_copy .copytxt {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #888888;
  padding-top: 0.4rem;
}

.f_copy2 {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.f_copy2 div.btn-group button {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  border: 0;
  align-items: center;
  height: 42px;
}

.f-copy2 .justify-content-between {
  justify-content: space-between !important;
}

#top_btn {position:fixed;bottom:10px;right:15px;width:50px;height:50px;line-height:36px;border:2px solid #d2d2d2;border-radius:50%;background:#fff;color:#d2d2d2;text-align:center;font-size:15px;z-index:99;
-webkit-box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4);
-moz-box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4);
box-shadow:1px 2px 5px rgba(191, 191, 191, 0.4)}
#top_btn i {font-size:1.4em}
#top_btn:hover {background:#3b8afb;border-color:#3b8afb;color:#fff}


/* === Footer dropup (Custom only) === */
.footerDropdownBtn{ position: relative; z-index: 2; }

.footerDropdownMenu{
  position: absolute;
  left: 0;
  right: auto;
  bottom: 100%;          /* 위로 붙이기 */
  width: 100%;
  min-width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1000;
}
.footerDropdownMenu.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background:#fff;
}
.footerDropdownMenu .dropdown-item:hover,
.footerDropdownMenu .dropdown-item:focus,
.footerDropdownMenu .dropdown-item:active {
  background-color: transparent !important;
}

@media (min-width:1200px) {

  /*전체메뉴*/
  .sitemap .map_top_list {
    padding: 24px 0;
    gap: 24px;
  }

  .sitemap .map_top_list>li {
    border: 0;
    padding: 0
  }

  .sitemap .map_top_list>li:after {
    content: '';
    display: inline-block;
    background: #ddd;
    width: 100%;
    height: 1px;
    margin-top: 24px;
  }

  .sitemap .map_top_list>li dd>ul {
    gap: 24px;
  }

  .sitemap .map_top_list .map_subtit {
    width: 20rem;
    border: 1px solid #ccc;
  }

  .sitemap .sitemap_box .familySite {
    display: none;
  }

  .footer .f_copy>div address{display:flex; gap:12px;}
}

@media (max-width:1200px) {
  .containers {
    min-height: auto;
  }
  .custom-dropdown .selected{height:51px;}
  .custom-dropdown .options{margin-top:0 !important; top:53px !important}

  .banner .banner_Swiper {
    padding-bottom: 110px;
  }

  .f_copy2 {
    flex-direction: column;
    gap: 24px;
  }

  .f_copy2 div.col-md-9 {
    width: 100% !important;
  }

  .f_copy2 div.btn-group {
    width: 100%;
  }


}

@media (max-width:1200px) {

  html,
  body {
    font-size: 10px;
  }
  #header{
    height:64px !important;
  }
  #header .topbox:before{
    top:64px !important;
  }
  .header__breadcrumb__depth:before{display:none !important}

  #header .menu{
    height:64px !important;
  }
  .sub_lnb{
    top:64px !important;
  }

  #header nav {
    display: none;
  }
  
  #header .sitemap {
    background-color: unset;
  }

  #header .sitemap::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }

  .sitemap .sitemap_box {
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: 20vw;
    height: 100%;
    width: 80%;
    box-sizing: border-box;
    background: #FFFFFF;
  }

  .sitemap .map_top {
    padding: 8px 20px
  }

  .sitemap .map_top_list .map_tit {
    position: relative;
    color: var(--main-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    width: 100%;
    font-size: 18px;
    border-bottom: 0;
  }

  .sitemap .map_top_list>li {
    padding: 0;
    border-bottom: 1px solid var(--main-color);
  }

  .sitemap .map_top_list>li .map_tit>a,
  .sitemap .map_top_list>li>dl>dd>ul>li .map_subtit>a {
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 80%;
  }

  .sitemap .map_top_list>li .map_tit:before {
    content: '';
    display: block;
    position: absolute;
    right: 3.4rem;
    top: 50%;
    transform: translate(50%, -50%);
    margin: 0;
    width: 2rem;
    height: 2rem;
    background: url(/ych-hpc/image/ico_site_tit_off.png) no-repeat 50% 50%;
    background-size: contain;
    box-sizing: border-box;
  }

  .sitemap .map_top_list>li dd {
    width: 100%;
  }

  .sitemap .map_top_list>li.ac .map_tit>a:before,
  .sitemap .map_top_list>li>dl>dd>ul>li.ac .map_subtit>a:before {
    transform: translate(50%, -50%) rotate(180deg);
    /*background: url(/ych-hpc/image/ico_site_tit_off.png) no-repeat 50% 50%;
    background-size: contain;*/

  }

  .sitemap .map_top_list>li>dl>dd>ul>li .map_subtit:before {
    content: '';
    display: block;
    position: absolute;
    right:
      /*1.875rem;*/
      34px;
    top: 50%;
    transform: translate(50%, -50%);
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: url(/ych-hpc/image/ico_site_sub_on.png) no-repeat 50% 50%;
    background-size: contain;
    box-sizing: border-box;
  }

  .sitemap .map_top_list>li dd,
  .sitemap .sub_list {
    display: none;
  }

  .sitemap .map_top_list>li dd>ul {
    background-color: #F3F6F8;
    gap: 0;
  }

  .sitemap .map_top_list .map_subtit {
    position: relative;
    width: 100%;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #E0E0E0;
    color: #333333;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
  }

  .sitemap .map_top_list .map_subtit>a::before {
    transform: translate(50%, -50%) rotate(180deg);
    background: url(/ych-hpc/image/ico_site_sub_on.png) no-repeat 50% 50%;
    background-size: contain;
    width: 20px;
    height: 20px;
  }

  .sitemap .map_top_list .map_subtit>a {
    width: 80%;
  }

  .sitemap .map_top_list>li dl,
  .sitemap .map_top_list>li dd>ul {
    flex-direction: column;
    width: 100%;
    gap: 0;

  }

  .sitemap .map_top_list>li dd>ul {
    border-top: 1px solid #CCCCCC;
  }

  .sitemap .sub_list {
    background-color: #FFFFFF;
    padding: 0;
    font-size: 15px;
  }

  .sitemap .map_top_list .map_subtit,
  .sitemap .sub_list li {
    padding: 16px 20px;
    border-bottom: 1px solid #E0E0E0;
  }

  .sitemap .sitemap_box .familySite {
    border-bottom: 2px solid var(--main-color);
  }

  .sitemap .sitemap_box .familySite ul {
    display: flex;
    align-items: center;
  }

  .sitemap .sitemap_box .familySite li {
    padding: 20px;
    text-align: center;
    flex: 1;
    font-size: 18px;
  }

  .sitemap .sitemap_box .familySite li:first-child {
    background: var(--main-color);
    color: #fff
  }

  .sitemap .sitemap_box .familySite li:last-child {
    background: var(--Secondary-1);
  }

  .header__breadcrumb__depth:last-of-type:before {
    display: none;
  }

  .custom-dropdown {
    padding: 0 !important;
  }

  .custom-dropdown .options{
    left:-20px !important;
    width:100vw !important;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 50%);
    top:50.5px;
    margin-top:0 !important;
  }
  .custom-dropdown .options li{
    border-bottom:1px solid #eee
  }

  .header__breadcrumb__depth {
    padding: 0;
  }

  .banner .banner_Swiper {
    padding-bottom: 0;
    height: 50rem;
  }

  .banner_Swiper .bn_cover .bn_page {
    bottom: 3.7rem;
    right: 3.7rem;
  }

  .banner .b_info {
    position: unset;
  }

  .banner .b_info .b_box {
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }

  .banner .b_info1>div:last-child,
  .banner .b_info2>div:last-child {
    gap: 0.4rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .containers .banner_Swiper .bn_cover .bn_page{
    bottom:3rem;
  }

  .main_pg .pg_tit {
    font-size: 2.12rem;
  }

  .main_pg {
    margin: 2rem auto 8rem;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .main_pg>div {
    border-radius: 2rem;
    width: calc(50% - 5rem - 1.2rem);
    padding: 2.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
  }

  .banner .b_box>div {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .banner .b_info2>div:last-child span {
    display: none;
  }

  .banner .b_info1>div:first-child,
  .banner .b_info2>div:first-child {
    /*white-space: pre-line;*/
    padding-bottom: 0.8rem;
  }

  .banner .b_info .b_box {
    height: 18rem;
  }

  .main_pg .pg_txt {
    font-size: 1.55rem;
  }


  footer .f_link,
  .f_copy {
    font-size: 14px;
  }

  .f_copy .copytxt {
    font-size: 11px;
  }

  .f_link ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .f_copy {
    padding: 3rem 0 0 0;
    width: 100%;
    text-align: center;
  }

  .f_copy2 div.btn-group button {
    height: 52px;
  }

  .sitemap .map_top {
    /*padding: 1.2rem 0;*/
    width: 100%;
  }

  .sitemap .map_box {
    padding: 0;
    width: 100%;
    /*var(--ui-width);*/
    max-width: var(--max-width);
    margin: 0 auto;
    font-weight: 600;
  }
}

@media (max-width:768px) {

  html,
  body {
    font-size: 10px;
  }

  .main_pg {
    flex-direction: column;
  }

  .main_pg>div {
    width: calc(100% - 5rem);
  }

  .sch_box .sch_cont {
    padding: 4rem 6rem;
    width: calc(var(--ui-width) - 12rem);
  }

  .sch_box .sch_cont p {
    display: none;
  }

  .sch_box .sch_cont .txtbox {
    width: 100%;
  }

}

@media (max-width:500px) {

  html,
  body {
    font-size: 10px;
  }

  #header .sitemap {
    top: 0;
    z-index: 1001;
  }

  .sitemap .sitemap_box {
    margin-left: 0;
    width: 100%;
  }

  .banner .banner_Swiper .bn_cont .bn_txt1 {
    font-size: 1.9rem;
  }

  .banner .banner_Swiper .bn_cont .bn_txt2 {
    font-size: 3.3rem;
  }

  .banner .banner_Swiper .bn_cont .bn_txt3 {
    font-size: 1.65rem;
  }

  .banner .banner_Swiper .no1 {
    background-image: url(/img/bsc/m_main_visual01.jpg);
  }
  .banner .banner_Swiper .no2 {
    background-image: url(/img/bsc/m_main_visual02.jpg);
  }

  .banner img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .banner .b_info .b_box {
    font-size: 2rem;
  }

  .containers .banner_Swiper .bn_cover .bn_page{
    bottom:3rem;
    right:0;
  }

  #header .logo a:first-child {
    margin-top: -4px
  }
  #header .logo img{
    margin-top:0
  }

  #header .logo a:first-child img {
    min-width: 52px
  }

  #header .logo .logotitle {
    font-size: 20px;
    margin-top:0.5rem
  }
}



@media (max-width:425px) {

  html,
  body {
    font-size: 10px;
  }
}