<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
#header {
  color: #FFF;
}
  #header.close .sitename {
    animation: fadeIn .8s ease 1 normal;
  }

  #header.open .navWrap {
    display: block;
  }
  #header.open .sitename,
	#header.open .navWrap {
    animation: fadeIn .8s ease 1 normal;
  }
  #header.open .navWrap a {
    color: #FFF;
  }
  #header .head_call ul {
	  display: flex;
	  justify-content: center;
	  align-items: center;
  }
  #header .head_call ul li {
	  padding: 8px;
	  font-size: 18px;
  }
  #header .head_call ul li i {
	  display: inline-block;
		margin-right: 3px;
	  font-size: 26px;
  }
  #header.close .sidenavi {
		display: none;
  }
  #header.close .navWrap {
    animation: fadeIn .8s ease 1 normal;
  }
  #header.open .close_btn a {
		display: inline-block;
		margin: 15px;
		padding: 4px 2em;
	}

@media screen and (max-width: 1024px) {
  #header {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 99999;
    background-color: rgba(0, 0, 0, .8);
  }
  #header .sitename {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 55px;
  }
  #header .sitename img {
    height: 40px;
  }
  #header .headFB {
    position: fixed;
    top: 0px;
    right: 60px;
  }
  #header .headFB a {
		display: flex;
		font-size: 2.0rem;
		height: 55px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: #FFF;
  }
  #header .spBtn {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 10px;
  }
  #header .navWrap {
    padding: 8px 8px 50px;
    display: none;
  }
  #header.open,
  #header.open .sitename,
	#header.open .navWrap {
    background-color: #0096a3;
  }
  #header.open .navWrap {
    display: block;
    overflow: auto;
		height: 85vh;
  }
  #header.close .navWrap {
    background-color: #FFF;
  }
  #header .head_call {
	  margin-bottom: 15px;
  }
  #header.open .sidenavi {
	  margin: 15px 0;
  }
  #header.open .sidenavi {
	  background-color: rgba(55,55,55,.1);
	  border-radius: 4px;
  }
  #header.open .sidenavi ul li a {
	  display: block;
	  padding: 8px 0;
  }
  #header.open .sidenavi &gt; ul &gt; li {
	  width: 100%;
	  border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  #header.open .sidenavi &gt; ul &gt; li &gt; a {
	  font-weight: 900;
	  padding: 15px 0;
  }
  #header.open .sidenavi &gt; ul &gt; li &gt; ul {
    display: flex;
    flex-direction: row;
	justify-content: flex-start;
    flex-wrap: wrap;
	align-items: stretch;
  }
  #header.open .sidenavi &gt; ul &gt; li &gt; ul &gt; li {
	  flex-basis: 50%;
	  margin-bottom: 5px;
  }
  #header.open .sidenavi &gt; ul &gt; li &gt; ul &gt; li a {
	  border-right: 1px solid rgba(255,255,255,0.4);
  }
  #header.open .sidenavi &gt; ul &gt; li &gt; ul &gt; li:nth-child(even) a {
	  border-right: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@media screen and (max-width: 1024px) {
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 40px;
    height: 34px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FFF;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 15px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger span:nth-of-type(1) {
    animation: menu-bar01 .75s forwards;
  }
  .menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .active .menu-trigger span:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
  .active .menu-trigger span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 .8s forwards;
  }
  .active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@media (min-width: 1025px) {
  #header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFF;
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 1200px;
    height: 80px;
    width: 100%;
    z-index: 99999;
  }
  #header a {
    color: #FFF;
  }
  #header a:hover {
    background-color: rgba(55, 55, 55, .8);
  }
  #header .headWrap {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 80px;
  }
  #header .headWrap .sitename {
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
  }
  #header .headWrap .sitename .official,
  #header .headWrap .sitename .official img {
    width: 98px;
    height: 80px;
  }
  #header .headWrap .sitename .aji_logo img {
    width: 226px;
    height: 35px;
  }
  #header .headWrap .sitename .descr {
    font-size: 12px;
  }
  #header .headWrap .sitename &gt; div {
    padding: 6px;
  }
  #header .headWrap .headFB {
  }
  #header .headWrap .headFB a {
		display: flex;
		font-size: 36px;
		height: 80px;
		padding: 0 8px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: #FFF;
  }
  #header .spBtn {
	background-color: #E40019;
    }
  #header .headWrap div.spBtn {
    padding: 0;
  }
  #header.close .navWrap {
		display: none;
	}
  #header.close  .navWrap &gt; div {
    padding: 6px;
  }
  #header.open,
  #header.open .sitename {
    background-color: #000;
  }
	#header.open .navWrap {
    background-color: rgba(0,0,0,.85);
    display: block;
    overflow: auto;
		height: 85vh;
		padding: 15px 15px 50px;
  }
	#header.open .sidenavi {
		text-align: left;
		margin: 30px;
  }
	#header.open .sidenavi &gt; ul {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
  }
	#header.open .sidenavi &gt; ul li a {
		display: block;
		padding: 8px;
  }
	#header.open .sidenavi &gt; ul li a:hover {
		color: #F8D800;
  }
	#header.open .sidenavi &gt; ul &gt; li {
		flex-basis: 25%;
		margin-bottom: 1em;
		text-align: center;
	}
	#header.open .sidenavi &gt; ul &gt; li.home {
		flex-basis: 100%;
	}
	#header.open .sidenavi &gt; ul &gt; li &gt; a {
		font-weight: bold;
	}
	#header.open .sidenavi &gt; ul &gt; li &gt; ul {
		margin: 0 1em;
	}
	#header.open .sidenavi &gt; ul &gt; li &gt; ul &gt; li {
		border-bottom: 1px dotted #CCC;
	}
}</pre></body></html>