@charset "utf-8";

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

.container {
  max-width: 750px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb28 {
  margin-bottom: 28%;
}

.mb20 {
  margin-bottom: 20%;
}

.mb18 {
  margin-bottom: 18%;
}

.mb16 {
  margin-bottom: 16%;
}

.mb12 {
  margin-bottom: 12%;
}

.mb10 {
  margin-bottom: 10%;
}

.mb8 {
  margin-bottom: 8%;
}

.mb6 {
  margin-bottom: 6%;
}

.mb4 {
  margin-bottom: 4%;
}

.mb2 {
  margin-bottom: 2%;
}

/* パーツ */
.block-cta {
  position: relative;
}

.btn-cta {
  position: absolute;
  bottom: 8%;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
}

.btn-cta-2 {
  position: absolute;
  bottom: 3.5%;
  width: 94%;
  left: 0;
  right: 0;
  margin: auto;
}

.block-info {
  padding: 12% 0;
}

.btn-tel {
  width: 55%;
  margin: auto;
}

.video-outer {
  text-align: center;
  background: #000;
}

video {
  width: 33%;
  vertical-align: bottom;
}

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

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

.footer {
  background-color: #9d814f;
  padding: min(1.3vw, 10px) 0 min(30vw, 226px);
}

.footer .copyright {
  font-size: clamp(12px, 3vw, 24px);
  color: #fff;
}

/* ボタン動き */
.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)
  }
}

/* フローティングボタン */
.fixbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 94%;
  max-width: 723px;
}