@charset "utf-8";
/* 「すぐ使えるCMS」ファイルがメイン（ファイルダウンロード） CSS */

/* サムネイル */
.thumbnail-100 {
	position: relative;
	width: 100px; /* サムネイルの幅 */
	height: 100px; /* サムネイルの高さ */
	display: inline-block;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-color: #999;
	overflow: hidden;
	margin: 0.8em 0;
}

/* 画像の枠 */
.img-bordered {
	box-sizing: content-box;
	border: 4px solid white;
	border-radius: 2px;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}

/* 画像サイズ調整のための仕掛け */
.size-adjust img {
	position: absolute;
	left: 0;
	top: 0;
	border: none;
	height: 100%;
	visibility: hidden;
	opacity: 0;
}

/* タイトル */
.sugu-article-list .sugu-entry h3 {
	margin-bottom: 0.5em;
}

/* 説明 */
.comment {
	font-size: 0.96em;
	line-height: 1.2;
}

/* サブファイル */
.sugu-entry-right .sugu-file-list {
	list-style-type: none;
	padding: 0
}

/* ファイルリンクの下線調整 */
.filelink {
	text-decoration: none;
}
.filelink:hover {
	text-decoration: underline;
}

/* 日付 */
.update-date {
	color: gray;
	font-size: 0.9em;
}

/* 小さな端末ではサムネイルを表示しない */
@media screen and (max-width: 35.499em) {
  .sugu-hidden-tiny {
    display: none;
  }
}
