@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;
    font-size: 1.4rem;
}
.flowchart ul li div.current{
	background: #2B0608;
	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;
    }
	.flowchart ul li div{
		font-size: 1.2rem;
	}
}
@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 35px;
}
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: 2px;
	left: 0;
	opacity: 0;
}
/*チェックボックス*/
label.check input[type="checkbox"] + span::before,
label.check input[type="checkbox"] + span::after {
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.check input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #FFF;
	width: 20px;
	height: 20px;
	border: 1px solid #91817C;
	border-radius: 3px;
}
label.check input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 4px 6px;
	width: 6px;
	height: 10px;
}
label.check input[type="checkbox"]:checked + span::before {
	background-color: #2B0608;
	border: 1px solid #2B0608;
}
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 #91817C;
}
label.radio input[type="radio"]:checked + span::before {
	border: 6px #2B0608 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 #91817C;
	background: #FFF;
	color: #333;
	border-radius: 3px;
	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 #91817C;
	border-radius: 3px;
	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_lead{
	margin: auto;
    max-width: 840px;
}
.form_wrap{
	margin: 50px auto auto;
    max-width: 840px;
}
.form_table{
	width: 100%;
}
.form_table th{
	width: 35%;
	text-align: left;
	color: #000000;
	vertical-align: top;
    font-weight: 600;
}
@media print, screen and (min-width: 769px) {
    .form_table th{
        padding-top: 20px;
    }
}
.form_table td{
	width: 65%;
	padding: 15px 10px;
	position: relative;
}
.required{
	border: 1px solid #9A1E00;
	border-radius: 50px;
	color: #9A1E00;
	font-size: 1.2rem;
	font-weight: 300;
	padding: 0.1em 0.8em;
	margin-left: 1em;
}
.form_table .sub_text{
	margin: 0 0 0.5em 0;
}
.form_btn_area{
    margin: 50px auto auto;
	max-width: 380px;
}
.form_btn_area .btn_wrap{
	width: 100%;
	background: #2B0608;
    border-radius: 100px;
    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: #3895C7;
    }
}
.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;
    text-align: center;
}
@media screen and (max-width: 768px) {
	.form_wrap{
	    margin: 30px auto auto;
	}
	.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;
	}
	.required{
		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;
	}
}
@media screen and (max-width: 480px) {
	.required{
		font-size: 1.0rem;
	}
}