@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&family=Mochiy+Pop+One&family=Outfit:wght@500;700;800&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --bg-base: #fff9fc;
  --bg-soft: #fff3fa;
  --bg-card: #ffffff;
  --ink-strong: #28163a;
  --ink: #4a3d5d;
  --ink-soft: #7d6f95;
  --line: rgba(255, 121, 189, 0.24);
  --primary: #ff5fae;
  --primary-strong: #c91f7c;
  --blue: #70d8ff;
  --shadow-soft: 0 10px 26px rgba(99, 53, 111, 0.1);
  --shadow-strong: 0 24px 56px rgba(67, 33, 88, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1140px;
  --hero-media-shift: 0px;
  --hero-media-scale: 1.06;
  --hero-text-shift: 0px;
  --hero-text-opacity: 1;
  --hero-band-shift: 0px;
  --hero-logo-reveal: 0;
  --hero-logo-swap: 0;
  --hero-logo-shift: 0px;
  --mobile-logo-reveal: 0;
  --mobile-logo-swap: 0;
  --section-parallax: 0px;
  --profile-parallax: 0px;
  --mobile-header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-strong);
  background: radial-gradient(circle at 15% 6%, #ffe5f6 0%, rgba(255, 229, 246, 0) 26%), radial-gradient(circle at 88% 10%, #def6ff 0%, rgba(222, 246, 255, 0) 24%), var(--bg-base);
  font-family: "Zen Kaku Gothic New", "M PLUS Rounded 1c", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
}

body.mobile-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

picture {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 138, 198, 0.28);
  background: rgba(255, 253, 255, 0.84);
  backdrop-filter: blur(14px);
  transition: transform .28s ease;
  will-change: transform;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(255, 95, 174, 0.2);
}

.nav {
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.nav a:hover {
  border-color: rgba(255, 110, 180, 0.32);
  background: rgba(255, 225, 242, 0.68);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(132deg, #ff5fae 0%, #ff90ca 44%, #73d8ff 100%);
  box-shadow: 0 10px 22px rgba(255, 95, 174, 0.26);
}

.btn-secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 112, 180, 0.35);
}

.btn-small {
  padding: 9px 14px;
  font-size: 12px;
}

.text-link {
  color: var(--primary-strong);
  font-weight: 700;
}

.footer-links a:hover,
.text-link:hover {
  opacity: .76;
}

