/********
    Special Namaiki - ギャラリーをカード風に
*********/
.wrap-entry {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.wrap-namaiki-frame {
  float: left;
  width: 49%;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wrap-namaiki-frame:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,255,255,0.3);
}

.lp-namaiki-frame {
  padding: 4px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(0,255,255,0.2), rgba(0,136,255,0.1));
}
.lp-namaiki-frame img {
  width: 100%;
  border-radius: 10px;
}
.lp-namaiki-title {
  text-align: center;
  font-size: 14px;
  margin-top: 6px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,255,255,0.6);
}

@media screen and (min-width: 767px) {
  .wrap-namaiki-frame { width: 33%; }
}
@media screen and (min-width: 900px) {
  .wrap-entry { width: 800px; }
}

/********
    NAMAIKI一覧
*********/
.wrap-namaiki {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.namaiki-list {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.namaiki-list li {
  list-style: none;
  width: 120px;
  transition: transform 0.4s ease;
}
.namaiki-list li a {
  display: block;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 6px rgba(0,255,255,0.2);
}
.namaiki-list li a img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.namaiki-list li a:hover img {
  transform: scale(1.15);
}
.namaiki-chara-name {
  font-size: 12px;
  padding: 6px;
  background: rgba(0,255,255,0.05);
/*  border-top: 1px solid rgba(0,255,255,0.2);*/
}
.namaiki-chara-name span {
  white-space: nowrap;
  display: inline-flex;
  margin: 0 4px;
/*  color: #fff;*/
}
@media screen and (max-width: 500px) {
  .namaiki-chara-name { font-size: 10px; }
}

/* ===== 絞り込みバー（メイン上部） ===== */
.filter-bar {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.333);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: 0 0 12px rgba(79, 79, 79, 0.15);
}
.filter-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgb(255, 255, 255);
  text-shadow: 0 0 4px rgba(255,255,255,0.5);
}
.chip.muted { opacity: 0.5; }
.chip.clear {
  background: transparent;
  border-color: #555;
  color: #aaa;
}
.btn-filter {
  padding: 8px 14px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-filter:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

/* === カッコいいセレクトマルチ === */
.select-multi {
  width: 100%;
  height: 150px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #fff5;
  background: linear-gradient(160deg, #0a0a0a, #1a1a1a);
  color: #eee;
  font-size: 14px;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 0 6px rgba(0, 255, 255, 0.15),
              0 0 8 px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.select-multi:hover {
  border-color: #fff;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.4);
}
.select-multi option {
  color: #ccc;
  padding: 8px 10px;
  border-radius: 6px;
  margin: 3px 0;
  transition: all 0.2s ease;
}
.select-multi option:hover {
  background: linear-gradient(90deg, #fff3, rgba(0, 0, 0, 0.2));
  color: #fff;
}
.select-multi option:checked {
  background: linear-gradient(90deg, #8f8f8f, rgb(89, 89, 89));
  color: #ffffff;
  font-weight: bold;
}
.select-multi:focus {
  border-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 500px) {
  .select-multi {
    font-size: 12px;
    min-height: 120px;
  }
}
