@charset "UTF-8";

/*
  Poca SPOT by K Village LP
  v2.1.0
  Layout fix policy:
  - Do not constrain the whole LP to SP width on PC.
  - Do not use large fixed/min heights that create blank areas when images are not ready.
  - Every media area owns its aspect-ratio, so layout remains stable before image reflection.
  - Desktop/tablet/mobile are defined from a single grid system.
*/

:root {
  --ps-pink: #f24d71;
  --ps-pink-2: #ff8ca0;
  --ps-pink-3: #ffd9e2;
  --ps-bg: #fff4f6;
  --ps-bg-2: #fff9fa;
  --ps-text: #303438;
  --ps-sub: #697078;
  --ps-line: #f6c5cf;
  --ps-white: #fff;
  --ps-shadow: 0 16px 42px rgba(202, 46, 84, .12);
  --ps-shadow-soft: 0 10px 26px rgba(202, 46, 84, .08);
  --ps-font: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  --ps-radius-sm: 16px;
  --ps-radius-md: 22px;
  --ps-radius-lg: 32px;
  --ps-container: 1080px;
  --ps-gutter-sp: 18px;
  --ps-gutter-pc: 40px;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body.pocaspot-lp-page {
  margin: 0;
  background: var(--ps-bg);
  color: var(--ps-text);
  font-family: var(--ps-font);
  line-height: 1.75;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.pocaspot-lp-page.admin-bar {
  padding-top: 0;
}

.ps-lp,
.ps-lp *,
.ps-lp *::before,
.ps-lp *::after {
  box-sizing: border-box;
}

.ps-lp {
  width: 100%;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 6%, rgba(255,255,255,.92) 0 10%, transparent 30%),
    radial-gradient(circle at 90% 26%, rgba(255,227,235,.68) 0 9%, transparent 28%),
    linear-gradient(180deg, #fff8fa 0%, #ffe9ef 42%, #fff4f6 100%);
  font-family: var(--ps-font);
}

.ps-lp img,
.ps-lp svg {
  display: block;
  max-width: 100%;
}

.ps-lp img {
  height: auto;
}

.ps-lp a {
  color: inherit;
  text-decoration: none;
}

.ps-lp button {
  font-family: inherit;
}

.ps-container {
  width: min(calc(100% - var(--ps-gutter-sp) * 2), var(--ps-container));
  margin-inline: auto;
}

.ps-section,
.ps-hero,
.ps-final {
  position: relative;
}

.ps-section {
  padding: clamp(42px, 8vw, 82px) 0;
}

.ps-section + .ps-section,
.ps-section + .ps-final {
  padding-top: clamp(28px, 6vw, 70px);
}

.ps-panel {
  padding: clamp(24px, 5.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--ps-radius-lg);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--ps-shadow);
}

.ps-panel--white {
  background: rgba(255, 255, 255, .9);
}

/* Awning */
.ps-awning {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(70px, 12vw, 122px);
  padding: 14px 18px 20px;
  overflow: visible;
  color: #fff;
  text-align: center;
  background: repeating-linear-gradient(90deg, var(--ps-pink) 0 44px, var(--ps-pink-2) 44px 88px);
}

.ps-awning::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  height: 44px;
  background:
    radial-gradient(circle at 22px 0, transparent 21px, var(--ps-pink) 22px 39px, transparent 40px) 0 0 / 88px 44px,
    radial-gradient(circle at 66px 0, transparent 21px, var(--ps-pink-2) 22px 39px, transparent 40px) 0 0 / 88px 44px;
  pointer-events: none;
}

.ps-awning__logo {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 7vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.ps-awning__logo span {
  display: block;
  margin-top: .35em;
  font-size: .32em;
  font-weight: 800;
  letter-spacing: .02em;
}

/* Hero */
.ps-hero {
  padding-bottom: clamp(42px, 8vw, 88px);
}

.ps-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding-top: clamp(58px, 10vw, 98px);
  align-items: center;
}

.ps-hero__content,
.ps-final__copy {
  min-width: 0;
}

.ps-hero__kicker,
.ps-hero h1,
.ps-hero__text,
.ps-final__kicker,
.ps-final h2,
.ps-final p {
  margin: 0;
}

