@charset "utf-8";

.first-view {
  min-height: calc(100vh - 110px);
  min-height: calc(100svh - 110px);
  background-image: url(../images/index/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px 0 40px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 1px 1px 10px #4b2c14;
}

@media (max-width: 800px) {
  .first-view {
    min-height: calc(100svh - 50px);
    background-image: url(../images/index/bg-main-sp.jpg);
    align-items: flex-start;
    padding-top: 40px;
  }

  .first-view-text {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
  }
}
