:root {
  --pm-ivory: #f8f3ef;
  --pm-paper: #fffaf7;
  --pm-blush: #d9a6ad;
  --pm-blush-deep: #b8737e;
  --pm-rose-gold: #c9a39a;
  --pm-sub-bg: #efe3e3;
  --pm-brown: #4a3f3d;
  --pm-ink: #251f1e;
  --pm-moss: #8f9888;
  --pm-gold: #c9b896;
  --pm-line: rgba(74, 63, 61, 0.14);
  --pm-shadow: 0 22px 70px rgba(37, 31, 30, 0.13);
  --pm-font-body: "Noto Sans JP", sans-serif;
  --pm-font-heading: "ten-mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

html.no-js,
html.no-js body {
  overflow: hidden;
}

html.no-js .pm-page {
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  background: var(--pm-paper);
  color: var(--pm-brown);
  font-family: var(--pm-font-body);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body.pm-nav-open,
body.pm-age-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

[x-cloak] {
  display: none !important;
}

.pm-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.pm-page {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  background:
    linear-gradient(180deg, rgba(248, 243, 239, 0.94), rgba(255, 250, 247, 0.98) 58%, #ffffff),
    radial-gradient(circle at 15% 18%, rgba(217, 166, 173, 0.17), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(143, 152, 136, 0.14), transparent 30%);
}

.pm-ticker-slot {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 0;
  background: var(--pm-ivory);
}

.pm-header {
  position: sticky;
  top: 0;
  z-index: 45;
  border-bottom: 1px solid rgba(74, 63, 61, 0.1);
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pm-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr 112px;
  align-items: center;
  width: min(1200px, calc(100% - 28px));
  min-height: 68px;
  margin: 0 auto;
}

.pm-icon-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(74, 63, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--pm-brown);
  cursor: pointer;
}

.pm-icon-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
}

.pm-header__logo {
  display: flex;
  justify-content: center;
  color: var(--pm-brown);
}

.pm-header__logo img {
  width: 178px;
  height: auto;
}

.pm-header__member {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.pm-header__member.is-authenticated::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3f9f68;
  box-shadow: 0 0 0 3px rgba(63, 159, 104, 0.12);
}

.pm-header__member:hover {
  color: var(--pm-blush-deep);
}

.pm-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  background: rgba(37, 31, 30, 0.18);
}

.pm-nav__panel {
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
  background: #f8f3ef;
  color: #4a3f3d;
}

.pm-nav-enter {
  transition: opacity 280ms ease, transform 280ms ease;
}

.pm-nav-enter-start {
  opacity: 0;
  transform: translateY(8px);
}

.pm-nav-enter-end {
  opacity: 1;
  transform: translateY(0);
}

.pm-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(74, 63, 61, 0.12);
}

.pm-nav__head img {
  width: 188px;
  color: var(--pm-brown);
}

.pm-nav__close {
  min-width: 72px;
  min-height: 42px;
  border: 1px solid rgba(74, 63, 61, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--pm-brown);
  font: inherit;
  cursor: pointer;
}

.pm-nav__body {
  width: min(960px, calc(100% - 32px));
  margin: 46px auto 30px;
}

.pm-nav__item {
  opacity: 0;
  transform: translateY(8px);
  animation: pmNavItemIn 300ms ease forwards;
  animation-delay: var(--nav-delay);
  border-bottom: 1px solid rgba(74, 63, 61, 0.11);
}

@keyframes pmNavItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pm-nav__item > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  text-decoration: none;
}

.pm-nav__item span {
  font-family: var(--pm-font-heading);
  font-size: 34px;
  line-height: 1.2;
}

.pm-nav__item small {
  font-size: 14px;
  color: rgba(74, 63, 61, 0.68);
}

.pm-nav__item.is-active > a {
  color: var(--pm-blush-deep);
}

.pm-nav__children {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding: 0 0 18px;
}

.pm-nav__children a {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.pm-nav__children a:hover,
.pm-nav__item > a:hover {
  color: var(--pm-blush-deep);
}

.pm-nav__foot {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 46px;
  font-size: 13px;
  color: rgba(74, 63, 61, 0.72);
}

.pm-main {
  min-height: 60vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.pm-hero {
  position: relative;
  height: calc(100svh - 132px);
  min-height: 560px;
  overflow: hidden;
}

.pm-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-section__label {
  margin: 0 0 14px;
  color: var(--pm-blush);
  font-size: 13px;
  font-weight: 600;
}

.pm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.pm-button--primary {
  background: var(--pm-blush);
  color: #251f1e;
}

.pm-button--ghost {
  border: 1px solid rgba(255, 250, 247, 0.5);
  color: #fffaf7;
}

.pm-button--soft {
  border: 1px solid rgba(201, 163, 154, 0.42);
  background: transparent;
  color: var(--pm-brown);
  letter-spacing: 0.06em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pm-button--soft:hover,
.pm-button--soft:focus-visible {
  border-color: rgba(201, 163, 154, 0.7);
  background: var(--pm-sub-bg);
}

.pm-section {
  padding: 76px 0;
}

.pm-section--intro {
  background: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid var(--pm-line);
}

.pm-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.pm-section__title {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.42;
}

.pm-section__copy {
  margin: 5px 0 0;
  font-size: 17px;
}

.pm-section__copy p {
  margin: 0;
}

.pm-section__copy p + p {
  margin-top: 18px;
}

.pm-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.pm-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(201, 163, 154, 0.36);
  border-radius: 4px;
  color: var(--pm-brown);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pm-section-link::after {
  content: "→";
  font-size: 11px;
  opacity: 0.7;
}

.pm-section-link:hover,
.pm-section-link:focus-visible {
  border-color: rgba(201, 163, 154, 0.7);
  color: var(--pm-rose-gold);
}

.pm-coming-soon {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 320px);
  padding-top: 118px;
  padding-bottom: 118px;
}

.pm-coming-soon__inner {
  max-width: 760px;
}

.pm-coming-soon__lead {
  margin: 26px 0 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 26px;
  line-height: 1.55;
}

.pm-coming-soon__copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 16px;
}

.pm-coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pm-legal {
  padding-top: 112px;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(248, 243, 239, 0.82)),
    linear-gradient(90deg, rgba(201, 184, 150, 0.1), transparent 46%, rgba(217, 166, 173, 0.08));
}

.pm-legal__heading {
  align-items: start;
  margin-bottom: 34px;
}

.pm-legal__body {
  max-width: 920px;
  padding: 42px 48px;
  border: 1px solid rgba(201, 163, 154, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(70, 48, 42, 0.08);
}

.pm-legal-block + .pm-legal-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 163, 154, 0.22);
}

.pm-legal-block h2 {
  margin: 0 0 16px;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

.pm-legal-block h3 {
  margin: 0 0 12px;
  color: var(--pm-brown);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.pm-legal-block p {
  margin: 0;
  color: rgba(51, 42, 40, 0.86);
  font-size: 15px;
  line-height: 2;
}

.pm-legal-block p + p {
  margin-top: 14px;
}

.pm-legal-list {
  margin: 18px 0 0;
  padding-left: 1.4em;
  color: rgba(51, 42, 40, 0.86);
  font-size: 15px;
  line-height: 1.9;
}

.pm-legal-list li + li {
  margin-top: 6px;
}

.pm-terms-groups {
  display: grid;
  gap: 24px;
}

.pm-terms-group {
  padding: 22px 24px;
  border: 1px solid rgba(201, 163, 154, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.56);
}

.pm-terms-group .pm-legal-list {
  margin-top: 0;
}

.pm-legal__date {
  margin: 38px 0 0;
  color: rgba(51, 42, 40, 0.62);
  font-size: 13px;
  text-align: right;
}

.pm-today-attendance {
  overflow: hidden;
  border-bottom: 1px solid var(--pm-line);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.96), rgba(248, 243, 239, 0.72)),
    linear-gradient(90deg, rgba(201, 184, 150, 0.12), transparent 42%, rgba(217, 166, 173, 0.1));
}

.pm-today-attendance__heading {
  margin-bottom: 24px;
}

.pm-cast-slider-wrap {
  position: relative;
}

