@charset "UTF-8";

/* reset style */
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

#lp_contents {
  font-size: min(6.7px, 1.33vw);
  max-width: 500px;
  margin: auto;
  background-color: #fff;
}
#lp_contents img {
  display: block;
  max-width: 100%;
  height: auto;
}
#lp_contents a {
  display: inline-block;
  text-decoration: none;
}

/* contents */
.pc_back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url(../img/pc_back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.offer_btn_wrap {
  padding: 2em 0 4.5em;
  margin: auto;
  width: 65.7em;
}
.offer_btn {
  transition: .2s;
}
.offer_btn:hover {
  opacity: .8;
}
.contact {
  position: relative;
}
.contact_btn {
  position: absolute;
  top: 9.3em;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 65.9em;
}
/* 電話番号のアンカーリンクをPCでは無効 */
@media(min-width: 751px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}