@charset "UTF-8";

/* 共通 */
#wrapper {
	background: #fff;
}
main {
	padding: 100px 0 0;
	transition: 0.2s linear;
	&.dark {
		background: #222222;
	}
}

.mt0 {margin:0 auto}
.mt10 {margin:10px auto 0}
.mt20 {margin:20px auto 0}
.mt25 {margin:25px auto 0}
.mt30 {margin:30px auto 0}
.mt35 {margin:35px auto 0}
.mt40 {margin:40px auto 0}
.mt45 {margin:45px auto 0}
.mt50 {margin:50px auto 0}
.mt60 {margin:60px auto 0}
.mt70 {margin:70px auto 0}
.mt75 {margin:75px auto 0}
.mt80 {margin:80px auto 0}
.mt90 {margin:90px auto 0}
.mt100 {margin:100px auto 0}
.mt110 {margin:110px auto 0}
.mt120 {margin:120px auto 0}
.mt140 {margin:140px auto 0}
.mt150 {margin:150px auto 0}

/* パンくず */
#breadcrumb {
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 180%;
	text-align: right;
	a {
		color: #202020;
		text-decoration: none;
		&:hover {
			color: #FF3F00;
		}
	}
}
main.dark {
	#breadcrumb {
		color: #fff;
		a {
			color: #fff;
			&:hover {
				color: #FF3F00;
			}
		}
	}
}

/* 仮コンテンツ */
div.provisional_cont {
	max-width: 720px;
	margin: 0 auto;
	padding: 90px 10px 160px;
	p {
		margin: 50px auto 0;
		font-size: 24px;
		line-height: 200%;
	}
}

/* KV */
#sub_kv {
	height: 350px;
	margin: 0 auto;
	padding: 170px 0 0;
	div.kv_in {
		max-width: 1460px;
		margin: 0 auto;
		padding: 0 15px;
		display: flex;
		justify-content: space-between !important;
		align-items: flex-end;
		h2 {
			display: inline-block;
			margin: 0;
			padding: 0;
			span {
				display: inline-block;
				margin: 0;
				padding: 0;
				font-size: 64px;
				line-height: 130%;
				font-weight: var(--weight-nomal);
				font-family: var(--font-rock-salt);
				white-space: nowrap;
			}
		}
	}
}
main.dark {
	#sub_kv {
		div.kv_in {
			h2 {
				span {
					color: #fff;
				}
			}
		}
	}
}


/* Member */
#member_read {
	max-width: 1460px;
	margin: 0 auto;
	padding: 100px 60px;
	font-size: 24px;
	line-height: 180%;
	text-align: left;
	font-weight: var(--weight-nomal);
}
div.member_cont {
	margin: 0 auto;
	padding: 70px 0 70px;
	border-top: 1px solid #eee;
	position: relative;
	&:before {
		position: absolute;
		content: '';
		display: block;
		width: 20px;
		height: 1px;
		margin: 0;
		padding: 0;
		background: #222;
		top: -1px;
		left: calc(50% - 720px);
	}
@media screen and (max-width:1470px) {
	&:before {
		left: 10px;
	}
}
	div.member_in {
		max-width: 1460px;
		margin: 0 auto;
		padding: 0 10px;
		h3 {
			margin: 0;
			padding: 0;
			font-size: 30px;
			line-height: 160%;
			font-weight: var(--weight-extrabold1);
			font-family: var(--font-montserrat);
			text-align: left;
		}
		ul {
			margin: 0;
			padding: 0;
			list-style: none;
			display: flex;
			flex-wrap: wrap;
			li {
				width: 22.222%;
				margin: 40px 0 0 3.7037%;
				cursor: pointer;
				&:nth-of-type(4n - 3) {
					margin-left: 0;
				}
				&:nth-of-type(n + 5) {
					margin-top: 70px;
				}
				.img {
					width: 100%;
					height: 470px;
					img {
						width: 100%;
						height: 470px;
						border-radius: 15px;
						object-fit: cover;
						transition: 0.2s linear;
					}
				}
				&:hover {
					.img {
						img {
							filter: grayscale(100%);
						}
					}
				}
				.prof {
					margin: 20px 0 0;
					padding: 0;
					text-align: left;
					h5 {
						margin: 0;
						padding: 0;
						font-size: 14px;
						line-height: 150%;
						font-weight: var(--weight-nomal);
					}
					h4 {
						margin: 5px 0 0;
						padding: 0;
						font-size: 22px;
						line-height: 160%;
						font-weight: var(--weight-bold2);
					}
					p {
						margin: 8px 0 0;
						padding: 0;
						font-size: 16px;
						line-height: 160%;
						font-weight: var(--weight-nomal);
						white-space: nowrap;
					}
				}
			}
		}
	}
}

