html {
  font-size: 19px;
}

/* @media screen and (min-width: 768px) and (max-width: 1000px) {
  html {
    font-size: 2.667vw;

  }
} */
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #072334;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 526px) {
  html {
    font-size: 2.532vw;
  }
}
img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

/* sec01 CTA */
.sec01 {
  position: relative;
}

.sec01_cta {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.sec01_cta a {
  display: block;
  width: 100%;
}

/* sec08 CTA */
.sec08 {
  position: relative;
}

.sec08_cta {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.sec08_cta a {
  display: block;
  width: 100%;
}

/* sec15 CTA */
.sec15 {
  position: relative;
}

.sec15_cta {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.sec15_cta a {
  display: block;
  width: 100%;
}


.dokidoki {
  -webkit-animation: dokidoki 1s ease 0s infinite alternate;
          animation: dokidoki 1s ease 0s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  display: inline-block;
}
@-webkit-keyframes dokidoki {
  from {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes dokidoki {
  from {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}



a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/* 追従バナー */
.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 500px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.fixed-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.fixed-banner a {
  display: block;
  width: 100%;
}

.fixed-banner img {
  display: block;
}