@charset "utf-8";

/*news*/
.top {
}

.info_list li {
  margin-bottom: 8px;
}

.info_list li a {
  background-color: #fff;
  padding: 24px;
  display: block;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
  color: #000;
  transition: all 400ms ease;
}

.info_list li a dl {
  width: 100%;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info_list li a dt {
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cecece;
  width: 100%;
}

.info_list li a .top_info_date {
  font-weight: bold;
  font-size: 12px;
}

.info_list .more_txt {
  font-weight: bold;
  font-size: 12px;
}

.info_list .more_txt:after {
  font-family: "Material Icons Round";
  content: "chevron_right";
  display: inline-block;
  border: 2px solid;
  border-radius: 500px;
  padding: 4px;
  font-size: 20px;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
}

.news_list {
}

.news_list li {
  margin-top: 32px;
}

.news_list li dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #000;
}

.news_list li dt {
  width: calc(100% - 128px);
  order: 2;
}

.news_list li dd {
  width: 128px;
  line-height: 2.2;
  font-size: 16px;
  order: 1;
}

@media screen and (max-width: 500px) {
  .news_list li dt {
    width: 100%;
  }

  .news_list li dd {
    width: 100%;
  }
}

/* CEATECからのお知らせ リスト */
.conts_information .list li {
  padding-bottom: 16px;
  border-bottom: 1px solid #efefef;
}

/*detail*/
.detail {
}

.detail .day {
  text-align: right;
  font-size: 14px;
  padding-bottom: 20px;
}

.content_release {
}

.content_release h4 {
  font-size: 20px;
  font-weight: 700;
  padding-top: 36px;
  padding-bottom: 8px;
}

.img_release_main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  margin-bottom: 20px;
}

.text_release_main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.release_detail::after {
  content: "";
  display: block;
  clear: both;
}

.img_release_sub {
  float: right;
  width: 40%;
  margin-left: 8px;
}

@media screen and (max-width: 500px) {
  .img_release_sub {
    float: none;
    width: 100%;
    margin-left: 0px;
  }
}

.contact_release {
  margin-top: 48px;
  background-color: #efefef;
  padding: 0px 32px 32px;
}

.contact_release h4 {
  padding-top: 32px;
}

.page_block + .btn {
  margin-top: 32px;
}

.experience {
}

.experience h3 img {
  width: 352px;
  max-width: 100%;
}

.experience_list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.experience_list .item {
  width: 31.5%;
  margin-bottom: 40px;
}

.experience_list .item a {
  color: #000;
  text-decoration: none;
  transition: all 400ms ease;
}

.experience_list .item a:hover {
  opacity: 1;
}

.experience_list .item a figure {
  position: relative;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}

.experience_list .item a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 400ms ease;
}

.experience_list .item a:hover figure img {
  opacity: 1;
  transform: scale(1.2);
}

.experience_list .item a .description {
  line-height: 1.6;
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
}
.experience_list .item a:hover .description {
  opacity: 0.5;
}

@media screen and (max-width: 900px) {
  .experience_list .item {
    width: 48.5%;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}

/* ==========================================================================
   テキスト + 画像(約40%)の横並びイントロブロック
   旧 under-2026.css / add.css に置いていたものを news フォルダへ集約。
   news/press/index.html でのみ使用しているため news.css 側に一本化する。
   ========================================================================== */
.under-media-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.under-media-block__body {
  flex: 1 1 auto;
  min-width: 0;
}

.under-media-block__figure {
  flex: 0 0 40%;
  max-width: 40%;
  margin: 0;
}

.under-media-block__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #eef1f5;
}

.under-media-block__figure--wide {
  flex: 0 0 50%;
  max-width: 50%;
}

/* 画像を切り取らず全体表示したい場合用 */
.under-media-block__figure--contain img {
  aspect-ratio: auto;
  object-fit: contain;
  background: none;
}

/* 本文の高さに合わせて画像を伸縮し、はみ出た分を上下でクロップしたい場合用 */
.under-media-block__figure--fill {
  align-self: stretch;
  overflow: hidden;
}

