@charset "UTF-8";

/* ▼▼▼ スタイルガイド
======================================================*/
/* ▼ 高さを揃える（使わない場合は削除） */
.foo {margin-bottom: 40px;}
.foo div {
	background: #ccc;
	padding: 20px;
	}
.foo .foo-name {background: #999;}


/* タイトル
--------------------------------------- */
.title_wrap{
	display: table;
	background: #999;
	width: 100%;
	height: 200px;
	margin: 0 0 30px;
}
	.title_wrap .title{
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 42px;
	}
	.title_wrap .title{
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 4.2rem;
		line-height: 1;
	}
	.title_wrap .title span{
		display: block;
		margin: 10px 0 0;
		font-size: 1.8rem;
		text-align: center;
	}

.sub_title{
	margin: 0 0 30px;
	font-size: 36px;
}
.btm_title{
	border-bottom: 2px solid #000;
	padding: 0 0 10px;
	margin: 0 0 30px;
	font-size: 32px;
}
.line_title{
	margin: 0 0 30px;
	font-size: 24px;
}
	.line_title:before{
		content: "";
		border-left: 4px solid #999;
		height: 1em;
		padding-right: 10px;
	}

.title_border{
	display: flex;
	align-items: center;
	font-size: 42px;
	margin: 0 0 30px;
	text-align: center;
}
	.title_border:before,
	.title_border:after {
		border-top: 1px solid;
		content: "";
		flex-grow: 1;
	}
	.title_border:before {
		margin-right: 20px;
	}
	.title_border:after {
		margin-left: 20px;
	}

/* table
--------------------------------------- */
/* table_parts_01 */
.table_parts_01{
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 100%;
}
	.table_parts_01 th,
	.table_parts_01 td{
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 20px;
		vertical-align: top;
	}
	td .red{
		color: #B40C00;
	}
	.table_parts_01 th:first-of-type,
	.table_parts_01 td:first-of-type{
		width: 30%;
	}
	.table_parts_01 th{
		background: #F7FAFD;
		text-align: center;
		font-weight: normal;
	}

/* table_parts_02 */
.table_parts_02{
	border-top: 1px solid #ccc;
	width: 100%;
}
	.table_parts_02 th,
	.table_parts_02 td{
		border-bottom: 1px solid #ccc;
		padding: 20px;
	}
	.table_parts_02 th{
		width: 25%;
	}

/* table_parts_03 */
.table_parts_03{
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 100%;
	margin-bottom: 37px;
}
	.table_parts_03 td{
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 20px;
		vertical-align: top;
		font-size: 18px;
    	font-weight: bolder;
		background: #fff;
	}
	.table_parts_03 th{
		background: #F5F5EF;
		width: 20%;
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		padding: 20px;
		vertical-align: top;
		font-size: 18px;
    	font-weight: 400;
	}

/* table_parts_04 */
.table_parts_04 {
	width:100%;
	border: #ccc solid 1px;
	border-collapse: collapse;
}
	.table_parts_04 thead th {
		background: #eee;
		border-right: #ccc solid 1px;
		border-bottom: #ccc solid 1px;
		padding: 10px 15px;
	}
	.table_parts_04 thead th:last-child {
		border-right: #ccc solid 1px;
	}
	.table_parts_04 tbody th {
		background: #eee;
		border-bottom:#ccc solid 1px;
		padding:10px 15px;
		vertical-align:top;
	}
	.table_parts_04 tbody tr:last-child th {
		border-bottom:#ccc solid 1px;
	}
	.table_parts_04 tbody td {
		border-left:#ccc solid 1px;
		border-bottom:#ccc solid 1px;
		padding:10px 15px;
		vertical-align:top;
	}

/* ボタンエフェクト
--------------------------------------- */
.btn01,.btn02,.arrow_btn,.boder_btn{
	max-width: 230px;
	width: 100%;
}
.btn01 a {
	display: block;
	border: 2px solid #333;
	padding: 10px;
	color: #333;
	font-weight: bold;
	background: #fff;
	border-radius: 5px;
	transition: .3s;
	text-align: center;
}
	.btn01 a:hover {
		background: #333;
		color: #fff;
		opacity: 1;
	}


.btn02 a {
	display: block;
	color: #333;
	text-align: center;
	font-weight: bold;
	background: transparent;
	padding: 10px;
	border: 2px solid #333;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	transition: .3s;
}
	.btn02 a::before {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		background: #333;
		transform-origin: 100% 50%;
		transform: scaleX(0);
		transition: transform ease .3s;
	}
	.btn02 a:hover {
	  color: #fff;
		opacity: 1;
	}
	.btn02 a:hover::before {
		transform-origin: 0% 50%;
		transform: scaleX(1);
	}

.arrow_btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0 auto;
	border: 1px solid #000;
	}
	.arrow_btn a::after{
		display: inline-block;
		content: "";
		width: 30px;
		height: 4px;
		border-bottom: 1px solid #000;
		border-right: 1px solid #000;
		transform: skew(45deg);
		margin-left: 20px;
	}
	.arrow_btn a:hover{
		background: #13AE67;
		border: 1px solid #13AE67;
		color: #fff;
		opacity: 1;
	}
	.arrow_btn a:hover::after{
		position: relative;
		left: 10px;
		animation: arrow_move .3s ease;
		border-color: #fff;
	}
@keyframes arrow_move{
	0%{
		left: 0;
	}
	100%{
		left: 10px;
	}
}

.boder_btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0 auto;
	border: 1px solid #000;
	text-align: center;
	position: relative;
}
.boder_btn a:hover:hover{
	opacity: 1;
}
	.boder_btn a:hover::before,
	.boder_btn a:hover::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		left: 7px;
		bottom: -7px;
	}
	.boder_btn a:hover::before {
		border-bottom: 1px solid #000;
		animation: boderBtn01 .5s ease-in-out;
	}
	@keyframes boderBtn01 {
		from{
			width: 0;
		}
		to {
			width: 100%;
		}
	}
	.boder_btn a:hover::after {
		border-right: 1px solid #000;
		animation: boderBtn02 .5s ease-in-out;
	}
	@keyframes boderBtn02 {
		from{
			height: 0;
		}
		90% {
			height: 0;
		}
		to {
			height: 100%;
		}
	}

/* ▼▼▼ 480px〜768px
======================================================*/
@media screen and (max-width: 768px) {
	/* タイトル
	--------------------------------------- */

	/* table
	--------------------------------------- */
	/* table_parts_01 */
	.table_parts_01 th:first-of-type,
	.table_parts_01 td:first-of-type{
		width: 40%;
	}
		.table_parts_01 th,
		.table_parts_01 td{
			padding: 15px;
		}

	/* table_parts_02 */
	.table_parts_02 th,
	.table_parts_02 td{
		padding: 15px;
	}
		.table_parts_02 th{
			width: 30%;
		}

	/* table_parts_03 */
	.table_parts_03 th,
	.table_parts_03 td{
		padding: 15px;
		font-size: 14px;
	}
		.table_parts_03 th{
			background: #F8F8F8;
			width: 30%;
		}

	/* table_parts_04 */
	.table_parts_04 thead {
		display: none;
	}
		.table_parts_04 tbody th {
			display: block;
		}
		.table_parts_04 tbody td {
			display: block;
		}
		.table_parts_04 tbody td::before {
			content: attr(label);
			float: left;
			clear: both;
			font-weight: bold;
		}
		.table_parts_04 tbody td p {
			padding-left: 6em;
		}
}
