@charset "utf-8";

body {
	color:#444444;
	font-family: 'Open Sans', 'sans-serif', 'Meiryo', 'メイリオ' , 'Hiragino Kaku Gothic ProN' , 'ヒラギノ角ゴ ProN' , 'YuGothic ' , '游ゴシック' ;
	font-size: 15px;
	line-height: 170%;
}
.sample-text1 {
    font-size: 20px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 2s;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