.pm-cast-slider {
  display: flex;
  gap: 10px;
  margin-inline: -16px;
  overflow-x: auto;
  padding: 0 16px 10px;
  scroll-padding-inline: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pm-cast-slider::-webkit-scrollbar {
  display: none;
}

.pm-cast-slider.is-draggable,
.pm-profile-gallery__slider.is-draggable {
  cursor: grab;
  user-select: none;
}

.pm-cast-slider.is-dragging,
.pm-profile-gallery__slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pm-cast-card {
  position: relative;
  flex: 0 0 clamp(210px, 62vw, 300px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #251f1e;
  color: #fffaf7;
  scroll-snap-align: start;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(37, 31, 30, 0.16);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.pm-cast-card:hover,
.pm-cast-card:focus-visible {
  box-shadow: 0 22px 54px rgba(37, 31, 30, 0.22);
  transform: translateY(-2px);
}

.pm-cast-card:active {
  transform: scale(0.985);
}

.pm-cast-card:focus-visible {
  outline: 3px solid rgba(184, 115, 126, 0.7);
  outline-offset: 3px;
}

.pm-cast-card__image,
.pm-cast-card__shade {
  position: absolute;
  inset: 0;
}

.pm-cast-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.pm-cast-card:hover .pm-cast-card__image,
.pm-cast-card:focus-visible .pm-cast-card__image {
  transform: scale(1.035);
}

.pm-cast-card__shade {
  background:
    linear-gradient(180deg, rgba(37, 31, 30, 0.08) 0%, rgba(37, 31, 30, 0.08) 36%, rgba(37, 31, 30, 0.82) 100%),
    linear-gradient(0deg, rgba(37, 31, 30, 0.32), transparent 52%);
}

.pm-cast-card__badges {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pm-cast-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 250, 247, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.88);
  color: #7f4e58;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.pm-cast-card__badge--attendance {
  min-height: 20px;
  margin-left: auto;
  padding: 4px 7px;
  border-color: rgba(255, 250, 247, 0.28);
  border-radius: 3px;
  background: rgba(37, 31, 30, 0.74);
  color: #fffaf7;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(37, 31, 30, 0.18);
}

.pm-cast-card__body {
  position: absolute;
  right: 10px;
  bottom: 12px;
  left: 10px;
  z-index: 1;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.pm-cast-card__name {
  overflow: hidden;
  font-family: var(--pm-font-heading);
  font-size: 22px;
  line-height: 1.24;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-cast-card__stats,
.pm-cast-card__schedule {
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-cast-card__stats {
  color: rgba(255, 250, 247, 0.78);
}

.pm-cast-card__schedule {
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin-top: 3px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 250, 247, 0.34);
  border-radius: 999px;
  background: rgba(37, 31, 30, 0.44);
  color: #fffaf7;
  font-weight: 600;
}

.pm-cast-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  margin-top: 3px;
}

.pm-cast-card__footer .pm-cast-card__schedule {
  margin-top: 0;
}

.pm-cast-card__count {
  flex: 0 0 auto;
  color: rgba(255, 250, 247, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(37, 31, 30, 0.55);
}

.pm-cast-card__count small {
  font-size: 0.72em;
}

.pm-today-attendance__empty {
  display: grid;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-today-attendance__empty p,
.pm-today-attendance__empty span {
  margin: 0;
}

.pm-today-attendance__empty p {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
  line-height: 1.4;
}

.pm-today-attendance__empty span {
  color: rgba(74, 63, 61, 0.72);
  font-size: 14px;
}

.pm-newface-news {
  border-bottom: 1px solid var(--pm-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 247, 0.94)),
    linear-gradient(90deg, rgba(143, 152, 136, 0.09), transparent 48%, rgba(201, 184, 150, 0.12));
}

.pm-newface-news__heading {
  margin-bottom: 24px;
}

.pm-newface-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.pm-newface-news__featured {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(37, 31, 30, 0.08);
}

.pm-newface-news__thumb {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #251f1e;
}

.pm-newface-news__thumb img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.pm-newface-news__thumb:hover img,
.pm-newface-news__thumb:focus-visible img {
  transform: scale(1.035);
}

.pm-newface-news__featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 26px;
}

.pm-newface-news__date,
.pm-newface-detail__date {
  display: block;
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pm-newface-news__title,
.pm-newface-news__item-title {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-weight: 400;
  line-height: 1.45;
}

.pm-newface-news__title {
  margin-top: 10px;
  font-size: 30px;
}

.pm-newface-news__profile {
  margin: 12px 0 0;
  color: rgba(74, 63, 61, 0.74);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.pm-newface-news__title a,
.pm-newface-news__item-title a {
  text-decoration: none;
}

.pm-newface-news__title a:hover,
.pm-newface-news__title a:focus-visible,
.pm-newface-news__item-title a:hover,
.pm-newface-news__item-title a:focus-visible {
  color: var(--pm-blush-deep);
}

.pm-newface-news__list {
  display: grid;
  gap: 12px;
}

.pm-newface-news__item {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.pm-newface-news__item-title {
  font-size: 21px;
}

.pm-newface-news__empty,
.pm-newface-index__empty,
.pm-newface-detail-empty,
.pm-info-detail-empty {
  display: grid;
  gap: 8px;
}

.pm-newface-news__empty,
.pm-newface-index__empty {
  padding: 28px 0;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-newface-news__empty p,
.pm-newface-index__empty p {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
}

.pm-newface-news__empty span,
.pm-newface-index__empty span {
  color: rgba(74, 63, 61, 0.72);
  font-size: 14px;
}

.pm-info-news {
  border-bottom: 1px solid var(--pm-line);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.92), rgba(248, 243, 239, 0.76)),
    linear-gradient(90deg, rgba(201, 184, 150, 0.14), transparent 42%, rgba(143, 152, 136, 0.1));
}

.pm-info-news__heading {
  margin-bottom: 22px;
}

.pm-info-news__slider {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  margin-inline: calc((100vw - min(1120px, calc(100vw - 32px))) / -2);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px calc((100vw - min(1120px, calc(100vw - 32px))) / 2) 18px;
  scroll-padding-inline: calc((100vw - min(1120px, calc(100vw - 32px))) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.pm-info-news-card {
  min-width: 0;
  scroll-snap-align: start;
}

.pm-info-news-card__link {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(37, 31, 30, 0.07);
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pm-info-news-card__link:hover,
.pm-info-news-card__link:focus-visible {
  border-color: rgba(184, 115, 126, 0.36);
  box-shadow: 0 18px 44px rgba(37, 31, 30, 0.1);
  transform: translateY(-2px);
}

.pm-info-news-card__image {
  display: block;
  overflow: hidden;
  background: #251f1e;
}

.pm-info-news-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.pm-info-news-card__link:hover .pm-info-news-card__image img,
.pm-info-news-card__link:focus-visible .pm-info-news-card__image img {
  transform: scale(1.035);
}

.pm-info-news-card__body {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 18px;
}

.pm-info-news-card__date,
.pm-info-detail__date {
  display: block;
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pm-info-news-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pm-newface-index,
.pm-newface-detail-empty,
.pm-info-detail-empty {
  padding-top: 118px;
}

.pm-newface-index__intro {
  margin: 12px 0 0;
  color: rgba(74, 63, 61, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.pm-newface-index__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
  color: var(--pm-blush-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pm-newface-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pm-newface-index-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(37, 31, 30, 0.07);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pm-newface-index-card:hover,
.pm-newface-index-card:focus-visible {
  border-color: rgba(189, 116, 130, 0.42);
  box-shadow: 0 18px 42px rgba(37, 31, 30, 0.11);
  transform: translateY(-2px);
}

.pm-newface-index-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #251f1e;
}

.pm-newface-index-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 320ms ease;
}

.pm-newface-index-card:hover .pm-newface-index-card__image img,
.pm-newface-index-card:focus-visible .pm-newface-index-card__image img {
  transform: scale(1.035);
}

.pm-newface-index-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 22px;
}

.pm-newface-index-card__date {
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pm-newface-index-card__title {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
}

.pm-newface-index-card__profile {
  color: rgba(74, 63, 61, 0.74);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.pm-newface-index__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.pm-newface-index__pager-link,
.pm-newface-index__pager-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(74, 63, 61, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--pm-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.pm-newface-index__pager-link:hover,
.pm-newface-index__pager-link:focus-visible {
  border-color: rgba(189, 116, 130, 0.42);
  color: var(--pm-blush-deep);
}

.pm-newface-index__pager-link.is-disabled {
  opacity: 0.36;
}

.pm-newface-index__pager-current {
  min-width: 48px;
  border-color: var(--pm-blush-deep);
  color: var(--pm-blush-deep);
}

.pm-newface-index__empty .pm-button,
.pm-newface-detail-empty .pm-button {
  width: fit-content;
  margin-top: 14px;
}

.pm-ladies {
  padding-top: 118px;
}

.pm-ladies__heading {
  margin-bottom: 26px;
}

.pm-ladies__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pm-ladies-card {
  width: 100%;
  min-width: 0;
  flex: none;
}

.pm-ladies-card .pm-cast-card__body {
  bottom: 10px;
}

.pm-ladies-card .pm-cast-card__name {
  font-size: 18px;
}

.pm-ladies-card .pm-cast-card__stats {
  font-size: 11px;
}

.pm-ladies__empty {
  display: grid;
  gap: 4px;
  padding: 30px 0;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-ladies__empty p,
.pm-ladies__empty span {
  margin: 0;
}

.pm-ladies__empty p {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
  line-height: 1.4;
}

.pm-ladies__empty span {
  color: rgba(74, 63, 61, 0.72);
  font-size: 14px;
}

.pm-schedule-list {
  padding-top: 118px;
}

.pm-schedule-list__heading {
  margin-bottom: 18px;
}

.pm-schedule-list__current {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin: 10px 0 0;
  color: var(--pm-brown);
  font-size: 15px;
}

.pm-schedule-list__current span {
  color: var(--pm-ink);
  font-weight: 600;
}

.pm-schedule-list__current small {
  color: rgba(74, 63, 61, 0.7);
  font-size: 12px;
}

.pm-schedule-date-nav {
  display: flex;
  gap: 8px;
  margin: 0 -16px 18px;
  overflow-x: auto;
  padding: 0 16px 10px;
  scroll-padding-inline: 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pm-schedule-date-nav::-webkit-scrollbar {
  display: none;
}

.pm-schedule-date-nav__chip {
  display: grid;
  flex: 0 0 auto;
  gap: 2px;
  place-content: center;
  min-width: 86px;
  min-height: 52px;
  padding: 7px 10px;
  border: 1px solid rgba(201, 163, 154, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--pm-brown);
  line-height: 1.25;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pm-schedule-date-nav__chip span {
  font-size: 13px;
  font-weight: 700;
}

.pm-schedule-date-nav__chip small {
  overflow: hidden;
  color: rgba(74, 63, 61, 0.66);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-schedule-date-nav__chip:hover,
.pm-schedule-date-nav__chip:focus-visible {
  border-color: rgba(184, 115, 126, 0.54);
  background: rgba(255, 250, 247, 0.92);
}

.pm-schedule-date-nav__chip[aria-current="date"] {
  border-color: rgba(184, 115, 126, 0.72);
  background: var(--pm-blush-deep);
  color: #fffaf7;
  pointer-events: none;
}

.pm-schedule-date-nav__chip[aria-current="date"] small {
  color: rgba(255, 250, 247, 0.82);
}

.pm-schedule-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pm-schedule-card {
  width: 100%;
  min-width: 0;
  flex: none;
}

.pm-schedule-card .pm-cast-card__body {
  bottom: 10px;
}

.pm-schedule-card .pm-cast-card__name {
  font-size: 18px;
}

.pm-schedule-card .pm-cast-card__stats {
  font-size: 11px;
}

.pm-schedule-card .pm-cast-card__schedule {
  font-size: 11px;
}

.pm-schedule-list__empty {
  display: grid;
  gap: 5px;
  padding: 30px 0;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-schedule-list__empty p,
.pm-schedule-list__empty span {
  margin: 0;
}

.pm-schedule-list__empty p {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
  line-height: 1.4;
}

.pm-schedule-list__empty span {
  color: rgba(74, 63, 61, 0.72);
  font-size: 14px;
}

.pm-schedule-list__empty .pm-button {
  width: fit-content;
  margin-top: 16px;
}

.pm-profile-empty {
  min-height: 60vh;
  padding-top: 126px;
}

.pm-profile-empty .pm-button {
  margin-top: 26px;
}

.pm-profile-hero {
  padding: 86px 0 70px;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(248, 243, 239, 0.82)),
    linear-gradient(110deg, rgba(217, 166, 173, 0.12), transparent 45%, rgba(201, 184, 150, 0.12));
  border-bottom: 1px solid var(--pm-line);
}

.pm-profile-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.pm-profile-page-actions {
  display: flex;
  justify-content: flex-end;
}

.pm-profile-page-actions--top {
  position: absolute;
  top: -46px;
  right: 0;
}

.pm-profile-page-actions--bottom {
  margin-top: 18px;
}

.pm-profile-page-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 2px;
  border: none;
  background: transparent;
  color: rgba(74, 63, 61, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.18s ease;
}

.pm-profile-page-action::before {
  content: "←";
  font-size: 11px;
  opacity: 0.78;
}

.pm-profile-page-action:hover,
.pm-profile-page-action:focus-visible {
  color: var(--pm-rose-gold);
}

.pm-profile-hero__media {
  overflow: hidden;
  border-radius: 8px;
  background: #251f1e;
  box-shadow: var(--pm-shadow);
}

.pm-profile-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
}

.pm-profile-hero__body {
  min-width: 0;
}

.pm-profile-hero__title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pm-profile-hero__title {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.22;
}

.pm-profile-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(184, 115, 126, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.pm-profile-hero__furi,
.pm-profile-comment,
.pm-profile-comment h2,
.pm-profile-comment p {
  margin: 0;
}

.pm-profile-hero__furi {
  margin-top: 8px;
  color: rgba(74, 63, 61, 0.62);
  font-size: 14px;
}

.pm-profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}

.pm-profile-facts div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.pm-profile-facts dt,
.pm-profile-facts dd {
  margin: 0;
}

.pm-profile-facts dt {
  color: var(--pm-blush-deep);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.pm-profile-facts dd {
  overflow: hidden;
  margin-top: 5px;
  color: var(--pm-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-profile-comment {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.pm-profile-comment h2 {
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.pm-profile-comment p {
  color: rgba(74, 63, 61, 0.86);
  font-size: 15px;
  line-height: 1.8;
}

.pm-profile-gallery {
  background: rgba(255, 255, 255, 0.42);
}

.pm-profile-gallery__slider {
  display: flex;
  gap: 12px;
  margin-inline: -16px;
  overflow-x: auto;
  padding: 0 16px 10px;
  scroll-padding-inline: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pm-profile-gallery__slider::-webkit-scrollbar {
  display: none;
}

.pm-cast-slider.is-draggable img,
.pm-profile-gallery__slider.is-draggable img {
  -webkit-user-drag: none;
}

.pm-profile-gallery__slide {
  flex: 0 0 clamp(180px, 58vw, 320px);
  margin: 0;
  scroll-snap-align: start;
}

.pm-profile-gallery__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  background: #251f1e;
}

.pm-profile-schedule {
  border-top: 1px solid var(--pm-line);
}

.pm-profile-schedule__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pm-profile-schedule__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.pm-profile-schedule__item.is-today {
  border-color: rgba(184, 115, 126, 0.42);
  background: rgba(217, 166, 173, 0.12);
}

.pm-profile-schedule__item span,
.pm-profile-schedule__item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-profile-schedule__main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.pm-profile-schedule__item span {
  color: rgba(74, 63, 61, 0.65);
  font-size: 12px;
}

.pm-profile-schedule__item strong {
  color: var(--pm-ink);
  font-size: 14px;
  line-height: 1.35;
}

.pm-profile-schedule__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 38px;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: #9f6970;
  color: var(--pm-paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.pm-profile-schedule__reserve:hover,
.pm-profile-schedule__reserve:focus-visible {
  background: #82545b;
  color: var(--pm-paper);
  transform: translateY(-1px);
}

html.pm-overlay-locked,
body.pm-overlay-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.pm-overlay-locked .pm-mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.pm-info-detail__hero {
  padding: 112px 0 72px;
  border-bottom: 1px solid var(--pm-line);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.94), rgba(248, 243, 239, 0.8)),
    linear-gradient(90deg, rgba(201, 184, 150, 0.12), transparent 48%, rgba(143, 152, 136, 0.1));
}

.pm-info-detail__hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.pm-info-detail__media {
  overflow: hidden;
  border-radius: 8px;
  background: #251f1e;
  box-shadow: var(--pm-shadow);
}

.pm-info-detail__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pm-info-detail__body {
  min-width: 0;
}

.pm-info-detail__title {
  margin: 12px 0 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.36;
}

.pm-info-detail__content-section {
  background: rgba(255, 255, 255, 0.58);
}

.pm-info-detail__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.pm-info-detail__content {
  min-width: 0;
  color: var(--pm-brown);
  font-size: 18px;
  line-height: 2.15;
}

.pm-info-detail__content p {
  margin: 0 0 1.45em;
}

.pm-info-detail__content > :first-child {
  margin-top: 0;
}

.pm-info-detail__content > :last-child {
  margin-bottom: 0;
}

.pm-info-detail__overlay-actions {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top, 0px));
  right: 18px;
  z-index: 5;
}

.pm-newface-detail__hero {
  padding: 112px 0 72px;
  border-bottom: 1px solid var(--pm-line);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.94), rgba(248, 243, 239, 0.8)),
    linear-gradient(90deg, rgba(217, 166, 173, 0.12), transparent 48%, rgba(143, 152, 136, 0.1));
}

.pm-newface-detail__hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.pm-newface-detail__media {
  display: flex;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #251f1e;
  box-shadow: var(--pm-shadow);
}

.pm-newface-detail__media--portrait {
  max-width: 430px;
}

.pm-newface-detail__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pm-newface-detail__body {
  min-width: 0;
}

.pm-newface-detail__title {
  margin: 12px 0 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.36;
}

.pm-newface-detail__cast {
  margin: 18px 0 0;
  color: var(--pm-brown);
  font-family: var(--pm-font-heading);
  font-size: 27px;
  line-height: 1.42;
}

.pm-newface-detail__cast span {
  margin-left: 10px;
  color: rgba(74, 63, 61, 0.64);
  font-family: var(--pm-font-body);
  font-size: 13px;
}

.pm-newface-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 26px 0 0;
}

.pm-newface-detail__facts div {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.pm-newface-detail__facts dt,
.pm-newface-detail__facts dd {
  margin: 0;
}

.pm-newface-detail__facts dt {
  color: var(--pm-blush-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pm-newface-detail__facts dd {
  overflow: hidden;
  color: var(--pm-ink);
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-newface-detail__content-section {
  background: rgba(255, 255, 255, 0.58);
}

.pm-newface-detail__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.pm-newface-detail__article {
  min-width: 0;
}

.pm-newface-detail__price,
.pm-newface-detail__cta {
  border: 1px solid rgba(74, 63, 61, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.78);
  box-shadow: 0 14px 38px rgba(37, 31, 30, 0.05);
}

.pm-newface-detail__note,
.pm-newface-detail__content {
  padding: 0;
}

.pm-newface-detail__content {
  color: var(--pm-brown);
  font-size: 18px;
  line-height: 2.15;
}

.pm-newface-detail__note {
  color: var(--pm-ink);
  font-size: 17px;
  line-height: 2;
}

.pm-newface-detail__content p,
.pm-newface-detail__note p {
  margin: 0 0 1.45em;
}

.pm-newface-detail__content > :first-child,
.pm-newface-detail__note > :first-child {
  margin-top: 0;
}

.pm-newface-detail__content > :last-child,
.pm-newface-detail__note > :last-child {
  margin-bottom: 0;
}

.pm-newface-detail__note + .pm-newface-detail__content,
.pm-newface-detail__price + .pm-newface-detail__cta,
.pm-newface-detail__content + .pm-newface-detail__cta {
  margin-top: 18px;
}

.pm-newface-detail__content + .pm-newface-detail__price,
.pm-newface-detail__content + .pm-newface-detail__cta {
  margin-top: 42px;
}

.pm-newface-detail__price {
  display: grid;
  gap: 12px;
  padding: 26px;
  text-align: center;
}

.pm-newface-detail__price h2 {
  margin: 0;
  color: var(--pm-blush-deep);
  font-family: var(--pm-font-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}

.pm-newface-detail__price p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: var(--pm-brown);
}

.pm-newface-detail__price s {
  color: rgba(74, 63, 61, 0.58);
}

.pm-newface-detail__price strong {
  color: var(--pm-ink);
  font-size: 25px;
}

.pm-newface-detail__price small {
  color: rgba(74, 63, 61, 0.66);
}

.pm-newface-detail__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.pm-newface-detail__cta p {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 24px;
  line-height: 1.42;
}

.pm-newface-related {
  border-top: 1px solid var(--pm-line);
  background: rgba(248, 243, 239, 0.7);
}

.pm-newface-related__list {
  display: grid;
  gap: 10px;
}

.pm-newface-related__item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--pm-line);
  color: var(--pm-brown);
  text-decoration: none;
}

.pm-newface-related__item:last-child {
  border-bottom: 1px solid var(--pm-line);
}

.pm-newface-related__item span {
  color: var(--pm-blush-deep);
  font-size: 12px;
  font-weight: 700;
}

.pm-newface-related__item strong {
  overflow: hidden;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pm-newface-related__item:hover strong,
.pm-newface-related__item:focus-visible strong {
  color: var(--pm-blush-deep);
}

.pm-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.pm-profile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pm-profile-overlay.is-closing {
  opacity: 0;
  pointer-events: none;
}

.pm-profile-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 31, 30, 0.56);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.pm-profile-overlay__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--pm-paper);
  box-shadow: 0 28px 80px rgba(37, 31, 30, 0.32);
  transition:
    transform 520ms cubic-bezier(0.34, 1.08, 0.64, 1),
    opacity 240ms ease,
    border-radius 360ms ease;
  -webkit-overflow-scrolling: touch;
}

.pm-profile-overlay.is-closing .pm-profile-overlay__panel {
  opacity: 0;
  transform: scale(0.96);
  transition:
    transform 280ms cubic-bezier(0.55, 0, 0.55, 0.2),
    opacity 220ms ease;
}

.pm-profile-overlay__panel:focus {
  outline: none;
}

.pm-profile-overlay__stage {
  min-height: 100%;
  background: var(--pm-paper);
}

.pm-profile-overlay__content {
  min-height: 100%;
}

.pm-newface-overlay__content,
.pm-info-overlay__content {
  min-height: 100%;
}

.pm-info-overlay .pm-info-detail__hero {
  padding-top: 66px;
}

.pm-newface-overlay .pm-newface-detail__hero {
  padding-top: 66px;
}

.pm-newface-detail__overlay-actions {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top, 0px));
  right: 18px;
  z-index: 5;
}

.pm-profile-overlay .pm-profile-hero {
  padding-top: 66px;
}

.pm-profile-overlay .pm-profile-page-actions--overlay {
  top: -48px;
  right: 0;
  z-index: 5;
}

.pm-profile-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 247, 0.62);
  border-radius: 50%;
  background: rgba(37, 31, 30, 0.6);
  color: #fffaf7;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 31, 30, 0.18);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.pm-profile-overlay__close:hover,
.pm-profile-overlay__close:focus-visible {
  border-color: rgba(255, 250, 247, 0.92);
  background: rgba(37, 31, 30, 0.78);
  transform: translateY(-1px);
}

.pm-reserve-profile-overlay {
  z-index: 120;
}

.pm-reserve-profile-overlay .pm-profile-schedule__reserve {
  display: none;
}

.pm-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pm-content-link {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(37, 31, 30, 0.05);
  text-decoration: none;
}

.pm-content-link:hover {
  border-color: rgba(184, 115, 126, 0.45);
  transform: translateY(-2px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.pm-content-link span {
  color: var(--pm-blush-deep);
  font-family: var(--pm-font-heading);
  font-size: 26px;
  line-height: 1.2;
}

.pm-content-link strong {
  align-self: end;
  color: var(--pm-brown);
  font-size: 15px;
}

.pm-footer {
  width: 100%;
  overflow: hidden;
  padding: 58px 0 86px;
  background: var(--pm-brown);
  color: rgba(255, 250, 247, 0.84);
}

.pm-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px 42px;
}

.pm-footer__brand img {
  width: 210px;
  color: #fffaf7;
  filter: invert(1);
}

.pm-footer__brand p,
.pm-footer__credit {
  margin: 18px 0 0;
  font-size: 13px;
}

.pm-footer__info {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.pm-footer__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.pm-footer__links a,
.pm-footer__info a {
  text-decoration: none;
}

.pm-footer__links a:hover,
.pm-footer__info a:hover {
  color: #fff;
}

.pm-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-radius: 14px 14px 0 0;
  background: rgba(255, 250, 247, 0.96);
  box-shadow:
    0 -1px 0 rgba(201, 184, 150, 0.35),
    0 -8px 32px rgba(37, 31, 30, 0.14);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: opacity 300ms ease, transform 300ms ease;
}

.pm-mobile-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--pm-gold) 50%, transparent 100%);
  pointer-events: none;
}

.pm-mobile-cta.is-hidden {
  opacity: 0;
  transform: translateY(120%);
}

.pm-mobile-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  min-height: 62px;
  padding: 9px 4px 8px;
  color: var(--pm-brown);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.pm-mobile-cta__item + .pm-mobile-cta__item {
  border-left: 1px solid rgba(201, 184, 150, 0.22);
}

.pm-mobile-cta__item:active,
.pm-mobile-cta__item:focus-visible {
  background: rgba(217, 166, 173, 0.15);
}

.pm-mobile-cta__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 0;
  max-width: 100%;
}

.pm-mobile-cta__label-en {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pm-blush-deep);
  line-height: 1.2;
}

.pm-mobile-cta__label-ja {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 400;
  color: rgba(74, 63, 61, 0.6);
  line-height: 1.2;
}

.pm-mobile-cta__icon {
  width: 22px;
  height: 22px;
  color: var(--pm-blush-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.pm-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: none;
  background: #0a080f;
  color: #fff;
  text-align: center;
}

.pm-age-gate__video,
.pm-age-gate__glass {
  position: fixed;
  inset: 0;
}

.pm-age-gate__frame {
  position: absolute;
  inset: 0;
}

.pm-age-gate__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.pm-age-gate__glass {
  backdrop-filter: blur(5px) brightness(0.8) saturate(1.2);
  -webkit-backdrop-filter: blur(5px) brightness(0.8) saturate(1.2);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 184, 150, 0.08) 0%, transparent 50%),
    rgba(10, 8, 15, 0.15);
}

.pm-age-gate__frame {
  inset: 20px;
  border: 1px solid rgba(201, 184, 150, 0.2);
  pointer-events: none;
}

.pm-age-gate__frame::before,
.pm-age-gate__frame::after {
  position: absolute;
  left: 50%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pm-gold), transparent);
  content: "";
  transform: translateX(-50%);
}

.pm-age-gate__frame::before {
  top: -1px;
}

.pm-age-gate__frame::after {
  bottom: -1px;
}

.pm-age-gate__corner {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
}

.pm-age-gate__corner::before,
.pm-age-gate__corner::after {
  position: absolute;
  background: var(--pm-gold);
  content: "";
  opacity: 0.5;
}

.pm-age-gate__corner::before {
  width: 30px;
  height: 1px;
}

.pm-age-gate__corner::after {
  width: 1px;
  height: 30px;
}

.pm-age-gate__corner--tl {
  top: 20px;
  left: 20px;
}

.pm-age-gate__corner--tr {
  top: 20px;
  right: 20px;
}

.pm-age-gate__corner--bl {
  bottom: 20px;
  left: 20px;
}

.pm-age-gate__corner--br {
  right: 20px;
  bottom: 20px;
}

.pm-age-gate__corner--tr::before,
.pm-age-gate__corner--tr::after,
.pm-age-gate__corner--br::before,
.pm-age-gate__corner--br::after {
  right: 0;
}

.pm-age-gate__corner--bl::before,
.pm-age-gate__corner--bl::after,
.pm-age-gate__corner--br::before,
.pm-age-gate__corner--br::after {
  bottom: 0;
}

.pm-age-gate__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(500px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  padding: 72px 0 96px;
  animation: pmBreathe 8s infinite ease-in-out;
}

.pm-age-gate__scroll {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  padding: 0;
}

.pm-age-gate__logo {
  width: 180px;
  margin: 0 auto 42px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.pm-age-gate__badge,
.pm-age-gate__tagline,
.pm-age-gate__area,
.pm-age-gate__note,
.pm-age-gate__exit,
.pm-age-gate__concept,
.pm-age-gate__noscript {
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pm-age-gate__badge {
  color: #e0d4be;
  font-size: 15px;
}

.pm-age-gate__tagline {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.pm-age-gate__area {
  margin-top: 10px;
  color: var(--pm-gold);
  font-size: 13px;
}

.pm-age-gate__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 34px 0 28px;
}

.pm-age-gate__divider span {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pm-gold), transparent);
}

.pm-age-gate__divider i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pm-gold);
}

.pm-age-gate__enter {
  min-width: 230px;
  min-height: 62px;
  padding: 15px 34px;
  border: 1px solid var(--pm-gold);
  background: linear-gradient(135deg, rgba(201, 184, 150, 0.15), rgba(201, 184, 150, 0.05));
  color: #fff;
  font-family: var(--pm-font-heading);
  font-size: 28px;
  cursor: pointer;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.pm-age-gate__enter:hover {
  border-color: #e0d4be;
  box-shadow: 0 0 40px rgba(201, 184, 150, 0.25), inset 0 0 20px rgba(201, 184, 150, 0.1);
  color: #e0d4be;
  transform: translateY(-2px);
}

.pm-age-gate__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.pm-age-gate__exit {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pm-age-gate__exit:hover,
.pm-age-gate__exit:focus-visible {
  color: #e0d4be;
}

.pm-age-gate__concept {
  margin-top: 34px;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 2.1;
}

.pm-age-gate__concept span {
  color: #e0d4be;
  font-weight: 400;
}

.pm-age-gate__noscript {
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
}

.pm-age-gate__credit {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  padding: 0 0 30px;
  background: #0a080f;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  pointer-events: none;
}

.pm-age-gate__sponsors {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 0;
  background: #0a080f;
}

.pm-age-gate__sponsors .banner-section {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 56px 32px 72px;
  border-top: 1px solid rgba(201, 184, 150, 0.22);
  background: linear-gradient(180deg, rgba(10, 8, 15, 0.92), #0a080f 56%);
}

.pm-age-gate__sponsors .banner-section-inner {
  width: min(1280px, 100%);
  min-width: 0;
  max-width: none;
  margin: 0 auto;
}

.pm-age-gate__sponsors .banner-section-title {
  margin: 0 0 22px;
  color: var(--pm-gold);
  font-family: var(--pm-font-heading);
  font-size: 16px;
}

.pm-age-gate__sponsors .banner-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
  margin-bottom: 34px;
}

.pm-age-gate__sponsors .banner-links a {
  display: block;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 184, 150, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.pm-age-gate__sponsors .banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-width: 0;
}

.pm-age-gate__sponsors .banner-item {
  min-width: 0;
  max-width: 100%;
  text-align: center;
}

.pm-age-gate__sponsors .banner-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.pm-age-gate__sponsors .banner-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.pm-age-gate__sponsors .banner-item table {
  max-width: 100%;
  margin: 0 auto;
}

.pm-age-gate__sponsors .desktop-only {
  display: none;
}

.pm-age-gate__sponsors .mobile-only {
  display: block;
}

@keyframes pmBreathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }
}

@media (min-width: 768px) {
  .pm-schedule-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .pm-schedule-card .pm-cast-card__name {
    font-size: 20px;
  }

  .pm-ladies__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .pm-ladies-card .pm-cast-card__name {
    font-size: 20px;
  }

  .pm-profile-overlay__panel {
    top: 24px;
    right: max(24px, calc((100vw - 940px) / 2));
    bottom: 24px;
    left: max(24px, calc((100vw - 940px) / 2));
    border-radius: 10px;
  }

  .pm-profile-overlay .pm-profile-hero {
    padding-top: 82px;
  }

  .pm-age-gate__frame {
    inset: 40px;
  }

  .pm-age-gate__corner--tl {
    top: 40px;
    left: 40px;
  }

  .pm-age-gate__corner--tr {
    top: 40px;
    right: 40px;
  }

  .pm-age-gate__corner--bl {
    bottom: 40px;
    left: 40px;
  }

  .pm-age-gate__corner--br {
    right: 40px;
    bottom: 40px;
  }

  .pm-age-gate__sponsors .banner-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pm-age-gate__sponsors .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-age-gate__sponsors .desktop-only {
    display: block;
  }

  .pm-age-gate__sponsors .mobile-only {
    display: none;
  }
}

@media (min-width: 1100px) {
  .pm-schedule-list__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pm-ladies__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pm-age-gate__sponsors .banner-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pm-schedule-list__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pm-ladies__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .pm-schedule-list__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pm-ladies__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .pm-header__inner {
    grid-template-columns: 54px 1fr 88px;
    min-height: 62px;
  }

  .pm-header__logo img {
    width: 148px;
  }

  .pm-header__member {
    font-size: 12px;
  }

  .pm-nav__body {
    margin-top: 26px;
  }

  .pm-nav__item > a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pm-nav__item span {
    font-size: 28px;
  }

  .pm-nav__children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pm-section__title {
    font-size: 31px;
  }

  .pm-profile-hero__inner {
    grid-template-columns: 1fr;
  }

  .pm-newface-news__grid,
  .pm-newface-news__featured,
  .pm-info-detail__hero-inner,
  .pm-newface-detail__hero-inner {
    grid-template-columns: 1fr;
  }

  .pm-newface-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-newface-news__thumb,
  .pm-newface-news__thumb img {
    min-height: 280px;
  }

  .pm-profile-hero__media {
    max-width: 560px;
  }

  .pm-profile-hero__title {
    font-size: 40px;
  }

  .pm-profile-schedule__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-footer__inner {
    grid-template-columns: 1fr;
  }

  .pm-legal__body {
    padding: 34px 30px;
  }
}

@media (max-width: 640px) {
  .pm-shell {
    width: min(100% - 28px, 1120px);
  }

  .pm-section {
    padding: 56px 0;
  }

  .pm-hero {
    aspect-ratio: 39 / 47;
    height: auto;
    min-height: 0;
  }

  .pm-ladies {
    padding-top: 96px;
  }

  .pm-schedule-list {
    padding-top: 96px;
  }

  .pm-newface-index,
  .pm-newface-detail-empty {
    padding-top: 96px;
  }

  .pm-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .pm-content-grid {
    grid-template-columns: 1fr;
  }

  .pm-content-link {
    min-height: 118px;
  }

  .pm-section__copy {
    font-size: 16px;
  }

  .pm-coming-soon {
    min-height: calc(100vh - 260px);
    padding-top: 92px;
    padding-bottom: 76px;
  }

  .pm-coming-soon__lead {
    font-size: 22px;
  }

  .pm-coming-soon__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pm-legal {
    padding-top: 94px;
  }

  .pm-legal__body {
    padding: 28px 20px;
  }

  .pm-legal-block h2 {
    font-size: 21px;
  }

  .pm-legal-block p,
  .pm-legal-list {
    font-size: 14px;
    line-height: 1.85;
  }

  .pm-terms-group {
    padding: 18px 16px;
  }

  .pm-profile-hero {
    padding: 58px 0;
  }

  .pm-profile-overlay .pm-profile-hero {
    padding: 58px 0 52px;
  }

  .pm-profile-overlay .pm-profile-page-actions--overlay {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 14px;
  }

  .pm-info-detail__overlay-actions {
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 14px;
  }

  .pm-profile-overlay__close {
    width: 40px;
    height: 40px;
    background: rgba(37, 31, 30, 0.68);
    font-size: 24px;
  }

  .pm-profile-hero__inner {
    gap: 26px;
  }

  .pm-profile-hero__title {
    font-size: 34px;
  }

  .pm-profile-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .pm-newface-detail__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-newface-detail__title {
    font-size: 34px;
  }

  .pm-info-detail__title {
    font-size: 34px;
  }

  .pm-newface-index__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pm-newface-index-card__body {
    padding: 22px 18px;
  }

  .pm-newface-index-card__title {
    font-size: 28px;
  }

  .pm-newface-index__pager {
    justify-content: stretch;
  }

  .pm-newface-index__pager-link,
  .pm-newface-index__pager-current {
    flex: 1 1 0;
    min-width: 0;
  }

  .pm-newface-detail__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .pm-newface-related__item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pm-profile-gallery__slider {
    gap: 8px;
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .pm-profile-schedule__list {
    grid-template-columns: 1fr;
  }

  .pm-button {
    width: 100%;
  }

  .pm-mobile-cta {
    display: grid;
  }

  .pm-footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
  }

  .pm-age-gate__frame {
    inset: 14px;
  }

  .pm-age-gate__content {
    width: min(100% - 32px, 500px);
  }

  .pm-age-gate__sponsors .banner-section {
    padding: 44px 14px 64px;
  }

  .pm-age-gate__sponsors .banner-section-inner {
    width: 100%;
  }

  .pm-age-gate__sponsors .banner-grid {
    gap: 20px;
  }

  .pm-age-gate__sponsors .banner-table-wrapper {
    margin: 0;
    padding: 0;
  }

  .pm-age-gate__logo {
    width: 158px;
    margin-bottom: 32px;
  }

  .pm-age-gate__enter {
    min-width: 210px;
    font-size: 25px;
  }
}

@media (max-width: 374px) {
  .pm-header__logo img {
    width: 132px;
  }

  .pm-header__member {
    font-size: 11px;
  }

  .pm-mobile-cta__label-en {
    font-size: 10px;
  }

  .pm-mobile-cta__label-ja {
    font-size: 9px;
  }

  .pm-mobile-cta__item {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .pm-profile-overlay,
  .pm-profile-overlay__panel {
    transition-duration: 0.001ms !important;
  }
}

.pm-fee {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(248, 243, 239, 0.72)),
    linear-gradient(90deg, rgba(201, 184, 150, 0.1), transparent 46%, rgba(217, 166, 173, 0.08));
}

.pm-fee .pm-shell {
  display: grid;
  gap: 24px;
}

.pm-fee__heading {
  margin-bottom: 2px;
}

.pm-fee__summary {
  display: grid;
  gap: 5px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
  padding: 16px 18px;
}

.pm-fee__summary strong,
.pm-fee-philosophy blockquote,
.pm-fee-plan h2,
.pm-fee-principle h2,
.pm-fee-nomination h2,
.pm-fee-info-card h2,
.pm-fee-cta h2 {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-weight: 500;
}

.pm-fee-philosophy {
  display: grid;
  gap: 18px;
  border-block: 1px solid var(--pm-line);
  padding: 36px 0;
}

.pm-fee-philosophy blockquote {
  display: grid;
  gap: 8px;
  margin: 0;
  max-width: 840px;
  border-left: 1px solid rgba(184, 115, 126, 0.42);
  padding-left: 22px;
  font-size: clamp(1.55rem, 4vw, 2.65rem);
  line-height: 1.55;
}

.pm-fee-philosophy blockquote span,
.pm-fee-philosophy blockquote strong {
  display: block;
}

.pm-fee-philosophy blockquote strong {
  font-weight: inherit;
}

.pm-fee-philosophy__copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
  color: var(--pm-brown);
  line-height: 2;
}

.pm-fee-philosophy__copy p {
  margin: 0;
}

.pm-fee-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pm-fee-plan {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 250px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(37, 31, 30, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pm-fee-plan:hover {
  border-color: rgba(184, 115, 126, 0.45);
  box-shadow: 0 20px 48px rgba(37, 31, 30, 0.09);
  transform: translateY(-2px);
}

.pm-fee-plan__badge {
  justify-self: start;
  margin: 0;
}

.pm-fee-plan h2 {
  margin: 4px 0 0;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
}

.pm-fee-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--pm-blush-deep);
  font-family: var(--pm-font-heading);
  font-size: clamp(2.25rem, 6vw, 4.1rem);
  line-height: 1;
}

.pm-fee-plan__price span {
  color: var(--pm-brown);
  font-size: 0.42em;
}

.pm-fee-plan__note {
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--pm-line);
  padding-top: 14px;
  color: var(--pm-brown);
  font-weight: 600;
}

