@charset "UTF-8";
/* ========================= /
/  mixin
/* =========================*/
/* ========================= /
/  カラー
/* =========================*/
.blog-archive {
  margin: 158px 0 124px;
}
@media screen and (max-width: 1024px) {
  .blog-archive {
    margin: 64px 0 73px;
  }
}
.blog-archive__list {
  margin-inline: auto;
  max-width: 1328px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px min(3.8172353962vw, 66px);
}
@media screen and (max-width: 1024px) {
  .blog-archive__list {
    padding-inline: 6.1538461538%;
    display: flex;
    flex-direction: column;
    gap: 31px;
  }
}
.blog-archive__item-thumbnail {
  aspect-ratio: 399/267;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .blog-archive__item-thumbnail {
    aspect-ratio: 308/132;
  }
}
.blog-archive__item-thumbnail picture,
.blog-archive__item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-out;
}
.blog-archive__item:hover .blog-archive__item-thumbnail picture,
.blog-archive__item:hover .blog-archive__item-thumbnail img {
  transform: scale(1.05);
}
.blog-archive__item-ttl {
  margin-top: 25px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 2px;
  color: #434548;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .blog-archive__item-ttl {
    margin-top: 18px;
    font-size: 1.2rem;
    line-height: 2.5;
  }
}
.blog-archive__item-time {
  margin-top: 19px;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  font-weight: 500;
  color: #D5B3B5;
}
@media screen and (max-width: 1024px) {
  .blog-archive__item-time {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.blog-archive__nodata {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #434548;
}
@media screen and (max-width: 1024px) {
  .blog-archive__nodata {
    font-size: 1.4rem;
  }
}

.news-archive {
  margin: 119px 0 147px;
}
@media screen and (max-width: 1024px) {
  .news-archive {
    margin: 64px 0 73px;
  }
}
.news-archive__list {
  margin-inline: auto;
  max-width: 1132px;
}
@media screen and (max-width: 1024px) {
  .news-archive__list {
    padding-inline: 6.1538461538%;
  }
}
.news-archive__item {
  border-bottom: 1px solid #D5B3B5;
  transition: opacity 0.3s ease-out;
}
.news-archive__item:hover {
  opacity: 0.6;
}
.news-archive__item-link {
  display: block;
  padding: 33px 0;
}
@media screen and (max-width: 1024px) {
  .news-archive__item-link {
    padding: 17px 0;
  }
}
.news-archive__item-article {
  display: flex;
  align-items: baseline;
  gap: min(4.3377674957vw, 75px);
}
@media screen and (max-width: 1024px) {
  .news-archive__item-article {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.news-archive__item-time {
  width: 12.46%;
  min-width: 165px;
  color: #D5B3B5;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2.52px;
}
@media screen and (max-width: 1024px) {
  .news-archive__item-time {
    font-size: 0.8rem;
    line-height: 1.75;
    letter-spacing: 1.12px;
  }
}
.news-archive__item-ttl {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
  letter-spacing: 3px;
}
@media screen and (max-width: 1024px) {
  .news-archive__item-ttl {
    margin-top: 4px;
    font-size: 1.2rem;
    line-height: 2.5;
    letter-spacing: 2px;
    color: #434548;
  }
}

.archive-pagination {
  margin: 124px auto 128px;
  width: 69.57vw;
  max-width: 1203px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .archive-pagination {
    margin: 73px auto 77px;
    min-width: 81vw;
    width: fit-content;
  }
}
.archive-pagination .screen-reader-text {
  display: none;
}
.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.archive-pagination .page-numbers {
  font-size: 1.6rem;
  line-height: 0.875;
  color: #D5B3B5;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 1024px) {
  .archive-pagination .page-numbers {
    font-size: 1.4rem;
  }
}
.archive-pagination .prev,
.archive-pagination .next {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .archive-pagination .prev,
  .archive-pagination .next {
    font-size: 1.2rem;
    gap: 9px;
  }
}
.archive-pagination .prev {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .archive-pagination .prev {
    left: -2.5641025641%;
  }
}
.archive-pagination .prev::before {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  flex-shrink: 0;
  transform: rotateY(180deg);
}
.archive-pagination .next {
  right: 0;
}
@media screen and (max-width: 1024px) {
  .archive-pagination .next {
    right: -2.5641025641%;
  }
}
.archive-pagination .next::after {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  flex-shrink: 0;
}

.single__inner {
  max-width: 1327px;
}
.single__row {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .single__row {
    flex-direction: column-reverse;
    gap: 111px;
  }
}
.single__main {
  width: 100%;
}
.single__ttl {
  margin-top: 66px;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 500;
  letter-spacing: 2px;
  color: #434548;
}
@media screen and (max-width: 1024px) {
  .single__ttl {
    padding-left: 6.1538461538%;
    font-size: 1.4rem;
  }
}
.single__time {
  display: block;
  margin-top: 36px;
  font-size: 1.6rem;
  line-height: 0.875;
  letter-spacing: 1.12px;
  font-weight: 500;
  color: #D5B3B5;
}
@media screen and (max-width: 1024px) {
  .single__time {
    margin-top: 16px;
    padding-left: 6.1538461538%;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.single__content {
  margin-top: 56px;
  width: 96.39%;
}
@media screen and (max-width: 1024px) {
  .single__content {
    margin-top: 30px;
    padding-inline: 2.0512820513%;
  }
}
.single__content p {
  margin: 1.5em 0;
  letter-spacing: 5px;
}
@media screen and (max-width: 1024px) {
  .single__content p {
    font-size: 1.2rem;
    line-height: 2.0833333333;
    letter-spacing: 3px;
  }
}
.single__content img {
  margin: 2em;
}
.single__back {
  display: block;
  margin: 186px auto 0;
  width: fit-content;
  color: #D5B3B5;
  font-size: 1.8rem;
  letter-spacing: 1.12px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .single__back {
    margin-top: 60px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
.single__back::before {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  transform: translate(-100%, -50%) rotateZ(180deg);
  position: absolute;
  top: 50%;
  left: -15px;
}

.lineup {
  margin-top: -34px;
  margin-bottom: 200px;
  width: 29.09%;
  min-width: 386px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .lineup {
    margin-top: 0;
    margin-bottom: 57px;
    width: 100%;
  }
}
.lineup__ttl {
  color: #D5B3B5;
  font-size: 2rem;
  line-height: 4.5;
}
@media screen and (max-width: 1024px) {
  .lineup__ttl {
    font-size: 1.6rem;
  }
}
.lineup__list {
  max-width: 298px;
  margin-top: 19px;
}
@media screen and (max-width: 1024px) {
  .lineup__list {
    margin-top: 7px;
    max-width: 74.09%;
  }
}
.lineup__item {
  border-bottom: 1px solid #D5B3B5;
  transition: opacity 0.3s ease-out;
}
.lineup__item:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .lineup__item:last-of-type {
    border-bottom: none;
  }
}
.lineup__item-link {
  display: block;
  padding: 25px 0;
}
@media screen and (max-width: 1024px) {
  .lineup__item-link {
    padding: 17px 0;
  }
}
.lineup__item-article {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .lineup__item-article {
    gap: 0;
  }
}
.lineup__item-time {
  width: 12.46%;
  min-width: 165px;
  color: #D5B3B5;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 1024px) {
  .lineup__item-time {
    font-size: 0.8rem;
    line-height: 1.75;
    letter-spacing: 1.12px;
  }
}
.lineup__item-ttl {
  flex: 1;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  font-weight: 500;
  letter-spacing: 2px;
  color: #434548;
}
@media screen and (max-width: 1024px) {
  .lineup__item-ttl {
    font-size: 1.2rem;
    line-height: 2.5;
    letter-spacing: 2px;
  }
}/*# sourceMappingURL=archive.css.map */