@charset "utf-8";
/* --------------------------
  共通設定
-------------------------- */
main a {
  text-decoration: none;
}

/* --------------------------
  表示切替（PC/SP）
-------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px){
  .pc {
    display: none !important;
  }
}

/* --------------------------
  お問い合わせ（共通）
-------------------------- */
.contact {
  padding: 50px 0;
}

@media screen and (min-width: 769px){
  .contact .inner {
    width: 50%;
    min-width: 700px;
  }
}

/* --------------------------
  送信完了画面
-------------------------- */
.contact.complete .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 60px 5vw;
}
.contact .complete_text {
  color: #333;
  line-height: 1.7;
}
.contact .complete_text.ttl {
  font-size: 20px;
  font-weight: 500;
}
.contact .complete_text.text {
  font-size: 14px;
}
.contact a.complete_link {
  background-color: #eee;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 26px;
  width: 300px;
  max-width: 90vw;
  text-align: center;
  margin-top: 40px;
  transition: .2s ease;
}
.contact a.complete_link:hover {
  border: 1px solid #bbb;
}