.pm-fee__plan-caption {
  margin: -8px 0 0;
  color: var(--pm-brown);
  font-size: 0.92rem;
}

.pm-fee-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pm-fee-principle {
  display: grid;
  gap: 8px;
  border: 1px solid var(--pm-line);
  background: rgba(255, 250, 247, 0.72);
  padding: 18px;
}

.pm-fee-principle h2 {
  margin: 0;
  font-size: 1.28rem;
}

.pm-fee-principle p {
  margin: 0;
  color: var(--pm-brown);
  font-size: 0.92rem;
  line-height: 1.85;
}

.pm-fee-nomination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  padding: 20px;
}

.pm-fee-nomination > div {
  display: grid;
  gap: 8px;
}

.pm-fee-nomination h2,
.pm-fee-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
}

.pm-fee-nomination p:not(.pm-section__label),
.pm-fee-cta p:not(.pm-section__label) {
  margin: 0;
  color: var(--pm-brown);
  line-height: 1.85;
}

.pm-fee-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pm-fee-info-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 20px;
}

.pm-fee-info-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(184, 115, 126, 0.34);
  border-radius: 999px;
  color: var(--pm-blush-deep);
}

.pm-fee-info-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.pm-fee-info-card h2 {
  margin: 0;
  font-size: 1.34rem;
}

