﻿
.l-image .image-unit .image-item {
	max-width: 26rem;
}

.sun_wrapper {
	opacity: 0;
}

/* 太陽が昇る */
.rising_sun .sun_wrapper {
	animation: rising_sun 1s;
	opacity: 1;
}
@keyframes rising_sun {
	0% {
		margin-top: 20rem;
		transform: rotate(-90deg) translate(0, -20rem) rotate(90deg);
		opacity: 0;
	}
	100% {
		margin-top: 20rem;
		transform: rotate(0deg) translate(0, -20rem) rotate(0deg);
		opacity: 1;
	}
}

/* 太陽の放射 */
.rising_sun .sun_wrapper .sun_radiate {
	animation: sun_radiate 1s;
}
@keyframes sun_radiate {
	0% {
		transform: scale(0);
	}
	70% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

/* 太陽が昇る時のテキストの影 */
.rising_sun .text_shadow {
	animation: sun_shadow 1s;
	text-shadow: 0rem 0rem 0px #E7E7E8;
}
@keyframes sun_shadow {
	0% {
		text-shadow: 4rem 2rem 0px #E7E7E8;
	}
	100% {
		text-shadow: 0rem 0rem 0px #E7E7E8;
	}
}