@charset "UTF-8";
/* --------------------------------
 * header
 * -------------------------------- */
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  text-align: center;
  height: 46px;
  top: 0;
  left: 0;
  box-shadow: 0px -4px 4px 3px #C0C0C0;
}
.header-logo {
  padding-top: 2px;
  display: inline-block;
  max-width: 200px;
  line-height: 1.0;
}
/* -------------------
 * global-nav
 * ------------------- */
.global-nav-wrap {
  position: fixed;
  /*background-color: hsla(213,91%,56%,0.90);*/
  padding: 40px 0px 0px;
}
.global-nav {
  display: block;
  padding-top: 10px;
  margin-bottom: 20px;
}
.global-nav li {
  width: 100%;
  padding-bottom: 0px;
}
.global-nav li a {
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
  padding: 15px 5px 13px 23px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.61);
  position: relative;
}
.global-nav li a::before {
  content: '\e802';
  font-family: "fontello";
  position: absolute;
  top: 15px;
  left: 10px;
}
.global-nav-banner {
  padding: 0 5px;
}
/* ----------------
 * slideout
 * ---------------- */
.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 230px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: none;
  background-color: #E40110;
}
.slideout-panel {
  position: relative;
  z-index: 99;
  will-change: transform;
  background-color: #fff;
}
.slideout-open, .slideout-open body, .slideout-open .slideout-panel {
  overflow: hidden;
}
.slideout-open .slideout-menu {
  display: block;
}
/* ----------------
 * toggle
 * ---------------- */
.toggle-button {
  display: block;
  position: fixed;
}
.menuWrapper {
  position: fixed;
  z-index: 999999999;
  top: 5px;
  left: 10px;
  /*border: 2px solid #fff;*/
  border-radius: 5px;
  width: 36px;
  height: 36px;
  background-color: hsla(356, 99%, 45%, 0.90);
}
#menuButton {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 99990;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 300ms;
}
#menuButton span, #menuButton::before, #menuButton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  opacity: 1;
  transition: opacity 200ms;
  overflow: hidden;
  z-index: 99991;
  color: #fff;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
  z-index: 99992;
  content: "";
}
#menuButton::before {
  transform: translate(0, -9px);
}
#menuButton::after {
  transform: translate(0, 9px);
}
#menuButton.active {
  transform: rotate(-180deg);
}
#menuButton.active span {
  opacity: 0;
}
#menuButton.active::before {
  transform: rotate(45deg);
}
#menuButton.active::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 320px) {
.menuWrapper {
  top: 8px;
  width: 32px;
  height: 32px;
}
#menuButton {
  width: 32px;
  height: 32px;
}
#menuButton span, #menuButton::before, #menuButton::after {
  width: 18px;
  height: 2px;
  margin: auto;
  background: #fff;
}
}




/* --------------------------------
 * footer
 * -------------------------------- */
.footer-wrap {
padding: 30px 0px 70px;
background-color: #E9ECEE;
}
.footer-logo {
padding: 10px;
display: block;
margin: 0 auto 20px;
width: 70px;
}
.copy-right {
text-align: center;
}
@media screen and (max-width: 600px) {
.footer-wrap {
padding: 30px 0px 50px;
}
.copy-right {
font-size: 1.2rem;
}
}