.pm-fee-info-card__lead {
  margin: 7px 0 0;
  color: var(--pm-ink);
  font-weight: 600;
}

.pm-fee-info-card__text {
  margin: 6px 0 0;
  color: var(--pm-brown);
  font-size: 0.9rem;
  line-height: 1.75;
}

.pm-fee-info-card__text strong {
  color: var(--pm-blush-deep);
  font-weight: 600;
}

.pm-fee-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(184, 115, 126, 0.32);
  background: rgba(255, 250, 247, 0.82);
  padding: 24px;
}

.pm-fee-cta > div:first-child {
  display: grid;
  gap: 8px;
}

.pm-fee-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .pm-fee-principles,
  .pm-fee-info {
    grid-template-columns: 1fr;
  }

  .pm-fee-nomination,
  .pm-fee-cta {
    grid-template-columns: 1fr;
  }

  .pm-fee-nomination .pm-button,
  .pm-fee-cta__actions .pm-button {
    width: 100%;
  }

  .pm-fee-cta__actions {
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  .pm-fee .pm-shell {
    gap: 20px;
  }

  .pm-fee-plans {
    grid-template-columns: 1fr;
  }

  .pm-fee-philosophy {
    padding: 28px 0;
  }

  .pm-fee-philosophy blockquote {
    padding-left: 16px;
  }

  .pm-fee-plan,
  .pm-fee-cta {
    padding: 20px 16px;
  }

  .pm-fee-nomination,
  .pm-fee-info-card,
  .pm-fee-principle,
  .pm-fee__summary {
    padding: 16px;
  }
}