.ps-hero__kicker,
.ps-final__kicker {
  font-size: clamp(17px, 4.6vw, 28px);
  font-weight: 800;
  line-height: 1.55;
}

.ps-hero h1,
.ps-final h2 {
  margin-top: 4px;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: .04em;
  white-space: nowrap;
}

.ps-hero h1 span,
.ps-final h2 span,
.ps-heading h2 span,
.ps-recommend h3 span,
.ps-heading h2 > span {
  color: var(--ps-pink);
}

.ps-hero__text {
  max-width: 650px;
  margin-top: 16px;
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.85;
}

.ps-hero__ticket {
  width: min(168px, 48vw);
  margin: 18px 0 0 8px;
  padding: 18px 12px;
  transform: rotate(-7deg);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--ps-shadow-soft);
  color: var(--ps-pink);
  font-size: clamp(17px, 4.4vw, 22px);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.ps-hero__ticket span {
  display: block;
  margin-top: 5px;
  font-size: .52em;
  letter-spacing: .13em;
}

.ps-note,
.ps-notes {
  color: var(--ps-sub);
  font-size: clamp(10px, 2.7vw, 12px);
  line-height: 1.75;
}

.ps-note {
  margin: 14px 0 0 !important;
}

.ps-hero__visual {
  position: relative;
  width: min(86vw, 420px);
  margin-inline: auto;
}

.ps-polaroid {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 12px 12px 34px;
  transform: rotate(5deg);
  border: 1px solid rgba(246, 197, 207, .75);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(202, 46, 84, .18);
}

.ps-polaroid__label {
  display: block;
  margin-bottom: 9px;
  color: var(--ps-pink);
  font-size: clamp(13px, 3.4vw, 18px);
  font-weight: 900;
  letter-spacing: .1em;
}

.ps-polaroid figcaption {
  position: absolute;
  bottom: 11px;
  left: 16px;
  color: var(--ps-pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ps-hero__stamp {
  position: absolute;
  right: -4px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(68px, 18vw, 96px);
  height: clamp(68px, 18vw, 96px);
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: var(--ps-pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(202,46,84,.22);
  font-size: clamp(10px, 2.9vw, 13px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

/* Stable media wrappers */
.ps-img-box {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(255, 217, 226, .72)),
    repeating-linear-gradient(90deg, rgba(242,77,113,.08) 0 22px, rgba(255,140,160,.08) 22px 44px);
}

.ps-img-box::before {
  content: "";
  display: block;
}

.ps-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-img-box--hero {
  border-radius: 12px;
}

.ps-img-box--hero::before {
  padding-top: 125%;
}

.ps-img-box--gallery::before {
  padding-top: 76%;
}

.ps-img-box--map::before {
  padding-top: 78%;
}

.ps-img-box--final::before {
  padding-top: 62%;
}

/* Buttons */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .07em;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.ps-btn:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.ps-btn--primary {
  width: 100%;
  max-width: 430px;
  margin-top: 20px;
  color: #fff;
  background: linear-gradient(135deg, #ef4167, #f85d7c);
  box-shadow: 0 12px 24px rgba(226, 56, 96, .22);
}

.ps-btn--outline {
  color: var(--ps-pink);
  background: #fff;
  border: 1px solid var(--ps-pink);
  box-shadow: none;
}

.ps-btn svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Headings */
.ps-heading {
  margin-bottom: clamp(18px, 4vw, 30px);
  text-align: center;
}

.ps-heading h2 {
  margin: 0;
  font-size: clamp(25px, 7vw, 44px);
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: .05em;
}

.ps-heading p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 8px 0 0;
  color: var(--ps-pink);
  font-size: clamp(12px, 3.1vw, 15px);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: lowercase;
}

.ps-heading p::before,
.ps-heading p::after {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 1px;
  background: var(--ps-pink);
}

.ps-lead {
  max-width: 760px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  font-size: clamp(13px, 3.5vw, 16px);
  line-height: 1.85;
  text-align: center;
}

/* Cards */
.ps-reason-list,
.ps-feature-list,
.ps-faq-list {
  display: grid;
  gap: clamp(12px, 2.2vw, 18px);
}

.ps-reason-card,
.ps-feature-card,
.ps-info-card,
.ps-faq {
  min-width: 0;
  border: 1px solid rgba(246, 197, 207, .92);
  border-radius: var(--ps-radius-md);
  background: rgba(255,255,255,.92);
  box-shadow: var(--ps-shadow-soft);
}

.ps-reason-card,
.ps-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  align-content: start;
}

.ps-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--ps-pink);
  font-size: 12px;
  font-weight: 900;
}

.ps-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--ps-pink);
  background: #fff1f4;
}

