/* ************************************************
 * 整形済みテキスト
 */

pre
{
	overflow: auto;
	scrollbar-width: thin;
}


/* ************************************************
 * MenuBar
 */

div#menubar
{
	width: auto;
	z-index: 1;
	scrollbar-width: thin;
}


/* ************************************************
 * wikiページ本体
 */

@media (max-width: 767px) {
div#body
{
	max-width: 95%;
	padding: 10px 10px;
}
}

@media (min-width: 768px) {
div#body
{
	max-width: calc(95% - 9em - 10px);
}
}


/* ************************************************
 * ヘッダ部分
 */

img#logo
{
	max-width: 100%;
	height: auto;
}

div#header
{
	display: flex;
	flex-flow: row nowrap;
}

div#header_logo
{
	width: min(325px,40%);
	order: 1;
}

div#header_text
{
	width: max(100% - 325px,60%);
	margin-right: 0%;
	margin-top: -14px;
	order: 2;
}

/* JavaScript (main.js) 無効時のページ名表示色の応急処置 (2023/6/12) */

h1.title > a
{
	color: #f8f8f8;
	background-color: #215dc6;
	text-decoration: none;
}

h1.title > a:active
{
	color: #215dc6;
	background-color: #CCDDEE;
	text-decoration: none;
}

h1.title > a:visited
{
	color: #c8c8f8;
	background-color:inherit;
	text-decoration: none;
}

h1.title > a:hover
{
	color: #215dc6;
	background-color: #CCDDEE;
	text-decoration: underline;
}


/* ************************************************
 * #lookup プラグイン
 */

input#_p_lookup_1,
input#_p_lookup_2,
input#_p_lookup_3,
input#_p_lookup_4,
input#_p_lookup_5
{
	max-width: 90%;
}


/* ************************************************
 * #includeedit 部分編集用フォーム
 */

@media (max-width: 767px) {
div._part_edit_base
{
}
	left: calc(4% + 5px);
}

@media (min-width: 768px) {
div._part_edit_base
{
	left: calc(4% + 9em + 15px);
}
}

div._part_edit_base
{
	position: fixed;
	background-color: white;
	bottom: 5px;
	max-width: 70%;
	max-height: 95%;
	overflow: auto;
	scrollbar-width: thin;
	z-index: 2;
}

div._part_edit_edit_form
{
	background-color: wheat;
	margin: 2px;
}

textarea#_js_part_edit_msg
{
	overflow: auto;
}

