.heading_lv2 {
  text-align: center;
  color: var(--main-color);
  font-weight: 500;
  line-height: 1.54;
}
@media screen and (width <= 767px) {
  .heading_lv2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv2 {
    margin-bottom: 4rem;
    font-size: 3.1rem;
  }
}
.heading_lv2 > span {
  display: inline-block;
}

.heading_lv3 {
  text-align: center;
  color: var(--main-color);
  font-weight: 500;
  line-height: 1.54;
}
@media screen and (width <= 767px) {
  .heading_lv3 {
    margin-bottom: 2.5rem;
    font-size: 2.4rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv3 {
    margin-bottom: 4rem;
    font-size: 3.1rem;
  }
}

.heading_lv4 {
  text-align: center;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .heading_lv4 {
    font-size: 2rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv4 {
    font-size: 2.6rem;
  }
}

.heading_lv5 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (width <= 767px) {
  .heading_lv5 {
    margin-block: 3.5rem 0.8rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv5 {
    margin-block: 4rem 2rem;
  }
}

.tab_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0.4rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .tab_wrap {
    gap: 1rem;
    margin-block: 2.5rem 3.5rem;
    padding-inline: 2rem;
  }
}
@media screen and (width > 767px), print {
  .tab_wrap {
    gap: 3rem;
    margin-block: 4rem;
  }
}
.tab_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#FEAAAA), to(#ED707C));
  background-image: linear-gradient(to right, #FEAAAA, #ED707C);
  position: absolute;
  left: 0;
  bottom: 0;
}
.tab_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .tab_btn {
    width: calc(50% - 0.5rem);
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .tab_btn {
    width: calc(50% - 1.5rem);
    max-width: 30rem;
    padding: 1rem;
    font-size: 2rem;
  }
}
.tab_btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FEAAAA), color-stop(50%, #ED707C), to(#FEAAAA));
  background-image: linear-gradient(to right, #FEAAAA 0, #ED707C 50%, #FEAAAA 100%);
  background-size: 200% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: background-position 0.6s;
  transition: background-position 0.6s;
}
@media screen and (width <= 767px) {
  .tab_btn::after {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
}
@media screen and (width > 767px), print {
  .tab_btn::after {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }
}
.tab_btn[data-current=true] {
  color: var(--white);
}
@media screen and (width <= 767px) {
  .tab_btn[data-current=true] {
    min-height: 6rem;
  }
}
@media screen and (width > 767px), print {
  .tab_btn[data-current=true] {
    min-height: 7rem;
  }
}
@media screen and (width <= 767px) {
  .tab_btn[data-current=false] {
    min-height: 5rem;
  }
}
@media screen and (width > 767px), print {
  .tab_btn[data-current=false] {
    min-height: 6rem;
  }
}
.tab_btn[data-current=false]::after {
  opacity: 0.5;
}
@media screen and (width > 767px), print {
  .tab_btn:hover::after {
    background-position: 100% 0;
  }
}
.tab_content[data-active=true] {
  display: block;
}
.tab_content[data-active=false] {
  display: none;
}

.report_date {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 1.2rem;
}

.table_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 1.5rem;
}
@media screen and (width <= 767px) {
  .table_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width > 767px), print {
  .table_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2.4rem;
  }
}

.report_table {
  line-height: 1.3;
}
@media screen and (width <= 767px) {
  .report_table {
    width: 100%;
  }
}
@media screen and (width > 767px), print {
  .report_table {
    width: calc(50% - 1.5rem);
  }
}
.report_table thead {
  min-height: 3rem;
  background-color: var(--thead-bg-color);
  font-size: 1.3rem;
}
.report_table thead th {
  padding: 0.5rem 1rem 0.5rem 0;
  text-align: right;
  font-weight: 400;
}
@media screen and (width <= 767px) {
  .report_table thead th:first-of-type {
    width: 60%;
  }
}
@media screen and (width > 767px), print {
  .report_table thead th:first-of-type {
    width: 70%;
  }
}
@media screen and (width <= 767px) {
  .report_table thead th:nth-of-type(2), .report_table thead th:nth-of-type(3) {
    width: 20%;
  }
}
@media screen and (width > 767px), print {
  .report_table thead th:nth-of-type(2), .report_table thead th:nth-of-type(3) {
    width: 15%;
  }
}
.report_table tbody tr:nth-of-type(even) {
  background-color: var(--tr-bg-color);
}
.report_table tbody td {
  padding: 1rem;
  vertical-align: middle;
}
.report_table tbody td.-school {
  font-size: 1.5rem;
}
@media screen and (width <= 767px) {
  .report_table tbody td.-school {
    width: 60%;
  }
}
@media screen and (width > 767px), print {
  .report_table tbody td.-school {
    width: 70%;
  }
}
.report_table tbody td:nth-of-type(n+2) {
  padding-left: 0;
  text-align: right;
  font-size: 1.7rem;
  line-height: 1.17;
}
@media screen and (width <= 767px) {
  .report_table tbody td:nth-of-type(n+2) {
    width: 20%;
  }
}
@media screen and (width > 767px), print {
  .report_table tbody td:nth-of-type(n+2) {
    width: 15%;
  }
}
.report_table tbody td.-pass {
  color: var(--main-color);
}
.report_table tbody td span {
  position: relative;
}
.report_table tbody td sup {
  position: absolute;
  top: 0.5rem;
  right: -0.4rem;
}
@media screen and (width <= 767px) {
  .report_table[data-row-sp=odd] tbody tr:nth-of-type(odd) {
    background-color: var(--tr-bg-color);
  }
  .report_table[data-row-sp=odd] tbody tr:nth-of-type(even) {
    background-color: initial;
  }
}
@media screen and (width <= 767px) {
  .report_table.-past thead th:nth-of-type(n+2) {
    width: 13.3333333333%;
  }
}
@media screen and (width > 767px), print {
  .report_table.-past thead th:nth-of-type(n+2) {
    width: 10%;
  }
}
.report_table.-past tbody td:nth-of-type(n+2) {
  font-size: 1.7rem;
}
@media screen and (width <= 767px) {
  .report_table.-past tbody td:nth-of-type(n+2) {
    width: 13.3333333333%;
  }
}
@media screen and (width > 767px), print {
  .report_table.-past tbody td:nth-of-type(n+2) {
    width: 10%;
  }
}
.report_table.-private {
  --thead-bg-color: rgb(135 203 203 / .4);
  --tr-bg-color: rgb(135 203 203 / .2);
}
.report_table.-public {
  --thead-bg-color: rgb(189 172 225 / .4);
  --tr-bg-color: rgb(189 172 225 / .2);
}
@media screen and (width <= 767px) {
  .report_table + .report_table thead {
    display: none;
  }
}

@media screen and (width <= 767px) {
  #private {
    margin-top: 4rem;
  }
}
@media screen and (width > 767px), print {
  #private {
    margin-top: 6.4rem;
  }
}
#private .heading_lv4 {
  color: var(--green);
}