/* ===== オーバーレイ ===== */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.2s linear;
	z-index: 98;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ===== ドロワー ===== */
div.drawer {
	position: fixed;
	width: 85%;
	min-width: 1100px;
	height: calc(100% - 100px);
	margin: 0;
	padding: 110px 150px 110px 130px;
	background: #EEEEEE;
	top: 100px;
	right: -100%;
	transition: right 0.2s ease;
	z-index: 99;
	overflow-y: auto;
	.mamber_box {
		opacity: 0;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		transform: translateY(20px);
		.img {
			width: 40%;
			min-height: 400px;
			margin: 0;
			padding: 0;
			position: relative;
			z-index: 1;
			&:before {
				position: absolute;
				content: '';
				display: block;
				width: 100%;
				height: 100%;
				margin: 0;
				padding: 0;
				background: #F0FE07;
				border-radius: 20px;
				top: 5px;
				left: 5px;
				z-index: -1;
			}
			img {
				display: block;
				width: 100%;
				height: 677px;
				margin: 0;
				padding: 0;
				border-radius: 20px;
				object-fit: cover;
			}
		}
		.prof {
			width: 45%;
			margin: 0;
			padding: 0;
			text-align: left;
			h5 {
				margin: 0;
				padding: 0;
				font-size: 18px;
				line-height: 150%;
				font-weight: var(--weight-nomal);
			}
			h4 {
				margin: 10px 0 0;
				padding: 0;
				font-size: 34px;
				line-height: 160%;
				font-weight: var(--weight-bold2);
			}
			h6 {
				margin: 10px 0 0;
				padding: 0;
				font-size: 16px;
				line-height: 160%;
				font-weight: var(--weight-nomal);
				white-space: nowrap;
			}
			p {
				margin: 50px 0 0;
				padding: 0;
				font-size: 17px;
				line-height: 200%;
			}
		}
	}
	.drawer-nav {
		position: absolute;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		bottom: 20px;
		right: 20px;
		button {
			width: 60px;
			height: 60px;
			margin: 10px 0;
			padding: 0;
			border: none;
			background: #fff;
			border-radius: 50%;
			cursor: pointer;
			transition: 0.2s linear;
			&#prevBtn:hover {
				opacity: 0.8;
				transform: translate(0, -5px);
			}
			&#nextBtn:hover {
				opacity: 0.8;
				transform: translate(0, 5px);
			}
		}
	}

	.close {
		position: absolute;
		display: inline-block;
		width: 60px;
		height: 60px;
		margin: 0;
		padding: 0;
		border: none;
		background: #fff;
		border-radius: 50%;
		top: 30px;
		right: 20px;
		cursor: pointer;
		transition: 0.2s linear;
		&:hover {
			opacity: 0.8;
			transform: rotate(90deg);
		}
	}
	&.active {
		right: 0;
		.mamber_box {
			animation: contentFade 0.6s ease 0.4s forwards;
		}
	}
}
@keyframes contentFade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
div.top_service_btn.cont_btn {
	width: 425px;
	margin: 0 auto;
	padding-bottom: 170px;
	display: flex;
	justify-content: center;
}


