@charset "UTF-8";

/*================================================
 *  price（料金体系）
 ================================================*/

/*******アンカーナビ*******/
.anchor_nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items : stretch;
	width: 820px;
	margin: 0 auto;
}
.anchor_nav li {
	width: 260px;
}
.anchor_nav li a {
	border: 1px solid #164a81;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	padding: 1em 0;
	position: relative;
}
.anchor_nav li a::after {
	position: absolute;
	content: '';
	right: 1em;
	top: 50%;
	width: 0.5em;
	height: 0.5em;
	border-bottom: 1px solid #164a81;
	border-right: 1px solid #164a81;
	-webkit-transform: translateY(-60%) rotate(45deg);
	transform: translateY(-60%) rotate(45deg);
}
.anchor_nav li a:hover {
	background-color: #164a81;
	color: #fff;
	opacity: 1;
}
.anchor_nav li a:hover::after {
	border-color: #fff;
}

/*******内容*******/
section.price_area {
	padding-top: 60px;
}
section.price_area h3 {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.5em;
}

/*テーブル*/
section.price_area .price_table {
	border-top: 1px solid #c8c8c8;
	width: 100%;
}
section.price_area .price_table:nth-of-type(n+2) {
	margin-top: 60px;
}
section.price_area .price_table th,
section.price_area .price_table td {
	padding: 0.9em 0.8em;
	line-height: 1.5;
	border-bottom: 1px solid #c8c8c8;
	border-right: 1px solid #c8c8c8;
}
section.price_area .price_table th:last-child,
section.price_area .price_table td:last-child {
	border-right: none;
}
section.price_area .price_table thead th {
	color: #fff;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}
section.price_area .price_table thead th span {
	font-size: 87.5%;
}
section.price_area .price_table thead th:nth-child(1) {
	width: 180px;
}
section.price_area .price_table thead th:nth-child(2) {
	width: 260px;
}
section.price_area .price_table thead th:nth-child(3) {
	width: 500px;
}
section.price_area .price_table tbody th {
	background-color: #f2f2f2;
	padding-right: 0;
}
section.price_area .price_table tbody td:not(.td_last) {
	padding-right: 0;
}
section.price_area .price_table tbody td.td_last {/*最後右寄せ用*/
	width: 200px;
	text-align: right;
}
section.price_area .price_table tbody td.td_wid01 {
	width: 110px;
}
section.price_area .price_table tbody td.td_wid02 {
	width: 150px;
}

/*注意事項*/
section.price_area .notes_list {
	margin-top: 30px;
}
section.price_area ol.kome_list.notes_list li {
	padding-left: 1.66em;
	text-indent: -1.66em;
	counter-increment: cnt;
}
section.price_area ol.kome_list.notes_list li:nth-child(n+2) {
	margin-top: 0.25em;
}
section.price_area ol.kome_list.notes_list li:before {
	color: #164a81;
	content: "\203b"counter(cnt);
}


/*ダウンロード*/
section.price_area .download_btn {
	width: 280px;
	margin: 20px 0 0 auto;
}
section.price_area .download_btn a {
	border: 1px solid #164a81;
	display: block;
	padding: 1em 0;
	text-align: center;
}
section.price_area .download_btn a span {
	font-size: 110%;
	vertical-align: -10%;
	margin: 0 0.7em 0 0.5em;
}
section.price_area .download_btn a:hover {
	background-color: #164a81;
	color: #fff;
	opacity: 1;
}










/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {


/*******アンカーナビ*******/
.anchor_nav {
	width: 100%;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.anchor_nav li {
	width: 43.5vw;
}
.anchor_nav li:nth-child(n+3) {
	margin-top: 3vw;
}
.anchor_nav li a {
	font-size: 4vw;
	padding-right: 1em;
}

/*******内容*******/
section.price_area {
	padding-top: 10vw;
}
section.price_area h3 {
	font-size: 6vw;
	margin-bottom: 0.8em;
}

/*テーブル*/
section.price_area .sp_table_slide {
	margin: 5vw 0 3vw;
}

section.price_area .price_table th,
section.price_area .price_table td {
	padding: 3vw 0.5em;
	font-size: 3.6vw;
}

.pinned { width: 36vw!important;}/*js上書き用*/
div.table-wrapper div.scrollable { margin-left: 36vw!important; }/*js上書き用*/

.scrollable .price_table {
	width: 170vw!important;
}
.scrollable .price_table tbody td {
	display: table-cell;
}
section.price_area .price_table thead th:nth-child(1) {
	width: 36vw;
}
section.price_area .price_table thead th:nth-child(2) {
	width: 58vw;
}
section.price_area .price_table thead th:nth-child(3) {
	width: 112vw;
}

section.price_area .price_table tbody td.td_last {/*最後右寄せ用*/
	width: 44vw;
}
section.price_area .price_table tbody td.td_wid01 {
	width: 23vw;
}
section.price_area .price_table tbody td.td_wid02 {
	width: 35vw;
}


table.courseTable thead th {
	width: 30vw;
}

/*注意事項*/
section.price_area .notes_list {
	margin-top: 5vw;
}


/*ダウンロード*/
section.price_area .download_btn {
	width: 80vw;
	margin: 5vw auto 0;
}


	
}