@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: 10px;
  right: 10px;
  width: 50px;
  height:30px;
   z-index: 990;
}
.menu span {
  position: absolute;
  left: 0;
  width: 80%;
  height: 2px;
  background-color:#0E89EA;
  display: block;
}
.menu span:nth-of-type(1) {
  top: 10px;
    left: 10%
}
.menu span:nth-of-type(2) {
  top: 15px;
   left: 10%
}
.menu span:nth-of-type(3) {
  top: 20px;
  left: 10%
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
    z-index: 989;
    padding: 20px 0;
    background: rgba(255,255,255,0.9);
    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: 0px 0;
  padding: 10px 3%;
     width: 80%;
display: block;
margin: 0 auto;  
}


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

}
#nav ul li a {
  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; 
}
#nav ul li .small{
display: block;
font-size: 0.7em;    
color: #0168B7;    
}
#nav ul li a:active {
  color: #0168B7;
    text-decoration: transparent;   
}
.sp_tel{
   width: 60%;
    display: flex;
    flex-wrap:wrap;
justify-content:center;
align-items:center;
    margin: 1em auto;
}
.sp_tel a{   
width: 50px;
height: 50px;    
 color: #0168B7;
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
margin-bottom: 2%; 
border:1px solid #0168B7;
border-radius: 50px; 
line-height: 50px; 
margin:0 2%;    
}
.sp_tel a:hover{
background: #0168B7;    
color: #fff;    
text-decoration: transparent;    
}

.sp-logo{
width: 100%;
display: block;
    
}
.sp-logo img{
width: 150px;  
margin: 2em auto;
display: block;    
}
