@charset "UTF-8";
/* -----------------------------------------------------------------------
   news.html 専用 CSS（アコーディオン）
   - トップで使われている .footer__newsletter / .newsBlock とは
     名前空間を分けるため .newsPage に統一
   - 外側ラッパーは .newsPage 1 つに集約（背景色なし）
   ----------------------------------------------------------------------- */

:root {
  --news-ja-gothic: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.newsPage,
.newsPage .summary_inner,
.newsPage .summary_inner .news_txt,
.newsPage p.inner_txt {
  font-family: var(--news-ja-gothic);
}

/* -----------------------------------------------------------------------
   News Block（アコーディオン本体）
   ----------------------------------------------------------------------- */
.newsPage {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 150px;
  padding: 1rem 0;
  border-bottom: thin solid #555;
}
.newsPage details.js-details {
  background: transparent;
}
.newsPage summary {
  display: block;
  list-style: none;
}
.newsPage summary::-webkit-details-marker {
  display: none;
}
.newsPage .summary_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 25px 10px 25px 0;
  border-top: thin solid #555;
  cursor: pointer;
}
.newsPage .summary_inner .txt_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.newsPage .summary_inner .date {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Montserrat', var(--news-ja-gothic);
  text-align: left;
  margin: 0;
  width: 150px;
  font-weight: 400;
}
.newsPage .summary_inner .news_txt {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  font-weight: 400;
  margin: 0;
}
.newsPage .detail_icon {
  display: block;
  position: relative;
  width: 16px;
  margin-left: 15px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
.newsPage details.is-opened .detail_icon {
  transform: rotate(180deg);
}
.newsPage .detail_icon::before,
.newsPage .detail_icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 3px;
  background-color: #b56dff;
}
.newsPage .detail_icon::before {
  left: 0;
  transform: rotate(45deg);
}
.newsPage .detail_icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.newsPage .content {
  overflow: hidden;
}
.newsPage .content_inner {
  padding: 0 10px 30px 0;
}
.newsPage p.inner_txt {
  font-size: 0.95rem;
  line-height: 2;
  text-align: left;
  font-weight: 400;
  margin: 0 0 20px;
}
.newsPage .content_inner .sub_title {
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 20px 0 10px;
  padding: 5px 20px 7px;
  display: inline-block;
  color: #9ec7dd;
  border: thin solid #6FA3C0;
}
/* coredatahub配信の画像は <figure class="wp-block-image"> で包まれる。figureの既定マージンを消す */
.newsPage .content_inner figure {
  margin: 0;
}
.newsPage .content_inner img {
  display: block;
  margin: 20px 0 40px;
  max-width: min(100%, 540px); /* フル幅化を防ぐ（旧 width=540 相当） */
  height: auto;
}
.newsPage p.inner_txt a,
.newsPage p.inner_txt a:link,
.newsPage p.inner_txt a:visited,
.newsPage p.inner_txt a:hover,
.newsPage p.inner_txt a:active {
  color: #fff;
  text-decoration: underline;
}
.newsPage .hidden_pc { display: none; }

@media (max-width: 1024px) {
  .newsPage {
    padding: 1rem 1.5rem;
  }
}

@media screen and (max-width: 640px) {
  .newsPage { padding: 1rem 0; }
  .newsPage .summary_inner { padding: 15px 10px 15px 0; }
  .newsPage .summary_inner .txt_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .newsPage .detail_icon { margin-left: 10px; }
  .newsPage .summary_inner .date { font-size: 0.9rem; width: auto; }
  .newsPage .summary_inner .news_txt { font-size: 0.95rem; line-height: 1.6; }
  .newsPage .hidden_pc { display: inline; }
}
