/*========== fix_btn ==========*/
.fix_cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 120px;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
}
.fix_cta.active {
  pointer-events: all;
  opacity: 1;
}

.cta_bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
  height: 100%;
}
.cta_btn01 {
  background-color: #fff;
  color: #a18a57;
  max-width: 400px;
  width: 100%;
  min-height: 80px;
  cursor: pointer;
  transition: 0.4s;
  z-index: 100;
}
.cta_btn01:hover {
  background-color: #a18a57;
  color: #fff;
}
.cta_btn01 .cta_tel span {
  position: relative;
}
.cta_btn01 .cta_tel span::before {
  content: "";
  background-image: url(../img/antiquities/common/tel_icon_g.svg);
  background-size: cover;
  position: absolute;
  top: 4px;
  left: -34px;
  width: 29px;
  height: 21px;
}
.cta_btn01:hover .cta_tel span::before {
  background-image: url(../img/antiquities/common/tel_icon_w.svg);
  background-size: cover;
  position: absolute;
  top: 4px;
  left: -34px;
  width: 29px;
  height: 21px;
}
.cta_tel {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  padding-top: 25px;
  /* margin-left: 37px; */
  margin-bottom: 5px;
}
.tel_time {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.cta_btn02 {
  background-color: #424242;
  color: #fff;
  max-width: 400px;
  width: 100%;
  min-height: 80px;
  cursor: pointer;
  transition: 0.4s;
  z-index: 100;
}
.cta_btn02:hover {
  background-color: #424242;
  alpha: 1;
}
p.btn02_txt {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding-top: 25px;
  /* margin-left: 29px; */
}
p.btn02_txt span {
  position: relative;
}
p.btn02_txt span::before {
  content: "";
  background-size: cover;
  position: absolute;
  top: 4px;
  left: -34px;
  width: 24px;
  height: 24px;
  z-index: 0;
  transition: 0.4s;
}
.cta_btn02:hover p.btn02_txt span::before {
  content: "";
  background-size: cover;
  position: absolute;
  top: 4px;
  left: -34px;
  width: 24px;
  height: 24px;
  z-index: 1;
}

@media screen and (max-width: 980px) {
  .fix_cta {
    height: 70px;
  }
  .cta_bnr {
    gap: 0;
  }
  .cta_btn01 {
    max-width: unset;
    width: 50%;
    height: 100%;
  }
  .cta_btn02 {
    max-width: unset;
    width: 50%;
    height: 100%;
  }
}

@media (max-width:768px) {
  .fix_cta {
    height: auto;
  }

  .cta_btn01,
  .cta_btn02 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta_btn01 .cta_tel{
    padding-top: 0;
    margin-bottom: 0;
  }

  .cta_btn01 .cta_tel span {
    font-size: min(22px, calc(16/375 * 100vw));
  }

  p.btn02_txt {
    padding-top: 0;
  }
}

.mw_wp_form .error{
    text-align: left;
}

.mw_wp_form.mw_wp_form_complete p{
    text-align: center;
}