
/* CSS Document */

/*====================================

    .main

====================================*/

.main {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

/*====================================

    .wp_ttl

====================================*/

.main .wp_ttl {
	width: 50%;
	height: 100%;
	display: grid;
	place-items: center;
}
.main .wp_ttl h2 {
	width: 60%;
}

/*====================================

    .wp_form

====================================*/

.main .wp_form {
	width: 50%;
	height: 100%;
	display: grid;
	padding: 0px 80px 0px 0px !important;
}
.wp_form .ex {
	font-size: 90%;
	color: #E32413;
	width: 100% !important;
	text-align: right;
	padding-top: 40px;
}
.wp_form dl {
	width: 100% !important;
	margin-bottom: 10px;
}
.wp_form dl dt {
	font-size: 100%;
}
.wp_form dl dt span {
	color: #E32413;
	font-size: 70%;
	padding-left: .2em;
	margin-top: -1em;
}
.wp_form dl dd {
}
.wp_form .input_text_short,
.wp_form .input_text_middle {
	border: 0;
	padding: 10px;
	font-size: 1.1em;
	color: #aaa;
	border: solid 1px #ccc;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
	-moz-box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
}
.wp_form .input_text_short {
	width: 100%;
}
.wp_form .input_text_middle {
	width: 100%;
}
.wp_form input[type="submit"],
.wp_form input[type="text"],
.wp_form input[type="file"],
.wp_form select,
.wp_form textarea,
.wp_form button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border: none;
}
.wp_form input::placeholder {
	color: #ccc;
}
.wp_form input[type="file"] {
	padding: 10px;
	cursor: pointer;
}
.wp_form label {
    padding: 10px 40px;
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    -webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.wp_form input[type="file"] {
    display: none;
}
.wp_form .file_text {
	font-size: 90%;
	color: #E32413;
}

/*====================================

    .btn_upload

====================================*/

.btn_upload {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
.button {
	display : inline-block;
	text-align : center;
	cursor : pointer;
	padding : 1.4em 7em;
	background: #fff;
	color : #000;
	line-height : 1em;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.button:hover {
	box-shadow : none;
	color : #fff;
	background : #E32413;
}

/*====================================

    wrap_thanks

====================================*/

.wrap_thanks,
.wrap_error {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

}
.wrap_thanks p,
.wrap_error p {
	width: 100%;
	text-align: center;
	font-size: 6vh;
	margin-bottom: 60px;
}
.wrap_thanks p span,
.wrap_error p span {
	display: block;
	font-size: 35%;
	line-height: 1em;
	padding-top: 20px;
}
.wrap_thanks .btn,
.wrap_error .btn {
	width: 100%;
	text-align: center;
}
.wrap_thanks .btn a,
.wrap_error .btn a {
	display : inline-block;
	text-align : center;
	cursor : pointer;
	padding : 1.4em 7em;
	background: #fff;
	color : #000;
	line-height : 1em;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
}
.wrap_thanks .btn a:hover,
.wrap_error .btn a:hover {
	box-shadow : none;
	color : #fff;
	background : #E32413;
}



