@charset "UTF-8";
/* =========================================================
   contact/custom.scss (お問い合わせ・申し込み共通スタイル)
   ========================================================= */
/* Scss Document */
#contact-area {
  background-color: #FFFFFF;
  padding: 0px 0 40px;
}

.contact-lead {
  margin-bottom: 60px;
}
@media (max-width: 834px) {
  .contact-lead {
    margin-bottom: 40px;
  }
}
.contact-lead p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 834px) {
  .contact-lead p {
    font-size: 15px;
    text-align: left;
  }
}

.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.form-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
  padding: 0;
}
.form-list dt, .form-list dd {
  margin: 0;
  padding: 16px 0;
  box-sizing: border-box;
}
@media (max-width: 834px) {
  .form-list dt, .form-list dd {
    padding: 20px 0;
  }
}
.form-list dt {
  width: 260px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  display: flex;
  padding-right: 24px;
}
@media (max-width: 834px) {
  .form-list dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 8px;
  }
}
.form-list dd {
  width: calc(100% - 260px);
}
@media (max-width: 834px) {
  .form-list dd {
    width: 100%;
    padding-top: 0;
  }
}

span.must,
span.choice {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: 12px;
  line-height: 1;
}

span.must {
  background-color: #E54B4B;
  color: #FFFFFF;
}

span.choice {
  background-color: #E5E5E5;
  color: #666;
}

.wpcf7-form-control-wrap {
  display: block;
}
.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 textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #D2DFEC;
  border-radius: 4px;
  font-size: 16px;
  background-color: #F8F9FA;
  transition: all 0.3s;
  color: #333333;
  box-sizing: border-box;
}
.wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .wpcf7-form-control-wrap input[type=email]::-moz-placeholder, .wpcf7-form-control-wrap input[type=tel]::-moz-placeholder, .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #999;
}
.wpcf7-form-control-wrap input[type=text]::placeholder,
.wpcf7-form-control-wrap input[type=email]::placeholder,
.wpcf7-form-control-wrap input[type=tel]::placeholder,
.wpcf7-form-control-wrap textarea::placeholder {
  color: #999;
}
@media (max-width: 834px) {
  .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 textarea {
    font-size: 16px;
    padding: 12px;
  }
}
.wpcf7-form-control-wrap input[type=text]:focus,
.wpcf7-form-control-wrap input[type=email]:focus,
.wpcf7-form-control-wrap input[type=tel]:focus,
.wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #5C98D3;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(92, 152, 211, 0.1);
}
.wpcf7-form-control-wrap textarea {
  height: 180px;
  resize: vertical;
}

.checkbox-area .wpcf7-checkbox {
  display: block;
  gap: 16px 32px;
  flex-wrap: wrap;
}
@media (max-width: 834px) {
  .checkbox-area .wpcf7-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.checkbox-area .wpcf7-list-item {
  margin: 0 0 8px;
  display: block;
}
.checkbox-area .wpcf7-list-item label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.checkbox-area input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.checkbox-area input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.checkbox-area input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 2px rgba(92, 152, 211, 0.2);
}
.checkbox-area .wpcf7-list-item-label {
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-left: 36px;
  line-height: 1.5;
}
.checkbox-area .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #D2DFEC;
  background-color: #F8F9FA;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.checkbox-area .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("images/check.png");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.add-person-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #5C98D3;
  padding: 8px 16px;
  border: 1px solid #6CA0D6;
  border-radius: 4px;
  background-color: #F8FBFD;
  transition: all 0.3s;
}
.add-person-trigger:hover {
  background-color: #5C98D3;
  color: #FFFFFF;
}
.add-person-trigger input[type=checkbox] {
  margin-right: 8px;
  transform: scale(1.2);
  cursor: pointer;
}

#person2-fields {
  width: 100%;
}