.ps-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-card-body {
  min-width: 0;
}

.ps-reason-card h3,
.ps-feature-card h3,
.ps-info-card h3 {
  margin: 0;
  color: var(--ps-pink);
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 900;
  line-height: 1.45;
}

.ps-reason-card p,
.ps-feature-card p,
.ps-info-card p {
  margin: 6px 0 0;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.7;
}

.ps-feature-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--ps-pink);
  font-size: 12px;
  font-weight: 900;
}

.ps-recommend {
  max-width: 760px;
  margin: clamp(18px, 3vw, 30px) auto 0;
  padding: clamp(18px, 4vw, 28px);
  border-radius: var(--ps-radius-md);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--ps-line);
}

.ps-recommend h3 {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(20px, 5.5vw, 30px);
  font-weight: 900;
}

.ps-recommend ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-recommend li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 800;
}

.ps-recommend svg {
  width: 22px;
  height: 22px;
  fill: var(--ps-pink);
  stroke: #fff;
  stroke-width: 4;
}

/* Gallery */
.ps-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.2vw, 18px);
}

.ps-gallery-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--ps-radius-sm);
  background: #fff;
  box-shadow: var(--ps-shadow-soft);
}

.ps-gallery-card figcaption {
  padding: 10px 6px;
  color: #fff;
  background: var(--ps-pink);
  text-align: center;
  font-size: clamp(12px, 3.2vw, 15px);
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.ps-notes {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ps-notes li {
  color: var(--ps-sub);
  font-size: clamp(11px, 2.9vw, 13px);
  line-height: 1.7;
}

.ps-notes li::before {
  content: "※";
}

/* Access */
.ps-route-layout {
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
}

.ps-route-guide,
.ps-route-steps,
.ps-route-map {
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-md);
  background: rgba(255,255,255,.9);
}

.ps-route-guide h3 {
  display: inline-block;
  margin: calc(clamp(16px, 3vw, 22px) * -1) 0 16px calc(clamp(16px, 3vw, 22px) * -1);
  padding: 8px 22px;
  border-radius: var(--ps-radius-md) var(--ps-radius-md) var(--ps-radius-md) 0;
  color: #fff;
  background: var(--ps-pink);
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 900;
  vertical-align: top;
}

.ps-route-guide dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.ps-route-guide div {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--ps-line);
}

.ps-route-guide div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ps-route-guide dt {
  color: var(--ps-pink);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 900;
}

.ps-route-guide dd {
  margin: 4px 0 0;
  font-size: clamp(12px, 3.1vw, 14px);
  line-height: 1.7;
}

.ps-route-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-route-steps li {
  padding: 13px 14px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-sm);
  background: #fff;
  font-size: clamp(13px, 3.4vw, 15px);
  line-height: 1.55;
}

.ps-route-steps span {
  display: inline-block;
  margin: 0 8px 4px 0;
  padding: 2px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--ps-pink);
  font-size: 10px;
  font-weight: 900;
}

.ps-route-steps strong {
  color: var(--ps-pink);
}

.ps-route-map .ps-img-box {
  border-radius: var(--ps-radius-sm);
}

.ps-route-map figcaption {
  margin-top: 8px;
  color: var(--ps-sub);
  text-align: right;
  font-size: 11px;
}

.ps-route-map iframe {
  height: 300px;
}

/* Location */
.ps-location-hero {
  width: min(190px, 54vw);
  margin: -10px auto 18px;
}

.ps-location-grid {
  display: grid;
  gap: 12px;
}

