@charset "UTF-8";

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}




/* ===========================
  header
=========================== */



/* ===========================
  CTAボタン
=========================== */

.cta_01__inner {
  position: relative;
  display: block;
  width: 100%;
}

.cta_01__img {
  width: 100%;
  height: auto;
  display: block;
}


.cta {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  z-index: 1;
  flex-shrink: 0;
}

@media screen and (max-width:768px) {
  .cta {
    width: 70%;
  }
}


.cta_02__inner {
  position: relative;
  display: block;
  width: 100%;
}

.cta_02__img {
  width: 100%;
  height: auto;
  display: block;
}

.cta2 {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  z-index: 1;
  flex-shrink: 0;
}

@media screen and (max-width:768px) {
  .cta2 {
    width: 70%;
  }
}


.cta__img {
  width: 100%;
  height: auto;
  display: block;
}

img.cta__img {
  margin: 0 auto;
  animation: fuwafuwa 1s ease 0s infinite alternate;
  transform-origin: center;
  cursor: pointer;
}

@keyframes fuwafuwa {
  from {
    transform: scale(0.9, 0.9);
  }

  to {
    transform: scale(1, 1);
  }
}

