@charset "utf-8";

/* ///////////////////////////////////////////////////////////////////

フォロワー、フォロウィー

/////////////////////////////////////////////////////////////////// */

.followers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px 0;
}

.followers_item {
  padding: 10px;
  border: 1px solid #c9c7c7;
  border-radius: 8px;
}

.followers_item_columns {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
}

.followers_item_column.--header {
}

.followers_item_column.--body {
  overflow: hidden;
}

.followers_item_thumbContainer {
  position: relative;
}

.followers_item_thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
}

.followers_item_thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.followers_item_thumb_sex {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.5em;
  padding: 0.25em 0;
  border-radius: 10px;
  background-color: #333;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.followers_item_thumb_sex.--male {
  background-color: blue;
}

.followers_item_thumb_sex.--female {
  background-color: pink;
}

.followers_item_buttons {
  margin-top: 10px;
}

/* jsの都合上クラス名を変えたくないので.add_followは完全にオーバーライドする */
.followers_item_buttons .add_follow {
  display: block;
  width: 100%;
  padding: 0.75em 0;
  border-radius: 4px;
  font-size: 10px;
  text-align: center;
  background: transparent;
  border: 1px solid #20b3d8;
  color: #20b3d8 !important;
  white-space: nowrap;
}

.followers_item_buttons .add_follow.active {
  background: #20b3d8;
  color: #fff !important;
}

.followers_item_body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.followers_item-badge {
  font-size: 11px;
}
.followers_item_userName {
  display: flex;
  align-items: center;
  gap: 5px;
}

.followers_item_userName img {
  flex: none;
  height: 1.25em;
}

.followers_item_userName a {
  flex: auto;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: inherit;
  font-size: 16px;
  font-weight: bold;
}

.followers_item_properties {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.followers_item_properties dl {
  display: grid;
  grid-template-columns: 7em 1fr;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}

.followers_item_properties dt {
  padding: 0.25em 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.followers_item_properties dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.followers_item_profile {
  font-size: 13px;
}

.followers_item_profile_lines {
  --lh: 1.2em;
  --rows: 2;

  height: calc(var(--lh) * var(--rows));
  line-height: var(--lh);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--rows);
  overflow: hidden;
}

.followers_item_buttons2 {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.followers_item_button {
  padding: 0.5em 1em;
  border-radius: 4px;
  background-color: var(--color-primary, #c90037);
  color: #fff !important;
  font-size: 11px;
}

.followers_item figure {
  max-height: 180px;
  height: 100%;
}
.followers_item figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#data_list.followers.followers_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.followers_item.followers_item-list {
  width: calc(100% / 4 - 8px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.followers.followers_list .followers_item_buttons {
  margin-top: auto;
}
.followers_item.followers_item-list .prof_age,
.followers_item.followers_item-list .prof_area {
  font-size: 11px;
  opacity: 0.6;
}
.followers_item-list-box {
  margin-bottom: 10px;
}
