@charset "UTF-8";
/* CSS Document */

html,
html * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/* ヘッダーコンテンツレイアウト部分 */
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  background: url("../images/header.png") no-repeat;
  background-color: #fff;
  z-index: 10;
}
header h1 {
  font-size: 32px;
}
.header {
  color: white;
  text-shadow: 4px 4px 5px black;
  z-index: 10;
}

footer {
}
.footer-container {
  padding: 20px 20px 20px 300px;
  background: #219ddd;
  z-index: 1;
}
.footer-container section {
}
.footer-container small {
}

.wide-img {
  padding-left: 10px;
  height: 256px;
  object-fit: cover;
  object-position: 0 0;
}

[class^="iimg-flex-"] {
  margin-bottom: 10px;
  display: -webkit-flex;
}
 .img-flex-2 { width: calc( 100% / 2 ); }
 .img-flex-3 { width: calc( 100% / 3 ); }
 .img-flex-4 { width: calc( 100% / 4 ); }
 
.img-container {
  display: flex;
  display: -webkit-flex;
  margin: 10px;
}
.line-icon::after {
  content: url("../images/sphere_num.png");
  vertical-align: text-top;
}
.line-icon-controller::after {
  content: url("../images/controller.png");
  vertical-align: text-top;
}
/*------------------------------
  ここから下がハンバーガーメニュー
  に関するCSS
------------------------------*/
.drawer {
  display: flex;
  justify-content: space-around;
}
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}
.drawer-hidden-global {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 50;/* 重なり順を一番上に */
  cursor: pointer;
}
.drawer-open-global {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 50;/* 重なり順を一番上に */
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: flex;
  height: 6px;
  width: 60px;
  border-radius: 30px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  bottom: 25px;
}
.drawer-open-global span,
.drawer-open-global span:before,
.drawer-open-global span:after {
  content: '';
  display: flex;
  height: 6px;
  width: 60px;
  border-radius: 30px;
  background: #000;
  transition: 0.5s;
  position: absolute;
  bottom: 25px;
}
/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 14px;
}
.drawer-open-global span:before {
  bottom: 14px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 14px;
}
.drawer-open-global span:after {
  top: 14px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(0, 0, 0, 0);
}
#drawer-check-global:checked ~ .drawer-open-global span {
  background: rgba(0, 0, 0, 0);
}

