@charset "utf-8";
/* CSS Document */

@media screen and (min-width: 1025px) {
/* 背景 ブログ */
.blog-pc {
	background-repeat: no-repeat;
	background-position: center top 60%; 
	background-image: url(../images/blog9-3.jpg);
	background-attachment: fixed;
	background-size: cover;
}
}

@media screen and (max-width: 1024px) {
/* 背景 ブログ */
.blog-pc {
	background: none
} /*PC用の背景はオフ*/
.blog-sma::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/blog9-3.jpg); /*fixedをトル！*/
	-webkit-background-size: cover;/*Android4*/
}
}

@media print {
/* 背景 ブログ */
.blog-pc {
	content: "";
	display: block;
	background-repeat: no-repeat!important;
	background-position: center!important;
	background-image: url(../images/blog9-3.jpg)!important;
	background-size: cover!important;
}
}