@charset "utf-8";
/* ===================================================================
CSS
 file name  :  contact.css
=================================================================== */
/* =====================================
フローチャート
======================================== */
.flowchart ul{
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 460px;
}
.flowchart.two-step ul{
	max-width: 340px;
}
.flowchart ul li{
	position: relative;
}
.flowchart ul li div{
	background: #EAEAEA;
	color: #333333;
	text-align: center;
	line-height: 1.4;
	border-radius: 100px;
	padding: 0.5em 2em;
}
.flowchart ul li div.current{
	background: #000000;
	color: #FFFFFF;
}
.flowchart ul li::after{
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #CCCCCC;
}
.flowchart ul li:last-child::after {
    content: none;
}
@media screen and (max-width: 768px) {
	.flowchart ul{
		margin: auto;
		padding: 0 20px;
	}
    .flowchart.two-step ul{
        max-width: 280px;
    }
}
@media screen and (max-width: 480px) {
	.flowchart ul{
		max-width: 360px;
	}
	.flowchart ul li div{
		font-size: 1.0rem;
	}
}

/* =====================================
フォーム
======================================== */
/*チェックボックス基本カスタマイズ*/
input[type="checkbox"],
input[type="radio"]{
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}
label.check,
label.radio{
	position: relative;
	display: block;
	word-break: break-all;
	line-height: 1.4;
}
label.check input[type="checkbox"] + span,
label.radio input[type="radio"] + span{
	position: relative;
	padding: 0 10px 0 30px;
}
label.check.check_only {
	line-height: 1.0;
}
label.check.check_only input[type="checkbox"] + span{
	padding: 0 0 0 0;
}
label.check span,
label.radio span{
	display: inline-block;
}
label.check input[type="checkbox"],
label.radio input[type="radio"]{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
/*チェックボックス*/
label.check input[type="checkbox"] + span::before,
label.check input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.check input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
	border-radius: 3px;
}
label.check input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 3px 6px;
	width: 6px;
	height: 10px;
}
label.check input[type="checkbox"]:checked + span::before {
	background-color: #000000;
	border: 1px solid #000000;
}
label.check input[type="checkbox"]:checked + span::after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*ラジオボタン*/
label.radio input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
}
label.radio input[type="radio"] + span::before {
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
}
label.radio input[type="radio"]:checked + span::before {
	border: 6px #000000 solid;
}
/*セレクトボックス基本カスタマイズ*/
.select_wrap{
	position: relative;
	display: inline-block;
}
.select_wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 1px #000000;
	border-right: solid 1px #000000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	z-index: 2;
}
.select_wrap .select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	position: relative;
	z-index: 1;
	padding: 0 40px 0 10px;
	border: 1px solid #A5A5A5;
	background: #FFF;
	color: #333;
	border-radius: 2px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
/*テキスト系基本カスタマイズ*/
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],textarea{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #A5A5A5;
	border-radius: 2px;
	padding: 0.5em 0.7em;
	width: 100%;
}
/*レンジバー基本カスタマイズ*/
.range_control.ui-widget-content{
	background-color: #e6e6e6;
	border: none;
	margin-left: 10px;
	margin-right: 10px;
	height: 8px;
}
.range_control .ui-slider-range{
	background-color: #999999;
}
.range_control .ui-slider-handle{
	top: -7px;
	width: 22px;
	height: 22px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
/* =====================================
お問い合わせ
======================================== */
.form_wrap{
	margin: 50px auto auto;
}
p.form_lead{
	margin-bottom: 3em;
}
.form_table{
	width: 100%;
	border-bottom: 1px solid #CCCCCC;
	line-height: 1.8;
}
.form_table th{
	width: 30%;
	border-top: 1px solid #CCCCCC;
	text-align: left;
	color: #000000;
	padding: 20px 10px;
	vertical-align: middle;
    font-weight: 500;
}
.form_table td{
	width: 70%;
	border-top: 1px solid #CCCCCC;
	padding: 20px 10px;
	position: relative;
}
@media print, screen and (min-width: 769px) {
	.form_table ul.list_col2,
	.form_table ul.list_col3{
		display: flex;
		flex-wrap: wrap;
	}
	.form_table ul.list_col2 li{
		width: 50%;
		margin: 0.5em 0;
	}
	.form_table ul.list_col3 li{
		width: 33.333%;
		margin: 0.5em 0;
	}
}
.required{
	border: 1px solid #9A1E00;
	border-radius: 50px;
	color: #9A1E00;
	font-size: 1.2rem;
	font-weight: 300;
	padding: 0.1em 0.7em;
	margin-left: 1em;
}
.form_table .sub_text{
	margin: 0 0 0.5em 0;
    font-size: 1.4rem;
}
.form_table .sub_text.mt{
	margin: 0.5em 0;
}
.form_table a.privacy_link{
    color: #BE2D1B;
}
.form_btn_area{
    margin: 50px auto auto;
	max-width: 380px;
}
.form_btn_area .btn_wrap{
	width: 100%;
	background: #000000;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
	transition: all .3s;
}
@media print, screen and (min-width: 769px) {
    .form_btn_area .btn_wrap:hover{
        background: #7E7462;
    }
}
.form_btn_area .btn_wrap input[type="submit"]{
	text-decoration: none;
	display: block;
	background: none;
	padding: 1.5em 1em;
	text-align: center;
	color: #FFF;
	font-weight: 500;
	width: 100%;
	line-height: 1;
}
.form_thanks{
	max-width: 880px;
	margin: auto;
	border: 1px solid #CCCCCC;
	padding: 50px 50px;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.form_wrap{
	    margin: 30px auto auto;
	}
	p.form_lead{
		margin-bottom: 2em;
	}
	.form_table th{
		display: block;
		width: 100%;
		padding: 15px 0 0 0;
	}
	.form_table td{
		display: block;
		width: 100%;
		border-top: none;
		padding: 15px 0px;
	}
	.form_table ul.list_col2 li,
	.form_table ul.list_col3 li{
		margin: 0.8em 0;
	}
	.required{
		font-size: 1.0rem;
	}
    .form_table .sub_text{
        font-size: 1.2rem;
    }
	.form_btn_area{
		margin-top: 30px;
	}
	.form_btn_area .btn.back{
		width: 160px;
		margin-right: 10px;
	}
	.form_thanks{
		padding: 30px 20px;
	}
}