/** ly-page.css（固定ページ）
***************************************/
/* vessel（カラム囲い） */
.vessel {
	position: relative;
	width: 100%;
	height: auto;
	display: flow-root;
}


/* .asleeve（float）
------------------------------------- */
@media screen and (max-width: 743.9px) {
	.vessel {
		/* Flex */
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
}

.main {
	width: 100%;
	max-width: 100%;
	height: auto;
	background: var(--c-base, hsl(223, 6%, 100%));
}

@media print,
screen and (min-width: 744px) {

	.vessel .main {
		display: flow-root;
		width: auto;
	}

	.vessel .asleeve {
		position: -webkit-sticky;
		position: sticky;
		top: var(--header-height, 0);
		float: right;
		width: 330px;
		height: auto;
		margin-left: 0px;
		background: var(--c-assort-a0\.05);
	}
}




/** 404（固定ページ）
===================================== */
.error404 .vessel {
	width: 1000px;
	max-width: 92.5vw;
}