@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: 96px;
	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: 48px;
	margin-left: 12%;
	width: 540px;
	height: auto;

	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: 10px 18px 10px 18px;
}

/* 記事タイトルエリア(カーソル時) */
.article-title-area:hover {
	background-color: #daffff;
}

/* 記事タイトル */
.article-title {
	display: flex;
	width: 90%;
	align-items: center;
}

/* 記事アイコン */
.article-icon {
	width: auto;
	height: 32px;
}

/* 記事タイトルテキスト */
.article-title-text {
	position: relative;
	left: 14px;

	font-size: 24px;
	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: 24px;
}

/* 記事トグル(チェックボックス) */
.article-toggle {
    display: none;
}

/* 記事コンテンツエリア */
.article-content-area {
	position: relative;
	top: -12px;
	margin: 0 auto;
	
	width: 76%;
	height: auto;

	background-color: #fffef2;
	border-radius: 0px 4px 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: 540px;
	padding-left: 10px;
	padding-right: 14px;
}

/* 記事タイトルバー */
.article-title-bar {
	width: 100%;
}

/* 記事コンテンツ_タイプ1 (小項目なし) */
.article-content_type1 {
	padding: 12px 65px 8px 65px;
}

/* 記事コンテンツ_タイプ2 (小項目) */
.article-content_type2 {
	padding: 12px 80px 4px 80px;
}

/* 記事コンテンツ_タイプ3 (大項目の説明) */
.article-content_type3 {
	padding: 6px 50px 4px 50px;
}

/* 記事コンテンツタイトル */
.article-content-title {
	position: relative;
	left: -32px;
	margin-top: 6px;

	border-left: 3px solid #ff0000;

	padding-left: 12px;
	font-size: 18px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}

/* 記事コンテンツテキスト */
.article-content-text {
	font-size: 16px;
	font-weight: normal;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}

/* 記事コンテンツ区切り線 */
.article-content-bar {
	border: none;

	width: 74%;
	border-bottom: 0.2px dashed #3c3a4875;
}

/* 記事ボトムトグル */
.article-bottom-toggle {
	text-align: center;
}

/* 記事ボトムトグルテキスト */
.article-bottom-toggle-text {
	width: 20%;
	height: auto;
	margin: 16px auto;

	border-radius: 4px;
	background-color: #66624fee;

	font-size: 12.5px;
	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 {
	display: flex;
	width: 100%;
	margin-top: 10px;
	text-align: center;
}

/* 記事コンテンツ画像エリア_タイプ2-1 */
.article-content-image-area_type2-1 {
	width: 50%;
}

/* 画像下テキスト */
.text-under-image {
	margin-top: 2px;

	font-size: 14px;
	font-weight: bold;
	font-family: "Meiryo UI", sans-serif;
	color: #3c3a48;
}
