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

:root {
    --contactColor: rgba(57,22,34,1.0); /* #391622; */
	--contactColor04: rgba(57,22,34,0.4);
}

.contentTitle {
    color: var(--contactColor);
    text-align: center;
}

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

.conForm {
}
.fromList {
	line-height: 1.0;
}
.fromList .formListItem {
}
.fromList .formQue {
}
.fromList .formQue01 {
	color: var(--contactColor);
}
.fromList .required {
	color: #fff;
	background: var(--mainColor);
	border-radius: 100px;
}
.fromList .fromAns,
.fromList label {
    color: var(--textColor);
}
.fromBtnBox {
}
.fromBtnBox .formBtn01 {
	display: block;
    font-family: var(--fontJp);
	font-weight: bold;
	color: #fff;
	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;
    font-family: var(--fontJp);
	font-weight: bold;
	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;
		background: rgba(255,255,255,0.5);
		border: 1px solid #fff;
		box-shadow: 0 0 10px rgba(0,0,0,0.3);
		margin: 0 auto;
		padding: 20px;
	}
	.fromList {
		margin-bottom: 20px;
	}
	.fromList .formListItem {
		display: flex;
		align-items: center;
        border-bottom: 2px dotted var(--contactColor04);
        padding: 28px 20px 24px;
	}
	.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;
        margin-top: -5px;
		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 0;
	}

	.conForm {
	}
	.fromList {
		margin-bottom: 5vw;
	}
	.fromList .formListItem {
		margin-bottom: 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;
	}
	.fromBtnBox .formBtn01 {
		width: 49%;
		font-size: 4.5vw;
		margin: 0 auto;
		padding: 2vw 0;
	}

	/* confirmで使用 */
	.fromBtnBox .formBtn02 {
		width: 49%;
		font-size: 20px;
		padding: 8px 0;
	}

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


