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

.contentTitle {
	text-align: center;
}

.noteTxt {
	color: var(--textColor);
}

.conForm {
	background: rgba(0,0,0,0.9);
	border: 1px solid var(--mainColor06);
}
.fromList {
	line-height: 1.0;
}
.fromList .formListItem {
	border-bottom: 1px dotted var(--textColor);
}
.fromList .formQue {
}
.fromList .formQue01 {
}
.fromList .required {
	color: #fff;
	font-weight: bold;
	background: var(--secondaryColor);
	border-radius: 100px;
}
.fromList .fromAns,
.fromList label {
	color: var(--textColor);
}
.fromBtnBox {
}
.fromBtnBox .formBtn01 {
	display: block;
	background: var(--mainColor);
}

/* confirmで使用 */
.confirm .fromAns {
	min-height: 36px;
	font-size: 18px;
	color: var(--textColor);
	line-height: 1.4;
	padding: 6px 10px;
}
.confirm .fromAns a {
	color: var(--textColor);
}
.fromBtnBox .formBtn02 {
	display: block;
	color: #f3f3f3;
	background: #aaa;
}
.notEntered {
	color: #999;
}

/* completeで使用 */
.compMsg {
	color: var(--textColor);
	text-align: center;
}


@media screen and (min-width: 768px) {
	.contentTitle {
		font-size: 48px;
		margin-bottom: 30px;
	}

	.noteTxt {
		width: 1080px;
		font-size: 20px;
		line-height: 1.6;
		margin: 40px auto;
	}

	.conForm {
		width: 1080px;
		margin: 0 auto;
		padding: 30px 40px 50px;
	}
	.fromList {
		margin-bottom: 40px;
	}
	.fromList .formListItem {
		display: flex;
		align-items: center;
		padding: 30px 20px;
	}
	.fromList .formListItem:last-child {
		margin-bottom: 0;
	}
	.fromList .formQue {
		display: flex;
		align-items: center;
		width: 25%;
	}
	.fromList .formQue01 {
		display: flex;
		align-items: center;
		font-size: 20px;
		line-height: 1;
	}
	.fromList .required {
		font-size: 14px;
		margin-left: 10px;
		padding: 7px 12px 4px;
	}
	.fromList .fromAns {
		width: 75%;
	}
	.fromBtnBox {
		display: flex;
		justify-content: center;
	}
	.fromBtnBox .formBtn01 {
		width: 300px;
		font-size: 28px;
		letter-spacing: 0.1em;
		margin: 0 10px;
		padding: 14px 0;
	}

	/* confirmで使用 */
	.fromBtnBox .formBtn02 {
		width: 300px;
		font-size: 28px;
		margin: 0 10px;
		padding: 14px 0;
	}

	/* completeで使用 */
	.compMsg {
		font-size: 26px;
		line-height: 1.6;
		padding: 100px 0 150px;
	}
}

@media screen and (max-width: 767px) {
	.contentTitle {
		font-size: 6.25vw;
		margin-bottom: 3vw;
	}

	.noteTxt {
		font-size: 3.75vw;
		line-height: 1.6;
		margin: 6vw auto;
	}

	.conForm {
		margin-bottom: 4.5vw;
		padding: 4.5vw;
	}
	.fromList {
		margin-bottom: 4vw;
	}
	.fromList .formListItem {
		padding: 5vw 2.5vw;
	}
	.fromList .formListItem:last-child {
		margin-bottom: 0;
	}
	.fromList .formQue {
		margin-bottom: 1.5vw;
	}
	.fromList .formQue01 {
		display: flex;
		align-items: center;
		font-size: 3.75vw;
	}
	.fromList .required {
		font-size: 2.75vw;
		font-weight: bold;
		line-height: 1.0;
		margin-left: 1.5vw;
		margin-top: -0.5vw;
		padding: 1vw 2vw 0.5vw;
	}
	.fromList .fromAns {
	}
	.fromBtnBox {
		display: flex;
		justify-content: space-between;
		padding: 0 5vw;
	}
	.fromBtnBox .formBtn01 {
		width: 48%;
		font-size: 4.5vw;
		margin: 0 auto;
		padding: 3vw 0;
	}

	/* confirmで使用 */
	.fromBtnBox .formBtn02 {
		width: 48%;
		font-size: 4.5vw;
		padding: 3vw 0;
	}

	/* completeで使用 */
	.compMsg {
		font-size: 4.25vw;
		line-height: 1.6;
		padding: 15vw 0 20vw;
	}
}


