
/*-----------------------------------------------------
header#mainHeader
-------------------------------------------------------*/
header#mainHeader {
	position: fixed;
	z-index: 10;
	width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
}
header#mainHeader #logo {
	position: absolute;
  top: 10px;
	left: 10px;
  z-index: 10;
  line-height: 1em;
}
header#mainHeader #navBtn {
	position: absolute;
	right: 10px;
	top: 5px;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	position: absolute;
	right: 10px;
	top: 10px;
  width: 30px;
  height: 16px;
  z-index: 10;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
  z-index: 10;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #navArea {
	  display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
}
#gNav {
    width: 100%;
    height: 100%;
}
#gNav > li {
    width: 100%;
    text-align: center;
    border-bottom: solid 1px rgb(185, 185, 185);
    color: #fff;
}
/* #gNav > li > a{
    display: block;
    padding: 20px 0;
    color: #fff;
} */
#gNav > li > a{
  display: block;
  padding: 20px 0;
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1000px){
#gNav > li > a{
  font-size: 3.73333vw;
}
}

#gNav > li:first-child > a{
    margin: 50px 0 0 0;
    border-top: solid 1px rgb(185, 185, 185);
}


#footerMenu {
  width: 100%;
  height: 100px;
  display: table;
  background-color: #222;
  color: #fff;
}
#footerMenu > ul{
  width: 90%;
  margin: 0 auto;
  height: 100px;
  display: table;
  background-color: #222;
  color: #fff;
}
#footerMenu > ul > li {
  display: table-cell;
  width: 50%;
  height: 100px;
  vertical-align: middle;
  font-size: 1.2rem;
}
#footerMenu > ul > li img {
  display: inline-block;
  padding-top: 2px;
}
#footerMenu > ul > li:nth-child(1) {
  text-align: left;
}
#footerMenu > ul > li:nth-child(2) {
  text-align: right;
}

footer {
	width: 100%;
	background-color: #111111;
	padding-bottom: 0;
}
footer.white {
	background-color: #fff;
}
footer.white * {
    color: #333 !important;
  }
footer > #btnToTop {
	display: block;
	width: 25px;
	margin: 0 auto;
	text-align: center;
}
footer > .snsArea {
	width: 100%;
	margin: 30px 0 0 0;
	text-align: center;
}
footer > .linkArea {
	margin: 30px 0 0 0;
	text-align: center;
}
footer > .linkArea a{
	font-size: 0.7rem;
	color: #fff;
}
footer > .copyRight {
	margin: 15px 0 30px 0;
	text-align: center;
	font-size: 0.6rem;
	color: #fff;
	line-height: 1.4em;
}