@charset "UTF-8";

/* 赤文字 */
.__red {
    color: #D7000F;
}

/* カッコ箇条書きの文字先頭を揃える */
.p-section ol {
	margin-left: 2em;
}
.p-section ol li {
	list-style-type: none;
	counter-increment: cnt;
	position: relative;
	margin-bottom: 1.5em;
	counter-reset:reset;
}
.p-section ol li:before {
	content: counter(cnt) ".";
	display: inline-block;
	margin-left: -3.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

/* カッコ箇条書きの文字先頭を揃える */
.p-section ul {
	margin-left: 2em;
}
.p-section ul li {
	list-style-type: none;
	counter-increment: cnt2;
	position: relative;
	margin-bottom: 0.5em;
}
.p-section ul li:before {
	content: "(" counter(cnt2) ")";
	display: inline-block;
	margin-left: -3.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

/* 箇条書きの文字先頭を揃える */
.p-section ul.listNone {
	margin-left: 2em;
}
.p-section ul.listNone li {
	list-style-type: none;
	position: relative;
}
.p-section ul.listNone li:before {
	content: "・";
	display: inline-block;
	margin-left: -3.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

/* 注意の文字先頭を揃える */
.p-section ul.attention {
	margin-left: 2em;
}
.p-section ul.attention li {
	list-style-type: none;
	position: relative;
}
.p-section ul.attention li:before {
	content: "※";
	color:#fc0000;
	display: inline-block;
	margin-left: -3.5em;
	margin-bottom: 0.5em;
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

/* 価格表 */
.p-table{
	width: 100%;
	margin: 0 auto;
	padding: 0px;
}
.p-table table{
	width: 100%;
	min-width: 280px;
} 
.p-table th{
	background-color: #1e506b;
}
.p-table td{
    background-color: #fff;
	color: #333;
	padding: 3%; 
}
.p-table td.__back{
	background-color: #1e506b;
	color: #fff;
}
.p-table td.__back-gray{
	background-color: #ccc;
	color: #000;
}
.p-table td .__vertical{
	writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    letter-spacing: .2em;
}
.p-table td .__vertical span.__vertical-part{
	writing-mode: horizontal-tb;
}
.p-table .__bottom{
	border-bottom: solid 1px #fff;
}
.p-table .__right{
	border-right: solid 1px #fff;
}
.p-table .__line-blue{
	background-color: #96c7e5;
}
.p-table .__line-green{
	border-left: solid 2em #c8dfc2;
}
.tablet .p-table td {
    padding: 3%;
}