@charset "UTF-8";

.noto-sans-jp-300 {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.noto-sans-jp-600 {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.noto-sans-jp-900 {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.86;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    font-size: 12px;
  }
}
strong,
b {
  font-weight: 700;
}

.zoom-box {
  /*display: inline-block;*/
  overflow: hidden;
}
.c-bnr.zoom {
  display: block;
  transition-duration: 0.9s;
}
.c-bnr.zoom:hover {
  transform: scale(1.2);
}
.btn svg {
  fill: #fff;
  position: absolute;
  z-index: 2;
  transition: fill 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  right: 7px;
  top: 7px;
  width: 10px;
  height: 8px;
}

/*fadeup*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
  position: relative;
}
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 画像アニメーション */
.animate {
  position: relative;
  overflow: hidden;
}
.animate::before {
  background-color: rgb(30, 35, 40);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 2s;
  transform: translateY(-0%);
}
.animate.show::before {
  transform: translateY(-101%);
}
.anim-box.zoomIn.show img {
  animation: zoomIn 2s cubic-bezier(0, 0.91, 0.31, 1.04);
}

.no2 .anim-box.zoomIn.show img {
  animation: zoomIn 2s cubic-bezier(0.17, 0.63, 0.4, 0.96);
}
.anim-box.zoomIn.show img {
  animation: zoomIn 2s cubic-bezier(0.37, 0.36, 0.7, 0.71);
}

@keyframes zoomIn {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
span.smoothText {
  overflow: hidden;
  display: block;
}
.fadeRight {
  opacity: 0;
}
span.fadeRight {
  display: inline-block;
}
.loaded .fadeRight {
  animation-name: fadeRightAnime;
  animation-delay: 0.5s;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in-out;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*トップに戻るボタン*/
.back-to-top {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 15%;
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  z-index: 3;
}
.back-to-top::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #ea5381;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-to-top::after {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 21px;
  left: 21px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .back-to-top:hover::before {
    background-color: rgba(225, 105, 145, 0.7);
  }
}
@media only screen and (max-width: 767px) {
  .back-to-top::after {
    left: 16px;
  }
}

/*店舗電話番号バナー*/
.banner {
  display: none;
  width: 100%;
  max-width: 600px;
  height: 50px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  transition: 2s;
  background: rgba(235, 85, 130, 0.9);
  z-index: 10;
  border-radius: 25px 25px 25px 25px;
  border: 2px solid #fff;
}
.banner.hide {
  transform: translate(-50%, 80px);
  left: 50%;
  transition: 2s;
}
.banner-shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 50px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.banner-shop:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: '';
  width: 70px;
  height: 65px;
  background-image: url('../img/dog-tel.png');
  background-repeat: no-repeat;
  display: inline-block;
  background-position: center bottom;
  background-size: contain;
}
.banner-shop-name {
  width: 150px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.banner-shop > .banner-shop-name:nth-child(2) {
  justify-content: end;
}
.banner-shop-name p {
  font-weight: bold;
  width: 60%;
  line-height: 1.3;
  color: #fff;
}
.banner-shop-name span {
  font-weight: bold;
  font-size: 10px;
  display: inline-block;
  color: #fff !important;
}
.banner-shop-name .banner-shop-icon {
  width: 30%;
}
.banner-shop-name .banner-shop-icon a {
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
}
@media only screen and (min-width: 768px) {
  .banner {
    width: 600px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px 25px 25px 25px;
    border: 2px solid #fff;
  }
}
