@charset "utf-8";
/* CSS Document */



/*メニューボディ*/

.menu {
    position: fixed;
    display: table;
	display:none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,252,230,0.9);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;

}
.menu_scroll
{
    display: table-cell;
    vertical-align: middle;
	text-align:center;
	height:100%;
	
}

.menu .hmenu {
	padding			: 0px;
	margin			: 0px;
	height			: 90%;
	overflow		: auto;
 	-webkit-overflow-scrolling : touch;

}

.menu li {
    width: 80%;
    margin: 0 auto;
    text-align: center;
	list-style	: none;
	margin-bottom	: 2px;
}

.menu li:first-child
{
	border:none;
	padding-bottom		: 20px;
	margin-bottom		: 20px;
	padding-top			: 20px;
}


.menu li a {
    display: block;
    font-size: 18px;
    color: #958135;
	text-decoration:none;
    background: rgba(255,255,255,0.7);
	padding				: 10px;
   -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}

.menu li a:hover {
    color: #b09d51;
    background: rgba(255,255,255,1);

}

/* 開閉用ボタンがクリックされた時のスタイル */
.md_open .menu {
	display:table;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
	z-index:2;
}




/*ボタンの配置*/
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    z-index: 1;

}


/*ボタンのデフォルト表示*/

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 50px;
	height: 30px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;

}
.nav_color01
{
	background:url(../images/common/base/menu_text.png) bottom center no-repeat;
	height			: 54px;
}

.menu-btn02 .nav_color01
{
	background: url(../images/common/base/menu_text_on.png) bottom center no-repeat;
	height			: 54px;

}


.nav_color01 .menu-trigger span 
{
	background-color: #e1dcc7;
}

.menu-btn02 .nav_color01 .menu-trigger span 
{
	background-color: #9e9676;
}


.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 13px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

/*ボタンのアニメーション*/

.menu-btn
{


}

.md_open .menu-btn
{
	z-index:3;

}

.md_open .menu-trigger span
{
	background-color:#9e9676;
}


.md_open .nav_color01
{
	background: url(../images/common/base/menu_text_on.png) bottom center no-repeat;

}



.md_open .menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(13px) rotate(-45deg);

}
.md_open .menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
.md_open .menu-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-13px) rotate(45deg);
}

.nav_color01
{
	background-size:51px auto!important;
}





/*480以下の指定（スマホ横)*/
@media screen and (max-width: 480px) {

.menu li
{
	width			: 83%;
}

.menu li:first-child img
{
	width			: 50%;
	display			: block;
	margin			: 0 auto;
	height			: auto;
}
.menu li:first-child
{
	margin-bottom	: 10px;
	padding-bottom	: 10px;
}

.menu-trigger {
	position: relative;
	width: 40px;
	height: 30px;
}

.menu-btn {
    position: fixed;
    top: 15px;
    right: 10px;
}

.menu_sp_line
{
	width			: 100%;
	height			: 80px;
	position		: fixed;
	top				: 0px;
	left			: 0px;
	background:rgba(0,0,0,0.3);
	z-index:10;

}
.nav_color01 .menu-trigger span 
{
	background-color: #e1dcc7!important;
}

.nav_color01
{
	background:url(../images/common/base/menu_text.png) bottom center no-repeat!important;
	height			: 48px;

}
.nav_color01,
.menu-btn02 .nav_color01
{
	background-size	: 43px auto!important;
	height			: 48px;
}

.menu li a
{
	font-size		: 16px;
}
}


