@charset "UTF-8";
/* =========================================================
   トップページ バナー（カスタム投稿タイプ: banner）
   ヒーロー(.l-topMv)の右上に重ねて最大3件表示
   ・画像あり(.has-image) と 画像なし(.text-only) で別デザイン
   ・ブレークポイント767pxはテーマの u-desktop / u-mobile と統一
   ========================================================= */

/* バナーで使う色（--banner-blue はテーマのボタン色 #0074ac） */
:root {
  --banner-navy: #0d3161; /* 紺（画像あり日付・画像なしNEW）推定値 */
  --banner-blue: #0074ac; /* 青（画像ありNEW・上の線）＝テーマのボタン色 */
}

.l-topMv {
  position: relative;
}

.p-topBanners {
  position: absolute;
  z-index: 9; /* ヘッダー(z-index:10)より下＝メニューが前面 */
  right: 25px; /* .p-header__inner の右padding(25px)に合わせる */
  /* 位置＝ヘッダー高さ(110px) ＋ ヘッダーからの距離。距離だけ下の10pxで調整してください */
  top: calc(110px + 10px);
  width: 425px;
  max-width: 40%;
}

.p-topBanners__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-topBanners__item {
  margin-bottom: 10px;
  overflow: hidden;
} /* 角丸なし */
.p-topBanners__item:last-child {
  margin-bottom: 0;
}

.p-topBanners__item > a,
.p-topBanners__item > .p-topBanners__noLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-topBanners__item > a:hover {
  opacity: 0.85;
}

.p-topBanners__new {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  padding: 4px 9px;
  letter-spacing: 0.06em;
  color: #fff;
  flex: 0 0 auto;
}
.p-topBanners__date {
  font-weight: bold;
  white-space: nowrap;
}
.p-topBanners__title {
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   画像あり（.has-image）— 濃色カード＋サムネ＋2段組み
   ============================================================ */
.p-topBanners__item.has-image {
  background: #fff;
  border-top: 3px solid var(--banner-blue); /* 上の線 */
}
.p-topBanners__item.has-image > a,
.p-topBanners__item.has-image > .p-topBanners__noLink {
  gap: 12px;
  padding: 8px 14px 8px 8px;
}
.p-topBanners__item.has-image .p-topBanners__thumb {
  flex: 0 0 auto;
}
.p-topBanners__item.has-image .p-topBanners__thumb img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: cover;
}
.p-topBanners__item.has-image .p-topBanners__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.p-topBanners__item.has-image .p-topBanners__new {
  background: var(--banner-blue);
  font-size: 16px;
}
.p-topBanners__item.has-image .p-topBanners__date {
  color: var(--banner-navy);
  font-size: 14px;
}
.p-topBanners__item.has-image .p-topBanners__title {
  color: #222;
  font-size: 16px;
  line-height: 1.45;
  -webkit-line-clamp: 1;
}

/* ============================================================
   画像なし（.text-only）— 濃紺カード＋1行表示
   ============================================================ */
.p-topBanners__item.text-only {
  background: #fff;
}
.p-topBanners__item.text-only > a,
.p-topBanners__item.text-only > .p-topBanners__noLink {
  gap: 12px;
  padding: 13px 16px;
}
.p-topBanners__item.text-only .p-topBanners__body {
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0; /* 日付と「｜」の間隔は下の margin で等間隔にする */
}
.p-topBanners__item.text-only .p-topBanners__new {
  background: var(--banner-navy);
  font-size: 16px;
}
.p-topBanners__item.text-only .p-topBanners__date {
  color: var(--banner-navy);
  font-size: 14px;
}
.p-topBanners__item.text-only .p-topBanners__title {
  color: #222;
  font-size: 16px;
  line-height: 1.4;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-topBanners__item.text-only .p-topBanners__title::before {
  content: ""; /* 文字ではなくCSSで線を描く */
  display: inline-block;
  width: 1px;
  height: 14px; /* 線の高さ（短め）*/
  margin: 0 5px 2px; /* 左右等間隔 */
  background: var(--banner-navy); /* 日付と同じ紺 */
  vertical-align: middle; /* 縦中央 */
}

/* ---- 表示端末の出し分け（767px 境界） ---- */
@media screen and (min-width: 768px) {
  .p-topBanners__item.is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .p-topBanners {
    /* スマホもヒーローに重ねる。ヘッダー(60px)直下・左右20pxで横幅いっぱい */
    top: calc(60px + 10px);
    right: 20px;
    left: 20px;
    width: auto;
    max-width: none;
  }
  .p-topBanners__item.is-pc {
    display: none !important;
  }

  /* スマホの文字サイズ：サイト規則(PC16px→スマホ14px、小12px)に合わせる */
  .p-topBanners__item.has-image .p-topBanners__new,
  .p-topBanners__item.text-only .p-topBanners__new {
    font-size: 14px;
  }
  .p-topBanners__item.has-image .p-topBanners__title,
  .p-topBanners__item.text-only .p-topBanners__title {
    font-size: 14px;
  }
  .p-topBanners__item.has-image .p-topBanners__date,
  .p-topBanners__item.text-only .p-topBanners__date {
    font-size: 12px;
  }
}
