@charset "UTF-8";

/* 初期設定 */
* {
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
}

body {
    font: 17px/1.8 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    background-color: #F7F7F7;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width:699px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

.wrapper {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    padding: 15px 20px;
    background-color: #fff;
    overflow: hidden;
}

header {
    background-color: #999;
    padding: 30px 10px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

footer {
    background-color: #ccc;
    padding: 30px 10px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 60px auto 0;
    font-size: 11px;
    text-decoration: none;
}

footer a {
    color: #fff;
}

p {
    color: #000;
    margin-top: 20px;
    line-height: 1.8;
    vertical-align: baseline;
    text-align: center;
}

ul {
    color: #000;
    margin-top: 20px;
    line-height: 1.7;
    vertical-align: baseline;
}

a {
    display: block;
    color: #1E73BE;
}

img,
video {
    width: 100%;
    object-fit: contain;
    display: block;
    vertical-align: bottom;
    margin-top: 20px;
}

.red {
    color: rgb(255, 0, 0);
}

.red02{
    color: rgb(230, 0, 0);
}

.pink {
    color: rgb(255, 0, 255);
}

.pink02{
    color: rgb(250, 87, 204);
}

.blue {
    color: rgb(0, 0, 255);
}

.blue02 {
    color: rgb(0, 71, 178);
}

.blue03 {
    color: rgb(34, 170, 255);
}



.mark_wide {
    background-color: rgb(255, 255, 0);
}

.mark {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff00 0%) repeat scroll 0 0;
}

.taR {
    display: block;
    text-align: right;
}

.mt {
    margin-top: 25px;
}

.mt60 {
    margin-top: 60px;
}

.mb {
    margin-bottom: 25px;
}

.m0 {
    margin: 0;
}

.fsS {
    font-size: 15px;
}

.fsM {
    font-size: 19px;
}

.fsL {
    font-size: 21px;
}

.fsLL {
    font-size: 23px;
}

.fsLLL {
    font-size: 25px;
}

.anno_fv {
    color: rgb(136, 136, 136);
    font-size: 15px;
    text-align: right;
}

.anno {
    text-align: right;
    font-size: 10px;
    color: rgb(68, 68, 68);
    margin-top: 10px;
}

.point_box {
    text-align: center;
    border: 1px solid #c4c4c4;
    padding: 10px;
    margin: 20px auto;
    background-color: #fff9ed;
}

h2 {
    padding: 10px 5px 10px 10px;
    font-size: 19px;
    border-left: 6px solid #f68384;
    background-color: #fff1f1;
    margin-top: 40px;
}

/* --------------------動く矢印-------------------- */
.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;
    margin: 40px 0;
}

.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);
    }
}

/* --------------------動く矢印（細）-------------------- */
.cp_arrows {
    position: relative;
    /*widget自体の高さ*/
    height: 50px;
    /*widgetの上余白*/
    margin-top: 1em;
    /*widgetの下余白*/
    margin-bottom: 1em;
  }
  
  
  
  /*一個目の矢印*/
  .cp_arrows .cp_arrowfirst {
    /*アニメーション設定。
     左からアニメーション名、動きの速さ（2s=2秒）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
    animation: arrow-move08 2s ease-in-out infinite;
  }
  
  
  
  /*二個目の矢印*/
  .cp_arrows .cp_arrowsecond {
    /*アニメーション設定。
     左からアニメーション名、動きの速さ（2s=2秒）、開始時間（1s=1秒後）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
    animation: arrow-move08 2s 1s ease-in-out infinite;
  }
  
  
  
  /*共通設定*/
  .cp_arrows .cp_arrow {
    position: absolute;
    /*矢印の到着位置　（縦位置）*/
    top: 100%;
    /*矢印の到着位置　（横位置）*/
    left: 45%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
  }
  
   .content :first-child {
    margin-top: 0;
  }
  
  @keyframes arrow-move08 {
  
    /*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
    0% {
      top: 40%;
      opacity: 0;
    }
  
    /*2sの70％（1.7秒）時に不透明になる*/
    70% {
      opacity: 1;
    }
  
    /*2s（2秒）時に透明になる*/
    100% {
      opacity: 0;
    }
  }
  
   .cp_arrows .cp_arrow:before {
    /*矢印左の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
    transform: rotate(30deg) translateX(-39%);
    /*矢印左の棒の起点。（top left=左上）*/
    transform-origin: top left;
  }
  
   .cp_arrows .cp_arrow:after {
    /*矢印右の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
    transform: rotate(-30deg) translateX(39%);
    /*矢印右の棒の起点。（top right=右上）*/
    transform-origin: top right;
  }
  
   .cp_arrows .cp_arrow:before,
   .cp_arrows .cp_arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    /*矢印の棒の横の長さ*/
    width: 40px;
    /*矢印の棒の縦の長さ*/
    height: 3px;
    content: '';
    /*矢印の色*/
    background: #E91E63;
  }
  
   .cp_arrows *,
   .cp_arrows *:before,
   .cp_arrows *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
   .cp_arrows *,
   .cp_arrows *:before,
   .cp_arrows *:after {
    box-sizing: border-box;
  }
  
   content div:after,
   .content p:after {
    clear: both;
  }
  
   .content div :after,
   .content p:after {
    display: block;
    content: "";
    clear: both;
  }


/* --------------------CTA-------------------- */


/*widget全体のアニメーションの設定*/
.animate69 {
    text-align: center;
    /*アニメーションの設定｜アニメーション名｜1回のサイクルに要する時間｜進め方｜実行回数｜*/
    animation: animate69 1s ease-in infinite;
    box-sizing: border-box;
    margin-top: -15px;
}

a.a-btn {
    display: inline-block;
    /*飾り*/
    text-decoration: none;
    /*ボタンの最大幅*/
    max-width: 98% !important;
}

.animate69 img {
    /* width以下の表示サイズになった場合、max-width の値が適用されます*/
    max-width: 500px;
    /*横幅*/
    width: 100%;
    /*高さ*/
    height: auto;
    margin: 0;
}

/*アニメーションの詳細設定*/
@keyframes animate69 {

    /*スタート時*/
    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);
    }
}

