/**
  Front Page CSS
  トップページ専用のスタイル
*/

.site-title {
  font-size: 6vw;
  color: var(--main-color);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  margin-top: 24px;
}

.lead-text {
  font-size: 4.5vw;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}

.lead-text+.lead-text {
  margin-top: 16px;
}

.lead-text.green {
  color: var(--main-color);
}

.lead-text.gold {
  color: #9e7b30;
  font-size: 4.7vw;
}

.lead-text strong {
  color: #9e7b30;
}

@media screen and (min-width: 414px) {
  .site-title {
    font-size: 24px;
  }

  .lead-text {
    font-size: 18px;
  }

  .lead-text.gold {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .site-title {
    font-size: 36px;
  }

  .lead-text {
    font-size: 20px;
  }

  .lead-text.gold {
    font-size: 22px;
  }
}
