@charset "UTF-8";

/* Fonts */

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html {
    height: 100%;
    background-color: #363636;
}
body {
    min-width: 1024px;
    min-height: 100vh;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    display: flex;
    flex-direction: column;
}
@media all and (-ms-high-contrast: none){
  body {
    height: 100vh;
	}
}
.container {
    display: flex;
	flex-grow: 1;
}
main {
    width: 80%;
    background-color: #151515;
    padding-bottom: 4em;
}
img.imgWidth {
	width: 100%;
}
img.imgW100 {
	width: 100%;
}
img.imgW90 {
	width: 90%;
}
img.imgW76 {
    width: 76%;
}
img.imgW50 {
	width: 50%;
}
img.imgW60 {
    width: 66%;
}
img.imgW66 {
    width: 66%;
}
img.imgW46 {
	width: 46%;
}
img.imgW32 {
	width: 32%;
}
img.imgH100 {
	height: 100%;
}
img.imgHeight {
	height: 100%;
}
img.imgH480px {
    height: 480px;
}
img.imgH320px {
	height: 320px;
}
img.imgH288px {
	height: 288px;
}
img.imgH272px {
	height: 272px;
}
img.imgH256px {
	height: 256px;
}
img.imgH240px {
	height: 240px;
}
img.imgH196px {
	height: 196px;
}
img.imgH180px {
	height: 180px;
}
img.imgH160px {
	height: 160px;
}
img.thambCannon {
    height: 256px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 2em;
    margin-right: 2em;
    border: thin solid #3D3D3D;
}
.mgBtt32 {
	margin-bottom: 32px;
}
.mgBtt80 {
    margin-bottom: 80px;
}
.mrg8p {
    margin: 8px;
}
.mrg16p {
    margin: 16px;
}
.mgRigh32 {
	margin-right: 32px;
}
.flxSa {
	display: flex;
	justify-content: space-between;
}
.flxSaW {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flxCentW {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.flxWrp {
    display: flex;
    flex-wrap: wrap;
}
a:hover img {
    opacity: 0.5;	
}


/*Slide Show*/

.slideshow {
    width: 640px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: #151515;
    display: flex;
    justify-content: center;
    margin-top: 3em;
}
.slideshow .bxslider  {
    background-color: #151515;
	padding: 0;  
	margin: 0;
}
.bxslider li {
	display: none;
}
.bx-viewport .bxslider li {
  display: block !important;
}
#loader {
	width: 100%;
	height: 100%;
	margin: 0;
	background: #fff;/*Loaderの背景色としたいものを指定*/
	opacity: 1.0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;/*一番前面に出るように（今回はbxSlidrの矢印が9999だったのでそれを超えるようにしました）*/
}
#loader img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -40px;/*Loaderの画像を縦方向中央に表示させるため、画像の高さの半分の40pxだけ上に移動*/
	margin-left: -40px;/*同様に画像の幅の半分の40pxだけ左に移動*/
}


/*Footer*/

footer.footer {
    padding-bottom: 1em;
    text-align: center;
    padding-top: 0.4em;
    background-color: #363636;
}
footer p {
	font-size: 70%;
}


/*Page Navi*/

nav.pageNav {
    padding-top: 1em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2em;
    margin-bottom: 0em;
}
ul.pageNavS {
    height: 32px;
    display: flex;
    border: thin solid #555555;
    font-size: 80%;
    line-height: 120%;
}
ul.pageNavS li {
	width: 50%;
	height: 100%;
	float: left;	
	text-align: center;
}
ul.pageNavS li.pageNavS1 a {
	width: 100%;
	height: 100%;
	color: #000;
	display: flex;
	text-decoration: none;
	background-color: #555555;
	align-items: center;	
	justify-content: center;
}
ul.pageNavS li.pageNavS2 a {
	width: 100%;
	height: 100%;
	color: #555555;
	display: flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
}
ul.pageNavS li.pageNavS1 a:hover, ul.pageNavS li.pageNavS2 a:hover {
	color: #fff;
}
ul.pageNavT {
	display: flex;
	font-size: 80%;
	line-height: 120%;
	justify-content: space-around;
	padding-top: 0.8em;
	padding-bottom: 0.8em;
	letter-spacing: 0.2em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: thin solid #555555;
}
ul.pageNavT li a {
	text-decoration: none;
	color: #838383;
}
ul.pageNavT li a:hover {
	color: #fff;
}


