@charset "utf-8";
/**
 * 文字コード UTF-8N 改行コードLF
 * 共通CSS
 *
 * @package    Lib
 * @copyright  Copyright (c) 2016-2021 Barman Soft, Inc.
 * @license    https://libframework.org/license.html The Clear BSD License
 * @version    Lib Framework v3.2.210202
 */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Meiryo UI',Meiryo,'Segoe UI','Lucida Grande',Verdana,Arial,Helvetica,sans-serif!important;
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: 'Meiryo UI',Meiryo,'Segoe UI','Lucida Grande',Verdana,Arial,Helvetica,sans-serif!important;
  font-size: 13px;
  line-height: 18px;
  background-color: #000;
  color: #000;
}
img {
  border: 0px;
}
a {
  color: #575757;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.unpublished {
  color: #aaa;
}
a.unpublished:hover {
  text-decoration: none;
}
input[type="text"], input[type="password"] {
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}
ul li {
    list-style-type: none;
}
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
.clearfix:after {
  clear: both;
  display: block;
  height: 0px;
  line-height: 0px;
  content: ".";
  visibility: hidden;
}
.red {
  color: #ff0000 !important;
}
.wrap {
  margin: 0 auto;
  width: 1200px;
}
/*----------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------*/
header {
  width: 100%;
  min-width: 1200px;
  height: 60px;
  min-height: 60px;
  background-color: #000000;
  border-bottom: 1px solid #dedecc;
  box-sizing: content-box;
}
header .wrap {
  position: relative;
}
header h1 {
  display: none;
}
header img {
  width: auto;
  height: 60px;
}
header #search {
  position: absolute;
  width: auto;
  top: 16px;
  right: 0;
}
header #search input {
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 0 30px 0 10px;
  width: 200px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
}
header #search button {
  position: absolute;
  border-style: none;
  width: 26px;
  height: 26px;
  top: 1px;
  right: 5px;
  background: rgba(255,255,255,0.1) url(../image/common/search.png) no-repeat;
  background-size: 70% 70%;
  background-position: center center;
}
header nav {
  display: block;
  width: auto;
  height: 20px;
  position: absolute;
  top: 25px;
  right: 220px;
}
header nav ul {
  display: flex;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  display: block;
  margin: 0 15px;
  line-height: 20px;
  font-size: 15px;
  font-weight: normal;
  color: #dedecc;
}
header nav ul li a:first-child {
    margin-right: auto;
}
/*----------------------------------------------------------------------
フッター
------------------------------------------------------------------------*/
footer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 20px;
  min-width: 1200px;
  background-color: #000;
}
footer copyright {
  display: block;
  font-size: 11px;
  color: #dedecc;
}
/*----------------------------------------------------------------------
セクション
------------------------------------------------------------------------*/
section {
  width: 100%;
  min-width: 1200px;
  background-color: #e7e7e7;
}
section .wrap {
  display: flex;
  padding: 20px 0;  
  min-height: calc(100vh - 81px);
}
section h1 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #575757;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 30px;
}
section h2 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #575757;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 30px;
}
section h2 span {
  margin-top: 20px;
  font-size: 18px;
}
section strong {
  font-weight: normal;
  color: #ff0000;
}
section article {
  margin-bottom: 50px;
  width: 100%;
}
section article.flex {
  display: flex;
  align-items: flex-start;
}
section article.flex pre code {
  width: 540px;
}
section article aside {
  padding: 20px;
  background: rgb(222 222 204 / 35%);
  border: 1px solid #dedede;
  border-radius: 4px;
}
section article aside h6 {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #575757;
}
section article aside ul {
  display: flex;
}
section article aside ul li:last-child {
  margin-left: 20px;
  max-width: 200px;
}
section article aside ul img {
  margin: 0;
  max-width: 100%;
  min-width: auto;
}
section article div {
  width: 100%;
}
section article h3 {
  line-height: 30px;
  font-size: 16px;
  color: #575757;
  font-weight: normal;
  margin-bottom: 10px;
}
section article h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 40px;
  font-weight: normal;
}
section article h5 {
  margin-top: 30px;
  font-size: 16px;
  line-height: 18px;
  font-weight: normal;
}
section article p {
  margin-bottom: 10px;
  height: auto;
}
section article p a {
  color: #00c683;
}
section article ol {
  margin: 10px 0;
  list-style-type:none;
  list-style-position: inside;
}
section article ol li {
  counter-increment: cnt;
  padding-left: 40px;
  text-indent: -40px;
}
section article ol li a {
  color: #00c683;
}
section article ol li:before {
  display: marker;
  content: "（ " counter(cnt) " ）";
}
section article img {
  display: block;
  margin-top: 8px;
  margin-left: 20px;
  width: 300px;
  min-width: 300px;
  height: auto;
}
section article button {
  border-style: none;
  margin-top: -40px;
  width: 100px;
  height: 36px;
  background-color: #00c683;
  border-radius: 4px;
  color: #fff;
}
section article button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
section article.w100 {
  background: #fff;
  padding: 20px;
  border: 1px solid #dedede;
  border-radius: 4px;
}
section article.w100 h3 {
  position: relative;
  margin-bottom: 5px;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 20px;
  font-weight: normal;
  color: #000;
}
section article.w100 p {
  width: 100%;
}
section div.error {
  display: block;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ccc;
  width: 100%;
  height: auto;
  background: #eee;
}
section dl.link dt {
  margin-bottom: 10px;
  line-height: 22px;
  font-size: 18px;
}
section dl.link dd {
  margin-bottom: 20px;
}
section dl.info {
  display: flex;
}
section dl.info dt {
  padding: 0.2em;
  width: 10em;
  box-sizing: border-box;
  font-weight: bold;
  float: left;
}
section dl.info dd {
  padding: 0.2em;
  box-sizing: border-box;
  float: right;
}
section div.overflow {
  overflow: auto;
}
section div.overflow table {
  min-width: 860px;
}
section table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 50px;
  box-sizing: border-box;
}
section table tr th {
  border: 1px solid #dedede;
  padding: 0.7em;
  background: #ededed;
  /*background: #e7e7e7;*/
  font-weight: normal;
  text-align: left;
  width: 20%;
  box-sizing: border-box;
  word-break: break-all;
}
section table tr th:last-of-type {
  width: auto;
}
section table tr td {
  border: 1px solid #dedede;
  padding: 0.7em;
  background: #fff;
  box-sizing: border-box;
  word-break: break-all;
}
section table tr td a {
  color: #00c683;
  cursor: pointer;
  text-decoration: none;
}
section table tr td a:hover {
  text-decoration: underline;
}
section pre {
  clear:both;
  display: block;
  width: 100%;
  white-space: pre-wrap;
}
section pre a {
  color: #00c683;
}
section pre code {
  display: block;
  border: 1px solid #dedede;
  background-color: #fff;
  border-radius: 4px;
  line-height: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  white-space: pre;
}
section pre samp {
  display: block;
  padding: 0 2px;
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 4px;
  background-color: #fff;
  line-height: 17px;
}
section .embed {

}
section .embed form {
  height: 180px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
}
section .embed form dl {
  display: flex;
  align-items: center;
}
section .embed form dl dt {
  padding: 10px;
  min-width: 120px;
  box-sizing: border-box;
}
section .embed form dl dd {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
section .embed form dl dd p {
  margin: 2px 0px 0px 0px;
  width: 100%;
  color: rgba(96, 164, 203, 1);
  font-size: 12px;
  line-height: 12px;
}
section .embed input[type="text"] {
  height: 30px;
  line-height: 28px;
  width: 100%;
}
section .embed form button {
  display: block;
  float: none;
  margin: 10px auto 0;
}
section .embed h6 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: normal;
  line-height: 30px;
  color #575757;
}
section .embed pre {
  clear: none;
  margin-top: 0;
  padding: 0;
}
section .embed pre samp {
  display: block;
  padding: 0 1em;
  width: 100%;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  border: 1px solid #dedede;
  background: #fff;
  box-sizing: border-box;
}
section .embed pre box {
  display: block;
  padding: 0 20px;
  height: auto;
  line-height: 20px;
  width: 100%;
  border: 1px solid #fff;
  background: #fff;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 10px 0;
}
.modal {
  display: none;
  width: 580px;
  height: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  box-shadow: 1px 1px 2.6px;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 6px;
  background: #fff;
}
.modal form {
  width: 100%;
  height: 100%;
  border: 2px dotted #dedede;
  border-radius: 4px;
  padding: 20px 40px;
}
.modal form h4 {
  margin: 0 0 15px 0;
  padding: 0px;
  font-size: 20px;
  line-height: 24px;
}
.modal form p {
  margin: 0px;
  padding: 0px;
}
.modal form dl {
  margin: 20px auto 0 auto;
  display: flex;
  width: 90%;
  align-items: center;
}
.modal form dl dt {
  width: 25%;
}
.modal form dl dd {
  width: 75%;
}
.modal form dl dd input {
  width: 100%;
}
.modal form div {
  clear: both;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 30px;
}
.modal form button {
  border-style: none;
  width: 100px;
  height: 36px;
  background-color: #00c683;
  border-radius: 4px;
  color: #fff;
}
.modal button:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.modal button.cancel {
  background-color: #B0BEC5;
  float: left;
  margin-left: 50px;
}
.modal button.ok {
  margin-right: 50px;
  float: right;
}
/*----------------------------------------------------------------------
サイドメニュー
------------------------------------------------------------------------*/
section > div > div {
  display: flex;
  width: 100%;
}
section > div > div > .contents {
  width: 100%;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 0 4px 4px 0;
}
section > div > div > .menu {
  width: auto;
  min-width: 300px;
  background: #dedede;
  border-radius: 4px 0 0 4px;
  padding: 20px;
}
section > div > div > .menu h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px;
  background: #ccc;
  border-radius: 4px;
  width: 100%;
  line-height: 24px;
  font-size: 16px;
}
section > div > div > .menu h4 span {
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
  color: #505050;
}
section > div > div > .menu ul {
  margin-bottom: 20px;
}
section > div > div > .menu ul li a {
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 18px;
}
section > div > div > .menu ul li a.task {
  margin: 20px 0;
}
section > div > div > .menu ul li a:hover {
  text-decoration: underline;
}
