@charset "utf-8";

*, *::before, *::after {
  box-sizing: border-box;
}

.bg_body {
	position: relative;
	z-index: -1;
}
.bg_body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 390px;
	background: url("../images/entry/body_bg_pc.jpg") no-repeat bottom center / cover;
}

/*********** HEADER ***********/

header .logo {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 330px;
	margin: 10px auto;
}


@media screen and (max-width: 767px) {

.bg_body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 260px;
	background: url("../images/entry/body_bg_sp.jpg") no-repeat bottom center / cover;
}

/*********** HEADER ***********/

header .logo {
	width: 50%;
	margin: 10px auto;
}

}


