@charset "UTF-8";
.articleAllHeader {
  width: 100%;
  background-color: #D3D3D3;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.articleAllHeader .headerLeft {
  background-color: #D9D9D9;
  height: 145px;
  width: 145px;
  margin-left: 50px;
  border-radius: 100% 0% 100% 40%/100% 0% 100% 40%;
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .articleAllHeader .headerLeft {
    margin-left: 20px;
  }
}
.articleAllHeader .headerLeft p {
  line-height: 145px;
  text-align: center;
  transform: rotate(-45deg);
  color: #000000;
}
.articleAllHeader .headerRight {
  height: 50px;
  width: 180px;
  margin-right: 50px;
  background-color: #919191;
}
@media (max-width: 480px) {
  .articleAllHeader .headerRight {
    margin-right: 20px;
  }
}
.articleAllHeader .headerRight a {
  line-height: 50px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: block;
}

.contentWrapper .articleContainer {
  width: 60%;
  margin: 100px auto;
  text-align: center;
}
.contentWrapper .articleContainer .articles {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 768px) {
  .contentWrapper .articleContainer .articles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentWrapper .articleContainer .articles li {
  list-style: none;
}
.contentWrapper .articleContainer .articles li img {
  width: 100%;
  aspect-ratio: 1.5/1;
  -o-object-fit: fill;
     object-fit: fill;
}
.contentWrapper .articleContainer .articles li a {
  text-decoration: none;
  color: #000;
}
.contentWrapper .articleContainer .articles li p {
  margin-top: 20px;
  font-size: large;
}

.pnavi {
  margin-bottom: 60px;
  font-size: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 40px;
}
@media (max-width: 768px) {
  .pnavi {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .pnavi {
    font-size: 15px;
  }
}
.pnavi .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  color: #000;
}
@media (max-width: 768px) {
  .pnavi .page-numbers {
    margin: 0 8px;
  }
}
@media (max-width: 480px) {
  .pnavi .page-numbers {
    margin: 0 6px;
  }
}
.pnavi .page-numbers.current {
  color: #9e9393;
}
.pnavi .dots {
  font-size: 25px;
  font-weight: 400;
  outline: none;
  font-family: "Yu Gothic", "sans-serif";
}
@media (max-width: 768px) {
  .pnavi .dots {
    font-size: 20px;
  }
}
.pnavi .prev, .pnavi .next {
  width: 20px;
  font-size: 25px;
  font-weight: normal;
  position: relative;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .pnavi .prev, .pnavi .next {
    width: 16px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .pnavi .prev, .pnavi .next {
    width: 12px;
    font-size: 15px;
  }
}
.pnavi .prev.prev::after, .pnavi .next.prev::after {
  content: "←";
  font-family: sans-serif;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
}
.pnavi .prev.next::after, .pnavi .next.next::after {
  content: "→";
  font-family: sans-serif;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
}
@media (max-width: 480px) {
  .pnavi.pcSize {
    display: none;
  }
}
.pnavi.spSize {
  display: none;
}
@media (max-width: 480px) {
  .pnavi.spSize {
    display: flex;
  }
}/*# sourceMappingURL=page-article_all.css.map */