/* ===== BINGO PDF/WEBプレビュー共通部 ===== */
.bingo-pdf-preview-wrapper {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 24px 40px;
  width: 800px;
  height: 580px;
}

.bingo-pdf-card ,
.bingo-modal-inner {
/*  background: #fff;
  border: 2px solid #bbb;
  border-radius: 12px;*/
/*  width: 360px;
  height: 520px;*/
  width: 322px;
/*  height: 460px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden !important;
  position: relative;
}

/*マスコット画像*/
.bingo-pdf-card .bingo-char1,
.bingo-modal-inner .bingo-char1 {
    position: absolute;
/*    width: 10%;
    left: 1%;
    bottom: -1%;
    transform: scale(-1, 1);*/
    width: 11%;
    left: 1%;
    bottom: 1%;
    opacity: 0.2;
}
.bingo-pdf-card .bingo-char2,
.bingo-modal-inner .bingo-char2 {
    position: absolute;
/*    width: 19%;
    right: 1%;*/
    width: 11%;
    right: 0%;
    bottom: 1%;
    opacity: 0.2;
}

/*フッタテキスト*/
/*.bingo-pdf-card::after ,
.bingo-modal-inner::after {
    content: "カスタムBINGOメーカー";
    position: absolute;
    bottom: -2px;
    color: rgba(255,255,255,0.8);
    font-size: small;
    text-shadow: 1px 1px 2px #555;
}*/

.bingo-pdf-card-title ,
.bingo-modal-title {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  margin: 16px 0 0 0;
}
.bingo-pdf-card-title .card-title-first-letter ,
.bingo-modal-title .card-title-first-letter {
  font-size: 1.5em;
}

.bingo-pdf-grid ,
.bingo-preview-grid {
  display: grid;
  gap: 3px;
  width: 82%;
  flex-grow: 1;
/*  background: #f9f9f9;
  border-radius: 8px;
  padding: 8px;*/
  padding: 3px;
  margin: 0 auto 30px auto;
  background-color: rgba(0, 0, 0, 0.2);
}

.bingo-pdf-grid-cell ,
.bingo-preview-cell {
  background: rgba(255, 255, 255, 0.85);
/*  border: 1px solid #ddd;
  border-radius: 5px;*/
/*  display: flex;*/
  align-items: center;
  justify-content: center;
/*  overflow: hidden;
  aspect-ratio: 1 / 1;
  font-size: 1.1em;*/
}

/*タイトル追加（ここから）*/
.bingo-size-3 .bingo-img-title {
  font-size: 10px;
}
.bingo-size-4 .bingo-img-title {
  font-size: 8px;
}
.bingo-size-5 .bingo-img-title {
  font-size: 7px;
}
.bingo-img-title {
/*  font-size: 0.93em;*/
  text-align: center;
  margin: 3px 0 2px 0;
  color: #555;
  line-height: 1.2;
  white-space: pre-wrap;
  word-break: break-all;
  letter-spacing: -1px;
  font-weight: bold;
  /* お好みで調整 */
}
.bingo-pdf-grid-cell ,
.bingo-preview-cell {
  flex-direction: column;
  justify-content: flex-start;
}
.bingo-pdf-img ,
.bingo-preview-img {
  margin-top: 2px;
}
/*タイトル追加（ここまで）*/

.bingo-pdf-grid-cell-free,
.bingo-preview-cell-free {
/*    background-position: center;
    background-image: url(/wp-content/uploads/2025/07/free01.png);
    background-size: contain;
    background-repeat: no-repeat;*/
/*  background: #f7e094;
  color: #bb9800;
  font-weight: bold;*/
    position: relative;
}
.bingo-pdf-grid-cell-free img,
.bingo-preview-cell-free img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: unset;
}

.bingo-pdf-img {
/*  width: 96%;
  height: 96%;
  object-fit: cover;
  display: block;*/
}

/* 任意：色違い用背景 */
/*.bg-pink-b { background: #fdeff5; }
.bg-blue-b { background: #eaf4fc; }
.bg-green-b { background: #eafbe5; }
.bg-orange-b { background: #fff1e6; }*/
/* … 必要な分だけbg-◯-◯追加 … */