@charset "UTF-8";
.wpcf7-form table {
	display: block;
}
.wpcf7-form table tr,
.wpcf7-form table th,
.wpcf7-form table td {
	display: block;
	font-size: 14px;
}
.wpcf7-form table tr {
	position: relative;
	padding: 15px 0;
	border-bottom: solid 1px #E2E2E2;
}
.wpcf7-form table th {
	text-align: left;
	padding-bottom: 10px;
	font-weight: 400;
	font-size: 16px;
}
.wpcf7-form table td p {
	line-height: 1.4em;
}
.wpcf7-form table td p .sub {
	display: inline-block;
	padding-top: 5px;
	color: #666;
	font-size: 12px;
}

.wpcf7-form table th span.check,
.wpcf7-form table th span.nocheck {
	display: inline-block;
	padding: 2px 8px;
	background: #CE052B;
	color: #FFF;
	margin-right: 10px;
	font-size: 13px;
}
.wpcf7-form table th span.nocheck {
	background: #777777;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	background: #F5F5F5;
	padding: 7px 10px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	border: none;
	font-size: 16px;
	border: solid 1px #BEBEBE;
}

.wpcf7-form select {
	background: #F5F5F5;
	padding: 7px 12px;
	display: block;
	box-sizing: border-box;
	border: none;
	font-size: 16px;
	border: solid 1px #BEBEBE;
}
.wpcf7-form input[type="submit"] {
	background: #FF6B00;
	padding: 20px;
	width: 100%;
	max-width: 300px;
	margin: 40px auto 20px;
	text-align: center;
	border-radius: 5px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	display: block;
	box-sizing: border-box;
	border: none;
}
.wpcf7-form-control-wrap {
	display: flex;
	flex-wrap: wrap;
}
.wpcf7-list-item {
	display: flex;
	font-size: 16px;
	margin: 0 10px 7px 0;
}
.wpcf7-list-item label {
	position: relative;
}
.wpcf7-list-item-label {
	
}
.wpcf7-form input[type="radio"],
.wpcf7-form input[type="checkbox"] {
	display: none;
	appearance: none;
	font-size: 16px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
	padding-left: 27px;
	font-size: 14px;
	line-height: 1.4em;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label::before {
  content: '';
  display: block;
	position: absolute;
	top: 5px;
	left: 2px;
  border-radius: 50%;
	background: #FFF;
  border: 1px solid #DDD;
  width: 16px;
  height: 16px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
  content: '';
  display: block;
	position: absolute;
	top: 5px;
	left: 2px;
	margin: 4px 0 0 4px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #319bd2;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label {
	background: #EFEFEF;
	color: #319bd2;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
	padding-left: 28px;
	line-height: 1.6em;
	font-size: 14px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: '';
  display: block;
	position: absolute;
	top: 5px;
	left: 2px;
	background: #FFF;
	border-radius: 1px;
  border: 1px solid #CCC;
  width: 16px;
  height: 16px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  content: '';
  display: block;
	position: absolute;
	top: 5px;
	left: 2px;
	margin: 1px 0 0 5px;
  width: 5px;
  height: 10px;
	transform: rotateZ(45deg);
  border-bottom: solid 3px #319bd2;
	border-right: solid 3px #319bd2;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label {
	background: #EFEFEF;
	color: #319bd2;
}

/* エラー */
.wpcf7-not-valid-tip {
	display: inline-block;
	padding: 6px 7px;
}

/* PC用 */
@media screen and (min-width: 768px) {
	.wpcf7-form table th {
		position: absolute;
		top: 27px;
		left: 0;
		font-size: 16px;
		line-height: 1.4em;
	}
	.wpcf7-form table td {
		padding-left: 300px;
		padding-top: 10px;
		padding-bottom: 10px;
		color: #666666;
	}
	.wpcf7-form input[type="text"].text-short,
	.wpcf7-form input[type="email"].text-short,
	.wpcf7-form input[type="tel"].text-short {
		max-width: 300px;
	}
	.wpcf7-form table td p .sub {
		font-size: 14px;
	}
	.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
		font-size: 16px;
	}
	.wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
		font-size: 16px;
	}
}