.under-media-block__figure--fill img {
  height: 100%;
  aspect-ratio: auto;
}

.under-media-block__body h4.under-h4 {
  padding-top: 0;
  border-top: none;
}

/* 地図・図解などの非トリミング画像（写真以外）用 */
.under-media-block__figure--diagram img {
  aspect-ratio: auto;
  object-fit: contain;
  background: none;
}

@media screen and (max-width: 767px) {
  .under-media-block {
    flex-direction: column;
  }

  .under-media-block__figure {
    flex-basis: auto;
    max-width: 100%;
  }

  .under-media-block__figure--fill {
    align-self: auto;
  }

  .under-media-block__figure--fill img {
    height: auto;
  }
}


/* ==========================================================================
   以下、旧 news-2026.css を統合（お知らせ CMS 連携: ja/en の index.php / detail.php /
   info_detail.html / pressrelease.html / pressrelease_update.html 用）。
   news フォルダの CSS を news.css に一本化する方針のため、ファイル自体は削除した。
   ========================================================================== */
/* ==========================================================================
   お知らせ（CMS 連携）2026
   ja/news/index.php ・ ja/news/detail.php 用

   NOTE: php-front/assets/style.css から news-* / article-* / error-page を移植したもの。
         元 CSS は :root と * / body / a / ul への全体リセットを含み、サイト共通の
         style.css・ヘッダー・フッターを壊すため、そのままは読み込めない。
         ここでは変数もリセットも .news-front 配下に閉じ込めてある。
   ========================================================================== */

.news-front {
  /* --- カラー（サイト共通パレットに合わせた値） --- */
  --news-primary:      #0044aa;   /* リンク・タブ選択・バッジ */
  --news-primary-dark: #003380;
  --news-bg:           #fff;
  --news-surface:      #f5f7fa;
  --news-border:       #d8dce5;
  --news-text:         #0c1a49;
  --news-text-muted:   #6b7280;
  --news-tag-bg:       #e8f0fe;
  --news-tag-text:     #0044aa;
  --news-error:        #dc2626;

  /* --- 余白 --- */
  --news-space-xs: 4px;
  --news-space-sm: 8px;
  --news-space-md: 16px;
  --news-space-lg: 24px;
  --news-space-xl: 40px;

  /* --- 角丸 --- */
  --news-radius-sm: 4px;
  --news-radius-md: 8px;

  /* --- 文字 --- */
  --news-font-sm: 14px;
  --news-font-base: 16px;
  --news-font-lg: 18px;
  --news-font-xl: 24px;

  /* 一覧のタイルを最大幅で 4 列並べるため、下層共通の内容幅いっぱいまで使う
     （.under-content = max-width:1440px − 左右 padding 40px × 2） */
  max-width: 1360px;
  margin: 0 auto;
  font-size: var(--news-font-base);
  line-height: 1.7;
  color: var(--news-text);
}

/* 詳細ページの記事本文は読みやすさ優先で従来幅のまま中央寄せにする */
.news-front .article {
  max-width: 1000px;
  margin: 0 auto;
}

/* .news-front 配下のみのリセット（サイト全体には影響させない） */
.news-front ul,
.news-front ol.news-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-front a {
  text-decoration: none;
}

.news-front a:hover {
  opacity: 1;   /* サイト共通の a:hover{opacity:.7} は使わず、色変化で表現する */
}


/* --------------------------------------------------------------------------
   ページ切り替えタブ（News / 出展者からのお知らせ / 出展者プレスリリース）

   タブごとに下線を引き（通し罫は使わない）、選択中（= このページ）だけ
   下線をブルーにしてその中央に▼を出す。対象ページが未公開の項目は
   .news-filter__tab--disabled でクリック不可・淡色表示にする。
   色は :root（style.css）のブルー系から選択中 = --lightblue、
   非選択の下線 = --basegray を使う。
   -------------------------------------------------------------------------- */
.news-filter {
  margin-bottom: var(--news-space-lg);
  padding-bottom: 8px;   /* 選択中タブの▼がはみ出す分 */
}

