@charset "UTF-8";


.Form {
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.Form-Item {
  padding-bottom: 24px;
  width: 100%;
	margin-bottom: 1em;
}

.Form-Item-Label {
  /*width: 94%;*/
  width: 100%;
  letter-spacing: 0.05em;
  font-weight: normal;
  font-size: 18px;
	margin-bottom: 10px;
	background: #f2f2f2;
	padding: 3px 3%;
	border-radius: 6px;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-left: 8px;
	padding: 5px 5px 3px 5px;
  display: inline-block;
  text-align: center;
  background: #cc0000;
  color: #fff;
  font-size: 14px;
	line-height: 1em;
}

.Form-Item-Input {
  border: 1px solid #ccc;
  border-radius: 6px;
 padding: 0.5em 3%;
  /*width: 94%;*/
  width: 100%;
  font-size: 18px;
}

.Form-Item-Textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
	padding: 1em 3%;
	height: 10em;
  /*width: 94%;*/
  width: 100%;
  font-size: 18px;
}




.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: #ccc;
  color: #000;
  font-weight: 400;
  font-size: 20px;
	text-align: center;
	border: none;
  transition : all 0.5s ease 0s;
}
.Form-Btn:hover {
  background: #6caf67;
  color: #fff;
}

.radio-inline {
	margin-right: 15px;
}

.radio-inline input[type=radio] {
	margin-right: 5px;
}



.Form-Item input[type=text]:focus {
	border-color: #cc0000;
}
.Form-Item input:focus {
	border-color: #cc0000;
}
.Form-Item textarea:focus {
	border-color: #cc0000;
}

::placeholder{
  color:#ccc
}






.form-contents-wrap {
	border: 1px solid #ccc;
  border-radius: 6px;
 	padding: 0.5em 1em;
  width: 100%;
  font-size: 18px;
	margin-bottom: 20px;
}



.caption {
	font-size: 1.2rem;
}



/* 確認画面（mail.php）
==============================================================*/

#formWrap {
	max-width:700px;
  margin: 0 auto;
  /*
	margin:0 auto 100px;
	color:#555;
	line-height:120%;
	font-size:90%;
  */
}
#formWrap input {
	border: none;
}

table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

p.error_messe{
	margin:5px 0;
	color:red;
}

.btnWrap {
	display: flex;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
.btnWrap {
	flex-direction: column;
}
}



/* ラジオボタン スタイル
==============================================================*/


input[type=radio] {
/*display: none;*/
position: absolute;
opacity: 0;
/*z-index: -1;*/
}

.radio-label {
	position: relative;
	padding: 0 0 0 24px;
	margin-right: 15px;
}
.radio-label:after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 0px;
	margin-top: -10px;
	width: 18px;
	height: 18px;
	border: 1px solid #ccc;
	border-radius: 50%;
}

.radio-label:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 4px;
	margin-top: -6px;
	width: 12px;
	height: 12px;
	background: #0171bd;
	border-radius: 50%;
	opacity: 0;
}
input[type=radio]:checked + .radio-label:before {
	opacity: 1;
}

.radio-label:hover:after {
	border-color: #0171bd;
}























