@charset("utf-8");

* { color: #333; font-size: 15px; font-family: "Times New Roman","游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","HGS明朝E","ＭＳ Ｐ明朝","MS PMincho",serif; box-sizing: border-box; }
html { margin: 0px; padding: 0px; width: 100%; height: 100vh; background: #fff; }
body { margin: 0px; padding: 0px; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; }
div { margin: 0px; padding: 0px; width: 100%; color: #333; font-size: 200%; text-align: center; letter-spacing: 0.15em; opacity: 0.0; transform: translateY(100%); animation: Top_ani 3s ease-in-out forwards; }

@keyframes Top_ani {
	20% { transform: translateY(100%); opacity: 0.0; }
	100% { transform: translateY(0%); opacity: 1.0; }
}