@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.6em;}



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: bold;
}


ul li {
	list-style:none;	
}


/* box-sizing */ 
* {
	box-sizing: border-box;
}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: ""; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}



/* img */ 
img {
	width: 100%;
	height: auto;
}



/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #555555;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 小文字 */
.cap {
	line-height: 1.5;
	font-size: 1.2rem;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #555555;
	background: #F3F4F4;
	padding: 0;
	margin: 0;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: hidden;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
}




/* flex */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	position: fixed;
	top: 30px;
	left: 0;
	z-index: 12;
}
    #header .logo {
		padding-left: 30px;
    }
        #header .logo a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
       		width: 250px;
            height: 50px;
        }


    #header .globalnav {
		display: flex;
		justify-content: end;
		align-items: center;
        width: -webkit-calc(100% - 280px);
        width: calc(100% - 280px);
		padding-right: 10px;
    }
		#header .globalnav li {
			position: relative;
			margin-right: 30px;
		}
			#header .globalnav li a.head {
				display: flex;
				justify-content: flex-start;
				align-items: center;
				font-size: 1.2rem;
				font-weight: 500;
				height: 50px;
				position: relative;
			}
			#header .globalnav li.has-child.active a.achead:before {
				content: "";
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 0 10px 10px 10px;
				border-color: transparent transparent #3379FF transparent;
				position: absolute;
				bottom: -3px;
				left: 50%;
				margin-left: -10px;
			}

			#header .globalnav li.has-child .sub_list {
				width: 220px;
				position: absolute;
				left: 50%;
				top: 50px;
				margin-left: -110px;
				background: #3379FF;
				visibility: hidden;
				opacity: 0;
			}
			#header .globalnav li.has-child:hover > .sub_list {
				visibility: visible;
				opacity: 1;
			}
				#header .globalnav li.has-child .sub_list li {
					width: 100%;
					border-bottom: solid 1px rgba(255,255,255,0.2);
				}
				#header .globalnav li.has-child .sub_list li:nth-last-child(1) {
					border-bottom: none;
				}
					#header .globalnav li.has-child .sub_list li a {
						display: block;
						font-size: 1.2rem;
						font-weight: 500;
						color: #fff;
						padding: 10px;
					}
					#header .globalnav li.has-child .sub_list li a:hover {
						opacity: 0.7;
					}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 101;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		border-radius: 50%;
		background: #fff;
		width: 50px;
		height: 50px;
		transition: all .4s;
	}
	#menubtn .menu.active {
		background: #3379FF;
	}
		#menubtn .menu .openbtn-area {
			transition: all .4s;
		}
			#menubtn .menu span {
				width: 20px !important;
				display: inline-block;
				transition: all .4s;
				position: absolute;
				left: 50%;
				margin-left: -10px;
				height: 1px;
				background: #3379FF;
			}
			#menubtn .menu span:nth-of-type(1) {
				top: 20px;	
			}
			#menubtn .menu span:nth-of-type(2) {
				top: 25px;
			}
			#menubtn .menu span:nth-of-type(3) {
				top: 30px;
			}

		#menubtn .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#menubtn .menu.active span:nth-of-type(1) {
				top: 20px;
				left: 50%;
				transform: translateY(6px) rotate(-135deg);
				background: #fff;
			}
			#menubtn .menu.active span:nth-of-type(2) {
				opacity: 0;
			}
			#menubtn .menu.active span:nth-of-type(3) {
				width: 20px !important;
				top: 32px;
				left: 50%;
				transform: translateY(-6px) rotate(135deg);
				background: #fff;
			}
	
	
/* menubox */
#menubox {
	display: none;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
}
	#menubox .menunav {
		display: block;
		width: 100%;
		height: 100%;
		padding: 100px 10% 80px 10%;
		overflow: hidden;
		overflow-y: scroll;
	}
		#menubox .menunav ul li {
			margin-bottom: 20px;
			padding-bottom: 22px;
			border-bottom: dashed 1px #ddd;
		}
		#menubox .menunav ul li:nth-last-child(1) {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: none;
		}
			#menubox .menunav ul li a.head {
				display: block;
				font-size: 1.7rem;
				font-weight: 500;
				color: #3379FF;
				line-height: 1;
			}
			#menubox .menunav ul li a.achead {
				margin-bottom: 10px;
			}
			#menubox .menunav ul li a.head:hover {
				opacity: 0.5;
			}

			#menubox .menunav ul li .sub_list li {
				margin-top: 0;
				margin-bottom: 0;
				padding-bottom: 0;
				border-bottom: none;
			}
				#menubox .menunav ul li .sub_list li a {
					display: block;
					font-size: 1.4rem;
					font-weight: 500;
				}
				#menubox .menunav ul li .sub_list li a:hover {
					opacity: 0.5;
				}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	display: block;
}

