@charset "UTF-8";

html {
	/*
	font-family:'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
	font-size: 62.5%;
	height: -webkit-fill-available;
	*/
}
html * {
	/*transition: all 0.5s;*/
}
body {
	font-size: 1.6rem;
}
.admin-wrapper a {
	text-decoration: none;
}
.admin-wrapper svg {
  fill: currentColor;
}
.admin-wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	min-height: 100vh;
	background: #F1F1F1;
	text-align: left;
}
.admin-wrapper header {
	position: relative;
	height: auto;
	background: #000000;
	color: #FFFFFF;
	display: flex;
	justify-content: space-between;
}
.admin-wrapper header h1 {
	font-size: 2rem;
	font-weight: bold;
	padding: 2rem;
}
.admin-wrapper header p {
	padding: 1.4rem;
}
.admin-wrapper header p span {
	display: block;
	font-size: 1.2rem;
}

/* MENU */
.admin-wrapper nav {
	order: 0;
}
.admin-wrapper nav ul {
	width: 240px;
}
.admin-wrapper nav ul li {
	position: relative;
}
.admin-wrapper nav ul li svg {
	width: 1.6rem;
	margin-right: 0.5rem;
	vertical-align: text-bottom;
}
.admin-wrapper nav ul li a {
	display: block;
	color: #FFFFFF;
	opacity: 0.7;
	padding: 1rem 1.6rem;
}
.admin-wrapper nav ul li a:hover {
	background: #000000;
	color: #FF9900;
	opacity: 1;
}
.admin-wrapper nav ul ul li a:hover {
	background: none;
	opacity: 1;
}
.admin-wrapper nav ul ul {
	top: 0;
	position: absolute;
	left: 240px;
	background: #666666;
	width: 240px;
	display: none;
	z-index: 100;
}
.admin-wrapper nav ul .active {
	background: #FF9900;
}
.admin-wrapper nav ul .active > a {
	opacity: 1;
}
.admin-wrapper nav ul ul .active {
	background: none;
	font-weight: bold;
}
.admin-wrapper nav ul ul a {
	padding: 0.5rem 1rem 0.5rem 5rem;
}
.admin-wrapper nav ul .active ul {
	display: block;
	position: static;
	width: 100%;
}
.admin-wrapper nav ul li:hover ul {
	display: block;
}
.admin-wrapper nav ul ul::after{
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.admin-wrapper nav ul ul::after{
	left: -16px;
	top: 1rem;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border: 8px solid transparent;
    border-right: 8px solid #666666;
}




.admin-wrapper .contents {
	flex: 1;
	display: flex;
	justify-content: space-between;
	background: #23282C;
}
.admin-wrapper .contents main {
	flex: 1;
	background: #F1F1F1;
	position: relative;
	padding: 2rem;
}
.admin-wrapper .contents main a {
	color: #0000ee;
	
}
.admin-wrapper .contents main a:hover {
	text-decoration: underline;
}
.contents main .title01 {
	font-size:2.4rem;
	margin-bottom:2rem;
	border-left:#FF8800 10px solid;
	padding-left: 1rem;
}
.contents main .title02 {
	font-size:1.8rem;
	margin-bottom:1rem;
	background: #333333;
	color: #FFFFFF;
	padding: 1rem;
}
.contents main .title03 {
	font-size:1.8rem;
	margin-bottom:1rem;
}
.contents main .title03::before {
	content: '■';
	color:#FF8800;
}


/* cassette */
.cassette-add-top {
  text-align:right!important;
}

#cassette-list {
  display:none;
  /*position:absolute;*/
  position: fixed;
  z-index:500;
  background:#FFFFFF;
  width:80%;
  margin: auto;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
  overflow: scroll;
  max-height: 90vh;
}
#cassette-list h3 {
  padding:10px 20px;
  background: #077D9D;
  color:#FFFFFF;
  font-size:16px;
}
#cassette-list .item-inner{
  padding:20px;
}
#cassette-list li {
  float:left;
  margin:8px;
}
#cassette-list li p {
  margin-top:5px;
}
#cassette-list .cassette-parts .btn-box {
  text-align:center;
}
#cassette-list .cassette-parts .btn-box button {
  margin:20px 10px 0;
}
#cassette-content {
	font-size: 1em;
}
.admin-wrapper #cassette-content {
	width: 840px;
	background: #FFFFFF;
	padding: 20px;
}
#cassette-content .cassette-item {
  position:relative;
  min-height: 30px;
  word-break: break-all;
}
#cassette-content .edit-box {
  display:none;
  position:absolute;
  top:0;
  left:0;
  box-sizing: border-box;
  width:100%;
  text-align:right;
  background-color: rgba(0,0,0,0.5);
  padding:0 5px;
  z-index: 100;
}
#cassette-content .edit-box a {
  display: inline-block;
}
#cassette-content .edit-box img {
  width:20px;
  height:auto;
}
#cassette-add-form td {
  vertical-align:top;
}
#cassette-add-form td img {
  width:100%;
}