@media screen and (width <= 767px) {
  #public {
    margin-top: 6rem;
  }
}
@media screen and (width > 767px), print {
  #public {
    margin-top: 7rem;
  }
}
#public .heading_lv4 {
  color: var(--purple);
}

.acc_target {
  display: none;
}

.acc_trigger {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .acc_trigger {
    margin-top: 2rem;
  }
}
@media screen and (width > 767px), print {
  .acc_trigger {
    margin-top: 3rem;
  }
}
.acc_trigger::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-size: 200% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: background-position 0.6s;
  transition: background-position 0.6s;
}
.acc_trigger::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../images/common/icon_acc_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (width > 767px), print {
  .acc_trigger:hover::before {
    background-position: 100% 0;
  }
}
.acc_trigger[data-open=true]::after {
  background-image: url(../images/common/icon_acc_open.svg);
}
.acc_trigger.-private::before {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #84D3B3), color-stop(50%, #63B5B5), to(#84D3B3));
  background-image: linear-gradient(to right, #84D3B3 0, #63B5B5 50%, #84D3B3 100%);
}
.acc_trigger.-public::before {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #BDACE1), color-stop(50%, #8D73C5), to(#BDACE1));
  background-image: linear-gradient(to right, #BDACE1 0, #8D73C5 50%, #BDACE1 100%);
}

.bottom_txt {
  margin-top: 6rem;
}