@charset "euc-jp";

/* タスクアラートリスト
------------------------------------------------ */
/* 汎用 */
.txt_center { text-align: center;}

/* タスクアラートリスト メイン */
#contents {
    padding: 8px 0 0;
}
#contents h2 {
    padding: 8px 0 5px 8px;
}
#tasklist {
    background: #fff;
    padding: 10px 10px 25px;
}

/* 書き換え */
.icon_point {
    padding: 10px 10px 0;
    font-size: 1.6rem;
    background: #47c2c9;
    color: #fff;
    font-weight: bold;
}

/* リスト */
.tasklist_list {
    background: #47c2c9;
    padding: 10px;
    margin-bottom: 20px;
}
.tasklist_list li {
    width: 100%;
    border-bottom: #bcd8da 1px solid;
    background: #fff;
    display: table;
}
.tasklist_list li span {
    vertical-align: middle;
    display: table-cell;
}
.tasklist_icon { padding: 10px;}
.tasklist_name {
  width: 100%;
  padding: 10px 25px 10px 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #50433d;
}
.conditions {
    font-size: 1.1rem;
    color: #f0666c;
}
.pcsite {
    font-size: 1.1rem;
}

/* 獲得予定アイコン */
.tasklist_list .yotei {
  display: inline-block;
  margin: 0 5px 0 3px;
  font-weight: normal;
}

/* 矢印 */
.tasklist_list li a {
    position: relative;
    display: block;
}
.tasklist_list li a::before,
.tasklist_list li a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    content: '';
    width: 12px;
    height: 3px;
    background: #534741;
    border-radius: 4px;
}
.tasklist_list li a::before {
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tasklist_list li a::after {
    margin-top: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 未プレイ表示 */
.tasklist_list li.unfinish {
  background: #fffae4;
}
.tasklist_list li.unfinish .yet {
  width: 60px;
  box-sizing: border-box;
  display: block;
  margin-bottom: 5px;
  padding: 1px 3px 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #f0666c;
  letter-spacing: 1px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  animation: animScale 4s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state:running;
}
@keyframes animScale {
0% { transform: scale(0.8, 0.8); }
5% { transform: scale(1.2, 1.2); }
10% { transform: scale(1, 1); }
15% { transform: scale(1.1, 1.1); }
20% { transform: scale(1, 1); }
100% { transform: scale(1, 1); }
}