body {
  background-color: #f7f9fd;
}
.procure {
  position: relative;
  z-index: 1;
  padding-top: 4.53vw;
  padding-bottom: 5.89vw;
  background-color: #f7f9fd;
}

.procure .header {
  line-height: 1;
}

.procure .header .title {
  font-size: 2.29vw;
  font-weight: 700;
}

.procure .header .en {
  font-size: 1.98vw;
  margin-top: 1.04vw;
  font-family: Airal;
  text-transform: uppercase;
  color: #d7dfe2;
  font-weight: 700;
}

/* list */
.procure .procure-list {
  display: flex;
  flex-direction: column;
  gap: 3.65vw 0;
  margin-top: 4.06vw;
}

.procure .procure-list .item {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 0 1.56vw rgba(0, 0, 0, 0.05);
  height: 16.88vw;
}

.procure .procure-list .item .cover {
  flex-shrink: 0;
  width: 28.54vw;
  overflow: hidden;
}

.procure .procure-list .item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s linear;
}

.procure .procure-list .item:hover .cover img {
  transform: scale(1.05);
}

.procure .procure-list .item .info {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 2.4vw 3.39vw 0;
  background-color: #fff;
  overflow: hidden;
}

.procure .procure-list .item .info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d77d9;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.3, 0, 0.2, 1);
  z-index: 0;
}

.procure .procure-list .item:hover .info::before {
  transform: scaleX(1);
}

.procure .procure-list .item .info .date {
  position: relative;
  z-index: 1;
  font-size: .94vw;
  font-family: Arial;
  color: #2d77d9;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 1.35vw;
  border-bottom: 1px solid #e2e7eb;
  transition: color 0.35s linear, border-color 0.35s linear;
}

.procure .procure-list .item:hover .info .date {
  color: #fff;
  border-bottom-color: #71a3e5;
}

.procure .procure-list .item .info .title {
  position: relative;
  z-index: 1;
  margin-top: 1.56vw;
  font-size: 1.15vw;
  font-weight: 700;
  line-height: 1;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.35s linear;
}

.procure .procure-list .item:hover .info .title {
  color: #fff;
}

.procure .procure-list .item .info .desc {
  position: relative;
  z-index: 1;
  margin-top: 1.3vw;
  font-size: .83vw;
  line-height: 1.75;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.35s linear;
}

.procure .procure-list .item:hover .info .desc {
  color: #fff;
}

.procure .procure-list .item .info .more {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .42vw;
  margin-top: auto;
  margin-top: 1.72vw;
  font-size: .83vw;
  color: #333;
  transition: color 0.35s linear;
}

.procure .procure-list .item:hover .info .more {
  color: #fff;
}

.procure .procure-list .item .info .more::after {
  content: '';
  width: .42vw;
  aspect-ratio: 12 / 20;
  flex-shrink: 0;
  -webkit-mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  background-color: currentColor;
  transform: translateY(.05vw);
}

.pagination {
  background-color: #f7f9fd;
}

@media screen and (max-width: 1020px) {
  .procure {
    padding-top: var(--m-section-py);
    padding-bottom: 0;
  }

  .procure .header .title {
    font-size: var(--m-font-h1);
    line-height: 1.3;
  }

  .procure .header .en {
    margin-top: var(--m-space-xs);
    font-size: var(--m-font-h3);
    line-height: 1.4;
  }

  .procure .procure-list {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 var(--m-space-md);
    box-sizing: border-box;
    gap: var(--m-space-md);
    margin-top: var(--m-gap-block);
  }

  .procure .procure-list .item {
    flex-direction: row;
    align-items: stretch;
    height: auto;
    box-shadow: none;
  }

  .procure .procure-list .item .cover {
    flex-shrink: 0;
    width: 28vw;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .procure .procure-list .item .info {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: var(--m-space-xs) var(--m-space-sm);
  }

  .procure .procure-list .item .info .date {
    font-size: 3.733vw;
    padding-bottom: var(--m-space-3xs);
    border-bottom: none;
  }

  .procure .procure-list .item .info .title {
    min-height: 0;
    margin-top: 0;
    font-size: 3.467vw;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .procure .procure-list .item .info .desc {
    margin-top: var(--m-space-3xs);
    font-size: 2.933vw;
    line-height: 1.6;
    -webkit-line-clamp: 2;
  }

  .procure .procure-list .item .info .more {
    display: none;
  }
}
