@charset "UTF-8";


.h2-title {
  width: auto;
  height: 145px;
  margin-bottom: 80px;
}

.h2-title img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

/* =========================
   news archive mv
========================= */
#news-archive-mv {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

#news-archive-mv .news-archive-mv-image {
  width: 100%;
  height: 100%;
}

#news-archive-mv .news-archive-mv-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#news-archive-mv .news-archive-header-logo {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  z-index: 2;
}

#news-archive-mv .news-archive-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

#news-archive-mv .news-archive-mv-title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  z-index: 2;
}

#news-archive-mv .news-archive-mv-title img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   category nav
========================= */
#news-category-nav {
  width: 100%;
  background: #2c3278;
}

#news-category-nav .news-category-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  min-height: 46px;
  padding: 0 20px 5px;
}

#news-category-nav .news-category-list li {
  list-style: none;
}

#news-category-nav .news-category-list a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#news-category-nav .news-category-list a:hover,
#news-category-nav .news-category-list a.is-active {
  opacity: 0.7;
}

/* =========================
   news archive
========================= */
#news-archive {
  background: #fcfcfc;
  padding: 86px 20px 130px;
}

#news-archive .news-archive-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

#news-archive .news-archive-lead {
  margin: 0 0 86px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #555555;
}

#news-archive .news-archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 24px;
  justify-content: center;
  margin-bottom: 70px;
}

#news-archive .news-archive-card {
  display: block;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#news-archive .news-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

#news-archive .news-archive-card-image {
  width: 100%;
  aspect-ratio: 320 / 190;
  overflow: hidden;
}

#news-archive .news-archive-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#news-archive .news-archive-card-body {
  padding: 10px 12px 14px;
}

#news-archive .news-archive-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#news-archive .news-archive-card-date {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #666666;
}

#news-archive .news-archive-card-category {
  margin: 0;
  padding: 4px 12px;
  border-radius: 3px;
  background: #6d82a8;
  font-size: 10px;
  line-height: 1;
  color: #ffffff;
}

#news-archive .news-archive-card-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}

/* =========================
   pagination
========================= */
#news-archive .news-archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
}

#news-archive .page-number,
#news-archive .page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px 3px;
  border: 1px solid #b8bfd0;
  border-radius: 4px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #2c3278;
}

#news-archive .page-number.is-current {
  background: #2c3278;
  border-color: #2c3278;
  color: #ffffff;
}

#news-archive .page-next {
  gap: 4px;
  font-size: 18px;
  padding-left: 20px;
}

#news-archive .page-next span {
  font-size: 18px;
  line-height: 1;
}

#news-archive .page-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px 3px;
  border: 1px solid #b8bfd0;
  border-radius: 4px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #2c3278;
}

/* =========================
   back button
========================= */
#news-archive .news-archive-back {
  text-align: center;
}

#news-archive .news-archive-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #2c3278;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#news-archive .news-archive-back a:hover {
  opacity: 0.8;
}

/* =========================
   tablet
========================= */
@media screen and (max-width: 1024px) {
  #news-archive-mv {
    height: 220px;
  }

  #news-archive-mv .news-archive-mv-title {
    width: 120px;
  }

  #news-archive .news-archive-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   sp
========================= */
@media screen and (max-width: 699px) {
  #news-archive-mv {
    height: 200px;
  }

  #news-archive-mv .news-archive-mv-title {
    width: 120px;
  }

  #news-category-nav .news-category-list {
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 12px 16px;
  }

  #news-category-nav .news-category-list a {
    font-size: 11px;
  }

  #news-archive {
    padding: 50px 16px 80px;
  }

  #news-archive .news-archive-lead {
    margin-bottom: 44px;
    font-size: 11px;
    line-height: 1.9;
  }

  #news-archive .news-archive-list {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 40px;
  }

  #news-archive .news-archive-card-body {
    padding: 10px 10px 12px;
  }

  #news-archive .news-archive-card-date {
    font-size: 11px;
  }

  #news-archive .news-archive-card-category {
    font-size: 9px;
    padding: 4px 10px;
  }

  #news-archive .news-archive-card-title {
    font-size: 12px;
    line-height: 1.8;
  }

  #news-archive .news-archive-pagination {
    gap: 8px;
    margin-bottom: 32px;
  }

  #news-archive .page-number,
  #news-archive .page-next {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 18px;
  }

  #news-archive .news-archive-back a {
    min-width: 136px;
    height: 32px;
    font-size: 11px;
  }
}