.ps-info-card {
  padding: clamp(16px, 3vw, 22px);
}

.ps-info-card--main h3 {
  font-size: clamp(17px, 4.3vw, 21px);
}

.ps-info-card span {
  color: var(--ps-pink);
  font-weight: 900;
  font-size: 1.16em;
}

.ps-info-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(12px, 3.1vw, 14px);
  line-height: 1.65;
}

.ps-location-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.ps-location-buttons .ps-btn {
  width: 100%;
  min-height: 48px;
  font-size: clamp(13px, 3.2vw, 15px);
}

/* FAQ */
.ps-faq {
  overflow: hidden;
}

.ps-faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

.ps-faq summary::-webkit-details-marker {
  display: none;
}

.ps-faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ps-pink);
  border-bottom: 2px solid var(--ps-pink);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.ps-faq[open] summary::after {
  transform: rotate(-135deg);
}

.ps-faq summary span,
.ps-faq__answer span {
  color: var(--ps-pink);
  font-size: inherit;
  font-weight: 900;
}

.ps-faq__answer {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
  font-size: clamp(13px, 3.3vw, 15px);
  line-height: 1.7;
}

.ps-faq__answer p {
  margin: 0;
}

/* Final CTA */
.ps-final {
  padding: clamp(36px, 7vw, 84px) 0 clamp(42px, 8vw, 92px);
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,225,233,.86));
}

.ps-final__inner {
  display: grid;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(22px, 5vw, 46px);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: var(--ps-radius-lg);
  background: rgba(255,255,255,.75);
  box-shadow: var(--ps-shadow);
}

.ps-final__copy p:not(.ps-final__kicker) {
  margin-top: 14px;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.85;
}

.ps-img-box--final {
  border-radius: var(--ps-radius-md);
}

.ps-toast {
  position: fixed;
  right: auto;
  bottom: 24px;
  left: 50%;
  z-index: 99999;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(48,52,56,.94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-size: 13px;
}

.br-sp{
  display: block !important;
}

.br-pc{
  display: none;
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --ps-gutter-sp: 32px;
  }

  .ps-hero__inner {
    grid-template-columns: minmax(0, .95fr) minmax(300px, .8fr);
    gap: clamp(34px, 5vw, 64px);
  }

  .ps-hero__visual {
    width: 100%;
    max-width: 440px;
  }

  .ps-btn--primary {
    width: fit-content;
    min-width: 310px;
  }

  .ps-reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-feature-card:last-child {
    grid-column: 1 / -1;
  }

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

  .ps-route-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .ps-route-guide {
    grid-column: 1 / -1;
  }

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

  .ps-info-card--main,
  .ps-info-card--wide {
    grid-column: 1 / -1;
  }

  .ps-location-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-final__inner {
    grid-template-columns: minmax(0, .92fr) minmax(300px, .9fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --ps-gutter-sp: var(--ps-gutter-pc);
  }

  .br-sp{
    display: none !important;
  }

  .br-pc{
    display: block;
  }

  .ps-awning {
    background: repeating-linear-gradient(90deg, var(--ps-pink) 0 72px, var(--ps-pink-2) 72px 144px);
  }

  .ps-awning::after {
    height: 52px;
    bottom: -26px;
    background:
      radial-gradient(circle at 36px 0, transparent 25px, var(--ps-pink) 26px 49px, transparent 50px) 0 0 / 144px 52px,
      radial-gradient(circle at 108px 0, transparent 25px, var(--ps-pink-2) 26px 49px, transparent 50px) 0 0 / 144px 52px;
  }

  .ps-hero {
    min-height: min(820px, 100svh);
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .ps-hero__inner {
    align-self: center;
    padding-top: 92px;
  }

  .ps-reason-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ps-reason-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 260px;
    padding: 30px 20px 24px;
    text-align: center;
  }

  .ps-reason-card .ps-icon {
    margin: 0 auto 2px;
  }

  .ps-card-num {
    top: 18px;
    left: 18px;
  }

  .ps-feature-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ps-feature-card,
  .ps-feature-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 16px 20px;
    text-align: center;
  }

  .ps-feature-card .ps-icon {
    margin: 0 auto 4px;
  }

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

  .ps-route-layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .ps-route-guide {
    grid-column: auto;
  }

  .ps-route-steps span{
    display: table;
  }

  .ps-route-map iframe {
    min-height: 390px;
  }

  .ps-location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .8fr) minmax(0, 1.25fr);
  }

  .ps-info-card--main,
  .ps-info-card--wide {
    grid-column: auto;
  }
}

