body {
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic Medium', sans-serif;
}
.header {
	width: 100%;
	background: #000;
	position: fixed;
	z-index: 11;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}
.header_inner {
	/*width: 62.857%;*/
	width: 80%;
	max-width: 1080px;
	min-width: 880px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3.285% 2.285% 0.5714% 1.1428%;
	margin: 0 auto;
}
.header_logo {
	width: 16%;
}
.header_logo img {
	width: 100%;
	height: auto;
}
.header_nav {
	width: 73.55%;
	max-width: 620px;
	display: flex;
	justify-content: space-between;
}
.header_list {
	display: flex;
	justify-content: space-between;
	/*gap: 2.14%;*/
	width: 71.08%;
}
.header_item a {
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}
.header_language_list {
	width: 20%;
	display: flex;
	justify-content: space-between;
}
.header_language_item a {
	display: flex;
    align-items: center;
    justify-content: center;
	/*width: 36px;
	height: 14px;*/
	color: #fff;
	background-image: linear-gradient(90deg, #44a6d9, #1f57ca);
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	padding: 4px 10px;
}
.header_language_item.active a {
	background: #fff;
	color: #083388;
}
.large_only {
	display: block;
}
.small_only {
	display: none;
}
@media (max-width: 880px) {
	.header_inner {
		width: 98%;
		min-width: auto;
	}
	.header_nav {
		max-width: none;
	}
	.header_language_item a {
		padding: 4px 6px;
	}
}
@media (min-width: 768px) {
	#spNav {
		display: none !important;
	}
}
@media (max-width: 768px) {
	body {
		position: relative;
	}
	.large_only {
		display: none;
	}
	.small_only {
		display: block;
	}
	.nav_large {
		display: none;
	}

	.header_inner {
		width: 90%;
		padding-top: 22px;
		padding-bottom: 12px;
	}
	.header_logo {
		width: 27.333%;
	}
	.header_nav {
		display: block;
	}
	.header_language_list {
		width: auto;
		justify-content: flex-end;
	}
	.header_language_item {
		margin-left: 6px;
	}

	#opNav {
		width: 44px;
		height: 38px;
		display: flex;
		flex-direction: column;
		gap: 8px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 6px;
		background: #b3b3b3;
		border-radius: 4px;

		position: fixed;
		/*top: 3.12%;*/
		top: 9.36%;
		right: 3.733%;
		z-index: 10;
	}
	#opNav span {
		display: block;
		width: 30px;
		height: 2px;
		background: #fff;
		transition: 0.3s;
	}
	#spNav {
		display: none;
		width: 44.266%;
		background: rgba(34, 36, 43, .9);
		padding: 4.533% 13.6% 4% 0;
		border-radius: 6px;
		position: fixed;
		/*top: 3.04%;
		*/top: 9.12%;
		right: 3.466%;
	}
	.sp_nav_list {
		text-align: right;
	}
	.sp_nav_item {
		margin-bottom: 20px;
	}
	.sp_nav_item:last-child {
		margin-bottom: 0;
	}
	.sp_nav_item a {
		color: #fff;
		font-size: 10px;
	}
}

.content_inner {
	width: 62.857%;
	max-width: 1024px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.content_inner {
		width: 92%;
	}
}

footer {
	background: #000;
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	padding: 48px 0 16px;
}
.footer_logo {
	text-align: center;
	margin-bottom: 50px;
}
.footer_address_list {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.footer_address_item {
	color: #fff;
	font-size: 12px;
	line-height: 1.777;
	padding-left: 10px;
	border-left: 1px solid #fff;
}
.footer_address_item:first-child {
	margin-right: 44px;
}
.footer_copyright {
	font-size: 11px;
	text-align: center;
}
@media (max-width: 768px) {
	footer {
		padding: 38px 0 30px;
	}
	.footer_address_list {
		display: block;
	}
	.footer_address_list {
		width: 87.733%;
		margin: 0 auto 38px;
	}
	.footer_address_item:first-child {
		margin-right: 0;
		margin-bottom: 18px;
	}
	.footer_copyright span {
		display: block;
		font-size: 10px;
		line-height: 1.65;
		margin-bottom: 12px;
	}
}

#totop {
	display: none!important;
}