@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* RESET
--------------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	background: initial;
	box-sizing: border-box;
}

/* common
--------------------------------------------------------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	height: 100%;
	font-family: "Noto Sans JP", sans-serif;
	/*font-family: "Roboto", sans-serif;*/
}
img,
svg {
	max-width: 100%;
	height: auto;
	transition: 0.5s;
}
a {
	outline: none;
	color: #000;
}
a, a:hover, a:hover img {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none;
}
@media (min-width : 900px) {
.pcno {
	display: none;
}
}
@media (max-width: 500px) {
.spno {
	display: none;
}
}
@media (min-width:500px) and (max-width: 900px) {
.tbno {
	display: none;
}
}
.en {
	font-family: "Roboto", sans-serif;
}
.txt a {
	color: #3c65c9;
	text-decoration: underline;
}
.txt a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* header
--------------------------------------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	height: 205px;
	background-image: url("../images/bg-head-pc1018.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 3000px auto;
	font-family: "Noto Sans JP", sans-serif;
	/*font-family: "Roboto", sans-serif;*/
	font-weight: 400;
}
header .inner { /* SP時の背景画像用 */
	height: 98px;
	padding-top: 28px;
	background-image: url("../images/head1.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 3000px auto;
	position: relative;
	z-index: 1000;
}
@media(max-width: 900px) {
	header {
		background-image: none;
		height: 84px;
	}
	header .inner {
		height: 66px;
		padding-top: 18px;
		background-size: auto 98px;
		background-position: top 0px center;
	}
}
@media(max-width: 500px) {
	header {
		background-image: none;
		height: 64px;
	}
	header .inner {
		height: 50px;
		padding-top: 14px;
		background-size: auto 78px;
		background-position: top 0px center;
	}
}
header h1,
header .logo {
	position: relative;
	z-index: 1001;
	max-width: 195px;
	/*margin-top: 28px;*/
	margin-left: auto;
	margin-right: auto;
}
header .language {
	position: absolute;
	display: flex;
	top: 10px;
	right: 20px;
}
header .language li {
	margin-left: 10px;
}
header .language li a {
	color: #5e6b8a;
	font-size: 13px;
}
header .language li a:hover {
	color: #fff;
}
@media(max-width: 900px) {
	header h1,
	header .logo {
		max-width: 130px;
	}
}
@media(max-width: 500px) {
	header h1,
	header .logo {
		max-width: 92px;
	}
}
@media(max-width: 900px) {
	header .language {
		display: none;
	}
}
/* PC-menu 
------------------------------------------------------------------------------ */
#gnav ul {
	position: relative;
	display: flex;
	justify-content: center;
}
#gnav li {
	position: relative;
	white-space: nowrap;
}
#gnav .gmenu li a {
	font-size: 18px;
	height: 62px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	/*font-family: "Roboto", sans-serif;*/
	font-weight: 600;
}
#gnav .gmenu li a:hover {
	color: #006ea8;
	opacity: inherit;
}
#gnav ul.sub-menu {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	display: block;
	position: absolute;
	top: 52px; /* スタート位置 */
	left: 50%;
	width: auto;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	
	padding-top: 11px;
	padding-bottom: 11px;
	background-color: #001446;
}
#gnav li:hover ul.sub-menu {
	top: 56px; /* 表示位置 */
	visibility: visible;
	opacity: 1;
	z-index: 9999;
}
#gnav .gmenu .m1 {
	margin-left: -45px;
}
#gnav .gmenu .m2 {
	margin-left: -75px;
}
#gnav .gmenu .m3 {
	margin-left: -45px;
}
.gmenu .sub-menu::before {
	content: "";
	display: block;
	width: 40px;
	height: 25px;
	background-image: url(../images/san.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	position: absolute;
	top: -10px;
}
.m1::before {
	left: 25px;
}
.m2::before {
	left: 55px;
}
.m3::before {
	left: 25px;
}
#gnav .sub-menu li a {
	height: 28px !important;
	display: flex;
	align-items: center;
	font-size: 94%;
	font-weight: 500;
	color: #fff;
	background-color: #001446;
	padding: 0 24px 0 20px;
}
#gnav .sub-menu li a:hover {
	color: #7ed2ff;
	/*background-color: #006ea8;*/
}
#gnav .sub-menu li {
	display: block;
	padding: 0;
	margin: 0;
}
#gnav ul > li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}
@media(max-width: 900px) {
	#gnav {
		display: none;
	}
}

