main .inner h2 {
  text-align: center;
  line-height: 120%;
}
main .inner h2 span {
  display: block;
  margin-top: 4px;
}
main .inner h2 span.hash {
  font-size: 20px;
  letter-spacing: 1px;
}
main .inner h3 {
  text-align: center;
}
main .inner p {
  text-align: center;
  padding: 0 16px;
}
main .inner p span {
  display: block;
}
main .inner .kitty {
  display: flex;
  justify-content: center;
}

#intro {
  background-color: var(--color-red);
  color: var(--color-white);
}
#intro .hero {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1280px;
}
#intro .hero video {
  width: 100%;
  max-width: 1280px;
}
#intro .hero .heroCover {
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(rgba(228, 24, 41, 0), rgb(228, 24, 41));
  z-index: 2;
}
#intro .hero .btnMute {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon_muteoff.svg);
  z-index: 3;
  cursor: pointer;
}
#intro .hero .btnMute.on {
  background-image: url(../img/icon_muteon.svg);
}
#intro .kitty img {
  width: 191px;
}
#intro::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}

#share {
  background-color: var(--color-yellow);
}

#map {
  background-color: var(--color-main);
  color: var(--color-white);
}
#map::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center bottom;
}

#garden {
  background-color: var(--color-black);
  color: var(--color-white);
}
#garden h2 {
  font-weight: 700;
  line-height: 105%;
}
#garden h2 span.date, #garden h2 span.week {
  display: inline;
}
#garden .gmap iframe {
  width: 100%;
}
#garden .reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#garden .reserve .btn {
  background-color: var(--color-white);
  color: var(--color-black);
}

#social {
  background-color: var(--color-red);
  padding: 16px 0 92px;
  color: var(--color-white);
}
#social h2 {
  display: flex;
  justify-content: center;
}
#social h2 img {
  width: 204px;
}
#social ul {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
#social ul li img {
  width: 72px;
}

@media screen and (min-width: 768px) {
  main .inner h2 {
    font-size: 40px;
  }
  main .inner h2 span {
    font-size: 28px;
  }
  main .inner h3 {
    font-size: 40px;
  }
  main .inner p {
    font-size: 20px;
    line-height: 220%;
  }
  #intro {
    padding: 100px 0 120px;
  }
  #intro h2 {
    margin-top: 120px;
  }
  #intro p {
    margin-top: 48px;
  }
  #intro .hero {
    /*overflow: hidden;
    &::before, &::after {
        content: '';
        width: 30px;
        height: 100%;
        position: absolute;
        top: 0;
    }
    &::before {
        background: linear-gradient(to left, rgba(228,24,41,0),rgba(228,24,41,1));
        left: -1px;
    }
    &::after {
        background: linear-gradient(to right, rgba(228,24,41,0),rgba(228,24,41,1));
        right: -1px;
    }*/
  }
  #intro .hero .btnMute {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 15px;
  }
  #intro .kitty {
    margin-top: 126px;
  }
  #intro::before {
    height: 362px;
    bottom: 64px;
    background-image: url(../img/line_intro_pc3.svg);
    background-position: center bottom;
  }
  #share {
    padding: 120px 0;
  }
  #share h2 {
    font-size: 52px;
  }
  #share p {
    margin-top: 32px;
  }
  #map {
    padding: 120px 0 80px;
  }
  #map p {
    margin-top: 48px;
  }
  #map h3 {
    margin-top: 48px;
  }
  #map .kitty {
    margin-top: 48px;
  }
  #map .kitty img {
    width: 196px;
  }
  #map::before {
    height: 536px;
    top: 48px;
    background-image: url(../img/line_map_pc3.svg);
  }
  #garden {
    padding: 120px 0 93px;
  }
  #garden .kitty img {
    width: 400px;
  }
  #garden h2 {
    font-size: 52px;
    margin-top: 66px;
  }
  #garden h2 span {
    font-size: 29px;
  }
  #garden h2 span.date {
    font-size: 39px;
  }
  #garden h2 span.week {
    font-size: 24px;
  }
  #garden h3 {
    margin-top: 56px;
    font-size: 32px;
  }
  #garden p {
    margin-top: 48px;
  }
  #garden p:first-of-type {
    margin-top: 36px;
  }
  #garden .gmap {
    margin: 88px auto 0;
    width: calc(100% - 128px);
    max-width: 960px;
  }
  #garden .gmap iframe {
    height: 400px;
  }
  #garden .reserve {
    margin-top: 75px;
  }
  #garden .reserve p {
    margin-top: 10px;
    font-size: 14px;
  }
  #social ul {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  main .inner h2 {
    font-size: 26px;
  }
  main .inner h2 span {
    font-size: 22px;
  }
  main .inner h3 {
    font-size: 32px;
  }
  main .inner p {
    font-size: 16px;
    line-height: 200%;
  }
  #intro {
    padding: 100px 0 64px;
  }
  #intro h2 {
    margin-top: 59px;
  }
  #intro p {
    margin-top: 32px;
  }
  #intro .kitty {
    margin-top: 122px;
  }
  #intro .hero .btnMute {
    width: 26px;
    height: 26px;
    right: 12px;
    bottom: 9px;
  }
  #intro::before {
    height: 500px;
    bottom: 0;
    background-image: url(../img/line_intro_sp3.svg);
    background-position: center bottom -120px;
  }
  #share {
    padding: 46px 0 44px;
  }
  #share h2 {
    font-size: 41px;
  }
  #share p {
    margin-top: 24px;
  }
  #map {
    padding: 46px 0 40px;
  }
  #map p {
    margin-top: 22px;
  }
  #map h3 {
    margin-top: 18px;
  }
  #map .kitty {
    margin-top: 33px;
  }
  #map .kitty img {
    width: 173px;
  }
  #map::before {
    height: 426px;
    top: 69px;
    background-image: url(../img/line_map_sp3.svg);
  }
  #garden {
    padding: 38px 0 34px;
  }
  #garden .kitty img {
    width: 320px;
  }
  #garden h2 {
    font-size: 35px;
    margin-top: 34px;
  }
  #garden h2 span {
    font-size: 21px;
  }
  #garden h2 span.date {
    font-size: 28px;
  }
  #garden h2 span.week {
    font-size: 17px;
  }
  #garden h3 {
    margin-top: 25px;
    font-size: 28px;
  }
  #garden p {
    margin-top: 31px;
  }
  #garden p:first-of-type {
    margin-top: 18px;
  }
  #garden .gmap {
    margin: 48px auto 0;
    width: calc(100% - 64px);
    max-width: 320px;
  }
  #garden .gmap iframe {
    height: 328px;
  }
  #garden .reserve {
    margin-top: 67px;
  }
  #garden .reserve p {
    margin-top: 9px;
    font-size: 14px;
  }
  #social ul {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  body.en #social ul {
    gap: 18px;
  }
  body.en #social ul li img {
    width: 66px;
  }
}/*# sourceMappingURL=top.css.map */