:root{
  --pink-bg:#fff0f8;
  --pink-border:#ffc0cb;
  --pink-img:#ff69b4;
  --pink-title:#d81b60;
  --pink-btn:#ff69b4;
  --pink-btn2:#e91e63;
  --text:#444;
}

.girl-news-card{
  max-width:100%;
  border:2px solid var(--pink-border);
  border-radius:12px;
  background:var(--pink-bg);
  padding:16px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  margin:0 0 14px;
}

/* 推し枠 */
.girl-news-card.is-featured{
  border-color:rgba(255,105,180,.95);
  box-shadow:0 16px 34px rgba(233,30,99,.16),0 4px 14px rgba(0,0,0,.06);
  position:relative;
}
.girl-news-card.is-featured::before{
  content:"本日の推し";
  position:absolute;
  top:10px;
  left:10px;
  background:linear-gradient(90deg,var(--pink-btn2),var(--pink-btn));
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

.girl-card-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.girl-thumb img{
  width:90px;
  height:90px;
  border-radius:10px;
  object-fit:cover;
  border:2px solid var(--pink-img);
}

.girl-news-card.is-featured .girl-thumb img{
  width:110px;
  height:110px;
  border-radius:14px;
}

.girl-card-body{ flex:1; min-width:220px; }

.girl-title{
  color:var(--pink-title);
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  display:block;
}

.girl-lead{
  font-size:13px;
  color:var(--text);
  margin-top:8px;
  line-height:1.6;
  max-height:calc(1.6em * 2);
  overflow:hidden;
}

.girl-news-card.is-featured .girl-lead{
  max-height:calc(1.6em * 3);
}

.girl-more summary{
  cursor:pointer;
  color:var(--pink-title);
  font-weight:900;
  font-size:13px;
  margin-top:6px;
}

.girl-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
}

.btn-reserve{
  background:linear-gradient(90deg,var(--pink-btn2),var(--pink-btn));
  color:#fff;
}

.btn-profile{
  background:#fff;
  color:var(--pink-title);
  border:2px solid rgba(216,27,96,.35);
}

@media (max-width:480px){
  .btn{ flex:1; }
  .girl-actions{ justify-content:space-between; }
}

/* ===== 推し切り替え用フェード ===== */
.girl-news-card{
  transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

/* 推しが付いた瞬間を想定 */
.girl-news-card.is-featured{
  animation: featuredFade .2s ease-out;
}

@keyframes featuredFade{
  from{
    opacity:.85;
    transform: translateY(4px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

:root{
  --pink-bg:#fff0f8;
  --pink-border:#ffc0cb;
  --pink-img:#ff69b4;
  --pink-title:#d81b60;
  --pink-strong:#e91e63;
  --text:#444;
}

/* カード */
.girl-news-card{
  max-width:100%;
  border:2px solid var(--pink-border);
  border-radius:16px;
  background:var(--pink-bg);
  padding:18px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  margin:0 0 18px;
  transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

/* 推し */
.girl-news-card.is-featured{
  border-color: rgba(255,105,180,.95);
  box-shadow:
    0 18px 36px rgba(233,30,99,.18),
    0 6px 14px rgba(0,0,0,.08);
  animation: featuredFade .2s ease-out;
  position:relative;
}
.girl-news-card.is-featured::before{
  content:"本日の推し";
  position:absolute;
  top:12px;
  left:12px;
  background: linear-gradient(90deg, var(--pink-strong), var(--pink-img));
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
}

/* フェード */
@keyframes featuredFade{
  from{ opacity:.85; transform: translateY(4px); }
  to{ opacity:1; transform: translateY(0); }
}

/* レイアウト */
.girl-card-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* 画像 */
.girl-thumb img{
  width:96px;
  height:96px;
  border-radius:14px;
  object-fit:cover;
  border:2px solid var(--pink-img);
}
.girl-news-card.is-featured .girl-thumb img{
  width:116px;
  height:116px;
}

/* 本文 */
.girl-card-body{ flex:1; min-width:220px; }

.girl-title{
  color:var(--pink-title);
  font-weight:900;
  font-size:15px;
  text-decoration:none;
  line-height:1.4;
}

.girl-lead{
  margin-top:8px;
  font-size:13.5px;
  color:var(--text);
  line-height:1.6;
  max-height:calc(1.6em * 3);
  overflow:hidden;
}

.girl-more summary{
  margin-top:8px;
  cursor:pointer;
  color:var(--pink-title);
  font-weight:800;
  font-size:13px;
}
.girl-more-body{
  margin-top:8px;
  font-size:13.5px;
  line-height:1.65;
  color:var(--text);
}

/* CTA */
.girl-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}

/* 予約ボタン（完成形） */
.btn-reserve{
  background: rgba(255,105,180,0.08);   /* ← 面を追加 */
  border: 2px solid rgba(255,105,180,.95);
  color:#7b2d4b;
  padding:14px 26px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.02em;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(233,30,99,.18);
  transition:.18s ease;
}

.btn-reserve:hover{
  background: rgba(255,105,180,0.16);
  box-shadow:0 10px 20px rgba(233,30,99,.28);
  transform: translateY(-1px);
}

/* 推しだけさらに一段強く */
.btn-reserve.is-featured-btn{
  box-shadow:0 14px 26px rgba(233,30,99,.32);
}

/* SP */
@media (max-width:480px){
  .btn-reserve{
    width:100%;
    text-align:center;
  }
}

