@charset "UTF-8";
:root {
  --ff-ls-b: "LINESeedJPStd Bold";
  --ff-ls-eb: "LINESeedJPStd ExtraBold";
  --ff-ls-m: "LINESeedJPStd Regular";
  --ff-ls-t: "LINESeedJPStd Thin";
}
.c-acc {
  margin-top: 26px;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-acc {
    padding-bottom: 20px;
  }
}
.c-acc__title {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 1.5rem;
  gap: 10px;
  justify-content: flex-start;
}

.c-acc__title:after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: inline-block;
  height: 4px;
  margin-bottom: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  width: 4px;
}
.c-acc__title.open:after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: inline-block;
  height: 4px;
  transform: rotate(-135deg);
  width: 4px;
}
.c-acc__detail {
  display: none;
  font-family: var(--ff-ls-m);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.7142857143;
  margin-top: 6px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-acc__detail {
    padding-inline: 8px;
  }
}
