/* =========================
   news archive
========================= */

.news-archive .inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* =========================
   header
========================= */
.news-archive-header {
  margin-bottom: 40px;
}

.news-archive-title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: #23345d;
}

.news-archive-description {
  color: #5f677a;
  line-height: 1.8;
}

/* =========================
   card list
========================= */
.news-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 20px;
}

/* =========================
   card
========================= */
.news-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.news-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* =========================
   image
========================= */
.news-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

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

/* =========================
   label
========================= */
.news-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #999;
}

.news-card-label--important {
  background: #ea5548;
}

/* =========================
   body
========================= */
.news-card-body {
  padding: 28px 24px 30px;
}

/* meta */
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.news-card-meta time {
  font-size: 14px;
  font-weight: 700;
  color: #5a5f73;
  letter-spacing: 0.04em;
}

/* category */
.news-card-category {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #6b7280;
  background: #f3f4f6;
}

/* title */
.news-card-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #3d5275;
}

/* text */
.news-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}


/* =========================
   empty
========================= */
.news-empty {
  color: #5f677a;
}

/* hero */
.news-hero {
  padding: 40px 0 60px;
  text-align: center;
}

/* title */
.news-hero-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #2c3e50;
}

.news-hero-sub {
  margin: 8px 0 24px;
  color: #e65b7a;
  font-weight: 600;
}

/* tabs */
.news-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.news-tab.is-active {
  background: #e65b7a;
  color: #fff;
}

.news-tab:hover, .news-tab:focus {
  opacity: 0.8;
  text-decoration: none;
}

.news-card-category {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

/* お知らせ */
.news-card-category.is-notice {
  background: #e5e5e5;
  color: #4b5563;
}

/* セミナー */
.news-card-category.is-seminar {
  background: #fde7f1;
  color: #d63384;
}

/* 体験談 */
.news-card-category.is-experience {
  background: #d8eafc;
  color: #0f3876;
}
.aux-bread-sep-slash .aux-breadcrumbs span:after{
  content: "\e1e2" !important;
  font-family: "auxin-front";
}
.news-more-experience {
  text-align: center;
  margin: 40px 0 60px;
}
.btn-more-experience {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  border:1px solid #e65b7a;
  color: #e65b7a;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.btn-more-experience:hover {
  opacity: 0.8;
  color: #e65b7a;
  text-decoration: none;
}
.btn-more-experience:after {
    content: "\e1e2";
    padding: 0 5px;
    font-family: "auxin-front";
    color: #e65b7a;
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
}
.btn-more-experience:hover{
	text-decoration: none;
	opacity: .8;
	border: 1px solid #23527c;
  color: #23527c !important;
}
.btn-more-experience:hover:after{
	color: #23527c !important;
}
/* =========================
   responsive
========================= */
@media (max-width: 767px) {
  .news-hero {
    padding: 40px 0 30px;
    text-align: center;
  }
  .news-archive {
    padding: 56px 0;
  }

  .news-card-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card-body {
    padding: 20px;
  }

  .news-archive-title {
    font-size: 26px;
  }

  .news-card-title {
    font-size: 16px;
  }

  .news-card-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .news-tab {
    padding: 10px 15px;
  }
}