@charset "utf-8";
.complete_hd {
		font-size: 36px;
		font-weight: 500;
		text-align: center;
		margin: 0 0 50px
}
.complete_caption {
		text-align: center;
		line-height: 2.0;
}
.backhome_btn_wrap {
		display: flex;
		justify-content: center;
}
.backhome_btn {
		width: 320px;
}
.backhome_btn a {
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: YakuHanMP, "Noto Serif JP", serif;
		width: 100%;
		height: 50px;
		border-radius: 60px;
		background: none;
		border: 1px solid #000;
		transition: background 0.2s;
		cursor: pointer;
		color: #000;
		font-size: 16px;
		font-weight: 500;
		box-sizing: border-box;
		padding: 0 25px;
		text-align: center;
		text-decoration: none;
		position: relative;
}
.backhome_btn a::after {
		content: '';
		display: block;
		position: absolute;
		top: 1px;
		right: 5px;
		width: 49px;
		height: 49px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 49px;
		background-image: url("../images/icon_left_blk.png");
}
@media (hover: hover) {
		.backhome_btn a:hover {
				background: #000;
				color: #fff;
		}
		.backhome_btn a:hover::after {
				background-image: url("../images/icon_left_wht.png");
		}
}
@media(max-width: 767px) {
		.contact_wrap {
				padding: 60px 15px;
		}
		.complete_hd {
				font-size: 26px;
				margin: 0 0 40px
		}
		.complete_caption {
				font-size: 15px;
		}
		.backhome_btn {
				width: 190px;
		}
}