@charset "utf-8";

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

.first-view-text {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
}

.first-view-text h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  font-weight: 100;
  line-height: 42px;
}

.first-view-text p {
  font-size: 18px;
  margin-top: 20px;
}

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

.lead p {
  line-height: 2;
  text-align: center;
}

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

.link-button {
  background-color: #002626;
  display: inline-block;
  color: #fff;
  min-width: 80px;
  line-height: 80px;
  border-radius: 40px;
  font-size: 14px;
}

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



@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 50px);
    background-image: url(../images/index/bg-main.jpg);
  }

  .first-view-text {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
  }

  .first-view-text h1 {
    font-size: 24px;
    line-height: 24px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 16px;
  }

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

  .lead p {
    text-align: center;
  }


}