.pm-reserve-page .pm-mobile-cta {
  display: none;
}

.pm-concierge-page .pm-mobile-cta {
  display: none;
}

.pm-member-page .pm-mobile-cta {
  display: none;
}

.pm-reserve-page .pm-header {
  display: none;
}

.pm-reserve {
  background: var(--pm-paper);
}

.pm-reserve__notice {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
}

.pm-reserve__notice strong,
.pm-reserve-panel__head h2,
.pm-reserve-target-card__body h3,
.pm-reserve-selected-target strong,
.pm-reserve-result strong,
.pm-reserve-summary strong {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-weight: 500;
}

.pm-reserve-app {
  position: relative;
  display: grid;
  gap: 18px;
}

.pm-reserve-stepper-wrap {
  position: relative;
  z-index: 46;
  border: 1px solid var(--pm-line);
  background: rgba(255, 250, 247, 0.96);
  padding: 10px;
  scroll-margin-top: 0;
  box-shadow: 0 14px 34px rgba(37, 31, 30, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pm-reserve-stepper-wrap.is-fixed {
  position: fixed;
  top: var(--pm-reserve-sticky-top, 0px);
  right: 0;
  left: 0;
}

.pm-reserve-stepper-placeholder {
  height: 0;
}

.pm-reserve-stepper-wrap .pm-shell {
  display: grid;
  gap: 10px;
}

.pm-reserve__heading {
  position: relative;
  padding-right: 148px;
}

.pm-reserve__heading .pm-reserve-cancel {
  position: absolute;
  top: 0;
  right: 0;
}

/* スクリーンリーダー専用：視覚的に非表示だが SR に読まれる */
.pm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* コンパクト表示：自然位置では非表示（SR も display:none で無視） */
.pm-reserve-step-compact {
  display: none;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pm-ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* is-fixed になったらステッパーチップを隠し、コンパクト表示へ切り替え */
.pm-reserve-stepper-wrap.is-fixed .pm-reserve-stepper {
  display: none;
}

.pm-reserve-stepper-wrap.is-fixed .pm-reserve-step-compact {
  display: flex;
}

/* is-fixed 時のレイアウト：step-back + compact を横並びに */
.pm-reserve-stepper-wrap.is-fixed .pm-shell {
  grid-template-columns: auto 1fr;
}

.pm-reserve-stepper-wrap.is-fixed .pm-reserve-progress,
.pm-reserve-stepper-wrap.is-fixed .pm-reserve-summary {
  grid-column: 1 / -1;
}

.pm-reserve-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(154, 93, 119, 0.24);
  background: rgba(255, 250, 247, 0.82);
  color: var(--pm-brown);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pm-reserve-step-back {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--pm-brown);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0;
}

.pm-reserve-step-back[hidden] {
  display: none;
}

.pm-reserve-cancel:hover,
.pm-reserve-cancel:focus-visible,
.pm-reserve-step-back:hover,
.pm-reserve-step-back:focus-visible {
  border-color: rgba(184, 115, 126, 0.5);
  color: var(--pm-blush-deep);
}

.pm-reserve-stepper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  margin: 0;
  padding: 0 0 2px;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pm-reserve-stepper::-webkit-scrollbar {
  display: none;
}

.pm-reserve-stepper li {
  flex: 1 0 104px;
  padding-inline: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  color: var(--pm-brown);
  font-size: 0.86rem;
}

.pm-reserve-stepper li.is-current {
  border-color: var(--pm-blush);
  background: var(--pm-sub-bg);
  color: var(--pm-ink);
}

.pm-reserve-stepper li.is-complete,
.pm-reserve-status {
  color: var(--pm-blush-deep);
}

.pm-stepper__num {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pm-line);
  border-radius: 999px;
  color: var(--pm-brown);
  font-size: 0.76rem;
}

.pm-stepper__label {
  min-width: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.pm-reserve-stepper li.is-current .pm-stepper__num {
  border-color: var(--pm-blush);
  background: var(--pm-blush);
  color: var(--pm-paper);
}

.pm-reserve-stepper li.is-complete .pm-stepper__num {
  border-color: var(--pm-blush-deep);
  background: var(--pm-blush-deep);
  color: var(--pm-paper);
  font-size: 0;
}

.pm-reserve-stepper li.is-complete .pm-stepper__num::before {
  content: "✓";
  font-size: 0.78rem;
}

.pm-reserve-progress {
  height: 4px;
  overflow: hidden;
  background: var(--pm-line);
}

.pm-reserve-progress__bar {
  width: var(--progress, 0%);
  height: 100%;
  background: var(--pm-blush);
  transition: width 180ms ease;
}

.pm-reserve-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pm-reserve-panel {
  display: none;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  padding: 22px;
}

.pm-reserve-panel.is-active {
  display: grid;
  gap: 20px;
}

.pm-reserve-panel__head,
.pm-reserve-field,
.pm-reserve-selected-target {
  display: grid;
  gap: 8px;
}

.pm-reserve-panel__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
}

.pm-reserve-field__label {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--pm-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.pm-reserve-field__hint {
  margin: -2px 0 0;
  color: var(--pm-brown);
  font-size: 0.84rem;
}

.pm-badge {
  display: inline-grid;
  min-height: 20px;
  place-items: center;
  border: 1px solid var(--pm-line);
  padding: 2px 7px;
  color: var(--pm-brown);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
}

.pm-badge--required {
  border-color: rgba(184, 115, 126, 0.46);
  color: var(--pm-blush-deep);
}

.pm-badge--optional {
  color: var(--pm-moss);
}

.pm-reserve-field input,
.pm-reserve-field textarea,
.pm-reserve-date-input input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-ink);
  font: inherit;
  padding: 11px 12px;
}

