@charset "UTF-8";

/* -----------------------------------------------

基本スタイル

----------------------------------------------- */
/* reset */
html,
body {
  height: 100%;
  margin: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
}


/* Base */
html {
  -webkit-overflow-scrolling: touch;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

img,
video {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.lp_wrap {
  max-width: 750px;
  margin: auto;
  overflow: hidden;
  font-size: 10px;
  font-weight: normal;
  line-height: 1em;
}

.list {
  padding: 0% 0% 5%;
}



/* -----------------------------------------------

各種

----------------------------------------------- */

/* question */
.qa .list dt {
  position: relative;
  cursor: pointer;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 89.333%;
}

.qa .list dd {
  left: 0%;
  right: 0%;
  margin: -5% auto auto;
  width: 89.333%;
  display: none;
}

/* question間 */
.qa .list dt:nth-of-type(n + 2) {
  margin-top: 5%;
}

/* 閉じるボタン（－） */
.qa .list dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 8%;
  width: 4%;
  height: 100%;
  background: url("../img/qa_minus.png") center center/contain no-repeat;
  transition: 0.6s;
  opacity: 0;
}

.qa .list dt.open::before {
  opacity: 1;
}

/* 開くボタン（＋） */
.qa .list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 8%;
  width: 4%;
  height: 100%;
  background: url("../img/qa_plus.png") center center/contain no-repeat;
  transition: 0.6s;
}

.qa .list dt.open::after {
  opacity: 0;
}


/* detail */
.detail .list dt {
  position: relative;
  cursor: pointer;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 89.333%;
  margin-bottom: -2%;
}

.detail .list dd {
  left: 0%;
  right: 0%;
  margin: auto;
  width: 89.333%;
  display: none;
}

/* detail間 */
.detail .list dt:nth-of-type(n + 2) {
  margin-top: 5%;
}


/* 開くボタン（▼） */
.detail .list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 8%;
  width: 6%;
  height: 100%;
  background: url("../img/detail_arrow.png") center center/contain no-repeat;
  transition: 0.6s;
}

.detail .list dt.open::after {
  transform: rotateZ(180deg);
}

.detail .list dd img {
  margin-top: -11.9%;
}

/* guide */
.guide {
  margin-top: 5%;
}

.pay_method {
  position: absolute;
  top: 53.4%;
  left: 4.7%;
  width: 75.6%;
  height: 2.3%;
  cursor:
  pointer;
}

/* contact */
.ct_tel {
  position: absolute;
  top: 28.3%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 90.666%;
}

.ct_mail {
  position: absolute;
  top: 59%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 90.666%;
}

/* footer */
footer {
  margin: 0;
  padding: 0;
  text-align: center;
  margin-top: 10%;
  list-style: none;
}

footer li {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  color: #3c230f;
  padding-bottom: 1em;
  text-align: center;
  list-style: none;
}

/* copyright */
#copy {
  background: #18512e;
  text-align: center;
  font-size: 1em;
  color: #fff;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  box-sizing: border-box;
  padding: 1em 0 1em;
  line-height: 1.7;
}

#copy p {
  text-align: center;
}

/* button */
.offer_button {
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 1.5%;
  animation: Shake 2s ease-in-out infinite;
}

@keyframes Shake {
  0% {
    transform: scale(0.9, 0.9);
  }

  25% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.9, 0.9);
  }

  75% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0.9, 0.9);
  }
}

/* デフォルトのスタイル */
#floatingBtn2 {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin: 0 auto;
}

#floatingBtn3 {
    position: fixed;
    bottom: 13px;
    left: 56%;
    transform: translateX(-50%);
    z-index: 1000;
    margin: 0 auto;
    animation: Shake 2s ease-in-out infinite;
}

/* スマートフォン向けのスタイル */
@media only screen and (max-width: 767px) {
    #floatingBtn2, #floatingBtn3 {
       width: 100%; /* スマートフォンではボタンの幅を80%に変更 */
        transform: translateX(-50%);
    }
    
    #floatingBtn3 {
        width: 35%; /* スマートフォンではボタンの幅を80%に変更 */
        left: 65%;
        bottom: 8px;
        transform: translateX(-50%);
    }
}