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

.reportMain {
  height: 85vh;
}

.reportTitle {
  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;
  margin-bottom: 150px;
  content: '';
  background-color: rgb(187, 219, 164);
  width: 100%;
  height: 3px;
  bottom: -6px;
  left: 0;
}

.reportContents {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.reportContentY {
  margin-right: 100px;
  font-size: 18px;
  font-weight: bold;
}

.reportContentBox {
  width: 260px;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
}

.reportContent1, .reportContent2 {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
  .reportMain {
    height: 70vh;
  }

  .reportTitle {
    height: 80px;
    font-size: 24px;
  }

  .reportContentY {
    margin-right: 60px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .reportContentBox {
    width: 160px;
    font-size: 13px;
  }
}