/**
 * ==========================================================================
 * 風俗Wiki Seeking
 * seeking-new.css
 * ==========================================================================
 */


/* ==========================================================================
   TOP 新着全体
============================================================================ */


.fzk-seeking-new-wrap {

	width:100%;

}





/* ==========================================================================
   横スクロールエリア
============================================================================ */


.fzk-seeking-new-scroll {

	display:flex;

	gap:12px;

	overflow-x:auto;

	scroll-behavior:smooth;

	padding-bottom:10px;

	-webkit-overflow-scrolling:touch;

}


/* スクロールバー */

.fzk-seeking-new-scroll::-webkit-scrollbar {

	height:6px;

}






/* ==========================================================================
   カード
============================================================================ */


.fzk-seeking-new-card {

	flex:0 0 150px;

	text-decoration:none;

	color:inherit;

	display:block;

	position:relative;

}





/* ==========================================================================
   画像
============================================================================ */


.fzk-seeking-new-image {

	position:relative;

	width:100%;

	aspect-ratio:1 / 1;

	overflow:hidden;

	border-radius:10px;

	background:#eee;

}



.fzk-seeking-new-image img {

	width:100%;

	height:100%;

	object-fit:cover;

	display:block;

}







/* ==========================================================================
   判明バッジ
============================================================================ */


.fzk-seeking-new-found {

	position:absolute;

	top:8px;

	left:8px;


	background:#e60023;

	color:#fff;


	font-size:11px;

	font-weight:bold;


	padding:4px 8px;


	border-radius:20px;

}







/* ==========================================================================
   キャッチコピー
============================================================================ */


.fzk-seeking-new-catch {


	margin-top:8px;


	font-size:13px;


	line-height:1.5;


	font-weight:bold;


	overflow:hidden;


	display:-webkit-box;

	-webkit-line-clamp:2;

	-webkit-box-orient:vertical;


}






/* ==========================================================================
   もっと見る
============================================================================ */


.fzk-seeking-new-more {


	text-align:center;

	margin-top:20px;

}



.fzk-seeking-new-more a {


	display:inline-block;


	padding:17px 75px;


	background:#5fb61d;


	color:#fff;


	border-radius:5px;


	font-size:1em;


	font-weight:bold;


	text-decoration:none;


}





.fzk-seeking-new-more a:hover {


	opacity:.8;


}






/* ==========================================================================
   PC
============================================================================ */


@media screen and (min-width:768px){


	.fzk-seeking-new-card {

		flex-basis:170px;

	}


}





/* ==========================================================================
   スマホ
============================================================================ */


@media screen and (max-width:767px){


	.fzk-seeking-new-card {

		flex-basis:120px;

	}


	.fzk-seeking-new-catch {

		font-size:12px;

	}


}