@charset "UTF-8";
.mfp_element_checkbox,
.mfp_element_radio {
	vertical-align: middle;
	margin: 0px 2px;
}

label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}

label.mfp_checked {
	padding: 3px;
	border: solid 1px #CCC;
	background-color: #E8EEF9;
	box-shadow: 0px 1px 3px #CCC inset;
}

label.mfp_not_checked {
	padding: 3px;
	border: solid 1px #EEE;
}


.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"] {
  display: inline-block !important;
  margin-right: 25px;
  appearance: auto !important; /* 標準の見た目を戻す */
  -webkit-appearance: radio !important;
  -moz-appearance: radio !important;
  position: static !important; /* 非表示や配置ずれの対策 */
  opacity: 1 !important;
  visibility: visible !important; 
}
/* ラジオボタン・チェックボックスのサイズを拡大 */
.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  transform: scale(1.4);
  transform-origin: center;
  cursor: pointer;
}



.wpcf7-list-item {
  display: inline-block;
  margin: 5px;
}

.wpcf7-list-item label {
  padding: 5px 10px; border: none;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  background-color: #fff;

}

/* ラジオボタンを緑色に */
.wpcf7-list-item input[type="radio"] {
  accent-color: #8BAE5D;
}
 
.input-field .prefix + .wpcf7-form-control-wrap {
  margin-left: 3rem;
  width: calc(100% - 3rem);
}

.input-field .prefix + .wpcf7-form-control-wrap input,
.input-field .prefix + .wpcf7-form-control-wrap textarea {
  width: 100%; /* 入力欄をいっぱいにする */
}

.input-field .prefix + .wpcf7-form-control-wrap + label {
  margin-left: 3rem !important;
}

.input-field + .wpcf7-form-control-wrap + label {
  margin-left: 0.75rem !important;
}


/* Contact Form 7 フォームをMaterialize風に整える */
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="url"],
.wpcf7-form-control-wrap input[type="number"],
.wpcf7-form-control-wrap input[type="password"],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 3rem;
width: 100% !important;
margin-left: 0;
  font-size: 1rem;
  margin: 0 0 20px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* フォーカス時の効果 */
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus,
.wpcf7-form-control-wrap select:focus {
  border-bottom: 1px solid #26a69a;
  box-shadow: 0 1px 0 0 #26a69a;
}


.w100 {
	width:100%!important;
	box-sizing:border-box;
}


.wpcf7-form-control-wrap .w100 {
	width:100%!important;
	box-sizing:border-box;
}


.wpcf7-form-control-wrap select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem; color: #000;
}


.wpcf7-form-control-wrap button,
.wpcf7-form-control-wrap select {
  text-transform: none;
}


.wpcf7-form-control-wrap button {
	clear: both;
	padding: 10px 0px;
	text-align: center;
}


.wpcf7-form-control-wrap button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

