
/* IMPORT CSS */
@import "../css/common.css";

section h3{
	border: 1px solid #f8cb9d;
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	padding: 6px;
	margin-bottom: 20px;
}

#lead a{
	display: inline-block;
	margin: 10px 0 20px;
}

#c01{
	padding-bottom: 10px;
}

#c01 div{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	padding: 0 10px;
}

#c01 div article{
	width: 49%;
	border: 1px solid #b3b3b3;
	padding: 10px;
	 border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	display: flex;
	margin-bottom: 20px;
}

#c01 div article dl{
	flex: 1;
}

#c01 div article dl dt{
	color: #ff7d00;
	font-size: 1.6rem;
	font-weight: bold;
	padding-bottom: 15px;
}

#c01 div article dl dd{
	font-size: 1.4rem;
}

#c01 div article figure{
	width: 130px;
	margin-left: 10px;
}

#c02{
	padding-bottom: 30px;
}

#c02 #lead2{
	padding:0 0 10px 10px;
}

#c02 h4,
#c03 h4{
	color: #ff7d00;
	font-size: 1.6rem;
	font-weight: bold;
	padding-bottom: 5px;
}

#price{
	margin-bottom: 20px;
}

#price table{
	width: 1000px;
}

#price table, 
#price td, 
#price th{
	border: 1px solid #b3b3b3;
	border-collapse: collapse;
	font-size: 1.3rem;
}

#price th{
	background: #ffe7cc;
}

#price td, 
#price th {
	width: 17%;
	padding: 10px 5px;
	text-align: center;
}

#price th span{
	font-size: 2.0rem;
}

#price td span{
	color: #c1272d;
	font-size: 1.6rem;
}

.td-bg{
	background: #ffdddd;
}

#option table,
#c03 table{
	width: 100%;
}

#option table, 
#option td, 
#option th,
#c03 table,
#c03 td, 
#c03 th{
	border: 1px solid #b3b3b3;
	border-collapse: collapse;
	font-size: 1.3rem;
}

#option td, 
#option th {
	width: 33%;
	padding: 10px 5px;
	text-align: center;
}

#option th,
#c03 th{
	background: #ffe7cc;
}

#option p{
	text-align: right;
	font-size: 1.2rem;
	padding-top: 10px;
}

#c03 td, 
#c03 th {
	width: 25%;
	padding: 10px 5px;
	text-align: center;
}

#c03 td span{
	display: block;
	font-size: 2.0rem;
	color: #c1272d;
	padding: 5px 0;
}

#c03 table{
	margin-bottom: 20px;
}

#c03 {
	padding-bottom: 10px;
}

#c03 p,
#c03 ul,
#c03 dl{
	padding:0 0 15px 10px;
}

#c03 ul li{
	list-style-type:disc;
	margin-left: 20px;
}

#c04 article{
	padding-left: 10px;
}

#c04{
	padding-bottom: 20px;
}

#c04 dl{
	padding-top: 20px;
}

#c04 dl dt{
	color: #f15a24;
}


#c05-waku{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	padding: 0 10px;
}

#c05-waku article{
	width: 49%;
	border: 1px solid #b3b3b3;
	padding: 10px;
	 border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	margin-bottom: 20px;
}

#c05-waku article h4{
	font-size: 1.8rem;
	padding-bottom: 15px;
}

#c05-waku article div{
	display: flex;
}

#c05-waku article div p{
	flex: 1;
	font-size: 1.4rem;
	padding-right: 10px;
}

#c05-waku article div p span{
	display: block;
	font-size: 1.3rem;
	padding-top: 15px;
}

#c05-waku article div figure{
	width: 200px;
}

#c05-waku article div#no-image{
	display: block;
}

#c05-waku article div#no-image ol {
	counter-reset: li;
	font-size: 1.4rem;
}
 
#c05-waku article div#no-image ol > li {
	list-style: none;
	position: relative;
	padding-left: 2em;
	counter-increment: cnt;
	margin-top: 5px;
}
 
#c05-waku article div#no-image ol > li:before {
	counter-increment: li;
	content: "(" counter(cnt) ") ";
	position: absolute; /*リストの基準から移動させる*/
	left: 0em; /*項目の基準、左にあわせる*/
	top: 1px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
}

#bottom-btn{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	margin: 20px 15px;
}

#bottom-btn a{
	display: block;
}


/*--------------------------- SMARTPHONE STYLES ---------------------------*/


/*========== 650px以下 ==========*/

@media ( max-width : 650px ) {
	
	#c01 div,
	#c05-waku{
		padding: 0;
	}
	
	#c01 div article,
	#c05-waku article{
		width: 100%;
	}
	
	#c01 div article figure{
		width: 100px;
	}
	
	#price {
		overflow-x: scroll;
		padding-bottom: 5px;
	}
	#price::-webkit-scrollbar {
		height: 10px;
	}
	#price::-webkit-scrollbar-track {
		margin: 0 2px;
		background: #ddd;
		border-radius: 5px;
	}
	#price::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #f8cb9d;
	}
	
	#c05-waku article div figure{
		width: 120px;
	}
	
	#c01 div article figure img,
	#c05-waku article div figure img{
		width: 100%;
	}
	
	#bottom-btn{
		justify-content: center;
	}
	
	#bottom-btn a{
		margin-bottom: 10px;
	}
	
	#bottom-btn a img{
		max-width: 100%;
}

}
