@charset "utf-8";
/* -----------------------------
 common.css
----------------------------- */

/* リセット */
@import url("./destyle.css");

body {
	font-family: Yu Gothic, sans-serif;
}

/* ------------------------------
 general
------------------------------ */

/* ------------------------------
 header
------------------------------ */
header {
	background-color: #007B80;
}

header.isfixed {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 70;
}

header > div {
	display:flex;
	justify-content: space-between;
	align-items: center;

	margin: 0px auto;
	max-width: 1000px;

	font-weight: bold;
	color: #FFFFFF;
}

/* ------------------------------
 main
------------------------------ */
main {
	color: #333333;
}

main article {
	margin: 0px auto;
}

main article section {
	margin: 0px auto;
}

/* ------------------------------
 footer
------------------------------ */
footer {
	padding: 5px 0px;
	background-color: #000033;
}

footer .copyright {
	text-align: center;
	color: #FFFFFF;
}

/* -----------------------------
 PC
----------------------------- */
@media screen and (min-width:1000px) {
	.onlysp {
		display: none;
	}

	header > div {
		height: 80px;
		font-size: x-large;
	}

	main article section {
		margin-bottom: 160px;
	}

	main article section:not(#company):not(#contact):not(#privacy) {
		max-width: 1000px;
	}

	footer .copyright {
		font-size: small;
	}
}

/* -----------------------------
 SP
----------------------------- */
@media screen and (max-width:999px) {
	.onlypc {
		display: none;
	}

	header > div {
		padding: 0px 5px;
		height: 60px;
		font-size: medium;
	}

	main article section {
		margin-bottom: 50px;
	}

	main article section:not(#company):not(#contact):not(#privacy) {
		width: 100%;
		padding: 8px;
	}

	footer .copyright {
		font-size: x-small;
	}
}




