@charset "UTF-8";
/* =========================================
	変数
========================================= */
/* =========================================
	mixin
========================================= */
/* =========================================
  共通
========================================= */
.newsContainer {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  padding-block: 9.3rem 2rem;
}
@media screen and (max-width: 768px) {
  .newsContainer {
    flex-direction: column;
    gap: 2.3rem;
    padding-block: 5.3333333333vw 5rem;
  }
}

/* 日付・カテゴリー */
.newsMeta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.newsMeta .newsDate,
.newsMeta .newsCategory {
  font-size: 1.2rem;
  font-weight: 500;
}
.newsMeta .newsCategory {
  display: inline-block;
  color: #fff;
  padding: 0.2rem 0.8rem 0.3rem 0.8rem;
  border-radius: 0.3rem;
  line-height: 1.42;
}

.newsText {
  font-size: 1.6rem;
}

/* カテゴリーの色 */
.cat01 {
  background-color: #FF8F12;
}

.cat02 {
  background-color: #0166CA;
}

.cat03 {
  background-color: #e01313;
}

/* =========================================
  サイドメニュー(カテゴリー)
========================================= */
.sideArea {
  background-color: #028f4c;
  border-radius: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sideArea {
    width: calc(100% - 9.4rem);
    margin-inline: auto;
  }
}
.sideArea::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../assets/images/search.svg) no-repeat left top;
  width: 1.77rem;
  height: 2.57rem;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sideArea .categoryNav {
  border: 2px solid #028f4c;
  background-color: #fff;
  border-radius: 0.8rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .sideArea .categoryNav {
    width: 100%;
  }
}
.sideArea .categoryNav .categoryList {
  display: none;
  padding-inline: 2rem;
}
@media screen and (min-width: 769px) {
  .sideArea .categoryNav .categoryList {
    display: block !important;
    padding: 1.2rem 2rem 0;
  }
}
.sideArea .categoryNav .current {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem 1.2rem 4rem;
  cursor: pointer;
  font-weight: bold;
  color: #028f4c;
  position: relative;
}
.sideArea .categoryNav .current::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #028f4c;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: 2rem;
  top: calc(50% - 0.5rem);
}
.sideArea .categoryNav .current::after {
  content: "";
  background: url(../assets/images/arrow02.svg) no-repeat center center/contain;
  width: 1.5rem;
  height: 0.98rem;
  transition: transform 0.3s;
}
.sideArea .categoryNav.open .current::after {
  transform: rotate(180deg);
}

.categoryItem {
  position: relative;
  transition: all 0.3s;
  border-top: 2px dashed #ccc;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .categoryItem {
    border-top: none;
    border-bottom: 1px dashed #ccc;
  }
}
.categoryItem:last-child {
  border-bottom: none;
}
.categoryItem a {
  display: block;
  padding: 1.5rem 0 1.5rem 2rem;
  transition: all 0.3s;
  color: #000;
}
@media screen and (min-width: 769px) {
  .categoryItem a {
    padding: 1.8rem 0 1.8rem 3.5rem;
  }
}
@media (hover: hover) {
  .categoryItem a:hover {
    opacity: 0.8;
  }
}
.categoryItem a::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #ccc;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: 1rem;
  top: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
  .categoryItem a::before {
    left: 0;
  }
}
.categoryItem.active a {
  color: #028f4c;
}
.categoryItem.active a::before {
  background-color: #028f4c;
}

/* =========================================
  メインエリア（お知らせ一覧）
========================================= */
.mainArea {
  flex-grow: 1;
  width: 100%;
}

.newsList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .newsList {
    margin-bottom: 3rem;
  }
}

.newsItem .newsLink {
  display: block;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2.2rem 3rem;
  color: #000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .newsItem .newsLink {
    padding: 1.6rem 2rem 1.8rem;
  }
}
@media (hover: hover) {
  .newsItem .newsLink:hover {
    opacity: 0.8;
    color: #333;
  }
}
.newsItem .newsMeta {
  margin-bottom: 1rem;
}
.newsItem .newsText {
  font-weight: 500;
  line-height: 1.5625;
}

.notText {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .notText {
    text-align: center;
    margin-top: 2rem;
  }
}

/* =========================================
  ページネーション
========================================= */
.pagination {
  display: flex;
  justify-content: center;
}
.pagination .pagerList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pagination .pagerItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid #028f4c;
  color: #028f4c;
  font-weight: bold;
  font-size: 1.4rem;
  transition: all 0.3s;
}
.pagination .pagerItem.active a {
  background-color: #028f4c;
  color: #fff;
}

/* =========================================
  お知らせ詳細
========================================= */
.newsDetail {
  padding-block: 10.2rem 4rem;
  max-width: 102rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .newsDetail {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .newsDetail {
    padding-block: 3rem 7rem;
  }
}
.newsDetail .newsTitle {
  font-size: 3rem;
  line-height: 1.6666666667;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding: 1rem 0 2.8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .newsDetail .newsTitle {
    font-size: 2.4rem;
    font-size: min(6.4vw, 2.4rem);
    line-height: 1.5;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.newsDetail .newsText {
  line-height: 1.875;
  margin-top: 3rem;
}
.newsDetail .btnList {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .newsDetail .btnList {
    gap: 4rem;
    margin-top: 6rem;
  }
}
.newsDetail .btnList .btn {
  min-width: 32vw;
}
@media screen and (min-width: 769px) {
  .newsDetail .btnList .btn {
    min-width: 30rem;
  }
}
.newsDetail .btnList .btn::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .newsDetail .btnList .prevBtn,
  .newsDetail .btnList .nextBtn {
    display: block;
    padding: 0;
    width: 3rem;
  }
}/*# sourceMappingURL=info.css.map */