@charset "UTF-8";
/* ブログ記事編集画面の[表示オプション]を非表示にする */
/*
#display-options {
    display: none;
}
*/
/*管理画面共通*/
.category-selector-list{
	min-height: 160px;
}
/*コメント関連を非表示*/
#menu-feedback,
#feedback-field{
	display: none;
}
/*グローバルなフォーム（aform999）を子ブログでは非表示*/
body#list-aform.blog tr[id="999"]{
	display: none;
}
.mtapp-json-table .jsontable-table th{
  width:30%;
  text-align: left;
  padding-left:10px;
}
.mtapp-json-table .jsontable-table textarea{
  height:5em;
}
.mtapp-json-table .jsontable-table .g_mission textarea,
.mtapp-json-table .jsontable-table .g_activity textarea,
.mtapp-json-table .jsontable-table .g_pr textarea,
.mtapp-json-table .jsontable-table .g_plan textarea{
  height:10em;
}


/*非選択カテゴリを選択できないようにする*/
.list-item.disabled{
	pointer-events: none;
	opacity: .5;
}
/*カテゴリ選択をradioにした場合（$.MTAppOtherTypeCategories）のスタイル*/
#other-type-category-list .form-check-inline{
	display: block;
}
.is-group-blog #entry-category-widget .mt-widget{
	border: none;
}
.is-group-blog #entry-category-widget .mt-widget__content .mt-widget__title{
	display: none;
}
.is-group-blog #entry-category-widget .mt-widget__content .mt-widget__content{
	padding: 0;
}
/*団体情報カテゴリを選択させない */
.is-group-blog #other-type-category-list .form-check:last-child{
	pointer-events: none;
	opacity: .5;
}
/*団体情報カテゴリの記事はカテゴリ変更させない */
.is-group-blog.about #other-type-category-list .form-check{
	pointer-events: none;
	opacity: .5;
}
.is-group-blog.about #other-type-category-list .form-check:last-child{
	opacity: 1;
}
/*団体ユーザは団体情報カテゴリを選択できないようにする(旧・通常カテゴリ用） */
body.group-user .list-item:last-child{
	pointer-events: none;
	opacity: .5;
}
/*団体ユーザはJSONを表示ボタンを非表示*/
body.group-user .mtapp-json-table .add-btn{
	display: none;
}
/*団体ユーザは雛形お問い合わせフォーム（aform009）を非表示*/
body.group-user#list-aform tr[id="3"]{
	display: none;
}
/*団体ユーザはメニューのウェブページを非表示*/
body.group-user #menu-page{
	display: none!important;
}
/*団体ユーザはメニューのA-Memberを非表示*/
body.group-user #menu-amember{
	display: none!important;
}

/*団体ユーザはQuickRebuildを非表示*/
body.group-user #quick_rebuild_all{
	display: none!important;
}
/*団体ユーザはCF申し込みフォーム（使わない）を非表示*/
body.group-user #customfield_form-field{
	display: none;
}

/*プレビュー依頼を非表示*/
#workflow-preview-field{
	display: none;
}
/*1行高さのテキストエリア*/
textarea.textarea-1line{
	height: calc(2.3rem + 2px);
}