/* USEN-ALMEX 60th — base */
:root {
  --font-body: "Noto Sans JP", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-note: "Zen Kurenaido", sans-serif;
  --note-1: #CBEAFC;
  --note-2: #BAE6F1;
  --note-3: #8CD3E7;
  --note-4: #89C5D8;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #000;
  background: #fff;
}

main{
  overflow: hidden;
}

section{
  overflow: hidden;
}

ul li {
  list-style: none;
}

footer{
  position: relative;
  z-index: 10;
}

p{
  margin: 0;
}

.pc-only {
  display: block;
}
@media screen and (max-width:768px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width:768px) {
  .sp-only {
    display: block;
  }
}

/* Loading */
.loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  transition: opacity 400ms ease;
}

.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loading.is-removed {
  display: none;
}

.loading__logo {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 0 30px;
}
@media screen and (max-width:768px) {
  .loading__logo {
    width: 128px;
    height: 128px;
    margin: 0 0 22px;
  }
}

.loading__copy {
  margin: 0 0 42px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000;
  text-align: center;
}
@media screen and (max-width:768px) {
  .loading__copy {
    margin: 0 0 30px;
    font-size: 18px;
  }
}

.loading__bar {
  position: relative;
  width: 195px;
  height: 2px;
  background: #ECECEC;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .loading__bar {
    width: 125px;
    height: 1px;
    margin-bottom: 15vh;
  }
}

.loading__bar-fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  transition: width 2700ms cubic-bezier(0.45, 0, 0.15, 1);
}

.loading.is-loaded .loading__bar-fill {
  width: 100%;
}

/* FV */
.fv {
  z-index: 2;
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at center, #ffffff 0%, #F6F6F6 100%);
}

.fv-logo {
  position: absolute;
  top: 20vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 352px;
}
@media screen and (max-width:768px) {
  .fv-logo {
    top: 18%;
    width: 113px;
  }
}
@media screen and (max-width: 320px) {
  .fv-logo {
    width: 13vh;
    top: 10%;
  }
}

.fv-categories{
  position: absolute;
  z-index: 10;
  left: 0;
  background-color: #FFF;
  bottom: 15vh;
  transform: translateY(50%);
  width: 280px;
  height: 82px;
  padding: 20px 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-right: 4px solid #00BFD3;
}
@media screen and (max-width:768px) {
  .fv-categories{
    display: none;
  }
}

.fv-categories__title{
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
}

.fv-categories__title span{
  font-size: 10px;
  opacity: 0.4;
  display: block;
}

.fv__note{
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width:980px) {
  .fv__note{
    bottom: 3vh;
    white-space: nowrap;
  }
}
@media screen and (max-width:768px) {
  .fv__note{
    bottom: inherit;
    top: 92%;
  }
}
.fv__note.is-active{
  opacity: 1;
}

.js-fv-categories{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.js-fv-categories li{
  display: flex;
  align-items: center;
  gap: 6px;
}

.js-fv-categories li p{
  margin: 0;
}

.fv-category-color{
  width: 10px;
  height: 10px;
}

.fv-category-color--note-1{
  background-color: var(--note-1);
}

.fv-category-color--note-2{
  background-color: var(--note-2);
}

.fv-category-color--note-3{
  background-color: var(--note-3);
}

.fv-category-color--note-4{
  background-color: var(--note-4);
}

#art-canvas {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}

@media screen and (max-width:768px) {
  #art-canvas {
    z-index: 6;
  }
}

#art-canvas.fv--sp-static {
  perspective: none;
}

.fv-sp-visual {
  display: block;
  max-width: 420px;
  width: 100%;
  min-width: 370px;
  margin: 0 auto;
  padding: 0 20px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}
@media screen and (max-width: 320px) {
  .fv-sp-visual {
    top: 31%;
  }
}

.sticky-note {
  text-align: justify;
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 11px;
  transform: translate3d(var(--note-x, -9999px), var(--note-y, -9999px), 0) translate(-50%, -50%) rotateX(var(--note-rx, 0deg)) rotateY(var(--note-ry, 0deg)) rotateZ(var(--note-rz, 0deg));
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform-style: preserve-3d;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.04);
}

