@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@700&display=swap");
/*----------------------------------------------------------------------------
	wrapper
----------------------------------------------------------------------------*/
.wrapper {
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    overflow: hidden;
  }
}

/*----------------------------------------------------------------------------
	article
----------------------------------------------------------------------------*/
article {
  background-color: #232323;
}

/*----------------------------------------------------------------------------
	main
----------------------------------------------------------------------------*/
main {
  padding-left: 140px;
}
@media screen and (max-width: 767px) {
  main {
    padding-left: 0;
    padding-bottom: 48vw;
  }
}

aside {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  align-self: start;
}
@media screen and (max-width: 767px) {
  aside {
    position: static;
    top: 0;
  }
}

/*----------------------------------------------------------------------------
	section
----------------------------------------------------------------------------*/
.section_title {
  display: grid;
  grid-template-rows: auto auto;
  place-content: center;
  place-items: center;
}
.section_title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 400;
  color: #987034;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 9.067vw;
    margin-bottom: 1.333vw;
  }
}
.section_title span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .section_title span {
    font-size: 4vw;
  }
}

/*----------------------------------------------------------------------------
	common
----------------------------------------------------------------------------*/
.common_date span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #7b7b7b;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .common_date span {
    font-size: 3.733vw;
  }
}
.common_heading span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .common_heading span {
    font-size: 4.8vw;
    line-height: 1.5556;
  }
}

/*----------------------------------------------------------------------------
	main
----------------------------------------------------------------------------*/
.main-content {
  display: grid;
  grid-template-columns: 1fr 213px;
  -moz-column-gap: 130px;
       column-gap: 130px;
  max-width: 1280px;
  padding-bottom: 150px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .main-content {
    max-width: 100%;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    padding-right: 4vw;
    padding-bottom: 21.333vw;
    padding-left: 4vw;
  }
}
.main_list-item {
  padding-bottom: 11px;
  border-bottom: 1px solid #987034;
}
@media screen and (max-width: 767px) {
  .main_list-item {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.main_list-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .main_list-item:not(:last-child) {
    margin-bottom: 8vw;
  }
}
.main_list-item a {
  position: relative;
  display: grid;
  grid-template-columns: 124px 1fr;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .main_list-item a {
    grid-template-columns: 1fr;
    row-gap: 4vw;
    padding-bottom: 2.667vw;
    border-bottom: 1px solid #987034;
  }
}
.main_list-item a::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  right: 0;
  width: 13px;
  height: 11px;
  background-image: url(../images/common/arrow_middle.svg);
  transform: translate(0, -50%);
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(127deg) brightness(105%) contrast(101%);
}
@media screen and (max-width: 767px) {
  .main_list-item a::after {
    content: none;
  }
}

/*----------------------------------------------------------------------------
	sub
----------------------------------------------------------------------------*/
.sub_title {
  padding-bottom: 11px;
  border-bottom: 1px solid #987034;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .sub_title {
    padding-bottom: 2.667vw;
    margin-bottom: 4.8vw;
  }
}
.sub_title span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .sub_title span {
    font-size: 4.8vw;
  }
}
.sub_list-item:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .sub_list-item:not(:last-child) {
    margin-bottom: 4vw;
  }
}
.sub_list-item a {
  display: block;
}
.sub_list-item a span {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  line-height: 2.1429;
}
@media screen and (max-width: 767px) {
  .sub_list-item a span {
    font-size: 3.733vw;
  }
}

/*----------------------------------------------------------------------------
	hero
----------------------------------------------------------------------------*/
.hero .inner {
  padding-top: 104px;
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .hero .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}

/*----------------------------------------------------------------------------
	category
----------------------------------------------------------------------------*/
.category .inner {
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .category .inner {
    padding-bottom: 13.333vw;
  }
}
/*# sourceMappingURL=archive.css.map */