
/*--------header-----------*/

.menu-container {
	width: 100%;
	top: -100px;
	margin:0 auto;
	line-height: 1;
	z-index: 999;
	background:#eee;
}



/*--------固定化されたときのCSS-----------*/

.menu-container.fixed {
    top: 0;
    position: fixed;
    padding: ;
	border-top:none;
	background:rgba(238,238,238,0.9);
	transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;

}




/*------------タブレット用------------------*/

@media screen and (max-width: 960px) {


  .menu-container .inner {
	width:100%;
  }

}