@charset "UTF-8";
.top_header{
	margin: 20px auto;
  max-width: 1100px;
}

.top_header_img a {
  display: flex;
  align-items: center;
}

.top_header_img img{
	width: 17%;
	margin-right: 15px;
}

.top_header a{
	color: inherit;
	text-decoration: none;
}

.hamburger-menu{
	width: 50%
}

.top_header_img{
	font-size: 3.5vh;
	font-weight: bold;
	font-family: 'HiraKakuPro-W6','ヒラギノ角ゴ Pro W6';
	color: #0E9FDA;
}

@media screen and (max-width: 989px){
	.top_header_img{
		font-size: 3vh;
		color: #0D9ED9;
	}

	.top_header{
		margin: 10px;
	  max-width: 100%;
	}

	.top_header img{
		width: 40%;
	}
}


@charset "UTF-8";
.Menu_content{
	background-color: #0D9ED9;
	padding-left: 50px;
	min-height: 100vh;
	width: 80%;
	margin: 0 0 0 auto;
}

.Menu_wrap{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	padding-top: 10%;
}

.Menu_flex{
	width: 50%;
}

.Menu_title{
	font-size: 4vh;
	color: #fff;
	font-weight: bold;
	display: flex;
	align-items: center;
	font-family: 'HiraKakuPro-W6','ヒラギノ角ゴ Pro W6';
	letter-spacing: 0.1em;
}

.Menu_content ul{
	list-style: none;
	border-left: solid 1px #ffffff;
	margin-left: 10px;
	padding-left: 20px;
}

.Menu_content ul a{
	text-decoration: none;
	color: #fff;
}

.Menu_content ul li{
	margin: 15px 0;
}

.menu_other{
	display: block;
	width: 20%;
	border-radius: 50px;
	background-color: #fff;
	color: #0D9ED9;
	text-align: center;
	font-weight: bold;
	padding: 10px;
	margin-top: 30px;
	text-decoration: none;
}

.menu-btn {
	position: absolute;
  top: 0px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #0D9ED9;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
		background-color: #ffffff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
		background-color: #ffffff;
}

.Menu_content {
    width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .Menu_content {
    left: 20%;/*メニューを画面内へ*/
}

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

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
    content: '';
    background-color: #0D9ED9;
	}

	#menu-btn-check:checked ~ .Menu_content {
	    left: 0%;/*メニューを画面内へ*/
	}

	.Menu_content{
		width: 100%;
		padding: 20px;
	}

	.Menu_flex{
		width: 100%;
		margin-bottom: 50px;
	}

	.Menu_wrap{
		display: block;
		padding-top: 10%;
	}

	.menu_other{
		width: 50%;
	}

	.menu-btn{
		right: 0px;
		height: 50px;
	}

}
