@charset "utf-8";

.first-view{
  height: calc(100vh - 110px);
  background-image: url(../images/main-bg.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;
  text-shadow: 1px 1px 10px white;
}

.first-view-text h1{
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 35px;
  font-weight: bold;
  line-height: 72px;
  padding-top: 20px;
  background: linear-gradient(transparent 60%,white 90%);
}

.first-view-text p{
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  margin-top: 20px;
  padding-left: 30px;
  line-height: 50px;
}

.link-button-area{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0px;
}

.link-button{
  background-color: darkgray;
  display: inline-block;
  min-width: 300px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: white;
}

.link-button:hover{
  background-color: darkseagreen;
}

/* レスポンシブデザイン */
@media (max-width:768px){
  .header-logo{
    padding-top: 80px;
  }
  .toggle-menu-button{
    margin-top: 80px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .first-view{
    height: calc(100vh - 50px);
    align-items: flex-start;
  }
  .first-view-text{
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .first-view-text h1{
    font-size: 20px;
    line-height: 30Px;
  }
  .first-view-text p{
    font-size: 14px;
    margin-top: 14px;
    line-height: 20px;
  }
}