/* SP-menu 
------------------------------------------------------------------------------ */
.hamburger {
	display: none !important;
}
@media screen and (max-width: 900px) {
	.hamburger {
		display: block !important;
	}
}
/* ハンバーガーメニューボタン */
.hamburger {
	display: block;
	position: fixed;
	z-index: 1001;
	right: 0px;
	top: 0px;
	cursor: pointer;
	text-align: center;
}
@media(max-width: 900px) {
	.hamburger {
		width: 62px;
		height: 62px;
	}
}
@media(max-width: 500px) {
	.hamburger {
		width: 56px;
		height: 51px;
	}
}
.hamburger span {
	display: block;
	position: absolute;
	background: #fff;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
@media(max-width: 900px) {
	.hamburger span {
		width: 36px;
		height: 2px;
		left: 12px;
	}
	.hamburger span:nth-child(1) {
		top: 20px;
	}
	.hamburger span:nth-child(2) {
		top: 30px;
	}
	.hamburger span:nth-child(3) {
		top: 40px;
	}
}
@media(max-width: 500px) {
	.hamburger span {
		width: 30px;
		height: 2px;
		left: 12px;
	}
	.hamburger span:nth-child(1) {
		top: 14px;
	}
	.hamburger span:nth-child(2) {
		top: 24px;
	}
	.hamburger span:nth-child(3) {
		top: 34px;
	}
}
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media(max-width: 900px) {
	.hamburger.active span:nth-child(1) {
		top: 30px;
		left: 12px;
	}
	.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
		top: 30px;
	}
}
@media(max-width: 500px) {
	.hamburger.active span:nth-child(1) {
		top: 24px;
		left: 12px;
	}
	.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
		top: 24px;
	}
}

/* メニュー背景　*/
@media(min-width: 900px) {
	.globalmenu-sp {
		display: none !important;
	}
}
.globalmenu-sp {
	position: fixed;
	z-index: 2;
	left: 0;
	background: rgba(0, 20, 70, 1.0);
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: all 0.5s;
	overflow-y: scroll;
}
@media(max-width: 900px) {
	.globalmenu-sp {
		top: 0px;
	}
	.globalmenu-sp .nav-inner {
		padding: 100px 30px 150px 30px;
	}
}
@media(max-width: 500px) {
	.globalmenu-sp {
		top: 0px;
	}
	.globalmenu-sp .nav-inner {
		padding: 70px 25px 100px 25px !important;
	}
}
/* クリックでjQueryで追加・削除 */
.globalmenu-sp.active {
	opacity: 100;
	display: block;
	transform: translateX(0%);
}
/* SP アコーディオン */
.accordion-menu li a {
	padding: 10px 0;
	display: block;
}
.accordion-menu li,
.accordion-menu li a {
	color: #fff;
	font-size: 18px;
}
.menu-title {
	position: relative;
	cursor: pointer;
	padding: 10px 0;
}
/*＋アイコン*/
.menu-title::before,
.menu-title::after{
	position: absolute;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
	transition: all .2s ease;
}
.menu-title::before{
	top:48%;
	right: -2px;
	transform: rotate(0deg);
}
.menu-title::after{
	top:48%;
	right: -2px;
	transform: rotate(90deg);
}
/*closeというクラスがついたら×に変化*/
.menu-title.close::before{
	transform: rotate(45deg);
}
.menu-title.close::after{
	transform: rotate(-45deg);
}
.sub-menu-sp {
	display: none;
}
.sub-menu-sp li {
	border-bottom: rgba(255,255,255,0.3) dotted 1px;
	margin-left: 12px;
}
.sub-menu-sp li a {
	padding: 8px 0 8px 0;
	font-size: 92%;
}
.globalmenu-sp .language-sp {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}
.globalmenu-sp .language-sp li {
	margin: 0 6px;
}
.globalmenu-sp .language-sp li a {
	color: #fff;
	font-size: 14px;
	display: block;
	padding: 4px 8px;
	border: #fff solid 1px;
	background-color: rgba(255,255,255,0.3);
}

/* main
--------------------------------------------------------------------------------------------- */
main {
	font-family: "Noto Sans JP", sans-serif;
	/*font-family: "Roboto", sans-serif;*/
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	margin-top: 185px; /*  header高さ */
	padding-bottom: 40px;
}
#toppage main {
	padding-bottom: 0;
	font-size: 18px;
}
@media(max-width: 900px) {
	main {
		font-size: 16px;
		margin-top: 70px; /* header高さ */
	}
}
@media(max-width: 500px) {
	main {
		font-size: 16px;
		margin-top: 55px; /* header高さ */
		line-height: 1.5em;
		padding-bottom: 20px;
	}
}
main .content-title {
	height: 175px;
	background-image: url("../images/bg-title.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
main .content-title h1 {
	font-size: 300%;
	font-weight: 500;
	color: #000c45
}
@media(max-width: 900px) {
	main .content-title h1 {
		line-height: 0.9em;
		text-align: center;
	}
}
@media(max-width: 500px) {
	main .content-title {
		height: 95px;
	}
	main .content-title h1 {
		font-size: 160%;
		font-weight: 400;
		line-height: 1.0em;
		text-align: center;
	}
}
/* 波線 */
main .main-wrap {
	background-image: url("../images/bg-cont3.png");
	background-repeat: repeat-x;
	background-position: top center;
	/*background-size: 3000px auto;*/
	background-size: auto 103px;
	/*background-size: auto 90px;*/
	padding-top: 65px;
	position: relative;
	z-index: 1;
	top: -35px;
}
#toppage main .main-wrap {
	padding-top: 80px;
	top: -42px;
}
@media(max-width: 900px) {
	#toppage main .main-wrap {
		background-size: auto 68px;
		padding-top: 65px;
		top: -28px;
	}
}
@media(max-width: 500px) {
	main .main-wrap {
		background-size: auto 17px;
		padding-top: 25px;
		top: -8px;
	}
	#toppage main .main-wrap {
		background-size: auto 28px;
		padding-top: 30px;
		top: -15px;
	}
}
/* パンくず */
main .main-wrap .pan-box {
	max-width: 1200px;
	padding: 0 40px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}