.pm-reserve-field textarea {
  min-height: 110px;
  resize: vertical;
}

.pm-reserve-field.is-invalid input,
.pm-reserve-field.is-invalid textarea {
  border-color: rgba(184, 115, 126, 0.72);
  background: var(--pm-paper);
}

.pm-reserve-field__error {
  color: var(--pm-blush-deep);
  font-size: 0.82rem;
  line-height: 1.6;
}

.pm-reserve-field__error[hidden] {
  display: none;
}

.pm-reserve-date-grid,
.pm-reserve-time-grid,
.pm-reserve-course-grid,
.pm-reserve-targets {
  display: grid;
  gap: 8px;
}

.pm-reserve-date-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pm-reserve-time-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-reserve-time-periods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.pm-reserve-time-period {
  min-height: 50px;
  display: grid;
  gap: 1px;
  place-items: center;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  color: var(--pm-brown);
  font: inherit;
  padding: 7px 4px;
  text-align: center;
  cursor: pointer;
}

.pm-reserve-time-period span {
  color: var(--pm-ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.pm-reserve-time-period small {
  color: var(--pm-brown);
  font-size: 0.66rem;
  line-height: 1.15;
  white-space: nowrap;
}

.pm-reserve-time-period[aria-selected="true"] {
  border-color: var(--pm-blush);
  background: var(--pm-sub-bg);
}

.pm-reserve-time-period:focus-visible {
  outline: 2px solid var(--pm-blush);
  outline-offset: 2px;
}

.pm-reserve-time-panel[hidden] {
  display: none;
}

.pm-reserve-chip,
.pm-reserve-time,
.pm-reserve-course-grid label span {
  min-height: 44px;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  color: var(--pm-brown);
  font: inherit;
  cursor: pointer;
}

.pm-reserve-chip {
  display: grid;
  gap: 2px;
  padding: 9px 8px;
  text-align: left;
}

.pm-reserve-chip span,
.pm-reserve-chip small {
  display: block;
}

.pm-reserve-chip span {
  color: var(--pm-ink);
  font-weight: 600;
}

.pm-reserve-chip small,
.pm-reserve-target-card__body p,
.pm-reserve-target-card__body small,
.pm-reserve-selected-target span,
.pm-reserve-selected-target small,
.pm-reserve-form__note,
.pm-reserve-summary small {
  color: var(--pm-brown);
  font-size: 0.86rem;
}

.pm-reserve-time,
.pm-reserve-course-grid label span {
  display: grid;
  place-items: center;
}

.pm-reserve-chip[aria-pressed="true"],
.pm-reserve-time[aria-pressed="true"],
.pm-reserve-course-grid input:checked + span {
  border-color: var(--pm-blush);
  background: var(--pm-sub-bg);
  color: var(--pm-ink);
}

.pm-reserve-time:disabled,
.pm-reserve-time[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.42;
  background: rgba(180, 170, 174, 0.12);
  color: rgba(94, 75, 82, 0.62);
}

.pm-reserve-chip--more span {
  font-size: 1.18rem;
}

.pm-reserve-date-picker[hidden] {
  display: none;
}

.pm-reserve-date-input {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--pm-brown);
  font-size: 0.9rem;
}

.pm-reserve-target-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  padding: 14px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.pm-reserve-target-card:hover,
.pm-reserve-target-card:focus-visible {
  border-color: var(--pm-blush);
  background: var(--pm-paper);
  outline: none;
}

.pm-reserve-target-card.is-selected {
  border-color: var(--pm-blush);
  background: var(--pm-sub-bg);
}

.pm-reserve-target-card img,
.pm-reserve-target-card__placeholder {
  align-self: center;
  width: 92px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--pm-sub-bg);
}

