html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  width: 100%;
  background-color: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wrapper {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}



.floating img {
  position: fixed;
  bottom: 7%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 700px;
  z-index: 100;
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

.floating {
  position: relative;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.floating.visible {
  opacity: 1;
  pointer-events: auto;
}


img {
  width: 100%;
  vertical-align: top;
}

/* CTAの画像の上にボタンを置く */
.fv,
.cva {
  position: relative;
}

.button01 img {
  position: absolute;
  bottom: 7%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 700px;
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

.button img {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 700px;
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

footer {
  text-align: center;
  color: #fff;
  background: #a94254;
  padding: 15px;
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto;
}

.fLink {
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  font-size: clamp(1rem, 3vw, 1.8rem);
  display: inline-block;
}

.fLink:hover {
  cursor: pointer !important;
}


footer p {
  color: #fff;
  font-weight: 200;
  font-size: clamp(1rem, 3vw, 1.8rem);
}

/* 大きさ変わるアニメーション */
@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
