
.p-press-list__item {
  padding: 24px 24px 26px 28px;
  background-color: var(--category-color-media-4);
  border-radius: 4px;
  display: flex;
  gap: 20px;
}
.p-press-list__item:nth-child(n+2) {
  margin-top: 12px;
}
.p-press-list__head {
  font-size: 0.2rem;
  font-family: var(--font-ja-bold);
  color: var(--category-color-media);
  line-height: 1;
  padding-top: 4px;
}
.p-press-list__body {
  flex: 1;
}
.p-press-list__body li {
  position: relative;
  font-size: 0.16rem;
  line-height: 1.6;
}
.p-press-list__body li.has_pdf,
.p-press-list__body li.has_excel {
  margin-left: 18px;
}
.p-press-list__body li:nth-child(n+2) {
  margin-top: 16px;
}
.p-press-list__body li.has_pdf::before,
.p-press-list__body li.has_excel::before {
  content: '';
  width: 2px;
  height: calc(100% - 2px);
  background-color: var(--category-color-media);
  border-radius: 1px;
  display: block;
  position: absolute;
  left: -18px;
  bottom: 0;
}
.p-press-list__body li a {
  color: var(--black);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.p-press-list__body li.has_pdf a,
.p-press-list__body li.has_excel a {
  border-bottom: 1px solid var(--category-color-media-3);
  padding-bottom: 4px;
}
.p-press-list__body li.has_pdf a::after,
.p-press-list__body li.has_excel a::after {
  content: '';
  display: block;
  background-size: 100% 100%;
  flex: 0 0 auto;
  margin-top: 4px;
}
.p-press-list__body li.has_pdf a::after {
  width: 16px;
  height: 16px;
  background: url(/common/images/pdf_icon.gif) no-repeat 0 0;
}
.p-press-list__body li.has_excel a::after {
  width: 18px;
  height: 18px;
  background: url(/common/images/ico-excel.png) no-repeat 0 0;
}

.p-press-annotation {
  display: block;
  color: var(--black);
  font-size: 0.16rem;
  line-height: 1.6;
  font-weight: normal;
  border: 1px solid rgba(201, 29, 29, 0.4);
  background-color: var(--white);
  border-radius: 500px;
  padding: 5px 16px 7px;
  display: flex;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: center;
}
.p-press-annotation::before {
  width: 16px;
  height: 16px;
  border: 5px solid #C91D1D;
  border-radius: 50%;
  content: '';
  display: block;
  box-sizing: border-box;
  flex: 0 0 auto;
}
.p-press-list__body li:first-child .p-press-annotation {
  margin-top: 0;
}
.p-press-list__body li:last-child .p-press-annotation {
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .p-press-list__body li a:hover {
    opacity: 1;
    color: var(--category-color-media);
    border-color: var(--category-color-media);
  }
}

@media screen and (min-width: 1024px) {
  .p-press-list__head {
    flex: 0 0 100px;
  }
}
@media screen and (max-width: 1023px) {
  .p-press-list__item {
    flex-direction: column;
    padding: 10px 14px 18px;
    gap: 26px;
  }
  .p-press-list__head {
    font-size: 0.14rem;
  }
  .p-press-list__body li,
  .p-press-list__body li a {
    font-size: 0.13rem;
  }
  .p-press-list__body li.has_pdf {
    margin-left: 14px;
  }
  .p-press-list__body li.has_pdf::before {
    left: -14px;
  }
  .p-press-list__body li:nth-child(n+2) {
    margin-top: 14px;
  }
  .p-press-list__body li.has_pdf a {
    gap: 8px;
  }
  .p-press-list__body li.has_pdf a::after {
    margin-top: 2px;
  }

  .p-press-annotation {
    font-size: 0.12rem;
    line-height: 1.4;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .p-press-list__body li:first-child .p-press-annotation {
    margin-top: 0;
  }
  .p-press-list__body li:last-child .p-press-annotation {
    margin-bottom: 0;
  }
}