@charset "UTF-8";

/*header*/
#header {
  /*padding: 0 1em !important;*/
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 201; /*25.06.12 z-index:100 ->201로 변경*/
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#header::before{
	content: '';
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -2;
}

 #header::after{
	content:'';
	position: fixed;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
background: linear-gradient(to right, #e6f2ff 0%, rgba(230, 242, 255, 0) 100%);
	z-index: -1;
}

.header_wFix {
  max-width: 1720px !important;
  margin: 0 auto !important;
}

/*25.06.12 css추가 - header_top*/
.header_top {
  height: 80px;/*25.07.09 100px > 80px*/
  padding: 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*25.07.10 추가 header_top::before*/
.header_top::before{
	content: '';
	position: fixed;
	top: 0;
	left:0;
	width: 100vw;
	height: 80px;
	background: #fff;
	z-index: -1;
	border-bottom: 1px solid #eee;
}

.header_logo{
	height: 50px;}

@media screen and (max-width: 1024px){
	.header_top::before{
	border-bottom: none;}
}

/*25.07.09 css추가 - header_logo a img*/
.header_logo a img{
	height: 50px;
}

.k6000_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;/*25.07.09 100px > 70px*/
  position: relative;
  width: 60%;
}

@media screen and (max-width: 1440px){
	.k6000_nav{
	width: 60%;}
}

@media screen and (max-width: 1024px){
	.k6000_nav{
	display: none;}
}

/*25.06.12 css변경 클래스명변경*/
.k6000_nav:hover li > ul {
  display: block;
}

.gnb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.gnb::before {
  padding: 0 !important;
  content: "";
  width: 100%;
  height: 0;
  position: fixed;
  left: 0;
  top: 80px;/*200px > 150px*/
  background: #fff;
  transition: height 0.6s ease;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/*25.06.13 css변경 추가수정 : height 값 수정*/
.k6000_nav:hover .gnb::before {
  height: 190px;/*25.07.09 340px > 290px*/ /*25.07.10 290px > 250px*/
}

.gnb > li > a {
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  width: 100%;
}


	.gnb > li > a{
	font-size: 17px !important;}
	
	.submenu > li > a{
	font-size: 15px !important;}
	
/*25.06.12 min-width:15% 삭제*/
.gnb li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 14%;
}

.gnb li:hover .gnb_title {
  color: var(--yellow) !important;
}
/*25.08.14 특정 네비 스타일*/
.gnb li.gnb_pink > a.gnb_title {
  color: var(--pink) !important;
/*   font-weight: 700; */
}
.gnb li.gnb_mint > a.gnb_title {
  color: var(--mint) !important;
/*   font-weight: 700; */
}
.gnb li.gnb_lightblue > a.gnb_title {
  color: var(--lightblue) !important;
/*   font-weight: 700; */
}

/*25.06.12 width:100% 추가*/
.submenu {
  top: calc(50px + 1em);/*25.07.09 수정 50px + 2em > 50px + 1em*/
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: block;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 99;
  text-align: center;
  width: 100%;
}

.submenu > li {
  position: relative;
  text-align: center;
}

.submenu > li::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 3px; /* 밑줄의 두께 */
  background: var(--bg_yellow); /* 밑줄 색상 */
  transition: width 0.3s ease; /* 애니메이션 효과 */
}

.submenu > li:hover::after {
  width: 100%;
}

.gnb li.gnb_pink > ul.submenu > li::after {
  background: var(--bg_pink);
}
.gnb li.gnb_mint > ul.submenu > li::after {
  background: var(--bg_mint);
}
.gnb li.gnb_lightblue > ul.submenu > li::after {
  background: var(--bg_lightblue);
}

/*25.06.12 css변경*/
.k6000_nav:hover .submenu {
	margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submenu > li > a {
  display: inline-block;
  padding: 0.7rem 0px;/*1.3rem > 0.8rem*/
  width: 100%;
}

.last_nav > span {
  display: block;
  text-align: center;
}

/*auth_buttons*/
.auth_buttons > button {
  box-sizing: border-box;
  /* padding: 1.5rem 1rem; */
  padding: 0 5px;
}

.auth_buttons > button > span {
  color: #ffb115;
}

.btn_none_hover {
  box-shadow: none !important;
  text-decoration: none !important;
}

.header_space {
  height: 110px; /*25.06.12 height:135px ->235px로 변경*/ /*25.07.09 235px > 175px*/
  background: transparent;
  position: relative;
}

/*side_menu*/
/*25.06.12 css변경 top 25% -> 35%*/
.side_menu_wrap {
  z-index: 200;
  position: fixed;
  top: 35%;
  left: 20px;
/*   display: flex; */
  flex-direction: column;
  gap: 2rem;
  display:none; /*main에서만 보이게 작동*/
}

.side_menu_wrap.show{
	display: flex;
}

.side_menu_a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side_menu_img {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 20px rgba(17, 34, 74, 0.1);
}

.side_menu_text {
  background-color: #fff;
  width: 100px; /*2025.06.11 width 80px ->100px로 변경되었습니다*/
  height: 25px;
  position: relative;
  top: -5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 20px rgba(17, 34, 74, 0.1);
}

/*mobile_menu*/
.mo_menu_bg {
  padding: 0 !important;
  background-color: #fff;
  position: absolute;
  top: 0 !important;
  left: -100%;
  /*width: 100wh;*/ /*25.06.12 width주석처리*/
  height: 100vh;
  z-index: -1;
}

.mo_menu_icon {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mo_img {
  display: flex;
}

.header_img {
  display: flex;
  align-items: center;
}

.mo_submenu {
  background-color: rgba(255, 177, 21, 0.3) !important;
}

#mo_menu li.gnb_pink > .mo_submenu{
	background-color: var(--bg_pink) !important;
}

#mo_menu li.gnb_mint > .mo_submenu {
  background-color: var(--bg_mint) !important;
}

