@charset "UTF-8";

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body{
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body{
	font-size: 15px;
	line-height: 1.9;
}
h1,h2,h3,h4,h5{
	line-height: 1.4;
}
#wrapper{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
body > #wrapper{
	height: auto;
}
#screen{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background:#fff;
	z-index: 200;
}
.clearfix:after{
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print{
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance{
	left:-999px;
	position:absolute;
	width:990px;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img{
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default{
	box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a{
	display: inline-block;
}
a:link,
a:visited,
a:active{
	color: inherit;
	text-decoration: none;
}
a:hover{
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}
.oswald{
	font-family: 'Oswald', sans-serif;
	position: relative;
	font-weight: normal;
}

.container{
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.pc{display: block;}
.sp{display: none;}


/* ▼装飾
--------------------------------------- */
/* 下線 */
.border1 {
    text-decoration:underline solid #000;
}

/* 二重下線 */
.border2 {
    text-decoration:underline double #000;
}

/* 点線 */
.border3 {
    text-decoration:underline dotted #000;
}

/* 破線 */
.border4 {
    text-decoration:underline dashed #000;
}

/* 波線 */
.border5 {
    text-decoration:underline wavy #000;
}

/* ▼ タイトル
--------------------------------------- */
#site_title{
	overflow: hidden;
}
body.menu_fixed #site_title{
	display: none;
}
/* 中ページh1 */
.title_box{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
	height: 290px;
	background: #999;
	color: #fff;
	}
	.title_box h1{
		font-size: 120px;
		line-height: 0.9;
		text-align: center;
	}
	.title_box span{
		display: block;
		width: 100%;
		margin-bottom: 15px;
		font-size: 26px;
		font-weight: bold;
		text-align: center;
		letter-spacing: .1em;
		font-family: 'Noto Serif JP', serif;
	}
/* 背景グラデーション */
.title_gradation{
	display: flex;
	align-items: center;
	height: 70px;
	background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
	background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
	background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
	padding: 4px 30px 0 40px;
	margin-bottom: 25px;
	color: #fff;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.1;
	position: relative;
	}
	.title_gradation::before{
		content: "";
		width: 10px;
		height: 100%;
		background: #000;
		position: absolute;
		top: 0;
		left: 0;
	}
/* boderグラデーション */
section .boder_title{
	display: flex;
	justify-content: center;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto 70px;
	text-align: center;
	position: relative;
	z-index: 1;
	}
	section .boder_title span{
		font-size: 40px;
		letter-spacing: 0.1em;
		position: relative;
	}
	section .boder_title span::after{
		content: "";
		width: 100%;
		height: 6px;
		background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
		background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
		background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
		position: absolute;
		bottom: -15px;
		left: 0;
	}

/* ▼ ボタン
--------------------------------------- */
.btn a{
	display:flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 300px;
	height: 60px;
	border: 1px solid #000;
	color: #333;
	font-size: 20px;
	text-align: center;
	transition: .3s;
}
.btn.white a{
	border: 1px solid #fff;
	color: #fff;
}
.btn a:hover{
	opacity: 1;
	background: #000;
	color: #fff;
}
.btn.white a:hover{
	background: #fff;
	color: #173156;
}

/* ▼ 矢印
--------------------------------------- */
.arrow,.arrow_s{position: relative;}
.arrow::before,
.arrow_s::before{
	content: "";
	width: 8px;
	height: 8px;
	border-top:1px solid #000;
	border-right:1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
}
/* sサイズ */
.arrow_s::before{width: 6px;height: 6px;}


/* ▼▼▼ ヘッダー
====================================================== */
header{
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: visible;
	}
	.header_inner{
		width: 100%;
		height: 100px;
		padding: 25px 4%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
	}
header.header_active{
	background: #fff;
	transition: .3s;
}
/* ▼ lang
--------------------------------------- */
.header_lang{
	display: flex;
	margin: auto;
	color: #fff;
	font-size: 14px;
	position: absolute;
	top: 35px;
	right: 150px;
	z-index: 999;
	}
	.header_lang li:not(:last-child)::after{
		display: inline-block;
		content: "｜";
	}
	header.header_active .header_lang{
		color: #333;
	}
/* ▼ グローバルナビゲーション
--------------------------------------- */
#gnav{
	display: none;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	overflow: auto;
	}
	#gnav.open{
		display: flex!important;
		align-items: center;
		opacity: 1;
		animation: gnavOpen 1s ease;
	}
	@keyframes gnavOpen{
		from{
			opacity: 0;
		}
		to{
			opacity: 1;
		}
	}
	#gnav > ul{
		flex: 1;
	}
	#gnav ul > li{
		margin-bottom: 40px;
	}
	#gnav ul > li:last-child{
		margin-bottom: 0;
	}
	#gnav ul > li > a{
		display: flex;
		align-items: center;
		font-size: 26px;
	}
	#gnav ul > li > a span{
		margin-left: 20px;
		color: #969696!important;
		font-size: 14px;
		font-family: 'Noto Serif JP', serif;
	}

