@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');

/* スクロールバー */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
	background: #eeede2;
	border: 1px solid #8d8d8d;
	border-radius: 3px;
}
::-webkit-scrollbar-thumb {
	width: 8px;
	background: #9f947a;
	border: 2.5px solid #8b8069;
	border-radius: 4px;
}

/* body全体 */
body {
	background-color: #272727;
}

/* main全体 */
main {
	position: static;
	padding-top: 70px;
	padding-bottom: 60px;
	width: 100%;
	min-height: calc(100vh - 38px);
	height: auto;
	overflow: auto;
	z-index: 9;

	background-image: url('../../img/background/brickblocks.png');
	background-size: auto;
	background-repeat: auto;
	background-attachment: scroll;
	background-clip: padding-box;
}

/* 記事タイトルエリア */
.article-title-area {
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	width: 84%;
	height: 52px;

	background-color: #fffef2;
	border-radius: 4px;
	border-top: 2.0px solid #423d1f80;
	border-left: 2.0px solid #423d1f80;
	border-right: 3.0px solid #a79c5480;
	border-bottom: 3.0px solid #a79c5480;

	/* filter: drop-shadow(6px 6px 3px #4e4e4e); */
}

/* 記事タイトルエリア(flex) */
.article-title-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px 8px 10px;
}

/* 記事タイトルエリア(カーソル時) */
.article-title-area:hover {
	/* background-color: #daffff; */
}

/* 記事タイトル */
.article-title {
	display: flex;
	width: 90%;
	align-items: center;
}

/* 記事アイコン */
.article-icon {
	width: auto;
	height: 28px;
}

/* 記事タイトルテキスト */
.article-title-text {
	position: relative;
	left: 8px;

	font-size: 20px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}

/* 記事トグルエリア */
.article-toggle-area {
	width: 10%;
	text-align: end;
}

/* 記事トグルボタン */
.article-toggle-button {
	cursor: pointer;
}

/* 記事トグルアイコン */
.article-toggle-icon {
	width: auto;
	height: 20px;
}

/* 記事トグル(チェックボックス) */
.article-toggle {
    display: none;
}

/* 記事コンテンツエリア */
.article-content-area {
	position: relative;
	top: -12px;
	margin: 0 auto;
	
	width: 84%;
	height: auto;

	background-color: #fffef2;
	border-radius: 0px 0px 4px 4px;
	border-left: 2.0px solid #423d1f80;
	border-right: 3.0px solid #a79c5480;
	border-bottom: 3.0px solid #a79c5480;
	padding: 0;

	/* filter: drop-shadow(8px 8px 3px #4e4e4e); */
}

/* 記事タイトルバーエリア */
.article-title-bar-area {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

/* 記事タイトルバー */
.article-title-bar {
	width: 100%;
}

/* 記事コンテンツ_タイプ1 (小項目なし) */
.article-content_type1 {
	padding: 4px 40px 0px 40px;
}

/* 記事コンテンツ_タイプ2 (小項目) */
.article-content_type2 {
	padding: 4px 40px 0px 40px;
}

/* 記事コンテンツ_タイプ3 (大項目の説明) */
.article-content_type3 {
	padding: 2px 28px 2px 28px;
}

/* 記事コンテンツタイトル */
.article-content-title {
	position: relative;
	left: -18px;
	margin-top: 8px;

	border-left: 3px solid #ff0000;

	padding-left: 8px;
	font-size: 16px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}

/* 記事コンテンツテキスト */
.article-content-text {
	font-size: 13px;
	font-weight: normal;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}

/* 記事コンテンツ区切り線 */
.article-content-bar {
	border: none;

	width: 76%;
	border-bottom: 0.2px dashed #3c3a4875;
}

/* 記事ボトムトグル */
.article-bottom-toggle {
	text-align: center;
}

/* 記事ボトムトグルテキスト */
.article-bottom-toggle-text {
	width: 28%;
	height: auto;
	margin: 10px auto;

	border-radius: 4px;
	background-color: #66624fee;

	font-size: 10px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #f9f8f3;
}

/* 記事コンテンツ画像エリア_タイプ1 */
.article-content-image-area_type1 {
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

/* 記事コンテンツ画像エリア_タイプ2 */
.article-content-image-area_type2 {
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

/* 記事コンテンツ画像エリア_タイプ2-1 */
.article-content-image-area_type2-1 {
	width: 100%;
}

/* 画像下テキスト */
.text-under-image {
	margin-top: 2px;

	font-size: 12px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}
