@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');
/* ==========================
   INFORMATION (PC)
   ========================== */
.p-info {
  margin-bottom: 40px;
}
.l-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0px; /* 左右の余白 */
}
/* ---------- ベース（JS無しでも2列） ---------- */
.p-infoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
/* ---------- カード ---------- */
.p-infoCard {
  background: #fff;
  border: 2px solid #666;
  box-sizing: border-box;
}
.p-infoCard__head {
  background: #d71718;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
}
.p-infoCard__title {
  color: #d71718;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  padding: 12px 14px;
  text-align: left;
}
.p-infoCard__media {
  margin-bottom: 20px;
}
.p-infoCard__media img {
  width: 100%;
  height: auto;
  display: block;
}
.p-infoCard__body {
  padding: 12px 14px 16px;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}
.p-infoCard__link {
  color: inherit;
}
/* ---------- Masonry 有効時（JSが読めた時だけ html に is-masonry が付く） ---------- */
.is-masonry .p-infoGrid {
  display: block; /* Masonry が配置するので grid を解除 */
  position: relative; /* 念のため */
}
.is-masonry .p-infoGrid__item {
  width: calc(50% - 4px); /* gutter 8px 前提 */
  margin-bottom: 8px;
}