/*------------------------------------*\
    Apaxy
    by @adamwhitcroft

    Theme name: Apaxy
    Theme author: @adamwhitcroft
\*------------------------------------*/
@import url('//fonts.googleapis.com/css?family=Open+Sans');
/* Have to use @import for the font, as you can only specify a single stylesheet */
* {
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
	       box-sizing: border-box;
}




html {
	min-height:100%;
	border-top:10px solid #ECEEF1;
	border-bottom:10px solid #ECEEF1;
	color:#61666c;
	font-weight:500;
	font-size:1em;
	font-family:"游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	line-height:2em;

}


	

body {
	/* padding:20px; */
	-webkit-backface-visibility:hidden;
  display: flex;
  flex-direction: column;
  min-height: calc( 100vh - 20px );
} 
code {
	font-family:consolas,monospace;
}
a {
	color:#61666c;
	text-decoration:none;
}
a, img {
        border:none;
        outline:none
}
a:hover {
	color:#2a2a2a;
				-webkit-transition: 300ms ease;
	   -moz-transition: 300ms ease;
	    -ms-transition: 300ms ease;
	     -o-transition: 300ms ease;
	        transition: 300ms ease;
}
/*------------------------------------*\
    Wrapper
\*------------------------------------*/
.wrapper {
	margin:0 auto;
	padding-top:20px;
	max-width: 800px;
}
/*------------------------------------*\
    Demo block
\*------------------------------------*/
.block {
	font-size:.875em;
	margin:20px 0;
	padding:20px;
	/* color:#9099A3; */
}
/*------------------------------------*\
    Table (directory listing)
\*------------------------------------*/
table {
	width:100%;
	border-collapse:collapse;
	font-size:.875em;
}
tr {
	outline:0;
	border:0;
}
tr:hover td {
	background:#f6f6f6;
}
th {
	text-align:left;
	font-size:.75em;
	padding-right:20px;
}
/* 2nd Column: Filename */
th + th {
	width:65%;
}
/* 3rd Column: Last Modified */
th + th + th {
}
/* 4th Column: Size */
th + th + th + th {
	width:5%;
}
tr td:first-of-type {
	padding-left:10px;
	padding-right:10px;
}
td {
	padding:5px 0;
	outline:0;
	border:0;
	border-bottom:1px solid #edf1f5;
	vertical-align:middle;
	text-align:left;
	-webkit-transition:background 300ms ease;
	   -moz-transition:background 300ms ease;
	    -ms-transition:background 300ms ease;
	     -o-transition:background 300ms ease;
	        transition:background 300ms ease;
}
td a{
	display: block;
}
tr.parent a[href^="/"] {
	color:#9099A3;
}
	.parent a[href^="/"]:hover {
		color:#2281d0;
	}
/*------------------------------------*\
    Footer
\*------------------------------------*/
.footer {
	text-align:center;
	font-size:.75em;
margin-top: auto;
padding-top: 50px;

}


ul {
  border: solid 2px #6bbfd8;
  border-radius: 0px 5px 5px 5px;
  padding: 0.5em;
  position: relative;
  margin-top: 2em;
	margin-bottom: 1em;
}
ul li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  font-weight: 1000;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
ul li a{
  font-weight: 500;
}
ul li:last-of-type {
  border-bottom: none;
}
ul li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #6bbfd8; /*アイコン色*/
}
ul li:after {
  /*タイトルタブ*/
  background: #6bbfd8;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 5px 9px;
  content: "各種リンク";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}

h2 {
    padding-bottom: 1em;
}

@media (prefers-color-scheme: dark) {
	html {
    background-color: #262626;
		color:#c9d1d9;
			border-top:10px solid #4c4c4c;
	border-bottom:10px solid #4c4c4c;
  }
	
	a {
	color:#c9d1d9;
	text-decoration:none;
}
	td{
		border-bottom:1px solid #4c4c4c;
	}
	
	a:hover {
	color:#989898;
			-webkit-transition: 300ms ease;
	   -moz-transition: 300ms ease;
	    -ms-transition: 300ms ease;
	     -o-transition: 300ms ease;
	        transition: 300ms ease;
}
	
	tr:hover td {
	background:#313131;
}
}