@charset "utf-8";
/* ******************************************************************
 *	File name		: style.css
 *	Summary			: css style
 * ******************************************************************
 */

/* -----------------------------------------------------------------
   base
----------------------------------------------------------------- */

body::after{
	content:" ";
	position:absolute;
	top:370px;
	left:0px;
	width:100%;
	height:100px;
	background:linear-gradient(-180deg, rgba(255,255,255,0), rgba(255,255,255,1));
	z-index:-2;
}
#wrapper{
	padding-top:140px;
}
/* --- responsive --- */
@media(max-width:767px){
	body::after{
		display:none;
	}
	#wrapper{
		padding-top:15%;
	}
}

/* -----------------------------------
  base
----------------------------------- */

#main_contents{
	background:rgba(255,255,255,0.9);
	width:1000px;
	max-width:100%;
	margin:0 auto 20px;
	padding:20px;
	text-align:left;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}
#main_contents p{
	margin:0 0 7px;
	font-size:0.87rem;
}

/*-----------------------------------
  h1 h2 h3 h4
-----------------------------------*/

#main_contents h2{
	position:relative;
	left:-20px;
	width:calc(100% + 40px);
	margin:0 0 20px;
	padding:10px 20px 12px;
	font-family: 'Noto Serif JP', serif;
	font-weight:normal;
	font-size:1.40rem;
	background:linear-gradient(90deg, rgba(47,43,92,1), rgba(47,43,92,0.8), rgba(47,43,92,0));
	color:#FFF;
	}
	#main_contents h2::before,
	#main_contents h2::after{
		content:" ";
		position:absolute;
		left:0px;
		width:100%;
		height:0px;
		border-bottom:1px solid rgba(47,43,92,0.5);
	}
	#main_contents h2::before{
		top:-3px;
	}
	#main_contents h2::after{
		bottom:-3px;
}

#main_contents h3{
	position:relative;
	width:100%;
	margin:0 0 10px;
	padding:0 0 0 20px;
	font-weight:bold;
	font-size:1.10rem;
	color:rgba(47,43,92,1);
	}
	#main_contents h3::after{
		content:" ";
		position:absolute;
		top:7px;
		left:0px;
		width:10px;
		height:10px;
		background:rgba(47,43,92,1);
		transform:rotate(45deg);
	}

/*-----------------------------------
  ul
-----------------------------------*/

#main_contents ul > li{
	margin-bottom:10px;
	font-size:0.95rem;
}

ul.disc{
	margin-bottom:15px;
	padding-left:20px;
	list-style:disc !important;
	}
	ul.disc > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.normal,
ol.normal{
	margin-bottom:15px;
	padding-left:0px !important;
	list-style:none !important;
	}
	ul.normal > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.num,
ol.num{
	margin-bottom:15px;
	padding-left:20px;
	list-style:decimal !important;
	}
	ul.num > li,
	ol.num > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.abc{
	margin-bottom:15px;
	padding-left:20px;
	list-style:lower-latin !important;
	}
	ul.abc > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.roma{
	margin-bottom:15px;
	padding-left:20px;
	list-style:lower-roman !important;
	}
	ul.roma > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.roma2{
	margin-bottom:15px;
	padding-left:20px;
	list-style:upper-roman !important;
	}
	ul.roma2 > li{
		line-height:1.5;
		margin-bottom:4px;
}
ul.try{
	}
	ul.try li{
		position:relative;
		line-height:1.5;
		margin-bottom:6px;
		padding-left:15px;
	}
	ul.try li:after{
		display:block;
		content:" ";
		position:absolute;
		top:2px;
		left:2px;
		border: 6px solid transparent;
		border-left: 6px solid #619DE5;
	}
	.base_green ul.try li:after{
		border-left: 6px solid rgba(111,185,44,1);
}
ul.check{
	padding-left:20px;
	}
	ul.check li{
		position:relative;
		line-height:1.5;
		list-style-image:url(../../img/base/check.png);
}
ul.disc_b,
ul.disc_g{
	padding-left:1em;
	list-style:none;
	}
	ul.disc_b li,
	ul.disc_g li{
		position:relative;
		margin-bottom:7px;
		text-indent:-1em;
		line-height:1.5;
	}
	ul.disc_b li:before,
	ul.disc_g li:before{
		content:" ";
		display:inline-block;
		position:relative;
		width:9px;
		height:9px;
		margin:0 4px 0 0;
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
	}
	ul.disc_b li:before{
		background:#0061B1;
	}
	ul.disc_g li:before{
		background:#6EB92C;
}

ol{
	margin-bottom:15px;
	padding-left:20px;
	list-style:decimal;
	}
	ol > li{
		line-height:1.5;
		margin-bottom:7px;
}

/* --- responsive --- */
@media(max-width:1000px){
	#main_contents ul > li{
		font-size:0.84rem;
	}
}

