/*
main.is-active {
  position: fixed;
}*/
.l-header {
  display: block;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border:none;
	background:transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 30px;
  height: 2px;
  transform: translateX(-50%);
  background: #ea6285;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
}
.c-hamburger .c-hamburger__text {
  display: block;
  top: 12px;
  background: transparent;
  color: #ea6285;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.p-header__inner {
  height: inherit;
}
.p-header__title {
  width: 100%;
  max-width: 170px;
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;/*
  height: 100%;*/
	height:100px;
}
.p-header__hamburger.is-active {
  position:fixed;
}
.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: lightblue;
  opacity: 1;
  visibility: visible;
  transition: 0.6s;
}
.p-nav {/*
  padding-top: 72px;
  padding-bottom: 72px;*/
}
.p-nav__list {
  display: block;
  width: 100%;
}
.p-nav__item {
  position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
}
.p-header__nav.is-active .p-nav__item {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-nav__link {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media screen and (min-width:768px) {
  .p-header__nav {
		display: inherit;
    position: static;
    height: 100%;
    opacity: initial;
    visibility: visible;
		font-weight: normal;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-nav__list {
    display: flex;
    background:transparent;
    padding-right: 0;
  }
}