/* Service */
#service_read {
	max-width: 1340px;
	margin: 0 auto;
	padding: 50px 10px 140px;
	text-align: left;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	div.txt {
		width: 610px;
		margin: 0;
		padding: 0;
		h3 {
			margin: 0;
			padding: 0;
			font-size: 30px;
			line-height: 200%;
			font-weight: var(--weight-bold1);
			color: #F0FE06;
		}
		p {
			width: 600px;
			margin: 60px 0 0;
			padding: 0;
			font-size: 17px;
			line-height: 200%;
			&:nth-of-type(n+2) {
				margin-top: 20px;
			}
		}
	}
	div.img {
		width: 600px;
		height: 410px;
		margin: 0 0 0 -10px;
		padding: 15px 0 0;
		background: url(../images/sub/service_approach_w.png) center / auto 100% no-repeat;
		position: relative;
		transition: 0.2s linear;
		span {
			position: absolute;
			width: 140px;
			height: 140px;
			margin: 0;
			padding: 0;
			font-size: 17px;
			line-height: 160%;
			font-weight: var(--weight-bold1);
			text-align: center;
			color: #fff;
			background: #222222;
			border-radius: 50%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			small {
				position: absolute;
				margin: 0;
				padding: 0;
				font-size: 60px;
				line-height: 160%;
				font-weight: var(--weight-extrabold1);
				font-family: var(--font-montserrat);
				font-style: italic;
				color: #666666;
			}
			&.circle1 {
				top: -10px;
				left: 305px;
				small {
					top: -35px;
					right: -20px;
				}
			}
			&.circle2 {
				top: 25px;
				left: 55px;
				small {
					top: -50px;
					right: 20px;
				}
			}
			&.circle3 {
				top: 210px;
				left: -20px;
				small {
					bottom: -50px;
					right: 30px;
				}
			}
			&.circle4 {
				top: 170px;
				left: 415px;
				small {
					bottom: -30px;
					right: -30px;
				}
			}
			&.circle5 {
				top: 300px;
				left: 220px;
				small {
					bottom: -50px;
					right: 30px;
				}
			}
		}
	}
}
main.dark {
	#service_read {
		div.txt {
			h3 {
				color: #F0FE06;
			}
			p {
				color: #fff;
			}
		}
		div.img {
			background: url(../images/sub/service_approach_g.png) center / auto 100% no-repeat ,url(../images/sub/service_approach_w.png) center / auto 100% no-repeat;
			span {
				color: #212121;
				background: #fff;
				border-radius: 50%;
			}
		}
	}
}
#service_benefit {
	max-width: 1340px;
	margin: 0 auto;
	padding: 50px 10px 170px;
	.benefit_ttl {
		margin: 0 auto;
		padding: 0;
		display: flex;
		justify-content: flex-end;
		position: relative;
		h3 {
			margin: 0;
			padding: 0;
			font-size: 50px;
			line-height: 200%;
			font-weight: var(--weight-bold1);
			text-align: right;
			strong {
				margin: 0;
				padding: 0;
				font-size: 200px;
				line-height: 100%;
				font-weight: var(--weight-extrabold1);
				font-family: var(--font-montserrat);
				font-style: italic;
			}
		}
		h4 {
			position: absolute;
			display: inline-block;
			margin: 0;
			padding: 0;
			font-size: 300px;
			line-height: 100%;
			font-weight: var(--weight-extrabold1);
			font-family: var(--font-montserrat);
			color: rgba(33,33,33,0.03);
			top: 0;
			right: -150px;
		}
	}
	.service_cont {
		margin: 70px auto 0;
		padding: 0;
		&:nth-of-type(n+3) {
			margin-top: 150px;
		}
		h4 {
			margin: 0;
			padding: 0;
			font-size: 45px;
			line-height: 140%;
			font-weight: var(--weight-nomal);
			display: flex;
			align-items: center;
			position: relative;
			span {
				margin: 0 40px 0 0;
				padding: 0;
				font-size: 100px;
				line-height: 100%;
				font-weight: var(--weight-extrabold1);
				font-family: var(--font-montserrat);
				font-style: italic;
			}
			&:before {
				position: absolute;
				content: '';
				display: block;
				margin: 0;
				padding: 0;
				width: 3000px;
				height: 1px;
				background: #222222;
				bottom: 12px;
				left: 0;
			}
		}
		.service_cont_in {
			margin: 80px auto 0;
			padding: 0;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			.txt_img {
				width: 500px;
				margin: 0;
				padding: 0;
				text-align: left;
				h5 {
					margin: 0;
					padding: 0;
					font-size: 30px;
					line-height: 200%;
					font-weight: var(--weight-bold1);
					strong {
						display: inline;
						margin: 0;
						padding: 0 0.2em;
						font-weight: var(--weight-bold1);
						background: linear-gradient(transparent 55%, #F0FE07 55%, #F0FE07 100%, transparent 100%);
					}
				}
				.img {
					margin: 100px 0 0;
					padding: 0;
					img {
						display: inline-block;
						margin: 0 0 0 -150px;
						border-radius: 15px;
					}
				}
			}
			ul {
				width: 52%;
				margin: 0;
				padding: 0;
				text-align: left;
				list-style: none;
				li {
					width: 100%;
					margin: 45px 0 0;
					padding: 0;
					&:first-of-type {
						margin-top: 0;
					}
					.ttl {
						display: inline-block;
						margin: 0;
						padding: 0;
						h6 {
							height: 50px;
							margin: 0;
							padding: 3px 25px 0;
							font-size: 22px;
							line-height: 160%;
							font-weight: var(--weight-bold1);
							color: #fff;
							display: flex;
							justify-content: center;
							align-items: center;
							position: relative;
							z-index: 1;
							&:before {
								position: absolute;
								content: '';
								display: block;
								margin: 0;
								padding: 0;
								background: #222222;
								top: 0;
								left: 0;
								right: 0;
								bottom: 0;
								border-radius: 5px;
								transform: skewX(-10deg);
								z-index: -1;
							}
						}
					}
					p {
						margin: 20px 0 0;
						padding: 0 0 0 25px;
						font-size: 17px;
						line-height: 200%;
					}
				}
			}
		}
		&.rev {
			h4 {
				justify-content: flex-end;
				&:before {
					left: auto;
					right: 0;
				}
			}
			.service_cont_in {
				flex-direction: row-reverse;
				.txt_img {
					.img {
						img {
							margin: 0 -150px 0 0;
						}
					}
				}
			}
		}
	}
}
main.dark #service_benefit {
	.benefit_ttl {
		h3 {
			color: #fff;
			strong {
				color: #fff;
			}
		}
	}
	.service_cont {
		h4 {
			color: #fff;
			span {
				color: #fff;
			}
			&:before {
				background: #fff;
			}
		}
		.service_cont_in {
			color: #fff;
		}
	}
}