.news-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--news-space-md) var(--news-space-lg);
}

.news-filter__tab a,
.news-filter__tab--active a,
.news-filter__tab--disabled span {
  position: relative;
  display: block;
  min-width: 150px;
  padding: var(--news-space-sm) var(--news-space-md) 12px;
  text-align: center;
  font-size: var(--news-font-sm);
  font-weight: 700;
  color: var(--news-text);
  border-bottom: 2px solid var(--basegray);
  transition: border-color 0.15s;
}

.news-filter__tab--active a {
  border-bottom-color: var(--lightblue);
}

.news-filter__tab a:hover {
  border-bottom-color: var(--lightblue);
}

/* 選択中タブ: 下線の中央にぶら下がる▼ */
.news-filter__tab--active a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--lightblue);
}

/* 準備中タブ: クリック不可・グレーの下線 + 薄いグレー文字（#999 程度） */
.news-filter__tab--disabled span {
  color: #999;
  border-bottom-color: #999;
  cursor: default;
}


/* --------------------------------------------------------------------------
   タグ絞り込み中バナー
   -------------------------------------------------------------------------- */
.news-tag-filter {
  display: flex;
  align-items: center;
  gap: var(--news-space-sm);
  padding: var(--news-space-sm) var(--news-space-md);
  margin-bottom: var(--news-space-md);
  background: var(--news-tag-bg);
  border-radius: var(--news-radius-sm);
  font-size: var(--news-font-sm);
}

.news-tag-filter__label {
  color: var(--news-text-muted);
}

.news-tag-filter__name {
  font-weight: 700;
  color: var(--news-tag-text);
}

.news-tag-filter__clear {
  margin-left: auto;
  color: var(--news-text-muted);
  font-size: var(--news-font-lg);
  line-height: 1;
}

.news-tag-filter__clear:hover {
  color: var(--news-error);
}


/* --------------------------------------------------------------------------
   件数・ページ情報バー
   -------------------------------------------------------------------------- */
.news-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--news-space-sm);
  margin-bottom: var(--news-space-md);
  font-size: var(--news-font-sm);
  color: var(--news-text-muted);
}

.news-meta-bar__count {
  margin: 0;
}

.news-meta-bar__count strong {
  color: var(--news-text);
  font-weight: 700;
}

.news-meta-bar__limit {
  display: flex;
  align-items: center;
  gap: var(--news-space-sm);
}

.news-meta-bar__limit-label {
  white-space: nowrap;
}

.news-meta-bar__limit-list {
  display: flex;
  gap: var(--news-space-xs);
}

/* 表示件数ボタン（10件 / 20件 / 50件 / 100件）。
   非選択は線囲み、選択中は塗り。どちらも :root の --ceatecblue で統一する。 */
.news-meta-bar__limit-item a,
.news-meta-bar__limit-item--active span {
  display: inline-block;
  padding: 2px var(--news-space-sm);
  border: 1px solid var(--ceatecblue);
  border-radius: var(--news-radius-sm);
  font-size: var(--news-font-sm);
}

.news-meta-bar__limit-item a {
  color: var(--ceatecblue);
}

.news-meta-bar__limit-item--active span {
  background: var(--ceatecblue);
  color: #fff;
  font-weight: 700;
}

.news-meta-bar__limit-item a:hover {
  background: var(--ceatecblue);
  color: #fff;
}


/* --------------------------------------------------------------------------
   ニュースカード（横並びリスト / PC 2 列・タブレット以下 1 列）

   サムネイルがある場合はカード左側 20% 幅・カード高さいっぱいに表示し、
   ない場合は figure 自体を出力せず（index.php 側）、本文が左寄せでカード幅
   いっぱいに広がる（.news-card--thumb / .news-card--no-thumb で分岐）。

   NOTE: .news-list / .news-card__tags は ul なので、`.news-front ul` リセット
         （margin:0; padding:0）に勝てるよう .news-front 付きで指定している。
   -------------------------------------------------------------------------- */
.news-front .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 25px;
}

