*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

body{
    background-color: #f7f7f7;
}
.wrapper{
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5%;
    position: relative;
}
@media screen and (max-width:768px){
    .wrapper{
        width: 100%;
    }
}

header{
    background: rgb(253, 43, 124);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
}

img,
video{
    display: block;
    width: 100%;
    object-fit: contain;
    margin: 20px auto;
}


h1{
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin: 10px auto 15px;
    line-height: 1.8;
}
h1 .fsC{
    font-size: 18px;
}
.bPink{
    color: rgb(255, 0, 120);
}
.mark{
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#ffff00 0%) repeat scroll 0 0;
}
.mark.b{
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#cce0f5 0%) repeat scroll 0 0;
}
.anno{
    display: block;
    text-align: right;
    /* color: #999; */
    font-size: 10px;
    margin: -5px 0 0 !important;
    line-height: 1;
}


p{
    display: block;
    text-align: center;
    margin: 50px auto 30px;
    line-height: 2;
    font-size: 18px;
}
.blue,
.red,
.fsL,
.fsM,
.rBlue,
.bPink{
    font-weight: bold;
}
.blue{
    color: #050eec;
}
.red{
    color: rgb(255, 46, 46);
}
.rBlue{
    color: rgb(60, 207, 233);
}
.yellow{
    color: #FC0;
}
.fsL{
    font-size: 24px;
}
.fsM{
    font-size: 20px;
}
.img_adj{
    text-align: center;
}
.img_adj img,
.img_adj video{
    width: 60%;
}

.box01,
.review_box{
    margin: 50px auto 30px;
    padding: 20px;
}
.box01{
    width: 90%;
    border: 4px dotted #0066CC;
    background-color: #fff;
    border-radius: 15px;
}
.box01>p{
    text-align: left;
    font-weight: bold;
    line-height: 1.8;
    margin: 0;
}
.box01>img{
    margin: 10px auto;
}

.taR{
    display: block;
    text-align: right;
}
.taR.red{
    font-weight: normal;
    margin-top: 0;
    font-size: 13px;
}
.taL{
    text-align: left;
}
.taL{
    display: block;
    text-align: left;
}

.wd300 {
    width: 300px;
}

