* {
    padding:0;
    margin:0;
    list-style:none;
    text-decoration:none;
}
@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css');
@import url('https://fonts.googleapis.com/css?family=Nanum+Myeongjo:400,700,800&display=swap&subset=korean'); 
@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/optima?styles=16596,24894,24893,16597');
@font-face {
    font-family: 'NotoSerifKR';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NotoSerifKR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.inria-serif-light {
  font-family: "Inria Serif", serif;
  font-weight: 300;
  font-style: normal;
}

.inria-serif-regular {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.inria-serif-bold {
  font-family: "Inria Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.inria-serif-light-italic {
  font-family: "Inria Serif", serif;
  font-weight: 300;
  font-style: italic;
}

.inria-serif-regular-italic {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.inria-serif-bold-italic {
  font-family: "Inria Serif", serif;
  font-weight: 700;
  font-style: italic;
}

.pg_wrap {
    padding-top:20px; 
    position:relative;
    left: 50%;
    transform: translateX(-50%);
}

.pc_img {
    display:block;
}
.mo_img {
    display:none;
}






.menu-container {
  width: 70%;
  margin: 0 auto;
  background: #;
}

.menu-mobile { display: none; padding: 20px; &:after { content: "\f394"; 
font-family: "Ionicons"; font-size: 2.5rem; padding: 0; float: right; position: 
relative; top: 50%; transform: translateY(-25%); } }

.menu-dropdown-icon {
  &:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
  }
}

.menu {
  > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    //position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    &:before,
    &:after {
      content: "";
      display: table;
    }
    &:after {
      clear: both;
    }
    > li {
      float: left;
     /* background: #e9e9e9;*/
      padding: 0;
      margin: 0;
      a {
        text-decoration: none;
        padding: 1.5em 3em;
        display: block;
		font-size:1.2em;
		font-family: "Nanum Myeongjo", serif;
		font-weight:500;

      }
      &:hover {
        /*background: #fafafa;*/
		font-weight:900;
      }
      > ul {
        display: none;
        width: 100%;
        background: #fafafa;
        padding: 50px;
        position: absolute;
        z-index: 99;
        left: 0;
        margin: 0;
        list-style: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        &:before,
        &:after {
          content: "";
          display: table;
        }
        &:after {
          clear: both;
        }
        > li {
          margin: 0;
          padding-bottom: 0;
          list-style: none;
          width: 20%;
          background: none;
          float: left;
          a {
            color: #333;
            padding: .2em 0;
            width: 95%;
            display: block;
            border-bottom: 1px solid #ccc;
          }

          > ul {
            display: block;
            padding: 0;
            margin: 10px 0 0;
            list-style: none;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            &:before,
            &:after {
              content: "";
              display: table;
            }
            &:after {
              clear: both;
            }
            > li {
              float: left;
              width: 100%;
              padding: 10px 0;
              margin: 0;
              font-size: 1em;
              a {
                border: 0;
              }

            }
          }
        }
        &.normal-sub {
          width: 300px;
          left: auto;
          padding: 10px 20px;
          > li {
            width: 100%;
            a {
              border: 0;
              padding: 1em 0;
            }

          }
        }
      }
    }
  }
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon {
    &:before {
      display: block;
    }
  }
  .menu {
    > ul {
      display: none;
      > li {
        width: 100%;
        float: none;
        display: block;
        a {
          padding: 1.5em;
          width: 100%;
          display: block;
        }
        > ul {
          position: relative;
          &.normal-sub {
            width: 100%;
          }
          > li {
            float: none;
            width: 100%;
            margin-top: 20px;
            &:first-child {
              margin: 0;
            }
            > ul {
              position: relative;
              > li {
                float: none;
              }
            }
          }
        }
      }
    }
    .show-on-mobile {
      display: block;
    }
  }
}

































body { 
    font-family: 'NanumSquareAc', sans-serif;
	letter-spacing:-0.2px
    overflow: hidden;
}
.blind {
    display:none;
}
.main {
    overflow: hidden;
}


.inner_body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
    padding: 50px 0;
    background: #222;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.faq_block {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    ;
    min-width: 480px;
}

.faq_block+.faq_block {
    margin-top: 10px;
}

.faq_header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.faq_header h3 {
    margin: 0;
    padding: 0;
}

.faq_header button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.faq_header button i {
    font-size: 18px;
    color: #111;
}

.faq_body {
    max-height: 0;
    overflow: hidden;
    background-color: #eee;
    transition: max-height 0.3s ease-in-out;
    padding: 0 10px;
}




.footp-site-sel{
    margin-right: 25px;
   /*  position: relative; */
	z-index:999999999999999;
}

