/* Y'S GEAR : profile outline.css */


/*======================================================================*
 *  [ contentsTable | テーブル ] 
 *======================================================================*/

.contentsTable {
	display: table;
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.contentsTable section {
	display: table-row;
}
.contentsTable section h3,
.contentsTable section > p, 
.contentsTable section > div {
	display: table-cell;
	padding: 15px 10px;
	border-top: 1px solid #ccc;
	box-sizing: border-box;
}
.contentsTable section h3 {
	width: 25%;
	color: #2a57a5;
	background: #f5f5f5;
}
.contentsTable section h3:before {
	content: "■";
}

.contentsTable dt {
	margin-bottom: 3px;
	color: #2a57a5;
}
.contentsTable dd + dt {
	margin-top: 15px;
}
.contentsTable dt:before {
	content: "●";
}

.contentsTable .list {
	margin-top: 15px;
}
.contentsTable .list dd {
	margin-left: 1em;
}
.contentsTable .list dd + dd {
	margin-top: 2px;
}
.contentsTable .list dd:before {
	content: "・";
}
.contentsTable .list dd.nolist:before {
	display: none;
}


/*======================================================================*
 *  [ inquiryBox | 商品に関するお問い合わせ ] 
 *======================================================================*/

/* 電話番号 */
.inquiryBox dt {
	position: relative;
	float: left;
	width: 283px;
	height: 55px;
	padding: 15px 0 0 75px;
	box-sizing: border-box;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
}
.inquiryBox dt img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.inquiryBox dt span {
	display: block;
	margin: 5px 0 0 8em;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
}
.inquiryBox dd {
	margin: 0 0 0 300px;
}
/* テキスト */
.inquiryBox dd p {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.inquiryBox dd p span {
	font-weight: normal;
}
.inquiryBox dd li {
	margin: 5px 0 0 0;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.inquiryBox dd li:before {
	content: "◎";
}


/*======================================================================*
 *  [ jadmaBox | JADMA（ジャドマ）マークについて ] 
 *======================================================================*/

.jadmaBox dt {
	float: left;
	width: 25%;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
}
.jadmaBox dd {
	margin: 0 0 0 25%;
	line-height: 1.6;
}


/*======================================================================*
 *  [ Media Queries 568 ] 
 *======================================================================*/

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ contentsTable | テーブル ] 
	 *==================================================================*/
	
	.contentsTable {
		display: block;
		border: 1px solid #ccc;
	}
	
	.contentsTable section {
		display: block;
	}
	.contentsTable section h3,
	.contentsTable section > p, 
	.contentsTable section > div {
		display: block;
		border-top: none;
	}
	.contentsTable section h3 {
		width: 100%;
		padding: 10px;
	}
	
	
	/*==================================================================*
	 *  [ inquiryBox | 商品に関するお問い合わせ ] 
	 *==================================================================*/
	
	/* 電話番号 */
	.inquiryBox dt {
		float: none;
		margin-bottom: 15px;
	}
	.inquiryBox dd {
		margin: 0;
	}
	
	
	/*==================================================================*
	 *  [ jadmaBox | JADMA（ジャドマ）マークについて ] 
	 *==================================================================*/
	
	.jadmaBox dt {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	.jadmaBox dd {
		margin: 0;
	}
	
}