/* アイコンがクリックされたらアイコンが×印になるように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-check-global:checked ~ .drawer-open-global span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}#drawer-check-global:checked ~ .drawer-open-global span::after {
  top: 0;
  transform: rotate(-45deg);
}

#dropdown {
  overflow: auto;
  position: fixed;
  top: 90px;
  left: 30px;
  z-index: auto;
  color: white;
  background: #3CC2FF;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
  padding: 1em;
  width: 210px;
  visibility: hidden;
}
#dropdown-global {
  overflow: auto;
  position: fixed;
  top: 90px;
  right: 30px;
  z-index: 40;
  color: white;
  background: #000;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
  padding: 1em;
  visibility: hidden;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ #dropdown {
  visibility: visible;
  opacity: 0.95;
  color: white;
}
#drawer-check-global:checked ~ #dropdown-global {
  visibility: visible;
  opacity: 0.95;
  color: white;
}

.dropdown {
  display: none;
}

.warn {
  margin: 0;
	padding: 5px;
	font-size: 1rem;
  color: red;
}
.notice {
  margin: 0;
	padding: 5px;
	font-size: 1rem;
  color: blue;
}
.info {
  margin: 0;
	padding: 5px;
	font-size: 1rem;
  color: green;
}

.no-dot {
  padding: 10px 10px 20px 0;
}
.no-dot li {
  border-left: solid 6px #2d8fdd;/*左側の線*/
  background: #f1f8ff;/*背景色*/
  margin-bottom: 3px;/*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: none;
}

main {
}

.main-container {
  display: flex;
  margin-top: 60px;
  flex-direction: row;
  min-height: 100%;
  align-items: stretch;
  z-index: 10;
}

.maincol {
  flex: 1 1 auto;
  padding-top: 60px;
  padding: 10px;
  min-width: 0;
}
.maincol h1 {
    /*線の種類（二重線）太さ 色*/
  border-bottom: double 5px blue;
}
.maincol h2 {
  /*線の種類 太さ 色*/
  border-bottom: solid 3px blue;
}
.maincol h3 {
  /*下線*/
  border-bottom: solid 3px #d7d7d7;
}
.maincol h4 {
  /*下線*/
  border-bottom: solid 3px #d7d7d7;
}
.maincol h5 {
  border-left :solid 3px orange;
  padding: 5px;
  font-size: 1rem;
}
.maincol p {
  margin: 0;
  padding: 10px 10px 10px 0;
  font-size: 1rem;
}
.maincol ul {
  margin-left: 20px;
}
.maincol ul li {
  padding-left: 10px;
}
.maincol .nodisk li {
  padding-left: 0;
  list-style: none;
}
.maincol dl {
  padding: 10px 0px 10px 0px;
}
.maincol dl dt {
  border-left :solid 3px orange;
  /*border-bottom: solid 1px gray;*/
  padding: 5px;
}
.maincol dl dd {
  padding: 0px 0px 10px 20px;
}
.maincol ol {
  padding-left: 40px;
}
.maincol img {
  margin: 10px;
  box-shadow: 3px 3px 3px 3px #aaa;
  width: 95%;
}
.maincol .s30p-img {
  width: 30%;
  height:auto;
}
.maincol .s40p-img {
  width: 40%;
  height:auto;
}
.maincol .s50p-img {
  width: 50%;
  height:auto;
}
.maincol .s60p-img {
  width: 60%;
  height:auto;
}
.maincol .s70p-img {
  width: 70%;
  height:auto;
}
.maincol .s80p-img {
  width: 80%;
  height:auto;
}
.maincol .s90p-img {
  width: 90%;
  height:auto;
}
.maincol .no-shadow {
  box-shadow: none;
}

.maincol mark {
  padding: 10px 0 10px 10px;
}
/* リンクをクリックした時、ヘッダーに隠れないようにする */
h2[id] {
  display: block;
  padding-top: 60px;
  margin-top: -40px;
  margin-bottom: 10px;
  content: "";
}
h3[id] {
  display: block;
  padding-top: 60px;
  margin-top: -40px;
  margin-bottom: 10px;
  content: "";
}
/* テーブル装飾 */
table{
  width: 100%;
  padding: 10px 10px 10px 0;
  border-collapse:separate;
  border-spacing: 0;
}
table th:first-child{
  border-radius: 5px 0 0 0;
}
table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}
table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  padding: 10px 0;
}
table td{
  text-align: left;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 5px;
}
table td:last-child{
  border-right: 1px solid #a8b7c5;
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.conflex-icon:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../images/conflex_icon.png");
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 40px;
}
/* サイドバー設定 */
#sidebar-left {
  display: none;
}
.flexitem {
  z-index: 10;
}
.sidebar-nav {
  margin: 0;
  padding: 10px 20px 60px 10px;
}
.sidebar-nav details,
#dropdown details {
  margin: 0 0 10px 0;
  font-size: 1rem;
  list-style: none;
  color: white;
}
.sidebar-nav details p a {
  padding-left: 30px;
    color: whihte;
  width: inherit;
}
.sidebar-nav details summary a,
#dropdown details summary a {
  color: whihte;
  width: inherit;
}
.sidebar-nav details a,
#dropdown details a {
  color: white;
}
.sidebar-nav ul li,
#dropdown ul li {
  margin: 0 0 10px 10px;
  font-size: 1rem;
  list-style: disc;
  color: white;
}
.sidebar-nav ul li a,
#dropdown ul li a {
  color: white;
}
.sidebar-nav details ul li,
#dropdown details ul li {
  margin: 0 0 10px 30px;
  font-size: 1rem;
  list-style: disc;
  color: white;
}

