@charset "utf-8";

/* 先生の声 アコーディオン */
#pc-acc .card-header {
  background-color: #fff;
}

#pc-acc .card-body {
  background-color: #f9f8ef;
}

#pc-acc .card h5 span {
  color: #fff;
}
#pc-acc .card-header h5 a {
  position: relative;
}
#pc-acc .card-header h5 a::after {
  position: absolute;
  content: "";
  font-size: 130%;
  color: #ffffff;
  line-height: 1.1;
  padding-left: 0.5rem;
  top: 50%;
  right: -0.5rem;
  transform: translateY(-50%);
}

#pc-acc .card-header h5 a[aria-expanded="false"]::after {
  content: "+";
}

#pc-acc .card-header h5 a[aria-expanded="true"]::after {
  content: "-";
}

.list-number {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-number li {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.list-number li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #28a3ca;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.375rem;
  width: 1.375rem;
  color: #ffffff;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.pc-point {
  max-width: 100px;
}
/* ########### 767px以下 ＞md ########### */
@media (max-width: 767px) {
  .xlarge {
    font-size: 150%;
  }
  .pc-point {
    width: 25%;
  }
}
