@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

::selection {
  background: #89c7a792;
  color: #e3e3e3;
}

.r-title {
  position: fixed;
  right: 0;
  inset: 3% 2% auto auto;
  z-index: 0;
  width: 23%;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--hero-gap, 0px);
  color: #e3e3e3;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Times New Roman", Times,
    Georgia, serif;
  line-height: 1;
  border-left: 1px solid currentcolor;
}

.r-title p {
  font-size: 1.4vw;
  line-height: 1.2;
  max-width: 60ch;
  margin: 0em;
  text-align: left;
  width: var(--h1-col-w);
  padding: 1% 2% 1% 2%;
  display: block;
}

.reveal-line .line-slot {
  display: block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
  will-change: transform;
}
.reveal-line .line-inner {
  display: block;
  transform: translateY(120%);
  transition: transform 2s cubic-bezier(0.22, 0.51, 0.26, 1.01);
  transition-delay: var(--_line-delay, 0s);
}
.reveal-line.is-in .line-inner {
  transform: translateY(0);
}

.hero-title > :is(.mini-title, p).reveal-line {
  --para-hold: 0.25s;
  --line-stagger: var(--line-stagger);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-letters > .reveal-slot > .reveal-char {
    transition: none !important;
    transform: none !important;
  }
}

@keyframes lineIn {
  from {
    opacity: 0;
    transform: translateY(1em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
