/* style css */
body, html {
	min-width:320px
}

::selection {
   background: #7c1925;
   color: #fff
}

::-moz-selection {
   background: #7c1925;
   color: #fff
}


::-webkit-selection {
    background: #7c1925;
   color: #fff
}


.flex {
	display: -webkit-flex;
	display: flex
}

.flex-v {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; 
	align-items: center
}

body, html {
	
}

body {
	-webkit-font-smoothing: antialiased;
	color:#333;
}

.form-box {
	background-image:url('../img/form_bg.png');
	background-size:100% 100%;
	max-width:700px;
	margin: auto;
	padding: 70px 0 70px;
	color:#a4a4a4;
}

.form-box .title {
	max-width:80%;
	margin: auto;
	margin-bottom: 25px;
	text-align:center;
}

.form-box .form-zone {
	max-width:420px;
	width: 80%;
	margin: auto;
}

.form-box .form-zone .F-left {
	width: 30%;
}

.form-box .form-zone .F-right {
	width: 68%;
}

.form-box .form-zone .F-left input {
	width: 100%;
	height: 50px;
	border:none;
	margin-bottom: 5px;
	color:#a4a4a4;
}

.form-box .form-zone .F-right textarea {
	width: 100%;
	height: 105px;
	border:none;
	color:#a4a4a4;
}

.form-box .form-group {
	margin-bottom:20px;
	max-width:100%;
}

.form-box .agree {
	text-align:center;
	margin-bottom: 10px;
	font-size:13px;
	font-weight:bold;
	height: 21px;
	position:relative;
}

.form-box .agree label {
	position:absolute;
	left: 50%;
	top: 0;
	transform:translate(-50%, 0);
	cursor:pointer;
	letter-spacing:-2px;
}

.form-box .agree input[type='checkbox'] {
    display: none;
}

.form-box .agree input[type='checkbox'] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 21px;
    padding-left: 16px;
    height: 21px;
    background: url('../img/check_off.png') left/16px no-repeat;
	vertical-align:middle;
}

.form-box .agree input[type='checkbox']:checked + label {
	height: 21px;
    background-image: url('../img/check_on.png');
	vertical-align:middle;
	line-height:21px;
}


.form-box .btn {
	background-color:#9e0b0f;
	display:inline-block;
	height: 30px;
	line-height:30px;
	color:#fff;
	text-align:center;
	width: 190px;
	font-size:14px;
	letter-spacing:-2px;
	cursor:pointer;
	font-weight:bold;
}



@media(min-width:992px) {
	.pc {
		display:block !important
	}

	.mobile {
		display:none !important
	}
}

@media(max-width:991px) {

	.pc {
		display:none !important
	}

	.mobile {
		display:block !important
	}

	

}

@media(max-width:575px) {

	


}