@charset "UTF-8";
/* CSS Document */
.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
    padding: 1%;
}
.menu {
  position: fixed;
  top: 2px;
  right: 10px;
  width: 40px;
  height: 40px;
   z-index: 9999;
}
.menu span {
  position: absolute;
  left: 0;
  width: 80%;
  height: 1px;
  display: block;
}
.menu span:nth-of-type(1) {
  top: 10px;
    left: 10%;
  background-color:#08AF59;        
}
.menu span:nth-of-type(2) {
  top: 20px;
    left: 10%;
  background-color:#08AF59;    
}
.menu span:nth-of-type(3) {
  top: 30px;
    left: 10%;
      background-color:#08AF59;
}
.menu span:nth-of-type(4) {
  top: 33px;
text-align: center;
color: #08AF59;   
font-size: 0.5em;  
font-weight: 700; 
left: 10%    
}
.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:100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
    z-index: 998;
    padding: 20px 0;
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%2308af59' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    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: 10px 3%;
display: block;
margin: 0 auto;    
}


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

}
#nav ul li a {
width: 100%;
display: block;
padding: 10px 1%;
transition: all 0.2s ease-in-out;
text-align:center;
text-decoration: none;
color: #2a2a2a;  
font-size: 1em;
transition: all 0.5s;
font-weight: 500;
margin: 0 auto;
}

#nav ul li .small{
display: block;
font-size: 1em; 
padding: 1% 0;    
}
#nav ul li a:hover {
opacity: 0.8;
    text-decoration: transparent;   
}
.sp_tel{
   width: 200px;
    display: block;
    margin: 1em auto;
}
.sp_tel a{
 color: #08AF59;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
font-weight: 700;
background: #fff;  
border-radius: 50px;    
border: 1px solid #08AF59;
}
.sp_tel a:hover{
 color: #fff;
background: #08AF59;  
text-decoration: transparent;    
}
.sp_mail{
   width: 200px;
    display: block;
    margin: 1em auto;
}
.sp_mail a{
 color: #fff;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
font-weight: 700;
background: #08AF59;  
border-radius: 50px;   
border: 1px solid #08AF59;    
}
.sp_mail a:hover{
 color:#08AF59;
background: #fff;  
text-decoration: transparent;    
}
