@charset "UTF-8";
/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.newslist {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.newslist-aside .title {
  font-size: 0.75rem;
}
.newslist-aside .category {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.newslist-aside .category li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  line-height: 1.6;
  text-decoration: none;
}
.newslist-aside .category li a:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 250ms ease;
}
.newslist-aside .category li a:hover:before, .newslist-aside .category li a.current:before {
  background-color: var(--text-color);
}
.newslist-main {
  padding: 0;
  list-style: none;
  border-block-start: var(--border);
}
.newslist-main .item {
  border-block-end: var(--border);
}
.newslist-main a {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.newslist-main .image {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.newslist-main .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.newslist-main p {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  line-height: 1.6;
}
.newslist-main .group {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: end;
  gap: 20px;
}
.newslist-main .group:before {
  content: "";
  width: 1px;
  height: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  order: 1;
  position: relative;
  bottom: 4px;
}
.newslist-main .date,
.newslist-main .category {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
.newslist-main .date {
  order: 0;
}
.newslist-main .category {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  order: 2;
}
@media screen and (min-width: 576px) {
  .newslist-main a {
    padding-block: 30px;
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    grid-template-rows: repeat(2, auto);
    gap: var(--grid-gap);
  }
  .newslist-main .image {
    grid-area: 1/1/3/5;
  }
  .newslist-main p {
    grid-area: 1/5/2/13;
  }
  .newslist-main .group {
    grid-area: 2/5/3/13;
  }
}
@media screen and (min-width: 992px) {
  .newslist {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    grid-template-rows: repeat(2, auto);
    gap: clamp(80px, 20vw, 160px) var(--grid-gap);
    border-block-start: var(--border);
  }
  .newslist-aside {
    grid-area: 1/1/2/3;
    padding-block-start: 30px;
  }
  .newslist-aside .inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
  }
  .newslist-aside .category {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .newslist-main {
    grid-area: 1/3/2/13;
    border-block-start: 0;
  }
  .newslist-main a {
    grid-template-columns: repeat(10, 1fr);
  }
  .newslist-main .image {
    grid-area: 1/1/3/3;
  }
  .newslist-main p {
    grid-area: 1/4/2/11;
  }
  .newslist-main .group {
    grid-area: 2/4/3/11;
  }
  .newslist .p-pagination {
    grid-area: 2/1/3/13;
  }
}

/* --------------------------------- */
.newsart {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vw, 120px);
  border-block-start: var(--border);
}
.newsart-top {
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
}
.newsart-top dl {
  display: flex;
  align-items: center;
}
.newsart-top dt {
  font-size: 0.75rem;
}
.newsart-top dt:after {
  content: "：";
  margin-inline: 1px;
}
.newsart-top dd {
  font-size: 0.8125rem;
}
.newsart-main {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vw, 120px);
}
.newsart-header h3 {
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  font-weight: 400;
  line-height: 1.5;
}
.newsart-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsart-contents p {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.newsart-contents img {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.newsart-contents h1,
.newsart-contents h2,
.newsart-contents h3,
.newsart-contents h4,
.newsart-contents h5,
.newsart-contents h6 {
  font-weight: 500;
}
.newsart-contents h1 {
  font-size: clamp(2.25rem, 2.0454545455rem + 0.5681818182vw, 2.5rem);
}
.newsart-contents h2 {
  font-size: clamp(2rem, 1.7954545455rem + 0.5681818182vw, 2.25rem);
}
.newsart-contents h3 {
  font-size: clamp(1.75rem, 1.5454545455rem + 0.5681818182vw, 2rem);
}
.newsart-contents h4 {
  font-size: clamp(1.5rem, 1.2954545455rem + 0.5681818182vw, 1.75rem);
}
.newsart-contents h5 {
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
}
@media screen and (min-width: 992px) {
  .newsart {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    grid-template-rows: repeat(2, auto);
    column-gap: var(--grid-gap);
  }
  .newsart-top {
    grid-area: 1/1/2/13;
    padding-block: 20px;
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--grid-gap);
  }
  .newsart-top .date {
    grid-column: 1/5;
  }
  .newsart-top .category {
    grid-column: 5/13;
  }
  .newsart-main {
    grid-area: 2/5/3/13;
  }
  .newsart-bottom {
    grid-area: 2/1/3/5;
    display: flex;
    align-items: end;
  }
  .newsart-re {
    position: sticky;
    bottom: 40px;
  }
}