/* gau-disp */

.gau-disp {
	width: 100%;
	display:flex;
	flex-wrap: wrap;
}
.gau-disp label {
    cursor: pointer;
	/*background-color: #f1f1f1;*/
}
.gau-disp-tabs {
	display: flex;
}

/* tabnames */
.gau-disp-tabs input[type="radio"] {
	display:none;
}
.gau-disp-tabs > label:hover {
	background-color: rgba(0, 0, 120, 0.1);
	transition-duration: 0.5s;
}
.gau-disp-tabs > input[type="radio"]+label::before {
	content:'';
}
.gau-disp-tabs > input[type="radio"]:checked+label::before {
	content:'';
}

/* tabcontents */
.slidein {
	opacity: 0;
	transform: translateX(40px);
	transition: transform 1s ease;
  }
  .slidein-active {
	/*opacity: 1;*/
	transform: translateX(0);
	animation: fadeIn 0.8s ease-in-out forwards;
}
@keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
.gau-disp-contents {
	width: 100%;
	padding:0.2em;
}
.gau-disp-contents input[type="radio"] {
	display:none;
}
.gau-disp-contents label:hover {
	background-color: rgba(0, 0, 120, 0.1);
	transition-duration: 0.5s;
}
.gau-disp-contents input[type="radio"]:checked+label {
	color: #29b25d; /* メインカラーと統一 */
	background-color:#fcfcfc;
	font-weight:bolder;
}
.gau-disp-contents input[type="radio"]+label::before {
	content:'';
}
.gau-disp-contents > input[type="radio"]:checked+label::before {
	content:'';
}


/* side */

.gau-nav-side .gau-disp {
    flex-direction: column;
}

.gau-nav-side .gau-disp-tabs {
	text-align: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
	box-shadow: 0 0 4px 1px #ccc;
}
.gau-nav-side .gau-disp-tabs > label {
    border: 3px solid #cccccc00;
	padding:0.2em 0.6em; /* タブの高さ調整 */
    height: fit-content;
	display:flex;
	line-height: 28px;
}
.gau-nav-side .gau-disp-tabs > input[type="radio"]:checked+label {
	border-bottom:3px 0px 3px 21px solid  #29b25d; /* メインカラーと統一 */
}


/* bottom */

.gau-nav-bottom .gau-disp {
    flex-direction: row;
}

.gau-nav-bottom .gau-disp-tabs {
    flex-direction: column;
	width:20%;
	min-width: 110px;
	max-width: 120px;
	text-align: right;
}

.gau-nav-bottom .gau-disp-tabs > label {
	border-left:6px solid  rgba(0,0,0,0); /* 空のborder */
	padding:0.2em 0.6em; /* タブの高さ調整 */
}
.gau-nav-bottom .gau-disp-tabs > input[type="radio"]:checked+label {
	border-left:6px solid  #29b25d; /* メインカラーと統一 */
}


/* main */

.gau-nav-main .gau-disp {
/*    flex-direction: column;*/
}

.gau-nav-main .gau-disp-tabs {
	text-align: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
	box-shadow: 0 0;
}
.gau-nav-main .gau-disp-tabs > label {
	color:#888;
	border-bottom:1px solid #eee;
	padding:0.2em 0.6em; /* タブの高さ調整 */
    height: fit-content;
	display:flex;
	line-height: 28px;
}
.gau-nav-main .gau-disp-tabs > input[type="radio"]:checked+label {
	color:#29b25d;
	border-bottom: 3px solid #29b25d;
    border-left: 21px solid;
    background-color: honeydew;
	font-weight: bold;
}

/* disp */

