@charset "UTF-8";


@media screen and (max-width: 640px) {
	.sp_none {
		display: none;
	}

	.naiyo {
		margin-top: 20px;
	}
}


@media screen and (min-width: 641px) {
	.pc_none {
		display: none;
	}

	.naiyo {
		margin-top: 30px;
	}
}

.form_detail {
	margin-bottom: 60px;
}

.stepflowArea {
	margin: 40px 0;
}

@media screen and (max-width: 640px) {
	.stepflowArea {
		margin: 20px 0;
	}
}

.tac {
    text-align: center;
}

.stepflow {
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}
.stepflow li {
    line-height: 1.3;
    position: relative;
    display: table-cell;
    width: 33%;
    padding: 12px 0 15px 0;
    text-align: center;
    color: #333;
    font-weight: bold;
    background: #FEF5ED;
}
.stepflow li:last-child:before,
.stepflow li:last-child:after {
    display: none;
}
.stepflow li:before,
.stepflow li:after {
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
    content: '';
}
.stepflow li:before {
    z-index: 1;
    top: -8px;
    right: -1em;
    border-width: 40px 0 40px 1em;
    border-style: solid;
    border-color: transparent transparent transparent #d7d7d7;
}
.stepflow li:after {
    z-index: 1;
    top: -8px;
    right: -.9em;
    border-width: 40px 0 40px 1em;
    border-style: solid;
    border-color: transparent transparent transparent #FEF5ED;
}
.stepflow li.is-current {
    background: #FF9533;
    color: #fff;
}
.stepflow li.is-current:after {
    border-color: transparent transparent transparent #FF9533;
}

table.tbr {    
	width: 100%;
    border-collapse: collapse;
    line-height: 1.8;
    border-collapse: collapse;
    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

table.tbr th {
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    background: #FEF5ED;
    vertical-align: middle;
    width: 35%;
}

table.tbr td {
    padding: 10px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    font-weight: normal;
    background: #fff;
    font-weight: 500;
    vertical-align: middle;
}

@media screen and (max-width: 640px) {
	table.tbr th,
	table.tbr td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
}

.contactform input[type='text'],
.contactform input[type='email'],
.contactform input[type='tel'],
.contactform input[type='url'],
.contactform textarea,
.contactform select {
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #d5d5d5;
    padding: 10px;
}
.contactform input[type='text'],
.contactform input[type='email'],
.contactform input[type='tel'],
.contactform input[type='url'],
.contactform textarea {
    width: 100%;
}
.contactform input#zip1,
.contactform input#zip2 {
    width: 40%;
}

.contactform .contact_radio li + li {
	margin-top: 4px;
}

.contactform .contact_radio input {
	margin-right: 8px;
}

.contactform table.tbr th span {
    font-size: 12px;
    float: right;
    padding: 2px 7px;
    color: #fff;
    background: #c00;
}
form .submit {
    margin: 30px 0 0 0;
    text-align: center;
}
form .submit .btn {
	font-weight: bold;
    border: none;
    background: #e13428 url("../image/inquiry/arrow.png") no-repeat right 20px center;
    background-size: 16px auto;
    color: #fff;
    padding: 20px 60px;
    cursor: pointer;
    transition: opacity .2s;
}

form .submit .btn:hover {
    opacity: 0.7;
}

.form_detail .submitBtn {
    text-align: center;
    margin-top: 30px;
}

.form_detail .submitBtn .btn {
    font-weight: bold;
    border: none;
    background: #e13428 url("../image/inquiry/arrow.png") no-repeat right 20px center;
    background-size: 16px auto;
    color: #fff;
    padding: 20px 60px;
    cursor: pointer;
    transition: opacity .2s;
}

.form_detail .submitBtn .btn:hover {
    opacity: 0.7;
}

.backBtn {
    text-align: center;
    margin-top: 20px;
}

.backBtn .back_btn {
    padding: 4px 20px;
}



/* エラーメッセージ */
.err_block {
    clear: both;
    padding: 12px;
    margin: 0 0 20px;
    background: #fff3f3;
}
.err_block p {
    color: #e00000;
}
.err_block p.err_tit {
    font-weight: bold;
    margin: 0 0 5px;
    padding: 2px 0 2px 10px;
    color: #fff;
    background: #e00000;
}
/* タグ　エラー */
.contactform label.error {
    border: 1px solid #ff8383;
    background: #fff3f3;
    display: inline-block;
}
.contactform input.error {
    border: 1px solid #ff8383;
    background: #fff3f3;
}
.contactform select.error {
    border: 1px solid #ff8383;
    background: #fff3f3;
}
.contactform textarea.error {
    border: 1px solid #ff8383;
    background: #fff3f3;
}
fieldset {
    display: inline;
    padding: 3px;
}
fieldset.error {
    background: #fff3f3;
}

.agreeBox {
	margin-top: 40px;
	text-align: center;
}

.privacyBox_tit {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: left;
}

.privacyBox {
	height: 300px;
	overflow-y: scroll;
	text-align: left;
}

@media screen and (max-width: 640px) {
	.privacyBox {
		height: 200px;
	}
}

.privacyBlock + .privacyBlock {
	margin-top: 20px;
}

.privacyBlock ul > li {
	margin: 0 0 0 20px;
	list-style-type: circle;
} 

.privacyBlock ol > li {
	margin: 0 0 0 20px;
	padding: 0 0 0 6px;
	list-style: decimal;
} 

.privacyBox .num {
	font-size: 16px;
	margin-bottom: 10px;
}

.agree_checkbox {
	margin-top: 30px;
}

.agree_checkbox input {
	margin: 0 10px 0 0;
}