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


/* iOS */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


/***　フォーム全体　***/


table.cont{
	width: 90%;
	margin: 2em auto 3em auto;
	font-size: 0.9em;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,'メイリオ',sans-serif;
}

table.cont tr {
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px dotted #999999;
}

table.cont th{
	font-weight: bold;
	width: 25%;
	height: auto;
	padding: 1em 0.5em 1em 1em;
}


table.cont td{
	width: 75%;
	height: auto;
	padding: 1em 1em 1em 0.5em;
}


table.cont th small{
	font-weight: normal;
	color: #ff0033;
}

table.cont input[type="text"], table.cont textarea {
	-webkit-appearance:none;
	border: 1px solid #AAAAAA;
	padding: 0.8em;
	font-size: 0.9em;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,'メイリオ',sans-serif;
	width: 450px;
}


input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
}


/***　入力エラー　***/

.errorList {
	margin: 2em auto 0 auto;
}


.errorList ul {
	text-align: left;
	font-size: 0.9em;
	color: #cc0033;
	line-height: 1.8em;
	border: 1px solid #cc0033;
	background-color: #FFF2F2;
	padding: 0.8em;
}


.errorList ul li::before {
	content: "";
	display: inline-block;
	background: url('../../images/icon_caution.png') no-repeat;
	width: 16px;
	height: 14px;
	background-size: contain;
	vertical-align: middle;
	margin-right: 0.5em;
}



/***　件名（ラジオボタン）　***/

.subj {
	display: flex;
}


.subj label {
	margin-right: 1em;
	padding: 0.5em 0.2em 0.5em 0.2em;
	border-radius: 0.3em;
	cursor: pointer;
}


/***　送信ボタン　***/

.btnSpace{
	margin: 1.5em 0;
	text-align: center;
}

.btnSpace .btn{
	margin: 0 0.5em;
	color: #006600;
	font-size: 1em;
	padding: 0.5em 1em;
	letter-spacing: 0.1em;
	background-color: #FFFFFF;
	border: 2px solid #006600;
	cursor: pointer;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,'メイリオ',sans-serif;
	transition: .3s;
}

.btnSpace .btn:hover {
	color: #FFFFFF;
	background-color: #006600;
	transition: .3s;
}


.btnSpace .btn:focus {
	outline: none;
}