@charset "utf-8";
#article {
  width: 100%;
  height: auto;
  padding: 0 0 125px;
}
.article__inner {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
.article__txt {
  width: 100%;
  height: auto;
  margin: 4px auto 68px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.article__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.article__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: calc(100% - 315px);
  height: auto;
}
.article__list__item {
  width: 100%;
  height: auto;
}
.article__list__item__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  color: var(--color--black);
}
.article__list__item__image {
  width: calc((185 / 685) * 100%);
  height: auto;
  aspect-ratio: 185 / 140;
  overflow: hidden;
}
.article__list__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article__list__item__details {
  width: calc((500 / 685) * 100%);
  height: auto;
  padding-left: 25px;
}
.article__list__item__ttl {
  width: 100%;
  height: auto;
  margin: 0 auto 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.article__list__item__txt {
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(27 / 16);
}
@media (any-hover: hover) {
  .article__list__item__image img {
    transition: 0.3s;
    transform: scale(1);
    opacity: 1;
  }
  .article__list__item__inner:hover .article__list__item__image img {
    transform: scale(1.04);
    opacity: 0.9;
  }
  .article__list__item__ttl {
    transition: 0.3s;
  }
  .article__list__item__inner:hover .article__list__item__ttl {
    color: var(--color--red);
  }
}
.article__other {
  width: 252px;
  height: auto;
}
.article__other__heading {
  width: 100%;
  height: auto;
  margin: 0 auto 35px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.article__other__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 18px;
  width: 100%;
  height: auto;
}
.article__other__list__item {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
}
.article__other__list__item a {
  color: var(--color--black);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .article__other__list__item a:hover {
    text-decoration: none;
  }
}
.article__pagination {
  width: 100%;
  height: auto;
  padding: 60px 0 0;
}
.pagination {
  width: 100%;
  height: auto;
}
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  width: 100%;
  height: auto;
}
ul.page-numbers li {
  width: auto;
  height: auto;
}
ul.page-numbers li a,
ul.page-numbers li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: var(--color--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #dedede;
}
ul.page-numbers li a.prev {
  padding-right: 2px;
}
ul.page-numbers li a.next {
  padding-left: 2px;
}
ul.page-numbers li span.current {
  background-color: var(--color--red);
  color: var(--color--white);
}
ul.page-numbers li a.prev svg,
ul.page-numbers li a.next svg {
  width: 8px;
  fill: var(--color--black);
}
@media (any-hover: hover) {
  ul.page-numbers li a {
    transition: 0.3s;
  }
  ul.page-numbers li a:hover {
    background-color: var(--color--red);
    color: var(--color--white);
  }
  ul.page-numbers li a:hover {
    background-color: var(--color--red);
    color: var(--color--white);
  }
  ul.page-numbers li a.prev svg,
  ul.page-numbers li a.next svg {
    transition: 0.3s;
  }
  ul.page-numbers li a.prev:hover svg,
  ul.page-numbers li a.next:hover svg {
    fill: var(--color--white);
  }
}

/* PC ================================================== */
@media all and (min-width: 1101px) {
}

@media all and (min-width: 769px) {
}

@media all and (max-width: 1100px) {
}

@media all and (max-width: 915px) {
}

/* Tablet ================================================== */
@media all and (max-width: 768px) {
  #article {
    padding: 0 0 120px;
  }
  .article__inner {
    width: calc((344 / 390) * 100%);
  }
  .article__txt {
    margin: 40px auto 40px;
    font-size: 14px;
  }
  .article__body {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: initial;
  }
  .article__list {
    row-gap: 20px;
    width: 100%;
    order: 1;
  }
  .article__list__item__image {
    width: calc((110 / 330) * 100%);
    max-width: 160px;
  }
  .article__list__item__details {
    flex: 1;
    width: initial;
    padding-left: 12px;
  }
  .article__list__item__ttl {
    margin: 0 auto;
    font-size: 16px;
  }
  .article__list__item__txt {
    display: none;
  }
  .article__other {
    width: 100%;
    order: 3;
  }
  .article__other__heading {
    margin: 0 auto 25px;
    font-size: 20px;
  }
  .article__other__list {
    row-gap: 12px;
  }
  .article__other__list__item {
    font-size: 14px;
  }
  .article__pagination {
    padding: 40px 0 0;
    margin-bottom: 80px;
    order: 2;
  }
  ul.page-numbers {
    column-gap: 10px;
  }
  ul.page-numbers li a,
  ul.page-numbers li span {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* SP ================================================== */
@media all and (max-width: 575px) {
}
