/* アコーディオンメニュー全体のサイズ・位置 */
.ac {
  width: 70%;
  margin: 0 auto;
}

/* クリック領域 */
.ac-parent {
  padding-right: 10%;
  height: auto;
  color: black;
  text-align: left;
  line-height: 50px;
  cursor: pointer;
  margin-top: 36px;
  position: relative;
}
.border-bottom {
  border-bottom: 1px dotted gray;
}
.fa, .fas {
    position: absolute;
    top: 16px;
    right: 8px;
}

.title h2 {
  font-size: 2em;
}

/* クリックしたら表示される領域 */
.ac-child {
  display: none;
  padding: 2em 1em;
  text-align: left;
  padding-left: 0px;
  border-bottom: 1px dotted gray;
  margin-bottom: 36px;
}
dd {
    margin-inline-start: 0px;
}

@media screen and (max-width:1081px) {
  .ac {
    width: 90%;
  }
  /*
  .ac-parent {
    height: auto;
    border-bottom: 1px solid #fff;
    background-color: #71e2e2;
    color: #fff;
    text-align: left;
    padding: 8px;
    line-height: 30px;
    cursor: pointer;
    margin-top: 36px;
}
.ac {
    width: 100%;
    margin: 0 auto;
}*/
}



