.store-lp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#header.store-lp-header {
  position: relative;
  z-index: 1200;
  grid-template-columns: minmax(40px, .85rem) minmax(0, 1fr) minmax(92px, 1.45rem) 48px;
  gap: clamp(5px, .06rem, 10px);
  padding-inline: clamp(8px, .16rem, 20px);
}

.store-lp-logo-link {
  display: block;
  min-width: 0;
  text-decoration: none;
  border-radius: 2px;
}

.store-lp-logo-link img {
  display: block;
}

#header.store-lp-header .header_name {
  min-width: 0;
  font-size: clamp(10px, .15rem, 16px);
  overflow-wrap: anywhere;
}

#header.store-lp-header .header_btn02 {
  min-width: 0;
  min-height: 44px;
}

#header.store-lp-header .header_btn02 .txt {
  font-size: clamp(13px, .18rem, 18px);
}

.store-lp-menu-button {
  appearance: none;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: #2d2926;
  box-shadow: 0 4px 10px rgba(57, 37, 20, .2);
  color: #fff;
  cursor: pointer;
}

.store-lp-menu-button__lines {
  display: grid;
  gap: 5px;
  width: 22px;
  margin: auto;
}

.store-lp-menu-button__lines i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.store-lp-menu-button[aria-expanded="true"] .store-lp-menu-button__lines i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.store-lp-menu-button[aria-expanded="true"] .store-lp-menu-button__lines i:nth-child(2) {
  opacity: 0;
}

.store-lp-menu-button[aria-expanded="true"] .store-lp-menu-button__lines i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.store-lp-logo-link:focus-visible,
.store-lp-menu-button:focus-visible,
.store-lp-menu__close:focus-visible,
.store-lp-menu a:focus-visible {
  outline: 3px solid #1269d3;
  outline-offset: 3px;
}

.store-lp-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(25, 20, 17, .56);
  cursor: pointer;
}

.store-lp-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 20;
  width: min(480px, calc(100vw - 24px));
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fffdf9;
  box-shadow: -16px 0 48px rgba(42, 29, 19, .24);
  color: #222;
  text-align: left;
  animation: store-lp-menu-enter .2s ease-out both;
}

.store-lp-menu[hidden],
.store-lp-menu-backdrop[hidden] {
  display: none !important;
}

@keyframes store-lp-menu-enter {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.store-lp-menu__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 16px 20px;
  border-bottom: 1px solid #eadfd5;
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(10px);
}

.store-lp-menu__head p {
  min-width: 0;
  line-height: 1.35;
}

.store-lp-menu__head span {
  display: block;
  color: #c44931;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.store-lp-menu__head strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(15px, 3.8vw, 19px);
  overflow-wrap: anywhere;
}

.store-lp-menu__close {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid #ded2c7;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.store-lp-menu__close::before,
.store-lp-menu__close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 20px;
  height: 2px;
  background: #2d2926;
}

.store-lp-menu__close::before { transform: rotate(45deg); }
.store-lp-menu__close::after { transform: rotate(-45deg); }

.store-lp-menu__body {
  display: grid;
  gap: 28px;
  padding: 24px 20px 40px;
}

.store-lp-menu__group h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #4f443d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.store-lp-menu__group h2::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 2px;
  background: #c44931;
}

.store-lp-menu__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #ded6cf;
}

.store-lp-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  padding: 12px 10px;
  border-bottom: 1px solid #ded6cf;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.store-lp-menu__links a:nth-child(odd) {
  border-right: 1px solid #ded6cf;
}

.store-lp-menu__links a span {
  flex: 0 0 auto;
  color: #c44931;
  font-size: 15px;
}

.store-lp-menu__links--brand a {
  font-weight: 500;
}

body.store-lp-menu-open {
  overflow: hidden;
}

.pipi-master-hours th {
  white-space: nowrap;
}