.sticky-note.glow {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.note-message {
  opacity: 0;
  font-family: var(--font-note);
  font-size: 0.1px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.25;
  padding: 1px;
  pointer-events: none;
  width: 90%;
  display: block;
  white-space: pre-line;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-note.active {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1 !important;
  overflow: hidden;
  z-index: 0;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-note.text-mosaic {
  pointer-events: none;
  cursor: default;
  opacity: 1 !important;
}

@media (hover: hover) {
  .sticky-note.active:hover,
  .sticky-note.active.is-hovered,
  .sticky-note.is-hovered {
    will-change: transform;
    z-index: 2000;
    transform: translate3d(var(--note-x, 0), var(--note-y, 0), 0) translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
    transform-origin: center center;
    width: 220px;
    height: 220px;
    border-radius: 5px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.45s cubic-bezier(0.16, 1, 0.3, 1), height 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.45s ease, box-shadow 0.3s ease;
    transition-delay: 0s !important;
  }

  .sticky-note.active:hover .note-message,
  .sticky-note.active.is-hovered .note-message,
  .sticky-note.is-hovered .note-message {
    opacity: 1;
    font-weight: 400;
    font-synthesis: none;
    transition: none;
  }

  .sticky-note.active:hover .note-message--tier-1,
  .sticky-note.active.is-hovered .note-message--tier-1,
  .sticky-note.is-hovered .note-message--tier-1 {
    font-size: 34px;
  }

  .sticky-note.active:hover .note-message--tier-2,
  .sticky-note.active.is-hovered .note-message--tier-2,
  .sticky-note.is-hovered .note-message--tier-2 {
    font-size: 25px;
  }

  .sticky-note.active:hover .note-message--tier-3,
  .sticky-note.active.is-hovered .note-message--tier-3,
  .sticky-note.is-hovered .note-message--tier-3 {
    font-size: 22px;
  }

  .sticky-note.active:hover .note-message--tier-4,
  .sticky-note.active.is-hovered .note-message--tier-4,
  .sticky-note.is-hovered .note-message--tier-4 {
    font-size: 18px;
  }

  .sticky-note.active:hover .note-message--tier-5,
  .sticky-note.active.is-hovered .note-message--tier-5,
  .sticky-note.is-hovered .note-message--tier-5 {
    font-size: 14px;
  }
}

.sticky-note.decoration {
  pointer-events: none;
  z-index: 1;
  opacity: 0.6 !important;
}

@media screen and (max-width:768px) {
  .sticky-note {
    width: 5.5px;
    height: 5.5px;
    border-radius: 0.5px;
  }

  .sticky-note.active {
    pointer-events: none;
    cursor: default;
  }

  .sticky-note.active:hover,
  .sticky-note.text-mosaic:hover {
    width: 5.5px;
    height: 5.5px;
    border-radius: 0.5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.06);
    z-index: 100;
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.3s ease;
  }

  .sticky-note.active:hover .note-message,
  .sticky-note.text-mosaic:hover .note-message {
    opacity: 0;
    font-size: 0.1px;
  }

}

/* ハンバーガー */
.ham {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 100;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  background: #00BFD3;
  display: none;
}

@media screen and (max-width:768px) {
  .ham {
    display: block;
  }
}

.ham span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: #FFFFFF;
  border-radius: 1px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.ham span:nth-child(1) {
  top: 35%;
}

.ham span:nth-child(2) {
  top: 55%;
}

.ham.open span:nth-child(1) {
  top: 45%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.ham.open span:nth-child(2) {
  top: 45%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.ham__nav.open {
  color: #FFFFFF;
}

@media screen and (max-width:768px) {
  .ham__nav{
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .ham__nav.open {
    right: 0;
    bottom: 0;
    overflow-y: auto;
  }
}

/* Header */
.header {
  background-color: #fff;
  margin: 0 auto;
  padding: 10px 30px 10px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  gap: 20px;
}

@media screen and (max-width:768px) {
  .header {
    padding: 0
  }
}

.header__logo-img {
  height: 50px;
}
@media screen and (max-width:768px) {
  .header__logo-img {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .header__nav {
    position: fixed;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #FFF;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.header__nav--ul {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width:768px) {
  .header__nav--ul {
    padding: 0;
    max-width: 170px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: center;
    gap: 40px;
    margin-top: 70px;
    margin-bottom: 20px;
  }
}

.header__nav--ul li a{
  color: #000;
}
@media screen and (max-width:768px) {
  .header__nav--ul li a {
    display: block;
    font-size: 28px;
    line-height: 1.5;
    color: #00BFD3;
    text-align: left;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    border-bottom: 1px solid #00BFD3;
    min-width: 160px;
    width: 100%;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.header__60th-logo{
  display: none;
}
@media screen and (max-width:768px) {
  .header__60th-logo {
    display: block;
    max-width: 120px;
  }
}

/* FV message (SP) */
.fv-message {
  display: none;
}

@media screen and (max-width:768px) {
  .fv-message {
    display: block;
    position: absolute;
    top: 71%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 20;
    visibility: hidden;
    pointer-events: none;
  }

  .fv-message.is-ready {
    visibility: visible;
    pointer-events: auto;
  }

  .fv-message__swiper {
    overflow: visible;
    height: auto;
  }

  .fv-message__swiper .swiper-wrapper {
    align-items: center;
    padding-left: 0;
  }

  .fv-message__slide.swiper-slide {
    width: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transform: scale(0.85);
    transform-origin: center center;
    opacity: 1;
    transition: transform 0.5s ease;
  }

  .fv-message__card {
    width: 240px;
    height: 240px;
    max-width: 240px;
    overflow: hidden;
    flex: 0 0 auto;
    align-self: center;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 14px;
  }

  .fv-message__slide.swiper-slide-active {
    transform: scale(1);
    z-index: 1;
  }

  .fv-message__text {
    text-align: justify;
    margin: 0;
    width: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    font-family: var(--font-note);
    font-weight: 400;
    font-synthesis: none;
    line-height: 1.4;
    white-space: pre-line;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .fv-message__text--tier-1 {
    font-size: 30px;
  }

  .fv-message__text--tier-2 {
    font-size: 24px;
  }

  .fv-message__text--tier-3 {
    font-size: 21px;
  }

  .fv-message__text--tier-4 {
    font-size: 16px;
  }

  .fv-message__text--tier-5 {
    font-size: 14px;
  }
}

.scroll-wrap {
  position: absolute;
  bottom: 60px;
  right: 30px;
}
@media screen and (max-width:768px) {
  .scroll-wrap {
    display: none;
  }
}

.scroll-wrap p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0 0 4px;
  letter-spacing: 0.08em;
}

.scroll {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  position: relative;
}

.scroll span {
  width: 0.7em;
  height: 0.7em;
  position: absolute;
  top: 25%;
  left: 36%;
  transform: translateY(0) rotate(-45deg);
  border-left: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
  z-index: 2;
  animation: popping-arrow 2s infinite ease-out;
}

@keyframes popping-arrow {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  30% {
    transform: translateY(.5em) rotate(-45deg);
  }
  60% {
    transform: translateY(0) rotate(-45deg);
  }
}


/* Products */
.products {
  position: relative;
  z-index: 2;
  padding: 0;
}


.products__swiper {
  display: block;
  width: 100%;
  padding: 45px 0;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .products__swiper {
    padding: 24px 0;
  }
}

.products__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
  gap: 20px;
}

.products__slide {
  box-sizing: border-box;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .products__slide {
    width: 148px;
  }
}

.products__img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width:768px) {
  .products__img {
    max-height: 140px;
  }
}

/* Section title */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
}
@media screen and (max-width:768px) {
  .section-title {
    margin: 0 0 30px;
  }
}

.section-title__en {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #00bfd3;
}

.section-title__rule {
  width: 30px;
  height: 2px;
  background: #00bfd3;
}

/* Message */
.message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: transparent;
  padding: 70px 40px 120px;
}

.message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #fff;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

@media screen and (max-width:768px) {
  .message {
    max-width: 720px;
    text-align: left;
    padding: 20px 0 60px;
    margin: 40px 27.5px 0;
  }
}

.message__lead {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .message__lead {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
  }
}

.message__body-wrap {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width:768px) {
  .message__body-wrap {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.message__body {
  margin: 0 0 1em;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .message__body {
    font-size: 16px;
    line-height: 1.6;
  }
}

.message__sign {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width:768px) {
  .message__sign {
    gap: 8px;
  }
}

.message__role {
  margin: 0;
  font-size: 18px;
}
@media screen and (max-width:768px) {
  .message__role {
    font-size: 16px;
  }
}

.message__sign-img {
  max-width: 200px;
  height: auto;
}
@media screen and (max-width:768px) {
  .message__sign-img {
    max-width: 118px;
  }
}

/* Movie */
.movie {
  background: #f9f9f9;
}

.movie__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 120px 40px;
}

.movie__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #f9f9f9;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 20%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 20%,
    #000 90%,
    transparent 100%
  );
}

@media screen and (max-width:768px) {
  .movie__inner {
    padding: 60px 0;
    margin: 0 27.5px;
  }
}

.movie__embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #757575;
}
@media screen and (max-width:768px) {
  .movie__embed {
    border-radius: 8px;
  }
}

.movie__iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* History */
.history {
  --history-reveal-duration: 0.35s;
  --history-reveal-delay: 0s;
  --history-reveal-ease: cubic-bezier(0.76, 0, 0.24, 1);
  --history-reveal-offset: 50px;
  --history-reveal-transition-in: opacity var(--history-reveal-duration) var(--history-reveal-ease) var(--history-reveal-delay), transform var(--history-reveal-duration) var(--history-reveal-ease) var(--history-reveal-delay), visibility 0s linear 0s;
  --history-reveal-transition-out: opacity var(--history-reveal-duration) var(--history-reveal-ease) var(--history-reveal-delay), transform var(--history-reveal-duration) var(--history-reveal-ease) var(--history-reveal-delay), visibility 0s linear var(--history-reveal-duration);
  background-color: #e0f7fa;
  padding: 0 40px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .history {
    padding: 0 20px;
  }
}

.history__bottom{
  height: 120px;
  background-color: #e0f7fa;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

@media screen and (max-width:768px) {
  .history__bottom {
    height: 60px;
  }
}

.history__intro{
  padding: 120px 0 40px;
  max-width: 800px;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
  z-index: 3;
}

@media screen and (max-width:768px) {
  .history__intro {
    padding: 60px 0;
  }
}

.history__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e0f7fa;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 20%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 20%,
    #000 90%,
    transparent 100%
  );
}

.history__intro-texts {
  text-align: center;
}

.history__eyebrow {
  margin: 0 0 30px;
  font-weight: 800;
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: 0.02em;
}

@media screen and (max-width:768px) {
  .history__eyebrow {
    margin-bottom: 24px;
  }
}

.history__eyebrow span {
  margin-top: 6px;
  display: block;
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width:768px) {
  .history__eyebrow span {
    font-size: 20px;
  }
}

.history__copy {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .history__copy {
    font-size: 16px;
  }
}

.history__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.history__sr-list {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.history__scroll-wrap {
  position: relative;
  z-index: 3;
}
@media screen and (max-width:768px) {
  .history__scroll-wrap {
    padding-bottom: 40px;
    background-color: #e0f7fa;
  }
}

.history__panel {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 48px 130px;
  background: #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .history__panel {
    background: #e0f7fa;
    padding: 0;
  }
}

.history__panel-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 8px;
}

.history__rail {
  position: absolute;
  left: 50%;
  top: calc(var(--history-rail-top, 24px) - 3px);
  bottom: 32px;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 30px;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width:768px) {
  .history__rail {
    bottom: 20px;
    border-radius: 16px;
  }
}

.history__rail-bg {
  position: absolute;
  inset: 0;
  background: #ececec;
}

.history__rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00bfd3;
  transform: scaleY(0);
  transform-origin: center top;
  will-change: transform;
}