/* inner */
.inner {
	width: 100%;
	max-width: 1600px;
	margin: auto;
	position: relative;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.inner_full {
	width: 100%;
	margin: auto;
	position: relative;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

/* wrap */
.wrap {
	padding-bottom: 130px;
}
.intro {
	padding-top: 110px;
}


/* txt */
.txt {
	font-size: 1.4rem;
	line-height: 1.8em;
}


/* motif */  
.motif {
	position: absolute;
}


/* linkbox */  
a.linkbox {
	position: relative;
}
a.linkbox:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3379FF;
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -5px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover.linkbox:before {
	width: 16px;
	height: 16px;
	right: 27px;
	margin-top: -8px;
}


/* more */  
.more a {
	min-height: 30px;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: right;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 30px;
	padding-right: 40px;
}
.more a:hover {
	color: #3379FF;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 30px;
	padding-right: 36px;
}
.more.white a {
	color: #fff;
	background: url("../img/icon_arrow_white.svg") no-repeat right center / 30px;
}
.more.white a:hover {
	color: #fff;
	background: url("../img/icon_arrow_white.svg") no-repeat right center / 30px;
	opacity: 0.7;
}



/* contents */
.contents {
	width: -webkit-calc(100% - 300px);
	width: calc(100% - 300px);
	padding-right: 5%;
}
	.contents .set {
		margin-bottom: 80px;
	}
		.contents .set .h2_ttl {
			font-size: 3.0rem;
			font-weight: 500;
			line-height: 1.3em;
			color: #3379FF;
			margin-bottom: 15px;
		}

		.contents .set .h3_ttl {
			font-size: 2.4rem;
			font-weight: 500;
			margin-bottom: 10px;
			line-height: 1.3em;
			padding-left: 14px;
			position: relative;
		}
		.contents .set .h3_ttl:before {
			content: "";
			width: 8px;
			height: 8px;
			background: #3379FF;
			position: absolute;
			top: 10px;
			left: 0;
		}
		.contents .set .h3_ttl:after {
			content: "";
			width: 8px;
			height: 8px;
			background: #3379FF;
			position: absolute;
			top: 18px;
			left: 0;
			opacity: 0.7;
		}
		.contents .set .h4_ttl {
			font-size: 1.8rem;
			font-weight: 500;
			color: #3379FF;
			line-height: 1.3em;
			margin-top: 12px;
			margin-bottom: 8px;
		}

		.contents .set .txt {
			margin-bottom: 20px;
		}
		.contents .set .txt:nth-last-child(1) {
			margin-bottom: 0;
		}


		.contents .set .cell {
			padding-bottom: 40px;
			margin-bottom: 40px;
			border-bottom: dashed 1px #ddd;
		}
		.contents .set .cell:nth-last-child(1) {
			padding-bottom: 0;
			margin-bottom: 0;
			border-bottom: none;
		}


		.contents .set .column02 {
			margin-top: 20px;
		}
			.contents .set .column02 .box {
				width: 48%;
			}


		.contents .set .column03 {
			margin-top: 20px;
		}
			.contents .set .column03 .box {
				width: 32%;
			}


		.contents .set .pht {
			margin-bottom: 12px;
		}


	.contents .backbtn {
		width: 300px;
		margin: auto;
	}
		.contents .backbtn a {
			display: flex;
			justify-content: center;
			align-items: center;
			height: 66px;
			border-radius: 33px;
			background: #3379FF;
			font-size: 1.8rem;
			font-weight: 700;
			color: #fff;
			text-align: center;
		}
		.contents .backbtn a:hover {
			opacity: 0.7;
		}



/* side-nav */
.side-nav {
	width: 300px;
}
	.side-nav .sec {
		margin-bottom: 50px;
	}
		.side-nav .sec .head {
			font-size: 2.0rem;
			font-weight: 500;
			line-height: 1.3em;
			border-bottom: solid 1px #ddd;
			padding-bottom: 10px;
			text-align: left;
		}
			.side-nav .sec .head .en {
				font-size: 1.2rem;
				font-weight: 500;
				color: #3379FF;
				padding-left: 10px;
			}

		.side-nav .sec ul li {
			border-bottom: dashed 1px #ddd;
		}
		.side-nav .sec ul li:nth-last-child(1) {
			border-bottom: solid 1px #ddd;
		}
			.side-nav .sec ul li a {
				display: block;
				padding: 15px 20px 15px 0;
				position: relative;
				font-size: 1.4rem;
			}
			.side-nav .sec ul li a:hover {
				color: #3379FF;
			}
			.side-nav .sec ul li a:before {
				content: "";
				width: 8px;
				height: 8px;
				border-radius: 50%;
				background: #3379FF;
				position: absolute;
				top: 50%;
				right: 4px;
				margin-top: -4px;
			}
			.side-nav .sec ul li a:hover:before {
				width: 12px;
				height: 12px;
				right: 2px;
				margin-top: -6px;
			}

			.side-nav .sec ul li a .en {
				display: block;
				font-size: 1.2rem;
			}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 300px;
	padding-top: 35px;
}
	#pagetitle h1 {
		font-size: 4.0rem;
		font-weight: 500;
		color: #3379FF;
		line-height: 1.3em;
	}

	#pagetitle .en {
		font-size: 1.8rem;
		font-weight: 600;
		color: #3379FF;
		line-height: 1;
		text-align: right;
	}


