<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*------------------------------------------------------------
	MAIN VISUAL
------------------------------------------------------------*/

/*スマホ用プルダウン*/
.style-selecter {
    width: 90vw;
    margin: 0 auto;
    position: relative;
}

.style-selecter .customSelect {
    width: 100%;
    min-width: inherit;
	font-size: 1.6rem;
	line-height: 42px;
	border: 1px solid #ccc;
	margin-bottom: 25px;
}

.style-selecter .customSelectInner {
	width: 100%!important;
	padding-left: 15px;
}

@media only screen and (min-width: 813px) {
	
	.style-selecter {
		display: none;
	}
	
}

/*PC用ナビ*/
#style-navi {
	display: none;
}

@media only screen and (min-width: 813px) {
	
	#style-navi {
		display: block;
		max-width: 1280px;
		margin: 0 auto 30px;
	}
	
	#style-navi ul {
		text-align: center;
	}
	
	#style-navi ul li {
		display: inline-block;
		margin: 0 10px;
	}
	
	#style-navi ul li a {
		display: block;
		font: 500 1.6rem/2 'Gill Sans';
		color: #000;
		text-decoration: none;
		position: relative;
		overflow: hidden;
		letter-spacing: 1px;
		padding: 0 10px 10px;
	}
	
	#style-navi ul li a:after {
		content: '';
		background: #6c0707;
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: -100%;
	    -webkit-transition: .15s ease-in-out;
	    transition: .15s ease-in-out;
	}
	
	#style-navi ul li:hover a:after,
	#style-navi ul li a.selected:after {
		left: 0;
	}
	
}

/*------------------------------------------------------------
	スタイル一覧
------------------------------------------------------------*/

#style-list {
	width: 90vw;
	max-width: 1280px;
	margin: 0 auto 30px;
}

#style-list .one-fourth {
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
}

#style-list .one-fourth a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

@media only screen and (min-width: 813px) {
	
	#style-list {
		margin-bottom: 90px;
	}
	
	#style-list .one-fourth {
		margin-bottom: 25px;
	}
	
	#style-list .one-fourth:after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		transition:0.2s ease-in-out;
	}
	
	#style-list .one-fourth:hover:after {
		background: rgba(0,0,0,.5);
	}
	
	#style-list .one-fourth img {
		transition:0.3s ease-in-out;
	}
	
	#style-list .one-fourth:hover img {
		transform:scale(1.05,1.05);
	}

}









</pre></body></html>