@charset "utf-8";
/* CSS Document */

#ex-p{
	width:690px;
	color: #00145b;
	border:1px solid #00145b;
	box-sizing: border-box;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	margin: 0 auto 20px;
	padding: 10px;
}

/* 価格表
--------------------------------- */
.price-list{
	width: 690px;
	box-sizing: border-box;
	border-collapse: collapse;
	border-top:1px solid #331E13;
	border-left: 1px solid #331E13;
	font-size: 1.4em;
	margin: 0 auto 20px;
	table-layout: fixed;
}

.price-list tr:nth-of-type(2n+3){
	background: #F7ECDD;
}

.price-list tr th:first-of-type{
	width: 100px;
}
.price-list tr.th-list th{
	background: #331e13;
	border-right: 1px solid #fff;
	color: #fff;
	font-weight: bold;
}
.price-list tr.th-list th:last-of-type{
	border-right: 1px solid #331e13;
}
.price-list tr th, .price-list tr td{

	border-bottom: 1px solid #331E13;
	border-right: 1px solid #331E13;
	text-align: center;
	padding: 6px 0 4px;;
}
.price-list tr td:last-of-type{
	color:#C10003;
}
.price-list tr td span{
	color: #000;
	font-size: 0.8em;
}

/* wrap common
--------------------------------- */
.contentWrap{
  width: 690px;
  margin: 0 auto 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* 右にラインが入るコンテンツ コンテンツの幅は別指定
■|■|■|■
--------------------------------- */
.contentWrap.lineRight div{
  border-right: 1px solid #ccc;
  margin: 0 ;
  padding: 10px;
}
.contentWrap.lineRight div:last-of-type{
  border-right: none;
}



/* 右と下にラインが入るコンテンツ-横2列
■|■
─ ─
■|■ 
--------------------------------- */
.contentWrap.lineRightBottom div{
  width: calc(100% / 2);
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  margin: 0;
  padding: 10px;
}

.contentWrap.lineRightBottom div:nth-child(even){
  border-right: none;
}

.contentWrap.lineRightBottom div:nth-last-child(1), .contentWrap.lineRightBottom div:nth-last-child(2){
  border-bottom: none;
}