nav{
 width: 100%;
 height: 65px;
 position: relative;
 display: flex;
 align-items: center;
 padding-left:20px;
}

/*ナビゲーション部分*/

.menu ul{
display: flex;
flex-direction: column;
}

.menu ul li a{
margin: 0 auto;
}

.menu ul li{
display:flex;
font-weight:bold;
padding: 1.4em 2em;
border-bottom: 1px dotted #CCC;
text-decoration:none;
}

.menu ul li:hover{
background-color: rgba(0,0,0,0.1);
}

.drawer_btn a{width:100%;}
.drawer_btn{
	order: -1;
}
.menu{
  position: fixed;
  text-align:center;
  background-color:rgba(255,255,255,0.9);
  transition: 0.5s ease;
  -webkit-transform: translateY(-100%);
  width: 100%;
  padding-top: 65px;
  z-index: 1020;
}

/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateY(0%);
 transform: translateY(0%);
}

.Toggle {
    display: block;
    position: fixed;
    top: 24px;
    right: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 9999;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #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: 13px;
}
 .Toggle span:nth-child(3) {
    top: 22px;
}
.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);
}

.corp{
	position: relative;
}

.corp:after{
  position: absolute;
  content: '';
  display: inline-block;/*忘れずに！*/
  width: 15px;
  height: 15px;
  background-image: url("../images/link.png");
  background-size: contain;
  vertical-align: middle;
  right:-20px;
  top:5px;
}

@media screen and (min-width: 1024px) {
.menu ul{padding-right:5%;}
}

@media screen and (min-width: 750px) {

/*ロゴの大きさを調整*/

nav{
 display: flex;
 align-items: center;
 height:65px;
}

.Toggle{
 display: none;
}
.menu{
  top: 15px;
  right: 20px;
  width: 70%;
  font-size:0.9em;
  background-color: transparent;
  margin:0 10px;
  padding: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 9600;
}
.menu ul{
 height: 50px;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}
.menu ul li{
 padding: 0 0.4em;
 border-bottom: none;
}

.menu ul li:nth-child(3){
 padding-right: 0.2em;
}

.menu ul li:hover{
background-color: transparent;
}

.menu ul li a:hover{
text-decoration: underline;
}

.corp{display: none !important;}

.drawer_btn{
	order: 1;
}
}

@media screen and (max-width: 750px) {
.menu{
	padding-top:85px;
	}
}

@media screen and (max-width: 600px) {
nav{height:45px;}
.Toggle{top:14px;}
}
