@charset "utf-8";

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/sky/first-view.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.first-view-text {
width: 100%;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
/* padding-left: 0;
padding-bottom: 80px; */
color: #fff;
font-weight: bold;
text-shadow: 1px 1px 10px #ffc1e4;
}

.first-view-text h1 {
  font-family: "Train One", system-ui;
  font-size: 75px;
  line-height: 120px;
}

.lead {
  max-width: 1200px;
  margin: 60px auto;
}

.lead p {
  line-height: 2;
  text-align: center;
  margin-top: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background-color: #ffcce5;
  display: inline-block;
  min-width: 150px;
  line-height: 48px;
  border-radius: 24px;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 16px;
}

.link-button:hover {
  background-color: #faaed3;
}


/* releaseスクロール ここから*/
.scroll {
background-color: #e2ebee;
padding-top: 45px;
padding-bottom: 55px;
}

.release h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}

.release h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background-color: #ffadad;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
/* スライド3枚のグループ */
.slider {
  animation: scroll-left 20s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
  padding-top: 40px;
}
/* スライド */
.slide {
  width: calc(100vw / 5); /* 5はスライドの枚数 */
  margin-right: 15px;
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;

}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slide-hover {
  transition: all 0.2s;
}
.slide-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}


/* ここからmedia */
@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 50px);
    /* background-image: ; */
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }
  
}