#cassette-add-form .cassette-btn{
  margin-top:10px;
  text-align:right;
}
#cassette-add-form .gallery ul {
	display: flex;
	flex-wrap: wrap;
}
#cassette-add-form .gallery ul li {
	width: 23.5%;
	position: relative;
}
#cassette-add-form .gallery ul li img {
	width: 100%;
}
#cassette-add-form .gallery ul li .del a {
	position: absolute;
	display: inline-block;
	padding: 0 1rem;
	top: 0;
	right: 0;
	background: #666666;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
}





/* login */
.admin-wrapper .contents .login-form {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 1rem;
	width: 400px;
}
.admin-wrapper .contents .login-form h2 {
	background: #23282C;
	border-radius: 1rem 1rem 0 0;
	padding: 1rem;
	color: #FFFFFF;
	font-size: 1.8rem;
	text-align: center;
}
.admin-wrapper .contents .login-form .inner {
	padding: 2rem;
}
.admin-wrapper .contents .login-form dl {
	margin-bottom: 1rem;
}
.admin-wrapper .contents .login-form dt {
	padding-bottom: 0.5rem;
}
.admin-wrapper .contents .login-form p {
	margin-bottom: 1rem;
}

/* footer */
.admin-wrapper footer {
	background: #000000;
	color: #FFFFFF;
	text-align: center;
	padding: 0;
}
.admin-wrapper footer p {
	padding: 1rem;
	font-size: 1.2rem;
}







/* ツリーリスト */
.tree-list .ui-sortable-placeholder {
	background-color: #FFF0F0;
	visibility: visible !important;
}
.tree-list ul {
	padding-top: 2rem;
}
.tree-list li {
	background: #FFFFFF;
	border: #CCCCCC 1px solid;
	margin-bottom: -1px;
}
.tree-list li div.inner {
	padding: 1rem 1rem 0 1rem;
	display: flex;
	justify-content: space-between;
}
.tree-list li li {
	margin-right: -1px;
	margin-left: 4rem;
}
.tree-list form {
	display: inline-block;
	margin-left: 1rem;
}

/* カテゴリリスト */
.category-list h3 {
	background: #000000;
	color: #FFFFFF;
	padding: 1rem;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}
.category-list h2:not(:first-child){
	margin-top: 2rem;
}
.category-list ul {
	padding-left: 2rem;
}
.category-list .desable {
	color: #CCCCCC;
}

/* 署名リスト */
.signature-list {
	background: #FFFFFF;
	border: #CCCCCC 1px solid;
}
.signature-list .add {
	text-align: right;
	padding: 0 2rem;
}
.signature-list.conf .signature-item {
	margin-bottom: 2rem;
}
.signature-list .signature-inner {
	padding: 2rem 2rem 0 2rem;
}
.signature-list .edit-box {
	padding: 2rem 0;
	text-align: right;
}
.signature-list .edit-box .btn {
	margin-left: 1rem;
}
.signature-list table.table01 td {
	width: 30%;
}
.signature-win {
	width: 60vw;
}

/* 承認者 */
.authorizer-list .title02 {
	margin: 0!important;
}
.authorizer-inner {
	display: flex;
	flex-wrap: wrap;
}
.authorizer-list .authorizer {
	background: #FFFFFF;
	padding: 1rem;
	flex: 1;
	border: #CCCCCC 1px solid;
	text-align: center;
}
.authorizer-list .caution {
	text-align: center;
}
.authorizer-list .authorizer:not(:first-child) {
	margin-left: -1px;
}