.news-card {
  /* .news-card__title a::after でカード全体をクリック領域にするための基準 */
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 252, 255, 0.85) 100%);
  border-radius: var(--news-radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* 持ち上げ量・速度は add.css（サイト共通）のトークンを参照。
     影だけはニュース面の強めのトーンを維持する */
  transition:
    transform var(--panel-hover-duration) var(--panel-hover-easing),
    box-shadow var(--panel-hover-duration) var(--panel-hover-easing);
}

.news-card:hover {
  transform: translateY(var(--panel-hover-lift));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* サムネイル（カード左側 20% 幅・16:9。上と左のマージンは記事タイトル（.news-card__body の
   padding-top / padding-left）と揃える） */
.news-card__thumb {
  margin: 24px 20px 0 0;
  width: 20%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  align-self: flex-start;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: var(--news-radius-sm);
}

.news-card__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__thumb-img {
  transform: scale(1.05);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 24px 20px 28px;
}

/* NOTE: 下層共通の見出し（style.css の
   `.under-content h3:not(.exl-root *):not(.page_block_title)` = 32px / padding-top:1.15em）
   を打ち消す。`:not()` は引数の特異度を持つので、この共通側は 0,3,1 ある
   （`:not(.exl-root *)` と `:not(.page_block_title)` でクラス2つ分）。
   こちらも `.under-content` を足して 0,3,1 に揃え、news.css が style.css より
   後に読まれること（同着なら後勝ち）で打ち勝つ */
.under-content .news-front h3.news-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a2a4a;
  margin: 0 0 10px;
  padding-top: 0;
  transition: color 0.15s;
}

.news-card__title a {
  color: inherit;
}

/* カード全面をクリック領域にする（タグリンクは下の z-index で上に出す） */
.news-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.news-card:hover .news-card__title {
  color: var(--news-primary);
}

/* カード内の並び順: 日付 → タイトル → カテゴリー/企業名（ピル型）。
   カテゴリー行はタイトルが短くてもカード下端に揃える */
.news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--news-space-sm);
  margin-top: auto;
}

/* 日付はタイトルより上に置く見出し的な行なので、単独行で表示する
   （News一覧では .news-card__meta--head の中で日付+カテゴリーを横並びにするため打ち消す） */
.news-card__date {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
  color: var(--ceatecblue);
}

/* News一覧: 日付とカテゴリーを同じ行に、両端（日付=左 / カテゴリー=右上端）に振り分けてタイトルの上に置く */
.news-card__meta.news-card__meta--head {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 10px;
}

.news-card__meta--head .news-card__date {
  margin-bottom: 0;
}

.news-card__category {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 4px 14px;
  background: var(--news-primary);
  color: #fff;
  border-radius: 999px;
}

/* 出展者プレスリリース一覧: 出展社名はカテゴリーのような塗りバッジにしない */
.news-card__category--plain {
  padding: 4px 0;
  background: none;
  color: var(--news-text-muted);
  border-radius: 0;
}

.news-front .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--news-space-xs);
  margin-top: var(--news-space-sm);
  /* タイトルの ::after より前面に出し、タグ絞り込みを押せるようにする */
  position: relative;
  z-index: 2;
}

.news-card__tag a {
  display: inline-block;
  padding: 2px var(--news-space-sm);
  background: var(--news-tag-bg);
  color: var(--news-tag-text);
  border-radius: 999px;
  font-size: 12px;
}

.news-card__tag a:hover {
  background: #c5d9fc;
}

/* 0 件表示 */
.news-empty {
  padding: var(--news-space-xl);
  text-align: center;
  color: var(--news-text-muted);
  font-size: var(--news-font-lg);
  border: 1px dashed var(--news-border);
  border-radius: var(--news-radius-md);
}

.news-empty a {
  display: block;
  margin-top: var(--news-space-sm);
  font-size: var(--news-font-base);
  color: var(--news-primary);
}


/* --------------------------------------------------------------------------
   ページャ
   -------------------------------------------------------------------------- */
.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--news-space-md);
  margin-top: var(--news-space-xl);
}

