@charset "UTF-8";
#page-corporate-news {
  background: #fff;
}

#page-corporate-news .page-heading {
  background: url("/corporate/img/news/page-heading_bg.jpg") no-repeat center center; 
  background-size: cover;
}

@media screen and (max-width: 767px) {
  #page-corporate-news .page-heading {
    background: url("/corporate/img/news/page-heading_bg_sp.jpg") no-repeat center center;
    background-size: cover;
  }
}

  #page-corporate-news .news-block {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #page-corporate-news .news-block {
    padding: 0 1.2rem;
    margin: 0 auto 0;
  }
}
/* #page-corporate-news 2026/02/27 追加 ニュースブロック*/
#page-corporate-news .news{
  max-width: 960px;
  margin: 6rem auto 0;
}

#page-corporate-news .news-list{
  list-style: none;
  margin: 4rem 0 0 ;
  padding: 0;
  border-top: 1px solid #d9d9d9;
}

#page-corporate-news .news-item{
  display: grid;
  grid-template-columns: 120px 155px 1fr; /* 日付 / カテゴリ / タイトル */
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d9d9d9;
}

#page-corporate-news .news-date{
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}

#page-corporate-news .news-cat{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #AAA;
  background-color: #F4F4F4;
  border-radius: 2px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  width: 150px;
}

#page-corporate-news .news-title{
  display: inline;
  line-height: 1.6;
  font-size:16px;
}

#page-corporate-news a.news-title{
 text-decoration: none;
}
#page-corporate-news .news-item a:hover{
  text-decoration: underline;
}
#page-corporate-news .news-icon{
  display: inline-block;
  margin-left: 6px;
  vertical-align: text-bottom;
}

/* アイコン共通 */
#page-corporate-news .news-icon{
  width: 20px;
  height: 21px;
  flex: 0 0 20px;
}

#page-corporate-news .news-icon--external{
  background-size: 13px 13px;
}

/* 外部リンクアイコン */
#page-corporate-news .news-icon--external{
  background-image: url("/img/news_icon_link.svg");
  flex: 0 0 15px;
}
/* PDFアイコン */
#page-corporate-news .news-icon--pdf{
  background-image: url("/img/news_icon_pdf.svg");
}
/* スクリーンリーダー用（表示しないテキスト） */
#page-corporate-news .sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* レスポンシブ：スマホは縦積み */
@media (max-width: 767px){
#page-corporate-news .news{
  margin: 4rem auto 0;
}
  #page-corporate-news .news-item{
  gap: 10px;
}
  .news-item{
    grid-template-columns: auto auto;
    gap: 10px 16px;
  }
  .news-title{
    grid-column: 1 / -1; /* タイトルは2列分使う */
  }
  #page-corporate-news .news-cat{
    width:150x;
  }
  #page-corporate-news .news-list{
  margin: 2rem 0 0 ;
}
}

/* ニュース個別ページ フォーマット */

#page-corporate-news .news-page-link {
  display: grid;
  place-items: center;
  margin: 0 auto;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== layout ===== */
.l-main{
  padding: 24px 0 60px;
}

@media (max-width: 767px){
  .l-main{
  padding: 0 0 40px;
}
}
/* ===== header ===== */
.news__header{
  margin-bottom: 50px;
}

.news__meta{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #666;
}

.news__date{ white-space: nowrap; }

.news__cat{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 20px;
  border: 1px solid #AAA;
  background-color: #F4F4F4;
  border-radius: 2px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}

.news__title{
  margin: 0;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ===== body spacing ===== */

/* .news__body{
  display: flex;
  flex-direction: column;
  gap: 20px;
}*/

.news__body > * + *{
  margin-top: 20px;
}
.news__body > * + .news__list{
  margin-top: 10px;
}
.news__body p{
  font-size:16px;
  line-height: 1.8;
}

/* ===== figure ===== */
.news__figure{
  margin: 26px 0 34px;
}

.news__figure img{
  margin: 0 auto;
  background: #fff;
}

.news__caption{
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ===== headings ===== */
.news__body h2.elm-heading--lv2{ margin: 40px 0 30px; }
.news__body h3.elm-heading--lv3{ margin: 40px 0 0; }

/* ===== list (with arrow) ===== */
.news__list{
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  font-size:16px;
}

.news__listItem{
  position: relative;
  padding-left: 1.2em;
  font-weight: 700;
}
.news__listItem a{
  text-decoration: none;
  color: #0014CC;
}
.news__listItem a:hover{
  text-decoration: underline;
}

.news__listItem::before{
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.3em;

  width: 10px;
  height: 15px;

  background-image: url("/corporate/news/img/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== note ===== */
.news__body p.news__note{
  font-size: 14px;
  color: #777;
  padding-left: 1.2em;     /* 全体を右にずらす */
  text-indent: -1.2em;     /* 1行目だけ戻す */
}

/* ===== table ===== */
.news__tableWrap{
  overflow: visible;
  background: #fff;
}

.news__table{
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.news__table th,
.news__table td{
  border: 1px solid #AAAAAA;
  padding: 18px 14px;
  text-align: center;
  vertical-align: middle;
  font-size:16px;
  word-break: break-word; 
}

.news__table th{
  background: #F4F4F4;
  font-weight: 800;
}

/* ===== responsive ===== */
@media (max-width: 767px){
  .news__header{
  margin-bottom: 25px;
}
}