.pipi-master-hours td {
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.pipi-current-trial-note {
  width: min(92%, 760px);
  margin: 0 auto 24px;
  padding: 14px 16px;
  border: 1px solid #dcc7b6;
  border-radius: 10px;
  background: #fffaf4;
  color: #4d3c32;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}

.pipi-current-trainers {
  width: min(92%, 1000px);
  margin: 36px auto 0;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #ead8ca;
  border-radius: 22px;
  background: #fffaf4;
  color: #28221e;
}

.pipi-current-trainers__heading {
  text-align: center;
}

.pipi-current-trainers__heading > p {
  margin: 0 0 10px;
  color: #c44931;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pipi-current-trainers__heading h3 {
  margin: 0;
  color: #28221e;
  font-size: clamp(25px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.35;
}

.pipi-current-trainers__heading > span {
  margin-top: 12px;
  display: block;
  color: #6e625a;
  font-size: 14px;
  line-height: 1.75;
}

.pipi-current-trainers__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.pipi-current-trainer {
  min-width: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid #eadfd5;
  border-radius: 16px;
  background: #fff;
}

.pipi-current-trainer figure,
.pipi-current-trainer__placeholder {
  width: 104px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #eee5dc;
}

.pipi-current-trainer figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.pipi-current-trainer__placeholder {
  display: grid;
  place-items: center;
  color: #a1846f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pipi-current-trainer p,
.pipi-current-trainer h4,
.pipi-current-trainer span {
  margin: 0;
}

.pipi-current-trainer p {
  color: #9a7761;
  font-size: 11px;
}

.pipi-current-trainer h4 {
  margin-top: 3px;
  color: #28221e;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.pipi-current-trainer span {
  margin-top: 7px;
  display: block;
  color: #655b54;
  font-size: 12px;
  line-height: 1.55;
}

.pipi-current-trainer a {
  margin-top: 10px;
  display: inline-block;
  color: #c44931;
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.pipi-current-trainers__note {
  margin: 18px 0 0;
  color: #746960;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

#price.pipi-store-current-price {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 6vw, 72px);
  background: #fff8ef;
  color: #28221e;
  text-align: center;
}

.pipi-store-current-price__eyebrow {
  margin: 0 0 12px;
  color: #cf4c35;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pipi-store-current-price h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.35;
}

.pipi-store-current-price > p:not(.pipi-store-current-price__eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.85;
}

.pipi-store-current-price > div {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pipi-store-current-price a {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cf4c35;
  border-radius: 999px;
  color: #cf4c35;
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.pipi-store-current-price a:last-child {
  color: #fff;
  background: #cf4c35;
}

@media (max-width: 600px) {
  .pipi-current-trainers {
    width: calc(100% - 28px);
    padding: 24px 18px;
  }

  .pipi-current-trainers__grid {
    grid-template-columns: 1fr;
  }

  .pipi-current-trainer {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .pipi-current-trainer figure,
  .pipi-current-trainer__placeholder {
    width: 88px;
  }

  .pipi-store-current-price {
    width: calc(100% - 28px);
    border-radius: 18px;
  }

  .pipi-store-current-price h2 br {
    display: none;
  }

  .pipi-store-current-price a {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  #header.store-lp-header {
    grid-template-columns: minmax(64px, .85rem) minmax(0, 1fr) minmax(120px, 1.45rem) 52px;
    gap: clamp(10px, .16rem, 20px);
    padding-inline: clamp(40px, 1.7rem, 164px);
  }

  .store-lp-menu-button {
    width: 52px;
    height: 52px;
  }

  .store-lp-menu__body {
    padding: 30px 28px 48px;
  }
}

@media (max-width: 390px) {
  #header.store-lp-header {
    grid-template-columns: 40px minmax(0, 1fr) 86px 44px;
    gap: 5px;
    padding-inline: 7px;
  }

  .store-lp-menu-button {
    width: 44px;
    height: 44px;
  }

  #header.store-lp-header .header_btn02 {
    padding-inline: 8px 18px;
  }

  #header.store-lp-header .header_btn02 .arrow {
    right: 8px;
  }

  .store-lp-menu__links {
    grid-template-columns: 1fr;
  }

  .store-lp-menu__links a:nth-child(odd) {
    border-right: 0;
  }
}
