html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;/*フォント細く*/
  -moz-osx-font-smoothing: grayscale;/*フォント細く*/
  background: #000;
  color: #000;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
ul,ol {list-style-type: none;}
table {
}

.wrapper{
    display: flex;
}

.column {
	height: 100vh;
	width: 100%;
	text-align: center;
	justify-content: center;
	position: relative;
}
.info1 {
	margin-top: 10%;
	font-size: 250%;
}

.info1 .fade1 a {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	display: inline-block;
}

.info1 .fade1 a:hover {
	color: #33ffff;
}

.info1 .menu1{
	position: absolute;
	text-align: center;
	font-size: 60%;
	color: #fff;
	display: ;
    margin: 0 auto;
 	bottom: 20%;
}

.nav {
  display: flex;
  list-style: none;
  overflow: hidden;
}
 
.nav li {
  float: left;
  padding: 10px;
}
 
.nav li a {
  display: block;
  text-decoration: none;
  padding: 0 0 3px;
  position: relative;
  color: #fff;
}

.nav li a::before,
.nav li a::after {
  border-bottom: solid 1px #33ffff;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
.nav li a::before {
  left: 50%;
}
.nav li a::after {
  right: 50%;
}
.nav li a:hover::before,
.nav li a:hover::after {
  width: 50%;
  color: #fff;
}




.info2 {
	margin-top: 10px;
	font-size: 150%;
	color: #000;
}

.info2 a {
	color: #000;
	text-decoration: none;
	display: inline-block;
}

.info2 a:hover {
	color: #66cc00;
}

.left {
	background: url(../img/bg_gnd.jpg), no-repeat center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.right {
	background: #fff no-repeat top center;
	background-size: contain;
	background-repeat: no-repeat;
}

.fade1 {
    animation-name: fade-in1;
    animation-duration: 3s; //アニメーション時間
    animation-timing-function: ease-out; //アニメーションさせるイージング
    animation-delay: 1s; //アニメーション開始させる時間
    animation-iteration-count: 1; //繰り返し回数
    animation-direction: normal; //往復処理をするかどうか
    animation-fill-mode: forwards; //アニメーション後のスタイルをどうするか
}

@keyframes fade-in1 {
from {
    opacity: 0;
    transform: translateY(60px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.fade2 {
    animation-name: fade-in2;
    animation-duration: 3s; //アニメーション時間
    animation-timing-function: ease-out; //アニメーションさせるイージング
    animation-delay: 1s; //アニメーション開始させる時間
    animation-iteration-count: 1; //繰り返し回数
    animation-direction: normal; //往復処理をするかどうか
    animation-fill-mode: forwards; //アニメーション後のスタイルをどうするか
}

@keyframes fade-in2 {
from {
    opacity: 0;
    transform: translateX(60px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}






@media screen and (max-width: 1385px) and (min-width: 481px) {
.left {
	background-size: contain;
	background-repeat: no-repeat;}
}



@media screen and (max-width: 480px) {
.wrapper{display: block;}
.column {height: 65vh;}
.info1 {font-size: 140%;}
.info1 .menu1{bottom: 10%;}
.left {background-size: auto 550px;
		background-repeat: no-repeat;
		background-position: top center;}
}

@media screen and (max-width: 375px) {
.wrapper{display: block;}
.column {height: 65vh;}
.info1 {font-size: 140%;}
.info1 .menu1{bottom: 5%;}
.left {background-size: auto 550px;
		background-repeat: no-repeat;
		background-position: top center;}
}





































