@charset "UTF-8";
@media screen and (max-width: 800px) {

/*ハンバーガーボタン*/
.header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
}
.el_humburger {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: auto;
  padding-top: 1px;
  box-sizing: border-box;
  z-index: 2;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}
.el_humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #2d7eb6;
  transition: all 0.2s ease-in-out;
}
.el_humburger > span:last-child {
  margin-bottom: 0;
}
.js_humburgerOpen .el_humburger > span {
  background: #2d7eb6;
}
.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}
.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}
.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}
.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}
.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}
.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}
/*ナビゲーション*/
.uq_spNavi {
  display: none;
}
.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 1;
}
.uq_spNavi_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.navigation {
  text-align: center;
  width: 60%;
  margin: 80px auto;
  background-color: #e6f5f9;
  padding: 20px 0;
  line-height: 1em;
  z-index: 1;
}
.navigation_item {
  font-ize: 18px;
  margin-bottom: 20px;
}
.navigation_item > a {
  color: #FFF;
  text-decoration: none;
  font-size: 20px;
}
.js_fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

}