.global-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.global-nav li a {
	display: block;
	padding: 15px 20px;
	border-bottom: 1px solid #8bb15a;
	text-decoration: none;
	line-height: 100%;
	color: #ffffff;
}
.global-nav li a:hover,
.global-nav li a.current {
	background: #00a1e9;
	color: #ffffff;
}

.terminal {
  margin: 0px 10px 5px 10px;
  padding: 10px 0 10px 10px;
  color: lightgreen;
  background-color: black;
  box-shadow: 1px 1px 4px #000;
}
pre {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: normal;
}
/**
 * Buttons
 */
.keyboard {
  height: 24px;
  min-width: 24px;
  padding: 0 10px;
  margin: 5px 10px;
  background: #FFF;
  border-radius: 4px;
  border-top: 1px solid #F5F5F5;
  box-shadow: 0 0 25px #E8E8E8 inset, 0 1px 0 #C3C3C3, 0 2px 0 #C9C9C9, 0 2px 3px #333333;
  color: #666;
  text-shadow: 0 1px 0 #F5F5F5;
  font: bold 14px arial;
  text-align: center;
  line-height: 24px;
  display: inline-block;
}
.keyboard-dark {
  height: 24px;
  min-width: 24px;
  padding: 0 10px;
  margin: 5px 10px;
  background: #222;
  border-radius: 4px;
  border-top: 1px solid #222222;
  box-shadow: 0 0 25px #333333 inset, 0 1px 0 #000000, 0 2px 0 #222222, 0 2px 3px #333333;
  color: #AAA;
  text-shadow: 0 -1px 0 #000000;
  font: bold 14px arial;
  text-align: center;
  line-height: 24px;
  display: inline-block;
}
.push-button {
  height: 24px;
  min-width: 24px;
  margin: 0 5px;
  padding: 0 10px;
  color: #fff;
  background: #0080FF;
  border: 1px #0080FF solid;
  border-radius: 4px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  line-height: 24px;
  text-align: center;
  display: inline-block;
}
.simple-button {
  display: inline-block;
  padding: 0 10px;
  margin: 0 5px;
  color: #000;
  background: #cff;
  text-decoration: none;
  user-select: none;
  border: 2px #00F solid;
  text-align: center;
  border-radius: 5px;
}

.file-content{
  display: inline-block;
  margin: 0 0 20px 10px;
  padding: 10px;
  background-color: lightgray;  
	font-family: monospace, serif;
	_font-family: 'courier new', monospace;
}  
.file-content-warn{
  color: red;
  background-color: lightgray;  
	font-family: monospace, serif;
	_font-family: 'courier new', monospace;
}  

/*WIDE用*/
@media (min-width: 1024px){

  header h1 {
    font-size: 40px;
  }

  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    background: #0000;
  }

  #sidebar-left {
    display: -webkit-flex;
    background: #219ddd;
    flex: 0 0 300px;
    padding: 10px 0 0px 10px;
    overflow-y: auto;
    z-index: 1;
  }
  .fixed-sidebar {
    position: fixed;
    width: 300px;
    overflow-y: auto;
    height: 100%;
  }

  .image-row-container {
    display: flex;
    flex-direction: row;
  }
  .image-row-container figure {
    padding-bottom: 10px;
  }
  .image-row-container figure img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .image-row-container img {
    padding-right: 10px;
    margin: 10px;
    width:50%;
    height: 100%;
    object-fit: contain;
    object-position: 0 0;
    box-shadow: none;
  }
  .text-image-container {
    display: flex;
    padding-right: 10px;
    width: 100%;
  }
  .left-text {
    padding: 0 10px 0 0;
  }
  .left-text li {
    margin-bottom: 10px;
  }
  .right-half-image {
    min-width: 50%;
    margin-bottom: 10px;
  }
  .right-small-image {
    min-width: 80px;
  }
}

.italic {
  font-style: italic;
}

.circle-list {
  list-style: circle;
}
