@charset "UTF-8";
html {
  font-size: 1.35vw;
  scroll-behavior: smooth;
}

@media screen and (min-width: 769px) {
  html {
    font-size: 65%;
  }
}
body {
  font-size: 1.6rem;
  letter-spacing: 0;
  font-family: "Zen Maru Gothic";
  color: #333;
  margin: 0 !important;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  line-height: 150%;
}

p {
  margin-top: 0;
  line-height: 1.4;
  margin-bottom: 1rem;
  line-height: 150%;
}
p:last-of-type {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: unset;
  color: #182A48 !important;
}

img {
  vertical-align: bottom; /* ↓ これを追加 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.w100 {
  width: 100%;
}

.pb-10 {
  padding-bottom: 10rem !important;
}
@media screen and (max-width: 768px) {
  .pb-10 {
    padding-bottom: 5rem !important;
  }
}

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/bg.jpg) no-repeat center;
  z-index: -1;
}

main {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
main img {
  width: 100%;
}

.p-front__08 .c-btn {
  bottom: 7rem;
}

.c-btn-area {
  position: relative;
}

.c-btn {
  position: absolute;
  left: 50%;
  bottom: 9rem;
  transform: translate(-50%, 0);
  display: block;
  max-width: 48rem;
  width: 80%;
}
.c-btn img {
  animation: btn_anime 0.5s ease 0s infinite alternate;
}

@keyframes btn_anime {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}/*# sourceMappingURL=style.css.map */