.back-to-top {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(14px, 2.2vw, 26px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 146px;
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  background: linear-gradient(130deg, #ff68b4, #7fd9ff);
  box-shadow: 0 12px 24px rgba(94, 52, 116, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, filter .2s ease;
}

.back-to-top[hidden] {
  display: none !important;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  filter: saturate(1.08);
}

.back-to-top-icon {
  font-size: 11px;
  line-height: 1;
}

.back-to-top-text {
  font-size: 12px;
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(122, 216, 255, 0.95);
  outline-offset: 2px;
}

.mobile-fab-menu,
.mobile-menu-overlay {
  display: none;
}

.hero-top {
  position: relative;
  min-height: 152vh;
  background: #f285ab;
}

.site-intro-splash {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
  animation: heroIntroZoom 1.95s cubic-bezier(.22, .78, .24, 1) forwards;
}

.site-intro-splash picture,
.site-intro-splash img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-intro-splash img {
  object-fit: cover;
  object-position: center center;
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom-left-radius: 58% 18%;
  border-bottom-right-radius: 58% 18%;
}

.hero-media,
.hero-intro-layer,
.hero-overlay,
.hero-bottom-wave {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  opacity: 1;
  transform: translate3d(0, var(--hero-media-shift), 0) scale(var(--hero-media-scale));
  transform-origin: center center;
  will-change: transform;
}

.hero-media picture,
.hero-intro-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-intro-layer {
  z-index: 10;
  pointer-events: none;
  animation: heroIntroZoom 1.95s cubic-bezier(.22, .78, .24, 1) forwards;
}

.hero-intro-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: 1;
  opacity: 1;
  background: linear-gradient(180deg, rgba(15, 11, 29, 0.44) 0%, rgba(14, 10, 29, 0.56) 64%, rgba(14, 10, 29, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  opacity: var(--hero-text-opacity);
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin-top: 42px;
  padding-inline: 10px;
  transform: translate3d(0, var(--hero-text-shift), 0);
  will-change: transform;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(0, 0, 0, 0.2);
  font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  margin: 18px 0 8px;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2.1rem, 6vw, 5.4rem);
  line-height: 1.16;
  font-weight: 800;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(18px, 2.7vw, 38px);
  font-weight: 700;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-subcopy {
  margin: 10px auto 0;
  max-width: 720px;
  color: #ffe4f4;
  font-size: clamp(13px, 1.4vw, 21px);
  font-weight: 600;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-bottom-wave {
  inset: auto auto -2px 50%;
  z-index: 2;
  width: min(2300px, 172vw);
  height: clamp(190px, 23vw, 300px);
  transform: translate3d(-50%, calc(42% + var(--hero-band-shift)), 0);
  border-radius: 50%;
  background: radial-gradient(112% 96% at 50% 30%, rgba(255, 203, 228, 0.72) 0%, rgba(252, 171, 208, 0.9) 45%, rgba(244, 126, 174, 0.98) 76%, rgba(242, 114, 166, 1) 100%);
  box-shadow: inset 0 20px 44px rgba(255, 231, 243, 0.4), 0 -6px 0 rgba(255, 188, 220, 0.44);
}

.hero-wave-logo {
  position: absolute;
  left: 50%;
  top: clamp(18px, 2.6vw, 42px);
  width: clamp(280px, 30vw, 560px);
  aspect-ratio: 1199 / 523;
  transform: translate3d(-50%, var(--hero-logo-shift), 0) scale(calc(0.94 + (0.08 * var(--hero-logo-reveal))));
  opacity: var(--hero-logo-reveal);
  filter: drop-shadow(0 10px 18px rgba(163, 34, 96, 0.23));
  pointer-events: none;
}

.hero-wave-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-wave-logo-blue {
  opacity: calc((1 - var(--hero-logo-swap)) * var(--hero-logo-reveal));
}

.hero-wave-logo-pink {
  opacity: calc(var(--hero-logo-swap) * var(--hero-logo-reveal));
}

.hero-mobile-logo-gap {
  display: none;
}

.hero-mobile-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-mobile-logo-inner {
  position: relative;
  width: clamp(248px, 64vw, 390px);
  aspect-ratio: 1199 / 523;
  opacity: var(--mobile-logo-reveal);
  transform: translate3d(0, calc(16px - (16px * var(--mobile-logo-reveal))), 0) scale(calc(0.93 + (0.07 * var(--mobile-logo-reveal))));
  filter: drop-shadow(0 10px 16px rgba(163, 34, 96, 0.22));
  pointer-events: none;
}

.hero-mobile-logo-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-mobile-logo-blue {
  opacity: calc((1 - var(--mobile-logo-swap)) * var(--mobile-logo-reveal));
}

.hero-mobile-logo-pink {
  opacity: calc(var(--mobile-logo-swap) * var(--mobile-logo-reveal));
}

@keyframes heroIntroZoom {
  0% {
    opacity: 1;
    transform: scale(1.24);
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
    visibility: hidden;
  }
}

.home-main {
  padding-bottom: 20px;
}

.home-page #schedule,
.home-page #shorts,
.home-page #news,
.home-page #goods,
.home-page #fanclub,
.home-page #profile-link,
.home-page #links {
  scroll-margin-top: 96px;
}

.home-section {
  position: relative;
  padding: 72px 0;
}

.section--plain {
  background: transparent;
}

.section--art {
  --section-parallax: 0px;
  background: #1f1634;
  overflow: hidden;
}

.section--art::before,
.section--art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.section--art::before {
  background: var(--section-art) center / cover no-repeat;
  opacity: 0.85;
  transform: translate3d(0, var(--section-parallax), 0) scale(1.08);
  transform-origin: center center;
  transition: background-image .25s ease;
  will-change: transform;
}

.section--art::after {
  background: linear-gradient(180deg, rgba(255, 215, 237, 0.84), rgba(255, 215, 237, 0.84));
}

.home-page .home-section.section--art:not(.profile-link-section)::before {
  opacity: 0.98;
  background-position: center 42%;
}

.home-page .home-section.section--art:not(.profile-link-section)::after {
  background: linear-gradient(180deg, rgba(255, 215, 237, 0.34), rgba(255, 215, 237, 0.43));
}

.home-page .home-section.section--art:not(.profile-link-section) .section-wrap {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 172, 214, 0.33);
  box-shadow: 0 12px 28px rgba(80, 44, 96, 0.14);
  backdrop-filter: blur(5px);
}

.home-page #shorts.section--art {
  --section-art: url('/assets/img/design2/section-shorts.png');
  --section-art: image-set(
    url('/assets/img/optimized/design2/section-shorts-1366.avif') type('image/avif'),
    url('/assets/img/optimized/design2/section-shorts-1366.webp') type('image/webp'),
    url('/assets/img/design2/section-shorts.png') type('image/png')
  );
}

.profile-link-section {
  --section-art: url('/assets/img/design2/profile-link-bg-a.jpg');
}

.profile-link-section.is-hovered-bg {
  --section-art: url('/assets/img/design2/profile-link-bg-b.jpg');
}

.section-wrap {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 36px);
}

.section-head {
  margin-bottom: 20px;
}

.section-head,
.news-simple-list,
.news-actions,
.goods-grid,
.goods-store-action,
.support-grid,
.links-grid-two,
.profile-link-glass {
  transform: translate3d(0, var(--depth-shift, 0px), 0);
  will-change: transform;
}

.reveal-float {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.986);
  filter: blur(1.2px);
  transition: opacity .75s cubic-bezier(.2, .82, .25, 1), transform .75s cubic-bezier(.2, .82, .25, 1), filter .75s ease;
  transition-delay: var(--float-delay, 0ms);
}

