@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-inline: auto;
}

/* パーツ */
.btn-cta {
  width: 95%;
  margin-inline: auto;
}

.block-cta {
  position: relative;
}

.block-cta .btn-cta {
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  margin-inline: auto;
}

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

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

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

.footer {
  background-color: #a8814b;
  padding: min(3.7vw, 23px) 0 min(33.3vw, 250px);
}

.footer .copyright {
  font-size: clamp(10px, 2.7vw, 20px);
  color: #fff;
  text-align: center;
}

/* ボタン動き */
.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-inline: auto;
  width: 95%;
  max-width: 710px;
}