@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body.safari #content, body.safari #footer {/*サファリでリンク先から戻った時文字が拡大する対応*/
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    margin: 0;
    font-size: 17px;
    background-color: #f0f0f0;
}

a:hover,
a:active {
    text-decoration: none;
}

/*初期設定
----------------------------------------------------*/
#wrapper{
    width: 650px;
    padding: 0 0 20px 0;
    overflow: hidden;
    margin: auto;
    position: relative;
    background-color: #fff;
}
.content{
    display: block;
    margin: 0 auto;
    width: 95%;
}
@media screen and (min-width:640px) {
    .pc{
        display: block;
    }
    .sp{
        display: none;
    }
}

@media screen and (max-width:640px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    #wrapper{
        width: 100%;
    }
}
/*layout
----------------------------------------------------*/
p.ttl03 {
    margin-top: -8%;
}

img{
    width: 100%;
}
.w60{
    display: block;
    width: 60%;
    margin: auto;
}
.w80{
    display: block;
    width: 80%;
    margin: auto;
}
.tac{
    text-align: center;
}
.tar{
    text-align: right;
}
.mt0{
    margin-top: 0;
}
.mb0{
    margin-bottom: 0;
}
.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mt20{
    margin-top: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mt30{
    margin-top: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mt40{
    margin-top: 40px;
}
.mt60{
    margin-top: 60px;
}
.pink{
    color: rgb(255, 0, 120);
}
.red{
    color: rgb(255, 0, 0);
}
.gray{
    color: rgb(170, 170, 170);
}
.orange{
    color: rgb(255, 153, 0);
}
.blue{
    color: rgb(0, 0, 255);
}
.marker{
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#fffca5 0%) repeat scroll 0 0;
}
.marker02{
    border-bottom-style: dotted;
    border-bottom-color: #dcdcdc;
    border-bottom-width: 3px;
    padding-bottom: 3px;
}
.fsLL{
    font-size: 26px;
}
.fsL{
    font-size: 22px;
}
.fsM{
    font-size: 20px;
}
.fsS{
    font-size: 10px;
}

.line:after {
    display: block;
    width: 100%;
    height: 5px;
    margin-bottom: 10px;
    content: '';
    background-image: -webkit-gradient(linear, left top, right top, from(#e91732), to(#fe7002));
    background-image: -webkit-linear-gradient(left, #e91732 0%, #fe7002 100%);
    background-image: linear-gradient(to right, #e91732 0%, #fe7002 100%);
}
.video{
    width: 100%;
    margin: 10px auto;
}
.video02{
    display: block;
    width: 80%;
    margin: 10px auto;
}
.swaying-text {
    display: block;
    animation-name: swayingText;
    animation-duration: .25s;
    animation-iteration-count: infinite;
    will-change: transform, animation;
}

@keyframes swayingText {
    0% {
      transform: translate(0px, 0px) rotateZ(0deg);
    }
  
    25% {
      transform: translate(2px, 2px) rotateZ(1deg)
    }
  
    50% {
      transform: translate(0px, 2px) rotateZ(0deg)
    }
  
    75% {
      transform: translate(2px, 0px) rotateZ(-1deg)
    }
  
    100% {
      transform: translate(0px, 0px) rotateZ(0deg)
    }
  }

  .continue {
    display: flex;
    justify-content: center;
  }
  
.continue span {
    display: block;
    /*点の幅サイズ*/
    width: 10px;
    /*点の高さサイズ*/
    height: 10px;
    /*点の色*/
    background-color: #ccc;
    /*角を丸くする*/
    border-radius: 100vh;
    /*点周りの余白。左の値が上下、右の値が左右*/
    margin: 10px 0;
  }
  
.continue .dot-1,
.continue .dot-2,
.continue .dot-3 {
    /*アニメーションの指定。左から、アニメーション名、アニメーション時間の長さ（1sは1秒）、infiniteは無限に再生を繰り返す*/
    -webkit-animation: continue 1s infinite;
    -moz-animation: continue 1s infinite;
  }
.continue .dot-1 {
    /*アニメーションし始める時間*/
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
  }

.continue .dot-2 {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
  }
.continue .dot-3 {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
  }
  @-webkit-keyframes continue {
  
    /*アニメーション時間軸の指定。0%は開始地点、50%は真ん中、100%は最後の地点*/
    0% {
      /*不透明度の指定。1は不透明度100%*/
      opacity: 1;
    }
  
    50% {
      opacity: 0.5;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @keyframes continue {
    0% {
      opacity: 0;
    }
  
    50% {
      opacity: 0.5;
    }
  
    100% {
      opacity: 1;
    }
  }

  .speech-bubble {
    /*吹き出しの最大幅*/
    max-width: 95%;
    /*引き出しの背景色*/
    background: #efefef;
    /*吹き出しの線。線の太さ｜線の種類｜線の色*/
    border: 1px solid #a7a7a7;
    /*角を丸くする*/
    border-radius: 4px;
    /*吹き出しの影。水平方向の距離｜垂直方向の距離｜ぼかし距離｜広がり距離｜影の色の順*/
    box-shadow: 4px 4px 0 0#ccc;
    /*吹き出し内側の余白*/
    padding: 25px 15px;
    /*行間調整*/
    line-height: 1.3;
    /*吹き出し周りの余白。上｜左右｜下*/
    margin: 10px auto 40px;
    position: relative;
    box-sizing: border-box;
  }
  
 .speech-bubble p {
    margin-bottom: 10px;
  }
  
 .speech-bubble p :last-of-type {
    margin-bottom: 0;
  }
  
 .speech-bubble-arrow {
    border-right: 21px solid transparent;
    /*吹き出しのしっぽの影*/
    border-top: 20px solid #ccc;
    bottom: -25px;
    position: absolute;
    /*吹き出しのしっぽの位置*/
    left: 35px;
  }
  
 .speech-bubble-arrow::before {
    border-right: 23px solid transparent;
    /*吹き出しのしっぽの線の色を変更する場合は下記カラーコードを変更*/
    border-top: 23px solid #a7a7a7;
    bottom: 2px;
    content: "";
    position: absolute;
    left: -5px;
  }
  
 .speech-bubble-arrow::after {
    border-right: 21px solid transparent;
    /*吹き出しのしっぽの背景色を変更する場合は下記カラーコードを変更*/
    border-top: 21px solid #efefef;
    bottom: 4px;
    content: "";
    position: absolute;
    left: -4px;
  }

  h2{
    background-color: #ff8e16;
    border-bottom: 2px solid;
    border-left: 6px double;
    border-color: #ff1616 !important;
    line-height: 1.5;
    padding: 15px 10px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
  }
h3 {
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    border-bottom: 4px solid #ffa500;
}
.step_arr {
    position: relative;
    padding-top: 215px;
    margin-top: -65px;
}
.step_arr span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: 30px auto 0;
    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: 30px;
-webkit-animation-delay: .15s;
animation-delay: .15s;
}
.step_arr span:nth-of-type(3) {
top: 60px;
-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;
    }
  }
  h4{
    background-color: #FFF8C4;
    border-bottom: 2px solid;
    border-left: 6px double;
    border-color: #ff8e16 !important;
    line-height: 1.5;
    padding: 15px 10px;
    color: #000;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .txt-d{
    text-decoration: underline;
  }

  .shuffling {
    animation-duration: 1.4s !important;
    -webkit-animation-duration: 1.4s;
    -ms-animation-duration: 1.4s;
    -moz-animation-duration: 1.4s !important;
    -webkit-animation-name: shuffling;
    -moz-animation-name: shuffling;
    -o-animation-name: shuffling;
    animation-name: shuffling;
  }
.animate {
    /* -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; */
}
  @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 {
    font-size: 13px;
    padding: 5%;
    background: #ECECEC;
    text-align: center;
    margin-top: 10px;
}


@media screen and (max-width:640px) {

    .step_arr {
        position: relative;
        padding-top: 155px;
        margin-top: -53px;
    }
    .step_arr span {
        width: 70px;
        height: 70px;
      }
      .step_arr span:nth-of-type(1) {
          -webkit-animation-delay: 0s;
          animation-delay: 0s;
        }
      .step_arr span:nth-of-type(2) {
          top: 20px;
          -webkit-animation-delay: .15s;
          animation-delay: .15s;
        }
      .step_arr span:nth-of-type(3) {
          top: 40px;
          -webkit-animation-delay: .3s;
          animation-delay: .3s;
        }
}