@charset "utf-8";
/* CSS Document */

/*==============================	
form
==============================*/
textarea{
	font-family: inherit;
}

.alert-danger {
	color: red;
}

.form-btn-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 50px 0 0;
}

.form-btn,
.form-btn-back {
	display: flex;
	color: #fff;
	font-size: 16px;
	width: 300px;
	max-width: 100%;
	height: 67px;
	justify-content: center;
	align-items: center;
	background: url(../img/arw02.svg) right 12px center no-repeat;
	background-color: #0053a7;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.form-btn-back {
	background: url(../img/arw02_rev.svg) left 12px center no-repeat;
	background-color: rgba(0, 0, 0, 0.5);
}

.form-btn:hover {
	background-color: rgba(0, 83, 167, 0.8);
	text-decoration: none;
}

.form-btn-back:hover {
	background-color: rgba(0, 0, 0, 0.4);
	text-decoration: none;
}

input#file-upload-button {
	color: #fff;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.form-category label,
.form-check-label,
.form-control-file {
	cursor: pointer;
}

.form-check-label {
	display: flex;
	align-items: flex-start;
}

.form-check-label input {
	margin-top: 8px;
}

.form-group {
	min-height: 27px;
	padding: 20px 0;
	border-top: 1px #ccc solid;
}

@media screen and (max-width: 767px) {
	.form-group {
		flex-direction: column;
		gap: 10px;
	}
}

.form-zipcode {
	display: flex;
	align-items: center;
	gap: 10px;
}

@media screen and (max-width: 767px) {
	.form-zipcode .form-control {
		width: 150px;
	}
}

.form-group:not(:first-of-type) {
	display: flex;
	flex-wrap: wrap;
}

.form-label {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	width: 25%;
}

@media screen and (max-width: 767px) {
	.form-label {
		width: 100%;
	}
}

.form-category {
	display: flex;
	gap: 20px;
	font-size: 16px;
	font-weight: 500;
}

.form-consent {
	margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
	.form-consent {
		margin: 10px 0 0;
	}
}

.form-consent label {
	cursor: pointer;
}

.form-field {
	width: 75%;
}

@media screen and (max-width: 767px) {
	.form-field {
		width: 100%;
	}
}

.form-field.category {
	padding-left: 25%;
}

@media screen and (max-width: 767px) {
	.form-field.category {
		padding-left: 0;
	}
}

.birth-select {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	align-items: baseline;
}

.birth-error {
	width: 100%;
}

.form-control {
	display: block;
	font-size: 16px;
	width: 100%;
	padding: 13px;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
}

.form-control-file {
	font-size: 16px;
}

textarea.form-control {
	width: 100% !important;
}

.birth-year {
	width: 150px;
}

@media screen and (max-width: 767px) {
	.birth-year {
		width: 100px;
	}
}

.birth-month,
.birth-day {
	width: 100px;
}

@media screen and (max-width: 767px) {
	.birth-month,
	.birth-day {
		width: 50px;
	}
}

.form-text {
	width: 100%;
}

.form-head {
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 20px;
}

.u-dn {
	display: none;
}