.cta01 {
  background: url(../../images/cta01_bg.jpg) top/cover;
  height: 12.5rem;
}

.cta01__inner {
  width: 78%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 769px) {
  .cta01__inner {
    width: 95%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta01__bubble {
  width: 31.5%;
}

@media (max-width: 769px) {
  .cta01__bubble {
    width: 100%;
  }
}

.cta01__btn {
  width: 66%;
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* アニメーションをループさせる */
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 769px) {
  .cta01__btn {
    width: 95%;
  }
}