.history__rail-dots {
  position: absolute;
  left: 50%;
  bottom: -25px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  pointer-events: none;
}

.history__rail-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ECECEC;
}
.history__rail-dot.is-rail-reached {
  background: #00bfd3;
}
@media screen and (max-width:768px) {
  .history__rail-dots {
    gap: 5px;
  }
  .history__rail-dot:first-of-type {
    display: none;
  }
}

.history__timeline {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.history__intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: 0 auto 56px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .history__intro-card {
    margin: 0 auto 40px;
    max-width: 360px;
    width: 100%;
    padding: 24px 25px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
  }
}

.history__intro-card .history__node {
  align-self: center;
}

.history__step--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8px minmax(0, 1fr);
  column-gap: 36px;
  align-items: start;
  margin-bottom: 52px;
}

.history__rail-lane {
  grid-column: 2;
  width: 8px;
  min-height: 1px;
  justify-self: center;
  pointer-events: none;
}

.history__step-col--main {
  min-width: 0;
  position: relative;
}
@media screen and (max-width:768px) {
  .history__step-col--main {
    background: #fff;
    border-radius: 10px;
    padding: 24px 25px;
    box-sizing: border-box;
  }
}

.history__step-col--side {
  min-width: 0;
}

.history__step-col--stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history__cluster {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.history__cluster .history__year:first-of-type {
  margin-bottom: 30px;
  position: relative;
}

.history__cluster .history__year:first-of-type::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 20px;
  background: #6464c3;
}
@media screen and (max-width:768px) {
  .history__cluster .history__year:first-of-type::before {
    width: 4px;
    height: 8px;
    bottom: -10%;
  }
}

