@charset "UTF-8";
/*------------------------
エスコート
------------------------*/
.page-ttl {
	padding: 35px 0 70px;
	text-align: center;
}
.main-contents .item-list {
	width: 1134px;
	margin: auto;
	justify-content: space-between;
}
.main-contents .item-list .item {
	width: 535px;
}
.main-contents .item-list .item a {
	display: block;
}
.main-contents .item-list .item .inner {
	height: 254px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}
.main-contents .item-list .item .inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 254px;
	transition: all .3s ease 0s;
	z-index: -1;
}
.main-contents .item-list .buying .inner::before {
	background: url(/pc/img/escort/bg_buying.jpg) no-repeat 100%/cover;
}
.main-contents .item-list .selling .inner::before {
	background: url(/pc/img/escort/bg_selling.jpg) no-repeat 100%/cover;
}
.main-contents .item-list .item a:hover .inner::before {
	transform: scale(1.08,1.08);
}
.main-contents .item-list .item .inner .txt {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.main-contents .item-list .item .inner .txt h2 {
	width: 313px;
	padding: 6px;
	background: linear-gradient(to right, transparent 0%, rgba(255,255,255,.45) 10%, rgba(255,255,255,.76) 20%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.76) 80%, rgba(255,255,255,.45) 90%, transparent 100%);
	font-size: 2.6rem;
	font-weight: 500;
	color: var(--accentcolor);
	text-align: center;
	line-height: 1;
	letter-spacing: .1em;
	margin-bottom: 18px;
}
.main-contents .item-list .item .inner .txt .btn {
	display: inline-block;
	padding: 0 54px 5px;
	font-size: 1.4rem;
	color: var(--accentcolor);
	line-height: 1;
	position: relative;
	transition: all .3s ease 0s;
	letter-spacing: .06em;
}
.main-contents .item-list .item a:hover .inner .txt .btn {
	padding: 0 0 5px;
}
.main-contents .item-list .item .inner .txt .btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 1px;
	background: var(--accentcolor);
	transition: all .3s ease 0s;
}
.main-contents .item-list .item p {
	font-size: 1.4rem;
	text-align: center;
	line-height: 1;
}