@charset "UTF-8";

/* #############################################################################
 * キャラカード
 * #############################################################################
 */
.card-chara {
  position: relative;
  width: 416px;
  height: 296px;
  background-size: contain;
  transition:0.4s;
}
.card-chara div{
  transition:0.4s;
}
.card-chara__frame {
  /* ---------------------------------------------------------------------------
   * 枠
   * ---------------------------------------------------------------------------
   */
  z-index: 0;
  width: 402px;
  height: 282px;
  position: absolute;
  left: 7px;
  top: 7px;
  border-radius: 10px;
  /* background: -webkit-gradient(linear, left top, right top, from(#d4461962), to(#d4461962));
  background: linear-gradient(90deg, #d4461962, #d4461962); */
  background-color: #ffffff;
  border: 2px solid #f2718c;
  box-shadow: 4px 4px 0 #f2718c;
}

.card-chara__pic {
  /* ---------------------------------------------------------------------------
   * キャラ画像
   * ---------------------------------------------------------------------------
   */
  z-index: 300;
  width: 200px;
  height: 280px;
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 5px rgba(81, 39, 47, 0.4);
  box-shadow: 3px 3px 5px rgba(81, 39, 47, 0.4);
}

.card-chara__profile-view {
  /* ---------------------------------------------------------------------------
   * キャラ画像にオーバーレイ表示するプロフィール
   * ---------------------------------------------------------------------------
   */
  z-index: 400;
  width: 200px;
  height: 280px;
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 20px;
  color: #fff;
}

.card-chara__dl-view {
  /* ---------------------------------------------------------------------------
   * キャラ画像にオーバーレイ表示するダウンロード表示
   * ---------------------------------------------------------------------------
   */
  display: none;
  z-index: 400;
  width: 200px;
  height: 280px;
  padding-top: 100px;
  position: absolute;
  text-align: center;
  color: white;
  font-size: 13px;
  left: 8px;
  top: 8px;
  color: #fff;
}

.card-chara__dl-icon {
  /* ---------------------------------------------------------------------------
   * キャラ画像にオーバーレイ表示するダウンロード表示のアイコン
   * ---------------------------------------------------------------------------
   */
  font-size: 60px;
}

.card-chara__profile-p {
  /* ---------------------------------------------------------------------------
   * カード画像にオーバーレイ表示するプロフィールの段落
   * ---------------------------------------------------------------------------
   */
  margin: 0 0 10px;
}

.card-chara__bg {
  /* ---------------------------------------------------------------------------
   * データ部分背景
   * ---------------------------------------------------------------------------
   */
  /* z-index: 100;
    width: 200px;
    height: 272px;
    position: absolute;
    left: 208px;
    top: 16px;
    border-bottom-right-radius: 10px;
    background: #ffffff70;
    background-size: cover;
    background-blend-mode: multiply; */
}

.card-chara__name {
  /* ---------------------------------------------------------------------------
   * キャラ名
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  width: 200px;
  height: 27px;
  position: absolute;
  left: 208px;
  top: 22px;
  border-bottom: dotted 1px #f09aa7;
  padding: 0 6px 0 12px;
  color: #f09aa7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 900;
}

.card-chara__icon,
.card-chara__icon--sex,
.card-chara__icon--voicetype,
.card-chara__icon--bust,
.card-chara__icon--height {
  /* ---------------------------------------------------------------------------
   * アイコン
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  position: absolute;
  /* border-radius: 7px; */
  top: 55px;
  height: 48px;
}

.card-chara__icon--sex {
  /* 性別 */
  left: 214px;
}

.card-chara__icon--voicetype {
  /* 性格 */
  left: 257px;
}

.card-chara__icon--bust {
  /* 胸 */
  left: 321px;
}

.card-chara__icon--height {
  /* 身長 */
  left: 362px;
}

