@charset "UTF-8";
#form {
  font-size: 16rem;
  /* iOSでのデフォルトスタイルをリセット */
}
#form ::-moz-placeholder {
  color: #757D92;
}
#form ::placeholder {
  color: #757D92;
}
#form button,
#form input,
#form select,
#form textarea {
  font-family: inherit;
  font-size: 100%;
}
#form input::-moz-placeholder, #form textarea::-moz-placeholder {
  color: #ccc;
}
#form input::placeholder,
#form textarea::placeholder {
  color: #ccc;
}
#form button,
#form input[type=submit],
#form input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0.5em 2em;
  border-radius: 4px;
  transition: all 0.3s;
}
#form button::-webkit-search-decoration,
#form input[type=submit]::-webkit-search-decoration,
#form input[type=button]::-webkit-search-decoration {
  display: none;
}
#form input[type=submit] {
  background-color: #c179d3;
  color: #fff;
}
#form input[type=submit]:hover {
  background-color: #dea9eb;
}
#form input[type=button] {
  background-color: #ccc;
  color: #333;
}
#form input[type=button]:hover {
  background-color: #dea9eb;
}
#form input[type=date] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  padding: 3px 3%;
  height: 2em;
  line-height: 2em;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-weight: normal;
  box-sizing: border-box;
}
#form input[type=text],
#form input[type=tel],
#form input[type=email],
#form input[type=password] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 98%;
  padding: 5.5px 2%;
  height: 2em;
  line-height: 2em;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-weight: normal;
  box-sizing: border-box;
}
#form textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 98%;
  padding: 5px 1%;
  height: 5em;
  border: 1px solid #ddd;
  font-size: 1em;
  border-radius: 3px;
  box-sizing: border-box;
}
#form input[type=number] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  padding: 5.5px 2%;
  height: 2em;
  line-height: 2em;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-weight: normal;
  box-sizing: border-box;
}
#form input[type=file] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 98%;
  padding: 5.5px 1%;
  height: auto;
  line-height: 1.6em;
  font-size: 1em;
  color: #999;
  border-radius: 3px;
  font-weight: normal;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #form {
    font-size: 1.125em;
  }
  #form input[type=text],
  #form input[type=tel],
  #form input[type=email],
  #form input[type=password] {
    border-radius: 4px;
    height: 2.4em;
    line-height: 2.4em;
  }
  #form input[type=number] {
    min-width: 100px;
  }
  #form textarea {
    border-radius: 4px;
  }
  #form .select-wrap {
    position: relative;
    display: inline-block;
  }
  #form .select-wrap::before {
    margin-top: -3px;
    border-top: 8px solid #ccc;
    border-right: 5px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 5px solid transparent;
  }
  #form .select-wrap select {
    border-radius: 4px;
  }
}
#form .select-wrap {
  position: relative;
  width: 98%;
  display: inline-block;
}
#form .select-wrap::before {
  z-index: 1;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -3px;
  pointer-events: none;
  content: "";
  width: 0;
  border-top: 8px solid #ccc;
  border-right: 5px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 5px solid transparent;
}
#form .select-wrap select {
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  width: 100%;
  height: 36px;
  line-height: 1em;
  padding: 0 12px 0;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 0;
  font-size: 1em;
  border-radius: 3px;
}
#form .select-wrap select option {
  background-color: #fff;
  color: #333;
}
#form .select-wrap select::-ms-expand {
  display: none;
}
#form .select-wrap select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
#form .select-wrap.select-primary::before {
  color: #fff;
}
#form .select-wrap.select-primary > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}
#form .select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}
#form .select-wrap.select-inverse::before {
  color: #fff;
}
#form .select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}
#form .select-wrap.select-inverse > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}
#form input[type=radio],
#form input[type=checkbox] {
  display: none;
}
#form input[type=checkbox] + span,
#form .checkbox {
  box-sizing: border-box;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 0px 8px 0;
  padding: 0px 0px 0px 35px;
  border-radius: 8px;
  vertical-align: middle;
  cursor: pointer;
}
#form input[type=checkbox] + span::before,
#form .checkbox::before {
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  content: "";
  transform: translateY(-50%);
}
#form input[type=checkbox] + span::after,
#form .checkbox::after {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 7px;
  height: 12px;
  border-right: 3px solid #c179d3;
  border-bottom: 3px solid #c179d3;
  content: "";
  opacity: 0;
  transform: rotate(45deg) translate(0%, -95%);
}
#form input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
#form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
#form input.btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  padding: 3px 16px;
  border-radius: 4px;
  background-color: #eee;
  margin-left: 5px;
}
#form .btn {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
#form .btn input,
#form .btn button {
  display: block;
  margin: 0 1em;
}
#form .btn .next {
  background-color: #2662b5;
  color: #fff;
}
#form .btn .back {
  background-color: #999999;
  color: #fff;
}
#form .btn .send {
  background-color: #2662b5;
  color: #fff;
}
#form .wpcf7c-conf {
  background-color: #f4f4f4;
  pointer-events: none;
}

