@charset "utf-8";

nav {
	position: fixed;
	height: 72px;
	clear: both;
	width: 414px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../img/headback.png);
	background-repeat: no-repeat;
	z-index: 200;
	background-color: #FFF;
}
.button-tel {
	float: right;
	width: auto;
	height: 40px;
	font-size: 30px;
	line-height: 30px;
	margin-top: 10px;
	margin-left: 10px;
}

.title {
	float: left;
	height: 5px;
	width: 100%;
}

.title h2 {
	margin: 0;
	font-size: 20px;
}

.title h2 a {
	color: #FFFFFF;
	text-decoration: none;
}

.warpper {
	max-width:340px;
	margin: 0 auto;
	margin-top: 20%;
	margin-bottom: 20%;
}


/*---------------------
  トグルボタン
---------------------*/
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: absolute;    /* ヘッダーのボックスに対しての絶対位置指定（bodyに対しての絶対位置指定はfixed） */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
	top: 30px;
  	right:30px;
} 
.Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #768A99;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
} 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*---------------------
  ナビゲーションメニュー
---------------------*/
/*ナビゲーション部分*/ 
.menu ul li a {
	display:block;
	font-weight:bold;
	padding: 2em;
	border-bottom: 1px dotted #CCC;
 	color:#333;
 	text-decoration:none;
} 
.menu ul li a:hover{
	background-color:rgba(118,138,153,0.50);
	color:#fff;
} 
.menu{
	width: 50%;
	margin: 20px 0 0;
	text-align:left;
	background-color:rgba(255,255,255,0.50);
	transition: 0.5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(-100%);/*画面より100%外へ押し出し非表示にさせる*/
/*  transform: translateX(100%);/*右から出す場合は、マイナス100%としてください*/
	color: #768A99;
} 
/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*メニューを元の位置へ戻す*/ 
}








	
	
