@charset "utf-8";

/*=========================================================== */
/* section setting
============================================================= */
/* section */
.sec { margin-top: 20px;}

/* block */
.blk { margin-top: 20px;}

/* box */
.box { margin-top: 15px;}

/* part */
.prt { margin-top: 15px;}

@media only screen and (min-width: 0px) and (max-width:480px) {
	.sec { margin-top: 10px;}
	.blk { margin-top: 10px;}
	.box { margin-top: 10px;}
	.prt { margin-top: 5px;}
}


/*=========================================================== */
/* heading
============================================================= */
/* heading */
.hlv02 {}

.hlv03 {
	padding: 12px 20px;
	background-color: #53b067;
	font-weight: normal;
	font-size: 116%;
	color: #FFFFFF;

	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.hlv04 {
	padding-left: 6px;
	border-bottom: 1px solid #72c2d7;
	font-weight: bold;
	font-size: 116%;
	color: #72c2d7;
}
.hlv05 {
	font-weight: bold;
	font-size: 116%;
	color: #5a8b4f;
}
.hlv06 {
	font-weight: bold;
	font-size: 100%;
	color: #5a8b4f;
}



/*=========================================================== */
/* list format
============================================================= */

/* normal
------------------------------------------------------------- */
ul.normal {
	list-style: disc;
	margin-left: 24px;
}
ol.normal {
	list-style: decimal;
	margin-left: 24px;
}



/*----------------------------------------------------------- */
/* datalist format
------------------------------------------------------------- */
/* format 01
------------------------------------------------------------- */
dl.fmt01 {
	margin-top: 20px;
	padding: 10px 20px;
	border: 2px solid #f5f5f5;

	-webkit-border-radius: 5px;
	border-radius: 5px;
}
dl.fmt01 dt {
	padding: 10px 0 5px;
	border-bottom: 1px dotted #f5f5f5;
	font-weight: bold;
	font-size: 116%;
	color: #0d2080;
}
dl.fmt01 dt:first-child {
}
dl.fmt01 dd {
	padding: 5px 0 10px;
}



/*----------------------------------------------------------- */
/* table format
------------------------------------------------------------- */
/* format 01
------------------------------------------------------------- */
table.fmt01 {
	border-collapse: collapse;
	width:100%;
	margin:10px 0;
}
table.fmt01 th,
table.fmt01 td {
	padding: 10px;
	border: 1px solid #ccc;
}
table.fmt01 thead th {
	text-align: center;
	font-weight: bold;
	color: #4d4d4d;
}
table.fmt01 thead td {
	font-weight: bold;
	color: #4d4d4d;
}
table.fmt01 tbody th {
	background-color: #0d2080;
	text-align: center;
	font-weight: bold;
	color: #fff;
	width:26%;
}
table.fmt01 tbody td {
	width:37%;
}
@media only screen and (min-width: 0px) and (max-width:480px) {
	table.fmt01 tbody th {
		width:42%;
	}
	table.fmt01 tbody td {
		width:24%;
	}
}

/* format 02
------------------------------------------------------------- */
table.fmt02 {
	border-collapse: collapse;
	width:100%;
	margin:10px 0;
}
table.fmt02 th,
table.fmt02 td {
	padding: 10px;

	border: 1px solid #ccc;
}
table.fmt02 thead th {
	text-align: center;
	font-weight: bold;
	color: #4d4d4d;
}
table.fmt02 thead td {
	font-weight: bold;
	color: #4d4d4d;
}
table.fmt02 tbody th {
	background-color: #0d2080;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	color: #fff;
	width:30%;
}
table.fmt02 tbody td {
	width:70%;
}

/*----------------------------------------------------------- */
/* float
------------------------------------------------------------- */
/* float -left */
.fl { float: left;}

/* float -right */
.fr { float: right;}

@media only screen and (min-width: 0px) and (max-width:480px) {
	.fl { float: none;}
	.fr { float: none;}
}


/*----------------------------------------------------------- */
/* image
------------------------------------------------------------- */
/* floating image */
img.fl {
	float: left;
	margin: 0 15px 0 0;
}
img.fr {
	float: right;
	margin: 0 0 0 15px;
}
@media only screen and (min-width: 0px) and (max-width:480px) {
	img.fl {
		float: none;
		margin: 0 0 5px;
		width: 100%;
		height: auto;
	}
	img.fr {
		float: none;
		margin: 0 0 5px;
	}
}



/* fit
------------------------------------------------------------- */
img.fit {
	width: 100%;
	height: auto;
}
@media only screen and (min-width: 0px) and (max-width:480px) {
	img.fit {
		width: 100%;
		height: auto;
	}
}

/*----------------------------------------------------------- */
/* anchor
------------------------------------------------------------- */
/* anchor list
------------------------------------------------------------- */
.anclist {}
.anclist li {
	padding: 2px 0;
}
.anclist li a {
	padding-left: 20px;
	background-image: url(../img/bullet/blt_rarr_gy.png);
	background-repeat: no-repeat;
	background-position: 4px 4px;
}


/* accordion
------------------------------------------------------------- */
dl.accordion {}
dl.accordion dt {
	padding: 5px 0 5px 20px;
	background-image: url(../img/bullet/blt_rarr_gy.png);
	background-repeat: no-repeat;
	background-position: 4px 7px;
	border-top: 1px dotted #ccc;
	cursor: pointer;
	text-decoration: underline;
	color: #a51616;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
dl.accordion dt:hover,
dl.accordion dt:active {
	text-decoration: none;
	color: #ccc;
}
dl.accordion dt:first-child {
	border-top: none;
}
dl.accordion dt.open {
	background-image: url(../img/bullet/blt_darr_gy.png);
}
dl.accordion dd {
	display: none;
}

/* list : accordion */
dl.accordion dd ul.accordionlist {
	padding-left: 12px;
}
dl.accordion dd ul.accordionlist li {
	padding: 2px 0;
}
dl.accordion dd ul.accordionlist li a {
	padding-left: 20px;
	background-image: url(../img/bullet/blt_rtri_gy.png);
	background-repeat: no-repeat;
	background-position: 4px 4px;
}

/* searched keyword
------------------------------------------------------------- */
#searchedword {}
#searchedword .accordion {}
#searchedword .accordion dt {
	border-top: none;
}
#searchedword .accordionlist {
}
#searchedword .accordionlist li {
	display: inline-block;
	padding-right: 10px;
}
@media only screen and (min-width: 0px) and (max-width:480px) {
}


