:root {
  --picopy-sky: #54c8e7;
  --picopy-white: #ffffff;
  --picopy-shadow: rgba(24, 77, 91, 0.18);
  --picopy-title-font: "sofia-pro-soft", "Sofia Pro Soft", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --picopy-rounded-font: "m-plus-rounded-1c", "rounded-mplus-1c", "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  --picopy-body-font: "m-plus-rounded-1c", "rounded-mplus-1c", "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  --picopy-jp-font: "A-OTF UD Shin Maru Go Pro", "Hiragino Maru Gothic Pro", "Yu Gothic", "YuGothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior: none;
}

main {
  margin: 0;
  background: var(--picopy-sky);
  overflow-x: hidden;
  padding-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

.picopy-hero {
  position: relative;
  background: var(--picopy-sky);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 100px;
}

.picopy-hero__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(12px, 2vh, 20px) clamp(16px, 4vw, 64px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picopy-hero__text-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.picopy-hero__eyebrow {
  margin: 0;
  padding-left: 3px;
  text-align: left;
  font-family: var(--picopy-jp-font);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--picopy-white);
  opacity: 0;
  transform: translateY(-20px);
  animation: picopy-fade-up 0.7s ease-out forwards 0.1s;
}

.picopy-hero__title {
  margin: 6px 0 0;
  font-family: var(--picopy-title-font);
  font-size: clamp(72px, 12.5vw, 220px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--picopy-white);
  text-transform: uppercase;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(10px, 1.5vw, 22px);
  white-space: nowrap;
}

.picopy-hero__title-word {
  display: inline-flex;
  align-items: flex-start;
}

.picopy-hero__title-char {
  display: inline-block;
  margin-right: -0.07em;
  opacity: 0;
  transform: translate3d(0, 0.38em, 0) scale(0.92);
  animation: picopy-char-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.22s + (var(--char-index) * 0.06s));
}

.picopy-hero__title-word .picopy-hero__title-char:last-child {
  margin-right: 0;
}

.picopy-hero__scene {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 33vw, 480px);
  margin-top: clamp(18px, 2vw, 28px);
}

.picopy-hero__character {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: clamp(400px, min(60vw, 100vh), 900px);
  transform: translateX(-50%) translateY(15%);
}

.picopy-hero__chick {
  width: 100%;
  transform: translateY(100%);
  transform-origin: bottom center;
  opacity: 0;
  animation: chick-pop 1.1s cubic-bezier(0.18, 0.9, 0.22, 1) forwards 0.45s;
}


.picopy-hero__sparkles {
  position: absolute;
  right: clamp(88px, 18vw, 340px);
  bottom: clamp(122px, 18vw, 280px);
  z-index: 4;
  width: clamp(88px, 11vw, 132px);
  height: clamp(72px, 8vw, 112px);
  pointer-events: none;
}

.picopy-hero__star {
  position: absolute;
  opacity: 0;
  filter: drop-shadow(0 5px 8px rgba(255, 255, 255, 0.16));
  animation:
    star-appear 0.55s ease-out forwards var(--star-delay),
    star-pulse 3.6s ease-in-out infinite calc(var(--star-delay) + 0.55s);
}

.picopy-hero__star--big {
  --star-delay: 0.95s;
  right: 0;
  bottom: 0;
  width: 55%;
}

.picopy-hero__star--small {
  --star-delay: 1.1s;
  left: 0;
  top: 10%;
  width: 28%;
}

