/* --------------------------------------------------- PC ---- */
@media screen and (min-width: 769px) {
	.table__outside {
		width: 100%;
		max-width: 1400px;
		padding: 0 20px 0 20px;
		margin: 0 auto 0 auto;
	}
	.table {
		width: 100%;
		border-radius: 10px;
		margin-top: 90px;
		margin-bottom: 120px;
		box-shadow: 0 0 15px rgba(84, 71, 33, 0.32);
	}
	.table__tr {
		
	}
	.table__th {
		width: 23%;
		
		padding: 32px;
		font-size: 18px;
		font-weight: bold;
		text-align: left;
		vertical-align: top;
		background-color: #FFF6CC;
		
		background-image : linear-gradient(to right, #CCC, #CCC 2px, transparent 2px, transparent 8px);
		background-size: 6px 2px;
		background-position: left bottom;
		background-repeat: repeat-x;
	}
	.table__td {
		padding: 32px;
		text-align: left;
		vertical-align: top;
		
		background-image : linear-gradient(to right, #CCC, #CCC 2px, transparent 2px, transparent 8px);
		background-size: 6px 2px;
		background-position: -1px bottom;
		background-repeat: repeat-x;
	}
	.table__th--first {
		border-radius: 10px 0 0 0;
	}
	.table__th--last {
		border-radius: 0 0 0 10px;
		background-image: none;
	}
	.table__td--last {
		background-image: none;
	}
	
	.table__line {
		font-size: 18px;
	}
	.table__line--yellowdot {
		position: relative;
		padding-left: 12px;
	}
	.table__line--yellowdot:before {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-radius: 5px;
		background: #333;
		position: absolute;
		left: 0px;
		top: 11px;
	}
	
	.table__caption {
		font-size: 14px;
		margin-top: 5px;
	}
	.courseTable--sp {
		display: none;
	}
	.courseTable {
		width: 100%;
	}
	.courseTable__tr {}
	.courseTable__th {
		font-weight: normal;
		background: #FCCF00;
		padding: 15px;
	}
	.courseTable__th--first {
		border-radius: 10px 0 0 0;
	}
	.courseTable__th--last {
		border-radius: 0px 0 0 10px;
	}
	.courseTable__td {
		background-color: #F5F5F5;
		padding: 15px;
	}
	.courseTable__td--firstLast {
		border-radius: 0 10px 10px 0;
	}
	.table__line--bold {
		font-size: 18px;
		font-weight: bold;
	}
	.table__line--pb {
		margin-bottom: 16px;
	}
	.bpoints__list {}
	.bpoints__item {}
	.table__link {
		font-size: 16px;
		color: #333;
		text-decoration: underline;
	}
	.table__link--linkicon:hover {
		text-decoration: none;
	}
	.table__line--link {
		color: #333;
	}
	.table__line--link:hover {
		opacity: 0.5;
	}
	
	/*cmark*/
	.cmark {}
	.cmark__list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.cmark__item {
		width: 50%;
		margin-bottom: 15px;
		padding-right: 15px;
	}
	.cmark__item:after {
		content: "";
		width:100%;
		height: 0;
		clear:both;
	}
	.cmark__icon {
		float: left;
		width: 100px;
		height: 100px;
		margin-right: 15px;
	}
	.cmark__text {}
	.cmark__text--name {
		font-size: 18px;
	}
	.cmark__text--caption {
		font-size: 14px;
	}
	.cmark__icon--00 {
		height: 100px;
		background: url(../img/cmark__icon--00.png);
		background-size: 100px 100px;
	}
	.cmark__icon--01 {
		height: 115px;
		background: url(../img/cmark__icon--01.png);
		background-size: 100px 115px;
	}
	.cmark__icon--02 {
		height: 102px;
		background: url(../img/cmark__icon--02.png);
		background-size: 100px 102px;
	}
	.cmark__icon--03 {
		height: 100px;
		background: url(../img/cmark__icon--03.png);
		background-size: 100px 100px;
	}
	.cmark__icon--04 {
		height: 95px;
		background: url(../img/cmark__icon--04.png);
		background-size: 100px 95px;
	}
	.cmark__icon--05 {
		height: 181px;
		background: url(../img/cmark__icon--05.png);
		background-size: 100px 181px;
	}
	
}

/* --------------------------------------------------- /PC ---- */

/* --------------------------------------------------- SP ---- */
@media screen and (max-width: 768px) {
	.table__outside {
		padding: 0 22px 0 22px;
	}
	.table {
		width: 100%;
		margin-top: 50px;
		margin-bottom: 80px;
		box-shadow: 0 0 15px rgba(84, 71, 33, 0.32);
		border-radius: 10px;
	}
	.table__tr {}
	.table__th {
		width: 100%;
		display: block;
		background-color: #FFF6CC;
		font-size: 16px;
		padding: 16px;
		text-align: left;

		background-image : linear-gradient(to right, #CCC, #CCC 2px, transparent 2px, transparent 8px);
		background-size: 6px 2px;
		background-position: left bottom;
		background-repeat: repeat-x;

	}
	.table__td {
		width: 100%;
		display: block;
		background: #FFF;
		font-size: 16px;
		padding: 16px;
		text-align: left;
	}
	.table__th--first {
		border-radius: 10px 10px 0 0;
	}
	.table__td--last {
		border-radius: 0 0 10px 10px;
	}
	.table__line {
		font-size: 16px;
		word-break: break-all;
	}
	.table__line--yellowdot {
		font-size: 16px;
		position: relative;
		padding-left: 12px;
	}
	.table__line--yellowdot:before {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-radius: 5px;
		background: #333;
		position: absolute;
		left: 0px;
		top: 9px;
	}
	.table__caption {
		margin-top: 5px;
		font-size: 13px;
	}
	.courseTable {
		width: 100%;
	}
	.courseTable--pc {
		display: none;
	}
	.courseTable__tr {}
	.courseTable__th {
		width: 50%;
		background: #FCCF00;
		padding: 15px;
		text-align: center;
		font-weight: normal;
	}
	.courseTable__td {
		background: #F5F5F5;
		padding: 15px;
		text-align: left;
		vertical-align: top;
	}
	.courseTable__td--center {
		text-align: center;
	}
	.courseTable__th--firstLeft {
		border-radius: 10px 0 0 0;
	}
	.courseTable__th--firstRight {
		border-radius: 0 10px 0 0;
	}
	.courseTable__td--last {
		border-radius: 0 0 10px 10px;
	}
	
	.table__line--bold {
		font-weight: bold;
	}
	.table__line--pb {
		margin-bottom: 18px;
	}
	.bpoints__list {}
	.bpoints__item {}
	.table__link {
		word-break: break-all;
		font-size: 16px;
		color: #333;
		text-decoration: underline;
	}
	.table__link--linkicon:hover {
		text-decoration: none;
	}
	.table__line--link {
		color: #333;
	}
	.table__line--link:hover {
		opacity: 0.5;
	}
	
	.footer__icon--fortable {
		display: inline-block;
		width: 15px;
		height: 15px;
		margin-left: 8px;
		margin-bottom: -1px;
		background: url(../img/linkmark.png);
		background-size: 15px 15px;
	}
	
	/*cmark*/
	/*cmark*/
	.cmark {}
	.cmark__list {}
	.cmark__item {
		margin-bottom: 30px;
		
	}
	.cmark__item--last {
		margin-bottom: 0px;
	}
	.cmark__item:after {
		display: block;
		content: "";
		width:100%;
		height: 0;
		clear:both;
	}
	.cmark__icon {
		float: left;
		width: 80px;
		height: 80px;
		margin-right: 10px;
	}
	.cmark__text {}
	.cmark__text--name {
		font-size: 18px;
	}
	.cmark__text--caption {
		font-size: 14px;
	}
	.cmark__icon--00 {
		height: 80px;
		background: url(../img/cmark__icon--00.png);
		background-size: 80px 80px;
	}
	.cmark__icon--01 {
		height: 92px;
		background: url(../img/cmark__icon--01.png);
		background-size: 80px 92px;
	}
	.cmark__icon--02 {
		height: 82px;
		background: url(../img/cmark__icon--02.png);
		background-size: 80px 82px;
	}
	.cmark__icon--03 {
		height: 80px;
		background: url(../img/cmark__icon--03.png);
		background-size: 80px 80px;
	}
	.cmark__icon--04 {
		height: 76px;
		background: url(../img/cmark__icon--04.png);
		background-size: 80px 76px;
	}
	.cmark__icon--05 {
		height: 145px;
		background: url(../img/cmark__icon--05.png);
		background-size: 80px 145px;
	}

}
/* --------------------------------------------------- /SP ---- */
