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

/*contact.css*/

.el_title {
	letter-spacing: 0.1em;
}

/*===== フォーム 入力画面*/
form label {
	display:block;
	width:auto;
	text-align: left;
	font-weight: bold;
	margin-bottom: 10px;
}
/*必須タグ*/
form label span {
	display:inline-block;
	background-color:var(--theme-color);
	padding: 5px 10px;
	margin-left: 1em;
	margin-right: 1em;
	line-height: 1;
	font-size: 10px;
	color:#FFF;
}
/*入力欄*/
form input, form textarea {
	width:95%;
	width:-webkit-calc(100% - 30px);
	width:calc(100% - 30px);
	margin-bottom: 33px;
	padding: 15px;
	font-size:125%;
	background-color: #F7F7F7;
	border: solid #CCC 1px;
}
/*下部ボタン*/
form input[type="submit"],
form input[type="button"] {
	width:auto;
	color:#FFF;
	background-color: var(--theme-color);
	padding:15px 50px;
	border-radius: 8px;
	font-size: 1.25rem;
}


/*===== PostMail エラー画面など遷移ページ
htmlソースはPostMailのソースをなるべく温存*/
.bl_postmail {
	display: block;
	width:95%;
	margin: auto;
}
.bl_postmail ul {
	list-style: none;
	margin: 0 auto 2em;
	padding: 0;
}
.bl_postmail ul li {
	line-height: 1.2;
	margin-bottom: 0.5em;
	text-align: center;
}
.bl_postmail .msg {
	text-align: center;
}
.bl_postmail table#form {
	text-align: left;
	width: 100%;
	border-collapse: collapse;
}
.bl_postmail table#form th,
.bl_postmail table#form td {
	padding: 1em;
	border: solid #CCC 1px;
}
@media screen and (max-width:480px){
	.bl_postmail table#form th,
	.bl_postmail table#form td {
		padding: 1em 0.25em 1em 0.5em;
	}
}
.bl_postmail table#form th {
	background-color: #f2f2f2;
	width: 25%;
}
.bl_postmail table#form td {
	width: 75%;
}
.bl_postmail .btn {
	display: flex;
	text-align: center;
	justify-content:center;
	width: 80%;
	margin: auto;
}
.bl_postmail .btn input {
	width:auto;
	color:#FFF;
	background-color: var(--theme-color);
	padding:15px min(5vw,50px);
	border-radius: 8px;
	margin: 2em 5px;
	font-size: 1.25rem;
}