/* djchat/style.css */
/******************/
/*** レイアウト ***/
/******************/
.panel-left {
}
.panel-center {
	font-family: "Courier New", monospace;
	overflow-y: auto;
	padding-left: 4px;
}
/********************/
/*** サイドパネル ***/
/********************/
.panel-left-head {
	margin: 4px 2px 8px 2px;
	display: flex;
	justify-content: space-between;
	height: 25px;
}
.panel-left-title {
	font-size: 1.2rem;
}
.panel-left-scroll-box {
	position: fixed;
	top: 90px;
	height: calc(100vh - 90px - 22px);
	overflow-y: auto;

	width: 250px;
	scrollbar-width: thin;
	scrollbar-color: #aab #f0f0ff;
	scrollbar-gutter: stable;
}
.panel-left-link {
	font-size: 0.8rem;
	line-height: 1.3;
}
.panel-left-link-open {
	background-color: #fffdf8;
}
.panel-left-link-close {
}
.panel-left-mid {
	font-size: 0.7rem;
	margin-left: 4px;
	margin-right: 4px;
}
.panel-left a {
	color: #003;
	text-decoration: none;
}
.panel-left a:hover {
	background-color: wheat;
}
.panel-left-cnt {
	font-size: 0.7rem;
}
/******************/
/*** 投稿ボタン ***/
/******************/
.bbs-boad-post {
	margin: 4px 0;
}
.bbs-boad-button {
	border-radius: 6px;
	transition: all 0.3s;
}
.bbs-boad-post-title {
	margin-left: 1rem;
	font-size: 1.6rem;
}
.bbs-boad-post-head {
	margin-top: 8px;
	font-size: 1.4rem;
	margin-bottom: 4px;
}
/********************/
/*** 編集フォーム ***/
/********************/
.post-form {
	border-radius: 18px;
	background-color: #f0e8d0;
	margin: 5px 10px 10px 0;
}
.post-form-table {
	padding: 8px;
	font-size: 1rem;
}
.post-form-table th {
	text-align: right;
	vertical-align: top;
	min-width: 6rem;
}
.post-form-table td {
	padding-bottom: 4px; 
}
.post-form-table select {
	background-color: #f8f8f8;
	border: 1px solid #400;
	border-radius: 4px;
}
.post-form-table select:hover {
	background-color: #ffe;
	border: 1px solid #842;
}
.post-form-table input {
	background-color: #fff;
}
#id_oid {
	width: 60px;
}
#id_pict1, #id_link1, #id_pict2, #id_link2 {
	height: 1.2rem;
	min-width: 480px;
	field-sizing: content;
}
#id_text {
	background-color: #fff;
	min-width: 480px;
	min-height: 150px;
	field-sizing: content;
	resize: both;
}
.post-form-note {
	margin-left: 6px;
	font-size: 0.8rem;
}
/********************/
/*** メインパネル ***/
/********************/
.panel-title {
	margin-top: 15px;
	font-size: 1.6rem;
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.panel-subtitle {
	margin: 0 20px;
	font-size: 0.8rem;
}
.panel-inner {
	margin-right: 10px;
	font-size: 0.8rem;
}
/*** BBSヘッダ ***/
.bbs-boad {
	background-color: #fcfcfa;
}
.bbs-boad-head {
	display: flex;
	margin-top: 10px;
	margin-bottom: 15px;
}

.bbs-boad-head-icon {
	float: left;
	margin-left: 1rem;
	margin-right: 2rem;
}
.bbs-boad-head-icon img {
	margin-top: 10px;
	max-width: 180px;
	min-width: 32px;
	max-height: 60px;
	height: auto;
}
.bbs-boad-title {
	display: flex;
	flex-direction: column;
	margin-left: 1rem;
	color: #000;
}
.bbs-boad-title-main {
	font-size: 1.6rem;
}
.bbs-boad-title-sub {
	font-size: 0.8rem;
	margin-top: 8px;
}
/*** 投稿履歴と検索 ***/
.bbs-boad-menu {
	color: #000;
	display: flex;
}
.bbs-boad-hist {
	margin-top: 6px;
	margin-bottom: 8px;
	color: #000;
}
.bbs-boad-hist a {
	color: #003;
}
.bbs-boad-hist a:hover {
	color: #a05000;
}
.bbs-boad-index {
	color: #000;
	font-size: 0.8rem;
	font-style: italic;
}
.bbs-boad-index-now {
	color: #000;
	font-size: 1rem;
	font-style: italic;
}
.bbs-boad-arrow {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 14px;
	margin-top: 4px;
}
.bbs-boad-arrow-left {
	margin-left: 6px;
}
.bbs-boad-arrow-right {
	margin-right: 40px;
}
.bbs-boad-arrow a {
	text-decoration: none;
}
.bbs-boad-arrow img {
	position: absolute;
	object-fit: cover;
	transition: opacity 0.4s erase;
}
.bbs-boad-arrow .img_fore {
	z-index: 2;
	opacity: 1;
	width: 24px;
}
.bbs-boad-arrow .img_back {
	z-index: 1;
	opacity: 0;
	width: 27px;
}
.bbs-boad-arrow-left:hover .img_fore {
	opacity: 0;
}
.bbs-boad-arrow-left:hover .img_back {
	opacity: 1;
}
.bbs-boad-arrow-right:hover .img_fore {
	opacity: 0;
}
.bbs-boad-arrow-right:hover .img_back {
	opacity: 1;
}
/****************/
/*** 投稿記事 ***/
/****************/
.bbs-post {
	margin: 8px 2px 4px 0px;
}
.bbs-post hr {
	color: #ddd;
}
.bbs-post-head {
	display: flex;
	justify-content: flex-start;
	color: #000;
	border: 1px solid #aaa;
	border-style: none none solid none;
	margin-right: 20px;
}
.bbs-post-head-info {
	text-decoration: none;
}
.bbs-post-head-info a {
	color: #003;
	text-decoration: none;
}
.bbs-post-head-info a:hover {
	background-color: wheat;
}
.bbs-post-head-numb {
	padding: 2px 4px 1px 6px;
	background-color: #888;
	color: #fff;
	font-size: 0.8rem;
	text-align: right;
	border-radius: 4px 4px 0px 0px;
}
.bbs-post-head-boad {
	font-size: 1rem;
	margin-left: 1px;
}
.bbs-post-head-name {
	margin-left: 4px;
	font-size: 1rem;
	font-weight: bold;
}
.bbs-post-head-hash {
	margin-left: -4px;
	font-size: 0.8rem;
	font-style: italic;
}
.bbs-post-head-date {
	margin-left: 2px;
	font-size: 0.8rem;
}
.bbs-post-head-prob {
	margin-left: 4px;
	font-size: 0.8rem;
	font-style: italic;
}
.bbs-post-head-spam {
	margin-left: 4px;
	font-size: 1rem;
	font-style: italic;
	color: #a00;
}

.bbs-post-head-edit {
	font-size: 0.8rem;
	margin-left: 20px;
	margin-right: 4px;
}
.btn-admin {	/*** static/css/mysite.cssでの定義を上書き ***/
	margin: 0 1px 0 0;
	padding: 0px 4px
}
.bbs-post-content {
	padding: 0px;
	display: flex;
	justify-content: flex-start;
	font-size: 1rem;
}
/* 投稿一覧内の画像 */
.bbs-post-pict-small {
	padding: 4px;
}
.bbs-post-pict-small img {
	float: left;
	margin: 0;
	padding: 2px;
	max-width: 180px;
	max-height: 180px;
	height: auto;
	border-radius: 5px;
}
.bbs-post-pict-small img:hover {
	background-color: wheat;
}
/* 投稿記事内の画像 */
.bbs-post-pict {
	padding: 4px;
}
.bbs-post-pict img {
	float: left;
	margin: 0px;
	padding: 3px;
	max-width: 200px;
	height: auto;
	border-radius: 6px;
}
.bbs-post-pict img:hover {
	background-color: wheat;
}
/* 投稿記事本体 */
.bbs-post-text {
	padding-left: 10px;
	margin-bottom: 14px;
	line-height: 1.5;
	overflow-wrap: anywhere;
	word-break: normal;
	white-space: pre-wrap;
}
.bbs-post-text a {
	color: #003;
}