.news-pager__btn {
  display: inline-block;
  padding: var(--news-space-sm) var(--news-space-lg);
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-sm);
  font-size: var(--news-font-sm);
  color: var(--news-primary);
  background: var(--news-bg);
}

.news-pager__btn:hover {
  background: var(--news-surface);
}

.news-pager__btn--disabled {
  color: var(--news-border);
  cursor: default;
  pointer-events: none;
}

.news-pager__info {
  font-size: var(--news-font-sm);
  color: var(--news-text-muted);
  white-space: nowrap;
}


/* --------------------------------------------------------------------------
   詳細ページ: 記事
   -------------------------------------------------------------------------- */
.news-front .article__header {
  margin-bottom: var(--news-space-lg);
  padding-bottom: var(--news-space-md);
  border-bottom: 1px solid var(--news-border);
}

/* 記事タイトル: 大きさ・太さはサイト共通の `.under-h3`（32px / 800）に任せ、
   ここでは記事先頭に来るぶんの上余白（`padding-top:1.15em`）だけを打ち消す。
   共通側は `:not()` 2つ分を含めて 0,3,1 あるので、クラス 4 つ（0,4,0）で勝たせる */
.under-content .news-front .article__header .article__title {
  line-height: 1.4;
  margin: 0 0 var(--news-space-md);
  padding-top: 0;
}

.news-front .article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--news-space-sm);
}

.news-front .article__date {
  font-size: var(--news-font-sm);
  color: var(--news-text-muted);
}

.news-front .article__category {
  font-size: var(--news-font-sm);
  padding: 2px var(--news-space-sm);
  background: var(--news-primary);
  color: #fff;
  border-radius: var(--news-radius-sm);
  font-weight: 500;
}

/* 出展者プレスリリース詳細: 出展者名はお知らせのカテゴリータグ（塗りバッジ）と
   見分けがつくよう、塗り無しにする */
.news-front .article__category--plain {
  padding: 2px 0;
  background: none;
  color: var(--news-text-muted);
  border-radius: 0;
  font-weight: 700;
  text-decoration: underline;
}

.news-front .article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--news-space-xs);
  margin-bottom: var(--news-space-lg);
}

.news-front .article__tag a {
  display: inline-block;
  padding: 2px var(--news-space-sm);
  background: var(--news-tag-bg);
  color: var(--news-tag-text);
  border-radius: var(--news-radius-sm);
  font-size: var(--news-font-sm);
}

.news-front .article__tag a:hover {
  background: #c5d9fc;
}

/* 本文（CMS が出力する HTML） */
.news-front .article__body {
  margin-bottom: var(--news-space-xl);
  line-height: 1.9;
}

/* 本文内の見出し（CMS 出力なのでクラスを付けられない）。
   記事タイトルが `.under-h3` の位置なので、本文はその 1 段下から始まるものとして
   h2 → .under-h4 / h3 → .under-h5 / h4 → .under-h6 の見た目に合わせる。
   サイト側の h5/h6 は上余白を持たない（ページ側が mgt* で調整する前提）ため、
   CMS 本文では段落から離すぶんの margin-top をここで足している。 */
.news-front .article__body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ceatecblue);
  margin: 1.2em 0 0.25em;
  padding: 0;
  border: none;
}

.under-content .news-front .article__body h3 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin: 1.2em 0 8px;
  padding: 0 0 0 16px;
}

.under-content .news-front .article__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--ceatecblue);
}

.news-front .article__body h4 {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--news-text);
  margin: 1.2em 0 20px;
  padding: 0 0 0 16px;
}

.news-front .article__body h4::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--ceatecblue);
}

.news-front .article__body p {
  margin-bottom: var(--news-space-md);
}

.news-front .article__body ul,
.news-front .article__body ol {
  margin-bottom: var(--news-space-md);
  padding-left: var(--news-space-xl);
}

.news-front .article__body ul {
  list-style: disc;
}

.news-front .article__body ol {
  list-style: decimal;
}

.news-front .article__body li {
  margin-bottom: var(--news-space-xs);
}

