/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.p-pageheader .wrap .copy {
  font-size: clamp(1rem, 0.5909090909rem + 1.1363636364vw, 1.5rem);
}
.p-pageheader .wrap .copy br {
  display: block;
}
.p-pageheader .wrap p {
  font-size: clamp(0.8125rem, 0.6590909091rem + 0.4261363636vw, 1rem);
  line-height: 1.6;
}

.c-pagination {
  margin-block-start: var(--space-sm);
}

/* --------------------------------- */
.project-category {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: var(--space-xxs);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
}
.project-category:before {
  content: "#";
  padding-block-end: 5px;
}
.project-category span a {
  padding-block-end: 5px;
  display: block;
  position: relative;
  text-decoration: none;
  opacity: 0.5;
  transition: var(--hover-animation-speed);
}
.project-category span a:hover, .project-category span a.current {
  opacity: 1;
}
.project-category span a.current:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.project-list {
  padding: 0;
  list-style: none;
}
.project-list__item {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
}
.project-list__item .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1;
}
.project-list__item .head .number,
.project-list__item .head .area {
  height: 24px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  line-height: 1;
  box-sizing: border-box;
}
.project-list__item .head .number {
  font-size: clamp(0.875rem, 0.8238636364rem + 0.1420454545vw, 0.9375rem);
}
.project-list__item .head .area {
  padding-inline: 5px;
  border: 1px solid var(--text-color);
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
.project-list__item .image {
  width: 60%;
  aspect-ratio: 3/4;
  border-radius: 5px;
  overflow: hidden;
}
.project-list__item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-list__item .inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: repeat(2, auto);
  gap: 5px;
  align-items: center;
  line-height: 1.4;
}
.project-list__item .inner .name {
  grid-area: 1/1/2/2;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 500;
}
.project-list__item .inner .data {
  grid-area: 1/2/2/3;
  display: flex;
  flex-direction: column;
  align-items: end;
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
.project-list__item .inner .detail {
  grid-area: 2/1/3/3;
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .project-list__item {
    padding-inline: 20px;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .project-list__item:nth-child(2n) {
    border-inline-end: 0;
  }
  .project-list__item:last-child {
    border-inline-end: 0;
  }
}
@media screen and (min-width: 1280px) {
  .project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .project-list__item:nth-child(2n) {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .project-list__item:nth-child(3n) {
    border-inline-end: 0;
  }
}
@media screen and (min-width: 1920px) {
  .project-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .project-list__item:nth-child(3n) {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .project-list__item:nth-child(4n) {
    border-inline-end: 0;
  }
}

/* --------------------------------- */
/* --------------------------------- */