@charset "utf-8";

.first-view {
  /*height: calc(100vh - 110px);*/
  height: calc(100vh - 250px);
  /*background-image: url(../images/index/bg-main.PNG);*/
  /*background-image: url(../images/index/bg-main-jba.jpg);*/
  /*background-image: url(../images/index/bg_cabaret-club.png);*/ 

  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: 40px;
  padding-bottom: 80px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 56px;
  line-height: 72px;
}

.first-view-text p {
  font-size: 18px;
  margin-top: 20px;
}

.lead {
  max-width: 1200px;
  margin: 60px auto;
}

.lead p {
  line-height: 2;
  text-align: center;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background-color: #f4dd64;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 14px;
}

.link-button:hover {
  background-color: #d8b500;
}

.new_videos {
  background-color: #000000;
  color: #ffffff;
  padding-top: 45px;
  padding-bottom: 55px;
}

.new_videos h2 {
  font-size: 22px;
  padding-left: 65px;
  font-weight: bold;

}

.new_documents {
  background-color: #000000;
  color: #ffffff;
  padding-top: 45px;
  padding-bottom: 55px;
}

.new_documents h2 {
  font-size: 22px;
  padding-left: 65px;
  font-weight: bold;

}


.item-list {
  background-color: #000000;
  font-family: 'Noto Sans JP',sans-serif;
  color: #ffffff;
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: scroll;
}

.item-list li {
  flex-shrink: 0;
  width: 260px;
  margin-left: 75px;
}

.item-list li:first-child {
  margin-left: 0;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list .price {
  font-weight: bold;
  margin-top: 15px;
}


.contents-list {
  margin-top: 25px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 400px);
  column-gap: 50px;
  row-gap: 40px;
}


.contents-list h2:hover {
  transform: scale(1.05);
}

.contents-list h2 {
  margin-top: 20px;
}

.contents-list p {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  text-align: left;
}

.social-icons {
  /*display: flex;
  flex-wrap:wrap;
  margin: auto;
  width: 400px;*/  
  margin-top: 25px;
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 400px);
  column-gap: 50px;
  row-gap: 40px;
}


@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 200px);
    /*background-image: url(../images/index/bg-main-sp.PNG);*/
    /*background-image: url(../images/index/bg-main-jba.jpg);*/
    /*background-image: url(../images/index/bg_cabaret-club.png);*/ 
    align-items: flex-start;
  }

  .first-view-text {
    padding-top: 60px;
    padding-left: 20px;
  }

  .first-view-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead p {
    text-align: left;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }


  .new_videos h2 {
    font-size: 22px;
    padding-left: 20px;
    font-weight: bold;
  
  }

  .new_documents h2 {
    font-size: 22px;
    padding-left: 20px;
    font-weight: bold;
  
  }

  .contents-list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 35px;
  }

}