@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900,400italic,700italic,900italic);
/*----------------------------------------------
 reset
----------------------------------------------*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
	text-align: left;
}
html {
	background-color: #2d3547;
	font-size: 62.5%;
	height: 100%;
}
body {
	color: #ffffff;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Source Sans Pro", Arial, sans-serif;
	font-size: 100%;
	height: 100%;
}
h1 {
	text-align: center;
	font-family: "Source Sans Pro", Arial, sans-serif;
	font-size: 3.8rem;
	font-style: italic;
	font-weight: 900;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
h1 > span {
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-style: normal;
	font-size: 2rem;
	display: block;
	/* margin-top: 0.8rem; */
}
h2 {
	text-align: center;
	font-size: 3.6rem;
	color: #dc9600;
	font-weight: normal;
}
h3 {
	font-size: 2.0rem;
}

img{
    border: none;
}

.mainImg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 41%;
	overflow: hidden;
	/* display: inline-table; */
	display: table;
}
/*画像は100％サイズ*/
#wrapper img,
footer img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
/*メインコンテンツ部分*/
#wrapper {
	width: 100%;
	overflow: hidden;
}
/*段落*/
.section {
	width: 100%;
	overflow: hidden;
	position: relative;
}
/*------------------------------
	header
------------------------------*/
#header {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
    height: 100%;
	text-align: right;
	z-index: 1;
}

#header.active{
    z-index:5;
}

/*IXロゴ*/
#ix {
	text-align: right;
	height: 90px;
}

#ix a:hover{
    opacity:0.8;
}

/*メニューの開閉ボタン*/
#menu {
	float: right;
	width: 90px;
	height: 90px;
	margin: 0;
	background-color: #101a57;
	text-align: center;

}

#menu:hover{
    cursor: pointer;
}

#menu span {
	display: table-cell;
	width: 90px;
	height: 90px;
	vertical-align: middle;
	font-size: 5rem;
}
/*メニュー部分*/
#gnavi {
	display: none;
	position: absolute;
	top: -2000px;
	left: 0;
	background-color: rgb(16, 26, 87);
	opacity: 0;
	width: 100%;
    height: 100%;
	z-index: 100;
	overflow: hidden;
	font-size: 2rem;
    -webkit-transition:0.5s ease;
    -moz-transition:0.5s ease;
    -ms-transition:0.5s ease;
    -o-transition:0.5s ease;
    transition:0.5s ease;
}
/*メニューが開いた状態*/
#gnavi.active {
	display: block;
    top: 0;
    opacity:0.9;
    animation-duration: 0.5s;
    animation-name: fade-in;
    -moz-animation-duration: 0.5s;
    -moz-animation-name: fade-in;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: fade-in;
}

@keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
        	top: -2000px;
      }

      1% {
        display: block;
        opacity: 0;
          	top: -2000px;
      }

      100% {
        display: block;
        opacity: 1;
        top: 0;
      }
    }

    @-moz-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
          top: -2000px;
      }

      1% {
        display: block;
        opacity: 0;
          top: -2000px;
      }

      100% {
        display: block;
        opacity: 1;
         top: 0;
      }
    }

    @-webkit-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
        top: -2000px;
      }

      1% {
        display: block;
        opacity: 0;
        top: -2000px;
      }

      100% {
        display: block;
        opacity: 1;
         top: 0;
      }
}

#gnavi a:
#gnavi ul {
	display: block;
}

#gnavi ul{
    height: 100%;
}
#gnavi li {
    height: 9%;
    display: table;
    width: 100%;
}

#gnavi li a{
	text-align: center;
    color: #ffffff;
    text-decoration: none;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

#gnavi li a:hover{
     background-color: #999;
}

#top #gnavi li:nth-child(1) a,
#highlight #gnavi li:nth-child(2) a,
#concept #gnavi li:nth-child(3) a,
#schedule #gnavi li:nth-child(4) a,
#event #gnavi li:nth-child(5) a,
#release #gnavi li:nth-child(6) a,
#environment #gnavi li:nth-child(7) a,
#gallery #gnavi li:nth-child(8) a,
#movie #gnavi li:nth-child(9) a,
#related #gnavi li:nth-child(10) a
{
    background-color: #999;
}

