@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document effect
--------------------------------------------------------- */

.effect {
	transform: translateY(20px);
	opacity: 0;
}

.effected {
	animation: effect 1.6s 0s forwards ease-out;
}

@keyframes effect {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

[data-delay="1500"].effected {
	animation-delay: 1.5s;
}

[data-delay="1000"].effected {
	animation-delay: 1.0s;
}

/* ---------------------------------------------------------
	CSS Document privacy
--------------------------------------------------------- */

#privacy {
	padding: 90px 0;
	background: #f9f9f9;
}

#privacy .container {
	width: 980px;
	text-align: justify;
}

#privacy ol {
	margin-top: 1.5em;
}

#privacy li {
	margin-left: 1.4em;
	list-style: decimal;
}

#privacy h3 {
	margin-top: 4em;
	padding-bottom: 15px;
	border-bottom: solid 1px #ccc;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}

#privacy p {
	margin-top: 1.5em;
}

#privacy p.right {
	text-align: right;
}
