.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.cta {
  position: fixed;
  z-index: 998;
  right: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .cta {
    right: initial;
    left: 0;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.cta__btn {
  --btn-clr: #e06d88;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background-color: var(--btn-clr);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    width: initial;
    height: 50px;
    border-radius: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 767px) {
  .cta__btn:hover .cta__btn-cir {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  .cta__btn:hover .cta__btn-cir::before {
    border-color: var(--btn-clr);
    -webkit-animation: spin 8s infinite linear;
            animation: spin 8s infinite linear;
  }
  .cta__btn:hover .cta__btn-cir::after {
    border-color: white;
    animation: spin 16s infinite linear reverse;
  }
}
.cta__btn--green {
  --btn-clr: #06c755;
  gap: 5px;
}
.cta__btn-icon {
  display: block;
  width: 27px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .cta__btn-icon {
    width: 20px;
    height: 15px;
  }
}
.cta__btn-icon--line {
  width: 28px;
  height: 27px;
}
@media screen and (max-width: 767px) {
  .cta__btn-icon--line {
    width: 22px;
    height: 20px;
  }
}
.cta__btn-txt {
  display: block;
  font: 700 12px "Noto Serif JP", serif;
  line-height: 1.5555555556em;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta__btn-txt {
    font-size: 13px;
    line-height: 1.3846153846em;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .cta__btn-cir {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1), -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    pointer-events: none;
  }
  .cta__btn-cir::before, .cta__btn-cir::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: dashed transparent;
    border-width: 2px;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1), -webkit-transform 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    -webkit-transition: border-color 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
    transition: border-color 0.6s cubic-bezier(0.32, 0.95, 0.6, 1);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 50px;
  }
}
/*# sourceMappingURL=main.css.map */
