
/* ドロワーメニュー*/
#l-menu {
position: fixed;
background:;
width: 0;height:0;
top:0;right:0;
z-index: 100;
}

#toggle {
display: block;
position: fixed;
top: 42px;right: 42px;
}

#toggle-box {
position: relative;
width: 36px;
height: 26px;
cursor: pointer;
}
#toggle-box > span {
width: 100%;
height: 3px;
left: 0;
display: block;
background: #fff;
position: absolute;
transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {top: 0;}
#toggle-box > span:nth-child(2) {top:45%;}
#toggle-box > span:nth-child(3) {bottom: 0;}

.is-open #toggle-box > span {background: #fff;}

.is-open #toggle-box > span:nth-child(1) {top: 40%;transform: rotate(45deg) translatey(-10%);}
.is-open #toggle-box > span:nth-child(2) {width: 0;}
.is-open #toggle-box > span:nth-child(3) {top: 40%;transform: rotate(-45deg) translatey(-10%);}

.is-open {overflow: hidden;}
.is-open #nav-content {z-index: 1;transform: translateX(0);}
.is-open #nav-content a {pointer-events: auto;}

/* z-index */
#toggle {z-index: 500;}

#main {position: relative; z-index: 0;}

#nav-content {
display:block;
z-index: 1;
overflow-x: hidden;
width: 100%;
height: 100%;
background: #F0F3F7;
position: fixed;
top: 0;
left: 0;
padding: 80px 0 0 0;
text-align:center;
transform: translateX(100%); 
transition:transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
font-size: 26px;
font-family: "kozuka-m", sans-serif;
}
#nav-content a{
color:#035D77;font-family: "kozuka-m", sans-serif;
}
#nav-content nav {margin-bottom: 30px;}

.nav-logo{
position: absolute;
top:45px;
left:55px;
}

.nav-logo img {width: 101px;height: auto;}

#menu-txt{
font-size:12px;
  font-weight:bold;
margin-top:6px;
color: #fff;
}



/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
.nav-logo{top:30px;left:35px;}
}
@media screen and (max-width: 600px) {
#l-menu {width: 10px;height: 10px;display: block;}
#nav-content {display: block;}
.nav-logo{top:15px;left:15px;}
.nav-logo img{width:80px;height:auto;}
#toggle {top: 20px;right: 20px;}
#toggle-box {
position: relative;
width: 28px;
height: 21px;
cursor: pointer;
}
#toggle {display: block;}

#menu-txt{
font-size:9px;
  font-weight:bold;
margin-top:6px;
}

#nav-content nav {margin-bottom: 20px;}
}

@media screen and (max-width: 480px) {
#toggle {top: 20px;right: 20px;}
#nav-content {padding:80px 0 0 0;font-size: 18px;}
#nav-content ul {list-style: none;margin-bottom: 0;}
#nav-content ul li {margin: 0 0 15px 0;}
}
/*--------------------------------------------------------------------------------*/

.ac {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom:3px;
}
.ac-parent {
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  color: #333;
}

.ac-child {
padding: 0.2em 0 0.5em 0;
font-size:14px;
}

.ac-child ul li {
margin: 0 0 10px 0 !important;
color: #333;
}
.ac-child ul li a {
color: #333;
}

.ac-none  {
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  color: #155BA0;
}

/*--------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
.ac-parent {height: 35px;line-height: 35px;}
.ac-none {height: 35px;line-height: 35px;}
.ac-child ul li {margin: 0 0 8px 0 !important;}
.ac-child {padding: 0.3em 0 0.0 0;font-size:13px;}
}
/*--------------------------------------------------------------------------------*/


#nav-content .otoiawase{margin-top: 5px;font-size: 18px;background: #fff;width:350px;display:inline-block;font-family: "kozuka-m", sans-serif !important;padding: 15px 25px;border-radius: 24px;-webkit-border-radius: 24px;-moz-border-radius: 24px;}
#nav-content .otoiawase a{display:block;}
#nav-content .otoiawase:hover{background-color:rgba(255, 255, 255, 0.6);color:#035D77;}

/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width:480px){
#nav-content .otoiawase{margin-top: 0px;font-size: 16px;width:80%;}
}
/*--------------------------------------------------------------------------------*/


#toggle-box > span, {
    	background: #fff; /* 元の色 */
    }


    #toggle-box > span.invert{
    	background: #035D77; /* スクロール後の色 */
    }
