/* ================
◆z-index
・sadamari：999
・hamburger-menu：999
・cover-menu：99

.abso-information：98
================*/

/* ==========左上のSadaMarina========== */
.sadamari{
  font-size: 200%;
}

/* ========== FV ========== */
.fv{
  width: 100vw;
  height: 100vh;
  background-image: url(../img/fv.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: fadeIn 2s ease-in-out;
}


/* abso-information */
.fv .abso-information{
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  z-index: 98;
}
.fv .abso-information .information{
  font-size: 120%;
}

.fv .abso-information .info-content{
  font-size: 120%;
  margin-top: 2rem;
}

.fv .abso-information .show-more{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 1rem
}

/* FVのabso-sns */
.fv .abso-sns {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.fv .abso-sns ul {
  display: flex;
  gap: 1rem;
}

.fv .abso-sns ul li {
  width: 40px;
  overflow: hidden;
  border-radius: 10px;
}


@media (max-width: 768px){
  /* FV */
  .fv {
      background-image: url(../img/fv-sp.JPG);
  }
      
  /* abso-information */
  .fv .abso-information{
      margin-bottom: 1.5rem;
  }

  .fv .abso-information .info-content{
    margin-top: 1.5rem;
  }

  /* abso-sns */
  .fv .abso-sns{
      display: none;
  }
  
}