@charset "utf-8";
body {
	background-color: #fff;
}
header::before {
	height: 145px;
}
header .headerWrap::before {
	height: 145px;
}
.commonWrapper {
	margin-top: 115px;
	margin-bottom: 150px;
}
h1 {
	position: relative;
	z-index: 2;
}
h1 .en {
	font-family: futura-pt-bold, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 34px;
	color: #121212;
	letter-spacing: 0.01em;
	padding-left: 16px;
	line-height: 0.8;
	margin-top: 30px;
}
h1 .en::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 27px;
	background-color: #39c132;
}
h1 .ja {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 15px;
	color: #1f1f1f;
	letter-spacing: 0.02em;
	margin-top: 45px;
}
ul.formContent {
	margin-top: 74px;
	margin-bottom: 122px;
	border-top: solid 1px #dddddd;
}
ul.formContent li {
	padding: 36px 0;
	border-bottom: solid 1px #dddddd;
	display: flex;
	align-items: center;
}
ul.formContent li .inputTitle {
	width: 420px;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 17px;
	color: #1f1f1f;
	font-feature-settings: "palt";
	letter-spacing: 0.09em;
}
ul.formContent li .inputTitle span {
	font-size: 12px;
	color: #e13e13;
	letter-spacing: 0.09em;
	margin-left: 1em;
}
ul.formContent li .parts {
	position: relative;
}
ul.formContent li .parts .error_blank {
	position: absolute;
	top: -1.5em;
	right: 0;
	color: red;
	font-weight: bold;
	display: none;
}
ul.formContent li .parts input {
	border: none;
	outline: none;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	color: #1f1f1f;
	font-feature-settings: "palt";
	letter-spacing: 0.09em;
	width: 610px;
	background-color: #f3f3f3;
	padding: 21px 20px;
}
/* selectタグ */
ul.formContent li .parts select {
	width: 250px;
	border: none;
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;	/* 矢印を非表示 */
	appearance: none;	/* 矢印を非表示 */
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #1f1f1f;
	font-feature-settings: "palt";
	letter-spacing: 0.09em;
	background-color: #f3f3f3;
	padding: 21px 20px;
}
/* IE対応 */
ul.formContent li .parts select::-ms-expand {
	display: none;/* 矢印を非表示 */
}
/*selectの矢印をカスタマイズ*/
ul.formContent li .parts .arrow {
	position: relative;
}
ul.formContent li .parts .arrow::before {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 35px;
	height: 100%;
	background-color: #bfbfbf;
	pointer-events: none;
}
ul.formContent li .parts .arrow::after {
content: '';
	width: 7px;
	height: 7px;
	position: absolute;
	top: 45%;
	right: 13px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	pointer-events: none;
}
/*ここまでselectの矢印をカスタマイズ*/
ul.formContent li .parts textarea {
	border: none;
	outline: none;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	color: #1f1f1f;
	font-feature-settings: "palt";
	letter-spacing: 0.09em;
	width: 610px;
	height: 190px;
	background-color: #f3f3f3;
	padding: 20px;
}
/*---------- フォームの中の文字 ----------*/
::placeholder {
	color: #b8b8b8;
}
.submitBtn {
	position: relative;
	width: 320px;
	height: 80px;
	margin: 0 auto;
	box-sizing: border-box;
	border: solid 2px #3ec934;
	border-radius: 2.5em;
	overflow: hidden;
}
.submitBtn::before {
	position: absolute;
	content: '';
	top: 0;
	left: -5%;
	width: 110%;
	height: 100%;
	background: linear-gradient(60deg, #25c037, #25c037, #5ad230, #5ad230, #5ad230);
	transform: skewX(-20deg);
	-webkit-transform: skewX(-20deg);
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.submitBtn:hover::before {
	left: 105%;
}
.submitBtn input {
	outline: none;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 700;
	font-style: normal;
	background-color: transparent;
	width: 320px;
	height: 80px;
	border-radius: 2.5em;
	border: 0;
	font-size: 20px;
	color: #fff;
	letter-spacing: 0.1em;
	line-height: 0.8;
	cursor: pointer;
	position: relative;
}
.submitBtn input:hover {
	color: #3ec934;
}