@charset "utf-8";
.nav_footer {
	justify-content: flex-start;
}
nav#nav_global ul li{
	flex-grow: 1;
}
nav#nav_global ul li a {
	width: 100%;
}
.home_01 .container {
	justify-content: center;
}
.news_area{
	display: flex;
    flex-direction: column-reverse;
}
/*-----オープニングアニメーション-----*/
.op_anime{
	background: url(../images/home/bg_home01.jpg);
	background-color: #E9EDDE;
	position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99999;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
}
.op_anime .fixed {
	opacity: 0;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 12px;
	z-index: 99999;
	margin: auto;
	animation-fill-mode: forwards;
	animation-duration: 2.5s;
	animation-name: text_line;
	animation-timing-function: ease;
	text-align: center;
	/* max-width: 480px; */
	padding: 64px;
	width: 100%;
	height: 100%;
	transition: 1s;
}
.op_anime .fixed img{
	display: block;
	margin: 12px;
}
@keyframes text_line {
	0% {
	  opacity: 0;
	  transform: translateY(10%);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
@media screen and (max-width: 834px){

}

@media screen and (max-width: 640px){
	.op_anime .fixed{
		flex-direction: column;
	}
}
