main {
  padding: 120px 0 0 0;
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
  height: 100vh;
}

.header {
  position: fixed;
  background-color : rgba(255,255,255,0.7);
  width: 100%;
  height: 120px;
  z-index: 100;
  top: -120px;
  transition: ease 0.3s;
}

header.is-show {
  top:0
}

.header.menu-open {
  background-color: #fff
}

.header__inner{
  display: flex;
  justify-content: space-between;
}

.logo {
  width: 160px;
  padding: 42px 0 42px 24px;
}

.hamburger__wrap{
  display: flex;
  align-items: center;
}

.hamburger__menu{
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 40px 48px 40px auto;
  color: #262626;
}

.hamburger__menu span {
  width: 100%;
  height: 0.5px;
  position: relative;
  background: #262626;
  transition: ease .4s;
  display: block;
}

.hamburger__menu span:nth-child(1) {
  top: 0;
  width: 40px;
}
.hamburger__menu span:nth-child(2) {
  margin: 12px 0;
  width: 32px;
}
.hamburger__menu span:nth-child(3) {
  top: 0;
  margin: 11px 0;
  width: 24px;
}

.hamburger__menu.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger__menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger__menu.active span:nth-child(3) {
  width: 40px;
  top: -6px;
  transform: rotate(-45deg);
}

.nav {
  transform: translateX(0);
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  right: -100%;
  display: block;
  top: 120px;
  background-color: #FFF;
  z-index: 10000;
  transition: 0.5s ease;
  overflow-y: auto;
}

.nav.active {
  width: 100%;
  right: 0;
}

.anim-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.nav__container{
  width: 55vw;
  margin: 160px auto 0;
  margin-left: 20%;
  height: auto;
}

.nav__detail {
  background-color: #FFFFFF;
  width: 100%;
}
.nav__detail p {
  font-size: 20px;
}

.nav__detail-flex {
  display: flex;
  padding: 24px 0 0 24px;

}

.nav__detail-flex p {
  margin-right: 24px;
}

.nav__detail-flex p a{
  text-decoration: none;
  color: #262626;
}

.nav__detail-flex p:last-child {
  margin-right: 0;
}
.nav__detail-flex p::before{
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 8px 6px 0px;
  background-color: #262626;
}

.nv__persona-anker p {
  margin-top: 60px;
  font-size: 20px;
}

.nv__persona-anker p a {
  text-decoration: none;
  color: inherit;
  padding: 20px 50px 20px 0;
}

.header.active {
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .nav__container{
    width: 83vw;
    margin: auto auto 0;
    margin-left: auto;
    height: auto;
  }
  .nav {
    width: 375px;
    display: none;
    overflow-y: auto;
  }
  .nav.active{
    position: absolute;
    width: 100%;
    height: 100vh;
    display: block;
    top: 80px;
    background-color: #FFF;
    z-index: 10000;
    overflow-y: auto;
  }

  .nav__detail-flex {
    display: block;
    padding: 0 0 0 0;
  }

  .nav__detail-flex p {
    margin: 24px 0 0;
  }
  .nv__persona-anker p{
    margin-top: 32px;
    font-size: 20px;
  }

  .logo {
    width: 128px;
    padding: 30px 0 21px 25px
  }

  .hamburger__menu{ 
    margin: 28px 25px;
  }

  .header {
    height: 80px;
    top: -80px;
  } 
}





.nv__follow-flex {
  display: flex;
  /* justify-content: space-between; */
  width: 100%;
  margin: 127px auto 0 20%;
}

.nv__category-follow {
  display: flex;
  align-items: center;
  transform: translateX(-4px);
  margin-right: 85px;
}

.nv__category-follow p::before {
  content: "";
  width: 64px;
  height: 1px;
  background-color: #D1D1D1;
  display: block;
  margin: auto 14px auto 0;
}

.nv__category-follow p {
  display: flex;
  font-size: 40px;
  margin: auto 0;
  line-height: 1.5;
  color: #D1D1D1;
  font-family: "Cinzel", serif;
}

.nv__category-follow p a{
  display: flex;
  text-decoration: none;
  color: #D1D1D1;
}

.nv__insta-line-logo {
  display: flex;
  align-items: center;
  gap: 80px;
}

.nv__insta-line-logo p:first-child {
  max-width: 81px;
  width: 100%;
}
.nv__insta-line-logo p:last-child {
  max-width: 32px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .nv__follow-flex {
    display: block;
    justify-content: space-between;
    width: 100%;
    margin: 64px auto 0 0;
  }

  .nv__category-follow {
    display: flex;
    align-items: center;
    transform: translateX(-4px);

  }

  .nv__category-follow p {
    font-size: 32px;
    margin: auto 0;
    line-height: 1.9;
    color: #D1D1D1;
  }

  .nv__insta-line-logo {
    width: fit-content;
    display: flex;
    flex-direction: column;
    margin: 24px auto 0;
    gap: 0px;
  }

  .nv__insta-line-logo p:first-child {
    max-width: 160px;
    width: 100%;
  }
  .nv__insta-line-logo p:last-child {
    max-width: 64px;
    margin-top: 32px;
    width: 100%;
  }
}
