@charset "utf-8";


/*초기화*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    text-decoration-color: #2b0d3f;
/*    outline: 1px solid red;*/
    
}

img{
    vertical-align: middle;
}

.container{
    width: 1000px;
    margin: 0 auto;
}

a{text-decoration: none;}
li{list-style: none;}


/*헤더*/

.title{
    position: relative;
    display: block;
    
}

header nav{
    float: left;
    margin: 0 50px;
}

header nav a{
    display: block;
    color: #2b0d3f;
    transition: all 0.4s;
}

.menu{
    position: relative;
    text-align: center;
    float: left;
    width: 180px;
    height: 50px;
    line-height: 50px;
    
}

.menu:hover > a{
    color: #846DAF;
}


.submenu{
    display: none;
    position: absolute;
    width: 180px;
    z-index: 10;
    background-color: rgba(255,255,255,0.8);
    color:  #2b0d3f;
    line-height: 30px;
    font-size: 0.8em;
}

.submenu a:hover{
    color: #846DAF;
}


/*메인, 슬라이드*/

.main{
    position: relative;
    display: block;
    margin: 70px 50px 20px 50px;
}

.slide{
    height: 300px;
    position: relative;
    overflow: hidden;
    margin: 0 50px;
}

.slide li{
    position: absolute;
}


/*콘텐츠*/


.contents{
    width: 900px;
    height: 400px;
    position: relative;
    margin: 20px 50px;
    border-bottom: 1px solid #2b0d3f;
    border-top: 1px solid #2b0d3f;
}
.contents > div{
    float: left;
}
.contents .con1{
    width: 900px;
}

.contents .con1 > div > span{
    display: inline-block;
    width: 100px;
    line-height: 30px;
    margin: 30px 0 20px 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid #2b0d3f;
    text-decoration-color:  #2b0d3f;
}

.contents .con1 > div > span:hover{
    opacity: 0.8;
}

.contents .con1 .design > span{
    left: 150px;
}

.contents .con1 .design div{
    height: 300px;
    background-color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    
}

.contents .con1 .design img{
    margin: 25px 18.75px;
    height: 250px;
    width: 250px;
}

.contents .con1 .design img:hover{
    opacity: 0.8;
}

.contents .con1 .embro{
    position: absolute;
    top: 0;
/*    display: none;*/
}

.contents .con1 .embro span{
    left: 400px;
}

.contents .con1 .embro div{
    width: 900px;
    height: 300px;
    background-color: white;
    text-align: center;
    position: relative;

}

.contents .con1 .embro img{
    margin: 25px 18.75px;
}

.contents .con1 .embro img:hover{
    opacity: 0.8;
}


.contents .con1 .text{
    position: absolute;
    top: 0;
/*    display: none;*/
}

.contents .con1 .text span{
    left: 650px;
}

.contents .con1 .text div{
    width: 900px;
    height: 300px;
    background-color: white;
    position: relative;
    padding: 25px 50px;
    overflow-y: auto;

}

.contents .con1 .text li{
    margin: 0 0 20px 0;
    border-bottom: 1px dotted  #2b0d3f;
    line-height: 30px;
}

.contents .con1 .text a{
    color: #2b0d3f;
    margin: 0 0 0 50px;
    display: contents;
    font-size: 1em;
}

.contents .con1 .text li span{
    font-weight: bold;
    display: block;
    text-align: right;
    margin: 0 0 10px 0;
}


/*문의*/

.contact{
    width: 900px;
    height: 400px;
    position: relative;
    margin: 20px 50px;
    
}

.contact > div{
    float: left;
}

.info{
    width: 450px;
}



.contact span{
    display: inline-block;
    width: 120px;
    padding: 10px 0;
    margin: 0 0 0;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: 1px solid #2b0d3f;
}

.contact pre{
    font-size: 1.2em;
    line-height: 50px;
    margin: 50px 0;
    
}

.contact a{
    margin: 10px 10px 0 0;
    display: inline-block;
}


.request{
    width: 450px;
    font-size: 0.9em;
}


.request input[type=text], select {
  width: 100%;
  padding: 10px 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #846DAF;
  box-sizing: border-box;
}

input[type=submit] {
    float: right;
  width: 120px;
  background-color: #846DAF;
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
    opacity: 0.9;
}

textarea {
  width: 100%;
  height: 120px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid #846DAF;
  resize: none;
}



/*퓨터*/

.contact p{
    width: 450px;
    display: block;
    position: relative;
    margin-top: 80px;
}



.top{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: none;
}

.top img{
    width: 40px;
    height: 40px;
}