@charset "UTF-8";
/* production date 2025/11/10 ~ 2026/01/22 */
/* ニュースページ用 scss */
/*----------------------------------------------------------------------------------------------------------------
media query
----------------------------------------------------------------------------------------------------------------*/
/* variable declaration */
/* main margin */
/* main padding */
/*----------------------------------------------------------------------------------------------------------------
variable declaration / mixin
----------------------------------------------------------------------------------------------------------------*/
/* color */
/* gradient */
/* underline */
/* drop-shadow */
/* tx drop-shadow */
/* font */
/* hover transition */
/* img */
/*----------------------------------------------------------------------------------------------------------------
lower_header (current)
----------------------------------------------------------------------------------------------------------------*/
/* ヘッダーメニューのリンクカラー変更 ※現在いるページ */
.lower_header_block {
  /* news */
}
.lower_header_block .news_link-style--current {
  color: #00BAA5 !important;
}
.lower_header_block .news_link-style--current a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 57px;
  height: 2px;
  background: #00BAA5;
  transition: none !important;
  transform: none !important;
  transform-origin: none !important;
  pointer-events: none !important;
}

/*----------------------------------------------------------------------------------------------------------------
news
----------------------------------------------------------------------------------------------------------------*/
/* news全体のbody */
.news-bodyWrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 80px;
  width: 100%;
  height: auto;
  background: #F8F8F8;
  padding: 150px 160px;
}
@media screen and (max-width: 1200px) {
  .news-bodyWrap {
    padding: 160px 150px;
  }
}
@media screen and (max-width: 992px) {
  .news-bodyWrap {
    padding: 150px 120px;
  }
}
@media screen and (max-width: 768px) {
  .news-bodyWrap {
    padding: 120px 100px;
  }
}
@media screen and (max-width: 576px) {
  .news-bodyWrap {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 400px) {
  .news-bodyWrap {
    padding: 90px 30px;
  }
}
.news-bodyWrap {
  padding-top: 0 !important;
}
@media screen and (max-width: 1400px) {
  .news-bodyWrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .news-bodyWrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 150px;
  }
}
@media screen and (max-width: 576px) {
  .news-bodyWrap {
    gap: 100px;
  }
}

/* news記事一覧 */
.newsWrap {
  position: relative;
  overflow: hidden;
  display: block;
  width: 850px;
  height: auto;
}
@media screen and (max-width: 1600px) {
  .newsWrap {
    width: 750px;
  }
}
@media screen and (max-width: 1400px) {
  .newsWrap {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .newsWrap {
    order: 1;
  }
}
.newsWrap__inner {
  display: block;
}
.newsWrap {
  /* ナビボタン */
}
.newsWrap__nav {
  position: relative;
  width: 100%;
  height: auto;
  padding: 40px 0 60px 20px;
}
@media screen and (max-width: 768px) {
  .newsWrap__nav {
    padding: 20px 0 40px;
  }
}
.newsWrap__nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .newsWrap__nav ul {
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .newsWrap__nav ul {
    gap: 16px;
  }
}
.newsWrap__nav ul li {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.9px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 768px) {
  .newsWrap__nav ul li {
    text-align: start;
    white-space: wrap;
    font-size: 14px;
  }
}
.newsWrap__nav ul li a {
  display: inline-block;
  padding: 8px 40px;
  color: #FFF;
  background: #37485A;
  border: 1.5px solid #37485A;
  opacity: 0.3;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 768px) {
  .newsWrap__nav ul li a {
    padding: 6px 30px;
  }
}
@media screen and (max-width: 576px) {
  .newsWrap__nav ul li a {
    padding: 6px 20px;
  }
}
.newsWrap__nav ul li a:hover, .newsWrap__nav ul li a:focus {
  color: #00BAA5;
  background: #F8F8F8;
  border: 1.5px solid #00BAA5;
  opacity: 1;
}
.newsWrap .newsWrap__list.is-active {
  background: #00BAA5;
}
.newsWrap .newsWrap__list.is-active a {
  color: #fff;
  background: #00BAA5;
  border: 1.5px solid #00BAA5 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}
.newsWrap {
  /* 記事一覧 */
}
.newsWrap__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1600px) {
  .newsWrap__content {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .newsWrap__content {
    grid-template-columns: 1fr;
  }
}

/*----------------------------------------------------------------------------------------------------------------
sideMenu
----------------------------------------------------------------------------------------------------------------*/
/* サイドメニュー */
.sideMenuWrap {
  position: relative;
  width: auto;
  height: auto;
  padding: 36px;
  background: #FFF;
  box-shadow: 2px 3px 6px 0 rgba(55, 72, 90, 0.1);
}
@media screen and (max-width: 1200px) {
  .sideMenuWrap {
    order: 2;
  }
}

.sideMenu-style--right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.sideMenu-style--right .sideMenuBox {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .sideMenu-style--right .sideMenuBox {
    width: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .sideMenu-style--right .sideMenuBox {
    width: 100%;
  }
}
.sideMenu-style--right .sideMenuNav__inner {
  margin-top: 22px;
  border-top: #00BAA5 1.5px solid;
}
.sideMenu-style--right .sideMenuNav__list {
  border-bottom: rgba(55, 72, 90, 0.3) 0.5px solid;
}
.sideMenu-style--right .sideMenuNav__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .sideMenu-style--right .sideMenuNav__list a {
    gap: 20px;
  }
}
.sideMenu-style--right .sideMenuNav__list a p {
  display: block;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.75px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 576px) {
  .sideMenu-style--right .sideMenuNav__list a p {
    font-size: 14px;
  }
}
.sideMenu-style--right .sideMenuNav__list a svg {
  display: block;
  opacity: 0.4;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.sideMenu-style--right .sideMenuNav__list a:hover {
  background: #F8F8F8;
}
.sideMenu-style--right .sideMenuNav__list a:hover svg {
  transform: translateX(-10px);
}

/*----------------------------------------------------------------------------------------------------------------
single news(第四階層・記事シングルページ)
----------------------------------------------------------------------------------------------------------------*/
/* 関連ニュース */
.related-news {
  position: relative;
  width: auto;
  height: auto;
  padding: 36px;
  background: #FFF;
  box-shadow: 2px 3px 6px 0 rgba(55, 72, 90, 0.1);
}
.related-news__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.related-news__inner .title-style--s {
  padding-bottom: 20px;
  border-bottom: #00BAA5 1.5px solid;
}
.related-news__contentBox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
@media screen and (max-width: 1100px) {
  .related-news__contentBox {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .related-news__contentBox {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .related-news .related-news__contentBox > *:nth-child(n+3) {
    display: none;
  }
}
