@charset "utf-8";
/* ******************************************************************
 *	File name		: style.css
 *	Summary			: css style
 * ******************************************************************
 */

/* -----------------------------------
  bg
----------------------------------- */

main{
	padding-top:20px;
}

#main_contents{
	position:relative;
	width:1000px;
	max-width:100%;
	min-height:460px;
	margin:0 auto 20px;
	padding:30px 40px;
	background:rgba(255,255,255,0.95);
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	-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 (max-width:767px){
	#wrapper{
		padding-top:60px;
	}
	main{
		background:none;
	}
	#main_contents{
		margin:0 auto 0px;
		padding:20px 20px;
	}	
}

/*-----------------------------------
  h1 h2 h3 h4
-----------------------------------*/

#main_contents h2{
	display:-webkit-flex;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	position:relative;
	left:-40px;
	width:calc(100% + 20px);
	height:40px;
	margin:0 0 20px;
	padding:0px 10px 0px 40px;
	font-weight:bold;
	font-size:1.4rem;
	background:#006CD8;
	color:#FFF;
	}
	#main_contents h2::after{
		content:" ";
		position:absolute;
		top:0px;
		right:-20px;
		border-top:20px solid #006CD8;
		border-bottom:20px solid transparent;
		border-right:10px solid transparent;
		border-left:10px solid #006CD8;
	}
	#main_contents h2 *{
		font-family:inherit;
		font-weight:inherit;
		font-size:inherit;
	}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h2{
		font-size:1.0rem;
	}
}

/* h3 */
#main_contents h3{
	display:block;
	position:relative;
	min-height:28px;
	margin:0 0 15px;
	padding:0 0 0 35px;
	font-weight:bold;
	font-size:1.2rem;
	background:url(../../image/base/h2_bg.png) no-repeat 0 0;
	color:#006CD8;
	}
	#main_contents h3::after{
		content:" ";
		position:absolute;
		left:15px;
		bottom:2px;
		width:calc(100% - 15px);
		height:1px;
		background:#006CD8;
	}
	#main_contents h3 *{
		font-family:inherit;
		font-weight:inherit;
		font-size:inherit;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h3{
		padding:0 0 5px 30px;
		font-size:0.95rem;
		}
		#main_contents h3::after{
	}
}

/* h4 */
#main_contents h4{
	display:block;
	position:relative;
	margin:0px 0 7px 0;
	padding:0px;
	font-weight:bold;
	font-size:1.0rem;
	text-align:left;
	line-height:1.45;
	border-bottom:3px solid #C6C6C6;
	color:#000;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#main_contents h4{
		font-size:0.87rem;
	}
}

/* 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){
}

/*-----------------------------------
  a
-----------------------------------*/

#main_contents a{
	text-decoration:none;
}

/*-----------------------------------
  img
-----------------------------------*/

img{
	max-width:100%;
	height:auto;
}

/*-----------------------------------
  p
-----------------------------------*/

#main_contents p{
	margin-bottom:7px;
	font-size:0.87rem;
	line-height:1.75;
}

/* --- responsive --- */
@media screen and (max-width:1000px){
	#main_contents p{
		font-size:0.77rem;
		line-height:1.5;
	}
}

/*-----------------------------------
  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
-----------------------------------*/

ul.disc{
	margin-bottom:15px;
	padding-left:20px;
	list-style:disc !important;
	}
	ul.disc > li{
		line-height:1.5;
		margin-bottom:4px;
	}
	ul.disc > li::before{
		display:none !important;
}
ul.normal{
	margin-bottom:15px;
	padding-left:0px !important;
	list-style:none !important;
	}
	ul.normal > li{
		line-height:1.5;
		margin-bottom:4px;
	}
	ul.normal > li::before{
		display:none !important;
}
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.num > li::before,
	ol.num > li::before{
		display:none !important;
}
ul.abc{
	margin-bottom:15px;
	padding-left:20px;
	list-style:lower-latin !important;
	}
	ul.abc > li{
		line-height:1.5;
		margin-bottom:4px;
	}
	ul.abc > li::before{
		display:none !important;
}
ul.roma{
	margin-bottom:15px;
	padding-left:20px;
	list-style:lower-roman !important;
	}
	ul.roma > li{
		line-height:1.5;
		margin-bottom:4px;
	}
	ul.roma > li::before{
		display:none !important;
}
ul.roma2{
	margin-bottom:15px;
	padding-left:20px;
	list-style:upper-roman !important;
	}
	ul.roma2 > li{
		line-height:1.5;
		margin-bottom:4px;
	}
	ul.roma2 > li::before{
		display:none !important;
}
ul.try{
	}
	ul.try li{
		position:relative;
		line-height:1.5;
		margin-bottom:6px;
		padding-left:15px;
	}
	ul.try > li::before{
		display:none !important;
	}
	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.check li::before{
		display:none !important;
}

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){
}

/*-----------------------------------
  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;
}

/*-----------------------------------
  btn
-----------------------------------*/

.btn{
	text-align:center;
	}
	.btn a{
		display:inline-block;
		padding:7px 20px;
		text-decoration:none;
		border:1px solid rgba(0,108,216,0.7);
		background:rgba(0,108,216,1);
		color:rgba(0,108,216,1);
		color:#FFF;
		-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(0,108,216,0.6);
			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 -5px -1px 10px;
	background:url(../../image/base/blank.png);
}
.btn a.blank::after{
	background:url(../../image/base/blank_w.png);
}




