@charset "utf-8";

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333 !important;
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

button {
  display: block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

a:hover img,
button:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-header,
.l-fixHeader,
.p-breadcrumb,
.w-beforeFooter,
.l-footer,
.p-fixBtnWrap,
#fix_bottom_menu {
  display: none;
}

.l-content,
.l-container {
  max-width: unset;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 640px;
  margin-inline: auto;
  /* padding-bottom: min(21.333333333333336vw, 136.5px); */
}

.btn-reserve {
  background-color: #e8eb69;
  padding-top: min(5.3vw, 34px);
  padding-bottom: min(4.3vw, 27px);
}

.beforeafter .movie {
  width: 90%;
  margin-inline: auto;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin: 0 auto;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-text {
  font-size: min(4vw, 18px);
  padding: 6%;
}

.info-text ul {
  list-style-type: "-";
}

.info-text ul li {
  padding-left: 0.75em;
}

.info-text ul li:not(:first-child) {
  margin-top: 0.25em;
}

.fixbtn {
  max-width: 640px;
  position: fixed;
  bottom: 0;
}

/* ボタン動き */
.updown {
  -webkit-animation-name: updown1;
  animation-name: updown1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}