@charset "utf-8";
/* CSS Document */
/* ---------------------------------------------------------
container
----------------------------------------------------------*/
.formPage form{
	background: #fff;
	border-radius: 30px;
	padding: 70px;
	margin-top: 40px;
	width: 900px;
}
.formPage .container{
	margin-bottom: 50px;
}
.formPage .textareaWrap{
	margin-bottom: 30px;
}
.formPage .select-wrap{
	margin-bottom: 30px;
}
.formPage .caution{
	margin-top: 0.4em;
	font-size: 0.7em;
	font-weight: 500;
}

@media screen and (max-width: 1080px) {
	.formPage form{
		width: 84vw;
		margin: 30px auto 0 auto;
		padding: 5vw;
	}
}
@media screen and (max-width: 767px) {
	.formPage form{
		width: 86vw;
		border-radius: 10px;
		padding: 20px 4vw;
	}
	.formPage .container{
		margin-bottom: 30px;
	}
	.formPage .textareaWrap{
		margin-bottom: 20px;
	}
	.formPage .select-wrap{
		margin-bottom: 20px;
	}
}
/* ---------------------------------------------------------
label
----------------------------------------------------------*/
.formPage form h2{
	display: table;
	margin-left: 6px;
    padding-left: 6px;
	margin-bottom: 1.5em;
}
.formPage form h2::before {
    position: absolute;    
    width: 6px;
	left: -6px;
    height: 100%;
    content: '';
    border-radius: 3px;
    background: #3dd4ff;
}
.formPage form h3{
	margin-bottom: 0.4em;
	display: table;
	line-height: 1.2;
	font-size: 0.85em;
}
.formPage form h2 label,
.formPage form h3 label{
	margin-right: 0.5em;
}
.formPage form span.req{
	display: table-cell;
	background: #FF3366;
	border-radius: 3px;
	color: #fff;
	font-size: 0.7em;
	padding: 0 0.5em;
	text-align: center;
	vertical-align: middle;
}

.formPage form h2 span.req{
	
}

@media screen and (max-width: 767px) {
	.formPage form h2{
		font-size: 1.1em;
		margin-bottom: 1.2em;
	}
	.formPage form h3{
		font-size: 1em;
	}
}

/* ---------------------------------------------------------
formButton
----------------------------------------------------------*/
.formButton input{
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: #3dd4ff;
	color: #FFFFFF;
	border-radius: 60px;
	text-align: center;
	padding: 0.5em 0;
	font-weight: 700;
    font-size: 0.9em;
	line-height: 1;
	width: 280px;
	height: 60px;
	margin: 1em auto;
	transform: rotate(0.03deg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}
.formButton input:hover{
	background: #00B3FF;
	color: #FFFFFF;
	cursor: pointer;
}

.formButtonBack{
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: #C9C9C9;
	color: #FFFFFF;
	border-radius: 60px;
	text-align: center;
	padding: 0.3em 0;
	font-weight: 700;
    font-size: 0.8em;
	line-height: 1;
	width: 100px;
	height: 30px;
	transform: rotate(0.03deg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}
.formButtonBack:hover{
	background: #929292;
}

@media screen and (max-width: 767px) {
	.formButton input{
		font-size: 1.1em;
		height: 50px;
	}
	.formButtonBack{
		font-weight: 500;
		font-size: 0.9em;
		margin: auto;
	}
}

/* ---------------------------------------------------------
textareaWrap
----------------------------------------------------------*/
.textareaWrap .harf{
	width: 49%;
	float: left;
	margin-right: 2%;
}
.textareaWrap .thirds{
	width: 30%;
	float: left;
}
.area-indent{
	display: table;
	width: 5%;
	float: left;
	text-align: center;
	height: 60px;
}
.area-indent span{
	display: table-cell;
	vertical-align: middle;
}
.textareaWrap .harf:last-child,
.textareaWrap .thirds:last-child{
	margin-right: 0;
}
textarea, input[type="number"], input[type="text"] {
    width: 100%;
    height: 60px;
    padding: 0 30px;
    line-height: 2;
    border: 0;
    color: #323232;
    background: #e6e6e6;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 700;
	font-size: 1em;
	transform: rotate(0.03deg);
}
textarea {
    height: 300px;
    padding: 20px 20px;
    line-height: 1.5;
	font-size: 0.8em;
}
textarea.slim {
	height: 5.5em;
}

textarea::placeholder,
input::placeholder{
	color: #9A9A9A !important;
}
@media screen and (max-width: 1080px) {
	textarea, input[type="number"], input[type="text"] {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 767px) {
	.area-indent{
		height: 40px;
		font-size: 11px;
	}
	textarea, input[type="number"], input[type="text"] {
		height: 40px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		border-radius: 5px;
		padding: 0 1em;
	}
	textarea {
		height: 200px;
		padding: 1em;
	}
}
/* ---------------------------------------------------------
select-wrap
----------------------------------------------------------*/
.select-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 13px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}
.select-wrap::after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    top: 50%;
    right: 30px;
    margin-top: -3px;
    pointer-events: none;
}
select.select {
    width: 100%;
    height: 60px;
    padding: 0 30px;
    line-height: 2;
    border: none;
    position: relative;
    background: #e6e6e6;
    color: #323232;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	transform: rotate(0.03deg);
}
select.select option{
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: bold;
	font-size: 0.8em;
}
select.select option.defo{
	color: #BDBDBD !important;
}

@media screen and (max-width: 767px) {
	.select-wrap {
		height: 40px;
	}
	.select-wrap::after {
		right: 1em;
	}
	select.select {
		height: 40px;
		border-radius: 5px;
		padding: 0 1em;
		font-size: 1em;
	}
}

/* ---------------------------------------------------------
confirmation
----------------------------------------------------------*/
.preview{
	font-size: 18px;
	color: #939393;
	padding-left: 0.5em;
	line-height: 1.3;
}
.uploadImg{
	max-width: 100%;
	max-height: 400px;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.preview{
		font-size: 4vw;
	}
	.uploadImg{
		max-width: 100%;
		max-height: 300px;
	}
	
}

/* ---------------------------------------------------------
hack
----------------------------------------------------------*/
.fa-arrow-up {
    top: 5% !important;
}
header nav ul li{
	line-height: 1.2 !important;
}