@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.contact
------------------------------ */
.contact {
  padding: 50px 0 150px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
.contact .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 940px) {
  .contact .wrap {
    flex-direction: column;
    align-items: center;
  }
}
.contact .contact_box_wrap {
  max-width: 340px;
  width: 33.3333%;
}
@media screen and (max-width: 940px) {
  .contact .contact_box_wrap {
    width: 70%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact_box_wrap {
    width: 100%;
  }
}
.contact .contact_box_wrap .note {
  margin-top: 20px;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .contact .contact_box_wrap .note {
    margin-top: 6px;
    font-size: 1rem;
  }
}
.contact .contact_box {
  position: relative;
  padding: 30px 25px 23px;
  background: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact .contact_box {
    padding: 30px 25px;
  }
}
.contact .contact_box .ttl {
  position: relative;
  margin-bottom: 35px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact .contact_box .ttl {
    margin-bottom: 30px;
  }
}
.contact .contact_box .ttl::before {
  position: absolute;
  top: 0;
  left: -35px;
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  background: #0077C3;
}
.contact .contact_box .txt {
  padding-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .contact .contact_box .txt {
    min-height: 110px;
  }
}
.contact .contact_box .btn a {
  max-width: 300px;
}
@media screen and (min-width: 769px) {
  .contact .contact_box .btn a {
    width: 100%;
  }
}
.contact .contact_box .btn .ico {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.contact .contact_box .btn .ico.ico_search {
  width: 14px;
  height: 14px;
  background: url(../img/common/ico_search01.svg) no-repeat center center;
}
.contact .contact_box .btn .ico.ico_mail {
  width: 16px;
  height: 10px;
  background: url(../img/common/ico_mail01.svg) no-repeat center center;
}
.contact .contact_box .btn .ico.ico_tel {
  width: 14px;
  height: 25px;
  background: url(../img/common/ico_tel01.svg) no-repeat center center;
}