@charset "utf-8";
/* CSS Document */
img{width:100%;}
 
/*ロゴの大きさを調整*/
#logo img {
  max-width:60%;
}
 
nav{
 width: 100%;
 height: 70px;
 position: relative;
 background:rgba(200,200,200,0.5);
}
 
.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding-left:  1%;
}
 
/*ナビゲーション部分*/
.menu{
position: fixed;
z-index: 9990000;

}
 
.menu ul li a {
display:block;
  font-weight:bold;
padding: 1.5em;
border-bottom: 1px dotted #CCC;
  color:#333;
  text-decoration:none;
}
 
 
.menu ul li a:hover
{background-color:rgba(0,0,0,0.5);
color:orange;}
 
 
.menu{
 
  text-align:center;
  background-color:rgba(255,255,255,0.9);
  transition: 0.5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(500%);/*画面より100%外へ押し出し非表示にさせる*/
 
  transform: translateX(500%);/*右から出す場合は、マイナス100%としてください*/
 top: 60%;
}
 
/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
 
}
 
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
  right:20px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #333;
    -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);
}
 
/*----------------------------------ここからPCモニターの記述-----------*/
@media screen and (min-width: 600px) {
 
/*ロゴの大きさを調整*/
#logo img{max-width:250px;}	
	
nav{
 display: flex;
 position: fixed;
 top : 0;
 left: 0;
 z-index: 99999999999;
}
 
.Toggle{
 display: none;
}
.menu ul{
margin-right: 2%;

}
.menu{
width: 100%;
font-size:0.9em;
background-color: transparent;
-webkit-transform: translateX(0);
transform: translateX(0);
top: 2%;
}
.menu ul{
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}
.menu ul li a{
 padding: 0 1em;
 border-bottom: none;
}
.menu ul li a:hover{
background-color:transparent;
}

}