@charset "UTF-8";
/* ===================================
   NEWS PAGE - メディアサイト風デザイン
   ONE CAREER / リブセンス 参考
=================================== */
.news-page {
  background: #fff;
}

/* Hero Section */
.news-hero {
  background: #f8f8f8;
  padding: 60px 0;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .news-hero {
    padding: 40px 0;
  }
}

.news-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .news-hero__inner {
    padding: 0 20px;
  }
}

.news-hero__title {
  font-size: 4.8rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .news-hero__title {
    font-size: 3.2rem;
  }
}

.news-hero__subtitle {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Container - 2カラムレイアウト */
.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 280px;
      grid-template-columns: 1fr 280px;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .news-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 60px;
    padding: 40px 20px;
  }
}

/* Main Content */
.news-main {
  min-width: 0;
}

/* Category Tabs */
.category-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .category-tabs {
    margin-bottom: 40px;
  }
}

.category-tab {
  display: inline-block;
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .category-tab {
    font-size: 1.3rem;
    padding: 6px 16px;
  }
}

.category-tab:hover {
  background: #eee;
  color: #000;
}

.category-tab.is-active {
  background: #000;
  color: #fff;
}

/* News List */
.news-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .news-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* News Item */
.news-item {
  border-bottom: none;
  padding-bottom: 0;
  /* Featured Item (最初の記事) - 全幅表示 */
  /* 2番目以降の記事 - 2カラム表示 */
}

.news-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.news-item__link:hover {
  opacity: 0.7;
}

.news-item--featured {
  grid-column: 1 / -1;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 48px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .news-item--featured {
    padding-bottom: 40px;
  }
}

.news-item--featured .news-item__image-large {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f5f5f5;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .news-item--featured .news-item__image-large {
    height: 240px;
    margin-bottom: 20px;
  }
}

.news-item--featured .news-item__image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-item--featured .news-item__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-item__image-large {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f5f5f5;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .news-item__image-large {
    height: 200px;
  }
}

.news-item__image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-item__link:hover .news-item__image-large img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-item__date {
  font-size: 1.3rem;
  color: #999;
  font-weight: 400;
  font-family: 'Lexend Deca', sans-serif;
}

@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 1.2rem;
  }
}

.news-item__category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  background: #f0f0f0;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .news-item__category {
    font-size: 1.1rem;
    padding: 3px 10px;
  }
}

.news-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .news-item__title {
    font-size: 1.6rem;
  }
}

.news-item--featured .news-item__title {
  font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  .news-item--featured .news-item__title {
    font-size: 2rem;
  }
}

/* Pagination */
.news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .news-pagination {
    margin-top: 60px;
    padding-top: 60px;
  }
}

.news-pagination a, .news-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .news-pagination a, .news-pagination span {
    min-width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

.news-pagination a:hover, .news-pagination span:hover {
  border-color: #000;
  color: #000;
}

.news-pagination a.current, .news-pagination span.current {
  background: #000;
  color: #fff;
  border-color: #000;
}

.news-pagination .prev, .news-pagination .next {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .news-pagination .prev, .news-pagination .next {
    font-size: 1.2rem;
  }
}

/* Sidebar */
@media screen and (max-width: 768px) {
  .news-sidebar {
    border-top: 1px solid #e5e5e5;
    padding-top: 60px;
  }
}

.sidebar-section {
  margin-bottom: 48px;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

.sidebar-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000;
}

.sidebar-categories,
.sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-categories li,
.sidebar-recent li {
  margin-bottom: 12px;
}

.sidebar-categories li:last-child,
.sidebar-recent li:last-child {
  margin-bottom: 0;
}

.sidebar-categories a,
.sidebar-recent a {
  display: block;
  font-size: 1.4rem;
  color: #666;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  padding: 4px 0;
}

@media screen and (max-width: 768px) {
  .sidebar-categories a,
  .sidebar-recent a {
    font-size: 1.3rem;
  }
}

.sidebar-categories a:hover,
.sidebar-recent a:hover {
  color: #000;
}

.sidebar-recent a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

/* ===================================
   SINGLE PAGE - 詳細ページ
=================================== */
.news-single {
  background: #fff;
}

.news-single__hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .news-single__hero {
    height: 280px;
  }
}

.news-single__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-single__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 120px;
}

@media screen and (max-width: 768px) {
  .news-single__container {
    padding: 40px 20px 80px;
  }
}

.news-single__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: #999;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .news-single__breadcrumb {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
}

.news-single__breadcrumb a {
  color: #999;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.news-single__breadcrumb a:hover {
  color: #000;
}

.news-single__breadcrumb span:last-child {
  color: #666;
}

.news-single__header {
  margin-bottom: 48px;
  padding-bottom: 48px;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .news-single__header {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

.news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.news-single__date {
  font-size: 1.4rem;
  color: #999;
  font-family: 'Lexend Deca', sans-serif;
}

@media screen and (max-width: 768px) {
  .news-single__date {
    font-size: 1.3rem;
  }
}

.news-single__category {
  display: inline-block;
  padding: 5px 14px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  background: #f0f0f0;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .news-single__category {
    font-size: 1.1rem;
    padding: 4px 12px;
  }
}

.news-single__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #000;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .news-single__title {
    font-size: 2.4rem;
  }
}

.news-single__content {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}

@media screen and (max-width: 768px) {
  .news-single__content {
    font-size: 1.5rem;
  }
}

.news-single__content h2, .news-single__content h3, .news-single__content h4 {
  color: #000;
  font-weight: 700;
  margin: 48px 0 24px;
  line-height: 1.6;
}

.news-single__content h2 {
  font-size: 2.4rem;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .news-single__content h2 {
    font-size: 2rem;
  }
}

.news-single__content h3 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .news-single__content h3 {
    font-size: 1.8rem;
  }
}

.news-single__content p {
  margin-bottom: 28px;
}

.news-single__content strong {
  font-weight: 700;
  color: #000;
}

.news-single__content a {
  color: #0066cc;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.news-single__content a:hover {
  opacity: 0.7;
}

.news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 48px 0;
}

@media screen and (max-width: 768px) {
  .news-single__content img {
    margin: 32px 0;
  }
}

.news-single__content ul, .news-single__content ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.news-single__content ul li, .news-single__content ol li {
  margin-bottom: 8px;
}

.news-single__footer {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .news-single__footer {
    margin-top: 60px;
    padding-top: 40px;
  }
}

.news-single__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  background: #f8f8f8;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .news-single__back {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

.news-single__back:hover {
  background: #eee;
  color: #000;
}

/* Custom breakpoint for breadcrumb */
@media screen and (max-width: 768px) {
  .news-single__breadcrumb {
    font-size: 1.2rem;
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.4;
  }
}
/*# sourceMappingURL=news.css.map */