@charset "UTF-8";

/* category-standardpc.css */
/* BTOPC スタンダードPC 一覧表示に適用 */
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

/* 記事一覧表示 */
.post_list{
	padding:10px;
	border:solid 1px #A9A9A9;
}

/* 記事個別表示 */
.post_box{
	flex-basis:49%;
	margin-top:10px;
	margin-bottom:10px;
	border:solid 1px #A9A9A9;
	width:100%;
	padding-bottom:100px;				/* カテゴリ・投稿日を最下部に表示 */
	border-radius:5px;
	overflow:hidden;
}

/* イントロダクション */
.introduction{
	background:#000000 url(../images/originalpc/case/standard/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(0,0,0,0.5);
	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.5); */
	/* padding:5px; */

	/* line-height:16px; */
	line-height:1.2;
	
	/* ジャギー対策 */
	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;
	text-overflow: ellipsis;
}

/* 新着記事 New! 表示 Start */
.new-txt{
	display:inline-block;
	font-size: .9em;
	padding-right:5px;
	text-align:center;
	color:#ff0000;
	text-shadow:
		1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}

/* New! 点滅 */
.new-txt {
	animation: blinking 0.5s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* 新着記事 New! 表示 End */

/* 見出し */
h4{
	font-size:12px;
	margin:0;
	padding:0;
	color:#5BB431;
	font-weight:bold;
}

/* 区切り線 */
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;			/* 中の要素の基準値 */
}


/* 記事一覧表示 段組表示 */
.post_list{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

/* 公開日・最終更新日・記事カテゴリー */
.date_category{
	font-size:10px;
	text-align:right;
	color:#555555;
	position:absolute;
	bottom:0px;
	right:0px;
	background-color:#f5f5f5;
	padding:5px;
	width:100%;
	border-top: solid 3px #5BB431;
}

.date_category p{
	margin:0;
	padding:0;
	line-height:18px;
}

/* カテゴリー名表示 リンク色 Start */

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

.category_name a:link {
	color:#004d25;
}

.category_name a:visited {
	color:#004d25;
}

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

.category_name 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 */

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

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

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

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

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

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

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

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

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

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

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

/* 価格 */
.price_box{
	text-align:right;
	position:absolute;
	bottom:70px;
	right:5px;
}

/* 価格 */
.price_box p{
	margin:0;
	padding:0;
	font-style:italic;
}

/* 総額表示 */
.tax_in{
	color:red;
	font-weight:bold;
	font-size:16px;
	line-height:0.6;
}

/* 税別価格 */
.without_tax{
	font-size:10px;
}

/* アイキャッチ画像 */
.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 */

/* for mobile design END */

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

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

/* 見出し */
h4{
	font-size:14px;
}

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

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

/* 記事個別表示 3列表示*/
.post_box{
	flex-basis:32%;
	padding-bottom:100px;		/* カテゴリ・投稿日を最下部に表示 */
	border-radius:10px;
}

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

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

/* 税込価格 */
.tax_in{
	font-size:20px;
}

/* 価格 */
.price_box{
	bottom:50px;
}

/* 記事投稿日/記事更新日 横並び */
.postdate_lastupdate{
	display:flex;
	justify-content:flex-end;
}

/* 記事投稿日/記事更新日 スラッシュで区切る */
span.postdate:after {
	content:"\00A0/\00A0";
}

/* 記事の抜粋 */
.overview p{
	font-size:14px;
	line-height: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 */