.pon-pr-page {
  --pon-pr-navy: #09275a;
  --pon-pr-blue: #075fed;
  --pon-pr-cyan: #49c8dd;
  --pon-pr-teal: #20b9b7;
  --pon-pr-violet: #7159f2;
  --pon-pr-red: #e51d2c;
  --pon-pr-ink: #112958;
  --pon-pr-muted: #607095;
  --pon-pr-line: #dce8ff;
  width: 100%;
  padding: 24px 34px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 7%, rgba(116, 195, 255, 0.24), transparent 30%),
    linear-gradient(126deg, #fbfdff 0%, #f7fbff 44%, #eff7ff 100%);
  color: var(--pon-pr-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.pon-pr-page a {
  color: inherit;
  text-decoration: none;
}

.pon-pr-frame {
  width: min(1480px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dfe9ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 80px rgba(35, 84, 158, 0.12);
}

.pon-pr-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(220, 232, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.pon-pr-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #143057 !important;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.pon-pr-brand-mark {
  position: relative;
  display: grid;
  width: 33px;
  height: 30px;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pon-pr-brand-mark::before,
.pon-pr-brand-mark::after,
.pon-pr-brand-mark span {
  background: var(--pon-pr-red);
  content: "";
}

.pon-pr-brand-mark::before,
.pon-pr-brand-mark::after {
  width: 11px;
  height: 11px;
}

.pon-pr-brand-mark span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33px;
  height: 13px;
}

.pon-pr-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #0e2a5e;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.pon-pr-nav a {
  position: relative;
  padding: 8px 0;
}

.pon-pr-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pon-pr-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.pon-pr-nav a:hover::after {
  transform: scaleX(1);
}

.pon-pr-login {
  display: inline-flex;
  width: fit-content;
  height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 12px;
  padding: 0 10px 0 20px;
  border: 1px solid var(--pon-pr-blue);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(11, 92, 225, 0.06);
  color: var(--pon-pr-blue) !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.pon-pr-login b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(135deg, #1377ff, #084ed4);
  color: #ffffff;
  font-size: 14px;
}

.pon-pr-login:hover {
  box-shadow: 0 12px 24px rgba(10, 82, 218, 0.18);
  transform: translateY(-1px);
}

.pon-pr-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 24px;
  padding: 44px 36px 26px;
}

.pon-pr-hero-copy {
  position: relative;
  z-index: 2;
}

.pon-pr-hero h1 {
  margin: 0 0 22px;
}

.pon-pr-hero h1 img {
  display: block;
  width: clamp(260px, 35vw, 420px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 7px 10px rgba(17, 47, 98, 0.08));
}

.pon-pr-tagline {
  margin: 0 0 16px;
  color: var(--pon-pr-blue);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 950;
  line-height: 1.45;
}

.pon-pr-lead {
  margin: 0;
  color: #17305f;
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 800;
  line-height: 1.9;
}

.pon-pr-promise {
  display: grid;
  width: min(700px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  padding: 14px 16px;
  border: 1px solid rgba(203, 218, 250, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(30, 78, 154, 0.14);
}

.pon-pr-promise-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-right: 1px solid var(--pon-pr-line);
  text-align: center;
}

.pon-pr-promise-item:last-child {
  border-right: 0;
}

.pon-pr-promise-icon {
  display: grid;
  place-items: center;
  color: var(--pon-pr-blue);
}

.pon-pr-promise-icon svg {
  display: block;
  width: 38px;
  height: 38px;
}

.pon-pr-promise-item h2 {
  margin: 0;
  color: var(--pon-pr-blue);
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 950;
  line-height: 1.35;
  white-space: nowrap;
}

.pon-pr-promise-item p {
  margin: 4px 0 0;
  color: #344673;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 800;
  line-height: 1.4;
}

.pon-pr-visual {
  position: relative;
  display: grid;
  align-items: center;
}

.pon-pr-visual img {
  display: block;
  width: min(100%, 684px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 22px 38px rgba(54, 68, 98, 0.13));
}

.pon-pr-roles {
  width: calc(100% - 70px);
  margin: 0 auto 28px;
  padding: 18px 22px 22px;
  border: 1px solid rgba(214, 225, 252, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(30, 78, 154, 0.14);
}

.pon-pr-roles > h2 {
  margin: 0 0 10px;
  color: var(--pon-pr-blue);
  font-size: 22px;
  font-weight: 950;
}

.pon-pr-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pon-pr-role-card {
  padding: 12px 22px 8px;
  border-right: 1px solid var(--pon-pr-line);
  text-align: center;
}

.pon-pr-role-card:last-child {
  border-right: 0;
}

.pon-pr-role-visual {
  position: relative;
  width: min(132px, 78%);
  aspect-ratio: 1.16;
  margin: 0 auto 12px;
}

.pon-pr-role-visual img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 96%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(54, 68, 98, 0.12));
  transform: translateX(-50%);
}

.pon-pr-role-visual img.compact {
  bottom: 3px;
  width: 84%;
}

.pon-pr-role-card h3 {
  margin: 0 0 7px;
  color: var(--pon-pr-blue);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.35;
}

.pon-pr-role-card p {
  margin: 0;
  color: #35446e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.pon-pr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  border-top: 1px solid rgba(220, 232, 255, 0.72);
  color: #607095;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pon-pr-page a:focus-visible {
  outline: 3px solid rgba(7, 95, 237, 0.24);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .pon-pr-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pon-pr-nav {
    display: none;
  }

  .pon-pr-hero {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pon-pr-visual img {
    margin: 0 auto;
  }

  .pon-pr-role-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pon-pr-role-card:nth-child(3) {
    border-right: 0;
  }

  .pon-pr-role-card:nth-child(n+4) {
    border-top: 1px solid var(--pon-pr-line);
  }
}

@media (max-width: 820px) {
  .pon-pr-page {
    padding: 18px 14px 28px;
  }

  .pon-pr-frame {
    border-radius: 5px;
  }

  .pon-pr-header {
    padding: 9px 16px;
  }

  .pon-pr-brand {
    gap: 11px;
    font-size: 17px;
  }

  .pon-pr-brand-mark {
    width: 28px;
    height: 25px;
  }

  .pon-pr-brand-mark::before,
  .pon-pr-brand-mark::after {
    width: 9px;
    height: 9px;
  }

  .pon-pr-brand-mark span {
    width: 28px;
    height: 11px;
  }

  .pon-pr-login {
    height: 38px;
    gap: 9px;
    padding-left: 15px;
    font-size: 12px;
  }

  .pon-pr-login b {
    width: 22px;
    height: 22px;
  }

  .pon-pr-hero {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 24px 17px 14px;
  }

  .pon-pr-hero-copy {
    display: contents;
  }

  .pon-pr-hero h1 {
    order: 1;
    width: 100%;
    margin-bottom: 18px;
  }

  .pon-pr-hero h1 img {
    width: min(300px, 86%);
  }

  .pon-pr-tagline {
    order: 2;
    width: 100%;
    font-size: 22px;
    line-height: 1.42;
  }

  .pon-pr-lead {
    order: 3;
    width: 100%;
    font-size: 13px;
    line-height: 1.7;
  }

  .pon-pr-visual {
    order: 4;
    width: 100%;
    margin-top: 8px;
  }

  .pon-pr-promise {
    order: 5;
    width: 100%;
    margin-top: 18px;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .pon-pr-promise-item {
    gap: 6px;
    padding: 3px 8px;
  }

  .pon-pr-promise-icon svg {
    width: 34px;
    height: 34px;
  }

  .pon-pr-promise-item h2 {
    font-size: 12px;
  }

  .pon-pr-promise-item p {
    font-size: 10px;
  }

  .pon-pr-roles {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 16px 12px;
  }

  .pon-pr-roles > h2 {
    font-size: 17px;
  }

  .pon-pr-role-card {
    padding: 8px 8px 12px;
  }

  .pon-pr-role-card:nth-child(3n) {
    border-right: 0;
  }

  .pon-pr-role-visual {
    width: min(78px, 92%);
    margin-bottom: 8px;
  }

  .pon-pr-role-card h3 {
    font-size: 12px;
  }

  .pon-pr-role-card p {
    font-size: 9px;
    line-height: 1.55;
  }

  .pon-pr-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    font-size: 9px;
  }
}

@media (max-width: 420px) {
  .pon-pr-brand {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .pon-pr-tagline {
    font-size: 19px;
  }

  .pon-pr-lead br {
    display: none;
  }

  .pon-pr-promise-item {
    padding-inline: 4px;
  }

  .pon-pr-promise-item h2 {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pon-pr-page *,
  .pon-pr-page *::before,
  .pon-pr-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
