@charset "UTF-8";
body {
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  height: 300vh;
}
@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }

}


img {
  width: 100%;
}


h2 {
  font-size: 1.4rem;
  padding: 1rem;
  margin-top: 1rem;
  background: #222;
  color: #fff;
}


/* フローティングボタン */
/* ============================================ */
.float-bnr {
  height: 0;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}




.float-bnr.show {
  display: block;
  height: auto;
  opacity: 1;
  transition: 1s;
  pointer-events: painted;
  position: fixed;
  bottom: 0;
  z-index: 9997;
}

/* フローティングボタン ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */

.firstCTA {
  padding-top: 20px;
}

.CTA-description {
  margin-top: -14px;
}

.offer-test {
  position: relative;
  display: inline-block;
}

.offerBG {
  width: 100%;
}

.offer_btn {
  width: 90%;
  top: 74.4%;
  left: 5.2%; 
}

.overlayItem {
  position: absolute;
}


/* CTAボタン */
/* ============================================ */


.button-animation .button {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  animation: pulsate 2s infinite ease-in-out;
  text-align: center;
}


.button-animation img {
  width: 100%;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* CTAボタン ここまで */
/* ============================================ */



/* QA */
/* ============================================ */


.faq {
  background-color: #ffffff;
  padding-bottom: 40px;
}

.faq_wrapper {
  background-color: #F3EFE8;
  height: auto;
  padding-bottom: 35px;
  margin: auto;
}



.faq__toggle-contents {
  width: 90.9%;
  margin: 0 auto;
  margin-bottom: 20px;
}


.faq__toggle-title {
  position: relative;
  cursor: pointer;
  padding: 10px 0 5px;
  border-radius: 20px;
  background: #f2d8d3;
}


.faq__toggle-btn {
  position: absolute;
  top: 52%;
  right: 7%; /*ボタンを開く＋の位置*/
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

.faq__toggle-btn:before,
.faq__toggle-btn:after {
  display: block;
  content: "";
  background-color: black;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle-btn:before {
  width: 2px;
  height: 10px;
}

.faq__toggle-title.selected .faq__toggle-btn:before {
  content: normal;
}

.faq__toggle-title.selected {
  border-radius: 20px 20px 0 0;
}

.faq__toggle-contents dd {
  display: none;
  border-radius: 0px 0px 20px 20px;
  background: #fff;
  font-size: 14px;
  padding: 10px;
  line-height: 1.8;
  margin-bottom: 20px;
}



/* QA ここまで */
/* ============================================ */




/* footer */
/* ============================================ */
footer {
  display: block;
  padding-top: 10px;
  border-top: 3px solid #ddd;
  background: #fff;
}
ul {
  list-style: none;
}
.footer_nav {
  text-align: center;
  padding: 10px 0;
}
.footer_nav li {
  display: inline-block;
  margin: 0 5px 0 0;
  border-right: #000 solid thin;
  font-size: 13px;
}
.footer_nav li:nth-child(2) {
  border-right: none;
}
.footer_nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #000;
}
.footer_nav li:last-child {
  border: none;
}
footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
}
/* footer ここまで */
/* ============================================ */
