@charset "UTF-8";
/* CSS Document */
h1 {
  display: block;
  margin-left: 25px;
  margin-top: 10px;
  text-align: left;
  color: #333333;
}
.header {
  width: 100%;
  height: 120px;
  background-color: #FFF;
  position: fixed;
  z-index: 9999;
}
.header h2 img {
  display: block;
  width: 200px;
  position: absolute;
  top: 50px;
  left: 25px;
}
.header__image img {
  display: none;
}
.global-navigation {
  margin: -35px 0;
  padding-bottom: 10px;
}
.global-navigation__list a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.global-navigation__list a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #a40603;
  transform: scale(0, 1);
  transition: 0.4s;
}
.global-navigation__list a:hover:before {
  transform: scale(1);
}
.hamburger {
  display: block;
  height: 50px;
  margin: auto 25px auto auto;
  padding: 0;
  position: relative;
  z-index: 900;
  width: 50px;
  border: none;
  background-color: transparent;
}
.hamburger__line img {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0px;
  right: -3px;
  transition: 0.4s;
}
.hamburger.-active .hamburger__text::before {
  content: 'CLOSE';
}
.hamburger__text::before {
  content: "MENU";
  color: #333333;
  font-size: 1.2rem;
  font-weight: 900;
}
.header__nav-area {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  height: 100vh;
  width: 300px;
  visibility: hidden;
  padding-top: 60px;
  background-color: rgba(250, 250, 250, 0.9);
  transition: 0.4s;
}
.header__nav-area.-active {
  left: 0;
  visibility: visible;
}
.global-navigation {
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 120px;
  padding-left: 25px;
}
.global-navigation__list > li {
  padding-bottom: 10px;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__link {
  color: #333333;
  font-weight: 500;
  transition: color 0.4s;
  font-size: 2.0rem;
  text-align: center;
}
.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}
.global-navigation__link.-accordion::after {
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  background-color: #a40603;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  background-color: #a40603;
  transform: translateY(-50%);
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.accordion.-active {
  height: auto;
  padding-top: 15px;
  visibility: visible;
}
.accordion__list li {
  font-size: 1.8rem;
}
.accordion__list li + li {
  margin-top: 20px;
}
.accordion__link {
  color: #333333;
}
@media(min-width:1024px) {
  .header {
    width: 300px;
    height: 100vh;
    background-color: #FFF;
    position: fixed;
    z-index: 9999;
  }
  h1 {
    margin-top: 20px;
  }
  .header h2 img {
    display: block;
    width: 80%;
    position: absolute;
    top: 50px;
    left: 30px;
  }
  .header__image img {
    display: block;
    width: 180px;
    margin: 65px auto 0;
  }
  #js-hamburger {
    display: none;
  }
  .header__nav-area {
    position: fixed;
    top: 350px;
    left: 0;
    z-index: 9;
    height: 100vh;
    width: 300px;
    visibility: visible;
    background-color: #FFF;
    padding-top: 10px;
  }
  .global-navigation {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .warning {
    font-size: 1.4rem;
    margin: 0 100px 40px 400px;
  }
  .warning h3 {
    color: #FF0000;
  }
  .copyright-mo {
    display: none;
  }
  .copyright-PC {
    display: block;
    font-size: 1.2rem;
    margin-top: 20px;
  }
}