#gnavi li span {
	margin-left: 1em;
}
/*メニューの閉じるボタン*/
#gnavi .close {
	width: 7%;
	height: 74px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	background-color: #333333;
	background-image: url(../img/close.png);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
/*検索部分*/
#search {
	position: relative;
	width: 100%;
	overflow: hidden;
	text-align: right;
}
/*検索の内側*/
#search .inner {
	width: 45px;
	overflow: hidden;
	background-color: #dedede;
	display: inline-block;
}
/*検索の閉じるボタン*/
#search .close {
	width: 7%;
	height: 74px;
	float: left;
	background-color: #333333;
	background-image: url(../img/close.png);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
/*検索の入力部分*/
#search .searchInput {
	width: 80%;
	font-size: 3.4rem;
	line-height: 54px;
	margin: 8px;
	float: left;
	background-color: #dedede;
	border: none;
}
/*検索のsubmitボタン*/
#search .searchSubmit {
	padding: 0 5px;
	line-height: 54px;
	margin: 8px;
	float: right;
	background-color: #999999;
	border: none;
	cursor: pointer;
	font-size: 1.6rem;
}
/*検索の開くボタン*/
#search .toggle {
	float: left;
	cursor: pointer;
	background-color: #333333;
}
/*検索の閉じた状態*/
#search .inner .close,
#search .inner .searchInput,
#search .inner .searchSubmit {
	display: none;
}
#search .inner .toggle {
	display: block;
}
/*検索の開いた状態*/
#search.active .inner {
	width: 100%;
	text-align: left;
}
#search.active .inner .close,
#search.active .inner .searchInput,
#search.active .inner .searchSubmit {
	display: block;
}
#search.active .inner .toggle {
	display: none;
}

.section.nextPage{
    background-color: #44506B;
    clear: both;
}

.section.nextPage ul {
	display: block;
	width: 80%;
	margin: 2em auto;
    overflow: hidden;
}
.section.nextPage ul li {
	display: inline-block;
	float: right;
}
.section.nextPage ul li:first-child {
	float: left;
}
.nextPage a:hover {
	text-decoration: underline;
}
body#top .section.nextPage ul li:first-child {
	display: none;
}
body#top .section.nextPage ul li {
	float: none;
	width: 100%;
	text-align: center;
}
.nextPage a {
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
}
.section.nextPage ul li a:after {
	content: ' >'
}
.section.nextPage ul li:first-child a:before {
	content: '< '
}
.section.nextPage ul li:first-child a:after {
	content: ''
}
/*------------------------------
	footer
------------------------------*/
#footer {
	font-size: 1.3rem;
	/* font-size: 0.8125rem; */
	border-top: 10px solid #4f5d78;
	position: relative;
}
#footer a {
	color: #ffffff;
}

#footer a:hover{
    opacity: 0.8;
}
/* pagetop */
#pagetop {
	position: absolute;
	right: 2%;
	top: 0;
	/* margin-right: -468px; */
}
#pagetop.hovering{
    position: fixed;
    bottom: 10px;
    z-index: 10000;
    top: inherit;
    opacity: 0.8;
}

#pagetop a {
	background-color: #4f5d78;
	position: relative;
	display: block;
	/* padding: 25px; */
	font-size: 5rem;
	line-height: 1;
	padding: 0 0.2em;
}
/*矢印*/
/*
#pagetop a::after {
	position: absolute;
	top: 50%;
	right: 50%;
	left: 50%;
	bottom: 50%;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	margin-left: -6px;
	margin-top: -6px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
*/
/*ページリンク*/
#footer .pageLinks {
	background-color: #333333;
	padding: 32px 0;
}
#footer .inner {
	/* width: 980px; */
	margin: 0 auto;
	overflow: hidden;
    padding: 10px 0;
}
#footer .pageLinks ul {
	float: left;
	margin-right: 40px;
}
#footer .pageLinks ul:nth-child(1) {
	margin-left: 22px;
}
#footer .pageLinks li {
	padding-left: 13px;
	list-style-type: none;
	margin-bottom: 10px;
	position: relative;
}
/*矢印*/
#footer .pageLinks li:before {
	content: ' ';
	border: transparent solid 4px;
	border-left-color: #ffffff;
	position: absolute;
	height: 0;
	width: 0;
	left: 0;
	top: 50%;
	margin-top: -2px;
}
#footer .pageLinks li span {
	margin-left: 1em;
}
/*ロゴ*/
#footer .logo {
	float: right;
	padding: 20px 26px 26px 26px ;
	margin-left: 22px;
}
/*右リンク*/
#footer .smallLinks {
	float: left;
	overflow: hidden;
	margin-top: 29px;
	margin-left: 22px;
}
#footer .smallLinks li {
	list-style-type: none;
	float: left;
	padding-right: 14px;
}
#footer .smallLinks li a {
	display: inline-block;
	position: relative;
}