.remand-win {
	width: 60vw;
}


/* form */
#form-content .add-top {
	padding-bottom:10px;
	text-align:right;
}
#form-content .edit-box {
	width: 10%;
	text-align: right
}
#form-content .edit-box a {
	width: 3rem;
	padding: 0.2rem;
	display: inline-block;
}
#form-content .edit-box a img {
	width: 100%;
}

#form-item-list {
    display: none;
    background: #FFFFFF;
    width: 50%;
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    overflow: scroll;
    max-height: 80vh;
}
#form-item-list .item-inner{
  padding:20px;
}
#form-item-list .content-inner{
  padding:20px;
  display:none;
}
#form-item-list ul {
  margin: -5px -5px 20px -5px;
    
  display: inline-block;
  min-height: 1%;
}
#form-item-list li {
  float:left;
  margin:5px;
}
#form-item-list h3 {
  padding:10px 20px;
  background: #000000;
  color:#FFFFFF;
  font-size:16px;
  line-height: 1.5;
}

.sub_category .inner,
.c_category .inner{
	display: flex;
	flex-wrap: wrap;
}

.sub_category .inner li,
.c_category .inner li{
	margin: 0.5rem 1rem 0.5rem 0;
	border-radius: 0.5rem;
	background: #EEEEEE;
	padding: 0.5rem 4rem 0.5rem 1rem;
	position: relative;
}
.sub_category .inner li .delete,
.c_category .inner li .delete{
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	display: inline-block;
	background: #d9534f;
	color: #FFFFFF!important;
	border-radius: 0.5rem;
	padding: 0 0.5rem;
	text-align: center;
}

.select-item-list .add-list-btn {
    border: none;
	text-align: center;
	padding: 0.3rem 0.8rem;
	border-radius: 0.5rem;
    color: #4d4d4d!important;
    text-decoration:none;
	background: #DDDDDD;
    display:inline-block;
	font-weight: normal;
}
.select-item-list .add-list-btn > a {
    margin-left: 1rem;
    display: inline-block;
}


/* Emergency Top */
.link-list .add-link-block {
	text-align: right;
}
.link-list .link-list-item thead th:last-child {
	width: 5%;
}

.t-center > .add-link{
    display: inline-block; 
    padding-right: 2rem;
}
.t-center > .del-link{
    display: inline-block;
}

option:disabled {
        color: #ccc;
}

.comparison-main {
    height: 100%;
    overflow: auto;
}

.comparison {
    display: flex;
    justify-content: space-between;
    width: 100%;
/*    height: 100vh;*/
/*    margin-bottom: -15%;*/
}
.comparison .original-article,
.comparison .edit-article{
    width: 49%;
    height: 84%;
}
.article {
    padding: 1em;
    width: 100%;
    height: 97%;
    border: 1px solid #222;
    overflow: scroll;
    background-color: #fff;
    max-height:800px;
}

.article-title {
    text-align: center;
}

span.orange{
    background-color: #ffd3a8;
}

#authorizer_comment{
    text-align: left;
}

/* slider */

.banner-img img {
    height: 50px;
    width: auto!important;
}

/* disabled */
input[type="text"]:disabled {
  background: #eee;
}



/* faq */
.search_win {
	display:none;
	position: fixed;
	z-index:500;
	background:#FFFFFF;
	width:60%;
	margin: auto;
	transform: translateY(-50%) translateX(-50%);
	top: 50%;
	left: 50%;
	max-height: 90vh;
}
.search_win h3 {
	padding: 1rem 2rem;
	background: #000000;
	color: #FFFFFF;
	font-size: 1.6rem;
}
.search_win .inner {
	padding: 2rem;
	overflow: scroll;
	max-height: 80vH;
}

.related_question #search_Click {
    margin-top: 2rem;
}


div.error-box{
    border: solid 1px #ff0000;
    padding: 1em;
    margin-bottom: 1em;
    background-color: #F8DFDE;
}

#main-form .none {
    display: none!important;
}

p.csv-memo {
    font-size: 0.8em;
    color: #7d7d7d;
    text-align: left;
}

.csv-form{
    display: flex; 
}

.table01 tr.gray td{
    background-color: #b3b3b3;
}

.create-new-btn {
    text-align: right;
}