/*
# Hero Section (Archive News Hero)
==================================== */
.archive-news__hero {
  width: 100%;
  background: transparent url(../images/header-eyecatch.jpg) no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 400px;
}

.archive-news__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.2;
  padding-left: 24px;
  padding-right: 24px;
  color: var(--main-bg);
  font-weight: normal;
  text-shadow: 1px 1px 1px #808080;
}

.archive-news__hero-title {
  font-size: 40px;
  padding-top: 8rem;
  padding-bottom: 2rem;
  width: 500px;
  margin: 0 auto;
}

.archive-news__hero-title::after {
  display: block;
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url(../images/header-eyecatch-logo-sp.svg);
  background-size: contain;
  top: 30%;
  left: 50%;
  transform: translate(-44%, -50%);
  background-repeat: no-repeat;
}

.archive-news__hero-lead {
  font-size: 18px;
  font-weight: 700;
}

/*
# Archive News Content Section
==================================== */
.archive-news__entries {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.archive-news__entries.archive-news__entries--horizontal {
  margin-bottom: 62px;
}

.archive-news__entry-item {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 50px;
  margin-right: 40px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: calc(50% - 40px / 2);
}

.archive-news__entry-item:hover {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.archive-news__entry-item:nth-child(2n),
.archive-news__entry-item:last-child {
  margin-right: 0;
}

.archive-news__entries--horizontal .archive-news__entry-item {
  display: flex;
  margin-bottom: 30px;
  margin-right: 0;
  padding: 20px;
  width: 100%;
}

.archive-news__entries--horizontal .archive-news__entry-item:last-child {
  margin-bottom: 0;
}

.archive-news__entry-item-img {
  text-align: center;
}

.archive-news__entries--horizontal
  .archive-news__entry-item
  .archive-news__entry-item-img {
  width: 36.02941%;
}

.archive-news__entry-item-body {
  padding: 20px;
}

.archive-news__entries--horizontal
  .archive-news__entry-item
  .archive-news__entry-item-body {
  padding: 0 0 0 20px;
  width: 63.97059%;
}

.archive-news__entry-item-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.archive-news__entry-item-published {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #808080;
  font-size: 12px;
  margin-top: 4px;
}

.archive-news__entry-item-published::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.archive-news__entry-item-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo",
    "Noto Sans Japanese", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 14px;
}

.archive-news__entry-item-excerpt {
  color: #454545;
  font-size: 14px;
  line-height: 1.71429;
}

/*
# Archive News Content Work Section
==================================== */
.archive-news__content-work {
  /* content-workクラスのスタイルが特に定義されていないため、空のままとします */
}

/*
# Responsive Design
==================================== */
@media (max-width: 768px) {
  .archive-news__hero {
    padding: 40px 0;
  }

  .archive-news__hero-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-news__entries {
    display: block;
  }

  .archive-news__entry-item {
    margin-bottom: 27px;
    margin-right: 0;
    width: 100%;
  }

  .archive-news__entry-item:last-child {
    margin-bottom: 0;
  }

  .archive-news__entries.archive-news__entries--horizontal {
    margin-bottom: 40px;
  }

  .archive-news__entries--horizontal .archive-news__entry-item {
    margin-bottom: 20px;
    padding: 10px;
  }

  .archive-news__entries--horizontal
    .archive-news__entry-item
    .archive-news__entry-item-img {
    width: 45.06173%;
  }

  .archive-news__entries--horizontal
    .archive-news__entry-item
    .archive-news__entry-item-body {
    padding-left: 12px;
    width: 54.93827%;
  }

  .archive-news__entries--horizontal
    .archive-news__entry-item
    .archive-news__entry-item-published {
    font-size: 10px;
  }

  .archive-news__entries--horizontal
    .archive-news__entry-item
    .archive-news__entry-item-title {
    font-size: 12px;
    margin-bottom: 0;
  }

  .archive-news__entries--horizontal
    .archive-news__entry-item
    .archive-news__entry-item-excerpt {
    display: none;
  }
}
