@charset "UTF-8";

p.text span{
margin-top: 18px;
display: block;
font-size: 0.8em;
font-weight: normal;
}
/* アニメーションの枠 */
#anim{
    width: 980px;
    height:250px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0px;
}
#anim:after{
    content:'';
}
/* top や left などの絶対位置でアニメーションさせる */
#anim img, #anim p, #anim h3{
    position:absolute;
}
/* 画像は全て透明にしておく */
#anim img{
    opacity: 0;
    -moz-opacity: 0; /*for Firefox*/
    filter: alpha(opacity=0); /*for IE*/
}
/* 2枚目の背景画像は右側からスクロールする */
#anim_bg_2{
    right:0;
}