
/*--------------------------------------------------header--------------------------------------------------------------*/
header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 4.5rem;
	padding: 0 0 0 1rem;
}
header .logo {
	width: 20rem;
}
header a {
	background-color: #2ca860;
	font-size: 1.2rem;
	color: #fff;
	padding: 0rem 2rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.6;
}
/*----------------------------------------FOOTER----------------------------------------*/
.topbtn img {
	display: block;
	margin: 0 auto;
	width: 4.5rem;
	padding: 0rem 0 2rem;
	cursor: pointer;
}
footer {
	background-color: #e2e3e3;
	padding: 2rem 0;
	margin: 3rem 0 0;
}
.footer-logo {
	width: 80%;
	margin: 0 auto;
	display: block;
}
footer ul {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}
footer ul li {
	padding: 0 .5rem;
}
footer p {
	font-size: 1.2rem;
}
footer p a {
	text-decoration: underline;
	color: #0062B0;
}
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------タブレット／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
	@media screen and (min-width:768px) {
			/*------------------------------------------------------header----------------------------------------------------------*/
		header .inner {
			height: 6rem;
		}
		header .logo {
			width: 35rem;
		}	
		header a {
			font-size: 1.6rem;
			transition: .2s;
			padding: 0 4rem;
		}
		/*----
		header a:hover {
			opacity: 0.8;
		}
		----*/
			/*----------------------------------------------footer---------------------------------------------------------------*/
		footer .inner {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.footer-logo {
			width: 35rem;
			margin: 0;
		}
		footer ul {
			justify-content: flex-end;
		}

	}
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------PC／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
		@media screen and (min-width:1200px) {
			header .inner {
				height: 7.5rem;
				padding: 0 0 0 2rem;
				width: 100%;
			}
			header .logo {
				width: 44.5rem;
			}
			header a {
				padding: 2rem 10rem;
				font-size: 2rem;
			}
			.topbtn img {
				width: 5.5rem;
				padding: 0rem 0 4rem;
			}
			footer .inner {
				width: 120rem;
				margin: 0 auto;
			}
}
	@media screen and (max-width:350px) {
					header .logo {
						width: 18rem;
					}
					header a {
						font-size: 1rem;
						
					}
				}

