@charset "UTF-8";

/* ▼▼▼ お問い合わせ
=====================================*/
.tel_wrap{
	display: table;
	margin-bottom: 70px;
	width: 100%;
}
.tel_wrap dt,.tel_wrap dd{
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	height: 120px;
}
.tel_wrap dt{
	background: #3D4E61;
	padding: 0 35px;
	color: #FFF;
	font-weight: 600;
	text-align: center;
}
.tel_wrap dd{
	background: #EEE;
	padding: 0 45px;
}
.tel_wrap dd span{
	vertical-align: middle;
}
.tel_wrap dd .tel-moji{
	margin-right: 20px;
	font-size: 42px;
	font-weight: 600;
}

ul.step {
	width: 80%;
	margin: 0 auto 30px;
	text-align: center;
	overflow: hidden;
	}
	ul.step li {
		display: inline-block;
		background: #C3C3C3;
		width: 25%;
		padding: 10px 0;
		margin-right: 5%;
		text-align: center;
		position: relative;
		}
	ul.step li:last-child {margin-right: 0;}
	ul.step li.now {background: #BE1020;color: #fff;}
	ul.step li:after {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 7px 0 7px 7px;
		border-color: transparent transparent transparent #959595;
		position: absolute;
		top: 15px;
		right: -13%;
		}
	ul.step li.now:after {color: #000;}
	ul.step li:last-child:after {display: none;}

.read {
	text-align: center;
	margin-bottom: 30px;
	}
	.read > span:before {
		content: "必須";
    background: #BE1020;
		border-radius: 3px;
    padding: 2px 4px;
    margin-right: 5px;
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
		}
table.info {
	width: 100%;
	border-top: 1px solid #ccc;
	margin: 0 auto 40px;
	font-size: 16px;
	overflow: hidden;
	}
	table.info th,
	table.info td {
		border-bottom: 1px solid #ccc;
		line-height: 1.5;
		font-weight: normal;
		vertical-align: top;
		overflow: hidden;
		}
	table.info th {
		width: 25.5%;
		position: relative;
		vertical-align: middle;
		padding: 30px 10px;
		}
	table.info td {padding: 20px;}
	table.info .list {padding: 20px 20px 0 20px;}
	table.info th:after {
		content: "必須";
    background: #BE1020;
		border-radius: 3px;
    padding: 2px 4px;
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
    top: 30px;
    right: 5px;
		}
	table.info th.no:after {display: none;}
	table.info th.top {vertical-align: top;}
	table.info td .kome {
		font-size: 12px;
		color: #df0024;
		}
	table.info td input + .kome {
			display: block;
	    margin-top: 10px;
		}
		table.info td .check_list li {
			display: inline-block;
			margin: 0 10px 10px 0;
			}
		table.info td .check_list li:last-child {margin-right: 0;}

			table.info td .check_list li label {
				border-radius: 5px;
				cursor: pointer;
				display: inline-block;
				}
		table.info td input,table.info td textarea {
			height: auto;
			background: #FEEAEB;
			border: none;
			padding: 15px;
			font-size: 16px;
			border-radius: 5px;
			border: 1px solid #ccc;
			}
			table.info td input::placeholder,table.info td textarea::placeholder {
				color: #999;
				}
		table.info td input.w01 {width: 100%;}
		table.info td input.w02 {
			width: 44%;
			margin: 0 10px 0 0;
			}
		table.info td input.w03 {width: 23%;}

		table.info td textarea {width: 100%;}
		table.info td div p:first-child {margin-bottom: 10px;}
		.postal_code {
			margin-bottom: 20px;
			}
			.postal_code li{
				display: inline-block;
				margin-right: 5px;
				}
/* チェックボックス */
input[type=checkbox]{
	display: none;
	}
	.checkbox01-parts{
		padding-left: 30px;
		position:relative;
		margin-right: 5px;
		color: #333;
		border-radius: 5px;
		cursor: pointer;
		display: inline-block;
		padding: 7px 0;
		}
		.checkbox01-parts::before{
			content: "";
			display: inline-block;
			margin-right: 10px;
			width: 15px;
			height: 15px;
			border: 1px solid #999;
			border-radius: 4px;
			vertical-align: middle;
			}
			input[type=checkbox]:checked + .checkbox01-parts{
				color: #E5012D;
				}
				input[type=checkbox]:checked + .checkbox01-parts::after{
					content: "";
					display: inline-block;
					position: absolute;
					top: 16px;
					left: 7px;
					width: 3px;
					height: 8px;
					transform: rotate(40deg);
					border-bottom: 1px solid #fff;
					border-right: 1px solid #fff;
					}
					input[type=checkbox]:checked + .checkbox01-parts::before{
						border: none;
						background: #E5012D;
						border: 1px solid #E5012D;
						}

/* ラジオボタンカスタム */
input[type=radio]{
	display: none;
	vertical-align: middle;
	}
	.radio_parts{
		padding-left: 25px;
		position:relative;
		vertical-align: middle;
		}
	.radio_parts::before{
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 15px;
		height: 15px;
		border: 1px solid #999;
		border-radius: 50%;
		}
	input[type=radio]:checked + .radio_parts{
		color: #E5012D;
		}
	input[type=radio]:checked + .radio_parts::before{
		border: 1px solid #E5012D;
		}
	input[type=radio]:checked + .radio_parts::after{
		content: "";
		display: block;
		background: #E5012D;
		position: absolute;
		top: 5px;
		left: 5px;
		width: 7px;
		height: 7px;
		border-radius: 50%;
		}
/* ▼ プライバシー */
.privacy_read {
	margin-bottom: 60px;
	font-size: 16px;
	}
.privacy_read a{
	color: #21A2E3;
}
.btn_box {
	margin-bottom: 90px;
	overflow: hidden;
	position: relative;
	}
	.btn_box .agree {
		margin-bottom: 20px;
		text-align: center;
		font-size: 16px;
		}
	.btn_box ul.btn {
			text-align: center;
			position: relative;
			}
		.btn_box ul.btn li {
			display: inline-block;
			width: 360px;
			position: relative;
			margin-right: 10px;
			font-size: 18px;
			}
		.btn_box ul.btn li.back {
			background: #999;
			}
		.btn_box ul.btn li:last-child {margin-right: 0;}
		.btn_box ul.btn li a {
			display: block;
			width: 100%;
			max-width: 100%;
			padding: 20px;
			color: #fff;
			text-align: center;
			text-decoration: none;
			position: relative;
			}
		.btn_box ul.btn li a:hover {opacity: 0.6;}

		a.more_btn::after,
		a.back_btn::after{
			content: '';
			width: 6px;
			height: 6px;
			border-style: solid;
			border-width: 2px;
			top: calc(50% - 5px);
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
			pointer-events: none;
			position: absolute;
		}
		a.more_btn::after{
			border-color: #FFF #FFF transparent transparent;
			right: 15px;
		}
		a.back_btn::after{
			border-color: transparent transparent #FFF #FFF;
			left: 15px;
		}

/* ▼▼▼ 768px
=====================================*/
@media screen and (max-width: 768px) {

	.tel_wrap{
		display: block;
		margin-bottom: 40px;
	}
	.tel_wrap dt,.tel_wrap dd{
		display: block;
		font-size: 14px;
		height: auto;
	}
	.tel_wrap dt{
		padding: 7px 0;
	}
	.tel_wrap dd{
		padding: 15px 60px 15px;
	}
	.tel_wrap dd span{
	}
	.tel_wrap dd .tel-moji{
		margin-right: 0;
		font-size: 20px;
	}
ul.step {
	width: 100%;
	margin: 0 auto 15px;
	}
	ul.step li {
		display: block;
		width: 100%;
		padding: 5px 0;
		margin-bottom: 30px;
	}
	ul.step li:last-child{margin-bottom: 0;}
	ul.step li:after {
		top: auto;
		bottom: -22px;
		right: calc(50% - 5px);
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		}

.read {
	margin-bottom: 30px;
	font-size: 14px;
	}

table.info {
	max-width: 100%;
	}
	table.info th,
	table.info td {
		display: block;
    padding: 25px 0;
		font-size: 16px;
		}
	table.info th {
		width: 100%;
		border: none;
		}
	table.info td {padding: 0 0 30px;}
	table.info .list {padding: 0 0 20px;}
	table.info th:after {
		position: static;
		margin-left: 10px;
		}
	table.info td .kome {
		padding-top: 5px;
		display: block;
		}
		table.info td .check_list li {
			display: inline-block;
			margin: 0 5px 10px 0;
			float: none;
			font-size: 16px;
			cursor: pointer;
			}
			table.info td .check_list li label {
				padding: 0;
				}

		table.info td span {
			margin-right: 0;
			}
		table.info td input, table.info td textarea {
			padding: 15px 10px;
			}
		table.info td input.w01 {width: 100%;}
		table.info td input.w02 {
			width: 100%;
			margin: 0 0 0 0;
			}
		table.info td input.w03 {width: 100%;}
		table.info td input.w04 {width: 100%;}

		.postal_code li{
			display: block;
			margin-right: 0;
			}
			.postal_code li:first-child{
				margin-bottom: 10px;
			}

/* ▼ プライバシー */
#privacy {
	height: 150px;
	}
	.btn_box .agree {
		margin-bottom: 20px;
		font-size: 14px;
		}
	.btn_box ul.btn {
		width: 100%;
		margin: 0 auto;
		}
		.btn_box ul.btn li {
			width: 100%;
			margin: 0 0 10px;
			}
		.btn_box ul.btn li:last-child {margin-right: auto;}

}