.reveal-float.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

.section-label,
.small-label {
  margin: 0 0 8px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
}

.section-head h2,
.section-head h1 {
  margin: 0 0 6px;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  line-height: 1.25;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.section-status {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.section-status.warn {
  color: #b45309;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.stack {
  display: grid;
  gap: 12px;
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(255, 242, 250, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 9px 22px rgba(77, 45, 97, 0.1);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.36rem;
}

.card p {
  margin: 0;
  color: var(--ink);
}

.schedule-card-top,
.news-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.meta-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c7bfd6;
}

.flick-dots {
  display: none;
}

.flick-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(205, 144, 184, 0.56);
  padding: 0;
  cursor: pointer;
  transition: width .28s ease, background .28s ease, transform .2s ease, box-shadow .28s ease;
}

.flick-dot:hover {
  transform: translateY(-1px);
}

.flick-dot.is-active {
  width: 26px;
  background: linear-gradient(120deg, #ff6eb6, #73d8ff);
  box-shadow: 0 4px 12px rgba(228, 98, 170, 0.36);
}

.flick-dot:focus-visible {
  outline: 2px solid rgba(122, 216, 255, 0.9);
  outline-offset: 2px;
}

.flick-dots[hidden] {
  display: none !important;
}

.type-pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe8f5;
  color: #b11567;
  font-size: 11px;
}

.schedule-card {
  padding: 14px;
}

.schedule-card.is-live {
  border: 1px solid rgba(255, 106, 167, 0.64);
  box-shadow: 0 14px 28px rgba(255, 83, 161, 0.2), 0 8px 16px rgba(89, 46, 111, 0.14);
}

.schedule-card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.schedule-card-link:focus-visible {
  outline: 2px solid rgba(122, 216, 255, 0.9);
  outline-offset: 2px;
  border-radius: 14px;
}

.schedule-live-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(130deg, #ff2c88, #ff84c4);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 14px rgba(255, 57, 145, 0.28);
}

.schedule-card-thumb-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8eaff, #e4f5ff);
}

.schedule-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .36s ease, filter .36s ease;
}

.schedule-card-thumb-fallback {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 18% 20%, rgba(255, 180, 220, 0.5), rgba(255, 180, 220, 0) 50%), linear-gradient(145deg, #ffe2f3, #d8f2ff);
}

.schedule-card-link:hover .schedule-card-thumb {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.schedule-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 128px;
}

.schedule-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
}

.schedule-card-meta > span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.schedule-date-label {
  margin: 0;
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
}

.schedule-time-label {
  color: var(--ink-soft);
}