.pm-reserve-target-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--pm-blush-deep);
  font-family: var(--pm-font-heading);
}

.pm-reserve-target-card__body {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.pm-reserve-target-card__body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
}

.pm-reserve-target-card__body p,
.pm-reserve-target-card__body small {
  margin: 0;
  line-height: 1.45;
}

.pm-reserve-status {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.pm-reserve-target-card__actions {
  display: grid;
  gap: 7px;
  align-items: center;
  margin-top: 5px;
}

.pm-reserve-target-card__actions .pm-button {
  width: 100%;
  min-height: 48px;
}

.pm-reserve-target-card__detail {
  justify-self: start;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--pm-brown);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 4px;
}

.pm-reserve-target-card__detail span {
  margin-left: 3px;
}

.pm-reserve-target-card__detail:hover,
.pm-reserve-target-card__detail:focus-visible {
  color: var(--pm-blush-deep);
  text-decoration: underline;
  outline: 1px solid rgba(184, 115, 126, 0.42);
  outline-offset: 2px;
}

.pm-reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pm-reserve-actions {
  justify-content: flex-end;
}

.pm-reserve-selected-target {
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  padding: 13px 14px;
}

.pm-reserve-selected-target strong {
  font-size: 1.15rem;
}

.pm-reserve-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pm-reserve-course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-reserve-course-grid label {
  display: block;
}

