@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Oswald:400,300,700);
/*----------------------------------------------
 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 {
  height: 100%;
  font-size: 62.5%;
}

body {
  color: #ffffff;
  font-family: "メイリオ", Meiryo,  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Source Sans Pro", Arial, sans-serif;
  font-size: 100%;
  height: 100%;
  background-color: #bc7e26;
}

body.adma {
  background-color: #1a383b;
}

h1 {
  text-align: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 3.0rem;
  font-weight: 900;
  color: #fff;
  vertical-align: middle;
}

h2 {
  text-align: left;
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2.0rem;
}

p {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

img {
  border: none;
}

ul li {
  list-style: none;
}

/*common class*/
.section {
  clear: both;
  overflow: hidden;
}

.small {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.center {
  text-align: center;
}

/*メニューの開閉ボタン*/
#menu {
  position: absolute;
  top: 0px;
  right: 80px;
  margin: 0;
  text-align: center;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2%;
}

#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: #666;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow: hidden;
  font-size: 2rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

/*メニューが開いた状態*/
#gnavi.active {
  display: block;
  top: 0;
  opacity: 1;
  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: -200px;
  }
  1% {
    display: block;
    opacity: 0;
    top: -200px;
  }
  100% {
    display: block;
    opacity: 1;
    top: 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
    top: -200px;
  }
  1% {
    display: block;
    opacity: 0;
    top: -200px;
  }
  100% {
    display: block;
    opacity: 1;
    top: 0;
  }
}

#gnavi a,
#gnavi ul {
  display: block;
}

#gnavi ul {
  height: 100%;
}

#gnavi li {
  width: 100%;
  height: 9.09%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: wrap;
      -ms-flex: wrap;
          flex: wrap;
}

#gnavi li.adco {
  background-color: #bc7e26;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  font-size: 3rem;
  box-sizing: border-box;
}

#gnavi li.adma {
  background-color: #3a8186;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  font-size: 3rem;
  box-sizing: border-box;
}

#gnavi li a {
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  font-size: 2.5rem;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: wrap;
      -ms-flex: wrap;
          flex: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#gnavi li.adma2 a {
  background-color: #1a383b;
}

#gnavi li.adco2 a {
  background-color: #3b270c;
}

#gnavi li a:hover {
  background-color: #999;
}

#top #gnavi li:nth-child(1) a,
#faq #gnavi li:nth-child(2) a,
#glance #gnavi li:nth-child(3) a,
#facts #gnavi li:nth-child(4) a,
#history #gnavi li:nth-child(5) a,
#story #gnavi li:nth-child(6) 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(/abudhabi/img/close.png);
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/*検索部分*/
#search {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 100%;
  overflow: hidden;
  text-align: right;
  z-index: 10;
  -webkit-transition: 1s;
  transition: 1s;
}

/*検索の内側*/
#search .inner {
  width: 45px;
  overflow: hidden;
  display: inline-block;
}

/*検索の閉じるボタン*/
#search .close {
  width: 7%;
  height: 74px;
  float: left;
  background-color: #333333;
  background-image: url(/abudhabi/img/close.png);
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/*検索の入力部分*/
#search .searchInput {
  width: 80%;
  font-size: 3.4rem;
  padding: 9px 0;
  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;
}

/*検索の閉じた状態*/
#search .inner .close,
#search .inner .searchInput,
#search .inner .searchSubmit {
  display: none;
}

#search .inner .toggle {
  display: block;
}

/*検索の開いた状態*/
#search.active {
  top: 10%;
}

#search.active .inner {
  width: 100%;
  text-align: left;
  background-color: #eee;
}

#search.active .inner .close,
#search.active .inner .searchInput,
#search.active .inner .searchSubmit {
  display: block;
}

#search.active .inner .toggle {
  display: none;
}

