@charset "UTF-8";

/**************************************************
お知らせ
**************************************************/
/* 暫定非表示 */
#pageNav ,
#pagination {
display:none;
}

/* 記事リスト */
#postList {
	display: flex;
	flex-direction: column;
	gap: 5vw;
}
#postList ,
#postList li ,
#postList h2 ,
#postList p {
	margin:0;
	padding:0;
	list-style: none;
}
#postList li {
	overflow:hidden;
}
#postList a {
	display: flex;
	flex-direction: column;
	gap: 1rem 0;
	height: 100%;
	padding-bottom: 2rem;
	text-decoration: none;
	overflow:hidden
}
#postList a:hover {
	top: 0;
}
#postList a:hover h2 ,
#postList a:hover .postDate {
	top: 1px;
	position: relative;
}
#postList h2 {
	order: 1;
	text-align: left;
	font-size: 1.4rem !important;
	line-height: 1.4;
}
#postList h2 ,
#postList .postDate {
	padding: 0 2rem;
}
/* アイキャッチ画像 */
#postList .postThm {
	width: 100%;
	aspect-ratio: 1.91 / 1;	/* アスペクト比指定 */
	overflow: hidden; /* はみ出た部分を隠す */
}
#postList .postThm img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 比率を保ちつつ全体を覆う */
	object-position: center; /* 中央を基準にトリミング */
}

/* 記事ページ */
#blogPage #pageContent ,
#infoPage #pageContent ,
#post {
	display: flex;
	flex-direction: column;
	gap: 8vw 0;
}

/* 記事ヘッダー */
#postHeader .postTitle {
	font-size: 2.5rem;
	line-height: 1.4;
	padding-bottom: 2rem;
}
#postHeader p {
	margin: 0;
}

/* 本文 */
#postContent h2 {
	text-align: left;
	font-size: 2rem;
	margin-bottom: 2.5vw;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid;
}
#postContent p,
#postContent ul  ,
#postContent dl  {
	margin: 2rem 0;
	font-size: 1.4rem;
}
#postContent *:first-child {
	margin-top: 0;
}

/* Twitter埋め込み */
#postContent .twitter-tweet {
	margin: 4rem auto !important;
}

/* タグ */
#postTag {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
#postTag li {
	margin: 0;
	padding: 0;
	list-style: none;
}
#postTag a {
	display: block;
	position: relative;
	margin-left: 1rem;
	padding: 0.5rem 1rem 0.5rem 1.5rem;
	color: #93B4BE;
	text-decoration: none;
	background-color: #356472;
	font-size: 1.2rem;
	line-height: 1;
}
#postTag a:before {
	display: block;
	position: absolute;
	top: 0;
	left: -1rem;
	content: '';
	border-width: 1.1rem 1rem 1.1rem 0;
	border-style: solid;
	border-color: transparent #356472 transparent transparent;
}
#postTag a:after {
	position: absolute;
	top: 0.65rem;
	left: 0;
	content: '●';
	color: #93B4BE;
	font-size: 0.8rem;
}

/**************************************************
タブレットの時
**************************************************/

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

	/* 記事リスト */
	#postList {
		flex-wrap: wrap;
		flex-direction: row;
	}
	#postList li {
		width: 42.5vw;
	}

	/* 日付・名前 */
	#postHeader p {
		display: inline-block;
		margin-right: 1rem;
	}
	#postContent p,
	#postContent ul  ,
	#postContent dl  {
		font-size: 1.6rem;
	}

}

/**************************************************
パソコンの時
**************************************************/

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

	/* 記事リスト */
	#postList {
		gap: 40px 20px;
	}
	#postList li {
		width: 253px;
	}

}