/* Narrow SP */
@media (max-width: 374px) {
  .ps-container {
    width: min(calc(100% - 24px), var(--ps-container));
  }

  .ps-panel {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .ps-reason-card,
  .ps-feature-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 12px;
  }

  .ps-icon {
    width: 54px;
    height: 54px;
  }

  .ps-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ps-lp *,
  .ps-lp *::before,
  .ps-lp *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* =========================================================
   v2.1.0 SP critical layout fix
   - Keep first view within one mobile viewport including CTA.
   - Make primary CTA sticky.
   - Keep CTA text white.
   - Remove location decorative icon.
   ========================================================= */

.ps-lp {
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
}

.ps-btn--primary,
.ps-btn--primary:link,
.ps-btn--primary:visited,
.ps-sticky-cta,
.ps-sticky-cta:link,
.ps-sticky-cta:visited {
  color: #fff !important;
}

.ps-sticky-cta {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: max(14px, env(safe-area-inset-left));
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-height: 30px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4167, #f85d7c);
  box-shadow: 0 14px 30px rgba(226, 56, 96, .28);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  transform: translateZ(0);
}

.ps-sticky-cta svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-location-hero {
  display: none !important;
}

@media (max-width: 767px) {
  body.pocaspot-lp-page {
    overflow-x: hidden;
  }

  .ps-lp {
    min-width: 0;
  }

  .ps-container {
    width: min(calc(100% - 28px), var(--ps-container));
  }

  .ps-awning {
    min-height: 54px;
    padding: 8px 12px 13px;
  }

  .ps-awning::after {
    bottom: -14px;
    height: 28px;
    background:
      radial-gradient(circle at 14px 0, transparent 13px, var(--ps-pink) 14px 26px, transparent 27px) 0 0 / 56px 28px,
      radial-gradient(circle at 42px 0, transparent 13px, var(--ps-pink-2) 14px 26px, transparent 27px) 0 0 / 56px 28px;
  }

  .ps-awning__logo {
    font-size: clamp(17px, 5.4vw, 22px);
    letter-spacing: .07em;
  }

  .ps-awning__logo span {
    margin-top: .22em;
  }

  .ps-hero {
    /* min-height: 100svh;
    min-height: 100dvh; */
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    overflow: hidden;
  }

  .ps-hero__inner {
    position: relative;
    /* display: block;
    min-height: calc(100svh - 54px - 76px);
    min-height: calc(100dvh - 54px - 76px); */
    padding-top: clamp(28px, 7.4vh, 52px);
    padding-bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .ps-hero__content {
    position: relative;
    z-index: 2;
    width: min(66%, 245px);
    min-width: 0;
    width: 100%;
  }

  .ps-hero__kicker,
  .ps-final__kicker {
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.42;
  }

  .ps-hero h1,
  .ps-final h2 {
    margin-top: 3px;
    font-size: clamp(22px, 6.25vw, 26px);
    line-height: 1.28;
    letter-spacing: .035em;
  }

  .ps-hero__text {
    max-width: 100%;
    margin-top: 9px;
    font-size: clamp(10px, 2.75vw, 11px);
    line-height: 1.58;
    letter-spacing: .02em;
  }

  .ps-hero__ticket {
    width: min(92px, 28vw);
    margin: 10px 0 0 4px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: clamp(10px, 2.8vw, 12px);
  }

  .ps-hero__ticket span {
    margin-top: 3px;
  }

  .ps-hero .ps-note {
    max-width: 210px;
    margin-top: 72px !important;
    font-size: 9px;
    line-height: 1.45;
  }

  .ps-hero__visual {
    /* position: absolute; */
    right: max(-8px, -2vw);
    bottom: calc(-33px + env(safe-area-inset-bottom));
    z-index: 1;
    width: min(50vw, 175px);
    margin: 0;
    pointer-events: none;
  }

  .ps-polaroid {
    padding: 6px 6px 17px;
    border-radius: 11px;
    transform: rotate(5deg);
    box-shadow: 0 14px 28px rgba(202, 46, 84, .16);
  }

  .ps-polaroid__label {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .ps-polaroid figcaption {
    bottom: 5px;
    left: 8px;
    font-size: 7px;
  }

  .ps-img-box--hero {
    border-radius: 8px;
  }

  .ps-img-box--hero::before {
    padding-top: 116%;
  }

  .ps-hero__stamp {
    right: -8px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border-width: 1px;
    font-size: 7px;
    line-height: 1.25;
  }

  .ps-hero__inner > .ps-btn--primary,
  .ps-hero__content > .ps-btn--primary {
    display: none;
  }

  .ps-section {
    padding: 38px 0;
  }

  .ps-section + .ps-section,
  .ps-section + .ps-final {
    padding-top: 26px;
  }
}

@media (min-width: 768px) {
  .ps-sticky-cta {
    right: 24px;
    left: auto;
    bottom: 24px;
    width: min(360px, calc(100vw - 48px));
  }
}

@media (min-width: 1024px) {
  .ps-sticky-cta {
    right: 40px;
    bottom: 36px;
  }
}

/* =========================================================
   v2.2.0 PC/SP refinement
   - Reposition MV sticker on desktop without disturbing SP first view.
   - Ensure sticky/main CTA text stays white.
   - Remove location decorative icon area.
   - Prevent awkward final CTA title line breaks.
   ========================================================= */

.ps-btn--primary,
.ps-btn--primary:link,
.ps-btn--primary:visited,
.ps-btn--primary:hover,
.ps-btn--primary:active,
.ps-sticky-cta,
.ps-sticky-cta:link,
.ps-sticky-cta:visited,
.ps-sticky-cta:hover,
.ps-sticky-cta:active {
  color: #fff !important;
}

.ps-section--location .ps-location-hero,
.ps-section--location .ps-location-pin,
.ps-section--location .ps-heading + .ps-icon,
.ps-section--location .ps-heading + svg,
.ps-section--location .ps-heading::after {
  display: none !important;
}

.ps-nowrap {
  white-space: nowrap;
}

/* PC/tablet: the SHIBUYA sticker should sit as a visual accent,
   not as a misplaced block in the text flow. */
@media (min-width: 768px) {
  .ps-hero__content {
    position: relative;
  }

  .ps-hero__ticket {
    position: absolute;
    z-index: 4;
    right: clamp(-104px, -7.5vw, -56px);
    bottom: clamp(69px, -4vw, -28px);
    width: clamp(132px, 15vw, 176px);
    margin: 0;
    transform: rotate(-7deg);
    pointer-events: none;
  }

  .ps-hero__visual {
    z-index: 2;
  }
}

/* Desktop: keep the hero balanced on wide monitors and avoid the sticker
   colliding with the polaroid. */
@media (min-width: 1024px) {
  .ps-hero__inner {
    grid-template-columns: minmax(0, .96fr) minmax(360px, .86fr);
    gap: clamp(64px, 7vw, 112px);
  }

  .ps-hero__visual {
    max-width: 430px;
    justify-self: center;
  }

  .ps-hero__ticket {
    right: clamp(-132px, -9vw, -88px);
    bottom: clamp(-62px, -4.4vw, -36px);
  }

  .ps-hero__stamp {
    right: -22px;
    bottom: 34px;
  }

  .ps-final__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .78fr);
  }

  .ps-final__copy {
    max-width: 560px;
  }

  .ps-final h2 {
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.34;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

/* SP: preserve the mobile first-view correction. The sticker remains in the
   text area and is intentionally compact so MV + CTA fit in one screen. */
@media (max-width: 767px) {
  .ps-hero__ticket {
    position: absolute;
    right: -40px;
    bottom: 44px;
    z-index: 2;
    pointer-events: none;
  }

  .ps-final h2 {
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .ps-final .ps-nowrap {
    white-space: normal;
  }
}
