@charset "utf-8";
/* 必ず1行目 */

/*
Theme Name: brtpath
Theme URI: https://brtpath.com/
Author: 株式会社BRIGHTPATH
Author URI: https://brtpath.com/
Description: 自社サイト用オリジナルテーマ
Version: 1.0
*/



/*====================================
お知らせ一覧 archive-news.php
===================================*/
.archive-news-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.archive-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-news-item {
  border-bottom: .5px dotted var(--title-color);
  padding: 4rem;
  transition: background-color 0.3s ease;
}

.archive-news-item:hover {
  background-color: #F4F4F4;
  cursor: pointer;
}

.archive-news-link {
  display: flex;
  align-items: center;
  gap: 5rem;
  text-decoration: none;
  color: var(--main-color);
  transition: 0.3s ease;
}

.archive-news-meta {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.archive-news-date {
  width: 85px;
  font-family: var(--font-en);
}

.archive-news-label {
  background-color: var(--title-txt-color);
  font-family: var(--font-en);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  letter-spacing: 0.15em;
}

.archive-news-title {
  flex: 1;
}

.archive-no-news {
  text-align: center;
  padding: 5rem 0;
}


@media (max-width: 767px) {
  .archive-news-container {
    width: 85%;
  }

  .archive-news-item {
    padding: 2rem 0;
  }

  .archive-news-item:first-child {
    padding-top: 0;
  }

  .archive-news-link {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .archive-news-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .archive-news-label {
    padding: 0.2rem 1rem;
  }
}



/*====================================
お知らせ詳細 single-news.php
===================================*/
.single-news-container {
  width: 90%;
  margin: 0 auto 10rem;
}

.single-news-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.single-news-date {
  font-family: var(--font-en);
}

.single-news-label {
  background-color: var(--title-txt-color);
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(1rem, 2vw, 1.3rem);
  padding: 0.2rem 1rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-align: center;
  min-width: 75px;
}

.single-news-title {
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--main-color);
  text-align: left;
  font-weight: 500;
}

.single-news-border {
  border-bottom: .5px dotted var(--main-color);
  margin-bottom: 3rem;
}

.single-news-content p {
  margin-bottom: 1.5rem;
}


@media (max-width: 767px) {
  .single-news-container {
    width: 85%;
    margin-bottom: 5rem;
  }

  .single-news-title {
    line-height: 1.4;
  }

  .single-news-meta {
    gap: 1rem;
  }
}


/* 2025.12.01 年始年末 */
.news-post-email {
  text-decoration: underline;
  color: var(--accent-color);
  font-weight: 500;
}