p,
ul,
li {
  margin: 0;
}

/* ============================
	WORKS
============================ */
.archive-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}

@media screen and (max-width: 767px) {
  .archive-works {
    grid-template-columns: 100%;
    row-gap: 56px;
  }
}

.archive-works__item-link {
  opacity: 1 !important;
}

@media (any-hover: hover) {
  .archive-works__item-link:hover .archive-works__img-wrapper img {
    transform: scale(1.1);
  }

  .archive-works__item-link:hover .archive-works__item-body {
    opacity: 0.75;
  }
}

.archive-works__img-wrapper {
  position: relative;
  overflow: hidden;
}

.archive-works__img-wrapper.--border {
  border: 1px solid #c4c4c4;
}

.archive-works__img-wrapper::before {
  content: "";
  display: block;
  padding-top: calc(212 / 320 * 100%);
}

.archive-works__category {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 8.4rem;
  max-width: 95%;
  height: 3.2rem;
  padding: 0 1.4rem;
  background-color: #fff;
}

.archive-works__category-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.1rem;
  color: #000;
}

.archive-works__img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.archive-works__item-body {
  margin-top: 0.5em;
  transition: opacity 0.4s;
}

/* ============================
	EVENT
============================ */
.event-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.6rem 0 3.6rem;
}

.event-categories__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 6.5rem;
  padding: 1rem 1.1rem 0.9rem;
  border: 1px solid #728469;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  color: #728469;
  transition: background-color 0.3s, color 0.3s;
}

.event-categories__link.is-active {
  pointer-events: none;
  background-color: #728469;
  color: #fff;
}

@media (any-hover: hover) {
  .event-categories__link:hover {
    background-color: #728469;
    color: #fff;
  }
}

.archive-event {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

@media screen and (max-width: 767px) {
  .archive-event {
    grid-template-columns: 100%;
    gap: 2.4rem;
    margin-top: 2.4em;
  }
}

.archive-event__item-link {
  display: block;
  opacity: 1 !important;
}

@media (any-hover: hover) {
  .archive-event__item-link:hover .archive-event__img {
    transform: scale(1.1);
  }

  .archive-event__item-link:hover .archive-event__item-body {
    opacity: 0.75;
  }
}

.archive-event__img-wrapper {
  position: relative;
  overflow: hidden;
}

.archive-event__img-wrapper::before {
  content: "";
  display: block;
  padding-top: calc(260 / 364 * 100%);
}

@media screen and (max-width: 767px) {
  .archive-event__img-wrapper::before {
    padding-top: calc(251 / 335 * 100%);
  }
}

.archive-event__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.archive-event__item-body {
  transition: opacity 0.4s;
  position: relative;
  padding: 3rem 1.5rem 2.6rem 2.4rem;
  background-color: #D9E2D5;
}

@media screen and (max-width: 767px) {
  .archive-event__item-body {
    padding: 3rem 2.1rem 2.6rem 2.4rem;
  }
}

.archive-event__category {
  position: absolute;
  top: -2rem;
  left: 0;
  min-width: 6.5rem;
  max-width: 95%;
  padding: 1rem 1.1rem 0.9rem;
  background-color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .archive-event__category {
    top: -1.6rem;
    min-width: 6.7rem;
    padding: 1.1rem 1.5rem 1rem;
    font-size: 1.1rem;
  }
}

.archive-event__category-text {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive-event__item-inner {
  padding-left: 1.2rem;
  border-left: 1px solid #32412A;
}

.archive-event__date {
  font-size: 1.2rem;
  line-height: 1.375;
  color: #32412A;
}

.archive-event__place {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: 1;
  color: #32412A;
}

.archive-event__item-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}

@media screen and (max-width: 767px) {
  .archive-event__item-title {
    margin-top: 1.4rem;
    margin-bottom: -0.2rem;
    font-size: 1.4rem;
    line-height: calc(24 / 14);
  }
}


/* ============================
	NEWS
============================ */
.archive-news {
  border-top: 1px solid #C4C4C4;
}

.archive-news__item {
  border-bottom: 1px solid #C4C4C4;
}

.archive-news__item-link {
  position: relative;
  display: block;
  padding: 3.2rem 5.6rem 3.2rem 0;
}

@media screen and (max-width: 767px) {
  .archive-news__item-link {
    padding: 2.4rem 4rem 2.4rem 0;
  }
}

.archive-news__item-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3.2rem;
  width: 2.7rem;
  height: 0.55rem;
  background: url("../img/common/arrow-list.svg") no-repeat center / contain;
  transition: transform 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
  .archive-news__item-link::after {
    bottom: 2.4rem;
  }
}

@media (any-hover: hover) {
  .archive-news__item-link:hover::after {
    transform: translateX(0.8rem);
  }
}

.archive-news__item-meta {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.archive-news__category {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 7.8rem;
  height: 3.2rem;
  padding: 0 1em;
  background-color: #728469;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
}

.archive-news__date {
  font-size: 1.2rem;
  color: #32412A;
}

.archive-news__item-title {
  margin-top: 1.15rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .archive-news__item-title {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: calc(24 / 14);
  }
}

/* ============================
	BLOG
============================ */
.archive-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 30px;
}

@media screen and (max-width: 767px) {
  .archive-blog {
    grid-template-columns: 100%;
    row-gap: 56px;
  }
}

.archive-blog__item-link {
  opacity: 1 !important;
}

@media (any-hover: hover) {
  .archive-blog__item-link:hover .archive-blog__img-wrapper img {
    transform: scale(1.1);
  }

  .archive-blog__item-link:hover .archive-blog__item-body {
    opacity: 0.75;
  }
}

.archive-blog__img-wrapper {
  position: relative;
  overflow: hidden;
}

.archive-blog__img-wrapper.--border {
  border: 1px solid #c4c4c4;
}

.archive-blog__img-wrapper::before {
  content: "";
  display: block;
  padding-top: calc(212 / 320 * 100%);
}

.archive-blog__img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.archive-blog__item-body {
  transition: opacity 0.4s;
}