#page-edit-form {
  display: none;
  border: 2px solid #90caf9;
  padding: 2em;
  background-color: #fff;
  border-radius: 6px;
}
#page-edit-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
#page-edit-form .line {
  display: flex;
  margin: 5px 0;
  padding-bottom: 7px;
}
#page-edit-form .line label {
  font-size: 14px;
  color: #0d47a1;
  width: 100px;
  display: inline-block;
  vertical-align: middle;
}
#page-edit-form .line textarea {
  width: 380px;
  height: 80px;
  line-height: 20px;
  border: 1px solid #ccc;
}
#page-edit-form .line input[type=text] {
  border: 1px solid #ccc;
  line-height: 20px;
  height: 40px;
}
#page-edit-form .line #pc_idx, #page-edit-form .line #pc_1, #page-edit-form .line #pc_2, #page-edit-form .line #pc_3, #page-edit-form .line #pc_4, #page-edit-form .line #pc_5, #page-edit-form .line #pc_title {
  width: 380px;
}
#page-edit-form .tc {
  text-align: center;
  margin-top: 1em;
}
#page-edit-form .menu-select select {
  padding: 0 0.5em;
  margin-right: 5px;
  height: 40px;
}



#adm-cfg-box {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
}
#adm-cfg-box .btn-toggle {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  border: 0;
  background-color: tomato;
  border-radius: 3px;
  color: #fff;
  transition: all 0.4s;
}
#adm-cfg-box .btn-toggle:hover {
  opacity: 1;
}
#adm-cfg-box .btn-toggle::before {
  content: "\f013";
  font-family: FontAwesome;
  display: inline-block;
  font-size: 20px;
  line-height:1em;
}
#adm-cfg-box .adm-cfg-inner {
  overflow: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  background-color: #fff;
  transition: all 0.5s;
  padding: 10px;
  border: 0;
}
#adm-cfg-box .adm-cfg-inner a {
  color: blue;
  width: 100px;
  line-height: 30px;
}
#adm-cfg-box.on .btn-toggle {
  opacity: 1;
}
#adm-cfg-box.on .adm-cfg-inner {
  opacity: 1;
  width: 300px;
  height: auto;
  border: 1px solid #ddd;
}
#adm-cfg-box #frmcfe .line {
  display: flex;
  height: 35px;
  align-items: center;
}
#adm-cfg-box #frmcfe .line label {
  color: blue;
  width: 80px;
}
#adm-cfg-box #frmcfe .line input[type=text] {
  padding: 3px;
  border: 1px solid #ccc;
  width: 200px;
  line-height:1em;
}
#adm-cfg-box #frmcfe .action {
  border-top: 1px solid #ccc;
  text-align: center;
  padding-top: 10px;
}
#adm-cfg-box #frmcfe .action button {
  border: 0;
  padding: 0.5em 1em;
  background-color: #2979ff;
  color: #fff;
  border-radius: 4px;
}