@charset "UTF-8";
/* CSS Document */
.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
    padding: 1%;
    border: 0px solid rgba(255,255,255,0.0);
}
.menu {
  position: fixed;
  top: 0px;
  right: 5px;
  width: 60px;
  height: 60px;
   z-index: 9999;
background: #fff;    
}
.menu span {
  position: absolute;
  left: 0;
  width: 40%;
  height: 1px;
  background-color:#0597F2;
  display: block;
    margin: 0 auto;
}
.menu span:nth-of-type(1) {
  top: 20px;
    left: 30%
}
.menu span:nth-of-type(2) {
  top: 30px;
    left: 30%
}
.menu span:nth-of-type(3) {
  top: 40px;
    left: 30%
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 70%;
  height: 100vh;
  opacity: 0;
background:#0597F2; 
  visibility: hidden;
    z-index: 999;
    padding: 20px 0;
    overflow-y: scroll;
}
#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;  
}
#nav ul {
  margin: 10px 0;
  padding: 15%;
     width: 90%;
display: block;
margin: 20px auto;
}


#nav ul li {
  list-style-type: none;

}
#nav ul li a {
  display: block;
  padding: 10px 0;
  transition: all 0.2s ease-in-out;
  text-align: left;
  text-decoration: none;
  color: #fff;  
    font-size: 1.2em;
    transition: all 0.5s;  
}
#nav ul li a .small{
font-size: 0.6em;
color: #fff;    
display: block;
padding: 2% 0;    
}
#nav ul li a:hover {
  opacity: 0.7;
    text-decoration: transparent;   
}

.sm_border{
width: 20px;
height: 1px;
background: #fff;  
display: inline-block; 
vertical-align: middle;    
}

.sp-con{
width: 100%;
height: auto;
display: block;   

}
.sp-tel{
font-size: 1.8em;
color: #fff; 
display: block;  
margin-bottom: 10%; 
text-align:  center;
}

.sp-mail{
font-size: 1em;
color: #fff;   
border: 1px solid #fff;
padding: 1em 0;    
display: block;  
text-align:  center;  
width: 70%;
display: block;   
margin: 0 auto;  
transition: all 0.5s;      
}

.sp-tel:hover{
  opacity: 0.7;
    text-decoration: transparent;   
}

.sp-mail:hover{
  opacity: 0.7;
text-decoration: transparent;      
}