@keyframes picopy-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes picopy-char-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.38em, 0) scale(0.92);
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes chick-pop {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  30% {
    opacity: 1;
  }

  72% {
    transform: translateY(-3%) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes star-appear {
  from {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    transform: scale(1) rotate(-3deg);
  }

  38% {
    transform: scale(1.1) rotate(6deg);
  }

  68% {
    transform: scale(0.93) rotate(-2deg);
  }
}

@media (max-width: 1080px) {
  .picopy-hero__title {
    font-size: clamp(64px, 12.5vw, 160px);
  }

  .picopy-hero__character {
    width: clamp(400px, min(82vw, 100vh), 880px);
  }

.picopy-hero__sparkles {
    right: clamp(24px, 8vw, 120px);
    bottom: clamp(126px, 20vw, 240px);
  }
}

@media (max-width: 720px) {
  .picopy-hero {
    min-height: clamp(520px, 74vh, 620px);
    min-height: clamp(520px, 74svh, 620px);
    padding-top: 50px;
  }

  .picopy-hero__inner {
    padding: 16px 16px 0;
    height: auto;
    align-items: flex-start;
  }

  .picopy-hero__eyebrow {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .picopy-hero__title {
    margin-top: 6px;
    font-size: clamp(68px, 25vw, 126px);
    line-height: 0.92;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    white-space: normal;
  }

  .picopy-hero__scene {
    min-height: clamp(142px, 34vw, 196px);
    margin-top: 18px;
  }

  .picopy-hero__character {
    width: min(360px, 98vw);
    bottom: -28px;
    transform: translateX(-50%) translateY(25%);
  }

  .picopy-hero__sparkles {
    right: clamp(18px, 6vw, 28px);
    bottom: -32px;
    width: 68px;
    height: 56px;
    z-index: 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .picopy-hero__eyebrow,
  .picopy-hero__chick,
  .picopy-hero__star,
  .picopy-hero__title-char {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.picopy-about {
  background: #fffccc;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0 0;
}

.picopy-about__inner {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.picopy-section-title {
  font-family: var(--picopy-rounded-font);
  font-size: 60px;
  font-weight: 900;
  font-style: normal;
  color: #03a5d0;
  text-align: center;
  line-height: 117px;
  letter-spacing: 0;
}

.picopy-about__title,
.picopy-family__title,
.picopy-intro__title,
.picopy-card__title,
.picopy-otoku__title,
.picopy-play__title,
.picopy-videos__title,
.picopy-schedule__title {
  font-family: var(--picopy-rounded-font);
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0;
}

.picopy-about__title {
  margin: 80px 0 30px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (max-width: 768px) {
  .picopy-about__title {
    margin-top: 30px;
  }
}

.picopy-about.is-visible .picopy-about__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.picopy-about__nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: min(1200px, calc(100% - 38px));
  margin: 0 auto;
  margin-bottom: clamp(4px, 1vw, 16px);
  transform: none;
}

.picopy-about__btn {
  width: clamp(162px, 15vw, 220px);
  padding: clamp(9px, 1vw, 14px) clamp(18px, 2.5vw, 38px);
  background: #F58225;
  color: #fff;
  border: none;
  border-radius: clamp(6px, 0.7vw, 8.95px);
  font-family: var(--picopy-rounded-font);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
  line-height: clamp(16px, 1.3vw, 20px);
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0px 4.97px 0px 0px #D1752A;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}

.picopy-about__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.picopy-about__btn:active {
  transform: translateY(4px);
  box-shadow: none;
}

.picopy-about__row {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-about.is-visible .picopy-about__row {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.picopy-about__text {
  width: 100%;
  max-width: 440px;
  padding-inline: 0;
}

.picopy-about__text p {
  margin: 0 0 0.6em;
  font-family: var(--picopy-body-font);
  font-size: clamp(13px, 1.2vw + 8px, 18px);
  font-weight: 800;
  font-style: normal;
  line-height: clamp(22px, 2.2vw + 10px, 34px);
  letter-spacing: 0;
  color: #333;
  text-align: center;
  text-wrap: pretty;
}

.picopy-about__text p:last-child {
  margin-bottom: 0;
}

.picopy-about__text-keep {
  display: inline-block;
  white-space: nowrap;
}

.picopy-about__character {
  position: absolute;
  left: clamp(50%, calc(50% + 255px), calc(100% - 120px));
  bottom: 0;
  transform: translateY(84px);
  z-index: 3;
  width: clamp(140px, 16vw, 214.74px);
  height: auto;
  display: block;
}

/* ── Family Section ─────────────────────────────────────────────── */

.picopy-family {
  --picopy-bg-offset: clamp(-34px, -2vw, -10px);
  position: relative;
  z-index: 2;
  background: #fff;
  overflow: visible;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.picopy-family__bg-text {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "sofia-pro-soft", "Sofia Pro Soft", "Arial Rounded MT Bold", sans-serif;
  font-size: 211px;
  font-weight: 900;
  color: #fffccc;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.picopy-family__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.picopy-family__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  margin-bottom: clamp(32px, 5vw, 60px);
  gap: 38px;
}

.picopy-family::before,
.picopy-card::before,
.picopy-play::before,
.picopy-videos::before,
.picopy-schedule::before {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 18px;
  border-radius: 999px;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.picopy-family::before {
  content: "紹介するよ！";
  background: #03a5d0;
  color: #ffffff;
  top: 52px;
}

.picopy-card::before {
  content: none;
}

.picopy-play::before {
  content: none;
  background: #03a5d0;
  color: #ffffff;
}

.picopy-videos::before {
  content: "もう見た？";
  background: #03a5d0;
  color: #ffffff;
}

.picopy-schedule::before {
  content: "会いに来てね！";
  background: #ffffff;
  color: #03a5d0;
}

.picopy-family__eyebrow {
  display: inline-block;
  background: #03a5d0;
  color: #fff;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  line-height: 1.5;
}

.picopy-family__eyebrow,
.picopy-videos__badge,
.picopy-schedule__badge {
  visibility: hidden;
}

.picopy-family__inner,
.picopy-card__inner,
.picopy-play__inner,
.picopy-videos__inner,
.picopy-schedule__inner {
  transform: translateY(-48px);
}

.picopy-family__inner,
.picopy-card__inner {
  transform: translateY(-76px);
}

.picopy-family__eyebrow {
  display: none;
}

.picopy-family__header,
.picopy-card__header {
  padding-top: clamp(16px, 1.8vw, 22px);
  gap: 0;
}

.picopy-family__header {
  padding-top: 0;
}

.picopy-family__title {
  margin: 0;
}

.picopy-family__members {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 2.4vw, 30px);
}

.picopy-family__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
}

.picopy-family__member.is-visible {
  animation: family-member-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.picopy-family__member--1.is-visible { animation-delay: 0.1s; }
.picopy-family__member--2.is-visible { animation-delay: 0.3s; }
.picopy-family__member--3.is-visible { animation-delay: 0.5s; }
.picopy-family__member--4.is-visible { animation-delay: 0.7s; }
.picopy-family__member--5.is-visible { animation-delay: 0.9s; }

.picopy-family__member--2,
.picopy-family__member--4 {
  margin-bottom: -30px;
}

@keyframes family-member-in {
  to { opacity: 1; transform: translateY(0); }
}

.picopy-family__member img {
  width: clamp(108px, 12.5vw, 164px);
  height: auto;
  display: block;
}

.picopy-family__member--1 img,
.picopy-family__member--5 img {
  width: clamp(148px, 16.8vw, 214px);
}

.picopy-family__member--2 img,
.picopy-family__member--4 img {
  width: clamp(96px, 10.8vw, 130px);
}

.picopy-family__member--3 img {
  width: clamp(128px, 14.8vw, 190px);
}

@media (min-width: 769px) {
  .picopy-family::before {
    content: none;
  }

  .picopy-family__eyebrow {
    display: inline-flex;
    visibility: visible;
  }

  .picopy-family__header {
    padding-top: 60px;
    gap: 18px;
  }

  .picopy-family__members {
    width: min(115%, calc(100% + 172px));
    margin-left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 0;
  }

  .picopy-family__member {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
  }

  .picopy-family__member img {
    width: 100%;
    max-width: none;
  }

  .picopy-family__member--1 img,
  .picopy-family__member--5 img {
    width: 100%;
  }

  .picopy-family__member--1 {
    width: 24.5%;
    margin-right: -6.6%;
    z-index: 2;
  }

  .picopy-family__member--2 {
    width: 19%;
    margin-bottom: 0;
    margin-right: -5.8%;
    top: 74px;
    z-index: 2;
  }

  .picopy-family__member--3 {
    width: 20.5%;
    z-index: 3;
  }

  .picopy-family__member--3 img {
    width: 100%;
  }

  .picopy-family__member--4 {
    width: 19%;
    margin-bottom: 0;
    margin-left: -5.8%;
    top: 74px;
    z-index: 2;
  }

  .picopy-family__member--5 {
    width: 24.5%;
    margin-left: -6.6%;
    z-index: 2;
  }

  .picopy-family__member--2 img,
  .picopy-family__member--4 img {
    width: 100%;
    transform: none;
  }
}

/* ── Intro Section ─────────────────────────────────────────────── */

.picopy-intro {
  --picopy-intro-character-height: clamp(380px, 72svh, 760px);
  --picopy-intro-character-max-width: min(48vw, 620px);
  --picopy-intro-bubble-width: clamp(124px, 12.8vw, 174px);
  --picopy-intro-bubble-top: clamp(22px, 4.3svh, 54px);
  --picopy-intro-bubble-offset: clamp(-20px, -1.6vw, 0px);
  --picopy-intro-title-size: 60px;
  --picopy-intro-tag-size: clamp(15px, 1.45vw, 20px);
  --picopy-intro-row-size: clamp(15px, 1.2vw, 19px);
  --picopy-intro-content-width: 558px;
  --picopy-intro-content-height: 595px;
  --picopy-intro-info-width: min(100%, var(--picopy-intro-content-width));
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 50px);
  background: #6bd1ec;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.picopy-intro__left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
}

.picopy-intro__character-wrap {
  position: relative;
  width: min(100%, 560px);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.picopy-intro__character-wrap.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.picopy-intro__character {
  display: block;
  height: var(--picopy-intro-character-height);
  width: auto;
  max-width: var(--picopy-intro-character-max-width);
}

.picopy-intro__bubble {
  position: absolute;
  top: var(--picopy-intro-bubble-top);
  left: var(--picopy-intro-bubble-offset);
  width: var(--picopy-intro-bubble-width);
  z-index: 1;
}

.picopy-intro__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-intro__tags {
  list-style: none;
  margin: 0 0 clamp(16px, 2.5vw, 32px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.picopy-intro__tags li {
  font-family: var(--picopy-body-font);
  font-size: 16px;
  font-weight: 800;
  font-style: normal;
  color: #03a5d0;
  line-height: 34px;
  letter-spacing: 0;
}

.picopy-intro[aria-labelledby="picopy-intro-title"] .picopy-intro__tags li {
  color: #fff;
}

.picopy-intro.is-visible .picopy-intro__right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

@media (min-width: 769px) {
  .picopy-intro.is-visible.picopy-intro--reverse .picopy-intro__right {
    margin-left: clamp(1rem, 4vw, 10rem);
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .picopy-intro {
    gap: clamp(12px, 2vw, 32px);
    padding: 0 clamp(16px, 3vw, 40px);
  }
  .picopy-intro__character {
    height: clamp(280px, 55svh, 560px);
  }
  /* 吹き出しがはみ出さないよう、マイナスオフセットを無効化 */
  .picopy-intro__bubble {
    left: 0 !important;
  }
  .picopy-intro__bubble--right {
    right: 0 !important;
    left: auto !important;
  }
  .picopy-intro-picopy .picopy-intro__bubble {
    left: 0 !important;
  }
  /* picopi-1.svg をiPad縦で画面内に収める */
  .picopy-about__character {
    width: clamp(100px, 14vw, 180px);
    left: clamp(calc(100% - 140px), calc(50% + 22vw + 20px), calc(100% - 0px));
    transform: translateY(60px);
  }

  /* ── iPad全体：コンテンツを大きくして余白を埋める ── */

  /* セクションタイトル */
  .picopy-section-title {
    font-size: clamp(42px, 6vw, 58px);
    line-height: 1.2;
  }

  /* About セクション */
  .picopy-about {
    padding: 60px 0 40px;
    justify-content: center;
  }
  .picopy-about__title {
    margin: 40px 0 24px;
  }
  .picopy-about__text p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.9;
  }
  .picopy-about__btn {
    font-size: clamp(14px, 1.6vw, 17px);
    padding: clamp(12px, 1.4vw, 18px) clamp(20px, 3vw, 44px);
  }

  /* ファミリー紹介 */
  .picopy-family__member--1 img,
  .picopy-family__member--5 img {
    width: clamp(180px, 22vw, 260px);
  }
  .picopy-family__member--2 img,
  .picopy-family__member--4 img {
    width: clamp(120px, 14vw, 160px);
  }
  .picopy-family__member--3 img {
    width: clamp(160px, 18vw, 220px);
  }

  /* キャラクター個別（intro） */
  .picopy-intro__character {
    height: clamp(380px, 68svh, 680px);
  }
  .picopy-intro__info {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 2;
  }
  .picopy-intro__tags li {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
  }

  /* ゲームコーナー */
  .picopy-play__inner {
    padding-top: 80px;
  }
  .picopy-play__grid {
    gap: clamp(24px, 3vw, 40px);
  }

  /* イベントスケジュール */
  .picopy-schedule__inner {
    padding-top: 80px;
  }
  .picopy-schedule__text {
    font-size: clamp(17px, 2vw, 22px);
  }
  .picopy-schedule__date {
    font-size: clamp(20px, 2.4vw, 26px);
  }
  .picopy-schedule__item {
    padding: 24px 10px;
  }
}

.picopy-intro--reverse .picopy-intro__right {
  transform: translateX(-40px);
}

.picopy-intro__title {
  margin: 0 0 clamp(18px, 2.8vw, 34px);
  font-size: var(--picopy-intro-title-size);
  line-height: 117px;
  color: #fff;
  text-align: left;
}

.picopy-intro__info {
  margin: 0;
  width: var(--picopy-intro-info-width);
  border-collapse: collapse;
  font-family: var(--picopy-body-font);
  font-size: 16px;
  font-weight: 800;
  font-style: normal;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0;
}

.picopy-intro__label,
.picopy-intro__colon,
.picopy-intro__value,
.picopy-intro__lead {
  padding: 0 0 clamp(8px, 1vw, 14px);
  font: inherit;
  color: inherit;
  vertical-align: top;
}

.picopy-intro__lead {
  padding-bottom: 3rem;
}

.picopy-intro__label {
  white-space: nowrap;
  text-align: left;
  padding-right: clamp(2px, 0.4vw, 6px);
  font-weight: 800;
}

.picopy-intro__colon {
  width: 1em;
  text-align: center;
  padding-right: clamp(6px, 0.9vw, 12px);
}

.picopy-intro__value {
  width: 100%;
}

.picopy-intro__lead {
  text-align: left;
}

.picopy-intro__row:last-child .picopy-intro__label,
.picopy-intro__row:last-child .picopy-intro__colon,
.picopy-intro__row:last-child .picopy-intro__value,
.picopy-intro__row:last-child .picopy-intro__lead {
  padding-bottom: 0;
}

.picopy-intro__row--lead .picopy-intro__lead {
  font-weight: 800;
}

.picopy-intro__row--dream .picopy-intro__value {
  white-space: pre-line;
}

/* Reversed version (ピピパパ) */
.picopy-intro--reverse .picopy-intro__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.picopy-intro__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: min(100%, var(--picopy-intro-content-width));
  max-width: var(--picopy-intro-content-width);
  height: var(--picopy-intro-content-height);
}

.picopy-intro--reverse .picopy-intro__left {
  justify-content: flex-start;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
}

.picopy-intro--reverse {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #ebf25b;
}

.picopy-intro--reverse::before {
  background: #ebf25b;
}

.picopy-intro--reverse .picopy-intro__title {
  color: #0089d2;
}

.picopy-intro--reverse .picopy-intro__info {
  color: #0089d2;
}

.picopy-intro--reverse .picopy-intro__character-wrap {
  transform: translateX(120%);
}

.picopy-intro--reverse .picopy-intro__character-wrap.is-visible {
  transform: translateX(0);
}

.picopy-intro--pikoта {
  background: #d1efec;
}

.picopy-intro--pikoта .picopy-intro__title {
  color: #0089ae;
}

.picopy-intro--pikoта .picopy-intro__info {
  color: #0089ae;
}

.picopy-intro--pikori {
  background: #fde5e2;
}

.picopy-intro--pikori .picopy-intro__title {
  color: #ef5ba1;
}

.picopy-intro--pikori .picopy-intro__info {
  color: #ef5ba1;
}

.picopy-intro--mama {
  background: #f783bd;
}

.picopy-intro-picopy .picopy-intro__bubble {
  top: 0;
  left: clamp(0px, -1.6vw, -35px);
}

.picopy-intro--mama .picopy-intro__bubble {
  top: clamp(20px, 5svh, 60px);
}

.picopy-intro--mama .picopy-intro__tags li {
  color: #fff;
}

.picopy-intro--reverse .picopy-intro__tags li {
  color: #0089d2;
}

.picopy-intro--pikori .picopy-intro__tags li {
  color: #ef5ba1;
}

.picopy-intro--pikoта .picopy-intro__tags li {
  color: #0089ae;
}

.picopy-intro.picopy-intro--pikori {
  --picopy-intro-bubble-offset: clamp(14px, 2vw, 28px);
}

.picopy-intro.picopy-intro--pikoта {
  --picopy-intro-bubble-offset: clamp(16px, 2.2vw, 30px);
}

.picopy-intro--pikoта .picopy-intro__bubble {
  left: -20px;
}

.picopy-intro__bubble--right {
  top: var(--picopy-intro-bubble-top);
  left: auto;
  right: var(--picopy-intro-bubble-offset);
}

/* ── Card Section ─────────────────────────────────────────────── */

.picopy-card {
  --picopy-bg-offset: clamp(-34px, -2vw, -10px);
  position: relative;
  z-index: 0;
  background: #fffccc;
  overflow: visible;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 0 clamp(104px, 9vw, 132px);
}

.picopy-card__bg-text {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "sofia-pro-soft", "Sofia Pro Soft", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(132px, 15vw, 185px);
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.picopy-card__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding-top: clamp(28px, 3.4vw, 40px);
}

.picopy-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: clamp(32px, 3vw, 42px);
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-card.is-visible .picopy-card__header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.picopy-card__eyebrow {
  display: inline-block;
  background: #03a5d0;
  color: #fff;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  line-height: 1.5;
}

.picopy-card__title {
  margin: 0;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: #03a5d0;
  -webkit-text-stroke: 0;
  paint-order: normal;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .picopy-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .picopy-card__inner {
    transform: none;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
  }

  .picopy-card__header {
    padding-top: 0;
    gap: 18px;
  }
}

.picopy-card__showcase {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
}

.picopy-card__characters {
  flex: 0 1 clamp(351px, 41vw, 528px);
  min-width: 0;
  width: min(100%, 528px);
  max-width: 528px;
  aspect-ratio: 371 / 194;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-card.is-visible .picopy-card__characters {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.picopy-card__visual {
  display: block;
  width: 100%;
  height: auto;
}

.picopy-card__desc {
  margin: 0;
  font-family: var(--picopy-body-font);
  font-size: 18px;
  font-weight: 800;
  font-style: normal;
  color: #404040;
  line-height: 34px;
  letter-spacing: 0;
  width: 360px;
  max-width: 100%;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-card.is-visible .picopy-card__desc {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}

.picopy-card__highlight {
  color: #0089ae;
  font-weight: 800;
}

.picopy-card__features {
  width: min(879px, 100%);
  max-width: 100%;
  min-height: 284px;
  background: #fff;
  border-radius: 9px;
  padding: clamp(24px, 2.8vw, 30px) clamp(28px, 3.2vw, 38px);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.picopy-card.is-visible .picopy-card__features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.picopy-card__features-title {
  margin: 0 0 18px;
  font-family: var(--picopy-rounded-font);
  font-size: 30px;
  font-weight: 900;
  font-style: normal;
  color: #03a5d0;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.picopy-card__features-list {
  margin: 0;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.picopy-card__features-list li {
  position: relative;
  width: 100%;
  padding-left: 1.5em;
  font-family: var(--picopy-rounded-font);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: #404040;
  line-height: 39px;
  letter-spacing: 0;
  text-align: left;
}

.picopy-card__features-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #03a5d0;
}

.picopy-card__btn {
  padding: 20px 80px;
  margin-top: 4px;
  opacity: 0;
  background: #f58225;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 0 #d1752a;
  text-decoration: none;
  transition: opacity 0.6s ease 0.85s, transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}

.picopy-schedule__btn {
  padding: 20px 80px;
  margin-top: 34px;
  opacity: 0;
  background: #f58225;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 0 #d1752a;
  text-decoration: none;
  transition: opacity 0.6s ease 0.85s, transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
  text-align: center;
}

.picopy-card.is-visible .picopy-card__btn {
  opacity: 1;
}

.picopy-schedule.is-visible .picopy-schedule__btn {
  opacity: 1;
}

.picopy-card__btn:hover,
.picopy-schedule__btn:hover {
  transform: translateY(5px);
  box-shadow: none;
}

.picopy-card__btn:active,
.picopy-schedule__btn:active {
  transform: translateY(5px);
  box-shadow: none;
}

/* ── Otoku Section ─────────────────────────────────────────────── */

.picopy-otoku {
  position: relative;
  z-index: 1;
  background: #C2EDF5;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.picopy-otoku__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.picopy-otoku__title {
  margin: 0;
  line-height: 1.2;
}

.picopy-otoku__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.picopy-otoku__center {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.picopy-otoku__mama-card {
  width: clamp(322px, 38.6vw, 499px);
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.5) translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.18, 0.9, 0.22, 1);
}

.picopy-otoku.is-visible .picopy-otoku__mama-card {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.2s;
}

.picopy-otoku__card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  position: relative;
  z-index: 1;
  margin-top: clamp(81px, 11.3vw, 145px);
}

.picopy-otoku__card-wrap--left {
  margin-right: -29px;
}

.picopy-otoku__card-wrap--right {
  margin-left: -29px;
}

.picopy-otoku__card-box {
  background: #fff;
  border-radius: 14px;
  padding: 23px 32px;
  box-shadow: 0 4px 18px rgba(0, 80, 120, 0.12);
  animation: otoku-rock 3.5s ease-in-out infinite;
  transform-origin: center bottom;
}

.picopy-otoku__card-wrap--right .picopy-otoku__card-box {
  animation-delay: 0.6s;
}

.picopy-otoku__card-img {
  width: clamp(161px, 19vw, 250px);
  height: auto;
  display: block;
}

.picopy-otoku__days {
  display: flex;
  gap: 8px;
  align-items: center;
}

.picopy-otoku__day {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.picopy-otoku__day--blue {
  background: #4DACC6;
}

.picopy-otoku__day--orange {
  background: #F58225;
}

.picopy-otoku__label {
  margin: 0;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #404040;
  text-align: center;
}

@media (min-width: 769px) {
  .picopy-otoku__center {
    margin-top: 0;
  }

  .picopy-otoku__mama-card {
    width: clamp(234px, 27.1vw, 340px);
  }

  .picopy-otoku.is-visible .picopy-otoku__mama-card {
    transform: scale(1) translateY(92px);
  }

  .picopy-otoku__card-wrap {
    gap: 21px;
  }

  .picopy-otoku__card-wrap--left {
    margin-right: -41px;
  }

  .picopy-otoku__card-wrap--right {
    margin-left: -41px;
  }

  .picopy-otoku__card-box {
    padding: 26px 35px;
  }

  .picopy-otoku__card-img {
    width: clamp(185px, 21.3vw, 281px);
  }

  .picopy-otoku__day {
    width: 85px;
    height: 85px;
    font-size: 50px;
  }

  .picopy-otoku__label {
    font-size: 28px;
  }
}

@keyframes otoku-rock {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ── Play / Videos / Schedule ────────────────────────────────── */

.picopy-play {
  --picopy-bg-offset: clamp(-34px, -2vw, -10px);
  position: relative;
  z-index: 0;
  background: #ffffff;
  overflow: visible;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picopy-play__bg-text {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "sofia-pro-soft", "Sofia Pro Soft", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(132px, 15vw, 185px);
  font-weight: 900;
  color: #EEF8FA;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.picopy-play__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.picopy-play__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.picopy-play__eyebrow {
  display: none;
  background: #03a5d0;
  color: #fff;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  line-height: 1.5;
}

.picopy-play__title {
  margin: 0;
}

.picopy-play__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 769px) {
  .picopy-play {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 56px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .picopy-play__inner {
    transform: none;
    margin-top: 0;
    padding-top: 60px;
  }

  .picopy-play__header {
    padding-top: 0;
  }

  .picopy-play__eyebrow {
    display: inline-block;
  }

  .picopy-play__kids {
    display: none !important;
  }
}

.picopy-play__kids {
  display: block;
  width: clamp(255px, 30vw, 370px);
  margin: 29px auto 0;
}

.picopy-play__card {
  width: 100%;
  aspect-ratio: 570 / 330;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.picopy-play__card--download {
  cursor: pointer;
  text-decoration: none;
  border-radius: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.picopy-play__card--download:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3, 165, 208, 0.38);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.picopy-play__card--janken {
  cursor: pointer;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  border-radius: 21px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.picopy-play__card--janken:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3, 165, 240, 0.38);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.picopy-play__card--janken:active {
  transform: translateY(-2px);
}

.picopy-play__card--janken::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.22) 0%, transparent 35%);
  pointer-events: none;
}

.janken-card__hands {
  display: flex;
  gap: clamp(6px, 1.5vw, 14px);
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.janken-card__hand-img {
  width: clamp(32px, 4.5vw, 56px);
  height: clamp(32px, 4.5vw, 56px);
  object-fit: contain;
  display: block;
}
.janken-card__hands span {
  display: inline-block;
  animation: jankenCardFloat 2.4s ease-in-out infinite;
}
.janken-card__hands span:nth-child(2) { animation-delay: 0.3s; }
.janken-card__hands span:nth-child(3) { animation-delay: 0.6s; }
@keyframes jankenCardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.janken-card__title {
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.janken-card__play-btn {
  margin-top: clamp(6px, 1vw, 10px);
  background: #fff;
  color: #03a5d0;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  animation: jankenPulse 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes jankenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  60%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.picopy-play__card-label {
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: #03a5d0;
  line-height: 1.2;
}

/* ── Janken Popup Modal ───────────────────────────────────────── */
.janken-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.janken-overlay.is-open {
  display: flex;
}

.janken-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  animation: jankenSlideIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes jankenSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.janken-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
  padding: 4px 8px;
  transition: color 0.15s;
}
.janken-modal__close:hover { color: #333; }

.janken-modal__title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  color: #03a5d0;
  margin: 0 0 6px;
}
.janken-modal__subtitle {
  font-size: 14px;
  color: #888;
  margin: 0 0 24px;
}

.janken-choices {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.janken-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border: 3px solid transparent;
  border-radius: 16px;
  padding: 14px 16px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  box-shadow: 0 4px 0 #b8b8b8;
  transition: background 0.14s, border-color 0.14s, transform 0.14s ease, box-shadow 0.14s ease;
  min-width: 90px;
}
.janken-btn:hover {
  background: #e8f8fc;
  border-color: #03a5d0;
  transform: translateY(4px);
  box-shadow: none;
}
.janken-btn__emoji {
  font-size: 42px;
  line-height: 1;
}
.janken-btn__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.janken-arena {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.janken-arena.is-active { display: flex; }

.janken-arena__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.janken-arena__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
}
.janken-arena__label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
}
.janken-arena__hand {
  font-size: 56px;
  line-height: 1;
  animation: jankenShake 0.4s ease both;
}
@keyframes jankenShake {
  0%,100% { transform: rotate(0); }
  25%      { transform: rotate(-12deg); }
  75%      { transform: rotate(12deg); }
}
.janken-arena__vs {
  font-size: 20px;
  font-weight: 900;
  color: #ccc;
}

.janken-result {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  margin: 0 0 4px;
  animation: jankenResultPop 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes jankenResultPop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.janken-result--win  { color: #f07800; }
.janken-result--lose { color: #d93030; }
.janken-result--draw { color: #03a5d0; }

.janken-result-sub {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}

.janken-replay {
  display: none;
  background: #03a5d0;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 0 #027a9c;
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}
.janken-replay.is-active { display: inline-block; }
.janken-replay:hover { transform: translateY(4px); box-shadow: none; }

.picopy-videos {
  --picopy-videos-bg-offset: clamp(-34px, -2vw, -10px);
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #fffccc;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.picopy-videos__bg-text {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--picopy-title-font);
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
  opacity: 0.65;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.picopy-videos__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picopy-videos__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 18px;
  border-radius: 999px;
  background: #03a5d0;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.picopy-videos__title {
  margin: 24px 0 0;
}

@media (min-width: 769px) {
  .picopy-videos {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 0;
    box-sizing: border-box;
  }

  .picopy-videos__bg-text {
    top: -0.3em;
  }

  .picopy-videos::before {
    content: none;
  }

  .picopy-videos__inner {
    transform: none;
    margin-top: 0;
    padding-top: 60px;
    box-sizing: border-box;
  }

  .picopy-videos__badge {
    visibility: visible;
    margin-bottom: 18px;
  }

  .picopy-videos__title {
    margin: 0;
    line-height: 1.16;
  }

  .picopy-schedule {
    min-height: 0;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 60px;
    box-sizing: border-box;
  }

  .picopy-schedule::before {
    content: none;
  }

  .picopy-schedule__inner {
    transform: none;
    width: min(1080px, calc(100% - 48px));
    padding-top: 60px;
    box-sizing: border-box;
  }

  .picopy-schedule__badge {
    display: inline-flex;
    visibility: visible;
    margin-bottom: 18px;
  }

  .picopy-schedule__title {
    margin: 0;
  }
}

.picopy-videos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 32px;
}

.picopy-videos__item {
  width: min(100%, 353px);
  aspect-ratio: 353 / 199;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--picopy-title-font);
  font-size: 20px;
  font-weight: 600;
  color: rgba(3, 165, 208, 0.72);
  letter-spacing: 0.03em;
  overflow: hidden;
}

.picopy-videos__item iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (min-width: 901px) {
  .picopy-videos {
    padding-bottom: 44px;
  }

  .picopy-videos__inner {
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
  }

  .picopy-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 353px);
    justify-content: center;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .picopy-videos__item {
    width: 353px;
    max-width: 353px;
  }
}

.picopy-videos__kids {
  display: block;
  width: clamp(255px, 34vw, 500px);
  margin: 15px auto 0;
}

.picopy-schedule {
  --picopy-schedule-bg-offset: clamp(-38px, -2vw, -10px);
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #6BD0EC;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.picopy-schedule__bg-text {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--picopy-title-font);
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #ffffff;
  opacity: 0.18;
  white-space: nowrap;
  pointer-events: none;
}

.picopy-schedule__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-67px);
}

.picopy-schedule__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 18px;
  border-radius: 999px;
  background: #ffffff;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #03a5d0;
  line-height: 1.2;
}

.picopy-schedule__title {
  margin: 0;
  color: #ffffff;
}

.picopy-schedule__list {
  width: 100%;
  margin-top: 34px;
}

.picopy-schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 132px 132px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 22px;
  padding: 17px 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.52);
}

.picopy-schedule__item:last-child {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.52);
}

.picopy-schedule__item::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.picopy-schedule__date {
  display: inline-flex;
  align-items: center;
  font-family: var(--picopy-title-font);
  height: 32px;
  min-height: 32px;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.picopy-schedule__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-height: 28px;
  padding: 0 14px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #ffffff;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #03a5d0;
  line-height: 1.2;
  white-space: nowrap;
}

.picopy-schedule__text {
  margin: 0;
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── 900px: narrow desktop / large tablet ──────────── */
@media (max-width: 900px) {
  .picopy-section-title {
    font-size: clamp(38px, 5.6vw, 48px);
    line-height: 1.15;
  }

  .picopy-card__features {
    width: min(879px, 100%);
    min-height: 0;
  }
}

/* ── 768px: tablet ─────────────────────────────────── */
@media (max-width: 768px) {

  .picopy-intro,
  .picopy-intro--reverse {
    --picopy-intro-character-height: clamp(250px, 60vw, 420px);
    --picopy-intro-character-max-width: min(82vw, 380px);
    --picopy-intro-bubble-width: clamp(106px, 20.9vw, 156px);
    --picopy-intro-bubble-top: 16px;
    --picopy-intro-bubble-offset: 12px;
    --picopy-intro-title-size: clamp(40px, 7vw, 54px);
    --picopy-intro-tag-size: clamp(14px, 2.6vw, 18px);
    --picopy-intro-row-size: clamp(13px, 2.3vw, 16px);
    --picopy-intro-content-width: 420px;
    --picopy-intro-content-height: auto;
    --picopy-intro-info-width: min(100%, 420px);
  }

  .picopy-family__inner,
  .picopy-card__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    transform: translateY(-34px);
  }

  .picopy-family__inner,
  .picopy-card__inner {
    transform: translateY(-56px);
  }

  .picopy-schedule__inner {
    transform: translateY(-56px);
  }

  .picopy-family,
  .picopy-card,
  .picopy-play {
    --picopy-bg-offset: -8px;
  }

  .picopy-videos {
    --picopy-videos-bg-offset: -8px;
  }

  .picopy-schedule {
    --picopy-schedule-bg-offset: -8px;
  }

  /* Otoku */
  .picopy-otoku {
    min-height: 0;
    align-items: flex-start;
    padding: 24px 0 24px;
  }

  .picopy-otoku__title {
    line-height: 1.2;
  }

  .picopy-otoku__inner {
    gap: 14px;
  }

  .picopy-otoku__content {
    gap: 16px;
  }

  .picopy-otoku__mama-card {
    width: clamp(140px, 28vw, 200px);
  }

  .picopy-otoku__card-wrap {
    margin-top: 0;
    gap: 10px;
  }

  .picopy-otoku__card-wrap--left {
    margin-right: 0;
  }

  .picopy-otoku__card-wrap--right {
    margin-left: 0;
  }

  .picopy-otoku__card-img {
    width: clamp(90px, 16vw, 130px);
  }

  .picopy-otoku__card-box {
    width: min(100%, 248px);
    padding: 12px 18px;
  }

  .picopy-otoku__day {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .picopy-otoku__days {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .picopy-otoku__card-wrap--left .picopy-otoku__days {
    width: min(100%, 188px);
    margin-inline: auto;
    justify-content: space-between;
    gap: 0;
  }

  .picopy-otoku__label {
    font-size: 15px;
    line-height: 1;
  }

  /* About */
  .picopy-about {
    padding: 50px 0 0;
  }

  .picopy-about__nav {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    transform: none;
  }

  .picopy-about__btn {
    width: clamp(140px, 38vw, 220px);
    padding: clamp(12px, 2vw, 20px) clamp(24px, 4vw, 50px);
    font-family: var(--picopy-rounded-font);
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
  }

  .picopy-about__text {
    max-width: 100%;
    padding-inline: clamp(4px, 1.8vw, 12px);
  }

  .picopy-about__text p {
    font-size: clamp(13px, 2.2vw, 16px);
    line-height: clamp(20px, 3.2vw, 28px);
  }

  .picopy-about__character {
    display: none;
  }

  /* Family */
  .picopy-family {
    min-height: 100vh;
    min-height: 100svh;
  }

  .picopy-family__bg-text {
    font-size: 110px;
  }

  .picopy-play__bg-text {
    font-size: clamp(88px, 17vw, 120px);
  }

  .picopy-family__members {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 20px;
  }

  .picopy-family__member--2,
  .picopy-family__member--4 {
    margin-bottom: 0;
  }

  /* Intro: 600px, stack vertically */
  .picopy-intro,
  .picopy-intro--reverse {
    min-height: 100vh;
    min-height: 100svh;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .picopy-intro__left,
  .picopy-intro__right {
    width: 100%;
    padding: 0;
  }

  .picopy-intro__left {
    justify-content: center;
    align-items: center;
    align-self: auto;
    margin-bottom: 0;
  }

  .picopy-intro--reverse .picopy-intro__left {
    order: -1;
    justify-content: center;
    align-items: center;
    align-self: auto;
    padding: 0;
  }

  .picopy-intro--reverse .picopy-intro__right {
    order: 1;
    align-items: center;
    padding: 0;
  }

  .picopy-intro__right,
  .picopy-intro--reverse .picopy-intro__right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .picopy-intro__content {
    align-items: center;
    width: 100%;
  }

  .picopy-intro__title {
    text-align: center;
    line-height: 1.15;
  }

  .picopy-intro__info {
    width: var(--picopy-intro-info-width);
    margin: 0 auto;
    text-align: left;
  }

  .picopy-intro__character-wrap {
    transform: translateY(32px);
  }

  .picopy-intro__right,
  .picopy-intro--reverse .picopy-intro__right {
    transform: translateY(24px);
  }

  .picopy-intro--reverse .picopy-intro__character-wrap {
    transform: translateY(32px);
  }

  .picopy-intro__character-wrap.is-visible,
  .picopy-intro--reverse .picopy-intro__character-wrap.is-visible {
    transform: translateY(0);
  }

  .picopy-intro__bubble {
    left: var(--picopy-intro-bubble-offset);
    top: var(--picopy-intro-bubble-top);
  }

  .picopy-intro__bubble--right {
    right: var(--picopy-intro-bubble-offset);
    left: auto;
    top: var(--picopy-intro-bubble-top);
  }

  /* Card */
  .picopy-card {
    min-height: 0;
    padding: 0 0 76px;
  }

  .picopy-card__inner {
    gap: 24px;
    padding-top: 28px;
  }

  .picopy-card__bg-text {
    font-size: clamp(88px, 17vw, 120px);
  }

  .picopy-card__showcase {
    flex-direction: column;
    gap: 20px;
  }

  .picopy-card__characters {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .picopy-card__desc {
    width: 100%;
    font-size: 15px;
  }
}

/* ── 480px: mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .picopy-about__text {
    max-width: 100%;
    text-align: center;
    padding-inline: 0;
  }

  .picopy-about__text p {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: clamp(20px, 5.5vw, 26px);
    margin-bottom: 0.5em;
  }

  .picopy-intro,
  .picopy-intro--reverse {
    --picopy-intro-character-height: clamp(230px, 68vw, 340px);
    --picopy-intro-character-max-width: min(88vw, 300px);
    --picopy-intro-bubble-width: clamp(81px, 23.1vw, 117px);
    --picopy-intro-bubble-top: 10px;
    --picopy-intro-bubble-offset: 8px;
    --picopy-intro-title-size: clamp(34px, 9vw, 46px);
    --picopy-intro-tag-size: clamp(12px, 3.8vw, 15px);
    --picopy-intro-row-size: clamp(11px, 3.4vw, 14px);
    --picopy-intro-info-width: min(100%, 290px);
  }

  .picopy-family__inner,
  .picopy-card__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    transform: translateY(-24px);
  }

  .picopy-family__inner,
  .picopy-card__inner {
    transform: translateY(-40px);
  }

  .picopy-schedule__inner {
    transform: translateY(-40px);
  }

  .picopy-section-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .picopy-about__inner,
  .picopy-family__inner,
  .picopy-card__inner,
  .picopy-otoku__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .picopy-about__row,
  .picopy-family__members,
  .picopy-card__showcase,
  .picopy-card__features,
  .picopy-otoku__content,
  .picopy-play__grid,
  .picopy-videos__grid,
  .picopy-schedule__list {
    width: 100%;
    max-width: 100%;
  }

  .picopy-card__inner {
    gap: 20px;
  }

  .picopy-about__text,
  .picopy-card__desc,
  .picopy-card__features,
  .picopy-videos__item,
  .picopy-play__card,
  .picopy-intro__content,
  .picopy-intro__info,
  .picopy-intro__row,
  .picopy-schedule__item,
  .picopy-schedule__text,
  .picopy-otoku__card-wrap {
    max-width: 100%;
    min-width: 0;
  }

  /* Otoku */
  .picopy-otoku {
    min-height: 0;
    align-items: flex-start;
    padding: 24px 0 20px;
  }

  .picopy-otoku__inner {
    gap: 12px;
  }

  .picopy-otoku__content {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .picopy-otoku__card-wrap {
    gap: 8px;
    margin-top: 0;
    width: min(100%, 248px);
  }

  .picopy-otoku__card-wrap--left {
    order: 1;
    flex: unset;
    max-width: min(100%, 248px);
    margin: 0;
  }

  .picopy-otoku__card-wrap--right {
    order: 2;
    flex: unset;
    max-width: min(100%, 248px);
    margin: 0;
  }

  .picopy-otoku__center {
    order: 3;
    width: auto;
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .picopy-otoku__mama-card {
    width: clamp(112px, 34vw, 156px);
  }

  .picopy-otoku__card-img {
    width: clamp(118px, 38vw, 162px);
  }

  .picopy-otoku__card-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    width: 100%;
  }

  .picopy-otoku__day {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .picopy-otoku__days {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .picopy-otoku__card-wrap--left .picopy-otoku__days {
    width: min(100%, 192px);
    margin-inline: auto;
    justify-content: space-between;
    gap: 0;
  }

  .picopy-otoku__card-img {
    margin: 0 auto;
  }

  .picopy-otoku__label {
    font-size: 16px;
    line-height: 1;
  }

  /* About */
  .picopy-about {
    min-height: 0;
    padding-bottom: 16px;
  }

  .picopy-about__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
    transform: none;
  }

  .picopy-about__btn {
    flex: 1 1 calc(50% - 8px);
    width: auto;
    padding: 14px 16px;
    font-family: var(--picopy-rounded-font);
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
  }

  .picopy-about__row {
    flex-direction: column;
    align-items: center;
  }

  .picopy-about__character {
    display: block;
    position: relative;
    left: 12px;
    width: 107px;
    height: 120px;
    margin: 25px auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
  }

  .picopy-about.is-visible .picopy-about__character {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }

  /* Family */
  .picopy-family {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .picopy-family__bg-text {
    font-size: 64px;
  }

  .picopy-play__bg-text {
    font-size: 52px;
  }

  .picopy-family__members {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 6px;
    row-gap: 18px;
    width: auto;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
    align-items: end;
  }

  .picopy-family__member img {
    width: clamp(61px, 15.4vw, 89px);
  }

  .picopy-family__member--1 img,
  .picopy-family__member--5 img {
    width: clamp(91px, 23.5vw, 120px);
  }

  .picopy-family__member--2 img,
  .picopy-family__member--4 img {
    width: clamp(63px, 15.4vw, 83px);
  }

  .picopy-family__member {
    width: auto;
    gap: 6px;
  }

  .picopy-family__member--2 {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    position: relative;
    top: 12px;
    z-index: 2;
  }

  .picopy-family__member--3 {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
  }

  .picopy-family__member--3 img {
    width: clamp(79px, 19.4vw, 109px);
  }

  .picopy-family__member--4 {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    position: relative;
    top: 12px;
    z-index: 2;
  }

  .picopy-family__member--1 {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: end;
  }

  .picopy-family__member--5 {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
  }

  /* Intro */
  .picopy-intro,
  .picopy-intro--reverse {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(22px, 4.5vh, 34px) 0 clamp(26px, 5vh, 40px);
    justify-content: center;
    align-items: stretch;
    gap: clamp(12px, 2.6vh, 22px);
  }

  .picopy-intro__left,
  .picopy-intro--reverse .picopy-intro__left {
    width: 100%;
    justify-content: center;
    align-items: center;
    align-self: auto;
    padding: 0;
    margin: 0;
  }

  .picopy-intro__character-wrap,
  .picopy-intro--reverse .picopy-intro__character-wrap {
    width: min(100%, 250px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    transform: translateY(18px);
  }

  .picopy-intro__bubble {
    top: var(--picopy-intro-bubble-top);
    left: var(--picopy-intro-bubble-offset);
    width: var(--picopy-intro-bubble-width);
  }

  .picopy-intro__bubble--right {
    right: var(--picopy-intro-bubble-offset);
    left: auto;
  }

  .picopy-intro__right,
  .picopy-intro--reverse .picopy-intro__right {
    width: min(100%, 290px);
    margin: 0 auto;
    padding: 0;
    align-items: flex-start;
    transform: translateY(12px);
  }

  .picopy-intro__content {
    align-items: flex-start;
    width: 100%;
  }

  .picopy-intro__title {
    width: 100%;
    text-align: left;
    margin: 0 0 12px;
  }

  .picopy-intro__info {
    width: 100%;
    margin: 0;
  }

  .picopy-intro--reverse .picopy-intro__right {
    width: 100%;
    max-width: 236px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .picopy-intro--reverse .picopy-intro__content {
    width: 100%;
    max-width: 212px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 0 0 auto;
  }

  .picopy-intro--reverse .picopy-intro__title,
  .picopy-intro--reverse .picopy-intro__tags,
  .picopy-intro--reverse .picopy-intro__info {
    width: 100%;
    max-width: 212px;
    margin-left: auto;
    margin-right: 0;
  }

  .picopy-intro__row {
    font-size: 14px;
    line-height: 23px;
  }

  .picopy-intro__label,
  .picopy-intro__colon,
  .picopy-intro__value,
  .picopy-intro__lead {
    padding-bottom: 3px;
    line-height: inherit;
  }

  .picopy-intro__label {
    padding-right: 2px;
  }

  .picopy-intro__colon {
    padding-right: 4px;
  }

  /* Card */
  .picopy-card__bg-text {
    font-size: 52px;
  }

  .picopy-card__eyebrow {
    font-size: 14px;
  }

  .picopy-card__desc {
    font-size: 14px;
  }

  .picopy-card__features-title {
    font-size: 15px;
  }

  .picopy-card__features-list li {
    font-size: 13px;
    line-height: 1.45;
  }

  .picopy-card__btn {
    padding: 14px 28px;
    width: 100%;
    max-width: none;
    font-size: 15px;
    text-align: center;
  }

  .picopy-schedule__btn {
    padding: 14px 28px;
    width: 100%;
    max-width: none;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .picopy-play__grid {
    gap: 20px;
  }

  .picopy-videos__bg-text,
  .picopy-schedule__bg-text {
    font-size: clamp(96px, 18vw, 140px);
  }

  .picopy-videos {
    --picopy-videos-bg-offset: -10px;
  }

  .picopy-schedule {
    --picopy-schedule-bg-offset: -10px;
  }

  .picopy-videos__grid {
    gap: 24px;
  }

  .picopy-schedule__item {
    grid-template-columns: 108px 126px minmax(0, 1fr) 10px;
    gap: 16px;
  }

  .picopy-schedule__text {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .picopy-hero {
    min-height: clamp(500px, 70svh, 580px);
  }

  .picopy-hero__inner {
    padding-left: clamp(14px, 4vw, 32px);
    padding-right: clamp(14px, 4vw, 32px);
  }

  .picopy-hero__scene {
    min-height: clamp(126px, 32vw, 168px);
  }

  .picopy-hero__character {
    width: min(420px, 132vw);
    bottom: -34px;
    transform: translateX(-50%) translateY(0);
  }

  .picopy-hero__sparkles {
    right: 20px;
    bottom: -40px;
    width: 58px;
    height: 46px;
  }

  .picopy-about__inner,
  .picopy-family__inner,
  .picopy-card__inner,
  .picopy-otoku__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .picopy-play__card-label {
    font-size: clamp(22px, 6vw, 30px);
  }

  .picopy-play__grid {
    grid-template-columns: 1fr;
  }

  .picopy-play__card,
  .picopy-videos__item {
    width: 100%;
    max-width: 100%;
  }

  .picopy-videos {
    min-height: unset;
    padding: 56px 0 0;
    justify-content: flex-start;
  }

  .picopy-schedule {
    --picopy-schedule-bg-offset: -8px;
  }

  .picopy-videos__badge,
  .picopy-schedule__badge {
    min-height: 32px;
    padding: 6px 14px;
    font-size: 14px;
  }

  .picopy-videos__grid {
    margin-top: 20px;
    gap: 14px;
  }

  .picopy-videos__item {
    font-size: 16px;
  }

  .picopy-play__kids {
    display: block;
  }

  .picopy-play__kids,
  .picopy-videos__kids {
    width: clamp(208px, 90vw, 340px);
    margin-top: 20px;
  }

  .picopy-schedule__list {
    margin-top: 24px;
  }

  .picopy-schedule__item {
    grid-template-columns: auto 1fr 20px;
    align-items: center;
    gap: 8px 10px;
    padding: 22px 0 18px;
  }

  .picopy-schedule__item::after {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .picopy-schedule__date {
    grid-column: 1;
    grid-row: 1;
    font-size: 19px;
    white-space: nowrap;
  }

  .picopy-schedule__tag {
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    white-space: nowrap;
  }

  .picopy-schedule__text {
    grid-column: 1 / span 2;
    grid-row: 2;
    padding-right: 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .picopy-hero__character {
    width: min(390px, 132vw);
  }
}

/* ── Social / CTA Section ─────────────────────────────────────── */

.picopy-social {
  position: relative;
  background: #6BD0EC;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(60px, 8vw, 100px);
}

.picopy-social::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: #fff;
  z-index: 1;
  pointer-events: none;
}

.picopy-social__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.picopy-social__text {
  font-family: "Rounded M+ 1c", "M PLUS Rounded 1c", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 2;
  margin: 0;
}

.picopy-social__text--mobile {
  display: none;
}

.picopy-social__buttons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.picopy-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 25px 36px;
  background: #ffffff;
  border-radius: 999px;
  font-family: "Rounded M+ 2p", "M PLUS Rounded 2p", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #03A5D0;
  line-height: 36px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 0 0 #E4E4E4;
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}

.picopy-social__btn:hover {
  transform: translateY(6px);
  box-shadow: none;
}

.picopy-social__btn img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.picopy-social__family {
  display: block;
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(260px, 38vw, 500px);
  z-index: 3;
}

.picopy-social__cloud {
  position: absolute;
  bottom: 100px;
  left: 57%;
  width: 130%;
  height: auto;
  display: block;
  max-width: none;
  transform: translateX(-50%) scale(2.6);
  transform-origin: bottom center;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .picopy-social {
    padding-top: clamp(48px, 7vw, 72px);
  }

  .picopy-social__text {
    font-size: 18px;
  }

  .picopy-social__btn {
    font-size: 18px;
    padding: 20px 28px;
  }

  .picopy-social__family {
    width: clamp(240px, 55vw, 420px);
  }
}

@media (min-width: 769px) {
  .picopy-social {
    padding-top: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .picopy-social {
    min-height: 0;
    padding: 44px 16px 88px;
    align-items: center;
    justify-content: flex-start;
  }

  .picopy-social::before {
    display: none;
  }

  .picopy-social::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: #ffffff;
    z-index: 0;
    pointer-events: none;
  }

  .picopy-social__content {
    width: 100%;
    flex: unset;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .picopy-social__text {
    font-size: 18px;
    line-height: 1.8;
  }

  .picopy-social__text--desktop {
    display: none;
  }

  .picopy-social__text--mobile {
    display: block;
    width: min(234px, 100%);
    max-width: 234px;
    text-align: center;
  }

  .picopy-social__buttons {
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }

  .picopy-social__btn {
    font-size: 14px;
    padding: 14px 16px;
    justify-content: center;
    flex: 1 1 0;
    width: calc((100% - 10px) / 2);
    min-width: 0;
    max-width: none;
    gap: 8px;
    line-height: 1.2;
  }

  .picopy-social__btn img {
    width: 22px;
    height: 22px;
  }

  .picopy-social__family {
    position: relative;
    bottom: auto;
    left: auto;
    top: 58px;
    transform: none;
    width: clamp(220px, 76vw, 340px);
    margin: 8px auto -18px;
    z-index: 2;
  }

  .picopy-social__cloud {
    position: absolute;
    bottom: 4px;
    left: 59%;
    width: max(350%, 1380px);
    height: 206px;
    max-width: none;
    object-fit: cover;
    object-position: bottom center;
    transform: translateX(-50%);
    transform-origin: bottom center;
    z-index: 1;
  }
}

/* ── iPad縦向き専用（portrait）────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {

  /* 1画面固定を80vhに緩和してコンテンツに余裕を持たせる */
  .picopy-hero,
  .picopy-about,
  .picopy-family,
  .picopy-intro,
  .picopy-intro--reverse,
  .picopy-card,
  .picopy-otoku,
  .picopy-play,
  .picopy-videos,
  .picopy-schedule,
  .picopy-social {
    min-height: 70vh;
    min-height: 70svh;
    height: auto;
  }

  /* セクションタイトル */
  .picopy-section-title {
    font-size: clamp(44px, 6.5vw, 60px);
    line-height: 1.2;
  }

  /* About */
  .picopy-about {
    padding: 60px 0 40px;
    justify-content: center;
  }
  .picopy-about__btn {
    text-decoration: none;
  }
  .picopy-about__title {
    margin: 40px 0 24px;
  }
  .picopy-about__text p {
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 2;
  }
  .picopy-about__btn {
    font-size: clamp(14px, 1.8vw, 18px);
    padding: clamp(12px, 1.6vw, 18px) clamp(20px, 3.2vw, 46px);
  }

  /* ファミリー */
  .picopy-family__member--1 img,
  .picopy-family__member--5 img {
    width: clamp(190px, 24vw, 270px);
  }
  .picopy-family__member--2 img,
  .picopy-family__member--4 img {
    width: clamp(125px, 15vw, 165px);
  }
  .picopy-family__member--3 img {
    width: clamp(165px, 20vw, 230px);
  }

  /* キャラクター個別 */
  .picopy-intro__character {
    height: clamp(400px, 70svh, 700px);
  }
  .picopy-intro__info {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 2.1;
  }
  .picopy-intro__tags li {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.9;
  }

  /* ゲームコーナー */
  .picopy-play {
    min-height: 50vh;
    min-height: 50svh;
    padding: 48px 0 40px;
  }
  .picopy-play__inner {
    padding-top: 24px;
    margin-top: 0;
  }
  .picopy-play__grid {
    gap: clamp(28px, 3.5vw, 44px);
  }
  .picopy-play__card {
    aspect-ratio: 570 / 360;
  }

  /* イベントスケジュール */
  .picopy-schedule {
    padding: 48px 0 48px;
  }
  .picopy-schedule__inner {
    padding-top: 24px;
    margin-top: 0;
    transform: none;
  }
  .picopy-schedule__text {
    font-size: clamp(18px, 2.2vw, 24px);
  }
  .picopy-schedule__date {
    font-size: clamp(21px, 2.6vw, 28px);
  }
  .picopy-schedule__item {
    padding: 26px 10px;
  }
}

/* ── Scroll-reveal animations ────────────────────────────────── */

.picopy-otoku__title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-otoku.is-visible .picopy-otoku__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.picopy-otoku__card-wrap--left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-otoku.is-visible .picopy-otoku__card-wrap--left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.picopy-otoku__card-wrap--right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-otoku.is-visible .picopy-otoku__card-wrap--right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.picopy-play__title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-play.is-visible .picopy-play__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.picopy-play__card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.picopy-play.is-visible .picopy-play__card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.picopy-play.is-visible .picopy-play__card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.picopy-videos__badge {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-videos.is-visible .picopy-videos__badge {
  opacity: 1;
  transform: translateY(0);
}

.picopy-videos__title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-videos.is-visible .picopy-videos__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.picopy-videos__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-videos.is-visible .picopy-videos__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.picopy-videos.is-visible .picopy-videos__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.picopy-videos.is-visible .picopy-videos__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.picopy-play__kids {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-play.is-visible .picopy-play__kids {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.picopy-videos__kids {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-videos.is-visible .picopy-videos__kids {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.picopy-schedule__badge {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-schedule.is-visible .picopy-schedule__badge {
  opacity: 1;
  transform: translateY(0);
}

.picopy-schedule__title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-schedule.is-visible .picopy-schedule__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.picopy-schedule__item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.picopy-schedule.is-visible .picopy-schedule__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.picopy-schedule.is-visible .picopy-schedule__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}
.picopy-schedule.is-visible .picopy-schedule__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.51s;
}
.picopy-schedule.is-visible .picopy-schedule__item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.64s;
}

/* Mobile cleanup */
@media (max-width: 768px) {
  .picopy-family,
  .picopy-card,
  .picopy-play,
  .picopy-videos,
  .picopy-schedule {
    min-height: 0;
    justify-content: flex-start;
    overflow: hidden;
    padding: clamp(78px, 13vw, 96px) 0 clamp(42px, 8vw, 60px);
  }

  .picopy-family {
    min-height: 590px;
    max-height: none;
    box-sizing: border-box;
    justify-content: flex-start;
    padding: clamp(76px, 12vw, 90px) 0 24px;
  }

  .picopy-card {
    padding: clamp(86px, 13vw, 102px) 0 clamp(42px, 8vw, 60px);
  }

  .picopy-play {
    padding: clamp(96px, 15vw, 116px) 0 clamp(42px, 8vw, 60px);
  }

  .picopy-videos {
    padding: clamp(86px, 14vw, 102px) 0 clamp(42px, 8vw, 60px);
  }

  .picopy-schedule {
    padding: clamp(96px, 15vw, 116px) 0 clamp(42px, 8vw, 60px);
  }

  .picopy-family::before,
  .picopy-card::before,
  .picopy-play::before,
  .picopy-videos::before,
  .picopy-schedule::before {
    top: clamp(20px, 4vw, 28px);
    min-height: 32px;
    max-width: calc(100% - 32px);
    padding: 6px 16px;
    font-size: clamp(13px, 2vw, 15px);
  }

  .picopy-family::before {
    top: 76px;
  }

  .picopy-play::before {
    top: 56px;
  }

  .picopy-videos::before {
    top: 70px;
  }

  .picopy-schedule::before {
    top: 56px;
  }

  .picopy-family__inner,
  .picopy-card__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    width: calc(100% - 32px);
    max-width: 100%;
    transform: none;
  }

  .picopy-family__inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 34px;
  }

  .picopy-family__bg-text,
  .picopy-card__bg-text,
  .picopy-play__bg-text,
  .picopy-videos__bg-text,
  .picopy-schedule__bg-text {
    font-family: var(--picopy-title-font);
    top: -0.22em;
    width: 100%;
    max-width: calc(100vw - 8px);
    padding: 0 10px;
    box-sizing: border-box;
    font-size: clamp(52px, 13.5vw, 140px);
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.06em;
    text-align: center;
    overflow: hidden;
  }

  .picopy-family__bg-text   { font-size: clamp(72px,  22vw, 200px); }
  .picopy-videos__bg-text   { font-size: clamp(80px,  26vw, 230px); }
  .picopy-schedule__bg-text { font-size: clamp(64px,  19vw, 172px); }

  .picopy-family__header,
  .picopy-card__header {
    padding-top: 0;
    gap: 0;
    margin-bottom: 22px;
  }

  .picopy-schedule__badge {
    display: none;
  }

  .picopy-family__header {
    margin-bottom: clamp(12px, 2.2vh, 18px);
  }

  .picopy-family__members {
    gap: clamp(14px, 2.4vh, 20px) clamp(12px, 2vw, 20px);
  }

  .picopy-family__member img {
    width: clamp(88px, 17vw, 122px);
  }

  .picopy-family__member--1 img,
  .picopy-family__member--5 img {
    width: clamp(126px, 25vw, 162px);
  }

  .picopy-family__member--2 img,
  .picopy-family__member--4 img {
    width: clamp(80px, 15vw, 108px);
  }

  .picopy-family__member--3 img {
    width: clamp(112px, 21vw, 150px);
  }

  .picopy-card::before {
    content: "ピコピーも持ってる";
    background: #03a5d0;
    color: #ffffff;
    top: 48px;
  }

  .picopy-play::before {
    content: "一緒に遊ぼう！";
  }

  .picopy-card__eyebrow {
    display: none;
  }

  .picopy-videos__badge {
    display: none;
  }

  .picopy-card__inner,
  .picopy-play__inner,
  .picopy-videos__inner,
  .picopy-schedule__inner {
    padding-top: 0;
  }

  .picopy-play__inner {
    margin-top: 14px;
  }

  .picopy-videos__inner {
    margin-top: 8px;
  }

  .picopy-schedule__inner {
    margin-top: 14px;
  }

  .picopy-card__inner {
    gap: 20px;
    margin-top: 6px;
  }

  .picopy-family__title,
  .picopy-card__title,
  .picopy-play__title,
  .picopy-videos__title,
  .picopy-schedule__title {
    margin-top: 0;
    padding: 0 8px;
    box-sizing: border-box;
    font-size: clamp(26px, 5.2vw, 40px);
    line-height: 1.16;
  }

  .picopy-videos__title {
    margin-top: 24px;
  }

  .picopy-play__header {
    margin-bottom: 24px;
    padding-top: 0;
  }

  .picopy-videos__grid,
  .picopy-schedule__list {
    margin-top: 24px;
  }

  .picopy-card__showcase {
    gap: 18px;
  }

  .picopy-card__features {
    width: min(100%, 340px);
    min-height: 0;
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  .picopy-family,
  .picopy-card,
  .picopy-play,
  .picopy-videos,
  .picopy-schedule {
    padding: 72px 0 36px;
  }

  .picopy-family {
    min-height: auto;
    max-height: none;
    padding: 72px 0 18px;
  }

  .picopy-card {
    padding: 86px 0 36px;
  }

  .picopy-play {
    padding: 94px 0 36px;
  }

  .picopy-videos {
    padding: 86px 0 36px;
  }

  .picopy-schedule {
    padding: 94px 0 36px;
  }

  .picopy-family__inner {
    margin-top: 42px;
  }

  .picopy-family::before,
  .picopy-card::before,
  .picopy-play::before,
  .picopy-videos::before,
  .picopy-schedule::before {
    top: 18px;
    min-height: 30px;
    max-width: calc(100% - 24px);
    padding: 6px 14px;
    font-size: 12px;
  }

  .picopy-play__inner {
    margin-top: 18px;
  }

  .picopy-family::before {
    top: 72px;
  }

  .picopy-card::before {
    top: 46px;
  }

  .picopy-play::before {
    content: "一緒に遊ぼう！";
    top: 54px;
  }

  .picopy-videos::before {
    top: 68px;
  }

  .picopy-schedule::before {
    top: 54px;
  }

  .picopy-family__bg-text,
  .picopy-card__bg-text,
  .picopy-play__bg-text,
  .picopy-videos__bg-text,
  .picopy-schedule__bg-text {
    font-family: var(--picopy-title-font);
    top: -0.22em;
    max-width: calc(100vw - 4px);
    padding: 0 8px;
    box-sizing: border-box;
    font-size: clamp(36px, 15vw, 72px);
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.06em;
    text-align: center;
    overflow: hidden;
  }

  .picopy-family__bg-text   { font-size: clamp(42px, 22vw, 96px);  }
  .picopy-videos__bg-text   { font-size: clamp(46px, 26vw, 114px); }
  .picopy-schedule__bg-text { font-size: clamp(38px, 19vw, 84px);  }

  .picopy-family__header,
  .picopy-card__header {
    margin-bottom: 18px;
  }

  .picopy-play__inner {
    margin-top: 18px;
  }

  .picopy-videos__badge {
    display: none;
  }

  .picopy-videos__inner {
    margin-top: 8px;
  }

  .picopy-schedule__inner {
    margin-top: 18px;
  }

  .picopy-card__inner {
    margin-top: 6px;
  }

  .picopy-family__header {
    margin-bottom: 12px;
  }

  .picopy-family__members {
    position: relative;
    display: block;
    width: min(calc(100vw - 12px), 424px);
    height: 500px;
    max-width: min(calc(100vw - 12px), 424px);
    margin: 0 auto;
    top: -20px;
    left: -8px;
  }

  .picopy-family__member {
    position: absolute;
    gap: 0;
    width: auto;
    align-items: center;
    text-align: center;
  }

  .picopy-family__member::after {
    margin-top: 4px;
    font-family: var(--picopy-body-font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    color: #03a5d0;
    white-space: nowrap;
  }

  .picopy-family__member--1 {
    left: -18px;
    bottom: 30px;
    width: 193px;
    margin-right: 0;
    z-index: 4;
  }

  .picopy-family__member--1::after { content: "ピピママ"; }

  .picopy-family__member--1 img {
    width: 193px;
    height: 167.6px;
  }

  .picopy-family__member--2 {
    left: -65px;
    top: 60px;
    width: 245px;
    z-index: 2;
  }

  .picopy-family__member--2::after { content: "ピコタ"; }

  .picopy-family__member--2 img {
    width: 245px;
    height: 196.7px;
    opacity: 1;
    transform: rotate(0deg);
  }

  .picopy-family__member--3 {
    left: calc(50% - 77px);
    top: 10px;
    width: 153px;
    z-index: 3;
  }

  .picopy-family__member--3::after { content: "ピコピー"; }

  .picopy-family__member--3 img {
    width: 153px;
    height: 175px;
  }

  .picopy-family__member--2,
  .picopy-family__member--4 {
    margin-bottom: 0;
  }

  .picopy-family__member--4 {
    right: -55px;
    top: 60px;
    width: 221px;
    z-index: 2;
  }

  .picopy-family__member--4::after { content: "ピコリ"; }

  .picopy-family__member--4 img {
    width: 221px;
    height: 183px;
  }

  .picopy-family__member--1 {
    margin-right: 0;
  }

  .picopy-family__member--5 {
    right: -10px;
    bottom: 30px;
    width: 200px;
    margin-left: 0;
    margin-top: 0;
    z-index: 4;
  }

  .picopy-family__member--5::after { content: "ピピパパ"; }

  .picopy-family__member--5 img {
    width: 200px;
    height: 194.2px;
  }

  .picopy-family__member img {
    display: block;
    object-fit: contain;
  }

  .picopy-family__title,
  .picopy-card__title,
  .picopy-play__title,
  .picopy-videos__title,
  .picopy-schedule__title {
    padding: 0 4px;
    font-size: clamp(22px, 7.4vw, 32px);
  }

  .picopy-videos__title {
    margin-top: 24px;
  }

  .picopy-play__header {
    margin-bottom: 20px;
  }

  .picopy-videos__grid,
  .picopy-schedule__list {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .picopy-intro,
  .picopy-intro--reverse {
    --picopy-intro-character-height: clamp(224px, 62vw, 290px);
    --picopy-intro-character-max-width: min(100%, 236px);
    --picopy-intro-bubble-width: clamp(95px, 26.4vw, 119px);
    --picopy-intro-bubble-top: 2px;
    --picopy-intro-bubble-offset: 12px;
    --picopy-intro-info-width: min(100%, 250px);
    min-height: 100vh;
    min-height: 100svh;
    padding: 24px 0 28px;
    box-sizing: border-box;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }

  .picopy-intro__left,
  .picopy-intro--reverse .picopy-intro__left {
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .picopy-intro__character-wrap,
  .picopy-intro--reverse .picopy-intro__character-wrap {
    width: min(100%, 236px);
    min-height: clamp(236px, 64vw, 300px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: none;
  }

  .picopy-intro__character-wrap.is-visible,
  .picopy-intro--reverse .picopy-intro__character-wrap.is-visible {
    transform: none;
  }

  .picopy-intro[aria-labelledby="picopy-intro-title"] .picopy-intro__character-wrap {
    width: min(calc(100vw - 12px), 488px);
    min-height: auto;
  }

  .picopy-intro__character {
    margin: 0 auto;
  }

  .picopy-intro[aria-labelledby="picopy-intro-title"] .picopy-intro__character {
    width: 257px;
    height: auto;
    max-width: none;
    opacity: 1;
    transform: rotate(0deg);
  }

  .picopy-intro__bubble {
    top: var(--picopy-intro-bubble-top);
    left: var(--picopy-intro-bubble-offset);
  }

  .picopy-intro[aria-labelledby="picopy-intro-title"] .picopy-intro__bubble {
    width: 110px;
    top: 0px;
    left: 10px;
  }

  .picopy-intro--reverse .picopy-intro__character-wrap,
  .picopy-intro--mama .picopy-intro__character-wrap,
  .picopy-intro--pikoта .picopy-intro__character-wrap {
    width: min(calc(100vw - 12px), 488px);
    min-height: auto;
  }

  .picopy-intro[aria-labelledby="picopy-pikori-title"] .picopy-intro__character,
  .picopy-intro--pikoта .picopy-intro__character {
    width: 257px;
    height: auto;
    max-width: none;
    opacity: 1;
    transform: rotate(0deg);
  }

  .picopy-intro[aria-labelledby="picopy-papapa-title"] .picopy-intro__character-wrap,
  .picopy-intro[aria-labelledby="picopy-mama-title"] .picopy-intro__character-wrap {
    width: min(calc(100vw - 12px), 420px);
    min-height: auto;
  }

  .picopy-intro[aria-labelledby="picopy-papapa-title"] .picopy-intro__character,
  .picopy-intro[aria-labelledby="picopy-mama-title"] .picopy-intro__character {
    width: 300px;
    height: auto;
    max-width: 100%;
    opacity: 1;
    transform: rotate(0deg);
  }

  .picopy-intro[aria-labelledby="picopy-papapa-title"] .picopy-intro__bubble--right {
    top: 0;
    right: 0;
  }

  .picopy-intro[aria-labelledby="picopy-mama-title"] .picopy-intro__bubble {
    top: 25px;
    left: 20px;
  }

  .picopy-intro--reverse .picopy-intro__bubble,
  .picopy-intro--mama .picopy-intro__bubble,
  .picopy-intro--pikoта .picopy-intro__bubble {
    width: 110px;
    top: 80px;
  }

  .picopy-intro--mama .picopy-intro__bubble,
  .picopy-intro--pikoта .picopy-intro__bubble {
    top: 20px;
    left: 25px;
  }

  .picopy-intro--reverse .picopy-intro__bubble--right {
    left: auto;
    top: 25px;
    right: 20px;
  }

  .picopy-intro__bubble--right {
    right: var(--picopy-intro-bubble-offset);
    left: auto;
  }

  .picopy-intro__right,
  .picopy-intro--reverse .picopy-intro__right {
    width: min(100%, 250px);
    max-width: 250px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: none;
  }

  .picopy-intro__content,
  .picopy-intro--reverse .picopy-intro__content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .picopy-intro__title,
  .picopy-intro--reverse .picopy-intro__title,
  .picopy-intro__tags,
  .picopy-intro--reverse .picopy-intro__tags,
  .picopy-intro__info,
  .picopy-intro--reverse .picopy-intro__info {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .picopy-intro__title,
  .picopy-intro--reverse .picopy-intro__title {
    margin: 0 0 8px;
    font-family: var(--picopy-rounded-font);
    font-weight: 900;
    font-style: normal;
    font-size: 40px;
    text-align: left;
    line-height: 1;
    letter-spacing: 0;
  }

  .picopy-intro__tags,
  .picopy-intro--reverse .picopy-intro__tags {
    margin: 0 0 10px;
    gap: 0;
    align-items: flex-start;
  }

  .picopy-intro__tags li {
    font-size: 14px;
    line-height: 23px;
  }

  .picopy-intro__info,
  .picopy-intro--reverse .picopy-intro__info {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 23px;
  }

  .picopy-intro__row {
    width: 100%;
    line-height: 1.45;
  }

  .picopy-intro__label,
  .picopy-intro__colon,
  .picopy-intro__value,
  .picopy-intro__lead {
    padding-bottom: 4px;
    line-height: inherit;
  }

  .picopy-intro__label {
    padding-right: 2px;
  }

  .picopy-intro__colon {
    padding-right: 4px;
  }
}

@media (max-width: 640px) {
  :root {
    --picopy-mobile-content-width: 320px;
  }

  .picopy-otoku__title {
    font-size: clamp(20px, 6.4vw, 28px);
    white-space: nowrap;
    letter-spacing: -0.02em;
    margin: 2rem 0;
  }

  .picopy-about__row,
  .picopy-card__showcase,
  .picopy-card__features,
  .picopy-otoku__content,
  .picopy-play__grid,
  .picopy-videos__grid {
    width: min(100%, var(--picopy-mobile-content-width));
    max-width: var(--picopy-mobile-content-width);
    margin-left: auto;
    margin-right: auto;
  }

  .picopy-schedule__list,
  .picopy-schedule__btn {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .picopy-about__text,
  .picopy-card__desc,
  .picopy-card__features,
  .picopy-videos__item,
  .picopy-play__card,
  .picopy-schedule__item,
  .picopy-schedule__text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .picopy-about__text-keep {
    display: inline;
    white-space: normal;
    line-height: 2;
  }

  .picopy-intro__right,
  .picopy-intro--reverse .picopy-intro__right {
    width: min(100%, var(--picopy-mobile-content-width));
    max-width: var(--picopy-mobile-content-width);
  }

  .picopy-intro__content,
  .picopy-intro--reverse .picopy-intro__content,
  .picopy-intro__info,
  .picopy-intro--reverse .picopy-intro__info,
  .picopy-intro__row,
  .picopy-intro__title,
  .picopy-intro--reverse .picopy-intro__title,
  .picopy-intro__tags,
  .picopy-intro--reverse .picopy-intro__tags {
    width: 100%;
    max-width: 100%;
  }

  .picopy-otoku__card-wrap--left,
  .picopy-otoku__card-wrap--right {
    width: min(100%, 280px);
  }

  .picopy-otoku__card-box {
    width: 100%;
  }

  .picopy-card__desc {
    font-family: var(--picopy-rounded-font);
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
  }
}

body{
  margin: 0;
}