/*------------------------------
	header
------------------------------*/
.header {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.header .lead {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
}

.header .lead h1 {
  font-size: 2rem;
}

.header .lead h1 span {
  font-size: 4.6rem;
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  line-height: 5rem;
  margin-bottom: 20px;
}

/*------------------------------
	footer
------------------------------*/
.ichthys {
  clear: both;
  overflow: hidden;
}

.ichthys a {
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #2c3447;
}

.ichthys a:hover {
  background-color: #999;
}

.ichthys a > ul,
.inpex a > ul {
  text-align: center;
  overflow: hidden;
  width: 980px;
  margin: 0 auto;
}

.ichthys ul li,
.inpex ul li {
  display: inline-block;
  /*height: 266px;*/
  overflow: hidden;
  vertical-align: middle;
}

.ichthys li#slideichtys {
  width: 400px;
  /*height: 266px;*/
}

.ichthys li.ichthyslead {
  width: 320px;
  margin: 0px 10px;
  font-weight: bold;
}

.ichthys li.ichthyslead p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.ichthys .ichthyslead img {
  display: block;
  margin: 0 auto 20px auto;
}

.ichthys li.link .btn {
  padding: 10px 10px 10px 20px;
  border: thin solid #fff;
  width: 200px;
  font-size: 1.8rem;
}

.ichthys .btn i {
  margin-left: 20px;
}

.inpex {
  clear: both;
  overflow: hidden;
}

.inpex a {
  color: #363480;
  text-decoration: none;
  background-color: #fff;
  display: block;
}

.inpex a:hover {
  background-color: #eee;
}

.inpex ul {
  padding: 40px 0;
}

.inpex ul li {
  /*height: 250px;*/
}

.inpex ul li.inpexlogo {
  width: 400px;
}

.inpex ul li.inpexlogo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.inpex ul li.inpexlead {
  width: 300px;
  margin: 0px 20px 0 0;
  font-weight: bold;
}

.inpex ul li.inpexlead p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.inpex li.link .btn {
  padding: 10px 10px 10px 20px;
  border: thin solid #363480;
  width: 200px;
  font-size: 1.8rem;
}

.inpex .btn i {
  margin-left: 20px;
}

/*ネクスト関連ページリンク*/
.section.nextPage {
  background-color: #646464;
  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 {
  font-size: 1.3rem;
  /* font-size: 0.8125rem; */
  border-top: 4px solid #999;
  position: relative;
}

#footer a {
  color: #ffffff;
}

#footer a:hover {
  opacity: 0.8;
}

.footerexternallink {
  background: #999999;
  background: -webkit-linear-gradient(left, #999999 0%, #333333 100%);
  background: linear-gradient(to right, #999999 0%, #333333 100%);
  padding: 20px 0;
}

.footerexternallink ul {
  text-align: center;
}

.footerexternallink ul li {
  display: inline-block;
  margin: 10px;
}

.footerexternallink ul li a {
  text-decoration: none;
  padding: 10px 25px;
  border: thin solid #fff;
  display: block;
  font-size: 16px;
  position: relative;
}

.footerexternallink ul li a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footerexternallink ul li a:hover {
  background-color: #333;
}

.footerexternallink ul li a:hover:after {
  right: 5px;
}

.subpage .footerexternallink {
  background: #999999;
  background: -webkit-linear-gradient(left, #1a383b 0%, #3b270c 100%);
  background: linear-gradient(to right, #1a383b 0%, #3b270c 100%);
}

.footersitemap {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
}

.footersitemap .footersitemapbox {
  margin-right: 20px;
}

.footersitemap .footersitemapbox ul li {
  margin-bottom: 5px;
}

.footersitemap a {
  position: relative;
  padding-left: 10px;
  text-decoration: none;
  display: block;
}

.footersitemap a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 4px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}

/* pagetop */
#pagetop {
  position: absolute;
  right: 2%;
  top: 0;
  /* margin-right: -468px; */
}

#pagetop.active {
  position: fixed;
  bottom: 10px;
  opacity: 0.7;
  top: inherit;
  z-index: 10;
}

#pagetop.hovering {
  position: fixed;
  bottom: 10px;
  z-index: 10000;
  top: inherit;
  opacity: 0.8;
}

