.reminder {
  background: #fff;
  font-weight: bold;
  margin: 0 auto;
  padding: 20px 4%;
  max-width: 1280px;
}
.reminder-text {
  background: #f7f7f7;
  padding: 8px 16px;
}
.reminder-text a {
  color: #3366cc;
}

.vf-section {
  background: #fff;
  margin: 0 auto;
  padding: 2.5rem 4% 20px;
}
/* ▼ 全体リストをグリッドに（3列で折り返し） */
.vf-section-rooms {
  display: flex;
  flex-wrap: wrap;              /* 折り返し可 */
  gap: 1.5rem;                  /* アイテム間の余白 */
  justify-content: flex-start;
  margin: 20px auto;
}


/* ▼ 各アイテム（カード） */
.vf-section-rooms-item {
  width: 280px;                 /* 固定幅 */
  flex-shrink: 0;               /* 幅が縮まないように */
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.vf-section-rooms-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ▼ サムネイル画像（大きめ） */
.vf-section-rooms-item-image {
  position: relative;
}
.vf-section-rooms-item-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;  /* サムネ比率をYouTube風に */
  object-fit: cover;
}

/* ▼ テキスト部分（タイトルとビュー数） */
.vf-section-rooms-item-text {
  padding: 0.75rem 1rem;
}

.vf-section-rooms-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
  line-height: 1.4;
}

.vf-section-rooms-item-views small {
  font-size: 0.85rem;
  color: #6b7280;
}

.rooms-item-purchased-flg {
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: 2px 4px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.profile-section {
  padding: 0 0 12px 1em;
}
.profile-stamp,
.profile-badge {
  display: flex;
  flex-wrap: wrap;
}
.profile-stamp-item,
.profile-badge-item {
  margin: 0 8px 16px;
  width: 40px;
}
.profile-stamp-item img,
.profile-badge-item img {
  width: 100%;
}
.profile-guidebooks-item {
  font-size: .9em;
}


@media (max-width: 768px) {
.vf {
  flex-direction: column;   /* 縦並び */
  gap: 1.5rem;
}
.vf-sidebar {
  width: 100%;
  order: -1;                /* 上に表示したい場合 */
}
.vf-section-rooms-item {
  margin: 0 0 12px;
  width: 100%;
}
.vf-section-rooms-item-image {
  height: 200px;
}
}
