@charset "UTF-8";

/* =========================
   レイアウト
========================= */
.folder_wrap {
  display: flex;
  gap: 45px;
}

.folder_l,
.folder_r {
  width: 48%;
}

.folder_l {
  position: relative;
}


/* =========================
   リスト枠
========================= */
.post_cont .my_folder,
.card_list {
  border: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
  padding: 0;
}

/* =========================
   カードアイテム
========================= */
.post_cont .card_item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}

.post_cont .card_item:last-child {
  border-bottom: none;
}

/* ホバー演出 */
.post_cont .card_item:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* =========================
   画像
========================= */
.post_cont .card_item_img {
  margin-right: 12px;
  width: 50px;
  border-radius: 10px;
  background: #f3f3f3;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

/* =========================
   テキスト
========================= */
.post_cont .card_item_name {
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  color: #1f2937; /* ダークネイビー */
  line-height: 1.4;
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.post_cont .card_item_count {
  padding-left: 10px;
  font-size: 13px;
  color: #666;
  pointer-events: none;
  user-select: none;
}

.post_cont .card_item_count::before {
  content: '×';
  margin-right: 2px;
}

/* 右側はカウント非表示 */
.folder_r .card_item .card_item_count {
  display: none;
}

/* =========================
   カード色
========================= */
.s_card { background: #fffce3; }
.m_card { background: #e8f3ff; }
.g_card { background: #ffe8e8; }

.c_card,
.sb_card,
.si_card {
  background: linear-gradient(135deg, #9e9e9e, #fffce3);
}

.mb_card,
.mi_card {
  background: linear-gradient(135deg, #9e9e9e, #e8f3ff);
}

.gb_card,
.gi_card {
  background: linear-gradient(135deg, #9e9e9e, #ffe8e8);
}