/*-----------------------------------
  design dl
-----------------------------------*/
dl.bgfliplr{
	margin:0 0 0 25px;
	}
	dl.bgfliplr:after {
		content:" ";
		display:block;
		clear:both;
	}
	dl.bgfliplr dt{
		clear:both;
		float: left;
		display:block;
		width:130px;
		margin-bottom:10px;
		padding:5px 10px;
		background:#4CA6DB;
		border-radius:6px;
		-webkit-border-radius:6px;
		-moz-border-radius:6px;
		text-align:center;
		color:#FFFFFF;
		}
		.base_green dl.bgfliplr dt{
			background:rgba(111,185,44,1.0);
	}
	dl.bgfliplr dd{
		float:right;
		width:575px;
		margin-bottom:10px;
		padding:6px 0px 0px;
}
dl.bgfliplr2{
	margin:0 0 0 0px;
	}
	dl.bgfliplr2:after {
		content:" ";
		display:block;
		clear:both;
	}
	dl.bgfliplr2 dt{
		clear:both;
		float: left;
		display:block;
		width:150px;
		margin-bottom:10px;
		padding:5px 10px;
		background:#4CA6DB;
		border-radius:6px;
		-webkit-border-radius:6px;
		-moz-border-radius:6px;
		text-align:center;
		color:#FFFFFF;
		}
		.base_green dl.bgfliplr2 dt{
			background:rgba(111,185,44,1.0);
	}
	dl.bgfliplr2 dd{
		float:right;
		width:580px;
		margin-bottom:10px;
		padding:6px 0px 0px;
}

/*-----------------------------------
  table
-----------------------------------*/
table{
	width:100%;
	margin-bottom:20px;
	border-collapse:collapse;
	border-spacing:0px;
	border-top:1px solid #BBBBBB;
	border-left:1px solid #BBBBBB;
	line-height:2;
	}
	table th,
	table td{
		text-align:left;
		border-right:1px solid #BBBBBB;
		border-bottom:1px solid #BBBBBB;
	}
	table th{
		padding:5px 10px 3px 10px;
		font-weight:bold;
		text-align:center;
		color:#000;
		background:rgba(49,49,64,0.1);
		vertical-align:middle;
		}
		.base_green table th{
			color:rgba(68,159,6,1);
			background:rgba(111,185,44,0.1);
	}
	table td{
		padding:7px 10px 5px 10px;
		text-align:left;
}
/* th */
table.th_fwn th{font-weight:normal;}
table.th_center th{text-align:center;}
table.th_left th{text-align:left;}
table.th_right th{text-align:right;}
table.th_middle th{vertical-align:middle;}

/* td */
table.td_fwb th{font-weight:bold;}
table.td_center td{text-align:center;}
table.td_left td{text-align:left;}
table.td_right td{text-align:right;}
table.td_middle td{vertical-align:middle;}

/* ex */
table.border_none,
table.border_none tr th,
table.border_none tr td{
	border:none !important;
}
/* ex */
table.all_none,
table.all_none tr th,
table.all_none tr td{
	position:relative;
	padding:0px;
	text-align:left;
	background:none;
	font-weight:inherit;
	border:none !important;
	line-height:1.75;
	vertical-align:text-top;
}
/* --- responsive --- */
@media(max-width:960px){
	table.all_none th,
	table.all_none td{
		display:block;
	}
	table.all_none td{
		margin-bottom:7px;
	}
}
/* --- responsive --- */
@media(max-width:767px){
	table th,
	table td{
		font-size:0.77rem;
	}
}

/*-----------------------------------
  at
-----------------------------------*/

img.at{
	position:relative !important;
	top:-7px !important;
	margin:0 1px 0;
}
strong img.at,
b img.at{
	margin:0 1px 0 2px;
	padding-left:1px;
	background:url(../../img/base/at.png) no-repeat 0 0;
}

/*-----------------------------------
  download
-----------------------------------*/

ul.download_list{
	margin:10px 0 30px;
	list-style:none;
	border-top:1px dotted #0061B1;
	}
	ul.download_list li{
		min-height:47px;
		margin:0px;
		padding:0px;
		border-bottom:1px dotted #0061B1;
		line-height:1.5;
	}
	ul.download_list li.word{
		background:url(../../image/base/word.png) no-repeat 10px 7px;
	}
	ul.download_list li.excel{
		background:url(../../image/base/excel.png) no-repeat 10px 7px;
	}
	ul.download_list li.pdf{
		background:url(../../image/base/pdf.png) no-repeat 10px 7px;
	}
	ul.download_list li.zip{
		background:url(../../image/base/zip.png) no-repeat 10px 7px;
	}
	ul.download_list li.link{
		background:url(../../image/base/link.png) no-repeat 10px 7px;
	}
	ul.download_list li a{
		display:block;
		min-height:47px;
		width:100%;
		height:100%;
		padding:15px 0 10px 55px;
		color:#222;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	ul.download_list li a:hover{
		text-decoration:none;
	}
	ul.download_list li:hover{
		background-color:rgba(0,97,177,0.2);
}


/*-----------------------------------
  btn
-----------------------------------*/

.btn a{
	display:inline-block;
	position:relative;
	padding:5px 25px 6px 35px;
	text-decoration:none;
	background:rgba(0,55,146,0.8);
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	color:#FFF;
	}
	.btn a:after{
		content:" ";
		position:absolute;
		top:50%;
		left:25px;
		margin-top:-6px;
		border: 6px solid transparent;
		border-left: 6px solid #FFF;
	}
	.btn a:hover{
		opacity:0.85;
}


/*-----------------------------------
  line
-----------------------------------*/

.line{
	display:block;
	margin:0 0 15px;
	padding-bottom:10px;
	background:url(../../image/base/arrow_border.png) repeat-x 0 bottom;
}









