@charset "utf-8";

/* デザイン(PC) */
@media screen and (min-width: 641px) {
    img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
#video-area{
	width : 100%;
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
	margin : 0;
	margin-top : 90px;
	padding : 0;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 100%; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: auto; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
	.site_logo{
		width : 100%;
		background:rgba(255,255,255,0.8);
		padding : 0px;
		height : 90px;
		line-height : 90px;
	}
	.logo{
		float : left;
		width : 65%;
		padding-top : 10px
}
	.nav{
		float : right;
		margin-right : 0
		width : 35%;
	}
	.nav li{
		float : left;
		list-style : none;
		text-align : center;
	}
	.nav li img{
		height : 90px;
	}

/* デザイン（タブレット） */
@media screen and (max-width: 1024px) {
    img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
    }