.history__cluster .history__year ~ .history__text {
  margin-top: 10px;
}

.history__img {
  position: absolute;
}

.history__img.--1983 {
  max-width: 150px;
  min-width: 100px;
  width: 10.42vw;
  bottom: 0;
  left: clamp(-190px, -13.19vw , 0px);
}
@media screen and (max-width:920px) {
  .history__img.--1983{
    bottom: 58px;
    left: -50px;
  }
}
@media screen and (max-width:920px) {
  .history__img.--1983{
    left: 5px;
  }
}

.history__img.--1985 {
  max-width: 136px;
  min-width: 108px;
  width: 9.44vw;
  top: clamp(-50px, -2.47vw, -10px);
  right: clamp(0px, 7.76vw, 83px);
}
@media screen and (max-width:920px) {
  .history__img.--1985 {
    right: 14px;
  }
}
@media screen and (max-width:768px) {
  .history__img.--1985 {
    top: 10px;
  }
}

.history__img.--1990 {
  max-width: 225px;
  width: 18.33vw;
  top: clamp(10px, 3vw, 25px);
  left: clamp(-180px, -8.67vw, -60px);
}
@media screen and (max-width:900px) {
  .history__img.--1990 {
    left: clamp(-180px, -2.67vw, -20px);
  }
}
@media screen and (max-width:768px) {
  .history__img.--1990 {
    min-width: 169px;
    top: 40px;
    left: 24px;
  }
}

