.p-container {
  width: min(88.88%, 128rem);
  margin: 0 auto;
}

.p-content {
  width: min(78.12%, 100rem);
  margin: 0 auto;
}

.p-header {
  z-index: 9999;
  position: fixed;
  right: 0;
  bottom: 2.7777777778vw;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translate(0, calc(100% + 2.7777777778vw));
          transform: translate(0, calc(100% + 2.7777777778vw));
}

.p-header_btn {
  display: none;
}

.p-header_btn.is-open .p-header_btn_line {
  translate: 0 -50%;
}

.p-header_btn.is-open .p-header_btn_line:first-of-type {
  rotate: 45deg;
}

.p-header_btn.is-open .p-header_btn_line:last-of-type {
  rotate: -45deg;
}

.p-header_nav {
  width: 54.3055555556vw;
  height: 4.5138888889vw;
  margin: 0 auto;
  padding: 0 2.7777777778vw;
  border-radius: 2.2916666667vw;
  background: rgba(255,255,255,.8);
}

.p-header_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header_nav_items {
  display: grid;
  grid-template-columns: repeat(7, auto);
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  gap: 0 2.0833333333vw;
}

.p-header_nav_item_link {
  z-index: 1;
  position: relative;
  color: var(--saison-lp-blue);
  font-weight: 400;
  font-size: 1.1111111111vw;
  font-family: "Inter","Noto Sans JP";
  letter-spacing: -0.02em;
  -webkit-transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-header_nav_item_link:not(:has(svg))::before {
  z-index: -1;
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: calc(100% + .6944444444vw);
  height: 4px;
  translate: -50% 0;
  scale: 0 1;
  background: var(--saison-lp-green);
  content: "";
  -webkit-transition: scale 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: scale 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-header_nav_item_link.is-ja {
  font-size: 1.1111111111vw;
}

.p-header_nav_item_link svg {
  --ball-color: var(--saison-lp-blue);
  width: 1.6666666667vw;
}

.p-header_nav_item_link svg path {
  -webkit-transition: fill 1s cubic-bezier(0.19, 1, 0.22, 1),stroke 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: fill 1s cubic-bezier(0.19, 1, 0.22, 1),stroke 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-footer {
  z-index: 3;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 48em) {
  .p-container {
    width: 100%;
    padding: 0 2rem;
  }
  .p-content {
    width: 100%;
    padding: 0;
  }
  .p-header {
    top: 4.5333333333vw;
    bottom: auto;
    width: 100%;
    height: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
    -webkit-transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .p-header.is-active {
    opacity: 1;
    -webkit-transition: opacity .8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity .8s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .p-header_btn {
    display: block;
    z-index: 999;
    position: absolute;
    top: 0;
    right: 5.3333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 50%;
    background: #fff;
  }
  .p-header_btn_line {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 5.3333333333vw;
    height: 1.0666666667vw;
    margin: 0 auto;
    border-radius: .5333333333vw;
    background: var(--saison-lp-blue);
    -webkit-transition: translate 1s cubic-bezier(0.19, 1, 0.22, 1),rotate 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: translate 1s cubic-bezier(0.19, 1, 0.22, 1),rotate 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .p-header_btn_line:first-of-type {
    translate: 0 calc(-50% - 1.0666666667vw);
  }
  .p-header_btn_line:last-of-type {
    translate: 0 calc(-50% + 1.0666666667vw);
  }
  .p-header_nav {
    position: absolute;
    top: -4.5333333333vw;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 0 0 10.6666666667vw 10.6666666667vw;
    background: var(--saison-lp-blue);
    -webkit-transition: height 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: height 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .p-header_nav.is-open {
    height: 146.6666666667vw;
  }
  .p-header_nav_item {
    display: block;
    margin-top: 10.6666666667vw;
    text-align: center;
  }
  .p-header_nav_item:first-of-type {
    margin-top: 0;
  }
  .p-header_nav_items {
    display: block;
    max-height: 100vh;
    padding: 23.2vw 0;
    overflow: auto;
  }
  .p-header_nav_item_link {
    color: #fff;
    font-size: 4.8vw;
    text-align: center;
  }
  .p-header_nav_item_link.is-ja {
    font-size: 4.2666666667vw;
  }
  .p-header_nav_item_link svg {
    --ball-color: #fff;
    width: 6.4vw;
  }
}

@media (hover: hover) {
  .p-header_nav_item_link:hover {
    color: var(--saison-lp-green);
  }
  .p-header_nav_item_link:hover svg {
    --ball-color: var(--saison-lp-green);
  }
  .p-header_nav_item_link:hover::before {
    scale: 1 1;
  }
}
