@charset "UTF-8";
/**
 * お問い合わせページ
 */
/**
 * Variables
*/
section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
}

/* =========================
  フォーム
========================= */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0 40px;
}

.contact-form p {
  font-size: 1rem;
}

.wpcf7 h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.2rem 0;
  position: relative;
}
.row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #303133 0, #303133 3px, transparent 3px, transparent 6px);
}
.row--last::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #303133 0, #303133 3px, transparent 3px, transparent 6px);
}

.row.align-start {
  align-items: flex-start;
}

.label__area {
  width: 30%;
}

.label__area label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

label.required::after {
  content: "必須";
  color: white;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-weight: 400;
  background-color: #dd8c8c;
  padding: 0 0.3rem;
  display: inline-block;
  /* border-radius: 2px; */
  margin-top: 5px;
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wpcf7-list-item {
  margin: 0;
}

span.wpcf7-list-item-label {
  margin: 0;
  display: flex;
  align-items: center;
}

.wpcf7-checkbox input[type=checkbox] {
  display: none;
}

/* チェックボックスを非表示 */
.contact_type input[type=checkbox] {
  display: none;
}

/* ラベルの前に枠を作成 */
.contact_type .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 1rem;
  border: 1px solid #ffffff;
  background: #fff;
  vertical-align: middle;
  position: relative;
}

/* チェックが入った時の色やチェックマーク */
.contact_type input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 6px;
  width: 4px;
  height: 10px;
  border-right: 2px solid #303133;
  border-bottom: 2px solid #303133;
  transform: rotate(45deg);
}

/* リストアイテムのスタイル */
.contact_type .wpcf7-list-item {
  margin: 0;
  position: relative;
}

.contact_type span.wpcf7-list-item-label {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

/* チェックボックスコンテナのスタイル */
.contact_type {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input__area {
  flex: 1;
  min-width: 300px;
}

.input__area.name p {
  width: 70%;
  display: flex;
  gap: 10px;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ffffff;
  font-size: 16px;
}

.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

.input__area.tel input,
.input__area.zip input {
  width: 50%;
}

.input__area.date-time input {
  width: calc(35% - 10px);
  margin-right: 10px;
  padding: 10px;
  height: 56px;
}

.input__area.date-time select {
  width: calc(35% - 10px);
  height: 56px;
  border-color: #ffffff;
  font-size: 1rem;
  padding: 10px;
}

.wpcf7 input[type=submit] {
  display: block;
  width: 300px;
  margin: 40px auto 0;
  padding: 15px;
  background-color: transparent;
  background-image: linear-gradient(to right, transparent 50%, #303133 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 100% center;
  color: #ffffff;
  border: 1px solid #303133;
  border-radius: 4px;
  cursor: pointer;
  transition: background-position 0.4s ease, color 0.3s ease;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  position: relative;
  overflow: hidden;
}
.wpcf7 input[type=submit]:hover {
  border-color: #303133;
  color: #303133;
  background-position: 0% center;
}

.wpcf7 .privacy-policy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  margin-top: 5px;
}

input.wpcf7-form-control.wpcf7-text {
  height: 3.5rem;
  border: 1px solid #ffffff;
}

.caution {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

.caution a {
  text-decoration: underline;
}

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

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 2rem 0;
  }
  .contact-form p {
    font-size: 0.8rem;
  }
  .wpcf7 h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .row {
    flex-direction: column;
    gap: 10px;
  }
  .label__area {
    width: 100%;
  }
  .label__area label {
    font-size: 0.9rem;
  }
  label.required::after {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .input__area {
    width: 100%;
  }
  .input__area.name p {
    gap: 10px;
    width: 100%;
  }
  .input__area.tel input,
  .input__area.zip input {
    width: 100%;
  }
  .caution {
    font-size: 1rem;
  }
  .wpcf7 input[type=submit] {
    width: 250px;
    font-size: 1rem;
    padding: 1rem;
  }
}
.tel__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .tel__inner {
    padding: 40px 10px 60px;
  }
}
.tel__inner .tel-image {
  width: 540px;
}
@media (max-width: 768px) {
  .tel__inner .tel-image {
    max-width: 300px;
  }
}/*# sourceMappingURL=contact.css.map */