@charset "utf-8";
/* CSS Document */

*{margin: 0; padding: 0; color:#555;}
body
{
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

a{text-decoration: none;}
a:hover{color:#ccc;}



#container
{
	position: relative;
	width: 100vw;
	height: 100vh;
	

}


/**/

#header
{
	position: fixed;
	top: 0;
	width: 100%;
	height: 51px;

	z-index: 100;
}

.lv6-logo{
	display: inline-block;
	float: left;
	border: solid 1px red;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 51px;
  height: 35px;
  vertical-align: middle;
	padding-top: 16px;
	padding-left: 16px;

}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 51px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding:50px;  
}

@media screen and (max-width: 480px) {
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 270px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding:10px;  
}}

#nav-content li{list-style: none; line-height: 3em; font-size: 18px;}
.now-printing{color:#bbb;}


/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*ハンバーガー非表示向け*/
/*
@media screen and (min-width:480px) {
  #nav-open {
    display:none;
  }
*/
	/**/


		
#content
{
	position: relative;
	width: 100%;
	height:  100%;
	margin: auto;
}

.greeting
{
	width: 300px;
	height: 300px;

	position: absolute;
	top: 0px;
 	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
	z-index: 50;
	
	text-align: center;
	line-height: 1.8em;
}


@media screen and (max-width: 480px) {
#content
{
	position: relative;
	width: 100%;
	height:  calc(100% - 10px);
	margin: auto;
}}

.top-images-bg
{
	background-image: url("images/logo-six.png");
	background-position: center center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 480px) {
.top-images-bg
{
	background-image: none;
	background-position: center center;
	background-repeat: no-repeat;
}}


.top-images-logo-full
{
	width: 300px;
	height: 52px;
	background-image: url("images/logo-japanese_full.png");
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0px;
 	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
	z-index: 50;
}

.top-images-logo-alpha
{
	width: 300px;
	height: 52px;
	background-image: url("images/logo-japanese_alpha.png");
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 20px;
 	right: 0px;
	bottom: 0px;
	left: 20px;
	margin: auto;

	animation: rotation 8s ease-in-out 0s infinite normal none running;
}

.contact
{
	width: 300px;
	height: 52px;
	background-image: url("images/contact.png");
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0px;
 	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
}

@keyframes rotation {
  0% {transform: translate(0px, 0px); opacity: 0.1;}
  20% {transform: translate(0px, 0px); opacity: 1;}
  40% {transform: translate(15px, 15px); opacity: 1;}
  45% {transform: translate(15px, 15px); opacity: 1;}
  50% {transform: translate(15px, 15px); opacity: 0.2;}
  55% {transform: translate(15px, 15px); opacity: 1;}
  60% {transform: translate(15px, 15px); opacity: 1;}
  80% {transform: translate(0px, 15px); opacity: 1;}
  100% {transform: translate(0px, 0px); opacity: 0.1;}	
}


#footer
{
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 25px;
	background-color: #fff;
	text-align: center;

}

.copyright
{
	font-size: 10px;
}