@charset "UTF-8";
/* CSS Document */
/***********************************************
***  fether grange effect
***********************************************/


#wrapper {
  position: relative
}
.content-layer {
    overflow: hidden;
}
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transition: background .35s linear;
}

.fx-fixed {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s linear, visibility .2s linear;
}

.fx-fixed.is-active {
  opacity: 1;
  visibility: visible
}

.grunge-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .28;
  background-image: url("/assets/img/common/bg-grange.png");
  background-repeat: repeat;
  background-size: auto;
}

.about-section .feather-bg,
.aquarium-section .feather-bg,
.observatory-section .feather-bg,
.restaurant-section .feather-bg,
.special-section .feather-bg,
.fountain-sq-section .feather-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about-section .feather,
.aquarium-section .feather,
.observatory-section .feather,
.restaurant-section .feather,
.special-section .feather,
.fountain-sq-section .feather {
  position: absolute;
  width: var(--w);
  opacity: var(--o);
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(var(--s));
  will-change: transform;
}

.about-section .inner,
.aquarium-section .inner,
.observatory-section .inner,
.restaurant-section .inner,
.special-section .inner,
.fountain-sq-section .inner {
  position: relative;
  z-index: 1;
}



.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  ;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.sns-container .inner {
  color: #111;
  text-shadow: none
}

.card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  padding: 18px
}

.title {
  font-size: 4.0rem;
  margin: 0 0 8px
}

.lead {
  font-size: 1.8rem;
  margin: 0 0 18px;
  max-width: 70ch
}

.spacer {
  height: 40vh
}

.feather {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--w);
  height: auto;
  opacity: var(--o);
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(var(--s));
  will-change: transform;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .feather {
    will-change: auto
  }
}