@charset "utf-8";

/* =============================================================================================================
	通常スタイル
============================================================================================================= */


/* all style
--------------------------------------------------------- */

html {
	font-size: 16px;
	height: 100%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #222;
}
body {
	background-color: #111111;
	background-image: url("../img/pattern.png");

}
a {
    color: #222;
    text-decoration: none;
}

.inline_B {
	display: inline-block;
}

.dispB {
	display: block;
}
.pc_only {
	display: block;
}
.sp_only {
	display: none;
}


.back-to-top {
	background-color: #363636;
	border-radius: 3px;
    bottom: -40px;
	color: #ffffff;
    cursor: pointer;
	line-height: 100%;
	padding: 8px;
    position: fixed;
    right: 20px;
    text-decoration: none;
    transition: all 0.2s ease-out;
    z-index: 9999;
}
.back-to-top.turn_on {
    bottom: 20px;
}
.back-to-top:hover{
    opacity: 0.7;
}


header h1 {
	display: none;
}


.contents {
	box-shadow: 0 5px 30px rgba(255,255,255,0.2);
	margin: 0 auto;
	max-width: 1280px;
	width: 100%;
	
}
.contents img {
	display: block;
	width: 100%;
}



footer #copyright {
	background-color: #111111;
	box-shadow: 0 5px 30px rgba(255,255,255,0.2);
	color: #ffffff;
	line-height: 110%;
	margin: 0 auto;
	max-width: 1280px;
	padding: 10px;
	text-align: center;
	width: 100%;
}



/* =============================================================================================================
	767px以下
============================================================================================================= */

@media screen and (max-width: 767px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
    body {
        font-size: 12px;
    }
    
}