/* ttl */
.ttl {
	margin-bottom: 45px;
}
	.ttl .en {
		font-size: 4.0rem;
		font-weight: 600;
		line-height: 1;
		margin-bottom: 6px;
	}
	.ttl.white .en {
		color: #fff;
	}

	.ttl h2 {
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
		padding-left: 12px;
		color: #3379FF;
		position: relative;
	}
	.ttl h2:before {
		content: "";
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #3379FF;
		position: absolute;
		top: 4px;
		left: 0;
	}
	.ttl.white h2 {
		color: #fff;
	}
	.ttl.white h2:before {
		background: #fff;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	padding-top: 130px;
}
	#footer ul.sponsor {
		margin-bottom: 70px;
/* 		display: none; */
	}
		#footer ul.sponsor li {
			width: 23.5%;
		}
			#footer ul.sponsor li a {
				display: block;
				overflow: hidden;
				border-radius: 10px;
			}
			#footer ul.sponsor li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor1 {
/*		margin-bottom: 30px; */
/* 		display: none; */
	}
		#footer ul.sponsor1 li {
			width: 30%;
/* 			margin-bottom: 30px; */
			margin: 0 auto 30px auto;
		}
			#footer ul.sponsor1 li a {
				display: block;
				overflow: hidden;
				border-radius: 10px;
			}
			#footer ul.sponsor1 li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor2 {
		margin-bottom: 70px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
/* 		display: none; */
	}
		#footer ul.sponsor2 li {
			width: 18%;
			margin-bottom: 30px;
		}
		#footer ul.sponsor2 li:nth-child(3n+1) {
			clear: none;
		}
		#footer ul.sponsor2 li:nth-child(5n+1) {
			clear: both;
		}
			#footer ul.sponsor2 li a {
				display: block;
				overflow: hidden;
				border-radius: 10px;
			}
			#footer ul.sponsor2 li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor3 {
		margin-bottom: 70px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