.footp-site-sel>.site-wrap>li p {
    padding:6px 0px 6px 10px;
    background: #000;
    border:1px solid #000;
    color:#fff;width:100%;
    cursor: pointer;
	line-height:20px;
	margin-top:-10px;
	border-radius:10px
}
.site-wrap li p i{
   /*  margin-left:10px; */
    font-size:1rem;
    align-self: flex-start;
}

.site-wrap-sub{
    position: absolute;/* bottom:100%; */left:0;
    width:100%;
	display: none;
	border-radius:10px;
	padding: 10px 0;
	background-color: #fff;
	top:30px;
	border: 1px solid #e5e5e5;

}
.site-wrap-sub.on {
    display:block;
}
.site-wrap-sub>li {
    border-bottom:1px solid #e5e5e5;
	line-height: 10px;
	padding-top:0px;
	border-radius:10px

}
.site-wrap-sub>li>a{
    display: block;
	padding:15px 35px 15px 25px;
    background: #fff;
    color:#534A4A;
    font-weight: 400;
}
.site-wrap-sub>li:last-child {
    border-bottom:none;
}

.site-wrap-sub>li a:hover{
    background:#fff;
    color:#333;
    transition: .4s ease;
}
.site-map2{
    position: fixed;
    top:45%;transform: translateY(-45%);
    right: 10px;
    z-index: 99999999;
    width:180px;
}
.site-map2 ul{
    width:100%;
    display: flex;flex-flow: row wrap;
    align-content: center;
    justify-content: center;
}
.site-map2 ul li{
    width:100%;
	border:1px solid #1db8b6;
	padding:8px 10px 10px 20px;
	border-radius: 20px;
	background-color:#fff;

}
.site-map2 ul li:not(:nth-of-type(1)){
    margin-top:10px;
}
.site-map2 ul li a{
    width:100%;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    color:#1db8b6;
    /*justify-content: flex-end;*/
}
.site-map2 ul .on a{
    color:#1db8b6;
}
.site-map2 ul li i{
    opacity: 1;
}
.site-map2 ul .on i{
    opacity: 1;
}
.site-map2 .on .line{
    background-color: #1db8b6;
}
.site-map2 .line{
    width:0px;height: 2px;background-color:#ddd;
    margin-left:10px;
}

#header {
    width:100%;
    position:sticky;
    top:10px;
    z-index:999999999;
	/*background-color:#fff;*/
	height:70px;
	opacity:1;
	
}
#header.on {
    background-color:#333;
    transition-duration:0.6s;
}

#header > .inner {
    width:100%;
    position:relative;
    margin:0 auto;
}
#header .logo,
#header #nav,
#header #info {
/*     height:70px;
    line-height:70px; */
}
#header .logo {
   position:absolute;
   left:1%;
   z-index:999999999;
   margin-top:0.3%;
}
#header #nav{
/*     border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; */
    width: 880px;
    margin: 0 auto;


}
#header #nav .menu_ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width:100%;
	margin: 0 auto;
    height: 70px;
	padding-top:0px;

}
#header #nav .menu_ul li{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
	color:#000;
}
#header #nav .menu_tit{
    font-size: 16px;
    font-weight: 400;
	color:#534A4A !important;

}
#header #nav .menu_tit.on {
    color:#534A4A !important;
    font-size: 18px;

    transition:all 0.6s;
}
#header #nav .menu_tit a{
    font-size: 16px;
    font-weight: 600;
	color:#fff !important;
}
#header #nav .menu_tit a:hover{
    font-size: 17px;
    font-weight:900 !important;
	color:#fff !important;
}
#header #nav .gnb_box {
    display:none;
    position:absolute;
    top:39px;
    left:-85px;
    width:200px;
    margin:20px;
    padding: 10px 20px;
    background-color:rgba(255, 255, 255, 0.85);
    border-radius:0 0 20px 20px;
	border-top: 1px solid #534A4A;
	backdrop-filter: saturate(250%) blur(5px) brightness(200%);
	box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 6px 0px;

}