/* plan_list
------------------------------------------------------------- */
.plan_list{
}
.plan_list li{
}
.plan_list li a{
	display:block;
	background-color:#234a60;
	background-image: url(../img/bullet/blt_rarr_wt.png);
	background-position:97% center;
	background-repeat:no-repeat;
	color:#ffffff;
	height:25px;
	line-height:25px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding-left:5px;
	text-decoration:none;
	margin-top:10px;
	margin-bottom:10px;
}
.plan_list li a:hover{
	filter: alpha(opacity=50);
	/*-ms-filter: "alpha(opacity=0.7)";*/
	-moz-opacity: 0.5;
	opacity: 0.5;
}
.plan_list li:first-child a{
	margin-top:0;
}
.plan_list li p{
	color:#c1272d;
	border-bottom:dotted 1px #cbcbcb;
	padding-bottom:10px;
}
.plan_list li p span{
	font-size: 120%;
	margin-right:5px;
}


/* button
------------------------------------------------------------- */
a.btn {
	display: block;
	padding: 13px 10px 13px;
	background-repeat: repeat-x;
	background-position: center 100%;

	border: 2px solid #0d2080;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #0a1018;

	-webkit-border-radius: 3px;
	border-radius: 3px;
}
a.btn:hover,
a.btn:active {
	color: #fff;
	background: #0d2080;
}


a.btn.agree {
	display: block;
}
a#reset {
	background-color: #666;
}

a.btn2 {
	display: block;
	margin:3px 0;
	padding: 3px 0;
	width:65%;
	background-repeat: repeat-x;
	background-position: center 100%;

	border: 2px solid #0d2080;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #0a1018;

	-webkit-border-radius: 3px;
	border-radius: 3px;
}
a.btn2:hover,
a.btn2:active {
	color: #fff;
	background: #0d2080;
}





/* on over opacity
------------------------------------------------------------- */
a.opc {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
a.opc:hover {
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=0.6)";
	-moz-opacity: 0.6;
	opacity: 0.6;
}


/* more
------------------------------------------------------------- */
a.more {
	display: inline-block;
	margin-top: 5px;
	padding: 5px 10px;
	background-color: #9b9a96;
	text-align: center;
}
a.more span {
	padding-left: 12px;
	/*background: url(../common/img/blt_tri_wh.png) no-repeat left center;*/
}
a.more:link,
a.more:visited,
a.more:hover,
a.more:active {
	line-height: 1;
	text-decoration: none;
	font-size: 84%;
	color: #FFFFFF;
}
a.more:hover,
a.more:active {
	background-color: #72c2d7;
}

.more.full {
	display: block;
}


/*----------------------------------------------------------- */
/* text decoration
------------------------------------------------------------- */
/* emphasis */
#contents em {
	font-style: normal;
	font-weight: bold;
}
/* strong */
#contents strong {
	font-weight: bold;
	color: #0d2080;
}


/* blockquote */
#contents blockquote {
	position: relative;
	display: block;
	margin-left: 30px;
	padding: 15px 15px 15px 70px;
	border: 1px solid #9b9a96;
	color: #9B9A96;

	-webkit-border-radius: 3px;
	border-radius: 3px;
}
#contents blockquote:before{
	position: absolute;
	left: 20px;
	top: 10px;
	content:"“";
	font-size: 500%;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	line-height: 1;
	color: #e6e6e6;
}

/* pre */
#contents pre {
	overflow: hidden;
	padding: 20px;
	background: url(../img/contents/stripe_rtld_gy.gif) repeat left top;
	border: 1px solid #c1beb8;
	color: #72c2d7;

	-webkit-border-radius: 3px;
	border-radius: 3px;
}

/* jastify fix  */
.justyfy {
	text-align: justify;
	text-justify: inter-ideograph;
}

/* hr - default */
hr {
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #333333;
	height: 1px;
	clear: both;
}

/* text align */
.txt-c { text-align: center;}
.txt-l { text-align: left;}
.txt-r { text-align: right;}


/* text with background color */
.marker {
	font-weight: bold;
	background-color: #ffcce5;
	color: #ff007f;
}

/* attention */
.attn {
	color: #c1272d;
}

/* note */
ul.notes li {
	padding: 0 0 0 1em ;
	text-indent: -1em;
}
.note {
	padding: 0 0 0 1em ;
	text-indent: -1em;
}
.eke {
	font-weight: normal;
	font-size: 84%;
}
.drop {
	text-indent: 1em;
}

.qup {
	font-size: 116%;
}
.qdw {
	font-size: 84%;
}