.news-front .article__body a {
  color: var(--news-primary);
  text-decoration: underline;
}

.news-front .article__body img {
  max-width: 100%;
  height: auto;
}

.news-front .article__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--news-space-lg);
}

.news-front .article__body th,
.news-front .article__body td {
  padding: var(--news-space-sm) var(--news-space-md);
  border: 1px solid var(--news-border);
  text-align: left;
}

.news-front .article__body th {
  background: var(--news-surface);
  font-weight: 700;
}

/* 関連リンク・添付ファイル・お問い合わせ先 */
/* 関連リンク・関連ファイルダウンロード・お問い合わせ先の見出し（.article__section-title）は
   サイト共通の `.under-h4`（28px / 800 / --ceatecblue）のままだと記事タイトルと
   同格に見えてしまうため、「メイン概要」（.article__lead）と同じ文字レベルに合わせる */
.news-front .article__links .article__section-title,
.news-front .article__attachments .article__section-title,
.news-front .article__contact .article__section-title {
  font-size: var(--news-font-lg);
  font-weight: 700;
  color: var(--news-text);
  margin: 0 0 var(--news-space-sm);
  padding: 0;
  border: none;
}

.news-front .article__links,
.news-front .article__attachments {
  margin-bottom: var(--news-space-xl);
}

.news-front .article__link-list,
.news-front .article__att-list {
  display: flex;
  flex-direction: column;
  gap: var(--news-space-sm);
  align-items: flex-start;
}

/* 関連リンクはサイト共通の `.text_link` を使う（外部リンクアイコンは
   add.css の `.text_link::after`（Material Icons の launch）が自動で付く）。
   display / padding-right は .text_link 側が持つので、ここでは色だけ指定する。 */
.news-front .article__link {
  color: var(--news-primary);
}

.news-front .article__link:hover {
  color: var(--news-primary-dark);
}

/* 添付ファイルのリンクはサイト共通のダウンロードボタン（add.css の `.btn.download`）を使う。
   背景・角丸・パディング・左のダウンロードアイコンは add.css 側が持つので、
   ここでは独自のボックス指定を置かず、ボタン上に載る文字の調整だけを行う。
   NOTE: `.btn span { color:#fff }`（0,1,1）より `.news-front .article__att-size`（0,2,0）
         が強いため、ファイルサイズだけは自前で白系に戻す必要がある */
.news-front .article__att-size {
  font-size: var(--news-font-sm);
  color: rgba(255, 255, 255, 0.75);
  margin-left: 0.4em;
}

/* 一覧に戻る */
.news-front .article__back {
  margin-top: var(--news-space-xl);
  padding-top: var(--news-space-lg);
  border-top: 1px solid var(--news-border);
}

.news-front .article__back-link {
  font-size: var(--news-font-sm);
  color: var(--news-text-muted);
}

.news-front .article__back-link:hover {
  color: var(--news-primary);
}


/* --------------------------------------------------------------------------
   詳細ページ: 出展者プレスリリース専用パーツ（info_detail.html）
   CMS 記事本文（.article__body）にはない「メイン画像」「小見出し繰り返し
   ブロック」「お問い合わせ先」を出すための専用クラス。
   -------------------------------------------------------------------------- */
.news-front .article__hero {
  margin: var(--news-space-lg) 0;
}

.news-front .article__hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--news-radius-md);
}

.news-front .article__lead {
  font-size: var(--news-font-lg);
  font-weight: 700;
}

.news-front .article__sub {
  margin-top: var(--news-space-xl);
}

.news-front .article__sub-images {
  display: flex;
  flex-wrap: wrap;
  gap: var(--news-space-sm);
  margin-bottom: var(--news-space-md);
}

.news-front .article__sub-image {
  display: block;
  width: 160px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--news-radius-sm);
  background: var(--news-surface);
}

.news-front .article__sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-front .article__sub-body {
  margin-bottom: var(--news-space-md);
}

.news-front .article__contact {
  margin-bottom: var(--news-space-xl);
  padding: var(--news-space-md);
  background: var(--news-surface);
  border-radius: var(--news-radius-md);
}

