@charset "utf-8";
/* ******************************************************************
 *	File name		: style.css
 *	Summary			: css style
 * ******************************************************************
 */
/*

#574671
rgba(87,70,113,0.7)

*/

/* -----------------------------------
  bg
----------------------------------- */

#wrapper{
	background:url(../../image/base/second_bg.png) repeat 0 590px;/*460+130*/
}
main{
	padding-top:24px;
	background:url(../../image/base/second_img.jpg) no-repeat center 0;
}
#main_contents{
	position:relative;
	width:1000px;
	max-width:100%;
	min-height:460px;
	margin:0 auto 50px;
	padding:30px 40px;
	background:rgba(255,255,255,0.95);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
	z-index:10;
}

/* --- responsive --- */
@media screen and (min-width:1940px){
	main::before,
	main::after{
		content:" ";
		position:absolute;
		top:0px;
		width:150px;
		height:460px;
		z-index:50;
	}
	main::before{
		background:linear-gradient(90deg, rgba(227,240,239,1), rgba(227,240,239,0));
		left:calc(50% - 960px);
	}
	main::after{
		background:linear-gradient(-90deg, rgba(227,240,239,1), rgba(227,240,239,0));
		right:calc(50% - 960px);
	}
}
@media screen and (max-width:767px){
	#wrapper{
		background:none;
	}
	main{
		padding-top:0px;
		background:none;
	}
	#main_contents{
		min-height:0px;
		padding:0px 15px 20px;
		margin:0 auto 30px;
		border-bottom:20px solid rgba(68,154,179,0.3);
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
}

/*-----------------------------------
  h1 h2 h3 h4
-----------------------------------*/

#main_contents h2{
	position:relative;
	width:calc(100% + 80px);
	margin:0 0 20px -40px;
	padding:18px 40px;
	font-weight:bold;
	font-size:1.6rem;
	text-align:left;
	text-shadow:rgba(0,0,0,0.4) 0px 0px 0px;
	background:url(../../image/base/h2_bg.png) no-repeat -15px top;
	color:#FFF;
	}
	#main_contents h2::before{
		content:" ";
		position:absolute;
		top:0px;
		left:0px;
		width:100%;
		height:100%;
		background:linear-gradient(90deg, rgba(30,65,69,1), rgba(68,154,179,0.75), rgba(68,154,179,0.0));
		z-index:-1;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h2{
		width:calc(100% + 30px);
		margin:0 0 20px -15px;
		font-size:1.3rem;
	}
}

/* h3 */
#main_contents h3{
	display:block;
	position:relative;
	width:100%;
	margin:0px 0 20px;
	padding:7px 15px 9px;
	font-weight:bold;
	font-size:1.40rem;
	text-align:center;
	background:#574671;
	line-height:1.45;
	letter-spacing:3px;
	color:#FFF;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h3{
		font-size:1.1rem;
	}
}

/* h4 */
#main_contents h4{
	display:block;
	position:relative;
	margin:0 0 10px 0;
	padding-left:20px;
	font-weight:bold;
	font-size:1.1rem;
	text-align:left;
	line-height:1.45;
	color:#574671;
	}
	#main_contents h4::before{
		content:" ";
		display:block;
		position:absolute;
		top:6px;
		left:0px;
		width:15px;
		height:15px;
		background:#574671;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h4{
		font-size:1.0rem;
	}
}

/* h5 */
#main_contents h5{
	display:block;
	position:relative;
	margin:0 0 7px 0;
	font-weight:bold;
	font-size:0.90rem;
	text-align:left;
	line-height:1.45;
	color:#000;
}
/* --- responsive --- */
@media screen and (max-width:767px){
}

/*-----------------------------------
  img
-----------------------------------*/

img{
	max-width:100%;
	height:auto;
}

/*-----------------------------------
  p
-----------------------------------*/

#main_contents p{
	margin-bottom:10px;
	font-size:0.95rem;
	line-height:1.6;
	}
	#main_contents section.no_bg *{
		color:#FFF;
}

/* --- responsive --- */
@media screen and (max-width:1000px){
	#main_contents p{
		font-size:0.87rem;
	}
}

/*-----------------------------------
  box
-----------------------------------*/
#main_contents .box{
	position:relative;
	width:100%;
	padding:0 15px;
	margin-bottom:20px;
	}
	#main_contents .box:after {
		content:" ";
		display:block;
		clear:both;
}
#main_contents .box p{
	padding:0px;
}

#main_contents .colorbox{
	position:relative;
	margin-bottom:20px;
	padding:20px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	background:rgba(116,183,206,0.1);
}
#main_contents .box p:last-child{
	margin-bottom:0px;
}

#main_contents .colorbox_b{
	display:inline-block;
	position:relative;
	margin-bottom:10px;
	padding:3px 10px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	background:rgba(49,49,64,1);
	color:#FFF;
}

/*-----------------------------------
  lr_contents
-----------------------------------*/

#main_contents .lr_contents{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
}
#main_contents .lr_contents > div{
	width:47%;
	margin:0 0 15px;
	}
	#main_contents .lr_contents > div div{
		width:100%;
		margin:0px;
}

