@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&family=Noto+Serif+JP:wght@300;600&display=swap");
.layout-map {
  max-width: 969px;
  margin-inline: auto;
}
.layout-map .note {
  text-align: center;
}

.cg {
  width: 100%;
  max-width: 100%;
  margin-top: 6rem;
}
.cg .note {
  position: static;
  text-align: right;
  padding: 1rem;
}

.detail-list {
  max-width: 1100px;
  margin-top: 8rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}
.detail-list .detail {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.detail-list .title {
  background-color: #ebecf0;
  text-align: center;
  color: #36374b;
  line-height: 1.4;
  font-size: 2.4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 1.5rem 1rem;
  font-weight: bold;
}
.detail-list .text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 2rem;
}
.detail-list .text + * {
  margin-top: 2rem;
}
.detail-list .planting {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.detail-list .plant .name {
  background-color: #36374b;
  color: #fff;
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 3px 0;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 930px) {
  .detail-list {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .cg {
    margin-top: 4rem;
  }
  .detail-list {
    grid-template-columns: 1fr;
    row-gap: 4rem;
    margin-top: 4rem;
  }
  .detail-list .detail {
    row-gap: 0;
  }
  .detail-list .title {
    font-size: 2rem;
  }
  .detail-list .text {
    font-size: 1.4rem;
  }
  .detail-list .plant .name {
    font-size: 1.6rem;
  }
}