@charset "UTF-8";
/*
*
* 上部固定のナビゲーションメニュー
* advanced.css
*
*/
/* =========================================================================
  core
========================================================================= */
/* columns */
.container, .nav {
  width: 100%;
  margin: 0 auto;
}

/* clearfix */
.nav__list:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}

/* 初期設定
--------------------------------------------------------- */
/* ドキュメントのルート要素 */
html {
  font-size: 16px;
}

body {
  margin: 0;
  background-color: #fff;
  color: #333333;
  word-wrap: break-word;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Sans-Serif;
  font-weight: 300;
}

/* =========================================================================
  layout
========================================================================= */
/* ページ共通スタイル
--------------------------------------------------------- */
/* container */
.container {
  background: #666;
  padding : 0px;
  border-top: 1px solid #fff;
}

/* main */
.main {
  margin: 0 auto;
  padding: 0px;
  margin-top:0px;
  background: #000;
}
.main__content {
  padding: 0px;
  background: #ffffff;
}

/* ダミーコンテンツ用のスタイル */
h2 {
  text-align: center;
}

p {
  margin: 16px 0;
  color: #333333;
  font-size: 1em;
}
p:last-child {
  margin-bottom: 0;
}

/* ナビゲーションのスタイル
--------------------------------------------------------- */

.header {
  height: auto;
}

.pageTitle {
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
  font-size: 2.4em;
  line-height: 1.0;
}

.nav {
  margin: 0;
  padding: 0;
  background: #666;
  z-index:80;
  position:static;
}
.nav__list {
  margin: 0;
  padding: 0;
}
.nav__list li {
  background: #0054AC;
  float: left;
  width: 20%;
  height: 48px;
  box-sizing: border-box;
  list-style-type: none;
  border-top: 1px solid #000;
  border-left: 1px solid #e9e9e7;
}

.nav__list li:last-child {
  border-right: 1px solid #000;
}


.nav__link {
  display: block;
  height: 14px;
  margin: 0;
  padding: 17px 0 13px;
  color: #FFF;
  cursor: pointer;
  font-size: 0.8em;
  text-align: center;
  line-height: 1.0;
  text-decoration: none;
  transition: all .3s;
}

.nav__link--isobe {
  border-bottom: 4px solid #24ADE2;
}

.nav__link--isobe:hover {
  background: #666666;
}

.nav__link--home {
  border-bottom: 4px solid #d92567;
}
.nav__link--home:hover {
  background: #d92567;
}
.nav__link--about {
  border-bottom: 4px solid #5c0973;
}
.nav__link--about:hover {
  background: #5c0973;
}
.nav__link--blog {
  border-bottom: 4px solid #65bfb6;
}
.nav__link--blog:hover {
  background: #000000;
}
.nav__link--contact {
  border-bottom: 4px solid #f2bb16;
}
.nav__link--contact:hover {
  background: #f2bb16;
}
.nav__link--access {
  border-bottom: 4px solid #f22f1d;
}
.nav__link--access:hover {
  background: #f22f1d;
}
.nav__link:hover {
  color: #ffffff;
}

/* Media Queries(メディアクエリ)
--------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .main {
    max-width: 1024px;
  }

  .nav__list {
    max-width: 1024px;
    margin: 0 auto;
  }
}
