@charset "UTF-8";

/************ ページ内リンクのずれ対策 ************/

@media (min-width: 992px) {
	#sell-register,
	#sell-flow,
	#sell-category,
	#sell-delivery,
	#sell-preparation,
	#sell-retrieve,
	#sell-payment,
	#sell-fee,
	#cat1,
	#cat2,
	#cat3,
	#cat4,
	#cat5 {
		scroll-margin-top: 102px;
	}
}@media (max-width: 991px) {
	#sell-register,
	#sell-flow,
	#sell-category,
	#sell-delivery,
	#sell-preparation,
	#sell-retrieve,
	#sell-payment,
	#sell-fee,
	#cat1,
	#cat2,
	#cat3,
	#cat4,
	#cat5 {
		scroll-margin-top: 56px;
	}
}



/************ 下層ヘッダー ************/

.head {
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}
.head .bg-image {
	background: url('../images/sell/head.webp') no-repeat;
	background-size: cover;
	background-position: 0 36%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: brightness(50%);
	z-index: 0;
}
.head .triangle-bottom {
	position: relative;
}
.head .triangle-bottom::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 6vw solid #fff;
	border-left: 100vw solid transparent;
}
.head .head-title {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 300px;
}
.head .head-title h1 {
	background-color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 0.5rem 5rem;
	margin: 0 auto;
}



/************ ごあいさつ ************/

.sell-greet h2 span {
	background: linear-gradient(transparent 65%, #a6d2e0 0%);
}



/************ アンカー ************/

.sell-anchor {
	background-color: #f7f7f7;
	letter-spacing: 0.05em;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
}
.sell-anchor ul li a {
	color: #1c4380;
	font-size: 0.85rem;
	transition: none;
}
.sell-anchor ul li a:hover {
	color: #ffc107;
}



/************ まずは会員登録をお願いいたします ************/

@media (max-width: 767px) {
	.sell-register .register-body {
		width: 100% !important;
	}
}
.sell-register .register-body dl {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border: 1px solid #e5af0f;
	padding: 0.5rem;
}
.sell-register .register-body dl dt {
	background-color: #f7f5ea;
	color: #e5af0f;
	text-align: center;
	width: 20%;
	padding: 1rem;
}
@media (max-width: 575px) {
	.sell-register .register-body dl dt {
		width: 32%;
		padding: 0.8rem;
	}
}
.sell-register .register-body dl dd {
	font-size: 0.85rem;
	line-height: 1.8;
	width: 80%;
	padding: 1rem;
	margin: 0;
}
@media (max-width: 575px) {
	.sell-register .register-body dl dd {
		width: 68%;
		padding: 0.8rem;
	}
}
.sell-register .register-body p.register-step {
	display: inline-block;
	border-bottom: 1px solid #e5af0f;
	margin-bottom: 0.5rem;
}



/************ オークション参加（出品）の流れ ************/

.sell-flow .flow-body {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
	.sell-flow .flow-body {
		display: block;
		text-align: center;
	}
}
.sell-flow .flow-body dl {
	background-color: #f7f7f7;
	min-width: 124px;
	width: 12.5%;
	padding: 0.8rem;
	margin: 0;
}
@media (max-width: 767px) {
	.sell-flow .flow-body dl {
		display: flex;
		flex-wrap: wrap;
		width: 75%;
		margin: 0 auto;
	}
}
@media (max-width: 575px) {
	.sell-flow .flow-body dl {
		width: 100%;
	}
}
.sell-flow .flow-body dl dd {
	text-align: center;
	margin: 0;
}
@media (max-width: 767px) {
	.sell-flow .flow-body dl dd {
		text-align: left;
		padding-left: 1.5rem;
	}
}
.sell-flow .flow-body dl dd h6 {
	color: #e5af0f;
	font-weight: bold;
}
.sell-flow .flow-body dl dd a {
	color: #1c4380;
}
.sell-flow .flow-body dl dd a:hover {
	color: #ffc107;
}
.sell-flow .flow-body i.flow-arrow {
	color: #e5af0f;
}



/************ 出品できる商品について ************/

.sell-category .category-body {
	background-color: #fff;
	border: 1px solid #e5af0f;
	text-align: center;
	padding: 0.5rem;
	margin-bottom: 1.5rem;
}
.sell-category .category-body ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.sell-category .category-body ul li {
	width: 20%;
	padding: 0.5rem;
	margin: 0;
}
@media (max-width: 575px) {
	.sell-category .category-body ul li {
		width: 50%;
	}
}
.sell-category .category-body ul li img {
	margin: 0 auto 0.5rem;
}
.sell-category .caution ul li::before {
	content: "※ ";
}



/************ 搬入予約・配送出品について ************/

.sell-delivery .caution ul li::before {
	content: "□ ";
}



/************ 料金一覧 ************/

.sell-fee .fee-body {
	text-align: center;
}
@media (max-width: 767px) {
	.sell-fee .fee-body {
		width: 100% !important;
	}
}
.sell-fee .fee-body dl {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-top: 1px solid #e4e4e4;
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	margin: 1rem 0 4rem;
}
@media (max-width: 575px) {
	.sell-fee .fee-body dl {
		display: block;
	}
}
.sell-fee .fee-body dl dt {
	background-color: #f7f7f7;
	border-bottom: 1px solid #e4e4e4;
	font-weight: 400;
	width: 50%;
	padding: 0.75rem;
}
@media (max-width: 575px) {
	.sell-fee .fee-body dl dt {
		width: 100%;
	}
}
.sell-fee .fee-body dl dd {
	border-bottom: 1px solid #e4e4e4;
	width: 50%;
	padding: 0.75rem;
	margin: 0;
}
@media (max-width: 575px) {
	.sell-fee .fee-body dl dd {
		width: 100%;
	}
}
