@charset "UTF-8";
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro f", "メイリオ", sans-serif;
}
@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%;
  margin-top: -1px; /*--隙間調整--*/
  height: auto;
}

Video {
  width: 100%;
  margin-top: -9px; /*--隙間調整--*/
  height: auto;
  margin-bottom: 0px;
  
}


/* フローティングバナー */
/* ============================================ */

.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */

  width: 750px; /* バナーの横幅 */
}
.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
@media screen and (max-width:750px) { /* タブレット用のブレイクポイントを指定 */
  .floating-banner {
    display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}
@media screen and (max-width: 750px) { /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: block;/* 消していたバナーを表示させる */
    width: 100vw; /* スマホの画面幅いっぱいにバナーを表示 */
  }
}




/* コンテンツの横幅 */
/* ============================================ */
.o-wrapper {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.Video{
  width:100%;
  text-align: center;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */

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

.mig2{
  margin-top: -5px;

}

.con{
  margin-top: -3px;

}
.cta{
  position: relative;
  margin-top:-3px;
}

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

.btn_box{
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
}

.btn{
  width: 70%;
  margin: auto;
  cursor: pointer;
}

/*アニメーション*/
.animation{
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  top: 63%;
  left: 4.5%;
  scale: 1;
}

@keyframes fuwafuwa{
 0%{transform:translateY(0)}
 50%{transform:translateY(-10px)}
 100%{transform:translateY(0)}
}






   /* 口コミキランCSS */
/* ============================================ */


.reflection{
  display:inline-block;
  position:relative;
  overflow:hidden;
  }
   
  .reflection:after {
  content:"";
  height:100%;
  width:30px;
  position:absolute;
  top:-180px;
  left:0;
  background-color: #fff;
  opacity:0;
  transform : rotate(45deg);
  animation : reflection 2s ease-in-out infinite;
  }
   
  @keyframes reflection {
  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; }
  }


/* 口コミスライドショー */
/* ============================================ */

.slide-container {
width:100%;
display: flex;
align-items: center;
overflow: hidden;

margin-top: -5px;

}
.slide-wrapper {
display: flex;


animation: slide-flow 50s infinite linear 1s both;
}
.slide{
width: 700px;
object-fit: cover;

}
@keyframes slide-flow {
   0% {transform: translateY(0);}
100% {transform: translateX(-100%);}
}

@media screen and (max-width:750px) { /* タブレット用のブレイクポイントを指定 */
.slide{
  width: 350px;
  object-fit: cover;

}}


/* 使い方動画 */
/* ============================================ */

Video {
  width: 100%;
  margin-top: 0px; /*--隙間調整--*/
  height: auto;
  margin-bottom: 0px;
  
}



/* アコーディオンメニュー */
/* ============================================ */

.faq {
  background-color: #ffffff;
  padding: 3% 3% 7% 3%;
}


h3.bun {
  text-align: center;
  margin: 0% 3% 7% 3%;
  background-color: aliceblue;
  padding: 0% 3% 5%;
}


/* コンテンツの横幅 */
/* ============================================ */

.midasi{
  font-size: 2rem;
  text-align: center;
  margin: 5%;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    margin:0 3% 3% 3%;
    padding: 3%;
}



/* ============================================ */

.cv_btn img {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
  width: 97%;
  margin: 0 auto;
  position: absolute;
  top: 63%;
  left: 1.5%;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}




@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}






  .quality2{
    position: relative;
  }
  
  .furi2 video {
    transform-origin: center;
    width: 44%;
    margin: 0 auto;
    position: absolute;
    top: 31.5%;
    left: 51.5%;
  }


/* ハイパーリンク先 階層ページCSS */
/* ============================================ */
table {
  border: 1px solid #111111;
  width: 100%;
}

td {
  padding: 3% 2.5%;
  vertical-align: middle;
  width: 68%;
  border-bottom: 1px solid #111111;
  text-align: left;
  background: #fff;
}

th {
  background: #111111 none repeat scroll 0 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: left;
  padding: 3% 2.5%;
  vertical-align: middle;
}

header2 h2 {
  padding: 10%;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  background: #fff;
}



/* footer */
/* ============================================ */

  footer {
    display: block;
    background: #fff;
    max-width: 750px;
    margin: 100px;
}
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 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 ここまで */
/* ============================================ */
.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: 9999;
}