/* About Us */
#about_read {
	max-width: 1340px;
	margin: 0 auto;
	padding: 50px 10px 220px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	div.txt {
		width: 780px;
		margin: 0;
		padding: 0;
		text-align: left;
		p {
			margin: 20px 0 0;
			padding: 0;
			font-size: 18px;
			line-height: 200%;
			font-family: var(--font-Shippori-min);
			&:first-of-type {
				margin-top: 0;
			}
		}
	}
	div.img {
		width: 350px;
		margin: 0;
		padding: 0;
		img {
			display: inline-block;
			margin: 0 0 0 -150px;
			padding: 0;
			border-radius: 15px;
		}
	}
	.get_activated {
		width: 100%;
		margin: 130px auto 0;
		padding: 0;
		h4 {
			margin: 0 auto;
			padding: 0 0 15px;
			font-size: 60px;
			line-height: 150%;
			font-weight: var(--weight-bold1);
			font-family: var(--font-rock-salt);
		}
		h3 {
			margin: 0 auto;
			padding: 0;
			p {
				margin: 20px auto 0;
				padding: 0;
				font-size: 42px;
				line-height: 200%;
				font-weight: var(--weight-bold1);
				font-style: italic;
			}
		}
	}
}
main.dark {
	#about_read {
		div.txt {
			p {
				color: #fff;
			}
		}
	}
	.get_activated {
		h4 {
			color: #F0FE06;
		}
		h3 {
			p {
				color: #fff;
			}
		}
	}

}
div.about_cont1 {
	margin: 0 auto;
	padding: 0 0 150px;
	border-top: 1px solid #eee;
	position: relative;
	&:before {
		position: absolute;
		content: '';
		display: block;
		width: 20px;
		height: 1px;
		margin: 0;
		padding: 0;
		background: #222;
		top: -1px;
		left: calc(50% - 720px);
	}
	&:first-of-type {
		margin-top: 90px;
	}
}
@media screen and (max-width:1470px) {
	&:before {
		left: 10px;
	}
}
div.about_cont2 {
	margin: 0 auto;
	padding: 50px 0 170px;
	&.bg {
		padding-bottom: 140px;
		background: #EEEEEE;
	}
}
div.about_cont_in {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 10px;
	text-align: left;
	h3 {
		margin: 0;
		padding: 60px 0 0;
		font-size: 30px;
		line-height: 200%;
		font-weight: var(--weight-bold1);
		display: flex;
		align-items: center;
		position: relative;
		&:before {
			position: absolute;
			content: '';
			display: block;
			margin: 0;
			padding: 0;
			width: 3000px;
			height: 1px;
			background: #222222;
			bottom: -20px;
			left: 0;
		}
		span {
			display: inline-block;
			margin: 0 0 0 35px;
			padding: 0;
			font-size: 24px;
			line-height: 100%;
			font-weight: var(--weight-extrabold1);
			font-family: var(--font-montserrat);
		}
	}
	dl {
		margin: 25px auto 0;
		padding: 0;
		text-align: left;
		border-bottom: 1px solid #EEEEEE;
		display: flex;
		flex-wrap: wrap;
		h4 {
			width: 100%;
			margin: 0;
			padding: 30px 0 20px 50px;
			font-size: 20px;
			line-height: 180%;
			font-weight: var(--weight-bold2);
			border-top: 1px solid #EEEEEE;
			&:first-of-type {
				border-top: none;
			}
			&:nth-of-type(2) {
				padding-top: 50px;
			}
		}
		dt {
			width: 250px;
			margin: 0;
			padding: 35px 30px 35px 100px;
			font-size: 17px;
			line-height: 180%;
			font-weight: var(--weight-bold2);
			border-top: 1px solid #EEEEEE;
		}
		dd {
			width: calc(100% - 250px);
			margin: 0;
			padding: 35px 35px;
			font-size: 17px;
			line-height: 180%;
			border-top: 1px solid #EEEEEE;
			p {
				margin: 10px 0 0;
				&:first-of-type {
					margin-top: 0;
				}
			}
		}
	}
	ul.office_img {
		margin: 60px auto 0;
		padding: 0 0 20px;
		list-style: none;
		display: flex;
		justify-content: space-between;
		li {
			width: 30.3%;
			margin: 0;
			padding: 0;
			img {
				width: 100%;
				height: 257px;
				border-radius: 15px;
				object-fit: cover;
			}
		}
	}
	.map_cont {
		max-width: 1120px;
		margin: 0 auto;
		text-align: left;
		p {
			margin: 65px 0 0;
			font-size: 17px;
			line-height: 180%;
		}
		.gmap {
			width: 100%;
			height: 500px;
			margin: 30px 0 50px;
			padding: 0;
			position: relative;
			iframe {
				position: absolute;
				width: 100%;
				height: 100%;
				margin: 0;
				padding: 0;
				top: 0;
				left: 0;
			}
		}
		&:last-of-type {
			.gmap {
				margin-bottom: 0;
			}
		}
	}
	.terms_box {
		max-width: 1120px;
		margin: 60px auto 0;
		font-size: 16px;
		line-height: 180%;
		text-align: left;
		strong {
			display: block;
			margin: 40px 0 0;
			padding: 0;
		}
		p {
			margin: 1em 0 0;
			padding: 0;
			span {
				display: block;
				margin: 0;
				padding: 0 0 0 1em;
				text-indent: -1em;
			}
			&.sign {
				text-align: right;
			}
		}
		ul {
			margin: 0;
			padding: 25px 0 0;
			list-style: none;
			li {
				width: 100%;
				margin: 10px 0 0;
				padding: 0 0 0 1.2em;
				text-indent: -1.2em;
			}
		}
	}
}
main.dark {
	div.about_cont_in {
		h3 {
			color: #fff;
			&:before {
				background: #fff;
			}
		}
		dl {
			color: #fff;
		}
		.map_cont {
			color: #fff;
		}
	}
}