.info {
  font-size: 0.9em;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1.6em 0 1.6em 0;
}
.info + .required {
  margin: 2em 0 0 0;
}
.info p {
  margin-bottom: 1em;
  line-height: 2;
}
.info p a {
  display: inline;
  color: #c27ebe;
  background: linear-gradient(#c27ebe, #c27ebe) 0px 90%/100% 1px no-repeat;
  padding-bottom: 0em;
  transition: all 0.2s;
}
.info p a:hover {
  background: linear-gradient(#c27ebe, #c27ebe) 0px 92%/100% 0px no-repeat;
}
@media screen and (min-width: 768px) {
  .info {
    padding: 1.6em 1em 1.6em 2em;
  }
  .info + .required {
    margin: 2em 0 2em 4em;
  }
}

.required {
  display: inline-block;
  color: #d92121;
  font-size: 0.8em;
  margin-left: 1em;
}

table.contact {
  margin: 1em auto;
  width: 100%;
  max-width: 820px;
  display: block;
}
table.contact tr {
  display: block;
  margin-bottom: 0.9em;
}
table.contact tr th {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.2em 0;
}
table.contact tr td {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.2em 0;
}
table.contact tr td .note {
  font-size: 0.8em;
  color: #999;
  margin-left: 0.8em;
}
table.contact tr td.comp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
}
table.contact tr td.comp p {
  display: inline-block;
  width: auto;
  white-space: nowrap;
}
table.contact tr td .sns .vender {
  display: inline-block;
  width: 100%;
}
table.contact tr td .sns .vender + p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  table.contact {
    display: table;
    margin: 2em auto;
  }
  table.contact tr {
    display: table-row;
  }
  table.contact tr th {
    display: table-cell;
    width: 28%;
    padding: 1.2em 0;
    vertical-align: top;
  }
  table.contact tr th p {
    font-weight: 500;
    color: #555;
    font-size: 0.8em;
  }
  table.contact tr td {
    display: table-cell;
    width: 72%;
    padding: 0.8em 0;
  }
  table.contact tr td .sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em 0;
  }
  table.contact tr td .sns .vender {
    width: 120px;
  }
  table.contact tr td .sns .vender + p {
    display: inline-block;
    width: calc(100% - 130px);
    margin-bottom: unset;
  }
}

.agreeText {
  margin: 2em auto;
  background-color: #f4f4f4;
  padding: 1em 5% 2em;
  font-size: 0.7em;
}
.agreeText h3 {
  text-align: center;
  margin: 1em auto;
}
.agreeText .scroll {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 200px;
}
.agreeText .scroll h4 {
  margin-bottom: 1em;
}
.agreeText .scroll #policy {
  margin: 1em auto;
}
.agreeText .scroll #policy p {
  margin-bottom: 1em;
}
.agreeText .scroll #policy > ol {
  margin: 2em 0 2em 1em;
}
.agreeText .scroll #policy > ol > li {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .agreeText {
    margin: 3em auto;
    padding: 2em 8% 3em;
  }
  .agreeText h3 {
    text-align: center;
    margin: 1em auto;
  }
  .agreeText .scroll {
    height: 300px;
  }
  .agreeText .scroll #policy {
    margin: 1em auto;
  }
}

.send {
  margin: 2em auto;
  text-align: center;
  line-height: 2;
}
.send .note2 {
  color: #d92121;
  font-size: 0.9em;
}
.send .wpcf7-acceptance {
  display: inline-block;
  margin: 1em auto;
}
.send .buttons {
  margin: 1em auto;
}
.send .buttons p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.send .buttons .wpcf7-spinner {
  display: none;
}

.custom-wpcf7c-confirmed .select-wrap {
  background-color: #f4f4f4;
  pointer-events: none;
}

.mainContent .wpcf7 form.wpcf7-form.init .wpcf7-response-output, .mainContent .wpcf7 form.wpcf7-form.resetting .wpcf7-response-output, .mainContent .wpcf7 form.wpcf7-form.submitting .wpcf7-response-output {
  display: none;
}
.mainContent .wpcf7 form.wpcf7-form.invalid .wpcf7-response-output {
  text-align: center;
  display: block;
  background-color: #ffe9a8;
  border: none;
  width: 96%;
  margin: 0 auto;
  white-space: pre-wrap;
  word-break: keep-all;
  line-break: strict;
}/*# sourceMappingURL=contact.css.map */