.news-front .article__contact h4.under-h4 {
  margin-top: 0;
}


/* --------------------------------------------------------------------------
   エラー表示（404 / 503）
   -------------------------------------------------------------------------- */
.news-error {
  text-align: center;
  padding: var(--news-space-xl) var(--news-space-lg);
}

.news-error__code {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--news-border);
  line-height: 1;
  margin: 0 0 var(--news-space-md);
}

.under-content .news-front h3.news-error__title {
  font-size: var(--news-font-xl);
  font-weight: 800;
  margin: 0 0 var(--news-space-md);
  padding-top: 0;
}

.news-error__message {
  color: var(--news-text-muted);
  margin: 0 0 var(--news-space-xl);
}

.news-error__back {
  display: inline-block;
  padding: var(--news-space-sm) var(--news-space-lg);
  background: var(--news-primary);
  color: #fff;
  border-radius: var(--news-radius-sm);
  font-weight: 500;
}

.news-error__back:hover {
  background: var(--news-primary-dark);
  color: #fff;
}


/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
/* 一覧タイル: PC 2 列 → タブレット・スマホ 1 列 */
@media screen and (max-width: 1024px) {
  .news-front .news-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  .news-front .news-list {
    gap: 16px;
    padding-top: 16px;
  }

  .news-card__body {
    padding: 16px 16px 20px;
  }

  .news-card__thumb {
    margin: 16px 16px 0 0;
  }

  .under-content .news-front h3.news-card__title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .news-card__date,
  .news-card__category {
    font-size: 11px;
    padding: 3px 12px;
  }
}

@media screen and (max-width: 480px) {
  .news-meta-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  /* タブは 2 列に収まる幅まで詰める */
  .news-filter__tabs {
    gap: var(--news-space-md);
  }

  .news-filter__tab--active a,
  .news-filter__tab--disabled span {
    min-width: 120px;
    padding-left: var(--news-space-sm);
    padding-right: var(--news-space-sm);
  }
}


/* --------------------------------------------------------------------------
   出展者からのお知らせ一覧（pressrelease_update.html 専用）

   カード形式ではなく、更新日・出展社名・詳細リンクだけを 1 行に収めた
   コンパクトな行表示にして、一覧全体の縦の高さを抑える。列数は
   `.news-front .news-list`（PC 2 列 → タブレット・スマホ 1 列）をそのまま
   引き継ぐ（ここでは列数を上書きしない）。カード全面を 1 つの <a>
   （.news-card__row-link）でクリック領域にする。
   `.updates` は当ページ（pressrelease_update.html）のみのラッパーなので、
   ここでの上書きは他の一覧（News / 出展者プレスリリース）に影響しない。
   等号優先度を確実に上回るよう、レスポンシブ定義より後ろに置いている。
   -------------------------------------------------------------------------- */
.updates .news-list {
  gap: var(--news-space-sm);
  padding-top: var(--news-space-md);
}

.news-card--compact {
  padding: 0;
}

.news-card--compact .news-card__row-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  color: inherit;
}

.news-card--compact .news-card__date {
  flex-shrink: 0;
  margin-bottom: 0;
}

.news-card--compact .news-card__name {
  flex: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  color: #1a2a4a;
  transition: color 0.15s;
}

.news-card--compact .news-card__view-link {
  flex-shrink: 0;
  font-size: var(--news-font-sm);
  font-weight: 500;
  color: var(--news-primary);
  white-space: nowrap;
}

.news-card--compact:hover .news-card__name {
  color: var(--news-primary);
}

.news-card--compact:hover .news-card__view-link {
  color: var(--news-primary-dark);
}

@media screen and (max-width: 640px) {
  .news-card--compact .news-card__row-link {
    padding: 12px 16px;
    gap: var(--news-space-sm);
  }

  .news-card--compact .news-card__name {
    font-size: 12px;
  }

  .news-card--compact .news-card__date,
  .news-card--compact .news-card__view-link {
    font-size: 12px;
  }
}
