/* common */

body {
    margin: 0;
    padding: 0;
	font-family: 'PretendardL','OpenSansL', sans-serif;
 
}
a{
    text-decoration: none;
    color: white;
	font-size: 1rem;
	
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* contents */
.contents {
    display: table;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
	
    background: rgba(0,0,0,0.8);
	/*background-image : url(""../img/m_logo.png");*/
    box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.contents__inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.contents__inner h1 {
    margin: 0;
    padding: 0;
    color: #B5B5B5;
    font-size: 40rem;
	font-family: 'OpenSansL','PretendardL', sans-serif !important;
    font-style: italic;
}
.contents__inner h2 {
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 2rem;
    font-family: 'OpenSansL','PretendardL', sans-serif !important;
    font-style: italic;
	
	
}
.contents__inner p {
    margin-top: 20px;
    color: #B5B5B5;
    font-size: 20px;
}

.contents__inner p span {
    border-bottom: 1px solid #fff;
}

/* drawer menu */
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 100px 0;/*메뉴간격*/
    background: #222;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
	z-index: 300;
}

.drawer-menu li {
    text-align: center;
	z-index: 300;
}

.drawer-menu li a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #eee;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.drawer-menu li a:hover {
    color: #eee;
    background: rgba(215,164,78,0.5);
	
}


/* checkbox */
.check {
    display: none;
	
}

/* menu button - label tag */
.menu-btn {
   position: fixed;
    display: block;
    top: 40px;/*80*/
    right: 20px;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
	margin: -20px 0 0 0;
}

.bar.middle {
    top: 15px;/*버튼간격*/
    opacity: 1;
}

.bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn__text {
    position: absolute;
    bottom: 13px;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
}

.menu-btn:hover .bar {
    background: #999;
}

.menu-btn:hover .menu-btn__text {
    color: #999;
}

.close-menu {
    position: fixed;
    top: 0;
    right: 300px;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0);
    cursor: url(http://theorthodoxworks.com/demo/images/cross.svg),auto;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 9998;
}

.check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 56px;
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0,0,0,.5);
    visibility: visible;
    opacity: 1;
    z-index: 3;
}
 


hr.m_line { 
	border: solid #272727; 
	border-width: 0.1px 0 0;
	
}
hr.m_line2 { 
	border: solid #333; 
	border-width: 1px 0 0; 
	padding: 0 50PX;
}

ca_h1{
	border: 0px  solid #290F28;
	background: ;
	padding: 15px 0px 15px 60px;
	width: 100%;
	height: 60px;
	color: #290F28;
	font-family: 'OpenSansL','PretendardL', sans-serif !important;
	font-size: 1.6rem;
	
}
bg_h1{
	border: 0px  solid #290F28;
	background: #fff;
	padding: 15px;
	width: 100%;
	height: 60px;
	color: #290F28;
	font-family: 'OpenSansL','PretendardL', sans-serif !important;
	font-size: 2rem;
	
}
h2{
	border: 0px  solid #290F28;
	background: ;
	padding: 10px;
	width: 100%;
	height: 40px;
	color: #eee;
	font-size: 1.2vw;
	font-family: 'OpenSansL','PretendardL', sans-serif !important;
	
}

.menu-title {
	width: auto;
	padding: 100px 0;
	text-align: center;
	align-self: center;
      }

.footer-copy {
	width: 100%;
	height: 110px;
	background-color: #111;
	clear: both;
	padding: 30px 0px 30px 0px;
	border: 0px solid #bcbcbc;
	font-family: 'PretendardL','OpenSansL', sans-serif; 
	font-size: 0.7rem;
	color: antiquewhite;
	line-height: 1.7;
	text-align: center;/*y*/
        }
/*PROUDUCTS*/
.left-box {
  background: white;
  float: left;
	width: 150px;
	height: auto;
	display : block;
    margin : auto 0;}
}
.right-box {
  background: white;
  float: left;
  width: auto;
	height: auto;
}
/*Media query*/

@media only screen and (max-width: 1024px) {
.left-box {
  background: white;
  float: left;
	width: 150px;
	height: auto;
	display : block;
    margin : auto 0;}
}
.right-box {
  background: white;
  float: left;
  width: auto;
	height: auto;
}
}

	
@media only screen and (max-width: 900px) {
.right-box {
  background: white;
  float: right;
  width: 100%;
	height: auto;
}
.left-box {
  background: white;
  float: left;
	width: 0%;
	height: auto;
	display : none !important;
    margin : auto 0;
}
}
@media only screen and (max-width: 800px) {
.right-box {
  background: white;
  float: right;
  width: 100%;
	height: auto;
}
	.left-box {
  background: white;
  float: right;
	width: 166px;
	height: auto;
    margin : auto 0;
		display: none;
}
}
@media only screen and (max-width: 700px) {
.right-box {
  background: white;
  float: right;
  width: 100%;
	height: auto;
}
	.left-box {
  background: white;
  float: right;
	width: 166px;
	height: auto;
    margin : auto 0;
		display: none;
}
}
@media only screen and (max-width: 600px) {
.right-box {
  background: white;
  float: right;
  width: 100%;
	height: auto;
}
	.left-box {
  background: white;
  float: right;
	width: 166px;
	height: auto;
    margin : auto 0;
		display: none;
}
}

@media only screen and (max-width: 500px) {
	
.right-box {
  background: white;
  float: right;
  width: 100%;
	height: auto;
}
	.left-box {
  background: white;
  float: right;
	width: 166px;
	height: auto;
    margin : auto 0;
		display: none;
}
}
@media only screen and (max-width: 400px) {
.right-box {
  background: white;
  float: right;
  width: 100vw;
	height: auto;
}
	.left-box {
  background: white;
  float: right;
	width: 166px;
	height: auto;
    margin : auto 0;
		display: none;
}
}
