:placeholder-shown {
    color: #ccc; }

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
    color: #ccc; }

/* Firefox 18- */
:-moz-placeholder {
    color: #ccc; opacity: 1; }

/* Firefox 19+ */
::-moz-placeholder {
    color: #ccc; opacity: 1; }

/* IE 10+ */
:-ms-input-placeholder {
    color: #ccc; }



input[type=radio],
input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
input[type=radio] + label,
input[type=checkbox] + label {
    position: relative;

    display: inline-block;
    margin-right: 12px;

    font-size: 14px;
    line-height: 30px;

    cursor: pointer;
}

@media (min-width: 1px) {
    input[type=radio],
    input[type=checkbox] {
		opacity:0;
		display:none;
        margin: 0;
		height:0;
    }
    input[type=radio] + label,
    input[type=checkbox] + label {
        padding: 0 0 0 24px;
    }
    input[type=radio] + label::before,
    input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;

        background: #FFF;
    }
    input[type=radio] + label::before {
        border: 2px solid #ccc;
        border-radius: 30px;
    }
    input[type=checkbox] + label::before {
        border: 1px solid #c7c4c1;
    }
    input[type=radio]:checked + label::after,
    input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    input[type=radio]:checked + label::after {
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #17a1dc;
	border-radius: 8px;
    }
    input[type=checkbox]:checked + label::after {
	left: 3px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #90c31f;
	border-bottom: 3px solid #90c31f;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
    }
.check-menu input[type="radio"]:checked + label::after {
    left: 5px;
    width: 15px;
    height: 15px;
    margin-top: -4px;
    background: #c21f1f;
    border-radius: 40px;
}
.check-menu input[type="radio"] + label::before, .check-menu input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 25px;
    height: 25px;
    margin-top: -9px;
    background: #FFF;
}
.check-menu input[type="radio"] + label, .check-menu input[type="checkbox"] + label {
    padding: 0 0 0 35px;
}
}

#form-box dl {
	margin-bottom:15px;
}
#form-box dt {
	font-weight:700;
	color:#17a1dc;
	font-size:15px;
}
#form-box .privacy {
	margin-bottom:30px;
}
#form-box table th {
	border-bottom:#cddde6 1px solid;
	padding-top:12px;
	padding-bottom:12px;
	width:280px;
	font-weight:500;
}
#form-box table th span {
	background-color:#DF0606;
	color:#fff;
	font-size:12px;
	display:inline-block;
	line-height:1.2;
	padding:3px;
	font-weight:500;
	padding-left:5px;
	padding-right:5px;
	margin-right:20px;
}
#form-box table th span.any {
	background-color:#ccc;
}
#form-box table td {
	border-bottom:#cddde6 1px solid;
	padding-top:12px;
	padding-bottom:12px;
	overflow:hidden;
}
#form-box table td li {
	margin-right:20px;
}
#form-box input {
	background-color: #F1F1F1;
	border: none;
	padding: 5px;
	height:38px;
	box-sizing:border-box;
	width:90%;
}
#form-box textarea {
	background-color: #F1F1F1;
	border: none;
	padding: 5px;
	height:150px;
	box-sizing:border-box;
	width:90%;
}
#form-box input.year {
	width:120px;
	margin-right:5px;
}
#form-box select {
	background-color: #F1F1F1;
	border: none;
	padding: 5px;
	height: 38px;
	box-sizing: border-box;
	width: 150px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../images//common/arrow.png);
	background-repeat: no-repeat;
	background-position: 95% center;
	background-size:8px;
}
#form-box select.division {
	width:250px;
}
#form-box select.mdb {
	margin-bottom:12px;
}
#form-box #btn-box {
	text-align:center;
	margin-top:40px;
}
#form-box #btn-box li {
	margin-left:10px;
	margin-right:10px;
	margin-bottom:20px;
}
#form-box #btn-box button {
	border:none;
	font-family:inherit;
	font-weight:700;
	background-color:#17a1dc;
	color:#fff;
	padding:15px;
	width:280px;
	font-size:15px;
	border-radius:40px;
	cursor:pointer;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.05);
	-webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
#form-box #btn-box button:hover {
	transform: translateX(5px);
-moz-transform: translateX(5px);
-webkit-transform: translateX(5px);
-o-transform: translateX(5px);
-ms-transform: translateX(5px);
transform: translateY(5px);
-moz-transform: translateY(5px);
-webkit-transform: translateY(5px);
-o-transform: translateY(5px);
-ms-transform: translateY(5px);
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.05);
}
#form-box #btn-box button.back-btn {
	background-color:#C0C0C0;
}
#form-box .comp-txt {
	text-align:center;
	margin-bottom:40px;
}
#form-box .top-btn {
	text-align:center;
	margin-bottom:40px;
}
#form-box .top-btn a {
		display:block;
		margin:auto;
	font-weight:700;
	background-color:#17a1dc;
	color:#fff;
	padding:12px;
	width:280px;
	font-size:15px;
	text-align:center;
	border-radius:40px;
	cursor:pointer;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.05);
}
#form-box .top-btn a:hover {
	transform: translateX(5px);
-moz-transform: translateX(5px);
-webkit-transform: translateX(5px);
-o-transform: translateX(5px);
-ms-transform: translateX(5px);
transform: translateY(5px);
-moz-transform: translateY(5px);
-webkit-transform: translateY(5px);
-o-transform: translateY(5px);
-ms-transform: translateY(5px);
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.05);
}
#form-box .conf-txt {
	margin-bottom:25px;
}

@media screen and (max-width:860px){
#form-box table th {
	border-bottom:none;
	width:auto;
	font-weight:700;
	display:block;
}
#form-box table td {
	width:auto;
	display:block;
	padding-top:0;
}
#form-box input {
    width: 100%;
}
#form-box textarea {
    width: 100%;
}
#form-box #btn-box button {
	font-size:14px;
	width:250px;
}
#form-box .top-btn a {
	width:250px;
}

}
@media screen and (max-width:860px){
#form-box select.division {
	width:100%;
}
#form-box .comp-txt {
	margin-top:40px;
}
}