.history__img.--1995 {
  max-width: 132px;
  min-width: 72px;
  width: 9.17vw;
  top: 0;
  right: clamp(-150px, -10vw, -20px);
}
@media screen and (max-width:920px) {
  .history__img.--1995 {
    top: 50px;
    right: -50px;
  }
}
@media screen and (max-width:768px) {
  .history__img.--1995 {
    min-width: 122px;
    top: 100px;
    right: 45%;
    transform: translateX(50%);
  }
}
.history__img.--2006 {
  max-width: 181px;
  min-width: 105px;
  width: 15.88vw;
  top: clamp(5px, 0.46vw, 20px);
  right: clamp(-140px, -4.67vw, -20px);
}
@media screen and (max-width:768px) {
  .history__img.--2006 {
    top: 20px;
    right: 24px;
  }
}

.history__img.--2017 {
  max-width: 252px;
  min-width: 131px;
  width: 22.11vw;
  top: clamp(-30px, -1.85vw, -20px);
  left: clamp(-200px, -11.67vw, -60px);
}
@media screen and (max-width:900px) {
  .history__img.--2017 {
    left: clamp(-200px, -8.67vw, -20px);
  }
}
@media screen and (max-width:768px) {
  .history__img.--2017 {
    top: 20px;
    left: 24px;
  }
}

.history__img.--2018 {
  max-width: 213px;
  min-width: 145px;
  width: 14.79vw;
  top: clamp(0px, 4.67vw, 20px);
  left: clamp(50px, 18vw, 190px);
}
@media screen and (max-width:768px) {
  .history__img.--2018 {
    top: 40px;
    left: 170px;
  }
}

.history__img.--2024 {
  max-width: 294px;
  min-width: 158px;
  width: 18.79vw;
  top: clamp(18px, 3.53vw, 20px);
  left: clamp(-210px, -12.67vw, -60px);
}
@media screen and (max-width:900px) {
  .history__img.--2024 {
    left: clamp(-210px, -8.67vw, -20px);
  }
}
@media screen and (max-width:768px) {
  .history__img.--2024 {
    top: 40px;
    left: 24px;
  }
}

.history__img.--2025 {
  max-width: 97px;
  min-width: 73px;
  width: 6.74vw;
  top: clamp(-20px, -1.3vw, -10px);
  left: clamp(30px, 17.68vw, 160px);
}
@media screen and (max-width:768px) {
  .history__img.--2025 {
    top: 20px;
    left: inherit;
    right: 24px;
  }
}

