@charset "UTF-8";

/*必須項目のエラー*/
.wpcf7-not-valid-tip {
	padding: 6px 10px;
	padding-left: 32px;
	margin-top: 10px;
	border: 2px solid #dc3232;
	border-left: 6px solid #dc3232;
	position: relative;
}
.wpcf7-not-valid-tip::before {
	position: absolute;
	content: '\e002';
	font-family: 'Material Icons Outlined';
	font-size: 20px;
	top:0;
	left: 7px;
	padding-top: 2.5px;
}
@media screen and (min-width: 769px) {
	.wpcf7-not-valid-tip::before {
		top: 3px;
	}
}

/*送信前ボタンのエラー*/
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	padding: 6px 10px;
	padding-left: 32px;
	border: 2px solid #dc3232;
	border-left: 6px solid #dc3232;
	position: relative;
	color: #dc3232;
	margin: 0;
	margin-top: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before,
.wpcf7 form.payment-required .wpcf7-response-output::before {
	position: absolute;
	content: '\e002';
	font-family: 'Material Icons Outlined';
	font-size: 20px;
	top: 0;
	left: 7px;
	padding-top: 2.5px;
}
@media screen and (min-width: 769px) {
	.wpcf7 form.invalid .wpcf7-response-output::before,
	.wpcf7 form.unaccepted .wpcf7-response-output::before,
	.wpcf7 form.payment-required .wpcf7-response-output::before {
		top: 3px;
	}
}

/*内容確認ボタン*/
.contact__page__button__wrapper {
	position: relative;
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
	.contact__page__button__wrapper {
		max-width: 430px;
		margin-top: 120px;
	}
}

.contact__page__button__wrapper::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
	.contact__page__button__wrapper::after {
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		right: 31px;
	}
}

.contact__page__button__confirm {
	-webkit-appearance: none;
	display: block;
  background-color: #008c38;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 100%;
  padding: 14px 0;
	border: none;
	cursor: pointer;
  border-radius: 22px;
}
@media screen and (min-width: 769px) {
	.contact__page__button__confirm {
		font-size: 24px;
		padding: 23px 0;
		border-radius: 35px;
	}
}

/*送信ボタン横のローディングを削除*/
.wpcf7-spinner {
	display: none;
}

/*required（必須）バッジ*/
.required__badge {
	color: #fff;
  background-color: #008c38;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 44px;
  border-radius: 4px;
	padding: 4px 0;
	margin-top: 1px;
}
@media screen and (min-width: 769px) {
	.required__badge {
		margin-top: 2px;
	}
}

/*any（任意）バッジ*/
.any__badge {
	color: #008c38;
  background-color: #fff;
	border: 1px solid #008c38;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 44px;
  border-radius: 4px;
	padding: 3px 0;
	margin-top: 2px;
}
@media screen and (min-width: 769px) {
	.any__badge {
		margin-top: 2px;
	}
}

/*お問い合わせページ*/
.contact__page.section {
	padding-top: 88px;
}
@media screen and (min-width: 769px) {
	.contact__page.section {
		padding-top: 200px;
		padding-bottom: 160px;
	}
}

.contact__page__title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
	.contact__page__title {
		padding-bottom: 70px;
	}
}

.contact__page__items > label {
	display: block;
	margin-top: 50px;
}
.contact__page__items > label:first-child {
	margin-top: 0;
}
@media screen and (min-width: 769px) {
	.contact__page__items > label {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		margin-top: 100px;
	}
}

.contact__page__item {
	margin-top: 50px;
}
@media screen and (min-width: 769px) {
	.contact__page__item {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		margin-top: 110px;
	}
}

.contact__page__info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	column-gap: 10px;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
}
@media screen and (min-width: 769px) {
	.contact__page__info {
		width: 37%;
		font-size: 20px;
	}
	.contact__page__info.align__self {
		align-self: flex-start;
	}
	.contact__page__info.padding__top {
		padding-top: 5px;
	}
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 14px;
}
@media screen and (min-width: 769px) {
	.wpcf7-form-control-wrap {
		width: 63%;
		margin-top: 0;
	}
}

/*インプット要素のスタイリング*/
/*テキスト*/
input[type="text"] {
	width: 100%;
	appearance: none;
	border: 2px solid #008c38;
	border-radius: 4px;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.5;
	padding: 6px 6px;
}
@media screen and (min-width: 769px) {
	input[type="text"] {
		font-size: 18px;
		padding-top: 9.5px;
		padding-bottom: 9.5px;
	}
}

/*メールアドレス*/
input[type="email"] {
	width: 100%;
	appearance: none;
	border: 2px solid #008c38;
	border-radius: 4px;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.5;
	padding: 6px 6px;
}
@media screen and (min-width: 769px) {
	input[type="email"] {
		font-size: 18px;
		padding-top: 9.5px;
		padding-bottom: 9.5px;
	}
}

/*テキストエリア*/
textarea {
	width: 100%;
	vertical-align: top;
	min-height: 200px;
	resize: vertical;
	appearance: none;
	border: 2px solid #008c38;
	border-radius: 4px;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	padding: 4px 6px;
}
@media screen and (min-width: 769px) {
	textarea {
		font-size: 18px;
		min-height: 350px;
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

/*ラジオボタン*/
.wpcf7-radio {
	display: flex;
	flex-direction: column;
}

.wpcf7-list-item {
	margin-left: 0;
	margin-top: 14px;
	padding-left: 14px;
}
.wpcf7-list-item:first-child {
	margin-top: 3px;
}
@media screen and (min-width: 769px) {
	.wpcf7-list-item {
		margin-top: 16px;
		padding-left: 0;
	}
}

input[type="radio"] {
	margin: 0;
	opacity: 0;
	position: absolute;
	appearance: none;
}
input[type="radio"]:focus + .wpcf7-list-item-label {
	outline: 1px auto;
}
input[type="radio"]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

.wpcf7-list-item-label {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	font-size: 16px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	display: inline-block;
	background-color: transparent;
	border: 2px solid #008c38;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.wpcf7-list-item-label::after {
	position: absolute;
	display: inline-block;
	background-color: #008c38;
	border: 1px solid transparent;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	opacity: 0;
}
@media screen and (min-width: 769px) {
	.wpcf7-list-item-label {
		font-size: 18px;
	}
}