@charset "UTF-8";

/**************************************************/
/* ポストページ */
/**************************************************/
.single-post #pageTitle {
	display: none;
}

/* リンク */
.postPage .thm a:hover ,
.postPage .theContent a:hover {
	opacity: 1;
	top: 0;
}
.postPage .theContent a {
	display: block;
	position: relative;
}
.postPage .theContent a:before {
	content: "\f00e";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	font-weight: 900;
	top: 5px;
	right: 5px;
	color: #fff;
	opacity: 0.75;
	z-index:1;
	filter: drop-shadow(0 0.5px 1px rgba(0,0,0,0.5));
}
.postPage .theContent a:hover:before {
	top: 6px;
	opacity: 0.5;
}

/* 作品データ */
.postPage section dl {
	margin-top: -3rem;
}
.postPage section dt {
	display: none;
}
.postPage section dd a {
	text-decoration: none;
}
.postPage section dd {
	position: relative;
	padding-left: 2rem;
}
.postPage section dd:before {
	font-family: "Font Awesome 5 Free";
	position: absolute;
	font-weight: 900;
	top: 0.2rem;
	left: 0;
}
.postPage section dd.url:before {
	content: "\f390";
}
.postPage section dd.category:before {
	content: "\f07b";
}
.postPage section dd.position:before {
	content: "\f0ad";
}
.postPage section dd.date:before {
	content: "\f017";
}
.postPage section dd.client:before {
	content: "\f007";
}

/* 詳細 */
.postPage .theContent {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 5%;
	justify-content: flex-start;
	
}
.postPage .theContent p {
	margin: 0;
	width: 47.5%;
}

/* rescore バナーページ */
#rescore-banaPage .theContent p {
	width: 100%;
}

/**************************************************/
/* タブレットの時 */
/**************************************************/
@media only screen and (min-width: 768px) {
	.single-post #pageTitle {
		display: block;
	}
	.postPage .flex .thm {
		width: 60%;
	}
	.postPage .flex section {
		margin: 0;
		width: 35%;
	}
	.postPage .theContent p {
		margin: 0;
		width: 30%;
	}
	.postPage section dt , 
	.postPage section dd {
		font-size: 1.2rem;
	}
	/* rescore バナーページ */
	#rescore-banaPage .theContent p {
		width: 47.5%;
	}
}