/*Side Bar*/

aside.sidebar {
    background-color: #272727;
    width: 20%;
}
aside.sidebar header {
	padding-left: 1em;
	padding-top: 1em;
	margin-bottom: 2em;
}
aside.sidebar header h1 {
	color: #fff;
	font-size: 240%;
	letter-spacing: 0.4em;
	line-height: 140%;
	font-weight: bold;
}
aside.sidebar nav {
    padding-top: 0.2em;
    padding-left: 0.6em;
}
aside.sidebar nav li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: thin dotted #555555;
    padding-left: 0.4em;
}
aside.sidebar nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 70%;
	letter-spacing: 0.1em;
	opacity: 0.5;
}
aside.sidebar nav ul li a:hover {
	opacity: 1;
}


/*Garally*/

article.garally {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
}
article.garally ul.fancyBase {
    display: flex;
    flex-wrap: wrap;
}
article.garally ul.garallyBase {
    width: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style-type: none;
}

article.garally ul.garallyBase li {
    width: 176px;
    padding: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
	margin-left: 16px;
	margin-right: 16px;
    border-radius: 8px;
    background-color: #272727;
    text-align: center;
}
article.garally ul.garallyBase li.wide {
    width: 296px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
} 
article.garally ul.garallyBase li.wide2 {
    width: 352px;
} 
article.garally ul.garallyBase li.short {
    width: 116px;
} 
article.garally ul.garallyBase li a p {
    font-size: 70%;
    color: #939393;
    line-height: 140%;
    margin-bottom: -0.4em;
}
article.garally ul.garallyBase li a {
	opacity: 1;
	text-decoration: none;
}
article.garally ul.garallyBase li a:hover {
	opacity: 0.5;
}

article.brandBase {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.brandBox {
    padding: 1.4em;
    margin-bottom: 2em;
    border-radius: 8px;
    background-color: #272727;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul.brandBox p {
    font-size: 76%;
    color: #838383;
    line-height: 140%;
    margin-bottom: -1em;
    text-align: center;
}
.w100p {
	width: 100%;
}
ul.w46p {
	width: 46%;
}
.w48p {
	width: 48%;
}
.w40p {
    width: 40%;
}
.w54p {
    width: 54%;
}


/*Categoly Index*/

h1.catgInxTit {
	margin-top: 2em;
	margin-bottom: 2em;
	color: #fff;
	font-size: 120%;
	line-height: 360%;
	text-align: center;
	letter-spacing: 0.2em;
}
ul.categly {
	width: 480px;
	margin-left: auto;
	margin-right: auto;
	font-size: 90%;
	letter-spacing: 0.2em;
	list-style: none;
}
ul.categly li a {
	width: 100%;
	height: 64px;
	margin-bottom: 2em;
	color: #000;
	text-decoration: none;
	background-color: #484848;
	display: flex;
	justify-content :center;
	align-items: center;
}
ul.categly li a:hover {
	background-color: #fff;
}
.catgInx ul.brandInx {
	width: 480px;
	margin-left: auto;
	margin-right: auto;
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 0.2em;
}
.catgInx ul.brandInx li a {
	width: 100%;
	height: 144px;
	margin-bottom: 2em;
	padding-right: 1em;
	color: #000;
	text-decoration: none;
	background-color: #484848;
	display: flex;
	justify-content :space-between;
	align-items: center;
}
.catgInx ul.brandInx li a img {
	opacity: 0.3;
}
.catgInx ul.brandInx li a:hover {
	background-color: #fff;
}
.catgInx ul.brandInx li a:hover img {
	opacity: 1;
}




@media screen and (min-width:1800px){
	body {
		font-size: 15px;
	}
	.slideshow {
    width: 800px;
	}
	article.garally {
    width: 1208px;
	}
	article.garally ul.garallyBase li.wide {
		width: 338px;
	} 
	article.garally ul.garallyBase li.short {
		width: 176px;
	}
	article.brandBase {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
	nav.pageNav {
		width: 1208px;
    padding-top: 1em;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 2em;
    margin-bottom: 2em;
		margin-left: auto;
		margin-right: auto;
	}
	aside.sidebar nav {
    padding-top: 2em;
    padding-left: 2em;
	}
}
