.contact {
	padding-top: 30px;
	margin-bottom: 48px;
}

.form-table {
	margin-top: 26px;
	border: 1px solid #b3b3b3;
	margin-bottom: 32px;
}

.form-table__item + .form-table__item {
	border-top: 1px solid #b3b3b3;
}

.form-table__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 19px;
	background: #f2f6fb;
}

.form-table__head__label {
	font-size: 1.7rem;
	font-weight: 500;
}

.form-table__head__must {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 90px;
	height: 20px;
	background: #7da8db;
	color: #ffffff;
	border-radius: 10px;
}

.form-table__content {
	padding: 19px 15px 20px;
  line-height: 1.5;
}

.form-table__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -3px;
}

.form-table__radio {
	margin-right: 12px;
	margin-bottom: 1px;
	font-size: 1.3rem;
	line-height: 1.76923;
	cursor: pointer;
}

.form-table__radio input {
	opacity: 0;
	margin: 3px 3px 0 0;
}

.form-table__radio input:checked + span::after {
	content: '';
}

.form-table__radio input:focus + span::before {
	-webkit-box-shadow: 0 1px 3px #e8e8e8;
	box-shadow: 0 1px 3px #e8e8e8;
}

.form-table__radio span {
	position: relative;
}

.form-table__radio span::before {
	content: '';
	width: 10px;
	height: 10px;
	border: 1px solid #707070;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: -18px;
}

.form-table__radio span:after {
	content: none;
	width: 6px;
	height: 6px;
	background: #707070;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: -15px;
}

.form-table__radio--other {
	width: 100%;
}

.form-table__input {
	width: 100%;
}

.form-table__input input {
	width: 100%;
	padding: 0;
	border: 1px solid #cccccc;
	border-radius: 0;
	outline: none;
	background: none;
	font-size: 1.4rem;
	padding: 8px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}

.form-table__input input::-webkit-input-placeholder {
	color: #cccccc;
}

.form-table__input input:-ms-input-placeholder {
	color: #cccccc;
}

.form-table__input input::-ms-input-placeholder {
	color: #cccccc;
}

.form-table__input input::placeholder {
	color: #cccccc;
}

.form-table__input input:-ms-input-placeholder {
	color: #cccccc;
}

.form-table__input input::-ms-input-placeholder {
	color: #cccccc;
}

.form-table__input textarea {
	width: 100%;
	border: 1px solid #cccccc;
	padding: 0;
	outline: none;
	background: transparent;
	padding: 10px;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 200px;
}

.form-table__input--other {
	margin-top: 9px;
	margin-bottom: 10px;
}

.form-table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form-table__row + .form-table__row {
	margin-top: 10px;
}

.form-table__row__head {
	margin-right: 12px;
	font-size: 1.4rem;
  width: 40px;
}

.err{
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  color: #FF0000;
}

.err::before{
  content: "※";
  color: #FF0000;
}

.form-btnlist button:first-of-type{
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {

.contact { /* pc */
	padding-top: 0;
	margin-bottom: 84px;
}

.form-table { /* pc */
	margin-bottom: 53px;
}

.form-table__item { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-table__head { /* pc */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 225px;
}

.form-table__head__label { /* pc */
	width: 5em;
	text-align-last: justify;
}

.form-table__head__label--long {
	width: auto;
}

.form-table__head__must { /* pc */
	margin-top: 10px;
}

.form-table__content { /* pc */
	width: calc(100% - 225px);
	padding: 23px 60px 22px 62px;
}

.form-table__content--rows { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  flex-wrap: wrap;
}

.form-table__radio { /* pc */
	width: 29%;
	margin-bottom: 9px;
}

.form-table__radio input { /* pc */
	margin-right: 15px;
}

.form-table__radio span::before { /* pc */
	top: 3px;
	left: -28px;
}

.form-table__radio span:after { /* pc */
	top: 6px;
	left: -25px;
}

.form-table__radio--other { /* pc */
	width: 80px;
}

.form-table__other { /* pc */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: -5px;
}

.form-table__input input { /* pc */
	max-width: 355px;
	padding: 7px 10px;
}

.form-table__input input:focus {
	-webkit-box-shadow: 0 1px 3px #e8e8e8;
	box-shadow: 0 1px 3px #e8e8e8;
}

.form-table__input textarea { /* pc */
	height: 162px;
}

.form-table__input textarea:focus {
	-webkit-box-shadow: 0 1px 3px #e8e8e8;
	box-shadow: 0 1px 3px #e8e8e8;
}

.form-table__input--other { /* pc */
	margin: 0;
}

.form-table__input--min input { /* pc */
	max-width: 140px;
}

.form-table__row + .form-table__row { /* pc */
	margin-top: 0;
	margin-left: 20px;
}

.form-btnlist{
  display: flex;
  width: 630px;
  margin: 0 auto;
}

.form-btnlist button:first-of-type{
  margin-right: 30px;
  margin-bottom: 0;
}

}