/* 線 */
hr {
    /*上下の余白も含めた全体の高さ*/
    height: 50px;
    position: relative;
    border: none;
  }
  
   hr:before {
    /*横幅*/
    width: 100%;
    /*線の種類*/
    border-style: double;
    /*線の色*/
    border-color: #ff69b4;
    /*線の厚みは１番目の数値を変更*/
    border-width: 9px 0 0 0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translatex(-50%);
  }

  /* --------------------アンケート-------------------- */
  .question-reveal-scroll {
    width: 750px;
    max-width: 100%;
    font-size: 19px;
    background-color: #fff;
    margin: 0 auto 1rem;
    padding: 1rem;
    line-height: 1.5;
    box-sizing: border-box;
  }
  
   .question-reveal-scroll .questionArea {
    margin-bottom: 10px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #cccccc;
  }
  
   .navi {
    text-align: center;
    margin-bottom: 20px;
    order: 1;
  }
  
   .navi__numbers {
    position: relative;
    display: inline-flex;
    margin: 10px 0;
    font-weight: bold;
  }
  
   .navi__numbers::before {
    content: '';
    width: calc(100% - 40px);
    height: 20px;
    background-color: #eeeeee;
    position: absolute;
    top: calc(50% - 10px);
    left: 20px;
  }
  
   .navi__numbers .current {
    color: #fff;
    background-color: #ff69b4;
  }
  
   .navi__numbers span {
    color: #ffffff;
    background-color: #bbbbbb;
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    margin: 0 10px;
    width: 70px;
    aspect-ratio: 1/1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
  }
  
   .navi__numbers .current~span {
    color: #fff;
    background-color: #ffbadc;
  }
  
   .question-reveal-scroll .title {
    width: 100%;
    color: #000000;
    background-color: #ffffff;
    font-size: 20px;
    text-align: left;
    margin: 0 auto 1em;
    padding: 0;
    order: 2;
  }
  
   .question-reveal-scroll .imagebox {
    text-align: center;
    margin: 0 0 20px;
    order: 3;
  }
  
   .question-reveal-scroll .imagebox img,
   .question-reveal-scroll .imagebox video {
    display: inline !important;
    margin: 0;
  }
  
   .question-reveal-scroll .linkbox {
    box-sizing: border-box;
    order: 4;
  }
  
   .question-reveal-scroll input {
    display: none;
  }
  
   .question-reveal-scroll input+label {
    border: none;
    padding: 6px;
    display: block;
  }
  
   .question-reveal-scroll input+label .btn {
    color: #000000;
    background-color: #e8e6e6;
    width: 100%;
    border-radius: 100vh;
    padding: 0.5em 1em;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
  }
  
   .question-reveal-scroll input+label .btn:focus {
    outline: none !important;
  }
  
   .question-reveal-scroll input:checked+label .btn {
    background-color: #ff5e14;
    color: #ffffff;
  }
  
   .question-reveal-scroll ::-moz-focus-inner {
    border-color: transparent;
  }
  
   .question-reveal-scroll .send-btn {
    margin: 1rem auto;
  }
  
   .question-reveal-scroll .send-btn button {
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
    padding: 1em;
    background-color: #ff1493;
    border-radius: 4px;
    position: relative;
    pointer-events: auto;
    display: block;
    transition: transform .2s;
  }
  
   .send-btn button:hover {
    transform: scale(1.2);
    cursor: pointer;
  }
  
   .revealarea {
    font-size: 1.2rem;
    text-align: left;
    margin: 3rem auto 0;
    padding: 0;
    box-sizing: border-box;
  }
  
   .is-hidden {
    display: none;
  }