﻿@charset "utf-8";
/* CSS Document */

#main{
	width: 1000px;
	margin: 0 auto;
}
.sp{ display: none; }
.pc{ display: block; }

.bg_brn{
	background: url(../img/maintenance_bg_pc.jpg) no-repeat center;
    background-size: cover;
}

.sticky_brn.fixed {
  position: fixed;
  top: 0px;
  left: auto;
  z-index: +1;
  -webkit-transition: .3s;
  transition: .3s;
}


@media (max-width: 896px){

	#main{
		width: 100%;
	}
	.sp{ display: block; }
	.pc{ display: none; }

	.bg_brn{
		background: url(../img/maintenance_bg_sp.jpg) no-repeat center;
	    background-size: cover;
	}
	.sticky_brn.fixed {
	  top: 0px;
	}


}
