@charset "UTF-8";
body {
  scroll-behavior: smooth;
  background: fixed;
  background-color: #f4eacc;
  background-image: url("../images/bg_main_01.jpg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.price {
  position: relative;
}
.kakaku {
  position: absolute;
  top: 10%;
  margin-left: 20%;
  z-index: 1;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 0px;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}