/* header-simple --------------------------------------- */
.header_simple {
	background: #0a1464;
	width: 100%;
	height: 60px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 5;
	overflow: visible;
}

.header_simple_wrap {
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	max-width: 1440px;
	height: 60px;
	display: flex;
	justify-content: space-between;
}

.header_simple_logo {
	width: 280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header_simple_logo img {
	display: block;
}

.header_simple_login {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header_simple_login a {
	background: #fc0;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 128px;
	height: 32px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.38;
	color: #333;
	text-align: center;
	text-decoration: none;
}


@media only screen and (max-width: 767px) {
	.header_simple {
		min-width: unset;
		width: 100%;
	}

	.header_simple_wrap {
		padding: 0 14px;
		max-width: 100%;
		position: relative;
	}

	.header_simple_logo {
		margin-right: 16px;
		width: 196px;
	}

	.header_simple_login a {
		display: none;
		border-radius: 48px;
		width: 100%;
		height: 48px;
		font-size: 14px;
	}
}

@media only screen and (max-width: 375px) {
	.header_simple_login a {
		font-size: max(4.8vw, 12px);
	}
}

/* Footer simple ---------------------------------------*/
.footer_simple {
	background: #fff;
	padding: 0;
}

.footer_simple a {
	color: #000;
	text-decoration: none;
}

.footer_simple .footer_inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.footer_simple_logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer_simple_logo a {
	display: block;
	width: 300px;
	height: 27px;
	background: url(../images/common/footer_logo.png) center center no-repeat;
	background-size: contain;
	overflow: hidden;
	text-indent: -1000px;
	margin-right: 20px;
}

.footer_simple_link {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer_simple_link ul {
	display: flex;
	margin: 0;
	padding: 0;
}

.footer_simple_link ul li {
	display: block;
	list-style-type: none;
	font-size: 12px;
	padding: 10px;
	box-sizing: border-box;
}

.footer_simple_copyright {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right;
	font-size: 12px;
}

@media screen and (max-width: 1000px) {
	.footer_simple .footer_inner {
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 15px;
	}

	.footer_simple_logo {
		float: none;
		margin: 0px auto;
	}

	.footer_simple_logo a {
		margin: 0;
	}

	.footer_simple_link ul {
		float: none;
		margin: 10px auto;
	}

	.footer_simple_link ul li {
		padding: 0 10px;
	}

	.footer_simple_copyright {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 450px) {
	.footer_simple_logo {
		width: 100%;
	}

	.footer_simple_logo a {
		width: 100%;
	}

	.footer_simple_link ul {
		flex-direction: column;
	}

	.footer_simple_link ul li {
		text-align: center;
	}
}