.Form {
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}
@media screen and (max-width: 480px) {
	.Form {
		margin-top: 40px;
	}
}
.Form-Item {
	border-top: 1px solid #ddd;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 480px) {
	.Form-Item {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
		flex-wrap: wrap;
	}
}
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 15px;
	}
}
.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label.isMsg {
		margin-top: 0;
	}
}
.Form-Item-Label-Required {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #ffa500;
	color: #fff;
	font-size: 14px;
}
.Form-Item-Label-Required2 {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #6f8fbe;
	color: #fff;
	font-size: 14px;
}
.Form-Item-Label-NotRequired {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #999999;
	color: #fff;
	font-size: 14px;
}
@media screen and (max-width: 480px) {
	.Form-Item-Label-Required {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
	.Form-Item-Label-NotRequired {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
}
.Form-Item-Input {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 18px;
}
.Form-Item-Input-Radio {
	margin-left: 40px;
}
@media screen and (max-width: 480px) {
	.Form-Item-Input {
		margin-left: 0;
		margin-top: 18px;
		height: 40px;
		flex: inherit;
		font-size: 15px;
	}
	.Form-Item-Input-Radio {
	/* 上書き用 */
	}
}
.Form-Item-Textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 18px;
}
@media screen and (max-width: 480px) {
	.Form-Item-Textarea {
		margin-top: 18px;
		margin-left: 0;
		height: 200px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Btn {
	border-radius: 6px;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 280px;
	display: block;
	letter-spacing: 0.05em;
	background: #5bc8ac;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}
@media screen and (max-width: 480px) {
	.Form-Btn {
		margin-top: 24px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 160px;
		font-size: 16px;
	}
}

/* ul, ol */
ul.border_list {
	border: 2px silver dashed;
	padding: 10px 10px 10px 30px;
	list-style-type: circle;
}
li.style_type_disc {
	list-style-type: disc;
}
ol.border_list {
	border: 2px silver dashed;
	padding: 10px 10px 10px 30px;
	list-style-type: circle;
}
li.style_type_decimal {
	list-style-type: decimal;
}

/* h2, h3, box attention */
.head2 {
	font-weight:bold;
	font-size:2em;
	margin-bottom:0.5em;

	position: relative;
	padding: 1rem .5rem;
}

.head2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	content: '';
	background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
	background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
	background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

.head3 {
	font-weight:bold;
	font-size:1.6em;
	margin-bottom:0.5em;

	border-bottom: solid 2px #000;
	position: relative;
}

.head3:before {
	content: "";
	display: block;
	line-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 30%;
	border-bottom: 1px solid #f44336;
}

@media screen and (max-width: 480px) {
	.head2 {
		font-weight:bold;
		font-size:1.2em;
		margin-bottom:0.5em;

		position: relative;
		padding: 1rem .5rem;
	/*	border-bottom: solid 2px #000;
		position: relative;
		padding-left: 0.5rem;
		border-left: 6px double #f44336;*/
	}

	.head2:after {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 5px;
		content: '';
		background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
		background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
		background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
	}
	/*
	.head2:before {
		content: "";
		display: block;
		line-height: 0;
		overflow: hidden;
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 30%;
		border-bottom: 2px solid #f44336;
	}
	*/
	.head3 {
		font-weight:bold;
	  	font-size:1.1em;
		margin-bottom:0.5em;

		border-bottom: solid 1px #000;
		position: relative;
	}

	.head3:before {
		content: "";
		display: block;
		line-height: 0;
		overflow: hidden;
		position: absolute;
		left: 0;
		bottom: -1px;
		width: 30%;
		border-bottom: 1px solid #f44336;
	}
}

.title-box5 {
	margin: 1em 0;
	background-color: #fffbf4;
	border: 2px solid #ee7917;
}

.title-box5-title{
	font-size: 16px;
	position: absolute;
	margin-top: 0;
	background-color: #ee7917;
	color: #fff;
	font-weight: bold;
	border-radius: 0 0 2px 0;
	padding: 4px 6px;
}

.title-box5 p{
	margin: 0;
	padding: 3em 1em 1em 1em;
}
</style>