.pm-reserve-course-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pm-reserve-course-grid label span {
  padding: 10px;
}

.pm-reserve-form__note {
  margin: 0;
  line-height: 1.8;
}

.pm-reserve-result {
  display: none;
}

.pm-reserve-result.is-inline,
.pm-reserve-result.is-success,
.pm-reserve-result.is-error {
  display: grid;
  gap: 8px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
  padding: 16px;
}

.pm-reserve-result.is-error {
  border-color: rgba(184, 115, 126, 0.55);
}

.pm-reserve-result strong {
  font-size: 1.2rem;
}

.pm-reserve-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pm-reserve-summary {
  position: static;
  display: grid;
  gap: 4px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
  padding: 11px 12px;
}

.pm-reserve-summary span {
  font-size: 0.78rem;
}

.pm-reserve-summary strong {
  font-size: 1.05rem;
}

@media (max-width: 720px) {
  .pm-reserve-panel {
    padding: 18px 14px;
  }

  .pm-reserve-form-grid,
  .pm-reserve-course-grid {
    grid-template-columns: 1fr;
  }

  .pm-reserve-time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pm-reserve-target-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .pm-reserve-target-card img,
  .pm-reserve-target-card__placeholder {
    width: 78px;
  }

  .pm-reserve-target-card__actions .pm-button {
    width: 100%;
  }

  .pm-reserve__heading {
    padding-top: 42px;
    padding-right: 0;
  }

  .pm-reserve__heading .pm-reserve-cancel {
    top: 0;
    right: 0;
  }

  .pm-reserve-actions--submit {
    display: grid;
    justify-items: center;
  }

  .pm-reserve-actions--submit .pm-button--primary {
    order: 1;
    width: 100%;
  }

  .pm-reserve-actions--submit .pm-button--soft {
    order: 2;
    min-width: 0;
    min-height: 40px;
    border-color: transparent;
    padding: 8px 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.pm-concierge {
  background: var(--pm-paper);
}

.pm-concierge__notice {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
}

.pm-concierge__notice strong,
.pm-concierge-panel__head h2,
.pm-concierge-result strong {
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-weight: 500;
}

.pm-concierge-app {
  display: grid;
  gap: 18px;
}

.pm-concierge-panel {
  display: grid;
  gap: 20px;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  padding: 22px;
}

.pm-concierge-panel__head,
.pm-concierge-field {
  display: grid;
  gap: 8px;
}

.pm-concierge-panel__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
}

.pm-concierge-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pm-concierge-field__label {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--pm-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.pm-concierge-field input,
.pm-concierge-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-ink);
  font: inherit;
  padding: 11px 12px;
}

.pm-concierge-field textarea {
  min-height: 132px;
  resize: vertical;
}

.pm-concierge-field.is-invalid input,
.pm-concierge-field.is-invalid textarea {
  border-color: rgba(184, 115, 126, 0.72);
  background: var(--pm-paper);
}

.pm-concierge-field__hint,
.pm-concierge-form__note,
.pm-concierge-counter {
  color: var(--pm-brown);
  font-size: 0.84rem;
  line-height: 1.7;
}

.pm-concierge-field__error {
  color: var(--pm-blush-deep);
  font-size: 0.82rem;
  line-height: 1.6;
}

.pm-concierge-field__error[hidden] {
  display: none;
}

.pm-concierge-counter {
  justify-self: end;
}

.pm-concierge-form__note {
  margin: 0;
  border-top: 1px solid var(--pm-line);
  padding-top: 14px;
}

.pm-concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.pm-concierge-result {
  display: none;
}

.pm-concierge-result.is-success,
.pm-concierge-result.is-error {
  display: grid;
  gap: 8px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-brown);
  padding: 16px;
}

.pm-concierge-result.is-error {
  border-color: rgba(184, 115, 126, 0.55);
}

.pm-concierge-result strong {
  font-size: 1.2rem;
}

.pm-concierge-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .pm-concierge-panel {
    padding: 18px 14px;
  }

  .pm-concierge-form-grid {
    grid-template-columns: 1fr;
  }

  .pm-concierge-actions--submit {
    display: grid;
    justify-items: center;
  }

  .pm-concierge-actions--submit .pm-button--primary {
    order: 1;
    width: 100%;
  }

  .pm-concierge-actions--submit .pm-button--soft {
    order: 2;
    min-width: 0;
    min-height: 40px;
    border-color: transparent;
    padding: 8px 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.pm-member {
  background: var(--pm-paper);
}

.pm-member__shell {
  max-width: 920px;
}

.pm-member__heading {
  align-items: flex-start;
}

.pm-member-panel,
.pm-member-card {
  display: grid;
  gap: 20px;
  border: 1px solid var(--pm-line);
  background: var(--pm-paper);
  padding: 24px;
}

.pm-member-panel__head {
  display: grid;
  gap: 8px;
}

.pm-member-panel__head h2,
.pm-member-card h2 {
  margin: 0;
  color: var(--pm-ink);
  font-family: var(--pm-font-heading);
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 500;
}

.pm-member-form,
.pm-member-field {
  display: grid;
  gap: 10px;
}

.pm-member-field__label {
  color: var(--pm-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.pm-member-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory);
  color: var(--pm-ink);
  font: inherit;
  padding: 11px 12px;
}

.pm-member-field__hint,
.pm-member-card p {
  margin: 0;
  color: var(--pm-brown);
  font-size: 0.88rem;
  line-height: 1.8;
}

.pm-member-alert {
  border: 1px solid rgba(184, 115, 126, 0.55);
  background: var(--pm-ivory);
  color: var(--pm-blush-deep);
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.pm-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--pm-line);
  padding-top: 18px;
}

.pm-member-logout {
  margin: 0;
}

.pm-member-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.pm-member-card--placeholder {
  background: var(--pm-ivory);
}

.pm-member-kv {
  display: grid;
  gap: 12px;
  margin: 0;
}

.pm-member-kv div {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--pm-line);
  padding-top: 12px;
}

.pm-member-kv dt {
  color: var(--pm-brown);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.pm-member-kv dd {
  margin: 0;
  color: var(--pm-ink);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .pm-member__heading {
    gap: 16px;
  }

  .pm-member-panel,
  .pm-member-card {
    padding: 18px 14px;
  }

  .pm-member-actions--submit {
    display: grid;
    justify-items: center;
  }

  .pm-member-actions--submit .pm-button--primary {
    order: 1;
    width: 100%;
  }

  .pm-member-actions--submit .pm-button--soft {
    order: 2;
    min-width: 0;
    min-height: 40px;
    border-color: transparent;
    padding: 8px 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .pm-member-dashboard {
    grid-template-columns: 1fr;
  }

  .pm-member-logout,
  .pm-member-logout .pm-button {
    width: 100%;
  }
}
