.term {
  margin-bottom: 32px;
}
.term:last-of-type {
  margin-bottom: 0;
}

.term-name {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

@media screen and (max-width: 750px) {
  .term-name {
    font-size: 20px;
  }
}

.list {
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .list {
    margin-top: 10px;
  }
}

.qa {
  border-top: 1px solid #ccc;
}
.qa:first-child {
  border-top: none;
}

.qbtn {
  cursor: pointer;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  background: none;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  padding-right: 20px;
}

@media screen and (max-width: 750px) {
  .qbtn {
    padding-right: 0;
  }
}

.qbtn::before {
  content: "Q";
  color: var(--blue-color);
  display: block;
  text-align: center;
  width: 40px;
  font-size: 24px;
}

@media screen and (max-width: 750px) {
  .qbtn::before {
    width: auto;
    font-size: 22px;
    margin-right: 10px;
  }
}

.qbtn::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
  color: #ccc;
  align-self: center;
  transition: transform 0.3s;
}

.qbtn:hover {
  opacity: 0.7;
}

.open .qbtn::after {
  transform: rotate(180deg);
}

.qbtn span {
  font-size: 18px;
  line-height: 1.5;
  margin-right: 10px;
}

@media screen and (max-width: 750px) {
  .qbtn span {
    font-size: 16px;
  }
}

.a {
  margin-left: 40px;
  word-break: break-all;
}

@media screen and (max-width: 750px) {
  .a {
    margin-left: 0;
  }
}

.pad {
  padding: 32px;
  margin-top: 6px;
  margin-bottom: 30px;
  background: var(--water-blue-color);
}

@media screen and (max-width: 750px) {
  .pad {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.s {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 750px) {
  .s {
    font-size: 16px;
    align-items: flex-start;
  }
}

.s::before {
  content: "A";
  color: var(--primary-color);
  display: block;
  text-align: center;
  width: 40px;
  font-size: 30px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  right: 14px;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .s::before {
    font-size: 25px;
    right: 9px;
    width: 25px;
  }
}

.l {
  margin-top: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}

@media screen and (max-width: 750px) {
  .l {
    font-size: 14px;
  }
}

.pad-l {
  padding-left: 40px;
}

@media screen and (max-width: 750px) {
  .pad-l {
    padding-left: 25px;
  }
}

.link {
  display: inline-block;
  margin-top: 12px;
  line-height: 1.5;
  text-decoration: underline;
  color: var(--blue-color);
}

@media screen and (max-width: 750px) {
  .link {
    font-size: 14px;
  }
}

.link:hover {
  text-decoration: none;
}

.ac-target {
  display: none;
  overflow: hidden;
}
