@charset "UTF-8";
/* icons.scss */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* ========================================

__contact

======================================== */
.wpcf7-form {
  width: 100%;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: var(--wp--preset--color--c-foreground);
}
.wpcf7-form input {
  font-size: 100%;
  font-family: var(--wp--preset--font-family--ff-noto-serif-jp);
}
.wpcf7-form input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
.wpcf7-form input[type=radio] {
  display: none;
}
.wpcf7-form input[type=radio]:checked + label {
  background: #ff0000;
}
.wpcf7-form input[type=checkbox] {
  display: none;
}
.wpcf7-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.wpcf7-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email],
.wpcf7-form select {
  width: 100%;
  border-radius: 3px;
  background-color: #fafafa;
  border: none;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  font-size: 100%;
  font-family: var(--wp--preset--font-family--ff-noto-serif-jp);
}
@media only screen and (min-width: 768px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=tel],
  .wpcf7-form input[type=email],
  .wpcf7-form select {
    height: 60px;
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=tel],
  .wpcf7-form input[type=email],
  .wpcf7-form select {
    height: 50px;
    padding: 1em;
  }
}
.wpcf7-form input {
  width: 100%;
}
.wpcf7-form select {
  background-image: linear-gradient(45deg, transparent 50%, #e1e1e1 50%), linear-gradient(135deg, #e1e1e1 50%, transparent 50%);
  background-position: calc(100% - 30px) 50%, calc(100% - 25px) 50%, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  cursor: pointer;
}
.wpcf7-form select option {
  font-size: 16px;
  transform: scale(0.8);
}
.wpcf7-form textarea {
  overflow: hidden;
  width: 100%;
  min-height: 200px;
  background-color: #fafafa;
  border: none;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 100%;
  font-family: var(--wp--preset--font-family--ff-noto-serif-jp);
}
@media only screen and (min-width: 768px) {
  .wpcf7-form textarea {
    height: 80px;
    padding: 1.8em 2em;
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7-form textarea {
    height: 60px;
    padding: 1em;
  }
}
.wpcf7-form table {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .wpcf7-form table tr:first-child th, .wpcf7-form table tr:first-child td {
    border-top: 1px solid #f0f0f0;
  }
}
.wpcf7-form table tr th, .wpcf7-form table tr td {
  box-sizing: border-box;
  padding: 0 1.25em;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form table tr th, .wpcf7-form table tr td {
    display: block;
  }
}
.wpcf7-form table tr th {
  position: relative;
  overflow: hidden;
  text-align: left;
  font-weight: normal;
}
@media only screen and (min-width: 768px) {
  .wpcf7-form table tr th {
    width: 28%;
    border-bottom: 1px solid #f0f0f0;
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7-form table tr th {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
}
.wpcf7-form table tr th span {
  display: inline-block;
  padding-left: 3em;
}
.wpcf7-form table tr th:before {
  content: "任意";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0.1em 0.8em;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #cdcdcd;
}
.wpcf7-form table tr th.required:before {
  content: "必須";
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
.wpcf7-form table tr td {
  border-bottom: 1px solid #f0f0f0;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form table tr td {
    display: block;
    width: 100%;
    border-top: none;
  }
}
.wpcf7-form table tr td .error {
  margin-top: 0.8em;
  letter-spacing: 0.02em;
}
.wpcf7-form table tr td .confirm {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #cdcdcd;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .wpcf7-form table tr td .confirm {
    padding: 1.25em 2em;
  }
}
@media only screen and (max-width: 767px) {
  .wpcf7-form table tr td .confirm {
    padding: 0.8em 1em;
  }
}

.p-contactform-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contactform-submit__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  color: #fff;
  border: none;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .p-contactform-submit__button {
    width: 280px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .p-contactform-submit__button {
    min-width: 200px;
    width: 80%;
    height: 50px;
    margin: auto;
  }
}
.p-contactform-submit__button:hover {
  cursor: pointer;
  background-color: #3e3e3e;
  text-decoration: none;
}