@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: 40px;
  height: 40px;
   z-index: 9999;
background: rgba(255,255,255,0.5);   
}
.menu span {
  position: absolute;
  left: 0;
  width: 80%;
  height: 1px;
  background-color:#BA385D;
  display: block;
}
.menu span:nth-of-type(1) {
  top: 10px;
    left: 10%
}
.menu span:nth-of-type(2) {
  top: 20px;
    left: 10%
}
.menu span:nth-of-type(3) {
  top: 30px;
    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;
    padding: 100px 0;
    background: #fff;
    overflow-y: scroll;
       z-index: 9999;
}
#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%;
     width: 80%;
display: block;
margin: 0 auto;
background: rgba(255,255,255,0.8);    
}


#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: #333;
    font-size: 1em;
    transition: all 0.5s;
   font-weight: 500; 
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;    
}
#nav ul li .small{
display: block;
font-size:0.7em;
color: #BA385D;  
padding: 1% 0;   
font-family: 'Cinzel', serif;
font-weight: 500;     
}
#nav ul li a:hover {
 opacity: 0.7; 
text-decoration: transparent;   
}
.sp_tel{
   width:200px;
    display: block;
    margin: 1em auto;
}
.sp_tel a{
 color: #333;
border: solid 1px #333;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1.2em;  
transition: all 0.5s;	
font-weight: 500;
}
.sp_tel a:hover{
 color: #fff;
border: solid 1px #333;
background: #333;  
text-decoration: transparent;    
}
