@charset "UTF-8";
/* CSS Document */

html{
	overflow-x: hidden;
	background-color: #000;
}

body{
	overflow-x: hidden;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #FFF;
}

main .inner{
	width: 980px;
	margin: auto;
}

header{
	position: relative;
}

header .inner{

}

header h1{
	width: 750px;
	margin: auto;
	text-align: center;
}

footer{
	text-align: center;
	padding: 50px 0 20px;
}

footer .inner{
	width: 980px;
	margin: auto;
	position: relative;
}

footer .btnWrap{
	display: block;
	position: absolute;
	right:0;
	bottom:0;
}

footer .btnWrap img{
}

footer .name{
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: 300;
	display: inline-block;
	font-size: 19px;
	letter-spacing: 2px;
	margin-bottom: 45px;
	color: #FFF;
	letter-spacing: 3px;
}

footer .copy{
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1.5em;
}

/*改行切り替えクラス*/
/*改行クラス（PC）*/
.breakLinePC{
	display:block;
}

/*改行クラス（SP）*/
.breakLineSP{
	display:inline;
}

/*PCのみ表示コンテンツ*/
.onlyPC{
	display:block;
}

/*スマホのみ表示コンテンツ*/
.onlySP{
	display:none;
}

/*リンク要素にカーソル乗せた時の変化*/
a:hover{
	opacity:0.9;
}

.noLink{
	pointer-events: none;
	cursor: default;
}

/*画面サイズが1250px以下の場合*/
@media screen and (max-width: 1250px) {	
	.inner{
		width:auto;
	}
}


/*画面サイズが1100px以下の場合*/
@media screen and (max-width: 1100px) {
	main .inner{
		width: auto;
	}
}


@media screen and (max-width: 980px) {
	.inner {
		width: auto;
		padding: 0 20px;
	}
	
	footer .inner{
		width: auto;
	}
	
	footer .btnWrap{
		width: 25%;
		display: block;
		position: absolute;
		right: 10px;
	}
	
	footer .btnWrap img{
		width: 100%;
	}	
}

/*画面サイズが850px以下の場合*/
@media screen and (max-width: 850px) {

}

/*画面サイズが800px以下の場合*/
@media screen and (max-width: 800px) {

}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {

	footer .btnWrap {
		width: 50%;
		position: relative;
		margin: 0 auto 20px;
		right: 0;
		left: 0;
		display: block !important;
	}
	
	/*改行クラス（SP）*/
	.breakLineSP{
		display:block;
	}
	
	/*改行クラス（PC）*/
	.breakLinePC{
		display:inline;
	}
	
	/*PCのみ表示コンテンツ*/
	.onlyPC{
		display:none;
	}
	
	.onlySP{
		display:block;
	}
}

/*画面サイズが600px以下の場合*/
@media screen and (max-width: 600px) {
	footer .btnWrap {
		width: 70%;
	}
}

/*画面サイズが560px以下の場合*/
@media screen and (max-width: 560px) {

}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {

}


/*画面サイズが400px以下の場合*/
@media screen and (max-width: 400px) {

}

/*回り込み解除クラス*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}