.lp_wrap {
  width: 500px;
}
.lp_wrap .float {
   max-width: 500px!important;
}
.lp_wrap .offer .timeSokyuDisplay p {
  line-height: 4.8!important;
  font-size: min(33px, 3.4vw)!important;
}

.sp_only {
  display: none;
}
/*-------------------------------
モーダルCSS
-------------------------------*/
.modal-div{
  position: absolute;
  top: 91%;
  width: 100%
}
.modal-div2 {
    position: absolute;
    bottom: 9%;
    width: 100%;
    font-size: 13px;
    text-align: center;
}
@media (max-width: 768px){
  .modal-div2{
    bottom: 9%;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}

/* モーダルを開くボタン */
.modal-open{
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #4c4c4c;
  text-decoration:underline;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px){
  .modal-open{
  font-size: 10px;
  }
}

.modal-open2{
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  color: #4c4c4c;
  text-decoration:underline;
  border: none;
  cursor: pointer;
}
/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,75%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 10000;
}
/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}
/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}
/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}
/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}
/* モーダルのコンテンツ部分の指定 返金保証 */
.modal-content-henkin{
  background: #fff;
  text-align: left;
  line-height: 1.25;
  padding: 4% 4% 4% 8%!important;
}
/* モーダルのコンテンツ部分のテキストの指定 返金保証 */
.modal-content-henkin div{
  margin: 1em 0;
}

/*--- CTA ---*/
.cta_area{
  position: relative;
  display: flex;
}
.cta_area_button{
  position: absolute;
  bottom: 12%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 95%;
}
.cta_area_button2{
  position: absolute;
  bottom: 7.6%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
}

/*--- アニメーション ---*/
.keyframe {
  animation-name: anim_sc;
  transform: scale(1, 1);
}
@keyframes anim_sc {
  100% {
    transform: scale(0.9, 0.9);
  }
}
.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.2s;
}


/* 1) 余計なはみ出しを止める */
*, *::before, *::after { box-sizing: border-box; }

html, body { width: 100%; margin: 0; padding: 0; }
img, svg, video, canvas { max-width: 100%; height: auto; }

/* テーブルや長いURL等の横スクロール事故対策 */
table { max-width: 100%; }
body { overflow-x: hidden; } 

.lp-wrap{
  width: 100%;
  max-width: 980px;   /* PCでの見た目を保ちたい幅 */
  margin: 0 auto;
  padding: 0 16px;    /* スマホの左右余白 */
}