h2{
    position: relative;
    padding: 5px 8px;
    font-size: 18px;
    margin-top: 40px;
}
.h2_bd{
    height: 2px;
    background: linear-gradient(to right, rgb(0, 160, 224), #fff);
    margin-bottom: 20px;
}

.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
	height: 300px;/*画面いっぱいにする場合100vh*/
	margin: 2em auto -220px;
    top: -100px;
	justify-content: center;
	align-items: center;
}
.cp_arrows .cp_arrow {
	position: absolute;
	top: 50%;/*着地点（サンプルは[class:cp_arrows]height300pxの50%）*/
	left: 47%;
    margin: auto;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	opacity: 0;
}
.cp_arrows .cp_arrowfirst {
	-webkit-animation: arrow-move08 2s ease-in-out infinite;
	        animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
	-webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
	        animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before, .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50px;
	height: 3px;
	content: '';
	background: #E91E63;
}
.cp_arrows .cp_arrow:before {
	-webkit-transform: rotate(30deg) translateX(-39%);
	        transform: rotate(30deg) translateX(-39%);
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.cp_arrows .cp_arrow:after {
	-webkit-transform: rotate(-30deg) translateX(39%);
	        transform: rotate(-30deg) translateX(39%);
	-webkit-transform-origin: top right;
	        transform-origin: top right;
}
@-webkit-keyframes arrow-move08 {
	0% {
		top: 40%;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes arrow-move08 {
	0% {
		top: 40%;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.review_box{
    border: 1px solid #E6ECF0;
    border-radius: 10px;
}
.review_ttl{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review_ttl .review_icon{
    width: 50px;
    height: 50px;
    background-image: url('../img/icon.png');
    background-size: cover;
    background-position: center top;
    margin-right: 10px;
}
.review_ttl .review_icon+p{
    font-size: 12px;
    color: #765555;
    text-align: left;
    margin: 0;
}
.review_ttl+p{
    display: inline;
    padding: 2px 5px;
    border: 1px solid #CB576C;
    border-radius: 10px;
    color: #CB576C;
    background-color: #F1C7CD;
    font-size: 10px;
}
.review_box h3{
    margin-top: 10px;
}
.review_box .body,
.review_box .date{
    text-align: left;
    font-size: 14px;
    margin: 5px 0;
}
.review_box .body .fsM{
    font-size: 16px;
}

.mbn{
    margin-bottom: 0;
}
.mtn{
    margin-top: 0;
}
.fwN{
    font-weight: normal;
}

.shuffling {
    animation-duration: 1.7s!important;
    -webkit-animation-duration: 1.7s;
    -ms-animation-duration: 1.7s;
    -moz-animation-duration: 1.7s!important;
    -webkit-animation-name: shuffling;
    -moz-animation-name: shuffling;
    -o-animation-name: shuffling;
    animation-name: shuffling;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-moz-keyframes shuffling {
    0% {-moz-transform: skewX(9deg);}
    10% {-moz-transform: skewX(-8deg);}
    20% {-moz-transform: skewX(7deg);}
    30% {-moz-transform: skewX(-6deg);}
    40% {-moz-transform: skewX(5deg);}
    50% {-moz-transform: skewX(-4deg);}
    60% {-moz-transform: skewX(3deg);}
    70% {-moz-transform: skewX(-2deg);}
    80% {-moz-transform: skewX(1deg);}
    90% {-moz-transform: skewX(0deg);}
    100% {-moz-transform: skewX(0deg);}
}
@-o-keyframes shuffling {
    0% {-o-transform: skewX(9deg);}
    10% {-o-transform: skewX(-8deg);}
    20% {-o-transform: skewX(7deg);}
    30% {-o-transform: skewX(-6deg);}
    40% {-o-transform: skewX(5deg);}
    50% {-o-transform: skewX(-4deg);}
    60% {-o-transform: skewX(3deg);}
    70% {-o-transform: skewX(-2deg);}
    80% {-o-transform: skewX(1deg);}
    90% {-o-transform: skewX(0deg);}
    100% {-o-transform: skewX(0deg);}
}
@-webkit-keyframes shuffling {
    0% {-webkit-transform: skewX(9deg);}
    10% {-webkit-transform: skewX(-8deg);}
    20% {-webkit-transform: skewX(7deg);}
    30% {-webkit-transform: skewX(-6deg);}
    40% {-webkit-transform: skewX(5deg);}
    50% {-webkit-transform: skewX(-4deg);}
    60% {-webkit-transform: skewX(3deg);}
    70% {-webkit-transform: skewX(-2deg);}
    80% {-webkit-transform: skewX(1deg);}
    90% {-webkit-transform: skewX(0deg);}
    100% {-webkit-transform: skewX(0deg);}
}
@keyframes shuffling {
    0% {transform: skewX(9deg);}
    10% {transform: skewX(-8deg);}
    20% {transform: skewX(7deg);}
    30% {transform: skewX(-6deg);}
    40% {transform: skewX(5deg);}
    50% {transform: skewX(-4deg);}
    60% {transform: skewX(3deg);}
    70% {transform: skewX(-2deg);}
    80% {transform: skewX(1deg);}
    90% {transform: skewX(0deg);}
    100% {transform: skewX(0deg);}
}

footer{
    padding: 5% 0;
    background: #ECECEC;
    text-align: center;
}

.sp{
    display: none;
}

.slider01 img{
    margin: 0 10px;
    opacity: 0.7;
    transform: scale(0.8);
    transition: all 0.5s;
}
.slider01 .slick-active{
    opacity: 1;
    transform: scale(1);
}

@media screen and (max-width:768px){
    h1 .fsC{
        font-size: 16.5px;
    }
    .sp{
        display: block;
    }
    .cp_arrows .cp_arrow{
        left: 42%;
    }
    .fsL{
        font-size: 23px;
    }
}

/* ピンク動く矢印 */
.downArrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

.downArrow>span {
    /* 矢印の大きさの設定 */
    width: 100px;
    height: 65px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

.downArrow>span::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 40%;
    /* 矢印の色の設定 */
    background: #ffc8c8;
  }

.downArrow>span::after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    /* 矢印の色の設定 */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top right/50% 100% no-repeat;
    background: linear-gradient(to top right, transparent 49%, #ffc8c8 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #ffc8c8 50%) top right/50% 100% no-repeat;
  }

  /*動きの速さを変更する場合は、複数あるanimation-durationの1.5s(=1.5秒)の時間を変更
  動きの回数を変更する場合は、複数あるanimation-iteration-countのinfinite（=無限,3=3回など）を変更*/
  .movebtn {
    -webkit-animation-name: btnAnime02;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: btnAnime02;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    align-items: flex-start;
    justify-content: center;
  }
  @-webkit-keyframes btnAnime02 {
    /*初期位置*/
    0% {
      /*1番目の値はX方向, 2番目の値はY方向*/
      -webkit-transform: translate(0, 0);
    }
    /*animation-durationで設定した値の半分の時間（50%）の時の位置*/
    50% {
      -webkit-transform: translate(0, -8px);
    }
    /*animation-durationで設定した値になった（100%）時の位置*/
    100% {
      -webkit-transform: translate(0, 0);
    }
  }
  /*上記の「@-webkit-keyframes btnAnime02」と同様の値にしてください*/
  @-moz-keyframes btnAnime02 {
    0% {
      -moz-transform: translate(0, 0);
    }
    50% {
      -moz-transform: translate(0, -8px);
    }
    100% {
      -moz-transform: translate(0, 0);
    }
  }

/* ボタンの動き */
/* 全体の設定 */
.puyoBtn__area {
    /* 横幅（ボタンの大きさに影響します） */
    width: 500px;
    /* 最大幅 */
    max-width: 95%;
    /* 高さ */
    height: auto;
    /*外側の余白｜上下余白｜左右余白（auto=センタリング）｜*/
    margin: 30px auto;
  }

  /* ボタンリンクの設定 */
  .puyoBtn__area .btn {
    display: block;
    /* 横幅 */
    width: 100%;
    /* 高さ */
    height: auto;
  }

  /* ボタンの画像 */
  .puyoBtn__area .btn img {
    /* 横幅 */
    width: 100%;
    /* 高さ */
    height: auto;
    /*アニメーションの設定｜アニメーション名｜1回のサイクルに要する時間｜進め方｜実行回数｜*/
    animation: puyoBtn 1.6s ease-in infinite;
  }

  /* アニメーションの詳細設定 */
  @keyframes puyoBtn {
    /* タイミング */
    0% {
      /* ボタンの拡大、縮小
      ・値が1つ = X＆Y軸
      ・値が2つ = X軸, Y軸 */
      transform: scale(1.09);
    }
    10% {
      transform: scale(1.09);
    }
    30% {
      transform: scale(1.01);
    }
    40% {
      transform: scale(1.01);
    }
    50% {
      transform: scale(1, 1.04);
    }
    60% {
      transform: scale(1.09);
    }
    70% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1.09);
    }
  }

  .single-carousel {
    width: 600px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

   .single-carousel .swiper {
    padding: 0 20px 10%;
  }

   .single-carousel .swiper-slide {
    background: linear-gradient(45deg, rgb(144, 245, 154), rgb(4, 202, 255));
    border-radius: 20px;
    padding: 8px;
    height: auto;
    box-sizing: border-box;
  }

   .single-carousel .swiper-slide .inner {
    height: 100%;
    background-color: #f4faff;
    border-radius: 18px;
    padding: 10px 20px;
    box-sizing: border-box;
  }

   .single-carousel .swiper-button-prev,
   .single-carousel .swiper-button-next {
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
    border: 3px solid #ffffff;
    border-radius: 50%;
    height: 27px;
    opacity: 0.5;
  }

   .single-carousel .swiper-button-prev::after,
   .single-carousel .swiper-button-next::after {
    font-size: 1em;
    font-weight: 700;
  }

   .single-carousel .swiper-button-prev {
    left: 0;
  }

   .single-carousel .swiper-button-next {
    right: 0;
  }

   .single-carousel .wrap-title {
    display: flex;
    align-items: center;
    gap: 0 5%;
    margin: 0 -10px;
  }

   .single-carousel .wrap-title .check {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: #ffa500;
    margin: 0;
    padding: 0;
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
  }

   .single-carousel .wrap-title .check .num {
    font-size: 200%;
    margin: 0;
  }

   .single-carousel .wrap-title .check::before {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -8px;
    margin-top: -15px;
    border: 12px solid transparent;
    border-left: 20px solid #ffa500;
    z-index: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

   .single-carousel .wrap-title .title {
    font-size: 20px;
    color: #191970;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
  }

   .single-carousel .wrap-img {
    /* margin: 10px 0; */
    padding: 0;
    text-align: center;
  }

   .single-carousel .wrap-img img,
   .single-carousel .wrap-img video {
    /* display: inline !important; */
    vertical-align: bottom;
    -webkit-appearance: none;
    align-items: flex-start;
  }

   .single-carousel .wrap-txt p {
    font-size: 16px;
    color: #000000;
    line-height: 1.9;
    margin: 1em 0;
  }

   .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    padding-bottom: 10%;
    z-index: 1;
  }

   .swiper-pointer-events {
    touch-action: pan-y;
  }

   .swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
  }

   .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

   .swiper-button-next,
   .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
  }

   .swiper-button-next:after,
   .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
  }

   .swiper-button-next:after {
    content: "next";
  }

   .swiper-button-prev:after {
    content: "prev";
  }

   .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }

   .swiper-pagination-bullet {
    cursor: pointer;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
    margin: 0 4px;
  }

   .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
  }

   .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }

  @font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, 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");
    font-weight: 400;
    font-style: normal;
  }

  /* 下向き矢印 */
  .step_arr {
    position: relative;
    padding-top: 22vw;
    margin-top: -4vw;
  }
   .step_arr span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10vw;
    height: 10vw;
    margin-left: -5vw;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
  }
   .step_arr span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
   .step_arr span:nth-of-type(2) {
    top: 4vw;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
  }
   .step_arr span:nth-of-type(3) {
    top: 8vw;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
  }

  @-webkit-keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @media (min-width: 620px) {
     .step_arr {
      position: relative;
      padding-top: 136px;
      margin-top: -25px;
    }
     .step_arr span {
      width: 62px;
      height: 62px;
      margin-left: -31px;
    }
     .step_arr span:nth-of-type(2) {
      top: 24.8px;
    }
     .step_arr span:nth-of-type(3) {
      top: 49.6px;
    }
  }


  .point_ttl {
    position: relative;
    border-top: solid 2px #f30368;
    border-bottom: solid 2px #f30368;
    background: #fff;
    line-height: 2em;
    padding: 4px 5px;
    margin: 22px 0 5px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
  }
   .point {
    position: absolute;
    left: 0px;
    bottom: 100%;
    background: #f30368;
    color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 5px 7px 3px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
   .point img {
    width: 13px;
    height: 16px;
    margin: 0 6px 0 0;
    image-rendering: -webkit-optimize-contrast;
  }

  @media screen and (max-width:600px) {
     .point_ttl {
      font-size: 20px;
      line-height: 1.3em;
      border-top: solid 1px #f30368;
      border-bottom: solid 1px #f30368;
      padding: 8px 10px;
    }
     .point {
      padding: 3px 4px 2px;
      font-size: 11px;
    }
     .point img {
      transform: scale(0.8);
      margin-right: 3px;
    }
  }

  /* 赤い動く→ */
  .arrowFlow__area {
    width: 100%;
    height: auto;
  }
   .arrowFlow__inner {
    padding-bottom: 200px;
    overflow-y: hidden;
    position: relative;
  }
   .arrowFlow__beforeG,
   .arrowFlow__afterG {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    animation-name: arrowFlow;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform: translate(-50%, -300%);
    position: absolute;
    top: 0;
    left: 50%;
  }
   .arrowFlow__afterG {
    animation-delay: 1s;
  }
   .arrow {
    display: inline-block;
    vertical-align: middle;
    color: #ba0d0d;
    line-height: 1;
    position: relative;
    width: 40px;
    height: 60px !important;
    background: currentColor;
    margin: 0 30px;
  }
   .arrow:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 50px;
    border-color: #ba0d0d transparent transparent transparent;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  @keyframes arrowFlow {
    0% {      transform: translate(-50%, -300%);    }
    60% {      transform: translate(-50%, 100%);    }
    100% {      transform: translate(-50%, 400%);    }
  }