.perpage {
  position: relative;
  display: flex;
  align-items: center;
}

.perpage #open_perpage_accordion {
  display: none;
}

.perpage span {
  margin-right: 10px;
}

.perpage label {
  display: block;
  width: 103px;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #CCCCCC;
  cursor: pointer;
  padding: 10px 16px 14px;
  font-weight: 600;
}

.perpage label::after {
  content: "\e926";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 26px;
  color: #08287F;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.perpage .accordion {
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms;
}

.perpage .accordion .accordion-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}

.perpage .accordion ul {
  background: #fff;
  width: 103px;
  border-radius: 4px;
  border: solid 1px #f0f0f0;
  box-shadow: 4px 4px 4px #000;
}

.perpage .accordion ul li:nth-child(even) {
  background-color: rgba(240, 240, 240, 0.5);
}

.perpage .accordion ul li:first-child button {
  padding-top: 8px;
}

.perpage .accordion ul li:last-child button {
  padding-bottom: 8px;
}

.perpage .accordion ul button {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  position: relative;
  width: calc(100% - 38px);
  height: 40px;
  padding-left: 38px;
  font-weight: 600;
}

.perpage .accordion ul button::before {
  content: "\e90e";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #08287F;
  opacity: 0;
  transition: opacity 400ms ease;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.perpage .accordion ul li:first-child button::before {
  top: calc(50% + 4px);
}

.perpage .accordion ul li:last-child button::before {
  top: calc(50% - 4px);
}

.perpage .accordion ul button.cu::before {
  opacity: 1;
}

.perpage #open_perpage_accordion:checked ~ .accordion {
  grid-template-rows: 1fr;
}

#report-archive .news-wrap {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

#report-archive .news-archive {
  border-bottom: 2px solid #08287F;
}

#report-archive .news-archive-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding-bottom: 16px;
}

#report-archive .news-archive-inner .perpage {
  align-self: flex-end;
  flex-shrink: 0;
}

#report-archive .news-archive-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#report-archive .news-archive-box::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 8vw;
  height: 1px;
}

#report-archive .news-archive-box .btn-check {
  width: 70px;
  padding-left: 0;
  padding-right: 0;
}

#report-archive .news-content {
  width: 100%;
}

#report-archive .news-content:not(:last-child) {
  margin-bottom: 50px;
}

#report-archive .news-item {
  position: relative;
  width: 100%;
  padding: 30px 0 24px 0;
  border-bottom: 1px solid #CCCCCC;
}

#report-archive .news-item .parts-arrow {
  position: absolute;
  top: 20px;
  right: 0;
}

@media screen and (min-width: 768px) {
  #report-archive .news-archive-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  #report-archive .news-archive-box .btn-check {
    padding-left: 0;
    padding-right: 0;
  }

  #report-archive .news-content:not(:last-child) {
    margin-bottom: 80px;
  }

  #report-archive .news-item {
    display: flex;
    justify-content: space-between;
    gap: 42px;
  }

  #report-archive .news-item .parts-arrow {
    flex-shrink: 0;
    position: relative;
    top: auto;
  }
}