/* ▼メニューボタン
--------------------------------------- */
.menu{
	display: block;
	width: 42px;
	height: 42px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 4%;
	z-index: 2000;
	}
	.menu:hover{
		cursor: pointer;
	}
	.menu .icon{
		width: 42px;
		height: 44px;
		background: url(../img/menu_open_wh.png)no-repeat center center/100% 100%;
	}
	.menu .icon.active{
		background: url(../img/menu_close_bl.png)no-repeat center center/100% 100%;
	}
	header.header_active .menu .icon{
		background: url(../img/menu_open_bl.png)no-repeat center center/100% 100%;
	}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main{
	background-image: linear-gradient(to left,#EAEAEA .1%,#fff 1%);
	background-size: 200px 200px;
	margin: 0 auto;
	clear: both;
	overflow: hidden;
}
.menu_fixed{
	position: fixed;
	width: 100%;
	height: 100%;
}
.read{
	margin: 0 0 30px;
}

/* 2column の場合！！各自修正して使用してください */
.flex_box{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	}
section{
	padding: 100px 0;
}
.bg_blue{
	background: #173156;
}
.bg_blue h2,
.bg_blue p ,
.bg_blue a{
	color: #fff;
}

/* ▼ パンくず
--------------------------------------- */
#path{
	margin: 20px 0 0 4%;
	font-size: 12px;
	font-weight: bold;
	overflow: hidden;
	}
	#path li{
		float: left;
	}
	#path li:not(:last-child):after{
		content: "＞";
		margin: 0 5px;
		color: #333;
	}


/* dl背景あり */
.dl_bg_list dl{
	display: flex;
	background: #E1E7EF;
	padding: 12px 20px;
	margin-bottom: 10px;
	font-size: 14px;
	}
	.dl_bg_list dl dt{
		width: 120px;
	}
	.dl_bg_list dl dd{
		width: calc(100% - 120px);
	}


/* ▼▼▼ フッター
===================================== */
footer{
	width: 100%;
	background: #fff;
	border-top: 1px solid #CCC;
	padding: 45px 0;
	clear: both;
	overflow: hidden;
	}
	.f_nav01{
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		margin-bottom: 35px;
	}
	.f_nav01 li{
		flex: 1;
		text-align: center;
	}
	.f_nav01 li a{
		font-size: 16px;
	}
	.f_nav02{
		display: flex;
		justify-content: center;
	}
	.f_nav02 li{
		font-size: 12px;
	}
	.f_nav02 li::after{
		content: "｜";
		margin: 0 3px;
	}
	.f_nav02 li.copyright::after{
		display: none;
	}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop{
	width: 60px;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 2000;
	cursor: pointer;
}

/* ▼▼▼ 多言語
===================================== */
body:lang(en){
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	letter-spacing: 0.02em;
}
.footer_contact .flex_box > div h2:lang(en){
	font-size: 26px;
	font-weight: 400;
}