.history__step--submilestones .history__step-col--side {
  padding-left: 0;
  margin-left: -28px;
}

.history__step--submilestones .history__step-col--stack {
  gap: 24px;
}

.history__step--submilestones .history__step-col--stack > .history__subrow:first-child {
  margin-top: 24px;
}

.history__subrow {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 0;
  align-items: start;
}

.history__subrow:nth-of-type(2) {
  margin-bottom: 12px;
}
@media screen and (max-width:768px) {
  .history__subrow:nth-of-type(2) {
    margin-bottom: 5px;
  }
}

.history__subrow .history__node {
  justify-self: center;
  align-self: start;
  margin-top: 0.42em;
}

.history__step--submilestones .history__subrow .history__node--outline {
  position: relative;
  z-index: 3;
  left: -124%;
}
@media screen and (max-width:768px) {
  .history__step--submilestones .history__subrow .history__node--outline {
    display: none !important;
  }
}

.history__step--submilestones .history__subrow-fade {
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(var(--history-reveal-offset));
  transition: var(--history-reveal-transition-out);
}

.history__step--submilestones .history__subrow-fade[data-history-reveal].is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: var(--history-reveal-transition-in);
}

.history__subrow-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-width: 0;
  text-align: left;
}

.history__subrow-body:first-of-type {
  margin-top: -4px;
}

.history__step--submilestones .history__subrow:first-child .history__subyear {
  margin-top: -4px;
}

.history__subrow-body .history__subyear {
  flex: 0 0 auto;
  width: 50px;
}

.history__subrow-body .history__text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
@media screen and (max-width:768px) {
  .history__subrow-body .history__text {
    font-size: 12px;
  }
}

.history__text-link {
  text-decoration: underline;
  transition: color 0.3s ease;
}
.history__text-link:hover {
  color: #000;
  opacity: 0.75;
}

