@charset "UTF-8";

/* category-salesresults.css */
/* 中古パソコン 販売実績に適用 */

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

/* 記事一覧表示 段組表示 */
.post_list{
	padding:10px;
	border:solid 1px #A9A9A9;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

/* 記事個別表示 */
.post_box{
	margin-top:10px;
	margin-bottom:10px;
	border:solid 1px #A9A9A9;
	flex-basis:49%;
	padding-bottom:40px;
	position:relative;
	border-radius:5px;
	overflow:hidden;
}

/* イントロダクション */
.introduction{
	background:#000000 url(../images/usedpc/salesresults/background-introduction.jpg) no-repeat center center;
	background-size:cover;
	color:snow;
	text-shadow: 0 2px 2px #666;
	padding:5px;
	margin:0px;
	position: relative;			/* 中の要素の基準値 */
	min-height:120px;
}

/* イントロダクション 背景 半透明の黒 */
.introduction:before{
	content:'';
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	background-color:rgba(0,0,0,0.8);	/* 半透明のフィルターをかける */
}

/* 見出し 日本語 */
h2{
	margin:0;
	padding:0;
	font-style:oblique;
	font-size:16px;
	padding-top:15px;
	position:relative;			/* 中の要素の基準値 */
	padding-left:5px;
	padding-right:5px;
}

/* 記事タイトル 配置*/
.blog_title{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	/* background:rgba(128,128,128,0.5); */
	background:rgba(0,0,0,0.9);
	padding:5px;
}

/* 記事タイトル */
.blog_title h3{
	margin:0;
	padding:0;
	font-size:12px;
	text-shadow:
		1px  1px 1px #777,
		-1px  1px 1px #777,
		1px -1px 1px #777,
		-1px -1px 1px #777;
	width:100%;
	/* background:rgba(128,128,128,0.5); */
	/* background:rgba(0,0,0,0.9); */
	/* padding:5px; */
	
	/* line-height:16px; */
	line-height:1.2;
	z-index:10;
	
	/* ジャギー対策 */
	transform: rotate(0.03deg);
	-moz-transform: rotate(0.03deg);
	-ms-transform: rotate(0.03deg);
	-o-transform: rotate(0.03deg);
	-webkit-transform: rotate(0.03deg);
	
	/* 最大3行まで表示 */
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;		/* 制限したい行数が3の場合 */
	overflow:hidden;
}

/* 区切り線 */
hr{
	border-top:1px dashed #bbb;
	margin:0;
	margin-bottom:5px;
	padding:0;
}

/* メインスローガン */
.main_slogan{
	margin:0;
	padding:0;
	padding-left:8px;
	font-style:oblique;
	margin-top:12px;
	font-size:10px;
	position:relative;			/* 中の要素の基準値 */
}

/* 記事カテゴリ 配置*/
.category_name{
	position:absolute;
	bottom:0;
	left:0;
	font-size:10px;
	color:#ffffff;
	background:rgba(128,128,128,0.5);
	padding-right:2px;
	padding-left:5px;
}

/* 記事の抜粋 */
.overview{
	width:100%;
	padding:5px;
}

/* 記事の抜粋 */
.overview li{
	font-size:12px;
	line-height:18px;
}

/* カテゴリー */
main .category{
	font-size:10px;
	text-align:right;
	color:#555555;
}

/* マシンスペック リスト表示 */
main .fa-ul{
	margin:0;
	padding;0;
	padding-left:25px;
}

.spec li{
	margin-top:6px;
	margin-bottom:6px;
	padding:0px;
	list-style:none;
}

/* スペック 各アイコン Start */

/* Windows11 */
.fa-microsoft{
	color:#5BB431;
}

/* Windows10 */
.fa-windows{
	color:#5BB431;
}

/* CPU */
.fa-microchip{
	color:#5BB431;
}

/* メモリ */
.fa-memory{
	color:#5BB431;
}

/* ストレージ */
.fa-database{
	color:#5BB431;
}

/* ディスプレイ */
.fa-display{
	color:#5BB431;
}

/* Office */
.fa-file{
	color:#5BB431;
}

/* スペック 各アイコン End */

/* 新品SSD */
.unused{
	background-color:red;
	color:snow;
	padding: 0px 2px;
	margin-right:2px;
	border-radius:2px;
}

/* 販売価格に打消し線 */
.strikethrough{
	text-decoration:line-through;		/* 線を引く */
	text-decoration-style:double;		/* 二重線 */
	text-decoration-thickness: 1px;		/* 線の太さ */
}

/* 価格 */
.price_box{
	color:red;
	font-weight:bold;
	text-align:right;
	position:absolute;
	bottom:5px;
	right:5px;
}

/* 売り切れ表記 */
.soldout{
	margin:0;
}

/* アイキャッチ画像 */
.thumbnail{
	padding:5px;
	position:relative;
	width:100%;
  	height:100%;
  	aspect-ratio: 4 / 3;
	overflow:hidden;
	border-bottom:solid 1px #A9A9A9;
}

/* 画像の縦横比を維持 */
.articleimage{
	width:100%;
	height:100%;
	object-fit:cover;
	position: absolute;
	top:0;
	left:0;
	border-bottom-left-radius:0;	/* 左下角丸解除 */
	border-bottom-right-radius:0;	/* 右下角丸解除 */
}

/* アイキャッチ画像 オンマウスでアニメーション */
.post_box img{
	transition:1s all;
}
.post_box img:hover{
	transform:scale(1.02,1.02);
	transition:0.5s all;
}

/* アイキャッチ画像に重ねるテキスト Start */

.thumbnail{
	color:snow;
}

.thumbnail a {
	font-weight:bold;
	text-decoration:none;
}

.thumbnail a:link {
	color:snow;
}

.thumbnail a:visited {
	color:snow;
}

.recommend_thumbnail a:hover {
	color:snow;
}

.recommend_thumbnail a:active {
	color:snow;
}

/* マシンスペック リンク色 Start */

.spec a {
	text-decoration:none;
}

.spec a:link {
	color:#515254;
}

.spec a:visited {
	color:#515254;
}

.spec a:hover {
	color:#FF7F00;
}

.spec ul a:active {
	color:#FF7F00;
}

/* マシンスペック リンク色 End */

/* ログイン中のみ表示 Start*/
.post_info{
	background-color:#dcdcdc;
	text-align:right;
	padding:5px;
}

.post_info p{
	font-size:10px;
	margin:0px;
	line-height:18px;
}
/* ログイン中のみ表示 End */

/* for mobile design END */

/* ------------------------------------ */
/* ▼タブレット用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 600px) {

/* 見出し */
h2{
	font-size:22px;
}

/* イントロダクション */
.introduction{
	min-height:160px;
}

/* メインスローガン */
.main_slogan{
	font-size:14px;
}

/* 記事個別表示 3列表示*/
.post_box{
	flex-basis:32%;
	border-radius:10px;
}

/* 3列表示 2項目表示の対策 */
.post_list::after{
	content:"";
	display: block;
	flex-basis:32%;
}

/* 記事タイトル */
.blog_title h3{
	font-size:14px;
	line-height:18px;
}

/* 記事の抜粋 */
.overview li{
	font-size:14px;
	line-height:20px;
}

/* マシンスペック リスト表示 */
.fa-ul{
	margin:0;
	padding;0;
	padding-left:24px;
}

/* 価格 */
.price{
	font-size:20px;
}

}/* for Tablet design END */
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 1024px) {

/* 見出し */
h2{
	font-size:40px;
}

/* メインスローガン */
.main_slogan{
	font-size:16px;
}

/* 記事個別表示 3列表示*/
.post_box{
	border-radius:15px;
}


}/*for PC design END */