/* Contact */
#contact_read {
	max-width: 1340px;
	margin: 0 auto;
	padding: 50px 10px 220px;
	font-size: 17px;
	line-height: 200%;
	text-align: left;
	.txt {
		width: 100%;
		max-width: 1220px;
		margin: 0 100px 0 0;
		padding: 45px 20px 45px 0;
		background: #EEEEEE;
		border-radius: 0 20px 20px 0;
		position: relative;
		&:before {
			position: absolute;
			content: '';
			display: block;
			width: 3000px;
			height: 100%;
			margin: 0;
			padding: 0;
			background: #EEEEEE;
			top: 0;
			left: -3000px;
		}
		strong {
			display: block;
			margin: 20px 0 0;
			padding: 0;
			&:first-of-type {
				margin-top: 0;
			}
		}
	}
	div.cont_tbl {
		width: 100%;
		margin: 120px auto 0;
		padding: 0;
		&.frame {
			margin-top: 0;
		}
		p.form_top {
			margin: 0;
			padding: 0;
			font-size: 15px;
			font-weight: var(--weight-bold1);
			text-align: left;
			span {
				margin: 0 10px 0 0;
				padding: 0;
				color: #FF3F00;
			}
		}
		div.form_cont {
			width: 100%;
			margin: 0 auto;
			padding: 38px 100px 0;
			dl {
				width: 100%;
				margin: 0;
				padding: 0;
				font-size: 17px;
				line-height: 180%;
				font-weight: var(--weight-bold1);
				text-align: left;
				display: flex;
				flex-wrap: wrap;
				dt {
					width: 290px;
					margin: 0 ;
					padding: 25px 20px 25px 0;
					font-weight: var(--weight-bold1);
					span {
						margin: 0 0 0 10px;
						font-size: 14px;
						color: #FF3F00;
					}
				}
				&.frame {
					dt{
						padding: 10px 20px 10px 0;
					}
				}
				dd {
					width: calc(100% - 290px);
					margin: 0;
					padding: 10px 0;
					input[type=text],
					input[type=tel],
					input[type=email],
					select {
						width: 100%;
						height: 60px;
						padding: 10px 10px;
						font-size: 18px;
						line-height: 180%;
						font-weight: var(--weight-noaml);
						font-family	: inherit;
						border: none;
						background: #EEEEEE;
						border-radius: 5px;
					}
					textarea {
						width: 100%;
						height: 250px;
						padding: 10px 10px;
						font-size: 17px;
						line-height: 180%;
						font-weight: var(--weight-noaml);
						font-family	: inherit;
						background: #EEEEEE;
						border: none;
						border-radius: 5px;
					}
					input[type=checkbox],
					input[type=radio] {
						margin: 0 5px 0 0;
						width: 20px;
						height: 20px;
						vertical-align: -0.3em;
					}
					div.privacy_box {
						width: 100%;
						margin: 0;
						padding: 20px 20px;
						font-size: 15px;
						line-height: 200%;
						background: #EEEEEE;
						border-radius: 5px;
						.box {
							padding: 0 10px 0 0;
							height: 230px;
							overflow-y: auto;
							scrollbar-color: #222222 #EEEEEE;
							scrollbar-width: thin;
							strong {
								display: block;
								margin: 30px 0 0;
								padding: 0;
								font-size: 17px;
								line-height: 200%;
								font-weight: var(--weight-bold1);
							}
							p {
								margin: 1em 0 0;
								padding: 0;
								span {
									display: block;
									margin: 0;
									padding: 0 0 0 1em;
									text-indent: -1em;
								}
								&.sign {
									text-align: right;
								}
							}
							ul {
								margin: 0;
								padding: 25px 0 0;
								list-style: none;
								li {
									margin: 10px 0 0;
									padding: 0 0 0 1.2em;
									text-indent: -1.2em;
								}
							}
						}
					}
					div.privacy_link {
						margin: 10px auto 0;
						padding: 0;
						font-size: 16px;
						line-height: 180%;
						text-align: center;
					}
						div.cont_tbl div.privacy_link label {
							display: inline-block;
							margin: 0 auto;
							padding: 0;
						}
				}
			}
			#contact_btn {
				width: 100%;
				margin: 0 auto;
				padding: 90px 0 0;
				display: flex;
				justify-content: center;
				div.form_btn1,
				div.form_btn2 {
					display: inline-block;
					width: 425px;
					height: 70px;
					margin: 0 10px;
					transition: 0.2s linear;
					position: relative;
					z-index: 1;
				}
				div.form_btn1 {
					&:before {
						position: absolute;
						content: '';
						display: block;
						margin: 0;
						padding: 0;
						border: 2px solid #999999;
						top: 0;
						left: 0;
						right: 0;
						bottom: 0;
						border-radius: 5px;
						transform: skewX(-10deg);
						z-index: -2;
						overflow: hidden;
						transition: 0.2s linear;
					}
					&:after {
						position: absolute;
						content: '';
						display: block;
						width: 100%;
						height: 100%;
						margin: 0;
						padding: 0;
						background: #202020;
						top: 0;
						left: 0;
						transform: skewX(-10deg) scaleX(0);
						border-radius: 5px;
						border: 2px solid #999999;
						transform-origin: right;
						transition: 0.2s linear;
						transition-property: transform;
						z-index: -1;
					}
					span {
						position: absolute;
						display: block;
						width: 20px;
						height: 18px;
						margin: 0;
						padding: 0;
						background: url(../images/icon/arrow_ico_b.png) center / contain no-repeat, url(../images/icon/arrow_ico_w.png) center / contain no-repeat;
						transition: 0.2s linear;
						top: calc(50% - 9px);
						right: 30px;
						z-index: 1;
					}
					button {
						display: block;
						width: 425px;
						height: 70px;
						font-size: 20px;
						line-height: 180%;
						margin: 0 auto;
						padding: 0;
						font-family	: inherit;
						color: #1F1F1F;
						font-weight: var(--main-font-bold1);
						background: none;
						cursor: pointer;
						border: none;
						transition: 0.2s linear;
					}
					&:hover {
						color: #fff;
						&:after {
							transform: skewX(-10deg) scaleX(1);
							transform-origin: left;
						}
						span {
							background: url(../images/icon/arrow_ico_w.png) center / contain no-repeat;
						}
						button {
							color: #fff;
						}
					}
				}
				div.form_btn2 {
					&:before {
						position: absolute;
						content: '';
						display: block;
						margin: 0;
						padding: 0;
						border: 2px solid #999999;
						background: #ddd;
						top: 0;
						left: 0;
						right: 0;
						bottom: 0;
						border-radius: 5px;
						transform: skewX(-10deg);
						z-index: -2;
						overflow: hidden;
						transition: 0.2s linear;
					}
					&:after {
						position: absolute;
						content: '';
						display: block;
						width: 100%;
						height: 100%;
						margin: 0;
						padding: 0;
						background: #555;
						top: 0;
						left: 0;
						transform: skewX(-10deg) scaleX(0);
						border-radius: 5px;
						border: 2px solid #999999;
						transform-origin: right;
						transition: 0.2s linear;
						transition-property: transform;
						z-index: -1;
					}
					span {
						position: absolute;
						display: block;
						width: 20px;
						height: 18px;
						margin: 0;
						padding: 0;
						background: url(../images/icon/arrow_ico_b.png) center / contain no-repeat, url(../images/icon/arrow_ico_w.png) center / contain no-repeat;
						transition: 0.2s linear;
						top: calc(50% - 9px);
						right: 30px;
						z-index: 1;
					}
					button {
						display: block;
						width: 425px;
						height: 70px;
						font-size: 20px;
						line-height: 180%;
						margin: 0 auto;
						padding: 0;
						font-family	: inherit;
						color: #1F1F1F;
						font-weight: var(--main-font-bold1);
						background: none;
						cursor: pointer;
						border: none;
						transition: 0.2s linear;
					}
					&:hover {
						color: #fff;
						&:after {
							transform: skewX(-10deg) scaleX(1);
							transform-origin: left;
						}
						span {
							background: url(../images/icon/arrow_ico_w.png) center / contain no-repeat;
						}
						button {
							color: #fff;
						}
					}
				}
			}
		}
	}
}