/* --- responsive --- */
@media screen and (max-width:1000px){
	#main_contents .lr_contents > div{
		width:100%;
	}
}

/*-----------------------------------
  line
-----------------------------------*/

#main_contents .line{
	margin-bottom:17px;
	padding-bottom:10px;
	border-bottom:2px dotted rgba(49,49,64,0.5);
}
#main_contents p.line{
	margin-bottom:17px;
	padding-bottom:17px;
	border-bottom:2px dotted rgba(49,49,64,0.5);
}
#main_contents .box.line{
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:2px dotted rgba(49,49,64,0.5);
}
#main_contents .noline{
	margin-bottom:0px;
	padding-bottom:0px;
	border-bottom:0px !important;
}
#main_contents .line_b{
	margin-bottom:17px;
	padding-bottom:10px;
	border-bottom:1px dotted rgba(0,0,0,0.5);
}

/*-----------------------------------
  ul
-----------------------------------*/

#main_contents ul > li{
	margin-bottom:10px;
	font-size:1.00rem;
	margin-left: 20px;
}

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.disc2{
	list-style:none;
	}
	ul.disc2 li{
		position:relative;
		padding-left:15px;
		margin-bottom:7px;
		line-height:1.30;
		}
		ul.disc2 li:before{
			content:" ";
			display:block;
			position:absolute;
			top:3px;
			left:0px;
			width:12px;
			height:12px;
			background:#E2C17E;
			-moz-border-radius:50%;
			-webkit-border-radius:50%;
			border-radius:50%;
}

ol{
	margin-bottom:15px;
	padding-left:20px;
	list-style:decimal;
	}
	ol > li{
		line-height:1.5;
		margin-bottom:7px;
}

/* --- responsive --- */
@media screen and (max-width:1000px){
	#main_contents ul > li{
		font-size:0.77rem;
	}
}

/*-----------------------------------
  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;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	table{
		line-height:1.3;
	}
}

/*-----------------------------------
  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:20px 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(../../img/base/word.png) no-repeat 10px 7px;
	}
	ul.download_list li.excel{
		background:url(../../img/base/excel.png) no-repeat 10px 7px;
	}
	ul.download_list li.pdf{
		background:url(../../img/base/pdf.png) no-repeat 10px 7px;
	}
	ul.download_list li.zip{
		background:url(../../img/base/zip.png) no-repeat 10px 7px;
	}
	ul.download_list li.link{
		background:url(../../img/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);
	}
	/* base_green */
	.base_green ul.download_list{border-top:1px dotted rgba(0,99,47,1.0);}
	.base_green ul.download_list li{border-bottom:1px dotted rgba(0,99,47,1.0);}
	.base_green ul.download_list li:hover{background-color:rgba(0,99,47,0.2);}

ul.download_box{
	margin:10px 2px 20px;
	list-style:none;
	border:none;
	}
	ul.download_box:after{
		content:" ";
		display:block;
		clear:both;
	}
	ul.download_box li{
		display:inline-block;
		float:left;
		margin:0px 10px 10px 0 !important;
		padding:0px !important;
		background-color:rgba(0,97,177,0.1);
		background-repeat:no-repeat;
		background-position:10px 7px;
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
		line-height:2;
	}
	ul.download_box li.word{
		background-image:url(../../img/base/word.png);
	}
	ul.download_box li.excel{
		background-image:url(../../img/base/excel.png);
	}
	ul.download_box li.pdf{
		background-image:url(../../img/base/pdf.png);
	}
	ul.download_box li.zip{
		background-image:url(../../img/base/zip.png);
	}
	ul.download_box li.link{
		background-image:url(../../img/base/link.png);
	}
	ul.download_box li:hover{
		background-color:rgba(0,97,177,0.2);
	}
	ul.download_box li a{
		display:inline-block;
		margin:0px !important;
		padding:10px 20px 7px 55px;
		border:1px solid rgba(0,97,177,0.4);
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
	}
	ul.download_box li a:hover{
		text-decoration:none;
}

/*-----------------------------------
  btn
-----------------------------------*/

.btn{
	text-align:center;
	}
	.btn a{
		display:inline-block;
		padding:7px 20px;
		text-decoration:none;
		border:1px solid rgba(87,70,113,0.7);
		color:rgba(87,70,113,1);
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
		-moz-box-shadow:3px 3px 2px rgba(0,0,0,0.4);
		-webkit-box-shadow:3px 3px 2px rgba(0,0,0,0.4);
		box-shadow:3px 3px 2px rgba(0,0,0,0.4);
		transition-duration:0.5s;
		}
		.btn a:hover{
			text-decoration:none;
			background:rgba(87,70,113,0.7);
			color:#FFF;
			-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
			-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
			box-shadow: 0px 0px 5px rgba(0,0,0,0.7);
}

/*-----------------------------------
  blank
-----------------------------------*/

a.blank{
	position:relative;
}
a.blank::after{
	display:inline-block;
	content:" ";
	width:10px;
	height:9px;
	margin:0 0 -1px 5px;
	background:url(../../image/base/blank.png);
}







