@charset "utf-8";
@media screen and (min-width: 978px) {
	section#headerContents{margin-bottom:-65px;}

    .hm_wrap{display:block}

	div#headerLogo,div#headerGlobalNavi{z-index:3}

    div#headerLogo h1{position:fixed}

	nav#headerGlobalNaviPc ul.nav li a{
        text-shadow: 1px 1px 16px #fff;
        font-weight: bold;
		color:#000;
	}

	.ccm-page main{
/*		position:absolute; */
        width:100%;
        top:0;
    }

	div#HeroPc{width:100%;height:100vh}

	div#HeroPc>div{
		height:100%;
		position:relative;
		top:50%;left:50%;transform:translate(-50%, -50%);
		background-position:center;
		background-repeat:no-repeat;
		background-size:cover;
	}

	/*====== 上に消えるアニメ ======*/
	#headerGlobalNaviPc.UpMove, .hm_wrap.UpMove{
		animation: UpAnime 0.5s forwards;
		}
		@keyframes UpAnime{
		from {
			opacity: 1;
			transform: translateY(0);
		}
		to {
			opacity: 0;
			transform: translateY(-100px);
		}
		}

		/*====== 下に消えるアニメ ======*/
		#headerGlobalNaviPc.DownMove, .hm_wrap.DownMove{
		animation: DownAnime 0.5s forwards;
		}
		@keyframes DownAnime{
		from {
			opacity: 0;
			transform: translateY(-100px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
		}



}