/* 		display: none; */
	}
		#footer ul.sponsor3 li {
			width: 15%;
			margin-bottom: 30px;
		}
		#footer ul.sponsor2 li:nth-child(4n+1) {
			clear: none;
		}
		#footer ul.sponsor2 li:nth-child(6n+1) {
			clear: both;
		}
			#footer ul.sponsor3 li a {
				display: block;
				overflow: hidden;
				border-radius: 10px;
			}
			#footer ul.sponsor3 li a:hover {
				opacity: 0.7;
			}


	#footer .info {
		margin-bottom: 60px;
	}
		#footer .info .text-area {
			width: 224px;
		}
			#footer .info .text-area .logo {
				margin-bottom: 10px;
			}

			#footer .info .text-area .sitename {
				font-size: 2.2rem;
				line-height: 1.3em;
				color: #3379FF;
				margin-bottom: 10px;
			}

			#footer .info .text-area .mail {
				font-size: 1.2rem;
				line-height: 1;
			}


		#footer .info .link-area {
			display: flex;
			justify-content: end;
			align-items: flex-start;
			width: -webkit-calc(100% - 224px);
			width: calc(100% - 224px);
			padding-left: 5%;
		}
			#footer .info .link-area .label {
				font-size: 1.2rem;
				line-height: 1;
				color: #B7B7B7;
			}


			#footer .info .link-area .site-map ul {
				margin-left: 30px;
			}
				#footer .info .link-area .site-map ul li {
					margin-bottom: 15px;
				}
				#footer .info .link-area .site-map ul li:nth-last-child(1) {
					margin-bottom: 0;
				}
					#footer .info .link-area .site-map ul li a.head {
						display: block;
						font-size: 1.2rem;
						font-weight: 500;
						line-height: 1;
						padding-left: 8px;
						position: relative;
					}
					#footer .info .link-area .site-map ul li a.head:before {
						content: "";
						width: 4px;
						height: 4px;
						background: #3379FF;
						border-radius: 50%;
						position: absolute;
						top: 5px;
						left: 0;
					}

					#footer .info .link-area .site-map ul li ul.sub_list {
						margin-top: 10px;
						margin-left: 8px;
					}
						#footer .info .link-area .site-map ul li ul.sub_list li {
							margin-top: 5px;
							margin-bottom: 0;
						}
							#footer .info .link-area .site-map ul li ul.sub_list li a {
								display: block;
								font-size: 1.0rem;
								line-height: 1.2em;
							}
							#footer .info .link-area .site-map a:hover {
								opacity: 0.7;
							}


	#footer .f-content {
		border-top: solid 1px #ddd;
		padding: 40px 0;
	}
		#footer .f-content .link {
			font-size: 1.0rem;
			line-height: 1;
		}
			#footer .f-content .link a:hover {
				opacity: 0.7;
			}

		#footer .f-content .copyright {
			font-size: 1.0rem;
			text-align: right;
			line-height: 1;
		}
      



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* テーブル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

table.BasicTable {
	line-height: 1.4;
	border-top: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
}
	table.BasicTable {
		width: 100%;
	}
		table.BasicTable th {
			background: #000000;
			padding: 8px 15px;
			text-align: left;
			vertical-align: middle;
			color: #FFFFFF;
			font-weight: bold;
			border-bottom: 1px solid #333333;
			border-right: 1px solid #333333;
		}
			table.BasicTable th.color {
				background: #eef1ff;
				color: #142888;
				font-weight: normal;
				border-bottom: 1px solid #DDDDDD;
				border-right: 1px solid #DDDDDD;
			}
		table.BasicTable.Center table th {	text-align: center; vertical-align: middle;	}
		
		
		table.BasicTable td {
			padding: 8px 15px;
			text-align: left;
			vertical-align: middle;
			border-bottom: 1px solid #d2d2d2;
			border-right: 1px solid #d2d2d2;
		}
			table.BasicTable td.color {
				background: #eef1ff;
			}
		table.BasicTable .RightBorder {
			border-right: solid 1px #d2d2d2; 
		}
		table.BasicTable.Center table td {	text-align: center; vertical-align: middle;	}
		
		table.BasicTable tr.TC th,
		table.BasicTable tr.TC td,
		table.BasicTable th.TC,
		table.BasicTable td.TC {
			text-align: center;
		}
		table.BasicTable th.TL,
		table.BasicTable td.TL {
			text-align: left;
		}
		table.BasicTable th.TR,
		table.BasicTable td.TR {
			text-align: right;
		}
		table.BasicTable p {
			margin-bottom: 8px;
		}
		
		table.BasicTable span.red{
			color:#c80000;
		}

		table.BasicTable td.gray{
			background:#ececec;
		}



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* リスト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* link */
ul li.link {
	line-height: 1.4;
	padding-bottom: 6px;
	padding-left: 3px !important;
	margin-bottom: 6px;
}
	ul li.link a {
		background: url(/common/img/arrow.gif) no-repeat left center !important;
		padding-left: 20px !important;
		color: #555555;
	}
	ul li.link a:hover {
		color: #3379FF;
	}



