@charset "UTF-8";
/**
 * Variables
 */
/*
お問い合わせページ
*/
/*===== contact-top =====*/
.contact-top {
  background-color: #EBEBEB;
  padding: 80px 0;
}
.contact-top__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  padding: 50px 40px;
}
@media (max-width: 576px) {
  .contact-top__inner {
    padding: 30px 20px;
  }
}
.contact-top__heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .contact-top__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.contact-top__description {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .contact-top__description {
    margin-bottom: 20px;
  }
}
.contact-top__description p {
  font-weight: 600;
}
@media (max-width: 576px) {
  .contact-top__description p {
    font-size: 14px;
  }
}
.contact-top__cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 90%;
  margin: 0 auto 40px;
}
@media (max-width: 576px) {
  .contact-top__cards {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact-top__card {
  flex: 1;
  padding: 16px 30px;
  background-color: #FF9300;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity 0.3s ease;
  font-size: 18px;
  font-weight: 700;
}
.contact-top__card--tel {
  font-size: 32px;
}
.contact-top__card i {
  font-size: 30px;
}
.contact-top__card:hover {
  opacity: 0.9;
}
.contact-top__info {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 576px) {
  .contact-top__info {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.contact-top__info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-top__info-label {
  display: inline-block;
  padding: 0 12px;
  border: 1px solid #212028;
  line-height: 1.2;
}

/*===== contact-form =====*/
.contact-form {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form__heading {
  font-size: 28px;
  font-weight: 700;
  color: #212028;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form__description {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form__required {
  font-size: 14px;
  color: #ff0000;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #212028;
}

.required {
  position: relative;
}

.required::after {
  content: "*";
  position: absolute;
  top: -5px;
  right: -10px;
  color: #ff0000;
}

.contact-form .wpcf7-form p {
  margin-bottom: 24px;
}
.contact-form .wpcf7-form label {
  font-weight: 500;
  margin-bottom: 0;
}
.contact-form .wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact-form .wpcf7-form input.wpcf7-form-control {
  background-color: #F5F5F5;
  padding: 35px 30px;
}
.contact-form .wpcf7-form select.wpcf7-form-control {
  background-color: #F5F5F5;
  padding: 25px 20px;
}
.contact-form .wpcf7-form .wpcf7-form-control {
  width: 100%;
  border: none;
  border-radius: 0;
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-date {
  padding: 20px;
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  background-color: #F5F5F5;
  padding: 20px;
}
.contact-form .wpcf7-form .wpcf7-form-control::-moz-placeholder {
  color: #A1A2A2;
}
.contact-form .wpcf7-form .wpcf7-form-control::placeholder {
  color: #A1A2A2;
}
.contact-form .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  background-color: #ebebeb;
}
.contact-form .wpcf7-form .check-list-wrapper .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
}
.contact-form .wpcf7-form input[type=text],
.contact-form .wpcf7-form input[type=email],
.contact-form .wpcf7-form input[type=tel] {
  height: 50px;
}
.contact-form .wpcf7-form textarea.wpcf7-form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy] {
  text-align: center;
}
.contact-form .wpcf7-form .contact__btn {
  text-align: center;
  margin-top: 50px;
}
.contact-form .wpcf7-form .contact-button {
  display: inline-block;
  position: relative;
}
.contact-form .wpcf7-form .contact-button input[type=submit] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.contact-form .wpcf7-form .contact-button:hover .contact-button__text {
  background-color: #fff;
  border-color: #FF9300;
  color: #FF9300;
  opacity: 1;
}
.contact-form .wpcf7-form .contact-button:hover .contact-button__text::before {
  background-color: #FF9300;
  transform: translate(5px, -50%);
}
.contact-form .wpcf7-form .contact-button:hover .contact-button__text::after {
  border-color: #FF9300;
  transform: translate(5px, -50%) rotate(45deg);
}
.contact-form .wpcf7-form .contact-button__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 80px;
  background-color: #FF9300;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
  position: relative;
  border: 2px solid #FF9300;
  transition: all 0.3s;
}
.contact-form .wpcf7-form .contact-button__text p {
  margin: 0;
}
.contact-form .wpcf7-form .contact-button__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background-color: #fff;
  transition: all 0.3s;
  z-index: 2;
}
.contact-form .wpcf7-form .contact-button__text::after {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0.9rem;
  font-weight: 300;
  color: #fff;
  transition: all 0.3s;
}
.contact-form .wpcf7-form .contact-button:hover .contact-button__text {
  opacity: 0.9;
}
.contact-form .wpcf7-form .wpcf7-list-item {
  margin: 0;
}

#wpcf7cpcnf table {
  width: 100%;
}
#wpcf7cpcnf tr {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
#wpcf7cpcnf th {
  text-align: left;
  font-weight: 500;
}
#wpcf7cpcnf td > p {
  min-height: 70px;
  background-color: #F5F5F5;
  padding: 17px 30px;
  margin-top: 8px;
}
#wpcf7cpcnf .wpcf7cp-btns {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 0;
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn,
#wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 80px;
  background-color: #FF9300;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
  position: relative;
  border: 2px solid #FF9300;
  transition: all 0.3s;
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background-color: #fff;
  transition: all 0.3s;
  z-index: 2;
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn::after {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0.9rem;
  font-weight: 300;
  color: #fff;
  transition: all 0.3s;
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover {
  background-color: #fff;
  border-color: #FF9300;
  color: #FF9300;
  opacity: 1;
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover::before {
  background-color: #FF9300;
  transform: translate(5px, -50%);
}
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover::after {
  border-color: #FF9300;
  transform: translate(5px, -50%) rotate(45deg);
}
#wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  background-color: #595757;
  border-color: #595757;
}/*# sourceMappingURL=contact.css.map */