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

/* 送信ボタン
----------------------------------- */
.btnWrap {
	color: #000;
    line-height: 1.0;
    background: var(--main-color);
    position: relative;
}
.btnWrap:after {
	position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-top-color: #000;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}
.btnWrap .btn {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* 入力ページ
-------------------------------------------------- */
.formBox {
	background: #000;
	border: 1px solid var(--secondary-color);
}
.formBox .formBoxTitle {
	color: var(--secondary-color);
	font-weight: normal;
}
.formBox .required {
	color: #000;
	font-weight: bold;
	line-height: 1.0;
	background: var(--main-color);
	border-radius: 2px;
}

/* 送信完了ページ
-------------------------------------------------- */
.compBox {
	background: #000;
	border: 1px solid var(--secondary-color);
}
.compBox .compTxt {
	text-align: center;
}


/* --------------------------------------------------
PC
-------------------------------------------------- */
@media screen and (min-width: 768px) {

	/* 入力ページ
	-------------------------------------------------- */
	.formBox {
		margin-bottom: 30px;
		padding: 30px 50px;
	}
	.formBox:last-child {
		margin-bottom: none;
	}
	.formBox .formBoxTitle {
		font-size: 2.4rem;
		margin-bottom: 15px;
	}
	.formBox .formList {
	}
	.formBox .formListItem {
		display: flex;
		align-items: center;
		border-bottom: 2px dotted rgba(255,255,255,0.4);
		padding: 20px 12px 22px;
	}
	.formBox .formListItem:last-child {
		border-bottom: none;
	}
	.formBox .formQue {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		width: 40%;
		padding-right: 2%;
	}
	.formBox .formQueInn {
		font-size: 1.8rem;
	}
	.formBox .required {
		font-size: 1.2rem;
		padding: 5px 10px;
	}
	.formBox .formAns {
		width: 60%;
		font-size: 1.8rem;
	}

	.btnWrap {
		display: flex;
        justify-content: center;
        align-items: center;
        width: 550px;
        height: 100px;
        margin: 70px auto 0;
	}
	.btnWrap:after {
		top: 10px;
		right: 10px;
		border-width: 18px 18px 0 0;
	}
	.btnWrap .btn {
		font-size: 3.6rem;
	}

	/* 送信完了ページ
	-------------------------------------------------- */
	.compBox {
		padding: 130px 50px;
	}
	.compBox .compTxt {
		font-size: 1.8rem;
		line-height: 1.8;
	}
}


/* --------------------------------------------------
SP
-------------------------------------------------- */
@media screen and (max-width: 767px) {

	/* 入力ページ
	-------------------------------------------------- */
	.formBox {
		margin-bottom: 4vw;
		padding: 4vw;
	}
	.formBox:last-child {
		margin-bottom: none;
	}
	.formBox .formBoxTitle {
		font-size: 4vw;
	}
	.formBox .formList {
	}
	.formBox .formListItem {
		border-bottom: 1px dashed rgba(255,255,255,0.3);
		padding: 2vw 0 3.5vw;
	}
	.formBox .formListItem:last-child {
		border-bottom: none;
	}
	.formBox .formQue {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-bottom: 1vw;
		padding: 1vw 0;
	}
	.formBox .formQueInn {
		font-size: 3.75vw;
		font-weight: bold;
		line-height: 1.4;
		margin-right: 1vw;
	}
	.formBox .required {
		font-size: 2vw;
		margin-top: 1vw;
		padding: 1.125vw 2.25vw;
	}
	.formBox .formAns {
		font-size: 3.5vw;
		color: #ddd;
	}

	.btnWrap {
		display: flex;
        justify-content: center;
        align-items: center;
        width: 84vw;
        height: 18vw;
        margin: 5vw auto 0;
	}
	.btnWrap:after {
		top: 1.5vw;
		right: 1.5vw;
		border-width: 3vw 3vw 0 0;
	}
	.btnWrap .btn {
		font-size: 5vw;
	}

	/* 送信完了ページ
	-------------------------------------------------- */
	.compBox {
		padding: 14vw 0;
	}
	.compBox .compTxt {
		font-size: 3.5vw;
		line-height: 1.8;
	}
}