.schedule-meta-note {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 135, 199, 0.38);
  background: rgba(255, 232, 245, 0.72);
  color: var(--primary-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.schedule-card-title {
  margin: 0;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.5;
  letter-spacing: .01em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: calc(1.5em * 3);
  transition: color .22s ease;
}

.schedule-card-link:hover .schedule-card-title {
  color: var(--primary-strong);
}

.schedule-card-cta {
  margin-top: auto;
  font-size: 11px;
  color: var(--ink-soft);
}

.short-card img {
  border-radius: 14px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #edf8ff;
}

.short-card-info {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.short-card-title {
  font-weight: 700;
}

.short-card-time {
  font-size: 11px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.news-store-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  align-items: start;
  gap: 16px;
}

.news-simple-list {
  display: grid;
  gap: 12px;
}

.news-simple-card {
  padding: 14px 18px;
}

.news-simple-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-simple-item {
  display: grid;
  grid-template-columns: minmax(94px, 108px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(216, 196, 232, 0.56);
}

.news-simple-item:last-child {
  border-bottom: none;
}

.news-simple-date {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 213, 234, 0.58);
  color: #9a2a65;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-simple-link {
  color: var(--ink-strong);
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: color .2s ease;
}

.news-simple-link:hover {
  color: var(--primary-strong);
}

.news-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.btn-news-all {
  color: #fff;
  background: linear-gradient(130deg, #f094c9, #e18fcf);
  border-color: transparent;
}

.store-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 100%;
}

.support-grid .card {
  min-height: 100%;
}

.support-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.membership-card::before {
  background: linear-gradient(90deg, #ff5fae, #ff92ca);
}

.raidori-card::before {
  background: linear-gradient(90deg, #60cfff, #7ce0ff);
}

.wishlist-card::before {
  background: linear-gradient(90deg, #ffc969, #ff79bc);
}

.wishlist-card {
  background: radial-gradient(circle at 88% 12%, rgba(255, 207, 95, 0.34), rgba(255, 207, 95, 0) 35%), radial-gradient(circle at 12% 84%, rgba(128, 220, 255, 0.26), rgba(128, 220, 255, 0) 34%), linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(255, 239, 247, 0.9));
}

.wishlist-card .btn {
  margin-top: auto;
}

.support-card .plain-list {
  margin: 2px 0 0;
}

.support-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.wishlist-copy {
  display: grid;
  gap: 8px;
}

.wishlist-copy p {
  margin: 0;
}

.btn-membership {
  color: #fff;
  background: linear-gradient(130deg, #ff5fae, #ff8dc8);
  border-color: transparent;
}

.btn-fanclub {
  color: #fff;
  background: linear-gradient(130deg, #54bfff, #79dfff);
  border-color: transparent;
}

.btn-wishlist {
  color: #fff;
  background: linear-gradient(132deg, #ffb148, #ff78bc);
  border-color: transparent;
}

.goods-store-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

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

.goods-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  display: grid;
  gap: 10px;
  justify-items: center;
  box-shadow: 0 8px 18px rgba(74, 44, 94, 0.09);
  transition: transform .2s ease, box-shadow .2s ease;
}

.goods-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(74, 44, 94, 0.15);
}

.goods-item img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-inline: auto;
}

.goods-item picture {
  width: 100%;
  display: grid;
  place-items: center;
}

.goods-item span {
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 700;
}

.btn-goods-store {
  min-width: min(420px, 100%);
  padding: 10px 26px;
  color: #fff;
  background: linear-gradient(130deg, #ff77b7, #ff96cb);
  border-color: transparent;
}

.profile-link-panel {
  --profile-parallax: 0px;
  position: relative;
  min-height: clamp(280px, 31vw, 360px);
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(14px, 2.8vw, 24px);
  box-shadow: 0 12px 24px rgba(77, 45, 97, 0.12);
  isolation: isolate;
}

.profile-link-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(102deg, rgba(25, 15, 44, 0.58) 0%, rgba(31, 19, 50, 0.24) 52%, rgba(31, 19, 50, 0.45) 100%);
}

.profile-link-bg {
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 24%;
  transform: translate3d(0, var(--profile-parallax), 0) scale(1.08);
  transform-origin: center center;
  transition: opacity .32s ease, transform .4s ease;
  will-change: transform, opacity;
}

.profile-link-bg-default {
  background-image: url('/assets/img/design2/profile-link-bg-a.jpg');
  opacity: 1;
}

.profile-link-bg-hover {
  background-image: url('/assets/img/design2/profile-link-bg-b.jpg');
  opacity: 0;
}

.profile-link-glass {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.profile-link-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  color: #fff;
  background: linear-gradient(132deg, #ff5fae 0%, #ff8dc8 48%, #75d8ff 100%);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(255, 95, 174, 0.28);
}

.profile-link-panel.is-hovered .profile-link-bg-default {
  opacity: 0;
  transform: translate3d(0, var(--profile-parallax), 0) scale(1.12);
}

.profile-link-panel.is-hovered .profile-link-bg-hover {
  opacity: 1;
  transform: translate3d(0, var(--profile-parallax), 0) scale(1.12);
}

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

.plain-list,
.guideline-list {
  margin: 12px 0 18px;
  padding-left: 1.2rem;
  color: var(--ink);
}

.guideline-list {
  margin: 0;
}

.guideline-list .text-link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nested-list {
  margin-top: 8px;
}

.guideline-block p {
  margin: 8px 0;
  color: var(--ink);
}

.news-archive-stack {
  display: grid;
  gap: 14px;
}

.news-archive-card {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.news-archive-card h2 {
  margin: 4px 0 8px;
  font-size: 1.2rem;
}

.news-archive-content {
  min-width: 0;
}

.news-archive-thumb-link {
  display: block;
  text-decoration: none;
}

.news-archive-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(219, 198, 232, 0.62);
  background: #fff;
}

.news-archive-thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: .08em;
  color: #a74a82;
  background: linear-gradient(135deg, #ffe4f3, #deefff);
}

.news-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffe8f5;
  color: #b11567;
  font-size: 11px;
  font-weight: 700;
}

.news-archive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-detail-thumb {
  margin: 0 0 14px;
}

.news-detail-thumb img {
  width: 100%;
  max-height: min(64vh, 560px);
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(219, 198, 232, 0.62);
  background: #fff;
}

.news-detail-body {
  font-size: clamp(1.03rem, 0.98rem + 0.24vw, 1.12rem);
  line-height: 1.9;
  color: var(--ink-strong);
  min-width: 0;
  overflow-wrap: anywhere;
}

.news-detail-body p {
  margin: 0;
}

.news-detail-body p + p {
  margin-top: 1.1em;
}

.news-detail-body p,
.news-detail-body li {
  overflow-wrap: anywhere;
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
  margin: 1.2em 0 0.45em;
  line-height: 1.45;
}

.news-detail-body ul,
.news-detail-body ol {
  margin: 0.7em 0;
  padding-left: 1.25em;
}

.news-detail-body li + li {
  margin-top: 0.35em;
}

.news-detail-body img {
  max-width: 100%;
  max-height: min(58vh, 520px);
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.news-detail-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}

.news-detail-main {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.news-detail-sidebar {
  position: sticky;
  top: 92px;
  padding: 16px;
}

.news-detail-sidebar h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.news-detail-month-dialog {
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(219, 198, 232, 0.62);
  background: rgba(255, 251, 254, 0.94);
}

.news-detail-month-dialog-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-strong);
}

.news-detail-month-select {
  appearance: none;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 126, 194, 0.34);
  border-radius: 10px;
  background: rgba(255, 241, 250, 0.9);
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.news-detail-month-select:focus-visible {
  outline: 2px solid rgba(122, 216, 255, 0.9);
  outline-offset: 2px;
}

.news-detail-month-sections {
  display: grid;
  gap: 10px;
}

.news-detail-month {
  margin-top: 0;
  border: 1px solid rgba(219, 198, 232, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  scroll-margin-top: 92px;
}

.news-detail-month summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-strong);
  background: rgba(255, 239, 247, 0.68);
}

.news-detail-month summary::-webkit-details-marker {
  display: none;
}

.news-detail-month ul {
  margin: 0;
  padding: 8px;
  list-style: none;
  display: grid;
  gap: 6px;
  max-height: 290px;
  overflow: auto;
}

.news-detail-archive-link {
  display: grid;
  gap: 3px;
  padding: 8px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}

.news-detail-archive-link:hover {
  background: rgba(255, 226, 242, 0.74);
  color: var(--primary-strong);
}

.news-detail-archive-link.is-current {
  background: linear-gradient(125deg, rgba(255, 123, 187, 0.2), rgba(120, 219, 255, 0.2));
  border: 1px solid rgba(255, 126, 194, 0.32);
}

.news-detail-archive-date {
  font-size: 11px;
  color: var(--ink-soft);
}

.news-detail-archive-title {
  font-size: 13px;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.news-prev-next-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(219, 198, 232, 0.62);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(252, 241, 251, 0.82));
  min-height: 96px;
  text-decoration: none;
  color: var(--ink-strong);
}

.news-prev-next-item:hover {
  border-color: rgba(255, 126, 194, 0.5);
}

.news-prev-next-item.is-disabled {
  opacity: 0.52;
  pointer-events: none;
}

.news-prev-next-label {
  font-size: 11px;
  color: var(--ink-soft);
}

.news-prev-next-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-detail-tail-links {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-simple-link,
.news-archive-card .text-link,
.news-detail-body a {
  color: #c61f79;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: .2em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-simple-link:hover,
.news-archive-card .text-link:hover,
.news-detail-body a:hover {
  color: #9f0f5f;
}

.section {
  padding: 70px 0;
}

.section > .container {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 34px);
}

.profile-page {
  background: radial-gradient(circle at 84% 8%, rgba(155, 232, 255, 0.46), rgba(155, 232, 255, 0) 26%), radial-gradient(circle at 10% 6%, rgba(255, 191, 228, 0.52), rgba(255, 191, 228, 0) 28%), #fff8fd;
}

.profile-main {
  padding-bottom: 20px;
}

.profile-hero {
  --section-parallax: 0px;
  position: relative;
  overflow: hidden;
  background: #1f1734;
}

.profile-hero-bg,
.profile-hero-overlay {
  position: absolute;
  inset: 0;
}

.profile-hero-bg {
  background: url('/assets/img/design2/profile-hero-main.jpg') center / cover no-repeat;
  opacity: 0.85;
  transform: translate3d(0, var(--section-parallax), 0) scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

.profile-hero-overlay {
  background: linear-gradient(120deg, rgba(20, 12, 41, 0.8), rgba(20, 12, 41, 0.56));
}

.profile-hero-mobile-character {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(36vw, 470px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.profile-hero-mobile-character img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(16, 9, 30, 0.34));
}

.profile-hero-mobile-character picture {
  display: block;
}

.profile-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 70px 0 30px;
}

.profile-hero-copy {
  color: #fff;
}

.profile-hero-copy h1 {
  margin: 8px 0;
  font-family: "Mochiy Pop One", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.2;
}

.profile-subtitle {
  margin: 0;
  color: #ffd9ef;
  font-weight: 700;
}

.profile-hero-copy p {
  margin: 10px 0 0;
}

.profile-chip-grid {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.profile-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-chip-row span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 198, 0.9);
  background: rgba(255, 224, 241, 0.96);
  color: #4f1f41;
  box-shadow: 0 2px 8px rgba(68, 20, 58, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.profile-hero-visual {
  display: flex;
  justify-content: center;
}

.profile-hero-visual img {
  width: min(450px, 100%);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(14, 8, 28, 0.42));
}

.profile-section {
  position: relative;
  padding: 62px 0;
}

.profile-section.section--art {
  overflow: hidden;
}

.profile-section.section--art::before,
.profile-section.section--art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.profile-section.section--art::before {
  background: var(--section-art) center / cover no-repeat;
}

.profile-section.section--art::after {
  background: linear-gradient(180deg, rgba(255, 211, 236, 0.84), rgba(255, 211, 236, 0.84));
}

.profile-section-inner {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 34px);
}

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

.profile-detail-card h2,
.profile-story-card h2,
.promise-card h3 {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
}

.profile-facts {
  margin: 0;
  display: grid;
  gap: 8px;
}

.profile-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 128, 190, 0.34);
}

