/* ページ遷移のタイルワイプ */
.wipe { position: fixed; inset: 0; z-index: 100; display: grid; pointer-events: all; }
@keyframes tileIn  { from { transform: scale(0); } to { transform: scale(1.2); } }
@keyframes tileOut { from { transform: scale(1.2); } to { transform: scale(0); } }

/* カウントダウンの右端1桁 */
.count-last { color: #D61515; }

/* トップの News はリンク。下線は引かず、ホバーで薄くする */
a.news__text { color: inherit; text-decoration: none; transition: opacity .2s; }
a.news__text:hover { opacity: .55; }
