html {
  scroll-padding-top: 32px;
}
.statement {
  border: 5px solid #a3c9ab;
  border-radius: 3px;
  padding: 24px 12px 12px;
}
.statement-footnote {
  font-size: 0.9em;
  margin: 12px 0 120px;  
}
.plant {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1000px;
  height: auto;
  margin: 0 32px 32px;
  padding-top: 32px;
  column-gap: 32px;
  row-gap: 16px;
  border-top: 2px solid #808000;
}
.plant-keyvisual {
  flex: 5;
  margin: 0;
}
.plant-keyvisual img {
  max-width: 100%;
  max-height: 400px;
}
.plant-info {
  flex: 5;
  font-size: 1.1em;
  justify-content: center;
}
.description {
  line-height: 1.7;
  text-align: justify;
}
@media only screen and (max-width: 600px) {
  .plant {
    flex-direction: column;
    margin: 32px 16px;
    align-items: initial;
  }
  .plant-keyvisual {
    flex: 1;
  }
  .plant-keyvisual img {
    max-width: 50%;
    height: auto;
  }
  .plant-info {
    flex: 1;
  }
}
