@charset "utf-8";

.first-view {
  display: flex;
  align-items: center;
  height: calc(100vh - 120px);
  background-image: url(../images/main-3.jpg); /*画像ファイル名の"."が抜けていた。*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.first-view-text {
  width: 100px;
  max-width: 1200px;
  margin-left: 20px;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
  color: beige;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h2 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 40px;
  line-height: 72px;
}

 /* index.html から移動 */
.logo{
  margin: 10px;
  text-align: center;
  margin-right: 155px;
}

.lead1 {
  max-width: 1200px;
  margin: 0;
  text-align: center;
  font-size: 20px;
}

.lead1 p {
  line-height: 2.5;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 80px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: italic;
  font-weight: bold;
}

.lead2 {
  max-width: 1200px;
  margin: 0;
  text-align: center;
  font-size: 20px;
}

.lead2 p {
  line-height: 2.5;
  text-align: center;
  margin-top: 35px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: italic;
  font-weight: bold;
}

.lead3 {
  max-width: 1200px;
  margin: 0;
  text-align: center;
  font-size: 20px;
}

.lead3 p {
  line-height: 2.5;
  text-align: center;
  margin-top: 80px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: italic;
  font-weight: bold;
}

.lead1, .lead2, .lead3, .logo { /*中央からズレていたので左右中央揃え*/
  text-align: center; /*文字を左右中央揃え*/
  margin-left: auto;  /*ブロック要素を左右中央揃え*/
  margin-right: auto; /*ブロック要素を左右中央揃え*/
}

@media (max-width: 1000px) {
  .first-view {
    display: flex;
    align-items: center;
    width: 100%;
    height: 600px;
    background-image: url(../images/main-3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }

  .first-view-text {
    width: 100px;
    max-width: 1200px;
    margin-left: 20px;
    margin-right: auto;
    padding-left: 30px;
    padding-bottom: 40px;
    color: beige;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
  }

  .first-view-text h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 45px;
    line-height: 72px;
  }

  /* index.html から移動 */
  .logo{
    margin: 10px;
    text-align: center;
    margin-right: 155px;
  }

  .lead1 {
    max-width: 1200px;
    margin: 0;
    text-align: center;
    font-size: 20px;
  }

  .lead1 p {
    line-height: 2.5;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 80px;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: normal;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: italic;
    font-weight: bold;
  }

  .lead2 {
    max-width: 1200px;
    margin: 0;
    text-align: center;
    font-size: 20px;
  }

  .lead2 p {
    line-height: 2.5;
    text-align: center;
    margin-top: 35px;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: normal;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: italic;
    font-weight: bold;
  }

  .lead3 {
    max-width: 1200px;
    margin: 0;
    text-align: center;
    font-size: 20px;
  }

  .lead3 p {
    line-height: 2.5;
    text-align: center;
    margin-top: 80px;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: normal;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: italic;
    font-weight: bold;
  }
  
  .lead1, .lead2, .lead3, .logo { /*中央からズレていたので左右中央揃え*/
    text-align: center; /*文字を左右中央揃え*/
    margin-left: auto;  /*ブロック要素を左右中央揃え*/
    margin-right: auto; /*ブロック要素を左右中央揃え*/
    font-size: 20px;
  }
}