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

/************************/
/*____ 共通基礎 ____*/
body{margin:0;}
body .article {
	line-height: 1.5;
	font-size: 14px;
}
#LP-html{
	max-width: 1200px;
	margin: 0 auto;
}
a {
	text-decoration: none;
	color: #000;
}

#LP-body {
	text-align: center;
}

#topicpath_style {
	font-size: 11px;
	margin-left: 2em;
}

#totop {
	display: none;
	width: 60px;
	height: 60px;
	background: #A61429;
	border-radius: 3px;
	position: fixed;
	bottom: 75px;
	right: 20px;
	z-index: 100;
}
#totop a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 0;
}
#totop a i {
	font-size: 20px;
	color: #FFF;
}
#totop a span {
	display: block;
	font-size: 11px;
	font-weight: bold;
	line-height: 14px;
	color: #FFF;
}



/************************/
/*____ レイアウト ____*/

/* flex全般 */
.flex {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items:center;
    align-items:center;
	flex-wrap: wrap;
	text-align: center;
}

/* カテゴリボタン */
.category-box {
	margin: 3em auto 1em;
	max-width: 800px;
}
.category-box .category {
	width: 4em;
	padding: 1em 1.5em;
	margin: 0.5em;
	border-radius: 0.5em;
	font-size: 1.2em;
	color: #fff;
	background-color: #000;
}

/* 人気キーワード */
.keyword-box {
	margin: 2em auto 1em;
	max-width: 1000px;
}
.keyword-box .favKeyword {
	width: 5em;
	padding: 1em 1.5em;
	margin: 0.5em;
	border-radius: 0.5em;
	font-size: 1.1em;
	font-weight: 600;
	color: #000;
	background-color: #EBEBEB;
}

.favKeyword-h {
	height: 2em;
	text-align: center;
	margin-bottom: 1em;
}
.favKeyword-h p {
	display: inline-block;
	font-size: 1.3em;
	font-weight: 600;
	margin-bottom: 1.5em;
}
.iconTag {
	height: 100%;
	margin-right: 0.3em;
}

/* アイテム一覧 */
.item-list-h {
	height: 2em;
	text-align: center;
	margin-top: 3em;
}
.item-list-h p {
	display: inline-block;
	font-size: 1.3em;
	font-weight: 600;
	border-bottom: 1px dashed #A61429;
}
.item-list {
	max-width: 1000px;
	margin: 0 auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
	padding: 0;
}
.item-list li {
	width: 300px;
    border: 1px solid #A61429;
	border-radius: 0.3em;
    margin-top: 3em;
}
.item-list li img {
    width: 80%;
    margin: 1em 10% 0;
}
.item-list li span {
	display: block;
}
.outlet_brand_name {
	font-weight: 600;
}
.outlet_item_name {
	
}
.outlet_item_price {
	font-size: 16px;
	color: #A61429;
	font-weight: 600;
	margin-bottom: 1em;
}

/* OUTLETすべてみるボタン */
.all-btn {
	display: block;
	border: 1px solid #A61429;
	width: 15em;
	padding: 1em 1.5em;
	margin: 3em auto;
	border-radius: 0.5em;
	background-color: #A61429;
	font-size: 1.1em;
	font-weight: 600;
	color: #fff;
}

/* hover等 */
a {
	transition: all 0.3s;
}
a:hover {
	opacity: 0.8;
}
a:active, a:focus {
	opacity: 0.6;
}
a:active:not(.item-list a, #totop a), a:focus:not(.item-list a, #totop a) {
	border: 2px solid #6f0314;
}
.favKeyword:hover {
	color: #fff;
	background-color: #000;
}

/************************/
/*____ 看板 ____*/
.title-wrapper {
	width: 100%;
	height: auto;
	border-bottom: 1px solid #A61429;
	margin: 2em 0;
}
.titleH1 {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 18px;
	margin-left: 1em;
}
</pre></body></html>