@charset "UTF-8";

/* --------------------------------
 * サイトオープン時の遅れ
 * -------------------------------- */

.header-f {
    animation: fadeIn 0s ease 0s 1 normal;
    -webkit-animation: fadeIn 0s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    80% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
	80% {opacity: 0}
    100% {opacity: 1}
}

/* --------------------------------
 * about (info.html)プライバリーポリシー
 * -------------------------------- */

.info{
	margin: 150px 10% 0;
}

#about{
	width: 100%;
	padding: 100px 15% ;
	background: #fff;
	color: #000;
	
}

.info-text{
	font-size: 1.3rem;
	text-align: left;
	line-height: 3rem;
}

.info-text dt{
	margin-top: 30px;
}



/* --------------------------------
 * メディアクエリー
 * -------------------------------- */
@media screen and (max-width: 768px) {
	
.info{
	margin: 100px 10% 0;
}

/*メディアクエリーのケツ*/	
}


	