#mo_menu li.gnb_lightblue > .mo_submenu {
  background-color: var(--bg_lightblue) !important;
}

.mo_submenu a {
  padding: 1rem 0;
  display: block;
}
@media screen and (max-width: 1500px){
	.k6000_nav:hover .gnb::before{
	height: 210px;}
}

@media screen and (max-width: 1440px) {
  .submenu > li > a {
    display: inline-block;
   /*  padding: 1rem 0px; */
  }
  
  
}

@media screen and (min-width: 1301px) {
  .mo_menu_icon {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  /*25.06.12 주석처리*/
  /*.header_nav {
    display: none;
  }

  .mo_menu_icon {
    display: block;
  }*/

  .mo_menu_bg {
    width: 100%;
  }

  .mo_menu {
    position: fixed;
    /* top: 200px; 25.06.12 top: 6.25rem -> 200px로 수정 */
    transition: left 0.3s ease;
    width: 100%;
    height: 100vh;
    overflow-y: auto !important;
  }

  .mo_menu > ul > li {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-top: 1.5625rem 0;
    margin-bottom: 1.5625rem 0;
    /*padding-right: 0.9375rem;*/ /*25.06.13 padding-right주석처리*/
  }

  .mo_menu > ul > li > a {
    display: block;
    width: 100%;
    padding: 1.5625rem 0;
  }

  .mo_menu > ul > li > a:hover {
    color: #ffb115 !important;
  }
  
    .mo_menu > ul > li.gnb_pink > a:hover {
    color: var(--pink) !important;
  }
  
      .mo_menu > ul > li.gnb_mint > a:hover {
    color: var(--mint) !important;
  }
      .mo_menu > ul > li.gnb_lightblue > a:hover {
    color: var(--lightblue) !important;
  }
}

/*25.06.12 @media 1025px추가*/
@media screen and (min-width: 1025px) {
  .header_img {
    display: none;
  }
}

/*25.06.12 @media 1024px추가*/
@media screen and (max-width: 1024px) {
  .header_nav {
    display: none;
  }
}
/*2025.06.13 @media min-width:1025로 변경*/
@media screen and (min-width: 1025px) {
  .mo_auth {
    display: none;
  }
}
/*25.06.13 max-width: 1024로 변경*/
@media screen and (max-width: 1024px) {
  .header_space {
    height: 120px !important; /*25.06.12 height: 102px -> 120px로 변경 */
    background: transparent;
    position: relative;
  }

  .mo_menu_icon {
    margin-right: 0 !important;
  }
  .k6000_nav {
    height: auto !important;
  }
  .auth_buttons {
    display: none;
  }

  .mo_auth {
    margin-top: 20px; /*25.06.13 margin-top:30%; -> 20%수정*/
  }

  .mo_auth ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .mo_auth ul li {
    text-align: center;
  }

  .header_img {
    width: 100% !important;
    justify-content: space-between;
    /*flex-direction: row-reverse;*/ /*25.06.12 row-reverse주석처리*/
  }
}

/*25.06.12 @media width: 1025px; 추가*/
@media screen and (min-width: 1025px) {
  .header_top > .mo_menu_icon {
    display: none !important;
  }
}
/*25.06.13 @media width:1024px; 추가*/
@media screen and (max-width: 1024px) {
/*   .header_logo a img {
    width: 80% !important;
    height: 80% !important;
  } */

  /*25.06.12 css추가*/
  .k6000_nav .header_img .mo_menu_icon {
    display: none !important;
  }

  /*25.06.12 css추가*/
  .header_top > .mo_menu_icon {
    display: block;
  }

  /*25.06.12 css추가*/
  .mo_menu {
    top: 100px;
  }
}
