@charset "UTF-8";
/* =========================
fv-banner
========================= */
.fv-banner {
  margin-top: 5rem;
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.fv-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fv-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.fv-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
}
.fv-banner__heading {
  font-size: 108px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #81c0e8, #a2d4f4, #81c0e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  margin: 0 0 0.25em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.fv-banner__sub {
  display: inline-block;
  padding: 0.25em 1em;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .fv-banner {
    height: 220px;
  }
  .fv-banner__heading {
    font-size: 56px;
  }
  .fv-banner__sub {
    font-size: 1rem;
    padding: 0.2em 0.8em;
  }
}
@media (max-width: 480px) {
  .fv-banner {
    height: 180px;
  }
  .fv-banner__heading {
    font-size: 40px;
  }
  .fv-banner__sub {
    font-size: 0.9rem;
  }
}

/* =========================
main-content
========================= */
.main-content {
  position: relative;
  background: url("../../img/blog/bg.jpg") no-repeat center top;
  background-size: cover;
}

/* =========================
ブログ一覧
========================= */
.blog-container.blog-archive {
  display: grid;
  grid-template-columns: 720px 336px;
  gap: 2rem;
  padding: 5rem 90px;
  max-width: 1288px;
  margin: 0 auto 5rem;
  background: transparent;
  box-shadow: none;
  grid-template-areas: "heading heading" "main    sidebar";
}
.blog-container.blog-archive .blog-heading {
  grid-area: heading;
  position: relative;
  display: block;
  max-width: fit-content;
  background: #ffffff !important;
  color: #0c2952;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 8px 12px 8px 20px;
  margin: 0;
}
.blog-container.blog-archive .blog-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1em;
  background: #81c0e8;
  border-radius: 2px;
}
.blog-container.blog-archive .blog-content {
  grid-area: main;
  box-shadow: 0 0 0 rgba(12, 41, 82, 0.15) !important;
  padding: 0 !important;
  background-color: transparent !important;
}
.blog-container.blog-archive .blog-side-bar {
  grid-area: sidebar;
}
.blog-container.blog-archive {
  /* アーカイブ用レスポンシブ */
}
@media (max-width: 1288px) {
  .blog-container.blog-archive {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(20px, 4vw, 40px);
    padding: 4rem clamp(16px, 6vw, 60px);
    max-width: none;
  }
  .blog-container.blog-archive .blog-content {
    padding: 0;
  }
}
@media (max-width: 960px) {
  .blog-container.blog-archive {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 3rem clamp(16px, 5vw, 32px);
    margin: 0 auto 4rem;
    grid-template-areas: "heading" "main" "sidebar";
  }
  .blog-container.blog-archive .blog-content {
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 560px) {
  .blog-container.blog-archive {
    gap: 20px;
    padding: 2rem 15px;
    margin: 0 auto 3rem;
  }
}

/* =========================
カード一覧
========================= */
.blog-archive .post-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 960px) {
  .blog-archive .post-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
投稿カード
========================= */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(12, 41, 82, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover, .post-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(12, 41, 82, 0.25);
}
.post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-card__link:focus-visible {
  outline: 2px solid rgba(12, 41, 82, 0.25);
  outline-offset: 2px;
  border-radius: 12px;
}
.post-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #f2f4f7;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.post-card:hover .post-card__thumb img, .post-card:focus-within .post-card__thumb img {
  transform: scale(1.05);
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 0;
}
.post-card__date {
  font-size: 14px;
  color: #000;
  opacity: 0.8;
  white-space: nowrap;
}
.post-card__cats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-card__cats .pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e4f2fd;
  color: #000;
  line-height: 1;
  font-size: 12px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.post-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  padding: 0 20px 0;
  margin-top: 8px;
  margin-bottom: 0;
  transition: color 0.2s ease;
}
.post-card__excerpt {
  color: #000;
  font-size: 16px;
  padding: 8px 20px 24px;
  margin: 0;
}

/* =========================
pagination
========================= */
.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
}
.pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0c2952;
  transition: background 0.2s ease;
}
.pagination li a:hover {
  background: rgba(12, 41, 82, 0.08);
}
.pagination li .current {
  background: #0c2952;
  color: #fff;
}

/*# sourceMappingURL=archive-blog.css.map */
