/*******************************/
/*******************************/
/*******************************/

/* bg 어두운색... */
.pushy {/* 배경 전체 */
  position:fixed;
  padding:90px 84px 0 100px;
  max-width:788px;
  width:80%;
  height:100%;
  top: 0;
  z-index:500;
  visibility:hidden;
  -webkit-overflow-scrolling: touch;
  background:#111;
}

.pushy .close_btn {position: absolute; left: -90px; top: 0; display: inline-flex; width: 90px; height: 90px; justify-content: center; align-items: center; background-color: #004daa; opacity: 0; visibility:hidden; cursor:pointer;}
.pushy-open-right .pushy .close_btn  {opacity: 1; visibility:visible;}

/* bg 어두운색 끝.. */

/*******************************/
/*******************************/
/*******************************/

/* bg 흰색... */
.pushy_white {/* 흰배경 전체 */
	background: #fff !important;
}
/* bg 흰색 끝.. */


.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}
/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(50%, 0, 0);
  -ms-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition:transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display:none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display:block;
  position:fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 499;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.no-csstransforms3d .pushy-submenu-closed ul {
  max-height: none;
  display: none;
}

.pushy .pushy_top {margin-bottom: 58px; display: flex; justify-content:space-between; align-items: center;}
.pushy .mo_link ul {display: flex; justify-content: space-between; align-items: center;}
.pushy .mo_link ul li {margin-left: 20px;}
.pushy .mo_link ul li:first-child {margin-left: 0;}

li.m_sub{border-bottom:1px solid #ddd; padding:22px 0; display: flex; flex-direction: row; align-items: center; position:relative;}
.m_sub > a{display:block; width: 28%;}
.m_sub_sub{display:flex; flex-flow:row wrap; width: 72%;}
.m_sub_sub li {margin:16px 36px 16px 0;}
.m_sub_sub li:last-child {margin-right: 0;}
.m_sub_sub li a {display: inline-block;}
.m_sub_sub li a br {display: none;}

@media(max-width: 1440px){
  .pushy {padding:8% 4%;}
}
@media(max-width:1080px){
  .pushy .close_btn {left: -75px; width: 75px; height: 75px;}
  .pushy .close_btn img {max-width:25px;}
  li.m_sub {padding: 18px 0;}
  .m_sub_sub li {margin: 10px 20px 10px 0;}
}
@media(max-width:768px){
  .pushy {padding:40px 4% 0;}
  .pushy .close_btn {left: -60px; width: 60px; height: 60px;}
  .pushy .close_btn img {max-width:20px;}
  .pushy .pushy_top {margin-bottom: 16px;}
  .pushy figure img {max-width:70px;}
}
@media(max-width:500px){
  .pushy .pushy_top {width:calc(100% - 60px);}
  .pushy .mo_link {margin-left: 20px;}
  .pushy .mo_link ul li {margin-left: 10px;}
  .pushy .close_btn {left: auto; right: 4%; top: 28px; width: 45px; height: 45px;}
  .pushy .close_btn img {max-width:15px;}
  li.m_sub {flex-wrap: wrap; width: 100%;}
  .m_sub > a {width: auto; margin-bottom: 0.4em;}
  .m_sub_sub {width: 100%;}
  .m_sub_sub li {margin: 6px 12px 6px 0;}
  

}