@charset "UTF-8";
/* CSS Document */
ul#TelNum {
	position: relative;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
ul#TelNum li {
	list-style: none;
	display: block;
	background-color: #eeeeee;
	padding: 1em;
	border-radius: 0.5em;
	margin: 1em;
	line-height: 200%;
	text-align: center;
}
#PageContents ol {
	width: 100%;
	padding: 1em 1em 1em 2em;
	counter-reset: list;
	list-style-type: none;
	margin: 1em auto;
}
#PageContents ol li {
	margin-bottom: 1em;
	position: relative;
	padding: 0 0 0 1.5em;
}
#PageContents ol li:last-of-type {
	margin-bottom: 0;
}
#PageContents ol li:before {
	counter-increment: list;
	content: counter(list);
	position: absolute;
	left: -10px;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.5em;
	background: #4d4d4d;
	border-radius: 50%;
	top: 0;
}
table#FormTbl {
	width: 90%;
	margin: 0 auto 1em;
}
table#FormTbl th, table#FormTbl td {
	text-align: left;
	font-weight: 400;
}
table#FormTbl th {
	padding: 0.25em 0 0.25em 1em;
	border-left: solid 5px #cccccc;
}
table#FormTbl td {
	padding: 1em 1em 2em;
}
/*table#FormTbl td.FigSelect {
	text-align: center;
	border: solid 1px #cccccc;
	padding-bottom: 1em;
}
table#FormTbl td.FigSelect img {
	width: 50px;
	height: auto;
	margin: 1em 1em 0 1em;
}
table#FormTbl td.FigSelect img.Select {
	border: solid 1px #047149;
}*/
table#FormTbl td.BtnArea {
	text-align: center;
	padding-bottom: 1em;
}
.LargeText {
	font-size: 200%;
}
/*フォームパーツ*/
input[type=text],input[type=submit], input[type=reset], input[type=button], select {
  -webkit-appearance: none;
  appearance: none;
}
form {
	font-size: 16px;
}
input[type=text].w50 {
	width: 48%;
	border: solid 1px #cccccc;
	font-size: 18px;
	padding: 5px;
}
input[type=text].w100, textarea.w100 {
	width: 100%;
	border: solid 1px #cccccc;
	font-size: 18px;
	padding: 5px;
}
input[type=text].w5em {
	width: 5em;
	border: solid 1px #cccccc;
	font-size: 18px;
	padding: 5px;
}
input[type=text].w7em {
	width: 7em;
	border: solid 1px #cccccc;
	font-size: 18px;
	padding: 5px;
}
input[type=submit], input[type=reset], input[type=button] {
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 0.5em 2em;
}
input[type=submit], input.GreenBtn {
	background-color: #047149;
	color: #ffffff;
}
input[type=reset] {
	background-color: #4d4d4d;
	color: #ffffff;
}
label {
	white-space: nowrap;
}
select {
	width: 100%;
	border: solid 1px #cccccc;
	font-size: 18px;
	padding: 5px;
}
textarea {
	height: 5em;
}
/*スマホ*/
@media screen and (max-width: 767px) {
	@media screen and (max-aspect-ratio: 11/10) {
		/* 縦向きの場合のスタイル */
		ul#TelNum {
			position: relative;
			margin: 0 auto;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-ms-flex-direction: column;
			flex-direction: column;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
			-webkit-box-align: center;
			-ms-flex-align: center;
			align-items: center;
		}
table#FormTbl td.FigSelect img {
	width: 10vw;
	margin: 1em 1em 0 1em;
}
		label {
			display: block;
			;
		}
	}
}