.sub-fields-wrap {
  background-color: #F8F9FA;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  padding: 24px 32px;
  margin: 16px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 834px) {
  .sub-fields-wrap {
    padding: 16px;
  }
}
.sub-fields-wrap .sub-dt {
  font-size: 15px;
  font-weight: bold;
  color: #333333;
  width: 100%;
  padding: 0;
  border: none;
}
.sub-fields-wrap .sub-dd {
  width: 100%;
  margin-left: 0;
  padding: 0 0 8px 0;
  border: none;
}
.sub-fields-wrap .sub-dd:last-of-type {
  padding-bottom: 0;
}
.sub-fields-wrap .sub-dd input[type=text],
.sub-fields-wrap .sub-dd input[type=email],
.sub-fields-wrap .sub-dd input[type=tel] {
  background-color: #FFFFFF;
}

.privacy-wrap {
  text-align: center;
  margin-bottom: 50px;
  padding: 32px 0;
  border-top: 1px solid #E5E5E5;
}
.privacy-wrap .privacy-heading {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 16px;
}
@media (max-width: 834px) {
  .privacy-wrap .privacy-heading {
    font-size: 16px;
  }
}
.privacy-wrap .privacy-link-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px 0;
}
.privacy-wrap .privacy-link-text a {
  color: #5C98D3;
  text-decoration: underline;
  font-weight: bold;
}
.privacy-wrap .privacy-link-text a:hover {
  text-decoration: none;
}
.privacy-wrap .privacy-check {
  margin-bottom: 16px;
}
.privacy-wrap .privacy-check:last-child {
  margin-bottom: 0;
}
.privacy-wrap .privacy-check .wpcf7-list-item {
  margin: 0;
}
.privacy-wrap .privacy-check label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.privacy-wrap .privacy-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.privacy-wrap .privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.privacy-wrap .privacy-check input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 2px rgba(92, 152, 211, 0.2);
}
.privacy-wrap .privacy-check .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  position: relative;
  padding-left: 36px;
  line-height: 24px;
}
.privacy-wrap .privacy-check .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #D2DFEC;
  background-color: #F8F9FA;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.privacy-wrap .privacy-check .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("images/check.png");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.confirm-wrap {
  text-align: center;
  border-top: 1px solid #E5E5E5;
  padding-top: 40px;
}
.confirm-wrap .confirm-text {
  font-size: 15px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 1.6;
}
@media (max-width: 834px) {
  .confirm-wrap .confirm-text {
    font-size: 14px;
    text-align: left;
  }
}

.button_wrap_box {
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  background-color: #5C98D3;
  color: #FFFFFF !important;
  font-weight: bold;
  font-size: 16px;
  width: 260px;
  padding: 22px 0 22px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  position: relative;
  font-family: inherit;
  line-height: 1;
}
.btn-submit::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 44px;
  background-color: #FFFFFF;
  border-radius: 2px;
}
.btn-submit::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236CA0D6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}
@media (max-width: 834px) {
  .btn-submit {
    width: 100%;
    max-width: 280px;
    padding: 20px 0 20px 24px;
  }
  .btn-submit::before {
    top: 6px;
    bottom: 6px;
    width: 44px;
  }
  .btn-submit::after {
    width: 36px;
    right: 12px;
  }
}
.btn-submit:hover {
  background-color: rgb(68.1223404255, 134.2287234043, 202.8776595745);
  box-shadow: 0 4px 12px rgba(108, 160, 214, 0.3);
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #E54B4B;
  margin-top: 8px;
  display: block;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid #E54B4B;
  background-color: #FEF0F0;
  color: #E54B4B;
  font-size: 14px;
  font-weight: bold;
  padding: 16px;
  border-radius: 4px;
  margin-top: 24px;
  text-align: center;
}

/* =========================================================
   サンクスページ固有スタイル
   ========================================================= */
.thanks-box .thanks-title {
  font-size: 26px;
  font-weight: bold;
  color: #5C98D3;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media (max-width: 834px) {
  .thanks-box .thanks-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}/*# sourceMappingURL=custom.css.map */