@charset "UTF-8";

/*基本CSSの設定*/

html,body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height:1.8;
	color:#fff;
	background:#000;
	height: 100%;
	/* ルートのフォントサイズを10pxと同サイズに設定 */
  font-size: 62.5% ; 
}

body{
	/* ベースのフォントサイズを16px相当に設定 */
  font-size: 1.5rem ; 
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}

a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

@keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

.spon{
	display: none;
}

p{
	font-size: 15px ;  font-size: 1.5rem ;
	max-height: 100%;
}
/*はじめの段落の上余白*/
p.first{
	padding-top:14px;
}

#wrap{
     width: 100%;
     position: relative;
     height:auto !important; /*IE6対策*/
     height: 100%; /*IE6対策*/
     min-height: 100%;
}

/***********************
ヘッダー
************************/
header{
	width:100%;
	height:100px;
	background:rgba(0,0,0,0.8);
}

.headerBox{
	width:94%;
	height: auto;
	margin:0 3%;
}

.headerBox h1{
	float: left;
	display: block;
	width:10%;
	height: auto;
	padding-top:10px;
	padding-bottom:10px;
}
.headerBox h1 img{
	height: 80px;
	width:auto;
}

.headerBox ul{
	float: left;
	width:90%;
}

.headerBox ul li a{
	display: block;
	float: left;
	width:20%;
	height:100px;
	line-height: 100px;
	color:#fff;
	text-decoration: none;
	text-align: center;
	font-size:18px;
	font-family:Georgia, "Times New Roman", Times, "serif";
}
.headerBox ul li:first-child a{
	margin-left: 4%;
}
.headerBox ul li a:hover{
	background:rgba(0,0,0,0.2);
}

.hamburger-menu {
	display: none;
}


/*グローバルナビ*/
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

/*ページ上部へ*/
#wrap p.gototop{
	position:fixed;
	bottom:30px;
	right:30px;
}

.fa-chevron-up{
	font-size:1.5em;
	color:#999;
}

#wrap p.gototop a{
	color:#999;
}

#wrap p.gototop a:hover{
	opacity:0.5;
}



#contents{
	width:100%;
	height:auto;
	margin:0 auto;
	padding:0 auto;
	padding-top:0px;
	padding-bottom:100px;
	background:#000;
	color:#fff;
	text-align: center;
}



footer{
	position: absolute;
	bottom:0;
	width:100%;
	height:auto;
	margin:0;
	padding-bottom:10px;
	background:#fff;
	font-size:16px;
}

#footerContents{
	width:1000px;
	height:auto;
	margin:0 auto;
	padding-top:30px;
	color:#000;
	font-size:16px;
	
}

footer p.copy{
	display: block;
	text-align: center;
	margin:30px auto 10px;
	color:#000;
	font-family:Georgia, "Times New Roman", Times, "serif";
	
}

