@charset "utf-8";
/* CSS Document */

#contents #right .move{
    /*stickyで固定*/
    position: -webkit-sticky;/*Safari*/
	position: sticky;
    /*固定したい位置*/
	top: 0px;
    /*ナビゲーションの形状*/



}
#contents #right .move p {
    background-color: rgba(199,42,45,1.00);
    color: rgba(255,255,255,1.00);
}
section {
	margin-bottom: 10px;
    margin-top: 0px;
}







@media screen and (max-width:640px){

#contents #right .move{
    position: relative;/*stickyからrelativeに戻す*/
    top: 0;
    width: 100%;
}
}
