@charset "utf-8";


.contact {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.contact__item {
	padding: 40px 0;
	display: flex;
	border-top: 1px solid rgba(0, 0, 0, .15);
	justify-content: space-between;
	align-items: center;
}

.contact__item__wrap {
	margin-right: 40px;
}

.contact__item__title {
	padding-left: 40px;
	margin-bottom: 10px;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.contact__item__title:before {
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 2rem;
	font-family: "inter", "Noto Sans JP", sans-serif;
	font-weight: 700;
	color: rgba(159, 32, 38, 1);
}

.contact__item_num01 .contact__item__title:before {
	content: "01";
}

.contact__item_num02 .contact__item__title:before {
	content: "02";
}

.contact__item_num03 .contact__item__title:before {
	content: "03";
}

.contact__item_num04 .contact__item__title:before {
	content: "04";
}

.contact__item_num05 .contact__item__title:before {
	content: "05";
}

.contact__item_num06 .contact__item__title:before {
	content: "06";
}

.contact__item_num07 .contact__item__title:before {
	content: "07";
}

.contact__item__text {
	font-size: 1.4rem;
	line-height: 1.8;
}


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

	.contact__item {
		display: block;
	}

	.contact__item__wrap {
		margin-right: 0;
	}

	.contact__item__btn {
		margin-top: 30px;
	}

}


/*------------------------------------*/


.contact__text {
	margin: 30px 0;
	text-align: center;
}

.contact-mail {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 6vw;
}

.form-list dt {
	margin-bottom: 20px;
}

.form-list dt label {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.form-list dt .req:after {
	content: "必須";
	margin-left: 10px;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(255, 0, 0, 1);
}

.form-list dd {
	margin-bottom: 40px;
	font-size: 1.5rem;
	line-height: 1.8;
}

.form-item {
	width: 100%;
	height: 60px;
	padding: 0 30px;
	background-color: rgba(0, 0, 0, .05);
	border: 0;
	border-radius: 0;
	font-size: 1.6rem;
	line-height: 1.6;
	box-sizing: border-box;
}

textarea.form-item {
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
}

select.form-item {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	margin: 0;
}

.form-item.ss {
	width: 150px;
}

textarea.form-item {
	height: 220px;
}

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

.form-item__select {
	position: relative;
}

.form-item__select:before,
.form-item__select:after {
	content: "";
	display: block;
	position: absolute;
}

.form-item__select:before {
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, .1);
	right: 60px;
	top: 0;
}

.form-item__select:after {
	width: 5px;
	height: 5px;
	border-right: 2px solid rgba(0, 0, 0, 1);
	border-bottom: 2px solid rgba(0, 0, 0, 1);
	transform: rotate3d(0, 0, 1, 45deg);
	right: 26px;
	top: calc(50% - 3px);
}

.form-privacy {
	width: 100%;
	height: 340px;
	border: 1px solid rgba(0, 0, 0, .15);
	overflow-y: scroll;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

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

.contact-privacy__wrap {
	padding: 80px 0;
}

.form-privacy .leyout-section {
	margin: 60px 0;
}

.form-privacy .leyout-section:last-child {
	margin-bottom: 0;
}

.privacy-list {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.8;
}

.form-privacy__check {
	margin: 60px 0;
	display: flex;
	font-size: 1.5rem;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.consent-check {
	display: none;
}

.consent {
	height: 20px;
	padding-left: 30px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}

.form-list dd .consent {
	text-align: left;
	justify-content: flex-start;
}

.consent:before,
.consent:after {
	content: "";
	position: absolute;
}

.consent:before {
	width: 20px;
	height: 20px;
	display: block;
	background-color: rgba(159, 32, 38, 1);
	border-radius: 3px;
	top: 0;
	left: 0;
}

.consent-check + .consent:after {
	content: "✔︎";
	top: -3px;
	left: 5px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
	opacity: 0;
}

.consent-check:checked + .consent:after {
	opacity: 1;
}

.form-foot {
	display: flex;
	justify-content: center;
}

.form-foot li {
	max-width: calc(50% - 20px);
	flex-basis: calc(50% - 20px);
	margin-right: 20px;
}

.form-foot li:last-child {
	margin-right: 0;
}

.form-btn {
	width: 100%;
	height: 60px;
	background-color: rgba(159, 32, 38, 1);
	border: 0;
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
}

.form-btn.form-cancel {
	background-color: rgba(0, 0, 0, .1);
	color: rgba(0, 0, 0, 1);
}

.contact-notice {
	margin: 5px 0;
	font-size: 1.2rem;
	line-height: 1.8;
}

.contact-rec {
	margin-bottom: 40px;
	padding: 60px;
	border: 1px solid rgba(0, 0, 0, .15);
}

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

.contact-rec__list {
	display: flex;
	list-style: none;
	font-size: 1.4rem;
	line-height: 1.8;
	justify-content: center;
}

.contact-rec__list li {
	margin-right: 15%;
	font-size: 1.3rem;
	line-height: 1.6;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.contact-rec__list li:last-child {
	margin-right: 0;
}

.contact-rec__list li p {
	margin-top: 5px;
	font-size: 2rem;
	font-weight: 700;
	color: rgba(159, 32, 38, 1);
}

.thanks-tit {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.contact-tex {
	margin: 20px 0;
	font-size: 1.5rem;
	line-height: 2;
	text-align: center;
}



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

	.contact__text {
		margin: 20px 0;
	}

	.form-list dt {
		margin-bottom: 10px;
		font-size: 1.5rem;
	}

	.form-list dd {
		margin-bottom: 30px;
	}

	.form-foot {
		display: block;
	}

	.form-foot li {
		max-width: 300px;
		margin: 0 auto !important;
		margin-bottom: 10px;
	}

	.form-privacy__check {
		margin: 40px 0;
	}

	.contact-rec {
		padding: 40px;
	}

	.contact-rec__title {
		font-size: 1.6rem;
	}

	.contact-rec__list {
		display: block;
	}

	.contact-rec__list li {
		margin-right: 0;
		display: flex;
		text-align: left;
		align-items: center;
	}

	.contact-rec__list li span {
		max-width: 150px;
		flex-basis: 150px;
		font-size: 1.2rem;
	}

	.contact-rec__list li p {
		font-size: 1.6rem;
	}

	.thanks-tit {
		font-size: 1.6rem;
	}

	.contact-tex {
		font-size: 1.4rem;
	}

}


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

	.contact-rec__title {
		font-size: 1.65rem;
	}

	.contact__text {
		text-align: left;
	}

	.contact__text br {
		display: none;
	}

	.contact-rec {
		padding: 20px;
	}

}


/*------------------------------------*/