.annotation_1 {
  width: 100%;
  height: 30%;
  display: flex;
  text-align: right;
  justify-content:flex-end;
  padding-top:3px;
  padding-right:5px;
  padding-bottom:20px;
  background-color:#fff
}

.annotation_1_comment {
   text-align: center;
  }

.l-main {
  margin-bottom: 120px !important;
}
/*-------------------------------
フローティングバナー z-index
-------------------------------*/
.flash_btn_top {
  z-index: 20000 !important;　/*　フローティングバナーの表示を上に　*/
}
.lp_only_footer{
  margin-bottom: 0px;　/*　フッター下部にマージン　*/
}
/*-------------------------------
画像無限ループ
-------------------------------*/
.loop_wrap {
  display: flex;
  width: 100vw;
  height: 40%;
  overflow: hidden;
}
.loop_wrap img {
  width: auto;
  height: 100%;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
/*-------------------------------
モーダルCSS
-------------------------------*/
.modal-div{
  position: absolute;
  top: 93.5%;
  width: 100%
}
/* モーダルを開くボタン */
.modal-open{
  font-size: 1.5em;
  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;
}
/*-------------------------------
モーダルCSS
-------------------------------*/

/*-------------------------------
Common
-------------------------------*/
body {
  background-color: #fff;
  font-family: "YuGothic", "Arial", sans-serif;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
}

/*-------------------------------
Main
-------------------------------*/
#lp-content {
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #lp-content {
    width: 100%;
  }
}
#lp-content .d-f {
  display: flex;
}
#lp-content .fw-b {
  font-weight: bold;
}
#lp-content .lp-img-box {
  position: relative;
  display: flex;
  justify-content: center;
}
#lp-content .lp-img {
  width: 100%;
}
#lp-content .fv-parts {
  z-index: 2;
}
#lp-content .shine {
  position: relative;
  width: 100%;
}
#lp-content .shine::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 10vw;
  display: block;
  width: 20vw;
  height: 6%;
  background: linear-gradient(339deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 70%);
  animation: shine 2.5s ease-in 0s infinite;
  transform: translateX(1px);
  opacity: 0;
}
@keyframes shine {
  0% {
    opacity: 0;
    right: 0;
    transform: translateX(1px);
  }
  8% {
    opacity: 0.5;
    right: 50%;
    transform: translateX(50%);
  }
  16% {
    opacity: 1;
    right: 100%;
    transform: translateX(100%);
  }
  24% {
    opacity: 0;
    right: 100%;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    right: 100%;
    transform: translateX(100%);
  }
}
#lp-content .lp-cta-btn {
  position: absolute;
  top: 70.5%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 78%;
  animation-name: UpDown;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes UpDown {
  0% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(4px);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

#lp-content .bx-wrapper {
  position: absolute;
  bottom: calc(3.2% - 10px);
  max-width: 100vw !important;
}
#lp-content .bx-viewport {
  height: 100% !important;
}
#lp-content .bx-pager {
  display: flex;
  justify-content: center;
}
#lp-content .bx-pager-link {
  background: #413b3f;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 999px;
}
#lp-content .bx-controls {
  top: 15px;
  position: relative;
}

#lp-content .active {
  background-color: #b31c4b;
  color: #b31c4b;
}

.slider-card {
  margin-left: 16%;
}

.question-block {
  display: block;
  height: auto;
  position: absolute;
  width: 560px !important;
  height: auto;
  padding-bottom: 23px;
}
@media (max-width: 919px) {
  .question-block {
    width: 70vw !important;
  }
}

.question-block img {
  width: 100%;
  height: auto;
  box-shadow: 10px 8px 15px 1px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.bx-slider {
  width: 750px;
  height: 540px;
  margin: 30px auto;
}
@media (max-width: 919px) {
  .bx-slider {
    width: 100%;
    height: 75vw;
  }
}

.slide-ttl {
  text-align: center;
}
.slide-ttl img {
  width: 90%;
  height: auto;
  position: relative;
  left: 5%;
}

.bx-prev {
  width: 90px;
  height: 90px;
  background: url(https://belta-shop.jp/lp_media/transfer_from_rpst_v1/upload/save_image/equrythm/arrow-left.png) no-repeat;
  background-size: cover;
  top: -17.5rem;
  left: -0.5rem;
  position: absolute;
  z-index: 2;
}
@media (max-width: 919px) {
  .bx-prev {
    width: 60px;
    height: 60px;
    top: -41.5vw;
    left: -10px;
  }
}

.bx-next {
  width: 90px;
  height: 90px;
  background: url(https://belta-shop.jp/lp_media/transfer_from_rpst_v1/upload/save_image/equrythm/arrow-right.png) no-repeat;
  background-size: cover;
  top: -17.5rem;
  right: -0.5rem;
  position: absolute;
  z-index: 2;
}
@media (max-width: 919px) {
  .bx-next {
    width: 60px;
    height: 60px;
    top: -41.5vw;
    right: -10px;
  }
}/*# sourceMappingURL=style.css.map */

/* セクション */
section {
  width: 100%;
  max-width: 750px;
  max-width: 46.875rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.section-margin01 {
  margin-top: -6%;
}

/* 動画 */
video {
  width: 100%;
}
.full-wrap {
  position: relative;
}
.full-wrap-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 21%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.full-wrap-video video {
  width: 90%;
}
.full-wrap-coloring {
  position: absolute;
  right: 3%;
  top: 16%;
  width: 30%;
}
.full-wrap-coloring img {
  width: 92%;
}
.worries-wrap {
  position: relative;
}
.worries-wrap-video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.5%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.worries-wrap-video video {
  width: 92%;
}

/* ボタン */
.cta-btn01 {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 67%;
}
.cta-btn02 {
  position: absolute;
  width: 94%;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 2%;
}
@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}
@keyframes UpDown {
  0% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}
.opacity {
  opacity: 0;
}
@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta-btn {
  width: 100%;
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  overflow: hidden;
  border-radius: 50px;
  border-style: none;
  background: none;
}
@media screen and (min-width: 768px) {
  .cta-btn {
    width: 88%;
  }
}
.cta-btn:hover {
  opacity: 0.8;
}
.cta-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -200px;
  left: 0;
  width: 30px;
  height: 50%;
  background-color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.cta-btn-top {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .teiki_h3_green {
    padding: 12px 8px;
    color: #fff;
    text-align: center;
    background: #f01f75;
  }
}
.faq img {
  margin-top: 1px;
}
.faq {
  background: #eadaca;
}
.title01 {
  position: relative;
}
.title02 {
  position: relative;
}
/*アイコンの＋と×*/
.title01::before,
.title01::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fefefe;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.title01::before {
  bottom: 10%;
  right: 7%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.title01::after {
  bottom: 10%;
  right: 7%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title01.close::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.title01.close::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/*アイコンの＋と×*/
.title02::before,
.title02::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fefefe;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.title02::before {
  top: 48%;
  right: 7%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.title02::after {
  top: 48%;
  right: 7%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title02.close::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.title02.close::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/*アコーディオンで現れるエリア*/
.box02 {
  display: none; /*はじめは非表示*/
}

* {
  box-sizing: border-box;
}
body {
  font-family:'Avenir','Helvetica, Neue','Helvetica','Arial';
}