/* header */
.highlight {
  color: var(--brandColor);
}
header.fixed{
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:1000;
}
header .header-fix{
  position: relative;
  z-index: 999;
  width: 100%;
  height: 70px;
  transition: 0.2s;
  background: #fff;
  /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  border-bottom: 1px solid #ddd;
}
header .inner{
  height: 100%;
}
header .gnb_item a.active {
  color: var(--brandColor);
}
header.on .gnb_mo {
  position: fixed;
  z-index: 998;
  top: 65px;
  display: block;
}
header .group_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
header .group_header .logo_box {
	display: flex;
	align-items: center;
}
header .group_header .logo_box .link_logo {
  height: 100%;
  width: 200px;
}
header .group_header .logo_box .link_logo img{
  width: 200px;
	height:50px;
}
header .group_header .gnb_list {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-align: center;
  transition: 0.2s;
}
header .group_header .gnb_list .gnb_item {
  padding: 0 20px;
  line-height: 80px;
  font-weight: 700;
  font-size: 19px;
  color: #444;
}
header .group_header .menu_wrap {
  width: 25px;
  height: auto;
  display: none;
  z-index: 0;
}
header .group_header .menu_wrap.toggle-btn .btn_open {
  display: none;
}
header .group_header .menu_wrap.toggle-btn .btn_close {
  display: block;
}
header .group_header .menu_wrap .btn_close,
header .group_header .menu_wrap .btn_open {
  position: relative;
  width: 100%;
  height: 100%;
}
header .group_header .menu_wrap .btn_close {
  display: none;
  width: 30px;
}

.gnb_mo {
  display: none;
}
header.scroll {
    /* box-shadow:rgba(0, 0, 0, 0.45) 0px 5px 15px -10px; */
    background: ;
}


@media (max-width: 991px) {
	header .group_header .gnb_list .gnb_item{
		font-size: 17px;
	}
	header .inner .group_header .menu_wrap {
	  display: block;
	}
	header .inner .group_header .gnb_list {
	  display: none;
	}
	.gnb_mo {
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    transition: top 0.5s;
    z-index: -1;
  }
  .gnb_mo .gnb_list .gnb_item {
    width: 100%;
    padding: 25px 0;
    font-weight: 500;
    font-size: 21px;
    color: #555;
    cursor: pointer;
  }
  .gnb_mo .gnb_list .gnb_item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .gnb_mo .gnb_list .gnb_item :hover {
    color: var(--brandColor);
  }
  .gnb_mo .gnb_list .gnb_item a {
    width: 100%;
  }
}


@media (max-width: 767px) {
  header .group_header .menu_wrap button span {
    width: 100%;
  }
  header .gnb_mo {
    padding: 30px 30px;
  }
}

@media (max-width: 586px) {
	header {
		/*height: 55px;*/
	}
  header .group_header .logo_box .link_logo {
   /* width: 50px;*/
  }
  header .group_header .menu_wrap {
    width: 20px;
  }
  header .group_header .menu_wrap .btn_close {
    width: 20px;
  }
  header .gnb_mo{
    padding: 10px 30px;
  }
  header.on .gnb_mo {
    top: 50px;
  }
  header .group_header .menu_wrap .btn_close, header .group_header .menu_wrap .btn_open {
    width: 80%;
  }
  .gnb_mo .gnb_list .gnb_item{
    padding: 20px 0;
    font-size: 17px;
  }
  .gnb_mo.on {
    top: 65px;
  }
}

@media (max-width: 430px) {
  header .group_header .logo_box {
    width: 125px;
  }
}

/* ¸Þ´ºÃß°¡ */
.gnb-wrap{
  position: relative;
  z-index: 998;
  width: 100%;
  background: #08938e;
}
.nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
}

.nav > .navbar-nav {
    width: 100%;
    height: auto;
}

