/*------------------------------------------------------------
    Box
------------------------------------------------------------*/
.c-box {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 32px;
  padding: 50px 36px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .c-box {
    padding: 32px 24px;
  }
}
.c-box__row {
  position: relative;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #dcdee6;
}
.c-box__row:first-child {
  padding-top: 0;
}
.c-box__label {
  margin-top: -2px;
}
.c-box__field {
  min-height: 26px;
  margin-top: 7px;
  color: #593a0f;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
}
.c-box__groupbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 24px -4px 0;
}
@media only screen and (max-width: 767px) {
  .c-box__groupbtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 24px 0 0;
  }
}
.c-box__groupbtn button {
  width: 100%;
  margin: 0 4px;
}
@media only screen and (max-width: 767px) {
  .c-box__groupbtn button {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-box__groupbtn button + button {
    margin-top: 8px;
  }
}
.c-box__recaptcha {
  text-align: center;
}
.c-box__field .mfp_err,
.c-box__recaptcha .mfp_err {
  display: block;
  color: #bf0000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.c-box__field .mfp_err {
  margin-top: 4px;
}
.c-box__field .mfp_err + .mfp_err {
  margin-top: 1px;
}
.c-box__recaptcha .mfp_err {
  margin-top: 10px;
}
/*------------------------------------------------------------
    Button
------------------------------------------------------------*/
.c-btn {
  display: block;
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 10px 30px;
  background-color: #593a0f;
  border: 2px solid #593a0f;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btn:hover {
  background-color: #eb5a24;
  border-color: #eb5a24;
}
/*------------------------------------------------------------
    Checkbox
------------------------------------------------------------*/
.c-checkbox__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  margin: 0 -8px -12px 0;
}
@media only screen and (max-width: 767px) {
  .c-checkbox__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
  }
}
.c-checkbox__group .mwform-checkbox-field {
  min-width: 154px;
  margin: 0 8px 12px 0;
}
@media only screen and (max-width: 767px) {
  .c-checkbox__group .mwform-checkbox-field {
    width: 100%;
    min-width: unset;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-checkbox__group .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 8px;
  }
}
.c-checkbox__group .mwform-checkbox-field label {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-checkbox__group .mwform-checkbox-field label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  cursor: pointer;
}
.c-checkbox__group .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text {
  background-color: #9a804f;
  color: #fff;
}
.c-checkbox__group .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  background-color: #fff;
}
.c-checkbox__group .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
.c-checkbox__group .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 12px 14px 10px 42px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #593a0f;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-checkbox__group .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  background-color: #dcdee6;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-checkbox__group .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  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;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg transform='translate(-218.5 -1000.167)'%3E%3Crect width='20' height='20' transform='translate(218.5 1000.167)' opacity='0'/%3E%3Cpath fill='%23593a0f' d='M225.6,1014.661l-4.875-4.875a.749.749,0,0,1,0-1.061h0l1.06-1.064a.751.751,0,0,1,1.061,0h0l3.284,3.286,7.034-7.036a.751.751,0,0,1,1.061,0h0l1.06,1.063a.749.749,0,0,1,0,1.061h0l-8.625,8.625a.75.75,0,0,1-1.06,0Z' transform='translate(0.5 0.881)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-box-sizing: border-box;
  opacity: 0;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-checkbox__group--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0;
}
.c-checkbox__group--vertical + .c-checkbox__group--vertical {
  margin-top: 6px;
}
.c-checkbox__group--vertical .mwform-checkbox-field {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.c-checkbox__group--vertical .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 6px;
}
/*------------------------------------------------------------
    Input
------------------------------------------------------------*/
.c-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.c-input input[type=text],
.c-input input[type=email],
.c-input input[type=tel],
.c-input input[type=url] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
  height: 48px;
  padding: 12px 14px 10px;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  color: #593a0f;
  font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
}
#contact .c-input input[type=text],
#contact .c-input input[type=email],
#contact .c-input input[type=tel],
#contact .c-input input[type=url] {
  width: 100% !important;
  max-width: unset;
}
.c-input input[type=text]::-webkit-input-placeholder, .c-input input[type=email]::-webkit-input-placeholder, .c-input input[type=tel]::-webkit-input-placeholder, .c-input input[type=url]::-webkit-input-placeholder {
  color: #b3b3b3;
}
.c-input input[type=text]::-moz-placeholder, .c-input input[type=email]::-moz-placeholder, .c-input input[type=tel]::-moz-placeholder, .c-input input[type=url]::-moz-placeholder {
  color: #b3b3b3;
}
.c-input input[type=text]:-ms-input-placeholder, .c-input input[type=email]:-ms-input-placeholder, .c-input input[type=tel]:-ms-input-placeholder, .c-input input[type=url]:-ms-input-placeholder {
  color: #b3b3b3;
}
.c-input input[type=text]::-ms-input-placeholder, .c-input input[type=email]::-ms-input-placeholder, .c-input input[type=tel]::-ms-input-placeholder, .c-input input[type=url]::-ms-input-placeholder {
  color: #b3b3b3;
}
.c-input input[type=text]::placeholder,
.c-input input[type=email]::placeholder,
.c-input input[type=tel]::placeholder,
.c-input input[type=url]::placeholder {
  color: #b3b3b3;
}
.c-input textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 200px;
  padding: 12px 14px 10px;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  resize: none;
  color: #593a0f;
  font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
}
#contact .c-input textarea {
  width: 100% !important;
  max-width: unset;
}
.c-input textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.c-input textarea::-moz-placeholder {
  color: #b3b3b3;
}
.c-input textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.c-input textarea::-ms-input-placeholder {
  color: #b3b3b3;
}
.c-input textarea::placeholder {
  color: #b3b3b3;
}
.c-input--long {
  width: min(640px, 100%);
}
.c-input--medium {
  width: min(424px, 100%);
}
.c-input--short {
  width: min(320px, 100%);
}
.c-input--tiny {
  width: min(154px, 100%);
}
#contact .c-input--long input[type=text] {
  width: min(640px, 100%) !important;
}
#contact .c-input--medium input[type=email] {
  width: min(424px, 100%) !important;
}
#contact .c-input--short input[type=tel] {
  width: min(320px, 100%) !important;
}
#contact .c-input--tiny input[type=url] {
  width: min(154px, 100%) !important;
}
.c-input__zip .mwform-zip-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -4px;
  padding-left: 4px;
  color: #593a0f;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
}
.c-input__zip .mwform-zip-field::before {
  content: "〒";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
}
.c-input__zip .mwform-zip-field input[type=text] {
  width: min(174px, 100%);
  margin: 0 4px;
}
#contact .c-input__zip .mwform-zip-field input[type=text] {
  width: min(174px, 100%) !important;
}
.c-input__zip .mwform-zip-field input[type=text]:first-of-type {
  margin-left: 12px;
}
.c-input__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -4px;
}
.c-input__group .c-input__item {
  width: calc(100% - 8px);
  margin: 0 4px;
}
.c-input__group .c-input__item--tiny {
  width: calc(50% - 8px);
  max-width: 154px;
}
.c-input__group--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
.c-input__group--vertical .c-input__item {
  width: 100%;
  margin: 0;
}
.c-input__group--vertical .c-input__item + .c-input__item {
  margin-top: 12px;
}
.c-input__itemlabel {
  margin-top: -6px;
}
.c-input__itemlabel + .c-input__iteminput {
  margin-top: 1px;
}
.c-input__iteminput {
  min-height: 26px;
}
/*------------------------------------------------------------
    Label
------------------------------------------------------------*/
.c-label1 {
  display: inline-block;
  position: relative;
  min-height: 26px;
  color: #593a0f;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.733;
}
.c-label1::before {
  content: none;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  padding: 1px 3px;
  background-color: transparent;
  border: 1px solid #9a804f;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #9a804f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.c-label1.is-optional {
  padding-left: 34px;
}
.c-label1.is-optional::before {
  content: "任意";
}
.c-label1.is-required {
  padding-left: 34px;
}
.c-label1.is-required::before {
  content: "必須";
  color: #fff;
  background-color: #9a804f;
}
.c-label2 {
  display: inline-block;
  min-height: 18px;
  color: #593a0f;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}
/*------------------------------------------------------------
    Select
------------------------------------------------------------*/
.c-select {
  display: inline-block;
  position: relative;
  width: min(184px, 100%);
}
.c-select::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 13px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: #9a804f;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  pointer-events: none;
}
.c-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 12px 32px 10px 14px;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  color: #b3b3b3;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.733;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-select select.is-selected {
  color: #593a0f;
}
.c-select select.is-selected optgroup {
  color: #593a0f;
}
.c-select select.is-selected option {
  color: #593a0f;
}
.c-select select optgroup {
  color: #593a0f;
}
.c-select select option {
  color: #593a0f;
}
/*------------------------------------------------------------
    Form
------------------------------------------------------------*/
.grecaptcha-badge {
  bottom: 84px !important;
  z-index: 2;
}
