@charset "utf-8";


.main-body-text.center {
	margin: 60px 0;
}

.form__list {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.form__list dt,
.form__list dd {
	margin: 20px 0;
	font-size: 1.4rem;
	line-height: 1.6;
}

.form__list dt {
	max-width: 280px;
	flex-basis: 280px;
	height: 50px;
	display: flex;
	flex-basis: 280px;
	font-weight: 700;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.form__list .required:after {
	content: "【必須】";
	margin-left: 10px;
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(255, 0, 0, 1);
}

.form__list dd {
	max-width: calc(100% - 280px);
	flex-basis: calc(100% - 280px);
}

.form__textbox {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, .06);
	border-radius: 5px;
	border: 0;
	font-size: 1.6rem;
	box-sizing: border-box;
}

.form__textbox:focus {
	background-color: rgba(0, 0, 0, .1);
}

.form__textbox.small {
	max-width: 60%;
}

textarea.form__textbox {
	height: 200px;
	padding: 15px 20px;
}

.btnset {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.btnset__item {
	max-width: 400px;
	flex-basis: calc(50% - 10px);
	margin-right: 20px;
}

.btnset__item:last-child {
	margin-right: 0;
}

.form__btn {
	width: 100%;
	height: 60px;
	display: flex;
	background-color: transparent;
	border: 2px solid rgba(120, 126, 221, 1);
	border-radius: 30px;
	font-size: 1.6rem;
	font-weight: 700;
	color: rgba(120, 126, 221, 1);
	box-sizing: border-box;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}

.form__btn:hover {
	background-color: rgba(120, 126, 221, 1);
	color: rgba(255, 255, 255, 1);
}

.form__btn:after {
	content: "";
	width: 15px;
	height: 15px;
	margin-left: 20px;
	display: block;
	background-image: url(../images/common/icon_arrow_r_pl.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.form__btn:hover:after {
	background-image: url(../images/common/icon_arrow_r_wt.png);
	transform: translateX(5px);
}

.form__btn.cancel {
	border-color: rgba(0, 0, 0, .2);
	color: rgba(0, 0, 0, .4);
}

.form__btn.cancel:hover {
	background-color: rgba(0, 0, 0, .2);
	border-color: transparent;
	color: rgba(255, 255, 255, 1);
}

.form__btn.cancel:before {
	content: "";
	width: 15px;
	height: 15px;
	margin-right: 20px;
	display: block;
	background-image: url(../images/common/icon_arrow_l_bk.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: .4;
}

.form__btn.cancel:hover:before {
	background-image: url(../images/common/icon_arrow_l_wt.png);
	transform: translateX(-5px);
	opacity: 1;
}

.form__btn.cancel:after {
	display: none;
}

.radio-list {
	display: flex;
}

.radio-list-item {
	height: 50px;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.radio__btn label {
	padding-left: 30px;
	position: relative;
}

.radio__btn label:before,
.radio__btn label:after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
}

.radio__btn label:before {
	width: 20px;
	height: 20px;
	background-color: rgba(0, 0, 0, .06);
	top: calc(50% - 10px);
	left: 0;
	z-index: 0;
}

.radio__btn label:after {
	width: 8px;
	height: 8px;
	background-color: rgba(120, 126, 221, 1);
	top: calc(50% - 4px);
	left: 6px;
	z-index: 1;
	opacity: 0;
}

.radio__btn input[type=radio]:checked + label:after {
    opacity: 1;
}

.radio-list-item input {
	display: none;
}

.check-list-item {
	margin: 15px 0;
}

.check__btn label {
	padding-left: 30px;
	display: block;
	position: relative;
}

.check__btn input {
	display: none;
}

.check__btn label:before,
.check__btn label:after {
	content: "";
	display: block;
	position: absolute;
}

.check__btn label:before {
	width: 18px;
	height: 18px;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, .06);
	left: 0;
	top: calc(50% - 9px);
	z-index: 0;
}

.check__btn label:after {
	width: 10px;
	height: 10px;
	background-image: url(../images/common/icon_check.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	top: calc(50% - 5px);
	left: 4px;
	opacity: 0;
}

.check__btn input[type=checkbox]:checked + label:before {
	background-color: rgba(120, 126, 221, 1);
}

.check__btn input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.contact__privacy {
	max-width: 1080px;
	height: 400px;
	margin: 40px auto;
	padding: 80px;
	overflow-y: scroll;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 20px;
	box-sizing: border-box;
}

.contact__privacy__title {
	margin-bottom: 40px;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.contact__privacy__title .en {
	display: block;
	font-size: 3.5rem;
	font-weight: normal;
}

.contact__privacy .main-body-text {
	margin: 40px 0;
}

.contact__privacy .contact__privacy__list {
	margin-bottom: 80px;
	list-style: decimal;
}

.contact__privacy__list__item {
	margin: 20px 0;
	margin-left: 25px;
}

.consent-check__btn {
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
	justify-content: center;
}

.form__list_confirm dd div {
	height: 50px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(0, 0, 0, .025);
	border-radius: 5px;
	align-items: center;
	box-sizing: border-box;
}

.contact-finish__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.contact-finish__btn a {
	margin: 0 auto;
}

.form__wrap {
	max-width: 60%;
	position: relative;
}

.form__wrap:after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-image: url(../images/common/icon_arrow_b_bk_naked.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 7px);
	right: 20px;
}

.form__wrap__select {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, .05);
	border: 0;
	border-radius: 5px;
	font-size: 1.6rem;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


@media screen and ( max-width: 880px ) {

	.form__list dt {
		max-width: 200px;
		flex-basis: 200px;
	}

	.form__list dd {
		max-width: calc(100% - 200px);
		flex-basis: calc(100% - 200px);
	}

	.form__btn {
		font-size: 1.6rem;
	}

}


@media screen and ( max-width: 640px ) {

	.form__list {
		display: block;
	}

	.form__list dt,
	.form__list dd {
		max-width: none;
	}

	.form__list dt {
		height: auto;
		margin-bottom: 10px;
	}

	.form__list dd {
		margin-top: 0;
	}

	.btnset {
		flex-direction: column-reverse;
	}

	.btnset__item {
		width: 100%;
		flex-basis: auto;
		margin: 10px auto !important;
	}

	.form__btn {
		height: 50px;
		border-radius: 25px;
	}

	.contact__privacy {
		padding: 40px;
	}

	.contact__privacy__title {
		margin-bottom: 30px;
	}

	.contact__privacy__title .en {
		font-size: 3rem;
	}

	.contact__privacy .main-body-text {
		margin: 20px 0;
	}

	.main-body-text.center {
		margin: 40px 0;
	}

	.btnset {
		margin-top: 40px;
	}

	.form__wrap {
		max-width: none;
	}

}


@media screen and ( max-width: 480px ) {


	.contact__privacy {
		padding: 40px 20px;
	}

	.main-body-text.center br {
		display: none;
	}

}


