/* Y'S GEAR : manual.css */


/*======================================================================*
 *  [ manualSection | マニュアル共通セクション ] 
 *======================================================================*/

.manualSection {
	padding: 0 0 0 15px;
}

/* 見出し */
.manualSection h3 {
	margin-left: -15px;
}

/* テキスト */
.manualSection p {
	color: #464646;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
}
.manualSection p span {
	display: inline-block;
	margin: 0 0 5px 0;
	color: #000;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}

/* リスト */
.manualSection h3 + .commonList {
	margin: 0;
	color: #464646;
}
.commonList li + li {
	margin: 5px 0 0 0;
}
.commonOrderedList {
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	font-size: 1.4rem;
}

/* [ buttonDownload | ダウンロードボタン ] */
a.buttonDownload {
	display: inline-block;
	position: relative;
	margin: 15px 15px 0 0;
	padding: 10px 50px;
	border-radius: 5px;
	background: #6167dc;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
a.buttonDownload:hover {
	background: #8185e3;
	color: #fff !important;
}
a.buttonDownload:after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 18px;
	height: 16px;
	margin: -10px 0 0 0;
	content: url(/shared/svg/icon_download_white.svg);
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
html>/**/body a.buttonDownload:after { /* IE8ハック */
	content /*\**/: url(/shared/img/ie8/icon_download_white.png) \9;
}

/* [ faxNumber | FAX番号 ] */
.faxNumber {
	display: inline-block;
	margin: 15px 0 0 0;
	color: #000;
	font-weight: bold;
}
p.faxNumber span {
	font-size: 20px;
	font-size: 2rem;
}


/*======================================================================*
 *  [ manualClass | サービスマニュアルの区分 ] 
 *======================================================================*/

.manualClass {
	margin: 30px 0 0 0;
}
.manualClass h4 {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}

.manualClass section {
	padding: 17px;
	background: #f8f7f7;
	border: 3px solid #e6e6e6;
}
.manualClass section + section {
	margin: 20px 0 0 0;
}

/* タイトル */
.manualClass section h5 {
	margin: 0 0 5px 0;
	color: #363a90;
	font-size: 16px;
	font-size: 1.6rem;
}
.manualClass section h5 span {
	color: #464646;
	font-weight: normal;
}

/* [ buttonManual | ダウンロードボタン ] */
a.buttonManual {
	display: inline-block;
	float: right;
	position: relative;
	margin: 0 0 5px 10px;
	padding: 10px 15px 10px 30px;
	border-radius: 5px;
	background: #e7e8fa;
	font-size: 16px;
	font-size: 1.6rem;
}
a.buttonManual:hover {
	background: #363a90;
	color: #fff !important;
}
a.buttonManual:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 15px;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border: 4px solid transparent;
	border-left: 8px solid #363a90;
	content: "";
}
a.buttonManual:hover:before {
	border-left-color: #e7e8fa;
}


/*======================================================================*
 *  [ Media Queries 568 ] 
 *======================================================================*/

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ manualSection | マニュアル共通セクション ] 
	 *==================================================================*/
	
	.manualSection {
		padding: 0;
	}
	
	/* 見出し */
	.manualSection h3 {
		margin-left: 0;
	}
	
	
	/*==================================================================*
	 *  [ manualClass | サービスマニュアルの区分 ] 
	 *==================================================================*/
	
	.manualClass section {
		padding: 10px;
	}
	
	
	/* [ buttonManual | ダウンロードボタン ] */
	a.buttonManual {
		float: none;
		margin: 0 0 5px 0;
	}
	
}

