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


/*======================================================================*
 *  [ cautionWrap ] 
 *======================================================================*/

.cautionWrap {
	margin-bottom: 50px;
	font-size: 1.4rem;
	line-height: 1.4;
}

.cautionWrap p {
	line-height: 1.6;
}

.cautionWrap .spOnly { display: none; }


/*======================================================================*
 *  [ headBox ] 
 *======================================================================*/

.headBox {
	margin-bottom: 50px;
}

/* [ 日付 ] */
.headBox .date {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 8px;
	color: #363a90;
	font-size: 1.6rem;
}
.headBox .date::after {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: url(/shared/img/bg_common.png) #efefef;
	background-size: 3px 3px;
	content: "";
}

/* [ タイトル ] */
.headBox h2 {
	margin-bottom: 15px;
	padding: 20px 10px;
	background: url(/shared/img/bg_common.png) #efefef;
	background-size: 3px 3px;
	font-size: 1.8rem;
	text-align: center;
}

/* [ テキスト ] */
.headBox .text {
	margin-bottom: 15px;
	text-indent: 1em;
}

/* [ 企業名 ] */
.headBox .company {
	text-align: right;
}


/*======================================================================*
 *  [ section ] 
 *======================================================================*/

.cautionWrap section {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #ebebeb;
}

/* [ タイトル ] */
.cautionWrap section h3 {
	margin-bottom: 15px;
	padding-left: 10px;
	border-left: 5px solid #464646;
	font-size: 1.8rem;
	font-weight: normal;
}

/* [ テキスト ] */
.cautionWrap section p {
	margin-bottom: 15px;
}

/* [ リスト ] */
.cautionWrap section ul, 
.cautionWrap section ol {
	margin: 0 0 15px 2em;
}
.cautionWrap section li + li {
	margin-top: 5px;
}
.cautionWrap section ul li {
	list-style-type: disc;
}
.cautionWrap section ol li {
	list-style-type: decimal;
}

/* [ 注釈 ] */
.cautionWrap section sup {
	margin-left: 2px;
	font-size: 75%;
	vertical-align: top;
}
.cautionWrap section .notes {
	padding-left: 1em;
	font-size: 1.2rem;
	text-indent: -1em;
}
.cautionWrap section .notes::before {
	content: "※";
}


/*======================================================================*
 *  [ imageBox ] 
 *======================================================================*/

/* [ 画像 ] */
.imageBox figure {
	margin-bottom: 15px;
	padding: 0 10px;
	box-sizing: border-box;
	text-align: center;
}
.imageBox.column2 figure {
	float: left;
	width: 50%;
}


/*======================================================================*
 *  [ targetTable | 対象の部品 ] 
 *======================================================================*/

.targetTable {
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.targetTable dl {
	display: table;
	width: 100%;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
}

.targetTable dt, 
.targetTable dd {
	display: table-cell;
	padding: 10px;
	box-sizing: border-box;
	vertical-align: middle;
}
.targetTable dt {
	width: 40%;
	background: url(/shared/img/bg_common.png) #efefef;
	background-size: 3px 3px;
}

/* [ リスト ] */
.targetTable ul, 
.targetTable ol {
	margin-bottom: 0 !important;
}


/*======================================================================*
 *  [ inquiryBox | お問い合わせ先 ] 
 *======================================================================*/

.inquiryBox {
	margin-top: 50px;
	padding: 5px;
	border: 3px solid #2a57a5;
	font-weight: bold;
	text-align: center;
}

/* [ 見出し ] */
.inquiryBox p:first-child {
	margin-bottom: 0;
	padding-bottom: 5px;
	border-bottom: 1px dotted #2a57a5;
	font-weight: bold;
}

.inquiryTable {
	display: inline-block;
}
.inquiryTable dl {
	display: table;
	margin-top: 5px;
}
.inquiryTable dt,
.inquiryTable dd {
	display: table-cell;
	text-align: left;
}
.inquiryTable dt {
	width: 9em;
}
.inquiryTable dt::before {
	content: "■";
}
.inquiryTable dd b {
	font-size: 2rem;
}


/*======================================================================*
 *  [ Media Queries 730 ] 
 *======================================================================*/

@media screen and (max-width: 730px) {
	
	/*======================================================================*
	 *  [ cautionWrap ] 
	 *======================================================================*/
	
	.cautionWrap {
		margin-bottom: 0;
	}
	
	.cautionWrap .pcOnly { display: none; }
	.cautionWrap .spOnly { display: block; }

}


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

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ headBox ] 
	 *==================================================================*/
	
	.headBox .date {
		text-align: right;
	}
	
	.headBox h2 {
		padding: 10px;
		font-size: 1.6rem;
	}
	
	
	/*==================================================================*
	 *  [ imageBox ] 
	 *==================================================================*/
	
	/* [ 画像 ] */
	.imageBox figure {
		padding: 0;
	}
	.imageBox.column2 figure {
		float: none;
		width: 100%;
	}
	
	.imageBox + .notes {
		display: none;
	}
	
	
	/*==================================================================*
	 *  [ targetTable | 対象の部品 ] 
	 *==================================================================*/
	
	.targetTable dl {
		display: block;
		border-right: 1px solid #ddd;
		border-left: 1px solid #ddd;
	}
	
	.targetTable dt, 
	.targetTable dd {
		display: block;
	}
	.targetTable dt {
		width: 100%;
	}
	
	
	/*==================================================================*
	 *  [ inquiryBox | お問い合わせ先 ] 
	 *==================================================================*/
	
	.inquiryTable {
		display: block;
		margin: 10px 0;
	}
	.inquiryTable dl {
		display: block;
	}
	.inquiryTable dt,
	.inquiryTable dd {
		display: block;
		text-align: center;
	}
	.inquiryTable dt {
		width: 100%;
	}
	
}

