/**
Theme Name: JIN:R child
Template: jinr
Author: CROOVER Inc.
Author URI: https://croover.co.jp
Version: 1.00
*/

/* 念のための可視化保険（子テーマの style.css 末尾へ） */
.single-review .entry-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* 子テーマの style.css 末尾へ */
.acf-field .acf-label,
.rvr-qa .rvr-q { display: block !important; }

/* Review ACF Render styles */

.rvr-card{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:20px;
  margin:20px 0;
  background:#87cefa;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.rvr-topimage{
  margin-bottom:16px;
}
.rvr-topimage img{
  display:block;
  width:100%;
  height:auto;
  border-radius:12px;
  
}

/* 同一要素に rvr-q と rvr-q-image が付いているので、子孫ではなく“同一要素”指定にする。
   また、img自体に fix-position-q-image が付いているので > img は不要。 */
.rvr-q.rvr-q-image > img,
.fix-position-q-image{
  position: relative;
  top: -20px;         /* margin-top の代わりに top の方が確実にズレます */
  display: block;
}




.rvr-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin-bottom:12px;
}
.rvr-row{
  display:flex;
  gap:8px;
  align-items:center;
}
.rvr-label{
  font-weight:600;
  color:#374151;
}
.rvr-val{
  color:#111827;
}

/* Q&A */
.rvr-qa{
  border-top:1px solid #f3f4f6;
  
}
/* 共通：各Q&Aブロック */
.rvr-qa-item {
  margin: 12px 0;
}

/* 5番目だけ特別デザイン */
.rvr-qa-item:nth-of-type(5) {
  border: 4px solid #032768;  /* 濃い青線 */
  border-radius: 12px;        /* 角丸 */
  border-top: none;           /* 上部なし（画像があるため） */
  
  box-sizing: border-box;
}

.rvr-q{
  font-weight:700;
  margin-bottom:4px;
  color:#1f2937;

}
.rvr-a p{
  margin:0 0 8px;
  line-height:1.7;
  color:#111827;
	
}
.rvr-a{padding:12px}

/* Stars (base = gray, fill = overlaid gold width%) */
.rvr-stars{
  position:relative;
  display:inline-block;
  font-size:18px;
  line-height:1;
}
.rvr-stars-base,
.rvr-stars-fill{
  letter-spacing:2px;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;
}
.rvr-stars-base{
  color:#e5e7eb; /* gray-200 */
}
.rvr-stars-fill{
  color:#f59e0b; /* amber-500 */
  position:absolute;
  top:0;
  left:0;
  white-space:nowrap;
  overflow:hidden;
}
.rvr-score{
  margin-left:6px;
  color:#6b7280; /* gray-500 */
  font-size:14px;
}

/* ラベルを確実に表示（他CSSで display:none; されている場合の保険） */
.rvr-label,
.rvr-q{
  display:block !important;
}

@media (max-width:640px){
  .rvr-meta{flex-direction:column;gap:6px;}
  .rvr-card{padding:16px;}
}
