.reportTitle {
  font-size: var(--fz24);
  font-weight: 600;
  margin-bottom: 2rem;
}
.reportLayout {
  display: flex;
  gap: 4rem;
}

.reportDetail {
  flex: 1;
}
.reportForm {
  flex: 0.5;
}
.reportDetail .reportImage {
  overflow: hidden;
  display: flex;
}
.reportDetail .reportImage img {
  width: 100%;
  height: 100%;
}
.reportForm {
  background-color: #e5e0dc;
  padding: 4rem;
  box-sizing: border-box;
}

.reportForm input,
.reportForm textarea {
  width: 100%;
  padding: 0.8rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkboxWrap {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.btnArea {
  margin-top: 4rem;
}
.formDl .signred {
  color: #e92b4a;
  margin-left: 0.5rem;
}
.formDl dt {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.formDl textarea {
  min-height: 150px;
}
.reportList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.reportList li {
  width: calc(100% / 4 - 2rem);
}
.reportList li a {
  width: 100%;
  height: auto;
  display: flex;
}
.reportList li a img {
  width: 100%;
  height: 100%;
}
.reportListArea h2 {
  border-bottom: 1px solid #2c2c2c;
  font-size: var(--fz24);
  font-weight: 600;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .reportLayout {
    flex-direction: column;
  }
  .reportList li {
    width: calc(100% / 2 - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .reportForm {
    padding: 2rem;
  }
}
