

/* section2 */

.section2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* section3 */



.title {
  margin-top: 32px;
  width: 100%;
  text-align: left;
}

.title h1 {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

.title {
  background: rgb(224, 187, 130);
  font-weight: normal;
  border-radius: 4px;
  padding: 8px;
  font-size: 20px;
}

iframe {
  margin-top: 32px;

}

.about2 {
  width: 100%;
  text-align: left;
  display: block;
  margin-top: 32px;
}

.about2 div {
  display: flex;
padding: 16px;
border-bottom:1px dotted black;
}

.about2 div:first-child {
  border-top:1px dotted black;
}

dl {
  display: flex;
  flex-wrap: wrap;
}
dt {
  width: 150px; /* 定義項の幅を固定 */
  font-weight: bold;
}
dd {
  margin-left: 0;
  width: calc(100% - 150px); /* dd の幅を調整 */
}

