* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== common CSS ========== */
#lp_contents {
  font-size: min(10px, 1.33vw);
  font-family: "游ゴシック体 Pr6N", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.5;
  margin: auto;
  max-width: 750px;
}
#lp_contents img,
#lp_contents video {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
}


/* ========== offer ========== */
.offer {
  position: relative;
}
.cta-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2em;
  margin: auto;
  width: 66em;
  transition: all 0.3s;
  animation: purupuru 3s infinite;
}
@keyframes purupuru {
  0% {transform: translate(0, 0px);}
  4% {transform: translate(-0.7em, 0px);}
  8% {transform: translate(0.7em, 0px);}
  12% {transform: translate(-0.7em, 0px);}
	16% {transform: translate(0.7em, 0px);}
  20% {transform: translate(-0.7em, 0px);}
  24% {transform: translate(0.7em, 0px);}
  28% {transform: translate(0px, 0px);}
}

.cta-btn-shiny {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  margin: auto;
  height: 85%;
  width: 98%;
  border-radius: 10em;
  overflow: hidden;
}
.cta-btn-shiny::after {
  content: '';
  position: absolute;
  top: -10em;
  left: -10em;
  width: 5em;
  height: 5em;
  background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  40% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  80%,100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}


/* ========== hikaku ========== */
#lp_contents .hikaku {
  position: relative;
}

#lp_contents .hikaku .image_compare {
  position: absolute;
  bottom: 32.5%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  width: 59em;
}

#lp_contents .hikaku .image_wrapper {
  background-image: url(../images/03_hikaku_after.png);
  width: 100%;
  height: 74em;
}

#lp_contents .hikaku .image {
  height: 100% !important;
}

#lp_contents .hikaku .image img {
  width: 50%;
  height: 100% !important;
  object-fit: cover;
  object-position: 0% 0%;
  border-right: 0.3em solid #fff;
}

#lp_contents .hikaku .range {
  position: absolute;
  top: 50%;
}

#lp_contents .hikaku input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  height: 0;
  width: calc(100% + 6em);
  border: none;
  margin: 0 calc(-1 * 6em / 2);
}

#lp_contents .hikaku input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background-image: url(../images/03_hikaku_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  background-color: transparent;
}


@media screen and (max-width: 620px) {
  #lp_contents .hikaku .image_wrapper {
    background-size: 100% 100%;
    /* height: calc((100vw - 20px * 2) * 370 / 550); */
  }
}


/* ========== video_cm ========== */
#lp_contents .cm .video__wrap video {
  width: 89%;
  margin: auto;
}


/* ========== 08 qa ========== */
#lp_contents .qa_wrap {
  padding: 0 1rem;
}

#lp_contents .qa_btn_wrap {
  position: relative;
  cursor: pointer;
  margin-top: 2.5em;
}

#lp_contents .qa_btn_wrap:first-of-type {
  margin-top: 0.5em;
}

#lp_contents .qa_btn_wrap .qa_arrow {
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%) rotateX(180deg);
  transition-duration: 0.5s;
  width: 2.8em;
}

#lp_contents .qa_btn_wrap .qa_arrow.open {
  transform: translateY(-50%) rotateX(0deg);

}


/* ========== footer ========== */
.l-footer .p-footer-tel__number2 {
	width: 80%;
	margin: 0 auto;
}
.l-footer .p-footer-did__txt .p-footer-did__number {
	font-size: 1.25rem;
	font-weight: 600;
}
.l-footer .p-footer-did__txt .p-footer-did__number #lpDidText {
  font-size: 1.2em;
  font-weight: bold;
}



/* ========== genzairyou ========== */
.btn_genzairyou {
  display: block;
  margin: 1.5em auto 0;
  width: 43em;
  border-radius: 3px;
  border: 1px solid #bbbbbb;
  transition: 0.3s;
  background-color: [object object];
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(209, 209, 209, 1));
}
.btn_genzairyou a {
  display: block;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-size: 1.4em;
  line-height: 1;
}
.btn_genzairyou:hover {
  background-image: linear-gradient(180deg, rgba(209, 209, 209, 1), rgba(255, 255, 255, 1));
  opacity: .6;
}

@media screen and (max-width: 750px) {
  .btn_genzairyou a {
    font-size: 2em;
  }
}