.form-field {
  border-top: solid 1px #cccccc;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #cccccc;
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 960px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 960px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.4rem;
}

.form-required {
  background: #ff0000;
}

.form-optional {
  background: #4491e2;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eeeeee;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 56px;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

select {
  background: url("/img/common/select.svg") center right 16px/14px 14px no-repeat #eeeeee;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  display: none;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  border-radius: 12px;
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #999999;
  color: #ffffff;
  font-size: 1.8rem;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #64c188;
  color: #64c188;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ff0000;
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 174, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ffae00;
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 174, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 174, 0, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #ff0000;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #ff0000;
  font-size: 1.4rem;
  background-color: rgba(255, 0, 0, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.lower-page .hero {
  background: url("/img/general/common/lower-img.jpg") center/cover no-repeat;
}

.greeting-txt {
  width: 100%;
}

.greeting-txt .primary .primary-txt {
  text-align: end;
}

.greeting__vsl {
  width: 400px;
}

@media screen and (max-width: 1024px) {
  .greeting__vsl {
    width: 340px;
  }
}

@media screen and (max-width: 960px) {
  .greeting__vsl {
    width: 50%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  .greeting__vsl {
    width: 60%;
  }
}

.greeting__vsl img {
  margin-bottom: 8px;
  border-radius: 2px;
}

.greeting__vsl .greeting-name {
  text-align: right;
}

.greeting__vsl .greeting-name__main {
  font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  .greeting__vsl .greeting-name__main {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 520px) {
  .greeting__vsl .greeting-name__main {
    font-size: 2rem;
  }
}

.greeting__vsl .greeting-name__main span {
  margin-right: 8px;
  padding: 4px 16px;
  background: #ffae00;
  border-radius: 8px 2px 8px 2px;
  color: #ffffff;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .greeting__vsl .greeting-name__main span {
    font-size: 1.6rem;
  }
}

.greeting__vsl .greeting-name__sub span {
  color: #ffae00;
}

.history-txt:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}

/*# sourceMappingURL=../../../maps/general/pages/about.css.map */
