@charset "utf-8";

/* font
------------------------------------------------------------- */
/*
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-family: メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
*/


/* inr
------------------------------------------------------------- */
.inr {
	width: 1180px;
	min-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}
@media only screen and (min-width: 1px) and (max-width:480px) {
	.inr {
		width: 100%;
		min-width: 100%;
		box-sizing: border-box;
	}
}


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

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

/* margin 0 auto
------------------------------------------------------------- */
.mauto {
	float: none !important;
	margin: 0 auto;
}


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


/* button
------------------------------------------------------------- */
a.btn {
	display: block;
	padding: 9px 26px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #2B437A;
	border: 1px solid #2B437A;
	border-radius: 3px;
}
#header a.btn {
	color: #fff;
	border: 0;
	background: #7A3A2B;
}

/* on over opacity
------------------------------------------------------------- */
a.opc {
	display: block;
	-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=70);
	-ms-filter: "alpha(opacity=0.7)";
	-moz-opacity: 0.5;
	opacity: 0.5;
}


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

/* 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;
}
@media only screen and (min-width: 0px) and (max-width:480px) {
	dl.accordion {}
	dl.accordion dt {
		border-top: 1px dotted #dddddd;
		cursor: pointer;
		-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:after{
		display:block;
		content:"";
		width:auto;
		height:20px;
		background:url(../img/open.png) center bottom/15px 9px no-repeat;
	}
	dl.accordion dt:first-child {
		border-top: none;
	}
	dl.accordion dd {
		display: none;
	}
	/* list : accordion */
	dl.accordion dd ul {
		margin-top: 15px;
	}
	dl.accordion dd ul.accordionlist {
		padding-left: 12px;
		padding-bottom:15px;
	}
	dl.accordion dd ul.accordionlist li {
		padding: 2px 0;
	}
	dl.accordion dd ul.accordionlist li a {
		padding-left: 15px;
	}
}