.gau-disp {
	margin-bottom:5em;
  }
  
  .gau-disp-contents > div {
	display: block;
  }
  
  .gau-disp-seltabs {
	display: flex;
	height: 50px;
  }
  
  .gau-disp-seltabs h3 {
	line-height: 50px;
	color: #29b25d;
	padding: 0 16px;
  }
  
  .gau-disp-seltabs select {
	border: 0;
	border-bottom: 2px solid #29b25dcc;
	border-radius: 0;
	width: 130px;
	font-size: larger;
  }
  
  .gau-disp-seltabs select:focus {
	outline: 0;
	border-bottom-color: #29b25d;
  }
  
  .gau-disp input[type="radio"]:checked+label {
	color: #29b25d;
	/* メインカラーと統一 */
	opacity: 1;
	background-color: honeydew;
	transition-duration: 0.2s;
  
  }
  
  :where(.gau-nav-main, .gau-nav-side) .gau-disp-tabs>label {
	width: 100%;
  }
  
  :where(.gau-nav-main, .gau-nav-side) .gau-disp-tabs>label:hover {
	opacity: 1;
  }
  
  
  .gau-disp-contents>div>div {
	/*display: flex;
	flex-wrap: wrap;
	flex-direction: column;*/
	padding: 0.5em;
  
  }
  .radio-cont {
	display: flex;
    margin: 0.5em;
    width: 241px;
    background-color: honeydew;
    justify-content: center;
    border: 1px solid #29b25d;
	border-radius:4px;
}

  .radio-cont input[type="radio"] {
	display: inline;
  }
  .radio-cont label {
	width:100px;
  }
  
  
  /* disp icon */
  .gau-disp input:checked+label i {
	border-color: #29b25d;
  }
  
  #icon4ji {
	background-image: url('../img/ji.png');
  }
  
  #tab_ji:checked+label #icon4ji {
	background-image: url('../img/ji_active.png');
  }
  
  #icon4tu {
	background-image: url('../img/tu.png');
  }
  
  #tab_tu:checked+label #icon4tu {
	background-image: url('../img/tu_active.png');
  }
  
  #icon4ko {
	background-image: url('../img/ko.png');
  }
  
  #tab_ko:checked+label #icon4ko {
	background-image: url('../img/ko_active.png');
  }
  
  #icon4si {
	background-image: url('../img/si.png');
  }
  
  #tab_si:checked+label #icon4si {
	background-image: url('../img/si_active.png');
  }
  
  #icon4na {
	background-image: url('../img/na.png');
  }
  
  #tab_na:checked+label #icon4na {
	background-image: url('../img/na_active.png');
  }
  
  #icon4ta {
	background-image: url('../img/ta.png');
  }
  
  #tab_ta:checked+label #icon4ta {
	background-image: url('../img/ta_active.png');
  }
  
  #icon4do {
	background-image: url('../img/do.png');
  }
  
  #tab_do:checked+label #icon4do {
	background-image: url('../img/do_active.png');
  }
  
  #icon4hi {
	background-image: url('../img/hi.png');
  }
  
  #tab_hi:checked+label #icon4hi {
	background-image: url('../img/hi_active.png');
  }
  
  
  /* disp side */
  :where(.gau-nav-main, .gau-nav-side) .gau-disp-tabs {
	box-shadow: 0 0 4px 1px #ccc;
  }
  
  :where(.gau-nav-main, .gau-nav-side) .gau-disp-tabs>input[type="radio"]:checked+label {
	border-bottom: 3px solid #29b25d;
  }
  
  :where(.gau-nav-main, .gau-nav-side) label>i {
	box-sizing: border-box;
	background-size: contain;
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	margin-right: 10px;
  }
  
  
  /* disp bottom */
  .gau-nav-bottom .gau-disp-tabs {
	width: 100%;
  }
  
  .gau-nav-bottom .gau-disp-tabs>input[type="radio"]:checked+label {
	border-left: 6px solid #29b25dcc;
  }
  
  .gau-nav-bottom .gau-disp-tabs>label {
	border-left: 6px solid rgba(0, 0, 0, 0);
	/* 空のborder */
	padding: 0.2em 0.6em;
	/* タブの高さ調整 */
	line-height: 24px;
	width: 70px;
  }
  
  .gau-nav-bottom .gau-disp-contents>div>div {
	width: 95%;
	overflow: auto;
  }
  
  .gau-nav-bottom .gau-disp-contents label {
	line-height: 28px;
  }
  
  /* leg-details */
  details.app-leg-details {
	margin-top: 1em;
	margin-bottom: 1.6em;
  }
  details.gau-nav-accordion > summary:hover {
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer;
  }
  details.app-leg-details summary::before {
	  font-family: "Font Awesome 5 Free";
	  content: "\f05a";
	  font-size: 18px;
	  position: absolute;
	  margin-left: -24px;
  }
  
  details.app-leg-details summary {
	display:block;
	line-height: 20px !important;
	font-weight:bold;
  }

  details.gau-nav-accordion summary {
	line-height:48px;
	font-size: 16px;
	padding: 0 32px;
	list-style: none;
	color: #29b25d;
}
  /* onoff with leg */
  #app_common_layers {
	margin:10px;
	margin-bottom:3em;
  }

  .app-allonoff-cont {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
  }
  .app-allonoff-cont button {
	width:132px;
	line-height: 38px;
	color:#29b25d;
	border-bottom:2px solid #ffffff00;
  }
  .app-allonoff-cont button:hover {
	font-weight: bold;
	border-bottom:2px solid #29b25d;
	background-color: honeydew;
  }
  .app-onoff-cont {
	text-align:left;
  }
  .app-onoff-cont.app-onoff-cont-sub {
	max-height: 400px;
	overflow: auto;
  }
  
  .app-onoff-cont label {
	display:inline-block;
	line-height: 20px;
	padding:2px;
	margin-bottom:2px;
	color:#777;
	box-sizing: border-box;
	border-left:12px solid honeydew;
  }
  
  .app-onoff-cont label::before {
	display:none;
  }
  .app-onoff-cont label:hover {
	color:#333;
  }
  .app-onoff-cont input[type="checkbox"]:checked+label {
	color:#29b25d;
	  background-color: honeydew;
	font-weight: bold;
	text-shadow: 1px 1px 1px white;
	border-left:12px solid #29b25d;
  }
  
  .app-onoff-cont label dd {
	width:50px;
  }
  .app-onoff-cont label dt {
	width:160px;
  }
  