/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px){

	body{
		font-size: 14px;
	}
	body.wrap{
		overflow: hidden;
	}
	.container{
		padding: 0 15px;
	}
	.pc{display: none;}
	.sp{display: block;}

	/* ▼タイトル
	--------------------------------------- */
	#site_title{
		max-width: 203px;
	}
	/* 中ページh1 */
	.title_box{
		height: 170px;
		}
		.title_box h1{
			font-size: 50px;
		}
		.title_box span{
			margin-bottom: 10px;
			font-size: 14px;
		}
	/* 背景グラデーション */
	.title_gradation{
		height: auto;
		padding: 15px 10px 12px 20px;
		margin-bottom: 15px;
		font-size: 19px;
	}
	.title_gradation::before{
		width: 7px;
	}
	/* boderグラデーション */
	section .boder_title{
		margin: 0 auto 45px;
		}
		section .boder_title span{
			font-size: 28px;
		}
		section .boder_title span::after{
			height: 4px;
			bottom: -10px;
		}
/* ▼ ボタン
--------------------------------------- */
.btn a{
	width: 100%;
	max-width: 250px;
	height: 50px;
	font-size: 16px;
}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header{
		height: 75px;
		}
		.header_inner{
			height: 75px;
			padding: 16px 4%;
		}
	/* ▼ lang
	--------------------------------------- */
	.header_lang{
		position: absolute;
		top: 25px;
		right: 75px;
		z-index: 999999;
		}
	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav > div{
		align-items: center;
	}
		#gnav.open{
			display: block!important;
			top: 90px;
		}
		#gnav ul > li,
		#gnav ul > li:last-child,
		#gnav ul > li.header_contact{
			margin-bottom: 2.5vh;
		}
		#gnav ul > li.home{
			display: none;
		}
		#gnav ul > li > a{
			justify-content: center;
			font-size: 20px;
		}
		#gnav ul > li > a span{
			margin-left: 20px;
			font-size: 12px;
		}

	/* ▼メニューボタン
	--------------------------------------- */
	.menu{
		width: 36px;
		height: 36px;
		top: 5px;
		right: 15px;
		}
		.menu .icon{
			width: 36px;
			height: 36px;
		}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner{
		float: none;
		width: 100%;
		}
	#main{
		background-image: linear-gradient(to left,#EAEAEA 1.5%,#fff 1%);
		background-size: 54px 54px;
	}

	.read{
		margin: 0 0 15px;
	}

	/* 2column の場合！！各自修正して使用してください */
	.flex_box{
		display: block;
	}
	section{
		padding: 50px 0;
	}

	/* dl背景あり */
	.dl_bg_list dl{
		display: block;
		padding: 15px 18px;
		margin-bottom: 7px;
	}
	.dl_bg_list dl dt{
		width: 100%!important;
		margin-bottom: 3px;
	}
	.dl_bg_list dl dd{
		width: 100%!important;
	}

	/* ▼▼▼ フッター
	====================================================== */
	footer{
		padding: 45px 0;
		clear: both;
		overflow: hidden;
		}
		.f_nav01{
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			margin-bottom: 15px;
		}
		.f_nav01 li{
			flex: unset;
			width: 44%;
			margin-bottom: 25px;
			text-align: left;
		}
		.f_nav01 li a{
			display: block;
			font-size: 16px;
			position: relative;
		}
		.f_nav01 li a::before{
			content: "";
			width: 6px;
			height: 6px;
			border-top:1px solid #000;
			border-right:1px solid #000;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
			position: absolute;
			margin: auto;
			top: 0;
			bottom: 0;
			right: 0;
		}
		.f_nav02{
			flex-wrap: wrap;
		}
		.f_nav02 li{
			margin-bottom: 10px;
			font-size: 14px;
		}
		.f_nav02 li:nth-last-of-type(2)::after{
			display: none;
		}
		.f_nav02 li.copyright{
			width: 100%;
			font-size: 10px;
			text-align: center;
		}


	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop{
		width: 50px;
		bottom: 0;
	}
}

/* ▼▼▼ 320px〜480px
====================================================== */
@media screen and (max-width: 320px){
	#site_title {
	    max-width: 170px;
			padding-top: 10px;
	}
}