.profile-facts div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-facts dt {
  font-weight: 700;
  color: #a1155f;
}

.profile-facts dd {
  margin: 0;
  color: var(--ink);
}

.profile-story-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.story-timeline {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.story-timeline li {
  position: relative;
  padding-left: 28px;
}

.story-timeline li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff66b2, #67d6ff);
  box-shadow: 0 0 0 4px rgba(255, 181, 226, 0.4);
}

.story-timeline li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 2px;
  height: calc(100% + 6px);
  background: linear-gradient(180deg, rgba(255, 130, 196, 0.58), rgba(103, 213, 255, 0.25));
}

.story-timeline li:last-child::after {
  display: none;
}

.story-timeline h3 {
  margin: 0 0 4px;
  color: #931156;
  font-size: 1.02rem;
}

.story-timeline p {
  margin: 0;
  color: var(--ink);
}

.promise-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.promise-card img {
  width: min(220px, 100%);
  margin-inline: auto;
  border-radius: 16px;
}

.promise-card blockquote {
  margin: 0;
  padding: 14px;
  border-left: 4px solid rgba(255, 98, 176, 0.58);
  border-radius: 12px;
  background: rgba(255, 239, 248, 0.88);
  color: #870f4d;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.profile-back-link {
  margin-top: 18px;
}