#header #nav .gnb_box.on {
    display:block;
}
#header #nav .gnb_ul {

}
#header #nav .gnb_li {
    flex-direction:column;
    width:160px;
    height:50px;
    line-height:50px;
    float:left;
    text-align:center;
}
/* #header #nav .gnb_a::after {
    content: "\f105";
    position:absolute;
    top:0;
    right:-30px;
    font-family:FontAwesome;
    font-size:18px;
    color:#fff;
    transition-duration:0.6s;
    opacity:0;
} */
#header #nav .gnb_a:hover::after {
    right:-0px;
    opacity:1;
}
#header #nav .gnb_a {
    position:relative;
    width:100%;
    display:block;
    font-size:14px;
    color:#000;
    z-index:9999999;
    transition-duration:0.2s;
}
#header #nav .gnb_a:hover {
    padding-left:5px;
    color:#534A4A;
	font-weight:600;
}
/* #header #nav .gnb_li .gnb_a::before {
    content:'';    
    width:0;
    height:1px;
    position:absolute;
    left:0;
    bottom:0;
    background-color:#fff;
    transition-duration:0.2s;
} */
#header #nav .gnb_li:hover .gnb_a:before {
    width:100%;
}
#header #nav .gnb_li:hover .gnb_a::after {
    right:-10px;
    opacity:0.6;
}
#header #info {
    position:absolute;
    top:20px;
    right:1%;
    display:flex;
}
#header #info .userBox {
    margin-right:30px;
}
#header #info .userBox ul {
    display:table;
}
#header #info .userBox ul li {
    display:table-cell;
    vertical-align:middle;
    padding-right:14px;
}
#header #info .userBox ul li a {
    font-size:14px;
    font-weight:400;
    color:#fff;
}
#header #info .member {
    display:table;
}
#header #info .member li {
    display:table-cell;
    padding-right:5px;
}
#header #info .member li::after {
    content:'';
    padding-left:5px;
    border-right:1px solid #ccc;
}
#header #info .member li:last-child:after {
    border-right:none;
} 
#header #info .member li a{
    font-size:1em;
    font-weight:400;
}
#header #info .member li:last-child {
    padding-right:0;
}

/* s:햄버거버튼 */
/* hambergur button */
.hamburger {
    padding:18px 0;
    cursor: pointer;
    display:block;
    overflow: hidden;
    background-color: transparent;
    position:relative;
    top:-15px;
    right:10%;
    z-index:99999;
}

.hamburger__container {
    width:30px;
    height:18px;
    position: relative;
}
.hamburger.is-active .hamburger__inner {
    transform: translate(-51px,50%);
}
.hamburger.is-active .hamburger__inner::before,
.hamburger.is-active .hamburger__inner::after {
    transform: translate(102px, 0);
    opacity: 0;
}

.hamburger__inner {
    width: 100%;
    height: 2px;
    /* border-color */
    background-color: #534A4A; 
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(5px, -50%);
    opacity: 1;
}

.hamburger__inner::before, .hamburger__inner::after {
    width: 100%;
    height: 2px;
    /* border-color */
    background-color: #534A4A;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    opacity: 1;
    transform: translate(-5px, 0);
}

.hamburger__inner::before {
    top: -8px;
}

.hamburger__inner::after {
    top: 8px;
}


.hamburger:hover .hamburger__hidden {
    transform: translate(0, -50%);
    background-color:#534A4A;
}

.hamburger:hover .hamburger__hidden::before,
.hamburger:hover .hamburger__hidden::after {
    opacity: 1;
    transform: translate(0, 0);
    background-color:#534A4A;
}
.hamburger__hidden{
    opacity: 0;
}
.hamburger.is-active .hamburger__hidden {
    opacity: 1;
    transform: rotate(45deg);
    background-color:#534A4A;
	top: 0px;
    right: 20%;
}

.hamburger.is-active .hamburger__hidden::before {
    transform: translate(0, 13px) rotate(90deg);
    transform-origin: center;
    background-color:#534A4A;
}

.hamburger.is-active .hamburger__hidden::after {
    transform-origin: center;
    transform: translate(0, -13px) rotate(0);
    background-color:#534A4A;
}

.hamburger__hidden {
    opacity: 0;
    width: 100%;
    height: 0px;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(51px, -50%);
}

.hamburger__hidden::before, .hamburger__hidden::after {
    width: 100%;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    transform: translate(102px, 0);
}

.hamburger__hidden::before {
    top: -13px;
}

.hamburger__hidden::after {
    top: 13px;
}



/* e:햄버거버튼 */

/* s:all_menu */
 #all_menu {
    width:100%;
    height:100vh;
	position: fixed;
	top:0;
    left:0;
    z-index:99999999999999;
    display:none;
}
 #all_menu::before {
    position:absolute;
	background-color: rgba(255, 255, 255, 0.9); 
	backdrop-filter: saturate(250%) blur(5px) ;
	content: " ";
	inset: 0;
    z-index:-1;
 }


 #all_menu.on {
    display:block;
}
 #all_menu .menu_ul {
    width:18%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    vertical-align:middle;

}
 #all_menu .menu_li {
    width:100%;
}

 #all_menu .menu_tit{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: block;
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: #534A4A;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 1.5em;
    font-weight: 600;
    -webkit-user-select: none;
  -webkit-touch-callout: none;  
  text-align:center;


}
 #all_menu .menu_tit:hover {
    color:#534A4A;
}
/* text_hover effect */

 #all_menu .menu_tit:hover:after, 
 #all_menu .menu_tit:focus:after{
    width: 100%;
    background-color: #534A4A;