@media screen and (max-width:768px) {
  .history__step--submilestones .history__step-col--side {
    padding-left: 0;
    margin-left: 0;
  }

  .history__step--submilestones .history__step-col--stack > .history__subrow:first-child {
    margin-top: 0;
  }

  .history__step--submilestones .history__subrow {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    justify-items: stretch;
    align-items: center;
    row-gap: 0;
  }

  .history__subrow .history__node {
    margin-top: 0;
  }

  .history__step--submilestones .history__subrow-body {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .history__subrow-body .history__subyear {
    width: auto;
    margin-top: 0;
    font-size: 18px;
  }

  .history__subrow-body .history__text {
    text-align: left;
  }

  .history__cluster .history__text {
    align-self: stretch;
    text-align: left;
  }
}

.history__step--from-left .history__step-col--main {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.history__step--from-left > .history__node,
.history__step--from-right > .history__node {
  grid-column: 2;
  justify-self: center;
}

.history__step--from-left .history__step-col--side {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.history__step--from-right .history__step-col--side {
  grid-column: 1;
  justify-self: end;
}

.history__step--from-right .history__step-col--main {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

@media screen and (max-width:768px) {
  .history__step--row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .history__step--from-left .history__step-col--main,
  .history__step--from-right .history__step-col--main {
    order: 1;
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  .history__step--from-left .history__step-col--main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
  }

  .history__step--from-left .history__step-col--main .history__year {
    text-align: right;
    width: 100%;
  }

  .history__step--from-right .history__step-col--main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .history__step--from-right .history__step-col--main .history__year {
    text-align: left;
    width: fit-content;
  }

  .history__step--from-right .history__step-col--main .history__text {
    text-align: left;
    width: 100%;
  }

  .history__cluster .history__year:first-of-type {
    margin-bottom: 8px;
  }

  .history__step--from-left > .history__node,
  .history__step--from-right > .history__node {
    order: 2;
    margin-top: 0;
  }

  .history__step--row > .history__node.history__node--lg {
    margin-top: 12px;
    align-self: center;
  }

  .history__step--from-left .history__step-col--side,
  .history__step--from-right .history__step-col--side {
    order: 3;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .history__step--from-left .history__step-col--side:empty,
  .history__step--from-right .history__step-col--side:empty {
    display: none;
  }

  .history__step--from-left .history__step-col--main {
    order: 1;
  }

  .history__step--from-left > .history__node {
    order: 2;
  }

  .history__step--from-left .history__step-col--side {
    order: 3;
  }

  .history__step--from-right .history__step-col--main {
    order: 1;
  }

  .history__step--from-right > .history__node {
    order: 2;
  }

  .history__step--from-right .history__step-col--side {
    order: 3;
  }

  .history__rail-lane {
    display: none;
  }

  .history__step--submilestones .history__step-col--side.history__step-col--stack {
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 24px 15px;
    box-sizing: border-box;
    text-align: left;
    width: 75%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(var(--history-reveal-offset));
    transition: var(--history-reveal-transition-out);
    min-width: 256px;
  }

  .history__step--submilestones .history__subrow-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateX(var(--history-reveal-offset));
    transition: var(--history-reveal-transition-out);
  }

  .history__step--submilestones .history__subrow-fade[data-history-reveal].is-visible {
    opacity: 0;
    visibility: hidden;
    transform: translateX(var(--history-reveal-offset));
  }

  .history__step--submilestones .history__step-col--main[data-history-reveal].is-visible ~ .history__step-col--side.history__step-col--stack {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: var(--history-reveal-transition-in);
    padding-bottom: 120px;
  }

  .history__step--submilestones .history__step-col--main[data-history-reveal].is-visible ~ .history__step-col--side.history__step-col--stack .history__subrow-fade {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: var(--history-reveal-transition-in);
  }

  .history__step--submilestones.history__step--from-left .history__step-col--side {
    order: 2;
  }
}

.history__node {
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  align-self: start;
  margin-top: 20px;
  z-index: 2;
}

@media screen and (max-width:768px) {
  .history__node {
    display: none;
  }

  .history__step--submilestones .history__node--sm {
    display: block;
  }
}

.history__step--row > .history__node.history__node--lg {
  margin-top: 30px;
}

.history__node--lg {
  width: 20px;
  height: 20px;
}

.history__node--sm {
  width: 16px;
  height: 16px;
}

.history__node--fill {
  background: #ececec;
  transition: background-color 0.4s ease;
}

.history__node--fill.is-rail-reached {
  background: #00bfd3;
}

.history__node--fill.history__node--fill-always {
  background: #00bfd3;
}

.history__node--outline {
  box-sizing: border-box;
}

.history__node--outline.history__node--sm {
  background: #ececec;
  border: 2px solid #dfdfdf;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.history__node--outline.history__node--sm.is-rail-reached {
  background: #fff;
  border-color: #00bfd3;
}
@media screen and (max-width:768px) {
  .history__node--outline.history__node--sm.is-rail-reached {
    display: none;
  }
}

.history__year {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .history__year {
    font-size: clamp(48px, 14vw, 72px);
  }
}

.history__year--accent {
  color: #00bfd3;
}

.history__year--teal {
  color: #14b99b;
}

.history__year--violet {
  color: #6464c3;
}

.history__year--coral {
  color: #ff7846;
}

.history__subyear {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ff7846;
}

.history__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width:768px) {
  .history__text {
    font-size: 14px;
    line-height: 1.4;
  }
}

.history__text--center {
  text-align: center;
}

.history__text--right {
  text-align: right;
}

.history__text--tight {
  font-size: 16px;
  line-height: 1.4;
}

.history__step[data-history-reveal] .history__step-col--main,
.history__step[data-history-reveal] .history__step-col--side:not(:empty) {
  opacity: 0;
  visibility: hidden;
  transition: var(--history-reveal-transition-out);
}

.history__step[data-history-reveal].is-visible .history__step-col--main,
.history__step[data-history-reveal].is-visible .history__step-col--side:not(:empty) {
  opacity: 1;
  visibility: visible;
  transition: var(--history-reveal-transition-in);
}

.history__step--from-left[data-history-reveal] .history__step-col--main {
  transform: translateX(calc(-1 * var(--history-reveal-offset)));
}

.history__step--from-left[data-history-reveal].is-visible .history__step-col--main {
  transform: translateX(0);
}

.history__step--from-left[data-history-reveal] .history__step-col--side:not(:empty) {
  transform: translateX(var(--history-reveal-offset));
}

.history__step--from-left[data-history-reveal].is-visible .history__step-col--side:not(:empty) {
  transform: translateX(0);
}

.history__step--from-right[data-history-reveal] .history__step-col--main {
  transform: translateX(var(--history-reveal-offset));
}

.history__step--from-right[data-history-reveal].is-visible .history__step-col--main {
  transform: translateX(0);
}

.history__step--from-right[data-history-reveal] .history__step-col--side:not(:empty) {
  transform: translateX(calc(-1 * var(--history-reveal-offset)));
}

.history__step--from-right[data-history-reveal].is-visible .history__step-col--side:not(:empty) {
  transform: translateX(0);
}

.history__step-col--main[data-history-reveal] {
  opacity: 0;
  visibility: hidden;
  transition: var(--history-reveal-transition-out);
}

.history__step-col--main[data-history-reveal].is-visible {
  opacity: 1;
  visibility: visible;
  transition: var(--history-reveal-transition-in);
}

.history__step--from-left .history__step-col--main[data-history-reveal] {
  transform: translateX(calc(-1 * var(--history-reveal-offset)));
}

.history__step--from-left .history__step-col--main[data-history-reveal].is-visible {
  transform: translateX(0);
}

/* Vision */
.vision {
  background: #f9f9f9;
  padding: 0 40px;
}
@media screen and (max-width:768px) {
  .vision {
    padding: 0 20px;
  }
}

.vision__intro {
  max-width: 800px;
  padding: 120px 0 40px;
  margin: 0 auto;
  background-color: transparent;
  text-align: center;
  position: relative;
  z-index: 3;
}

.vision__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #f9f9f9;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

@media screen and (max-width:768px) {
  .vision__intro {
    padding: 60px 0 40px;
    margin: 0 27.5px;
  }
}

.vision__lead {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 120px;
  position: relative;
  z-index: 3;
  background-color: #f9f9f9;
}
@media screen and (max-width:768px) {
  .vision__grid {
    grid-template-columns: 1fr;
    padding: 0 0 60px;
    background-color: transparent;
  }
}

.vision-card {
  position: relative;
  max-width: 330px;
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width:768px) {
  .vision-card {
    max-width: 350px;
    padding: 30px 40px;
    margin: 0 auto;
  }
}

.vision-card__deco {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 0 40px;
}

@media screen and (max-width:768px) {
  .vision-card__deco {
    width: 90px;
    height: 90px;
    margin: 0 0 30px;
  }
}

.vision-card__title {
  width: 100%;
  align-self: stretch;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #00bfd3;
}

.vision-card__text {
  width: 100%;
  align-self: stretch;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
}

@media screen and (max-width:768px) {
  .vision-card__text {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* 紙吹雪 */
.confetti {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

@media screen and (max-width:768px) {
  .confetti {
    z-index: 5;
  }
}

.confetti canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.mt-template.p-footer .p-footer-upper:after{
  width: 99.6vw;
}

/* FV UI reveal */
.header,
.fv-logo,
.fv-categories,
.scroll-wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, background-color 0.3s ease;
}

.header.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fv-logo.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fv-categories.is-active,
.scroll-wrap.is-active {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fv-sp-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fv-sp-fade-in-interactive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (max-width:768px) {
  .history__panel,
  .history__scroll-wrap,
  .history__bottom{
    background-color: transparent;
  }

  .history__panel::before,
  .vision__grid::before,
  .history__bottom::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #e0f7fa;
    pointer-events: none;
  }
  .vision__grid::before{
    background-color: #f9f9f9;
  }
  .message::before,
  .movie__inner::before,
  .history__intro::before,
  .vision__intro::before,
  .history__panel::before,
  .vision__grid::before,
  .history__bottom::before {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 40%,
      #000 60%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 40%,
      #000 60%,
      transparent 100%
    );
  }
}

@media screen and (max-width:768px) {
  .header {
    opacity: 1;
    pointer-events: auto;
    transition: background-color 0.3s ease;
  }

  .fv-logo,
  .fv-categories,
  .scroll-wrap {
    opacity: 1;
    pointer-events: none;
    transition: none;
  }

  .fv-sp-visual,
  .fv-message,
  .fv-logo {
    opacity: 0;
    animation: fv-sp-fade-in 0.3s ease forwards;
  }

  .fv-sp-visual {
    animation-delay: 3s;
  }

  .fv-message {
    visibility: hidden;
    pointer-events: none;
    animation-name: fv-sp-fade-in-interactive;
    animation-delay: 3.7s;
  }

  .fv-message.is-ready {
    visibility: visible;
    opacity: 0;
    pointer-events: none;
  }

  .fv-logo {
    animation-delay: 4.4s;
  }

  .fv__note {
    animation: fv-sp-fade-in 0.3s ease forwards;
    animation-delay: 4.4s;
  }
}