main .main-wrap .pan-box.type-product {
	padding-bottom: 0;
}
@media(max-width: 900px) {
	main .main-wrap .pan-box {
		display: none;
	}
}
main .main-wrap .pan-box ul {
	display: flex;
}
main .main-wrap .pan-box ul li {
	font-size: 85%;
	position: relative;
	line-height: 1.1em;
	white-space: nowrap;
}
main .main-wrap .pan-box ul li:last-child {
	white-space: normal;
}
main .main-wrap .pan-box ul li a:hover {
	color: #006ea8;
}
main .main-wrap .pan-box ul li:nth-of-type(n+2) {
	margin-left: 20px;
}
main .main-wrap .pan-box ul li:nth-of-type(n+2):before {
	content: '';
	width: 5px;
	height: 5px;
	border: 0;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	position: absolute;
	/*top: 40%;*/
	top: 5px;
	left: -14px;
	transform: rotate(45deg);
}
/* 共通1200 */
main .main-wrap .common-inner {
	max-width: 1200px;
	padding-left: 40px;
	padding-right: 40px;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width: 500px) {
	main .main-wrap .common-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}
/* sdgs */
.sdgs-wrap {
	border: #001446 solid 1px;
	padding: 60px;
	margin: 50px 0;
}
@media(max-width: 500px) {
	.sdgs-wrap {
		border: none;
		padding: 10px;
		margin: 0;
	}
}

/* 共通h2 */
main .mds2 {
	padding: 5px 0 6px 15px;
	color: #fff;
	font-size: 110%;
	font-weight: 500;
	background-color: #000c45;
}

/* footer
--------------------------------------------------------------------------------------------- */
#footer {
	background-color: #006ea8;
	padding: 30px 40px;
	margin-top: -42px; /* .main-wrapの位置調整 */
	color: #fff;
	font-size: 80%;
	border-top: #001446 solid 30px;
}
@media(max-width: 500px) {
	#footer {
		border-top: #001446 solid 15px;
	}
}
#toppage #footer {
	border-top: none;
}
#footer .inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}
#footer .inner p a {
	color: #fff;
}
#footer .inner p a:hover {
	color: #001446;
}
#footer .inner .policy {
	order: 2;
}
#footer .inner .copy {
	order: 1;
}
@media (max-width: 1340px) {
	#footer .inner .policy {
		margin-right: 40px;
	}
}
@media (max-width: 900px) {
	#footer .inner .policy {
		margin-right: 20px;
	}
}
@media(max-width: 500px) {
	#footer {
		padding: 20px 20px;
		margin-top: -10px;
		font-size: 90%;
	}
	#footer .inner p {
		text-align: center;
	}
	#footer .inner {
		display: block;
	}
	#footer .inner .policy {
		padding-bottom: 12px;
	}
	#footer .inner .copy {
		font-size: 70%;
		line-height: 1.2em;
	}
	#footer .inner .copy span {
		display: block;
	}
}

/* pagetop
------------------------------------------------------------------------------ */
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 10;
}
#pagetop a {
	display: block;
	width: 38px;
	height: 38px;
	border: #001446 solid 1px;
	text-indent: -9999px;
	position: relative;
	color: #001446;
	background-color: #fff;
}
#pagetop a::before {
	content: '';
	width: 12px;
	height: 12px;
	display: block;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(-45deg);
	position: absolute;
	top: 7px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
#pagetop a:hover {
	opacity: 0.8;
}
@media (max-width: 900px) {
	#pagetop {
		bottom: 25px;
		right: 10px;
	}
	#pagetop a {
		width: 30px;
		height: 30px;
		background-size: 15px auto;
	}
	#pagetop a::before {
		width: 8px;
		height: 8px;
		top: 5px;
	}
}
@media (max-width: 500px) {
	#pagetop {
		bottom: 20px;
		right: 10px;
	}
	#pagetop a {
		width: 30px;
		height: 30px;
		background-size: 15px auto;
	}
	#pagetop a::before {
		width: 8px;
		height: 8px;
		top: 5px;
	}
}


sup,
span.suptxt {
	font-size: 75.5%;
	vertical-align: top;
	position: relative;
	top: -0.2em;
	font-weight: 500;
}