*{
	padding: 0;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Hiragino Kaku Gothic ProN, メイリオ, meiryo;
}

#header{
	background-color: #42b5e1;
	height: 75px;
	display: flex;	
	text-align:center;
}
#menu-btn-check {
	display: none;
}

#menu-btn-check {
	display: none;
}
#logo{
	width: 260px;
}
#logo img{
	max-width:none;
	width: 260px;
	height: 74.97px;
}
.hamburger-menu{
	margin: 0 0 0 auto;
}
#header ul{
	list-style-type: none;
	z-index: 10;
    position: relative;
}

.menuItem a, .menuItemli a{
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 25px 0;
    color: #010101;
}
.menuItem, .menuItemli {
	width: 125px;
}
.menu{
	margin-top: 1px;
	background-color: #d3d3d3;
}
.menu a{
	display: block;
	padding: 6px 0 8px 0;
}
.menu a:hover{
	background-color: #ffffea;
}
.hang{
	margin: 0 10% 0 auto;
}
#nav{
	display: flex;	
	flex-direction: row;
	float: left;
}
#header li ul li{
	overflow: hidden;
	height: 0;
	transition: .2s;
}
#header li:hover ul li{
	overflow: visible;
	height: 38px;
}
a:visited{
  color: inherit;
}

/*ここまでヘッダー*/

/*フッター*/
#footer{
	background-color: #f0f0f0;
    border-top: #d3d3d3 1px solid;
}
#SNSimage{
	display: flex;
	width: 200px;
	margin: 10px 200px 0 auto;
}
.SNS {
	width: 30px;
	height: 30px;
	margin: 15px 15px 0 15px;
}
.SNS img{
	width: 30px;
	height: 30px;
}
.SNS a{
	display: block;
	height: 30px;
}
.text{
	width: 350px;
	margin: 15px 120px 0 auto;
}
#copyright{
	text-align:center;
	font-size: 17px;
	margin: 0 0 0 0;
}
/*ここまでフッター*/

@media (max-width: 767px) {
    #header{
		height: max-content;
		width: 100%;
		z-index: 1;
	}
	#logo{
		width: auto;
		height: max-content;
	} 
	#logo img {
		width: 173.36px;
		height: 50px;
	}
	.menu-btn {
		position: absolute;
		top: 2px;
		right: 10px;
		display: flex;
		height: 50px;
		width: 50px;
		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;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		background-color: #fefefe;
		position: absolute;
		transition: 0.2s;
	}
	.menu-btn span:before {
		bottom: 8px;
		transition: 0.2s;
	}
	.menu-btn span:after {
		top: 8px;
		transition: 0.2s;
	}
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);
		transition: 0.2s;
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
		transition: 0.2s;
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
		transition: 0.2s;
	}	
	.hang{
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		z-index: 80;
		transition: 0.5s;
		position: fixed;
		top: 0;
		width: 100%;
		left: 105vw;
	}
	#nav{
		display: block;
		width: 100%;
		padding: 20px 0;
		background-color: #383838;
		transition: 0.3s;
		margin-top: 54px;
	}
	.menuItemli{
		position: relative;
		z-index: 100;
		width: 100%;
        padding: 0;
	}
	.menuItem{
		width: 100%;
		padding: 7px 0 7px 0;
		color:#FFFFFF;
	}
    .menuItem a, .menuItemli a{
        padding: 0;
		color: #fefefe;
    }
	.menuItemli a{
		color: #FFFFFF;
	}
	.menu{
		width: 100%;
		color: #FFFFFF;
	}
	.menu a{
		width: 100%;
		color: black;
        padding: 6px 0 8px 0;
	}
	#menu-btn-check:checked ~ .hang {
		-webkit-transform: translateX(-105%);
		transform: translateX(-105%);
	}
    /*ここまでヘッダー*/
    #footer{
		min-width:0;
	}
	#SNSimage{
	margin: 0 auto;
	display: flex;
	width: auto;
	justify-content: center;
	}
	.text{
	width: auto;
	text-align:center;
	margin: 0;
	}
}