/* PDF */
ul li.pdf {
	line-height: 1.4;
	padding-bottom: 6px;
	padding-left: 3px !important;
	margin-bottom: 6px;
}
	ul li.pdf a {
		background: url(/common/img/icon_pdf.gif) no-repeat left center !important;
		padding-left: 20px !important;
		color: #555555;
	}
	ul li.pdf a:hover {
		color: #3379FF;
	}



/* WORD */
ul li.word {
	line-height: 1.4;
	padding-bottom: 6px;
	padding-left: 3px !important;
	margin-bottom: 6px;
}
	ul li.word a {
		background: url(/common/img/icon_word.gif) no-repeat left center !important;
		padding-left: 20px !important;
		color: #555555;
	}
	ul li.word a:hover {
		color: #3379FF;
	}



/* EXCEL */
ul li.excel {
	line-height: 1.4;
	padding-bottom: 6px;
	padding-left: 3px !important;
	margin-bottom: 6px;
}
	ul li.excel a {
		background: url(/common/img/icon_excel.gif) no-repeat left center !important;
		padding-left: 20px !important;
		color: #555555;
	}
	ul li.excel a:hover {
		color: #3379FF;
	}




/* 外部 */
ul li.blank {
	line-height: 1.4;
	padding-bottom: 6px;
	padding-left: 3px !important;
	margin-bottom: 6px;
}
	ul li.blank a {
		background: url(/common/img/icon_blank.gif) no-repeat left center !important;
		padding-left: 20px !important;
		color: #555555;
	}
	ul li.blank a:hover {
		color: #3379FF;
	}





/* 1700px */
@media screen and (max-width: 1700px) {
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* inner */
.inner {
	width: 100%;
	max-width: 100%;
	padding: 0 6%;
}


}
      






/* 1300px */
@media screen and (max-width: 1300px) {



/* contents */
.contents {
	width: -webkit-calc(100% - 250px);
	width: calc(100% - 250px);
}



/* side-nav */
.side-nav {
	width: 250px;
}


}





/* 1024px */
@media screen and (max-width: 1024px) {



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .globalnav li {
	display: none;
}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* wrap */
.wrap {
	padding-bottom: 100px;
}
.intro {
	padding-top: 70px;
}
	

/* txt */
.txt {
	font-size: 1.3rem;
}

	
/* linkbox */  
a.linkbox:before {
	right: 20px;
}
a:hover.linkbox:before {
	right: 17px;
}


/* more */  
.more a {
	font-size: 1.5rem;
}
	


/* contents */  	
.contents .set {
	margin-bottom: 60px;
}
	.contents .set .h2_ttl {
		font-size: 2.6rem;
	}

	.contents .set .h3_ttl {
		font-size: 2.1rem;
	}
	.contents .set .h3_ttl:before {
		top: 7px;
	}
	.contents .set .h3_ttl:after {
		top: 15px;
	}
	.contents .set .h4_ttl {
		font-size: 1.6rem;
	}


.contents .backbtn {
	width: 240px;
	margin: auto;
}
	.contents .backbtn a {
		height: 56px;
		border-radius: 28px;
	}


/* side-nav */
.side-nav .sec {
	margin-bottom: 40px;
}
	.side-nav .sec .head {
		font-size: 1.8rem;
	}
		.side-nav .sec .head .en {
			font-size: 1.0rem;
		}

		.side-nav .sec ul li a {
			font-size: 1.3rem;
		}

		.side-nav .sec ul li a .en {
			font-size: 1.1rem;
		}


	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle .inner {
	height: 250px;
	padding-top: 45px;
}
	#pagetitle h1 {
		font-size: 3.2rem;
	}

	#pagetitle .en {
		font-size: 1.6rem;
	}
	

/* ttl */
.ttl {
	margin-bottom: 30px;
}
	.ttl .en {
		font-size: 3.4rem;
	}

	.ttl h2 {
		font-size: 1.3rem;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding-top: 100px;
}
	#footer ul.sponsor {
		margin-bottom: 50px;
	}
		#footer ul.sponsor li {
			width: 23.5%;
		}
			#footer ul.sponsor li a {
				display: block;
				overflow: hidden;
				border-radius: 10px;
			}
			#footer ul.sponsor li a:hover {
				opacity: 0.7;
			}


	#footer .info {
		margin-bottom: 40px;
	}
		#footer .info .text-area {
			width: 170px;
		}
			#footer .info .text-area .sitename {
				font-size: 1.8rem;
			}

			#footer .info .text-area .mail {
				font-size: 1.0rem;
			}


		#footer .info .link-area {
			width: -webkit-calc(100% - 170px);
			width: calc(100% - 170px);
		}
			#footer .info .link-area .label {
				display: none;
			}


	#footer .f-content {
		padding: 30px 0;
	}


}

	







