@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  background-color: none !important;
}

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

body {
  background-color: none !important;
  color: #0c0b0b;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  height: 100%;
  overflow: hidden;
}

body.display-kv-animation {
  height: 100%;
  overflow: hidden;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
  margin-top: -30px;
}

.finish-loading #wrapper {
  opacity: 1;
}

.loader {
  display: flex;
  visibility: visible;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-color: #ededed;
  transition: opacity 0.3s;
  z-index: 2000;
}

.finish-loading .loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.is-loading .loader {
  visibility: visible;
  opacity: 1;
}

.loader img {
  width: 100%;
  height: auto;
}

.loader .loader-inner {
  width: 100%;
  max-width: 330px;
  padding: 0 20px;
}

.loader .loader-logo {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
}

.loader .loader-bar {
  position: relative;
  width: 100%;
  height: 10px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  background-color: #ffffff;
}

.loader .loader-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #df0051;
}

.loader .loader-ico {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 50px auto 0 auto;
}

.loader .loader-ico-mask {
  z-index: 2;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.loader .loader-ico-mask img {
  position: absolute;
  bottom: -36px;
  left: 18px;
  width: 54px;
  height: auto;
  animation: loading-ico-move 1.6s infinite linear;
}

.loader .loader-ico-circle {
  z-index: 1;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
}

.loader .loader-ico-ttl {
  display: flex;
  z-index: 3;
  position: relative;
  top: -10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2px;
}

.loader .loader-ico-ttl img.ttl {
  display: block;
  width: 70px;
  height: auto;
}

.loader .loader-ico-ttl-dots {
  aspect-ratio: 1/0.5;
  width: 28px;
  --_g: no-repeat radial-gradient(circle closest-side, #df0051 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: dots-move 1s infinite linear;
}

@keyframes dots-move {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

@keyframes loading-ico-move {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
}

.header {
  position: static !important;
}

.kv {
  width: 100%;
  height: 57vw;
  background: #FFF;
  position: relative;
  z-index: 3;
}

.kv .main {
  width: 92vw;
  position: absolute;
  top: 4vw;
  left: 4vw;
  z-index: 2;
}

.kv .door-left {
  width: 13.8vw;
  position: absolute;
  top: 23.15vw;
  left: 34.7vw;
  z-index: 3;
}

.kv .door-right {
  width: 13.95vw;
  position: absolute;
  top: 23.1vw;
  left: 48.4vw;
  z-index: 3;
}

.kv .door-left,
.kv .door-right {
  transition: left 2s ease 0s;
}

.finish-loading .kv .door-left {
  left: 26.7vw;
}

.finish-loading .kv .door-right {
  left: 56.7vw;
}

.kv .interior {
  width: 42vw;
  position: absolute;
  top: 22.8vw;
  left: 27.5vw;
  z-index: 1;
}

header {
  max-width: 100vw;
  width: 100%;
  height: 5vw;
  background: #FFF;
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  opacity: 1;
  animation: none;
  padding: 1vw 4vw 0;
  z-index: 5;
}

.finish-loading header {
  animation: header 2s;
}

@keyframes header {

  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header-nav-teramura {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav-teramura h1 {
  width: 14vw;
}

.header-nav-teramura ul {
  list-style-type: none;
  font-weight: bold;
  color: #371E0B;
  font-size: 1.2vw;
  margin-right: 8.2vw;
}

.header-nav-teramura ul li {
  display: inline-block;
  margin-left: 2.5vw;
  padding: 3px 0;
  position: relative;
}

.header-nav-teramura ul li a {
  color: #371E0B;
  text-decoration: none;
}

.header-nav-teramura h1,
.header-nav-teramura ul li {
  transition: opacity 0.5s ease 0s;
}

.header-nav-teramura ul li::before {
  background: #371E0B;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.header-nav-teramura ul li:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.header-nav-teramura h1:hover {
  opacity: 0.7;
}

.header-nav-teramura p span {
  color: #371E0B;
  font-size: 1.1vw;
}

@media (max-width: 767.98px) {
  .kv {
    width: 100%;
    height: 150vw;
  }

  .kv .logo {
    width: 40vw;
    position: absolute;
    top: 5vw;
    left: 28vw;
    z-index: 2;
  }

  .kv .main {
    width: 100vw;
    top: 17vw;
    left: 0;
  }

  .kv .door-left {
    width: 20.3vw;
    top: 101.15vw;
    left: 24.7vw;
  }

  .kv .door-right {
    width: 20.26vw;
    top: 101.1vw;
    left: 45vw;
  }

  .finish-loading .kv .door-left {
    left: 11.7vw;
  }

  .finish-loading .kv .door-right {
    left: 57vw;
  }

  .kv .interior {
    width: 62vw;
    top: 101vw;
    left: 15vw;
  }

  header {
    height: 7vw;
    padding: 3vw 4vw 0;
  }

  .header-nav-teramura {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }

  .header-nav-teramura h1 {
    width: 14vw;
  }

  .header-nav-teramura ul {
    font-size: 3.7vw;
    margin: 2vw 1vw;
  }

  .header-nav-teramura ul li {
    margin: 0 3vw;
  }

  .header-nav-teramura p span {
    font-size: 3vw;
  }

}

.anchor-link {
  margin-top: -12vw;
  padding-top: 12vw;
}

#shop,
#price {
  position: relative;
  width: 100vw;
  background: #FFF;
  z-index: 1;
}

.shop-main {
  width: 100%;
  height: 60vw;
  position: relative;
  z-index: 1;
}

.shop-main .shop-ttl {
  width: 56vw;
  position: absolute;
  top: -14vw;
  left: -8.5vw;
}

.shop-section {
  position: absolute;
  top: 21vw;
  left: 14vw;
}

.shop-section dl {
  display: block;
  width: 40vw;
}

.shop-section dl dt {
  display: block;
  width: 9vw;
  background: #60CBA4;
  border-radius: 3px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  line-height: 1;
  font-size: 1.4vw;
  margin: 0 0 1vw;
}

.shop-section dl dd {
  display: inline-block;
  font-weight: bold;
  color: #371E0B;
  font-size: 1.5vw;
  padding: 0.3vw 1vw 1vw;
}

.shop-section dl dt:first-child,
.shop-section dl dd:first-child {
  display: inline-block;
}

.shop-section dl dd ul {
  margin-left: -1vw;
}

.shop-section dl dd ul li {
  list-style-type: none;
  color: #371E0B;
  font-size: 1.4vw;
  margin-left: -1vw;
  font-weight: 500;
  margin: 0 0 1vw;
}

.shop-section dl dd ul li a {
  color: #371E0B;
  transition: transform .3s;
}

.shop-section dl dd ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.shop-section dl dd ul li span {
  display: block;
  color: #87807A;
  font-size: 1.3vw;
  font-weight: bold;
}

.shop-img {
  width: 45vw;
  height: 26vw;
  position: absolute;
  right: 0;
  top: 20vw;
  border-radius: 1vw 0 0 1vw;
  background-image: url(../img/shop_exterior.png);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}


@media (max-width: 767.98px) {

  .shop-main {
    height: 177vw;
    padding: 0 0 80px;
  }

  .shop-main .shop-ttl {
    width: 79vw;
    top: -7vw;
    left: -22.5vw;
  }

  .shop-section {
    top: 42vw;
    left: 7vw;
  }

  .shop-section dl {
    width: 90vw;
  }

  .shop-section dl dt {
    width: 21vw;
    font-size: 3.8vw;
    margin: 3vw 0 1vw;
  }

  .shop-section dl dd {
    font-size: 3.8vw;
    padding: 0.3vw 1vw 1vw;
  }

  .shop-section dl dd ul {
    margin-left: -1vw;
    margin-top: 1vw;
  }

  .shop-section dl dd ul li {
    font-size: 3.8vw;
    margin-left: -1vw;
    margin: 0 0 3vw;
  }


  .shop-section dl dd ul li span {
    font-size: 3.2vw;
  }

  .shop-img {
    width: 93vw;
    height: 49vw;
    top: 102vw;
    border-radius: 2vw 0 0 2vw;
    background-image: url(../img/shop_exterior.png);
  }

}

.price-main {
  width: 100%;
  height: 49vw;
  padding: 0;
  position: relative;
  z-index: 1;
}

.price-main .price-ttl {
  width: 51vw;
  position: absolute;
  top: -20vw;
  right: -10.5vw;
  z-index: 5;
}

.price-main .price-list,
.price-main .price-attention {
  width: 70vw;
  position: static;
  margin: 0 auto;
}

.price-main .price-list img {
  width: 100%;
}

.price-main .price-attention {
  display: flex;
  justify-content: space-between;
  margin: 1vw auto;
  padding-right: 1vw;
}

.price-main .price-attention ul li {
  list-style-type: none;
  color: #371E0B;
  font-weight: bold;
  font-size: 1.5vw;
  width: 55vw;
}


@media (max-width: 767.98px) {
  .price-main {
    height: 108vw;
  }

  .price-main .price-ttl {
    width: 72vw;
    position: absolute;
    top: -31vw;
    right: -12.5vw;
  }

  .price-main .price-list,
  .price-main .price-attention {
    width: 90vw;
  }

  .price-main .price-list img {
    width: 100%;
  }

  .price-main .price-attention {
    display: block;
    margin: 4vw auto;
    padding-right: 1vw;
  }

  .price-main .price-attention ul li {
    font-size: 3.5vw;
    width: 100%;
  }

  .price-main .price-attention img {
    width: 32vw;
    padding-top: 3vw;
  }


}


#search {
  position: relative;
  width: 100%;
  min-height: 70vw;
}

.search-inner {
  position: relative;
  z-index: 2;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/search_image-pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.search-main .search-ttl {
  width: 47vw;
  position: absolute;
  top: 3vw;
  right: 1.5vw;
  z-index: 4;
}

.search-main .search-area {
  width: 60vw;
  position: absolute;
  top: 38vw;
  left: 20vw;
  z-index: 4;
  display: flex;
}

.search-main .search-area .typing_txt {
  width: 48vw;
  height: 6vw;
  z-index: 4;
  border-radius: 6px 0 0 6px;
  border: 2px solid #529FD5;
  background: #FFF;
}

.search-main .search-area .typing_txt .typing {
  width: 7ch;
  overflow: hidden;
  animation: typing 5s steps(12) infinite;
  display: block;
  width: 30vw;
  height: 2vw;
  margin: 1.8vw 2vw;
  font-weight: bold;
  font-size: 2vw;
  line-height: 1;
  color: #696969;
}

@keyframes typing {

  0% {
    width: 0ch;
  }

  40% {
    width: 12ch;
  }

  100% {
    width: 12ch;
  }
}

.search-main .search-area a {
  display: block;
  width: 12vw;
  height: 6vw;
  border-radius: 0 6px 6px 0;
  background: #529FD5;
  font-size: 1.9vw;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  display: flex;
  justify-content: center;
  padding: 0 2vw;
  align-items: center;
}

.search-main .search-area a img {
  width: 2.4vw;
  padding-right: 0.4vw;
  ;
}

.search-main .search-area a:hover {
  background: #3FA9F4;
}

@media (max-width: 767.98px) {
  .bg-fixed {
    height: 100vh;
    background-image: url("../img/search_image-sp.png");
  }

  #search {
    min-height: 110vw;
  }

  .search-main .search-ttl {
    width: 68vw;
    top: -10vw;
    right: -11.5vw;
  }

  .search-main .search-area {
    width: 80vw;
    top: 56vw;
    left: 10vw;
  }

  .search-main .search-area .typing_txt {
    width: 58vw;
    height: 12vw;
    border-radius: 6px 0 0 6px;
  }

  .search-main .search-area .typing_txt .typing {
    width: 40vw;
    height: 4.5vw;
    margin: 3vw;
    font-size: 4.5vw;
  }

  .search-main .search-area a {
    width: 22vw;
    height: 12vw;
    font-size: 4.5vw;
    padding: 0 2vw;
  }

  .search-main .search-area a img {
    width: 5vw;
    padding-right: 1vw;
    ;
  }

  .search-main .search-area a:hover {
    background: #3FA9F4;
  }

}

.book-top {
  width: 100%;
  height: 5.2vw;
  background-image: url(../img/recommendation_top.svg);
  background-position: bottom left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.recommendation-main {
  width: 100%;
  padding: 50px 0 80px;
  background: linear-gradient(to right,
      #f6f7f6 0%,
      #f6f7f6 50%,
      #f0f0f0 50%,
      #f0f0f0 100%);
  position: relative;
  z-index: 1;
}

.recommendation-main .recommendation-ttl {
  width: 52vw;
  position: absolute;
  top: -26.5vw;
  left: -7.5vw;
}

.recommendation-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 5vw;
  padding: 0 50px;
}

.recommendation-info div {
  width: 45%;
}

.recommendation-info-nana {
  width: 30vw;
  height: 23vw;
  margin: 0 auto;
  position: relative;
}

.recommendation-info-nana img {
  width: 16vw;
  position: absolute;
  top: 3vw;
  left: 6.2vw;
}

.recommendation-info-nana img.txt {
  width: 28vw;
  position: absolute;
  top: -3vw;
  left: -0.2vw;
}

.recommendation-info-ttl {
  width: 32vw;
  margin-bottom: 1.8vw;
}

.recommendation-info-magazine {
  width: 12.5vw;
  margin-bottom: 2vw;
}

.recommendation-info-desc {
  color: #371E0B;
  font-weight: bold;
  font-size: 1.4vw;
}

.recommendation-info .recommendation-info-book {
  width: 25vw;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: #371E0B;
  line-height: 1.2;
}

.recommendation-info .btn {
  width: 25vw;
  display: block;
  margin: 2vw auto 0;
  padding: 2.5vw 0 2.7vw;
  text-align: center;
  font-size: 1.8vw;
  color: #FFF;
  line-height: 0;
  font-weight: bold;
  border-radius: 20vw;
  background: #DF0051;
  position: relative;
  text-decoration: none;
  transition: opacity 0.5s ease 0s;
}

.recommendation-info .btn:hover {
  background: #FF146A;
}

.recommendation-info .btn::after {
  content: "";
  display: block;
  width: 0.8vw;
  height: 1.5vw;
  background-image: url(../img/arrow.svg);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 2.2vw;
  right: 2.2vw;
}

.recommendation-list {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.recommendation-list.is-dragging {
  cursor: grabbing;
}

.recommendation-list-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.recommendation-list-group {
  display: flex;
  flex-shrink: 0;
}

.recommendation-list-group p {
  margin: 0 20px 0 0;
  flex-shrink: 0;
}

.recommendation-list-group img {
  display: block;
  width: 17vw;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  border: solid 1px #D1D1D1;
}

@media (max-width: 767.98px) {
  .recommendation-list-group p {
    margin: 0 12px 0 0;
  }

  .recommendation-list-group img {
    width: 90px;
  }
}

@media (max-width: 767.98px) {

  .recommendation-main {
    padding: 5vw 0 8vw;
  }

  .recommendation-main .recommendation-ttl {
    width: 80vw;
    top: -36vw;
    left: -21.5vw;
  }

  .recommendation-info {
    display: block;
    margin-bottom: 5vw;
    padding: 0;
  }

  .recommendation-info div {
    width: 90vw;
    margin: 0 auto;
    text-align: center;
  }

  .recommendation-info-nana {
    width: 70vw;
    height: 53vw;
    margin: 0 auto;
    position: relative;
  }

  .recommendation-info-nana img {
    width: 37vw;
    position: absolute;
    top: 10vw;
    left: 17vw;
  }

  .recommendation-info-nana img.txt {
    width: 65vw;
    position: absolute;
    top: -3vw;
    left: 2.1vw;
  }

  .recommendation-info-ttl {
    width: 82vw;
    margin: 0 auto 3.8vw;
  }

  .recommendation-info-magazine {
    width: 45vw;
    margin: 0 auto 5vw;
  }

  .recommendation-info-ttl img,
  .recommendation-info-magazine img {
    width: 100%;
  }

  .recommendation-info-desc {
    color: #371E0B;
    font-weight: bold;
    font-size: 3.5vw;
  }

  .recommendation-info .recommendation-info-book {
    width: 40vw;
    margin: 6vw auto 0;
    font-size: 2.7vw;
  }

  .recommendation-info .btn {
    width: 65vw;
    margin: 3vw auto 8vw;
    padding: 6.5vw 0 6.7vw;
    font-size: 3.8vw;
    border-radius: 20vw;
  }

  .recommendation-info .btn::after {
    content: "";
    display: block;
    width: 2vw;
    height: 2.5vw;
    background-image: url(../img/arrow.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 5.4vw;
    right: 4.6vw;
  }

  .recommendation-list-group p {
    margin: 0 2vw 0 0;
    flex-shrink: 0;
  }

  .recommendation-list-group img {
    width: 24vw;
  }
}




footer {
  text-align: center;
  padding: 8vw 0 6vw 0;
  position: relative;
  width: 100%;
  background-image: url(../img/recommendation_bottom.svg);
  background-position: top left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #FFF;
}

.footer-copyright p {
  color: #371E0B;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 767.98px) {
  footer {
    padding: 8vw 0 8vw;
  }
}


.js-bookmark {
  display: inline-block;
}

.js-bookmark img {
  display: block;
  opacity: 0;
  transform-origin: top center;
}

.shop-ttl.js-bookmark img {
  transform:translateY(-20vw) translateX(10vw) rotate(-16deg);
}

.shop-ttl.js-bookmark.is-show img {
  animation: shop 2.8s ease-out forwards;
}

@keyframes shop {
  0% {
    opacity: 0;
    transform: translateY(-20vw) translateX(10vw) rotate(-16deg);
  }

  40% {
    transform: translateY(-8vw) translateX(-15vw) rotate(11deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

.price-ttl.js-bookmark img {
  transform: translateY(-20vw) translateX(18vw) rotate(-24deg)
  z-index: 5;
}

.price-ttl.js-bookmark.is-show img {
  animation: price 2.8s ease-out forwards;
}

@keyframes price {
  0% {
    opacity: 0;
    transform: translateY(-20vw) translateX(18vw) rotate(-24deg);
  }

  40% {
    transform: translateY(-10vw) translateX(-20vw) rotate(-2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

.search-ttl.js-bookmark img {
  transform:translateY(-20vw) translateX(30vw) rotate(-53deg);
}

.search-ttl.js-bookmark.is-show img {
  animation: search 2.8s ease-out forwards;
}

@keyframes search {
  0% {
    opacity: 0;
    transform: translateY(-20vw) translateX(30vw) rotate(-53deg);
  }

  40% {
    transform: translateY(-10vw) translateX(-10vw) rotate(-11deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

.recommendation-ttl.js-bookmark img {
  transform:translateY(-13vw) translateX(-18vw) rotate(29deg);
}

.recommendation-ttl.js-bookmark.is-show img {
  animation: recommendation 2.8s ease-out forwards;
}

@keyframes recommendation {
  0% {
    opacity: 0;
    transform: translateY(-13vw) translateX(-18vw) rotate(29deg);
  }

  40% {
    transform: translateY(-10vw) translateX(12vw) rotate(-7deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}