<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/**********ã‚«ãƒ«ãƒ¼ã‚»ãƒ«ç”¨**********/
/*ãƒ•ã‚§ãƒ¼ãƒ‰ã‚¤ãƒ³*/
.crs-fade-in {
    animation-name: crs-fade-in;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
}

@keyframes crs-fade-in {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

/*æ‹¡å¤§*/
.crs-expand {
    animation-name: crs-expand;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
}

@keyframes crs-expand {
	0% {
        -ms-transform:scale(0.5,0.5);
        -webkit-transform:scale(0.5,0.5);
        transform:scale(0.5,0.5);
		opacity:0;
	}
	100% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
}

/*ä¸Šã‹ã‚‰ç§»å‹•*/
.crs-move-from-above {
    animation-name: crs-move-from-above;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
    
}

@keyframes crs-move-from-above {
    0% {
        -ms-transform:translateY(-60px);
        -webkit-transform:translateY(-60px);
        transform:translateY(-60px);
        opacity:0;
    }
    100% {
        -ms-transform:translateY(0px);
        -webkit-transform:translateY(0px);
        transform:translateY(0px);
        opacity:1;
    }
}

/*ä¸‹ã‹ã‚‰ç§»å‹•*/
.crs-move-from-bottom {
    animation-name: crs-move-from-bottom;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
    
}

@keyframes crs-move-from-bottom {
    0% {
        -ms-transform:translateY(60px);
        -webkit-transform:translateY(60px);
        transform:translateY(60px);
        opacity:0;
    }
    100% {
        -ms-transform:translateY(0px);
        -webkit-transform:translateY(0px);
        transform:translateY(0px);
        opacity:1;
    }
}

/*å·¦ã‹ã‚‰ç§»å‹•*/
.crs-move-from-left {
    animation-name: crs-move-from-left;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
    
}

@keyframes crs-move-from-left {
    0% {
        -ms-transform:translateX(-30px);
        -webkit-transform:translateX(-30px);
        transform:translateX(-30px);
        opacity:0;
    }
    100% {
        -ms-transform:translateX(0px);
        -webkit-transform:translateX(0px);
        transform:translateX(0px);
        opacity:1;
    }
}

/*å³ã‹ã‚‰ç§»å‹•*/
.crs-move-from-right {
    animation-name: crs-move-from-right;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
    
}

@keyframes crs-move-from-right {
    0% {
        -ms-transform:translateX(30px);
        -webkit-transform:translateX(30px);
        transform:translateX(30px);
        opacity:0;
    }
    100% {
        -ms-transform:translateX(0px);
        -webkit-transform:translateX(0px);
        transform:translateX(0px);
        opacity:1;
    }
}

/*æŒ¿å…¥ãƒ¯ã‚¤ãƒ—*/
.crs-wipe-in {
    animation-name: crs-wipe-in;
    animation-delay: ;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
}

@keyframes crs-wipe-in {
	0% {
        -ms-transform:scale(3,3);
        -webkit-transform:scale(3,3);
        transform:scale(3,3);
		opacity:0;
	}
	100% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
}

/*ã‚ºãƒ¼ãƒ&nbsp;ã‚¤ãƒ³*/
.crs-zoom-in {
    animation-name: crs-zoom-in;
    animation-delay: ;
    animation-duration: 15s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

@keyframes crs-zoom-in {
	0% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
	100% {
        -ms-transform:scale(1.2,1.2);
        -webkit-transform:scale(1.2,1.2);
        transform:scale(1.2,1.2);
		opacity:1;
	}
}

/*ã‚ºãƒ¼ãƒ&nbsp;ã‚¤ã‚¢ã‚¦ãƒˆ*/
.crs-zoom-out {
    animation-name: crs-zoom-out;
    animation-delay: ;
    animation-duration: 15s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

@keyframes crs-zoom-out {
	0% {
        -ms-transform:scale(1.2,1.2);
        -webkit-transform:scale(1.2,1.2);
        transform:scale(1.2,1.2);
		opacity:1;
	}
	100% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
}


/**********å…±é€š**********/
/*ã‚ºãƒ¼ãƒ&nbsp;ã‚¤ãƒ³*/
.zoom-in {
    animation-name: zoom-in;
    animation-duration: 15s;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

@keyframes zoom-in {
	0% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
	100% {
        -ms-transform:scale(1.2,1.2);
        -webkit-transform:scale(1.2,1.2);
        transform:scale(1.2,1.2);
		opacity:1;
	}
}

/*ã‚ºãƒ¼ãƒ&nbsp;ã‚¤ã‚¢ã‚¦ãƒˆ*/
.zoom-out {
    animation-name: zoom-out;
    animation-duration: 15s;
    animation-direction: normal;
    animation-play-state: running;
    animation-timing-function: ease;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

@keyframes zoom-out {
	0% {
        -ms-transform:scale(1.2,1.2);
        -webkit-transform:scale(1.2,1.2);
        transform:scale(1.2,1.2);
		opacity:1;
	}
	100% {
        -ms-transform:scale(1,1);
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
		opacity:1;
	}
}</pre></body></html>