/* max 767px */
@media screen and (max-width: 767px) {


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




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	top: 15px;
}
	#header .logo {
		padding-left: 15px;
	}
		#header .logo a {
			width: 220px;
			padding-top: 3px;
		}


	#header .globalnav {
		width: 0;
		display: none;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	top: 15px;
	right: 15px;
}
	
	
/* menubox */
#menubox {
	max-width: 100%;
	height: 100vh;
	height: 100dvh;
}
	#menubox .menunav {
		padding: 60px 12% 110px 12%;
	}
		#menubox .menunav ul li {
			margin-bottom: 25px;
			padding-bottom: 25px;
		}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	padding: 0;
}

/* wrap */
.wrap {
	padding-bottom: 70px;
}
.intro {
	padding-top: 60px;
}
	
.detail .inner {
	display: block;
}



/* contents */
.contents {
	width: 100%;
	padding: 0 0 50px 0;
}



/* side-nav */
.side-nav {
	width: 100%;
}


	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle .inner {
	display: block;
	height: 200px;
	padding-top: 95px;
}
	#pagetitle h1 {
		font-size: 2.8rem;
		text-align: center;
		margin-bottom: 5px;
	}

	#pagetitle .en {
		font-size: 1.6rem;
		text-align: center;
	}

	

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding-top: 70px;
}
	#footer ul.sponsor {
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 30px;
/* 		display: none; */
	}
		#footer ul.sponsor li {
			width: 48%;
			margin-right: 4%;
			margin-bottom: 4%;
		}
		#footer ul.sponsor li:nth-child(2n) {
			margin-right: 0;
		}
			#footer ul.sponsor li a {
				display: block;
				overflow: hidden;
				border-radius: 5px;
			}
			#footer ul.sponsor li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor1 {
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
/*		margin-bottom: 30px; */
/* 		display: none; */
	}
		#footer ul.sponsor1 li {
			width: 48%;
			margin-bottom: 4%;
		}
		#footer ul.sponsor2 li:nth-child(2n+1) {
			clear: both;
		}
			#footer ul.sponsor1 li a {
				display: block;
				overflow: hidden;
				border-radius: 5px;
			}
			#footer ul.sponsor1 li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor2 {
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
/*		margin-bottom: 30px; */
/* 		display: none; */
	}
		#footer ul.sponsor2 li {
			width: 31.4%;
			margin-bottom: 4%;
		}
		#footer ul.sponsor2 li:nth-child(3n+1) {
			clear: both;
		}
			#footer ul.sponsor2 li a {
				display: block;
				overflow: hidden;
				border-radius: 5px;
			}
			#footer ul.sponsor2 li a:hover {
				opacity: 0.7;
			}


	#footer ul.sponsor3 {
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 30px;
/* 		display: none; */
	}
		#footer ul.sponsor3 li {
			width: 22.9%;
			margin-bottom: 4%;
		}
		#footer ul.sponsor2 li:nth-child(4n+1) {
			clear: both;
		}
			#footer ul.sponsor3 li a {
				display: block;
				overflow: hidden;
				border-radius: 5px;
			}
			#footer ul.sponsor3 li a:hover {
				opacity: 0.7;
			}



	#footer .info {
		margin-bottom: 30px;
	}
		#footer .info .text-area {
			width: 100%;
		}
			#footer .info .text-area .logo {
				width: 220px;
				margin: auto;
			}
			#footer .info .text-area .sitename {
				margin-top: 8px;
				font-size: 1.8rem;
				text-align: center;
			}

			#footer .info .text-area .mail {
				font-size: 1.0rem;
				text-align: center;
			}


		#footer .info .link-area {
			display: none;
		}


	#footer .f-content {
		display: block;
		padding: 30px 0;
	}
		#footer .f-content .link {
			text-align: center;
		}
		#footer .f-content .copyright {
			text-align: center;
			letter-spacing: 0;
			margin-top: 25px;
		}
	


}