.card-chara__comment {
  /* ---------------------------------------------------------------------------
   * コメント
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  width: 184px;
  height: 103px;
  position: absolute;
  left: 214px;
  top: 109px;
  border: dashed 2px #f29eae; 
  border-radius: 5px;
  box-shadow:0 0 2px #fff inset;
  /* */
  /* border-top-width: 7px; */
  /*  */
  padding: 7px;
  background-color: #fff1df;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #591400;
  font-size: 1.1rem;
}

.card-chara__profile-button {
  /* ---------------------------------------------------------------------------
   * 詳細表示
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  width: 175px;
  height: 32px;
  position: absolute;
  left: 218px;
  top: 218px;
  padding-left: 24px;
  background-color: #fdecef;
  border:dashed 1px #f9c2cf;
	border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  color: #df7083;
  transition:0.4s;
}

.card-chara__profile-button:hover {
  width: 195px;
  left: 208px;
  color: #ffffff;
  background-color: #f297a8;
  border-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: default;
}

.card-chara__profile-icon {
  /* ---------------------------------------------------------------------------
   * 詳細表示の横棒マーク
   * ---------------------------------------------------------------------------
   */
  height: 18px;
  width: 18px;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 8px;
  color: #ffffff;
  background-color: #f39eaf;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-chara__time {
  /* ---------------------------------------------------------------------------
   * 投稿日時
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  height: 14px;
  position: absolute;
  left: 220px;
  top: 254px;
  color: #666;
  font-size: 0.6rem;
}

.card-chara__handle-name,
.card-chara__handle-name--active {
  /* ---------------------------------------------------------------------------
   * 投稿者名
   * ---------------------------------------------------------------------------
   */
  z-index: 200;
  width: 176px;
  height: 20px;
  position: absolute;
  left: 220px;
  top: 266px;
  border-radius: 6px;
  padding: 2px 5px 0;
  font-size: 1.2rem;
  color: #f0a5b5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-chara__handle-name:hover,
.card-chara__handle-name--active:hover {
  background-color: #f39eaf;
  color: #ffffff;
}

.card-chara__handle-name--active {
  /* 投稿者名・強調表示 */
  background-color: #f39eaf;
  color: #ffffff;
  pointer-events: none;
}

.card-chara__applause {
  position: absolute;
  right: 215px;
  bottom: 252px;
  z-index: 400;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.card-chara__applause .applause-btn {
  color: #ffffff;
  background-color: #1ceda9;
  border: solid 1px #1ceda9;
  font-size: 14px !important;
  text-shadow: 1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  padding-top: 0px;
  padding-left: 1px;
}

.card-chara__applause .applause-btn:hover,
.card-chara__applause .applause-btn:active,
.card-chara__applause .applause-btn:visited {
  cursor: pointer;
  background-color: #1ced3f;
  border-color: #1ced3f;
}

.card-chara__applause .applause-btn p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  line-height: 0.85;
}

.card-chara__applause .applause-count {
  margin-bottom: 0;
  margin-top: 2px;
}

.card-chara__applaused {
  pointer-events: none;
  background-color: transparent !important;
  border-color: transparent !important;
}

.card-chara__download {
  position: absolute;
  left: 15px;
  top: 252px;
  z-index: 400;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.card-chara__download .download-btn {
  display: block;
  color: #ffffff;
  background-color: #1ceda9;
  border: solid 1px #1ceda9;
  font-size: 14px !important;
  line-height: 28px;
  text-shadow: 1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  padding-top: 0px;
  padding-left: 1px;
}

.card-chara__download .download-btn:hover {
  cursor: pointer;
  background-color: #1ced3f;
  border-color: #1ced3f;
}

.card-chara__download .download-btn p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  line-height: 0.85;
}

.card-chara__download .applause-count {
  margin-bottom: 0;
  margin-top: 2px;
}

.card-chara__downloaded {
  pointer-events: none;
  background-color: transparent !important;
  border-color: transparent !important;
}

/*# sourceMappingURL=card-chara.css.map */