.nav > ul {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.nav > ul > li {
  display: flex;
  align-items: center;
  height: 32px;
}
.nav > ul > li a{
  display: block;
  width: 100%;
  padding: 5px 15px;
}
.nav > ul > li:hover{
  background-color: #fff;
    color: var(--brandColor);
    border-radius: 15px;
}
@media (max-width: 991px) {
	.nav > ul{
		flex-wrap: wrap;
		justify-content: center;
	}
	.nav > ul > li a {
		padding: 0px 10px;
	}
	.nav > ul > li a h2 {
		font-size:16px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 480px) {
	.nav > ul > li a h2 {
		font-size:15px;
	}
}


.form_result{
	margin-top:40px;
}
.form_result .sub_headline {
	margin-top:0;
	margin-bottom:20px;
}
.db_result_item {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.db_result_item .item {
    background: #fff;
    text-align: center;
    padding: 10px 0px;
    border-radius: 18px;
    border: 1px solid #ced4da;
    box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.db_result_item .item img {
    vertical-align: top;
    height: 38px;
		margin: 0 auto;
}
.db_result_item .item p {
    margin: 0px;
    font-size: 14px;
    color: #ff0000;
    font-weight: 700;
    padding: 0;
}

@media (max-width: 767px) {
	.db_result_item {
			grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 480px) {
	.db_result_item {
			grid-template-columns: repeat(2, 1fr);
	}
}

.sc_gallery .inner h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}
.gallery_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
    margin-top: 10px;
}
.gallery_item li {
    text-align: center;
    box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.gallery_item li p {
    text-align: center;
		padding:15px 0;
}
@media (max-width: 767px) {
	.gallery_item {
			grid-template-columns: repeat(2, 1fr);
	}
	.sc_gallery .inner h2 {
	 font-size: 1.8rem;
	}
}
@media (max-width: 480px) {
	.gallery_item {
			grid-template-columns: repeat(1, 1fr);
	}
}

.sc_menuLink {
		background:#e0e0e0;
}

.sc_menuLink .inner h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}
.sc_menuLink .menuLink_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}
.sc_menuLink .menuLink_item {
    background: #f7fcfd;
    border-radius: 16px;
    padding: 20px;
    box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.sc_menuLink .menuLink_item .text_wrap a {
    display: inline;
}
.sc_menuLink .menuLink_item .text_wrap h3 {
    text-align: center;
    color:#08938e;
		font-size:24px;
		font-weight:700;
		padding:0 0 15px 0;
}
.sc_menuLink .menuLink_item .text_wrap p {
    text-align: justify;
    color: #333;
    font-size: 16px;
		line-height:1.5rem;
}
.sc_menuLink .menu_wrap {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 15px;
}
.sc_menuLink .menu_wrap img {
		border-radius:24px;
    box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.sc_menuLink .menuLink_area_sub {
    padding: 0;
}
.sc_menuLink .menuLink_area_sub li {
    margin-bottom: 10px;
		padding:3px 0;
}
.sc_menuLink .menuLink_area_sub i{
	margin-right:5px; 
	color:#ff6600;
	transform: rotate(90deg);
}

.sc_menuLink .menuLink_area_sub a {
    font-size: 16px;
    display: inline;
		color:#08938e;
}
.sc_menuLink .menuLink_area_sub a:hover {
		color:#3062ef;
		font-weight:600;
}
.sc_menuLink .faq_wrap p{
	margin-bottom:1rem;
}
@media (max-width: 767px) {
	.sc_menuLink .menuLink_area {
			grid-template-columns: repeat(1, 1fr);
	}
	.sc_menuLink .menu_wrap {
			grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 480px) {
	.sc_menuLink .menuLink_area {
			grid-template-columns: repeat(1, 1fr);
	}
}


@media (max-width: 768px) {
  .sc_menuLink .inner h2{
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .sc_banner strong{
    font-size: 1.5rem;
  }
}

.sc_goods {
	padding:30px 0;
}
.sc_goods .inner h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}
.goods_item {
}
.goods_item li {
  width: 100%;
  box-sizing: border-box;
	border:3px solid #08938e;
	background:#fff;
  box-shadow: rgba(48, 53, 50, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	border-radius: 30px;
  padding: 20px;
	margin-bottom:20px;
}
.goods_item li:hover {
	background:#d4eceb;
}
.goods_item li a {
	display:block;
}
.goods_header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}
.goods_gname {
  flex: 1;
  font-size: 24px;
  line-height: 2.0rem;
}
.goods_info {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
	padding:5px 0;
}
.goods_certi {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.goods_btn .btn_calcu {
  display: inline-block;
  padding: 15px 15px;
  background:#08938e;
  color: #fff;
  border-radius:24px;
  font-size: 18px;
  text-align: center;
}
.goods_btn {
	text-align:center;
	padding:10px;
}
.goods_btn .btn_calcu:hover {
  background-color: #005da3;
}

@media (max-width: 768px) {
  .sc_goods .inner h2{
    font-size: 1.8rem;
  }
}
@media (max-width: 586px) {
	.goods_header {
		display: block;
	}
}



.sc_point {
	margin: 0 auto;
	border: 1px solid #ddd;
	padding: 16px;
	box-sizing: border-box;
	background:#ecf7f7;
}
.sc_point .inner h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}

.sc_point p {
	margin-bottom: 16px;
	line-height: 1.7;
	text-align: justify;
	font-size: 18px;
}
.sc_point strong {
	color:#e43a27;
}

@media (max-width: 768px) {
  .sc_point {
    padding: 40px 0;
  }
  .sc_point .headline_area .headline {
    font-size: 1.8rem;
  }
}


.sc_qna .inner  h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}
.qna_area {
    display: flex;
    flex-direction: column;
}
.qna_area .qna_item {
    border-top: 1px solid #ccc;
    cursor: pointer;
}
.qna_area .qna_item .q_box.on {
    background: #f1eeff;
}
.qna_area .qna_item .q_box {
    background: #fff;
}
.qna_area .qna_item .a_box .a_wrap, .qna_area .qna_item .q_box {
    padding: 30px;
}

.qna_area .qna_item .q_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.qna_area .qna_item .q_box .q_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.qna_area .qna_item .q_box.on .q_wrap p, .qna_area .qna_item .q_box.on .q_wrap em {
    color: #0080ff;
}
.qna_area .qna_item .a_box em, .qna_area .qna_item .q_box em {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qna_area .qna_item .q_box .q_wrap p {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}
.qna_area .qna_item .q_box img {
    width: 20px;
    transition: all 0.3s;
}
.q_box.on img {
    transform: rotate(180deg);
}
.qna_area .qna_item .a_box.show {
    display: block;
}
.qna_area .qna_item .a_box {
    display: none;
}
.qna_area .qna_item .a_box .a_wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-top: 1px dashed #ddd;
    padding: 30px;
    background: #f5f7f2;
    overflow: auto;
    cursor: default;
}
.qna_area .qna_item .a_box .txt_box {
    flex: 1;
}
.qna_area .qna_item .a_box .txt_box li, .qna_area .qna_item .a_box .txt_box p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}
.qna_area .qna_item .a_box .txt_box p, .qna_area .qna_item .a_box .txt_box ul {
    padding-bottom: 5px;
}


@media (max-width: 768px) {
  .sc_qna {
    padding: 40px 0;
  }
  .sc_qna .headline_area .headline {
    font-size: 1.6rem;
  }
	.qna_area .qna_item .a_box .a_wrap, .qna_area .qna_item .q_box{
    padding: 5px;
	}
	.qna_area .qna_item .q_box .q_wrap p {
    font-size: 16px;
	}
	.qna_area .qna_item .a_box .txt_box li, .qna_area .qna_item .a_box .txt_box p {
    font-size: 16px;
	}
}


.sc_board {
  padding: 60px 0;
  background:#d5effd; 
}

.sc_board .inner  h2 {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 4rem;
}


.sc_board .board_list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 200px;
  overflow-y: auto;
  background:#fff; 
}

.sc_board .board_item {
  border-bottom: 1px solid #ddd; 
}

.sc_board .board_item:last-child {
  border-bottom: none;
}

.sc_board .board_item a {
  padding: 15px 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

.sc_board .board_item a:hover {
  background-color: #f0f0f0;
}

.sc_board .board_item .title {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 20px; 
}

@media (max-width: 768px) {
  .sc_board {
    padding: 40px 0;
  }
  .sc_board .headline_area .headline {
    font-size: 1.8rem;
  }
  .sc_board .board_item a {
    padding: 12px 5px;
  }
  .sc_board .board_item .title {
    font-size: 0.95rem;
  }
}

footer { 
	width: 100%;
	position: relative;
	z-index: 11; 
	background: #08938e; 
	padding: 10px 0; 
	color : #fff;
	padding: 30px 0; 
}
footer .inner {
	position: relative;
	text-align: left;
}
footer ul li {
	padding: 10px 0; 
	line-height: 1.2rem;
}
footer span {
	cursor: pointer; 
	margin-left: 10px;
}

@media (max-width: 768px) {
	footer .inner {
		position: relative;  
		text-align: center;
	}
}
@media (max-width: 586px) {
	footer {
			padding: 15px 0;
	}
	footer p {
			padding: 0;
			line-height: 0.9rem;
	}
}