transition-duration:0.6s;
}
 #all_menu .menu_tit:hover {
    color: #000;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -ms-transition: color 1s ease;
    -o-transition: color 1s ease;
    transition: color 1s ease;
    cursor: pointer;
}
 #all_menu .all_box {
    display:none;
}
 #all_menu .all_box.on {
    display:block;
    transition-duration:1s;

}
 #all_menu .all_box li{
    line-height:20px
}
 #all_menu .all_tit {
    font-size:14px;
    font-weight:400;
    color: #534A4A;
    padding:5px 0;
    display: block;
    transition-duration:0.6s;
}
#all_menu .all_tit:hover {
    padding-left:20px;
    transition-duration:0.6s;
    font-weight:bold;
    color:#534A4A;
}
#rightmenu {right:0px; top:0px;position:fixed;z-index:999999999999999999999}
.right_login {z-index:9999999999999;text-align:right;position: absolute;top:35px;right: 100px;color:#fff}
.right_bar {z-index:9999999999999999;text-align:right;position: absolute;top:35px;right: 50px;color:#fff}
.site-wrap {z-index:9999999999999;position:absolute; right:100px;; top:40px;width:100px ;}
/* e:all_menu */

#logo {width:250px;/*background:url('http://doctormellow-ydp.com/theme/mellow/img/logo.svg') no-repeat center center/100%;*/}
#logo a {display:block;width:100%;height:100%;}
#logo img {width:100%;
	-webkit-transition:all .3s;
	-o-transition:all .3s;
	transition:all .3s;
}

#hd.on #logo img, #hd.over #logo img {opacity:1;}
@media screen and (max-width:1850px){
#hd {zoom:0.8}
#rightmenu {
zoom:0.8

}

/* #gnb {display:none}
 */

}
@media screen and (max-width:1440px){
#gnb {display:none}
}
@media screen and (max-width:1240px){

.right_login {z-index:99999999999999;text-align:right;position: absolute;top:20px;right: 60px;color:#fff}
.right_bar {z-index:9999999999999999;text-align:right;position: absolute;top:20px;right: 20px;color:#fff}
.site-wrap {z-index:9999999999999;position:absolute; right:60px;; top:25px;width: 100px;}

#logo {width:300px;background:none;}
#logo a {display:block;width:100%;height:100%;}
#logo img {width:80%;
	-webkit-transition:all .3s;
	-o-transition:all .3s;
	transition:all .3s;
}


#rightmenu {right:0px; top:0px}

    .pc_img {
        display:none;
		visibility:hidden;
		height:0px
    }
    .mo_img {
        display:block;
    }
    #header {
        background-color:#1db8b6;
    }
    #header > .inner {
        width:100%;
    }
    #nav {
        display:none;
    }
    #header .logo {
        width:200px;
        display:block;
        margin:0 auto;
        position:absolute;
        top:8px;
        left:50%;
        transform:translateX(-50%);
        z-index:9999999999;
    }
    #header #info {
        top:0px;
        right:20px;
        position:absolute;
    }
    #header #info .member {
        display:none;
    }
    #header .logo, #header #nav, #header #info {
        height:45px;
        line-height:45px;
    }
    .hamburger {
        padding:5px 0;
    }
    #header #all_menu {
        background-color:#333;
    }
    .hamburger.is-active .hamburger__hidden::before {
        background-color:#fff;
    }
    .hamburger.is-active .hamburger__hidden::after {
        background-color:#fff;
    }
    #header .member.on {
        display:block;
        position:fixed;
    }
    #header #all_menu .menu_ul {
        width:50%;
    }
    #header #all_menu .menu_tit {
        font-size:2rem;
    }
    #header #all_menu .all_tit {
        color:#f6f6f6;
    }
    #header #all_menu .menu_tit:hover {
        color:#f6f6f6;
    }
    /* #header #all_menu .menu_tit::before{
        content: "\f067";
        position:absolute;
        top:50%;
        right:0;
        transform:translateY(-50%);
        font-family:FontAwesome;
        font-size:10px; 
        width:20px;
        height:20px;
        line-height:20px;
        border-radius:50%;
        background-color:#ececec;
        box-shadow:2px 2px 4px rgba(0, 0, 0, 0.1);
        color:#898989;
    } */
    #head