#footer .smallLinks li a i{
    margin-right: 5px;
}

/*コピーライト*/
#footer .copyright {
	clear: both;
	width: 100%;
	padding: 15px 0;
	text-align: center;
	background-color: #999999;
}
/*1024以下*/
@media only screen and (min-width:980px) and (max-width:1024px) {
body {
	width: 1024px !important;
}
#header {
	width: 1024px !important;
	left: 0;
}
}
/*640以下*/
@media only screen and (max-width:979px) {

/* @media screen and (max-device-width: 640px) { */
/*header*/
body {
	-webkit-text-size-adjust: 100%;
}
#ix {
	width: 60px;
	height: 60px;
	position: absolute;
	right: 0;
	margin-right: 60px;
}
#ix img,
#menu img,
#search img {
	width: 100%;
	height: auto;
}
#menu {
	width: 60px;
	height: 60px;

}
#menu span {
	width: 60px;
	height: 60px;
	font-size: 30px;
}
#gnavi {
	/* font-size: 30px; */
	font-size: 1.8rem;
}

#gnavi .close {
	width: 9%;
	height: 9%;
}
#search {
	position: relative;
}
#search .inner {
	/* width: 13.4375%; */
	/* height: 5rem; */
}
#search .inner .toggle {
	width: 100%;
	background-color: #333333;
}
#search .close {
	width: 3rem;
	height: 3rem;
	padding: 8px 0;
	background-size: 80%;
}
#search .searchInput {
	width: 60%;
	margin-top: 0;
	margin-bottom: 0;
	padding: 8px 0;
	font-size: 2rem;
	line-height: 3rem;
}
#search .searchSubmit {
	font-size: 1.5rem;
	line-height: 3rem;
	padding: 0 5px;
}

.section.nextPage ul{
    text-align: center;
}

.section.nextPage ul li:first-child{
    float: none;
}

.section.nextPage ul li{
    float: none;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

/*footer*/
#footer {
	border-top: 20px solid #4f5d78;
	background-color: #2e3547;
	width: 100%;
	position: relative;
	text-align: left;
}
/*ページトップへ*/

#pagetop {
	right: 0;
}
/*
#pagetop a {
	background-color: #4f5d78;
	position: relative;
	display: block;
	height: 100px;
}
#pagetop a::after {
	position: absolute;
	top: 50%;
	right: 50%;
	left: 50%;
	bottom: 50%;
	display: block;
	content: '';
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	border-top: 20px solid #fff;
	border-right: 20px solid #fff;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
*/
/*ページリンク*/
.pageLinks {
	display: none;
}
/*その他のリンク*/
#footer .smallLinks {
	position: relative;
	top: 0px;
	left: 0px;
	text-align: center;
	float: none;
	margin: 0 0 0px 0;
    width: 100%;
    padding: 10px;
}
#footer .smallLinks ul {
	text-align: center;
	display: block;
}
#footer .smallLinks li {
	display: block;
	float: none;
    margin: 10px auto;
    text-align: left;
}

#footer .smallLinks li .google{
    text-align: left;
}

/*footerのロゴ*/
#footer .logo {
	float: none;
	/* width: 53%; */
	width: 182px;
	margin: 0;
    padding: 10px;
}
#footer .logo img {
	width: 100%;
}
/*コピーライト*/
#footer .copyright {
	background-color: #333333;
    text-align: left;
     padding: 0 10px;
        box-sizing: border-box;
}
}