.notice-box {
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
  padding: 12px 14px;
  font-size: 13px;
}

.error-layout {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.site-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 129, 193, 0.26);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
  padding: 22px 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

[data-reveal] {
  animation: revealUp .8s cubic-bezier(.24, .8, .3, 1) both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes profileMobileCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes profileMobileCharacterIn {
  from {
    opacity: 0;
    transform: translate3d(-50%, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1080px) {
  .card-grid-3,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-store-grid,
  .profile-story-layout,
  .profile-hero-inner {
    grid-template-columns: 1fr;
  }

  .profile-hero-visual {
    order: -1;
  }

  .profile-link-panel {
    min-height: min(340px, 52vw);
  }

  .profile-link-bg {
    background-position: center 20%;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 840px) {
  .back-to-top,
  .back-to-top.is-visible {
    display: none !important;
  }

  body.has-mobile-hide-header {
    padding-top: var(--mobile-header-height, 74px);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    transform: translate3d(0, 0, 0);
  }

  .site-header.is-hidden {
    transform: translate3d(0, calc(-100% - 2px), 0);
  }

  .nav {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .card-grid-3,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .news-simple-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-archive-card {
    grid-template-columns: 1fr;
  }

  .news-prev-next {
    grid-template-columns: 1fr;
  }

  .goods-grid,
  .links-grid-two {
    grid-template-columns: 1fr;
  }

  .btn-goods-store,
  .profile-link-btn {
    min-width: 100%;
  }

  .profile-link-panel {
    min-height: 250px;
  }

  .profile-main {
    padding-bottom: 10px;
  }

  .profile-hero {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .profile-hero-bg {
    background-image: url('/assets/img/design2/profile-hero-mobile-3223197-1.png');
    background-image: image-set(
      url('/assets/img/optimized/design2/profile-hero-mobile-3223197-1-768.avif') type('image/avif'),
      url('/assets/img/optimized/design2/profile-hero-mobile-3223197-1-768.webp') type('image/webp'),
      url('/assets/img/design2/profile-hero-mobile-3223197-1.png') type('image/png')
    );
    background-position: center top;
    background-size: cover;
    transform: none;
    opacity: 1;
  }

  .profile-hero-overlay {
    background: linear-gradient(180deg, rgba(25, 16, 46, 0.1) 0%, rgba(25, 16, 46, 0.46) 54%, rgba(25, 16, 46, 0.68) 100%);
  }

  .profile-hero-mobile-character {
    display: block;
    width: min(96vw, 520px);
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transform: translate3d(-50%, 16px, 0);
    animation: profileMobileCharacterIn .72s ease .16s forwards;
  }

  .profile-hero-mobile-character img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: none;
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .profile-hero-inner {
    min-height: min(88svh, 760px);
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
    padding: clamp(188px, 56vw, 330px) 0 18px;
  }

  .profile-hero-copy {
    width: min(94%, 360px);
    margin: 0 auto;
    padding: 14px 14px 15px;
    border-radius: 16px;
    background: rgba(27, 16, 50, 0.52);
    border: 1px solid rgba(255, 218, 238, 0.38);
    backdrop-filter: blur(5px);
    font-size: 14px;
    line-height: 1.56;
    position: relative;
    z-index: 4;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    animation: profileMobileCopyIn .64s ease .66s forwards;
  }

  .profile-hero-inner[data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .profile-hero-copy p {
    margin-top: 8px;
  }

  .profile-chip-grid {
    margin-top: 10px;
    gap: 6px;
  }

  .profile-chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .profile-chip-row span {
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 6px;
    white-space: nowrap;
  }

  .profile-chip-row:last-child span:last-child {
    grid-column: 1 / -1;
  }

  .profile-hero-visual {
    display: none;
  }

  .hero-top {
    min-height: 0;
    background: transparent;
  }

  .hero-pin {
    position: relative;
    top: auto;
    height: min(76svh, 620px);
    border-bottom-left-radius: 60% 22%;
    border-bottom-right-radius: 60% 22%;
  }

  .hero-media img,
  .hero-intro-layer img {
    object-fit: contain;
    object-position: center top;
    opacity: 1;
  }

  .hero-content {
    margin-top: clamp(96px, 24vw, 152px);
    opacity: 1 !important;
    transform: none;
  }

  .hero-media {
    transform: none;
  }

  .hero-bottom-wave {
    display: none;
  }

  .hero-actions {
    margin-top: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-mobile-logo-gap {
    display: block;
    padding: 10px 0 0;
  }

  .hero-mobile-logo-wrap {
    padding: 0 0 8px;
  }

  #schedule.home-section {
    padding-top: 34px;
  }

  .home-page #schedule,
  .home-page #shorts,
  .home-page #news,
  .home-page #goods,
  .home-page #fanclub,
  .home-page #profile-link,
  .home-page #links {
    scroll-margin-top: calc(var(--mobile-header-height, 74px) + 12px);
  }

  #schedule-list,
  #shorts-list,
  .support-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 2px 0 12px;
    margin-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #schedule-list > .card,
  #shorts-list > .card,
  .support-grid > .card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }

  .support-grid .card {
    min-height: auto;
  }

  .schedule-card-title {
    font-size: .95rem;
    -webkit-line-clamp: 4;
    min-height: calc(1.5em * 4);
  }

  #schedule-list::-webkit-scrollbar,
  #shorts-list::-webkit-scrollbar,
  .support-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .flick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    min-height: 18px;
  }

  .mobile-fab-menu {
    display: inline-flex;
    position: fixed;
    right: 20px;
    right: calc(env(safe-area-inset-right) + 20px);
    bottom: 26px;
    bottom: calc(env(safe-area-inset-bottom) + 26px);
    z-index: 115;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(130deg, #ff61b1, #74d9ff);
    box-shadow: 0 10px 20px rgba(77, 43, 94, 0.3);
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-fab-menu.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(20, 12, 40, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 340px);
    height: 100%;
    background: linear-gradient(180deg, #fff8fd 0%, #fff1fa 100%);
    border-left: 1px solid rgba(255, 151, 206, 0.38);
    box-shadow: -12px 0 28px rgba(52, 24, 71, 0.26);
    transform: translate3d(100%, 0, 0);
    transition: transform .24s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 14px 14px 18px;
    gap: 12px;
  }

  .mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-head p {
    margin: 0;
    font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ink-strong);
  }

  .mobile-menu-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 140, 198, 0.42);
    border-radius: 10px;
    background: #fff;
    color: var(--ink-strong);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 8px;
    align-content: start;
    overflow-y: auto;
    padding-right: 2px;
  }

  .mobile-menu-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 154, 207, 0.3);
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink-strong);
    font-weight: 700;
  }

  .mobile-menu-foot .btn {
    width: 100%;
    justify-content: center;
  }

  .home-page .home-section.section--art:not(.profile-link-section) {
    background: #f29ac2;
  }

  .home-page .home-section.section--art:not(.profile-link-section)::before {
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    transform: translate3d(0, var(--section-parallax), 0) scale(1.03);
  }

  .home-page .home-section.section--art:not(.profile-link-section)::after {
    background: linear-gradient(180deg, rgba(255, 215, 237, 0.2), rgba(255, 215, 237, 0.28));
  }

  .home-page #shorts.section--art::before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 42%;
    transform: translate3d(0, var(--section-parallax), 0) scale(1.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .home-page #goods.section--art::before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 44%;
    transform: translate3d(0, var(--section-parallax), 0) scale(1.08);
  }

  .home-page .home-section.section--art:not(.profile-link-section) .section-wrap {
    background: rgba(255, 255, 255, 0.5);
  }

  .home-page #shorts.section--art {
    background-color: #1f1634;
    background-image: url('/assets/img/design2/section-shorts.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-top {
    min-height: min(900px, 90vh);
  }

  .site-intro-splash {
    display: none;
  }

  .hero-pin {
    position: relative;
    height: 100%;
  }

  .hero-media,
  .hero-content,
  .hero-overlay,
  .hero-bottom-wave {
    opacity: 1;
    animation: none;
  }

  .hero-bottom-wave {
    transform: translate3d(-50%, 42%, 0);
  }

  .hero-intro-layer {
    animation: none;
    opacity: 0;
    visibility: hidden;
  }

  .hero-wave-logo {
    opacity: 0.95;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .hero-wave-logo-blue {
    opacity: 0;
  }

  .hero-wave-logo-pink {
    opacity: 0.95;
  }

  .hero-mobile-logo-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .hero-mobile-logo-blue {
    opacity: 0;
  }

  .hero-mobile-logo-pink {
    opacity: 1;
  }

  .section--art::before,
  .profile-hero-bg,
  .section-head,
  .news-simple-list,
  .news-actions,
  .goods-grid,
  .goods-store-action,
  .support-grid,
  .links-grid-two,
  .profile-link-glass {
    transform: none;
  }

  .profile-link-bg {
    transform: scale(1.08);
  }

  .profile-hero-copy {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .profile-hero-mobile-character {
    opacity: 1 !important;
    transform: translate3d(-50%, 0, 0) !important;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .back-to-top {
    min-width: 116px;
    height: 42px;
    padding: 0 12px;
    gap: 6px;
  }

  .back-to-top-icon {
    font-size: 10px;
  }

  .back-to-top-text {
    font-size: 11px;
  }

  .hero-top {
    min-height: 0;
  }

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

  .section > .container,
  .section-wrap,
  .profile-section-inner {
    border-radius: 22px;
    padding: 16px 14px;
  }

  .hero-content {
    margin-top: clamp(74px, 22vw, 124px);
    padding-inline: 6px;
  }

  .hero-content h1 {
    font-size: clamp(1.68rem, 9.2vw, 2.62rem);
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 5.4vw, 1.5rem);
  }

  .hero-subcopy {
    margin-top: 6px;
    font-size: clamp(11px, 3.3vw, 14px);
    line-height: 1.45;
  }

  .hero-pin {
    height: min(82svh, 620px);
  }

  .hero-media img,
  .hero-intro-layer img {
    object-position: center top;
  }

  .hero-bottom-wave {
    display: none;
  }

  .hero-mobile-logo-gap {
    padding: 8px 0 0;
  }

  .hero-mobile-logo-wrap {
    padding: 0 0 8px;
  }

  .hero-mobile-logo-inner {
    width: clamp(206px, 67vw, 302px);
  }

  #schedule.home-section {
    padding-top: 30px;
  }

  .home-page #schedule,
  .home-page #shorts,
  .home-page #news,
  .home-page #goods,
  .home-page #fanclub,
  .home-page #profile-link,
  .home-page #links {
    scroll-margin-top: calc(var(--mobile-header-height, 74px) + 8px);
  }

  .home-page .home-section.section--art:not(.profile-link-section) .section-wrap {
    background: rgba(255, 255, 255, 0.46);
  }

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

  .goods-item {
    padding: 8px;
  }

  .goods-item img {
    max-width: 140px;
  }

  .goods-item span {
    font-size: 12px;
  }

  .support-card .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
