*{
  font-family: 'Noto Sans JP', sans-serif;
}

.staffTitle {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 60px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  background-color: rgb(187, 219, 164);
  color: rgb(47, 47, 47);
  padding: 0.5em 1em calc(0.5em - 6px);
}

.titleLine {
  margin-top: 3px;
  content: '';
  background-color: rgb(187, 219, 164);
  width: 100%;
  height: 3px;
  bottom: -6px;
  left: 0;
}

.staffText {
  height: 40vh;
  font-size: 26px;
  font-weight: bold;
  color: red;
  margin-top: 200px;
  text-align: center;
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .staffTitle {
    height: 80px;
    font-size: 24px;
  }
  
  .staffText {
    height: 150px;
    font-size: 20px;
    margin-top: 130px;
  }
}