/*==============================
	header
==============================*/
header {
  padding: 5% 0;
  border-bottom: solid 3px #ee8070;
}
header h1 {
  width: 20%;
  z-index: 99;
}
header .globalNavi li {
  font-size: 5vw;
}

@media screen and (min-width: 768px) {
  header {
    padding: 3.5% 0;
  }
  header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  header h1 {
    width: 10%;
    position: absolute;
    top: 0;
    left: 0;
  }
  header .globalNavi li {
    font-size: 1.3333333333vw;
    transition: .3s;
  }
  header .globalNavi li:hover {
    opacity: .8;
  }
}
@media screen and (min-width: 992px) {
  header {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1200px) {
  header .globalNavi li {
    font-size: 16px;
  }
}
/*==============================
	footer
==============================*/
.fixed {
  width: 16%;
  position: fixed;
  bottom: 3%;
  right: 0;
  z-index: 3;
}
.fixed li {
  transition: .3s;
}
.fixed li:hover {
  opacity: .8;
}

.pageTop {
  cursor: pointer;
}

footer .linkarea {
  padding: 14% 0;
  background: #ffcec7;
}
footer .linkarea a {
  color: #FFF;
}
footer .linkarea ul {
  width: 80%;
}
footer .linkarea ul li {
  margin-right: 2em;
  margin-bottom: 2%;
  font-weight: bold;
}
footer .copylight {
  background: #ee8070;
  text-align: center;
}
footer .copylight small {
  color: #FFF;
  line-height: 4;
  display: block;
}

@media screen and (min-width: 768px) {
  .fixed {
    width: 6%;
    bottom: 8%;
  }

  footer .linkarea {
    padding: 4% 0;
  }
  footer .linkarea ul {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .linkarea ul li {
    margin: 0;
    padding: 0 1.5em;
    position: relative;
    font-size: 1.1666666667vw;
    font-weight: normal;
  }
  footer .linkarea ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 1em;
    background: #FFF;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
  }
  footer .linkarea ul li:last-child:after {
    content: none;
  }
}
@media screen and (min-width: 1200px) {
  footer .linkarea ul li {
    font-size: 14px;
  }
}