#pagetop a {
  background-color: #999;
  position: relative;
  display: block;
  /* padding: 25px; */
  font-size: 5rem;
  line-height: 1;
  padding: 0 0.2em;
}

/*ページリンク*/
#footer .pageLinks {
  height: 51.5px;
}

#footer .inner {
  /* width: 980px; */
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

#footer .inner.bgglay {
  background-color: #333;
}

#footer .pageLinks ul {
  text-align: center;
  margin-right: 40px;
}

#footer .pageLinks li {
  display: inline-block;
  margin: 0 15px;
}

#footer .pageLinks li a {
  text-decoration: none;
  font-size: 1.6rem;
}

/*ロゴ*/
#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;
}

/*パララックス*/
.image-base {
  min-height: 500px;
  /* 高さの最小値を決めることで高さを確保させます。デバイスサイズに応じて数値を変更させると、背景画像もレスポンシブに変化します。　*/
  　background-position: center center;
  background-size: cover;
  /* 背景画像をフルスクリーンにフィットさせます */
}

.image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
}

/*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) { */
  html {
    font-size: 50%;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  #ix {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    margin-right: 60px;
  }
  .adcologo {
    width: 50%;
    max-width: 294px;
  }
  #menu {
    width: 48px;
    right: 65px;
  }
  #menu img {
    width: 80%;
  }
  #menu span {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
  #gnavi {
    /* font-size: 30px; */
    font-size: 1.6rem;
  }
  #gnavi li {
    padding: 0;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: wrap;
        -ms-flex: wrap;
            flex: wrap;
  }
  #gnavi li.adma {
    padding: 0;
    font-size: 2rem;
  }
  #gnavi li.adco {
    padding: 0;
    font-size: 2rem;
  }
  #gnavi li a {
    padding: 0 10px;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: wrap;
        -ms-flex: wrap;
            flex: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #gnavi .close {
    width: 9%;
    height: 9%;
  }
  #search {
    top: 1%;
    right: 0px;
    padding: 5px;
    box-sizing: border-box;
  }
  #search img {
    width: 80%;
  }
  #search .inner {
    /* width: 13.4375%; */
    /* height: 5rem; */
  }
  #search .inner .toggle {
    width: 100%;
  }
  #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;
  }
  .image-base {
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 260px;
  }
  /*footer*/
  #footer {
    background-color: #2e3547;
    width: 100%;
    position: relative;
    text-align: left;
  }
  /*ページトップへ*/
  .footersitemap {
    padding: 0 3%;
    display: block;
  }
  .footerexternallink ul li {
    display: block;
  }
  .footerexternallink ul li a {
    width: 80%;
    display: block;
    text-align: center;
    margin: 10px auto;
  }
  #pagetop {
    right: 0;
    z-index: 10;
  }
  /*ページリンク*/
  .pageLinks {
    display: none;
  }
  .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;
  }
  .section.nextPage ul li:last-child {
    margin-bottom: 0;
  }
  /*その他のリンク*/
  #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;
  }
  /*フッター関連リンク*/
  .ichthys a > ul,
  .inpex a > ul {
    width: 100%;
  }
  .ichthys ul li,
  .inpex ul li {
    width: 100%;
    margin: 0;
    float: none;
    text-align: center;
    height: auto;
  }
  .ichthys ul li#slideichtys {
    margin-bottom: 10px;
  }
  .inpex ul li.inpexlogo {
    width: 100%;
    box-sizing: border-box;
  }
  .ichthys li.link .btn,
  .inpex li.link .btn {
    margin: 10px auto;
    display: block;
    text-align: center;
  }
  .inpex ul li.inpexlogo img {
    margin: 20px auto;
    width: 80%;
  }
  .ichthys li.ichthyslead {
    margin: 0;
  }
  .inpex ul li.inpexlead {
    margin: 0;
    width: 100%;
  }
  .ichthys li.ichthyslead p {
    text-align: center;
  }
  .inpex ul li.inpexlead p {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    box-sizing: border-box;
  }
}
