:root {
  --bg: #f0c8ce;
  --bg-soft: #ffe9ec;
  --bg-strong: #e28f95;
  --section-news: #ffe9ec;
  --section-story: #e28f95;
  --wave-news: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0 92 C300 36 500 42 720 92 C940 142 1140 148 1440 92 V180 H0 Z' fill='%23ffe9ec'/%3E%3C/svg%3E");
  --wave-story: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0 92 C300 36 500 42 720 92 C940 142 1140 148 1440 92 V180 H0 Z' fill='%23e28f95'/%3E%3C/svg%3E");
  --wave-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0 92 C300 36 500 42 720 92 C940 142 1140 148 1440 92 V180 H0 Z' fill='white'/%3E%3C/svg%3E");
  --wave-height: clamp(7.2rem, 10vw, 10.4rem);
  --flower-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='%23ff9fc3' stroke='%23df6f93' stroke-width='2.4'%3E%3Cellipse cx='32' cy='14' rx='9' ry='14'/%3E%3Cellipse cx='32' cy='50' rx='9' ry='14'/%3E%3Cellipse cx='14' cy='32' rx='14' ry='9'/%3E%3Cellipse cx='50' cy='32' rx='14' ry='9'/%3E%3Cellipse cx='19.5' cy='19.5' rx='8.5' ry='12.5' transform='rotate(-45 19.5 19.5)'/%3E%3Cellipse cx='44.5' cy='19.5' rx='12.5' ry='8.5' transform='rotate(-45 44.5 19.5)'/%3E%3Cellipse cx='19.5' cy='44.5' rx='12.5' ry='8.5' transform='rotate(-45 19.5 44.5)'/%3E%3Cellipse cx='44.5' cy='44.5' rx='8.5' ry='12.5' transform='rotate(-45 44.5 44.5)'/%3E%3C/g%3E%3Ccircle cx='32' cy='32' r='8.5' fill='%23ffeaa6' stroke='%23df6f93' stroke-width='2.2'/%3E%3C/svg%3E");
  --ink: #34323d;
  --muted: rgba(52, 50, 61, 0.66);
  --paper: #fff7f4;
  --white: #ffffff;
  --accent: #00a6b4;
  --cyan: #67e8f9;
  --pink: #ff8fbd;
  --lavender: #e9dcff;
  --line: rgba(52, 50, 61, 0.14);
  --shadow: 0 18px 42px rgba(80, 30, 38, 0.16);
  --font-body: "M PLUS Rounded 1c", "Noto Sans JP", system-ui, sans-serif;
  --font-title: "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", system-ui, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.78;
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 255, 255, 0.34), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(103, 232, 249, 0.2), transparent 20rem),
    var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
  opacity: 1;
  transition: opacity 0.42s ease;
}

html.skip-loading body:not(.site-ready),
body.page-fade-out {
  opacity: 0;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0.5rem 0.75rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 220, 236, 0.42), transparent 24rem),
    radial-gradient(circle at 46% 72%, rgba(103, 232, 249, 0.2), transparent 17rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #393a40;
  background-size: auto, auto, 18px 100%, auto;
  opacity: 1;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

body.site-ready .loading-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

html.skip-loading .loading-overlay {
  display: none;
}

.loading-stage {
  position: relative;
  display: grid;
  width: min(92vw, 54rem);
  place-items: center;
  isolation: isolate;
  animation: loadingFloat 2.8s ease-in-out infinite;
}

.loading-stage::before,
.loading-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.loading-stage::before {
  width: min(54vw, 31rem);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 26px rgba(255, 143, 189, 0.4),
    inset 0 0 26px rgba(103, 232, 249, 0.28);
  transform: rotate(-14deg) scaleX(1.35);
  animation: loadingOrbit 4s linear infinite;
}

.loading-stage::after {
  width: min(64vw, 36rem);
  aspect-ratio: 1.65;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 64%),
    radial-gradient(circle at 32% 38%, rgba(255, 143, 189, 0.26), transparent 42%),
    radial-gradient(circle at 70% 64%, rgba(103, 232, 249, 0.18), transparent 45%);
  filter: blur(18px);
  animation: loadingGlow 2.1s ease-in-out infinite alternate;
}

.loading-illustration {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  animation: loadingBreath 1.8s ease-in-out infinite;
}

.loading-dots {
  position: absolute;
  bottom: 22%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  gap: clamp(0.45rem, 1.2vw, 0.78rem);
  transform: translateX(-50%);
}

.loading-dots span {
  width: clamp(0.55rem, 1.4vw, 0.9rem);
  height: clamp(0.55rem, 1.4vw, 0.9rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(103, 232, 249, 0.5);
  animation: loadingDot 1.05s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-dots span:nth-child(5) {
  animation-delay: 0.4s;
}

.menu-button {
  position: fixed;
  right: 2rem;
  top: 1rem;
  z-index: 120;
  display: flex;
  width: 4.5rem;
  height: 4.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #ec9aa5, #d8758d);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(142, 54, 78, 0.28);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, box-shadow 0.25s ease;
}

.menu-button span {
  display: block;
  width: 1.42rem;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transform-origin: center;
  transition: width 0.32s ease, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.menu-button small {
  position: absolute;
  bottom: 0.72rem;
  display: block;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

body.drawer-open .menu-button {
  transform: scale(1.04);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #00a6b4, #e28f95);
  box-shadow: 0 10px 30px rgba(0, 115, 130, 0.26);
}

body.drawer-open .menu-button span:nth-child(1) {
  width: 1.82rem;
  transform: translateY(0.205rem) rotate(45deg);
}

body.drawer-open .menu-button span:nth-child(2) {
  width: 1.82rem;
  transform: translateY(-0.205rem) rotate(-45deg);
}

body.drawer-open .menu-button small {
  opacity: 0;
  transform: translateY(-0.35rem) scale(0.92);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  background: rgba(52, 50, 61, 0.28);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.drawer-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(88vw, 460px);
  padding: 1.6rem;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.74), transparent 9rem),
    linear-gradient(180deg, #fff7fb 0%, #ffe4ec 54%, #f6c1cd 100%);
  box-shadow: -18px 0 42px rgba(80, 30, 38, 0.22);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

body.drawer-open .drawer-overlay {
  visibility: visible;
  opacity: 1;
}

body.drawer-open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.drawer-title {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.8), 0 12px 24px rgba(144, 71, 88, 0.13);
}

.icon-button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 2px solid rgba(52, 50, 61, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.drawer-nav ul {
  display: grid;
  gap: 0.58rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  padding: 0.62rem 1rem 0.62rem 0.8rem;
  color: var(--ink);
  font-size: 1.38rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 18px rgba(80, 30, 38, 0.06);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.drawer-nav a::before {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  content: "";
  background: var(--flower-icon) center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(144, 71, 88, 0.2));
  transition: transform 0.55s cubic-bezier(0.2, 1.35, 0.35, 1);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.84);
  color: #b0435a;
  outline: none;
  transform: translateX(0.25rem);
}

.drawer-nav a:hover::before,
.drawer-nav a:focus-visible::before {
  transform: rotate(360deg) scale(1.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  z-index: 30;
  overflow: visible;
  background: var(--bg);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 25;
  height: clamp(6.8rem, 9.8vw, 9.8rem);
  content: "";
  pointer-events: none;
  background: var(--wave-news) center bottom / 100% 100% no-repeat;
}

.hero-bg,
.hero-character {
  position: absolute;
  pointer-events: none;
  user-select: none;
  transition: transform 1s ease, opacity 0.8s ease;
}

.hero-bg {
  inset: 0;
  overflow: hidden;
  transform: scale(1.08);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(240, 200, 206, 0.08), rgba(240, 200, 206, 0.28) 58%, rgba(240, 200, 206, 0.72)),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.62), transparent 17rem);
}

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

.hero-character {
  left: 8vw;
  bottom: -3.4rem;
  z-index: 80;
  width: min(61.8vw, 783px);
  height: 102svh;
  transform: scale(1.08) translateY(2rem);
  will-change: transform;
}

.hero-main-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 36px rgba(80, 30, 38, 0.22));
}

.hero-companion {
  position: absolute;
  right: 15%;
  bottom: 7%;
  z-index: 5;
  width: clamp(7.2rem, 12vw, 10rem);
  height: auto;
  opacity: 0;
  transform: translateY(1.7rem) scale(0.58) rotate(-10deg);
  transform-origin: 48% 78%;
  filter: drop-shadow(0 14px 28px rgba(80, 30, 38, 0.24));
  will-change: transform, opacity;
}

body.site-ready .hero-bg,
body.site-ready .hero-character {
  transform: scale(1) translateY(0);
}

body.site-ready .hero-companion {
  animation: companionPop 0.86s cubic-bezier(0.18, 1.45, 0.28, 1) 0.86s both;
}

.hero-content {
  position: relative;
  z-index: 35;
  display: flex;
  min-height: 100svh;
  max-width: 76rem;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  text-align: right;
  will-change: transform;
}

.hero-label {
  margin: 0 0 1rem;
  color: rgba(52, 50, 61, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0;
  line-height: 0;
  color: transparent;
  font-size: 0;
}

.hero-logo {
  width: min(50vw, 44rem);
  margin: 0 -0.8rem 1rem 0;
  opacity: 0;
  transform: translateY(0.85rem) scale(0.98);
  border-radius: 18px;
  filter:
    drop-shadow(0 18px 30px rgba(122, 48, 68, 0.36))
    drop-shadow(0 5px 10px rgba(52, 50, 61, 0.22))
    drop-shadow(0 0 18px rgba(255, 245, 235, 0.42));
  transition:
    opacity 1s ease 0.22s,
    transform 1s cubic-bezier(0.2, 1, 0.28, 1) 0.22s;
}

body.site-ready .hero-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-subtitle {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow:
    -2px 0 0 #c95d80,
    2px 0 0 #c95d80,
    0 -2px 0 #c95d80,
    0 2px 0 #c95d80,
    0 6px 16px rgba(80, 30, 38, 0.24);
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;
}

body.site-ready .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  max-width: 620px;
  margin: 1.4rem 0 0;
  padding: 1rem 1.2rem;
  color: rgba(52, 50, 61, 0.82);
  font-weight: 800;
  background: rgba(255, 247, 244, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.btn-cute {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  justify-content: space-between;
  gap: 0.75rem;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--white);
  padding: 0.72rem 3rem 0.72rem 1.1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(226, 143, 149, 0.4);
  transition: filter 0.18s ease, transform 0.18s ease;
}

.btn-cute-light {
  background: var(--accent);
}

.btn-cute::after {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1.6rem;
  height: 2px;
  background: var(--white);
  content: "";
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.btn-cute::before {
  position: absolute;
  right: 1.08rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--white);
  border-top: 2px solid var(--white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.btn-cute:hover,
.btn-cute:focus-visible {
  filter: brightness(1.08);
  outline: none;
  transform: translateY(-1px);
}

.btn-cute:hover::after,
.btn-cute:focus-visible::after {
  transform: translate(4px, -50%);
}

.section {
  --section-overlap: var(--wave-height);
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: calc(var(--section-overlap) * -1);
  padding: calc(8.2rem + var(--section-overlap)) 1.5rem calc(9rem + 50px);
  background: transparent;
  box-shadow: none;
}

.hero + .section {
  margin-top: 0;
  padding-top: 7.8rem;
}

.hero + .section::before {
  content: none;
}

.section::before {
  content: none;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 16rem),
    radial-gradient(circle at 88% 74%, rgba(103, 232, 249, 0.12), transparent 18rem),
    var(--section-bg, var(--section-news));
  background-size: 42px 42px, auto, auto, auto;
  content: "";
}

.section:not(.news-section)::after {
  -webkit-mask-image: var(--wave-mask), linear-gradient(#000 0 0);
  mask-image: var(--wave-mask), linear-gradient(#000 0 0);
  -webkit-mask-position: 0 0, 0 calc(var(--wave-height) - 1px);
  mask-position: 0 0, 0 calc(var(--wave-height) - 1px);
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 100% var(--wave-height), 100% 100%;
  mask-size: 100% var(--wave-height), 100% 100%;
}

.section > * {
  position: relative;
  z-index: 1;
}

.inner {
  max-width: 70rem;
  margin: 0 auto;
}

.heading-cute {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.55rem, 6vw, 4.65rem);
  font-weight: 900;
  line-height: 1.04;
  text-shadow: 0 4px 0 rgba(52, 50, 61, 0.15);
}

.heading-cute .first {
  font-size: 1.45em;
}

main > .section:nth-of-type(even) .heading-cute {
  color: #d8758d;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(144, 71, 88, 0.14);
}

.heading-ruby {
  display: inline-block;
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  vertical-align: top;
}

.heading-subtitle {
  width: fit-content;
  margin: -0.45rem 0 1.4rem;
  padding: 0.28rem 0.9rem;
  color: #b0435a;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(80, 30, 38, 0.08);
}

.section-lead {
  max-width: 45rem;
  margin: 0 0 1.5rem;
  color: rgba(52, 50, 61, 0.76);
  font-weight: 800;
}

.card {
  border: 1px solid rgba(52, 50, 61, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 2px rgba(52, 50, 61, 0.06), var(--shadow);
  padding: 1.2rem;
}

main > .section:nth-of-type(even) {
  --section-bg: var(--section-news);
  --section-wave-image: var(--wave-news);
}

main > .section:nth-of-type(odd) {
  --section-bg: var(--section-story);
  --section-wave-image: var(--wave-story);
}

.news-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 16rem),
    radial-gradient(circle at 88% 74%, rgba(103, 232, 249, 0.12), transparent 18rem),
    var(--section-bg, var(--section-news));
}

.news-section::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
}

.news-list {
  display: grid;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.news-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(52, 50, 61, 0.16);
  padding: 1rem 1.15rem;
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.news-row:last-child {
  border-bottom: 0;
}

a.news-row:hover,
a.news-row:focus-visible {
  background: rgba(255, 255, 255, 0.5);
  outline: none;
  transform: translateY(-1px);
}

.news-row time {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.news-row strong {
  color: rgba(52, 50, 61, 0.9);
}

.arrow {
  color: rgba(52, 50, 61, 0.46);
  font-size: 1.5rem;
  transition: transform 0.18s ease, color 0.18s ease;
}

a.news-row:hover .arrow,
a.news-row:focus-visible .arrow {
  color: #b0435a;
  transform: translateX(0.24rem);
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 48svh;
  overflow: hidden;
  align-items: end;
  padding: 8.5rem 1.5rem 8.8rem;
  background: var(--bg-strong);
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 233, 236, 0.78), rgba(255, 233, 236, 0.44) 46%, rgba(226, 143, 149, 0.48)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.5), transparent 19rem);
  content: "";
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.news-detail-title {
  max-width: 56rem;
  margin: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow:
    0 4px 0 rgba(52, 50, 61, 0.14),
    0 18px 38px rgba(80, 30, 38, 0.24);
}

.news-detail-meta {
  width: fit-content;
  margin: 1.1rem 0 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #b0435a;
  padding: 0.28rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-detail-section {
  --section-bg: var(--section-news);
  --section-wave-image: var(--wave-news);
}

.news-detail-card {
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 6%, rgba(103, 232, 249, 0.16), transparent 13rem),
    rgba(255, 255, 255, 0.78);
  padding: clamp(1.35rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.news-detail-card p {
  margin: 0 0 1.25rem;
  color: rgba(52, 50, 61, 0.78);
  font-weight: 800;
}

.news-detail-card h2 {
  margin: 2rem 0 0.8rem;
  color: #b0435a;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.news-detail-lead {
  color: rgba(52, 50, 61, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.9;
}

.news-detail-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.news-detail-list li {
  position: relative;
  border: 1px solid rgba(52, 50, 61, 0.08);
  border-radius: 8px;
  background: rgba(255, 247, 244, 0.72);
  padding: 0.78rem 0.95rem 0.78rem 2.55rem;
  color: rgba(52, 50, 61, 0.8);
  font-weight: 900;
}

.news-detail-list li::before {
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 1rem;
  height: 1rem;
  background: var(--flower-icon) center / contain no-repeat;
  content: "";
}

.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-name {
  margin: 0.1rem 0 0.8rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(225, 78, 215, 0.45);
}

.about-name span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.about-copy {
  color: var(--white);
  font-size: clamp(1.12rem, 1.75vw, 1.45rem);
  font-weight: 900;
  line-height: 1.9;
  text-shadow:
    0 3px 0 rgba(52, 50, 61, 0.12),
    0 10px 24px rgba(80, 30, 38, 0.2);
}

.about-copy p {
  margin: 0 0 1.25rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.28)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(226, 143, 149, 0.14) 14px 28px);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
}

.about-visual {
  display: grid;
  width: min(100%, 33rem);
  justify-self: center;
  place-items: center;
}

.about-visual img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.profile-grid,
.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-layout {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.profile-layout .profile-grid {
  margin-top: 0;
}

.profile-portrait {
  min-height: 100%;
}

.profile-portrait img {
  height: 100%;
  min-height: 34rem;
  object-position: center top;
}

.profile-card {
  min-height: 8rem;
  margin: 0;
  padding: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 100% 0%, rgba(103, 232, 249, 0.18), transparent 8rem);
  box-shadow: 0 10px 22px rgba(80, 30, 38, 0.1);
}

.profile-card dt {
  margin: 0 0 0.4rem;
  color: #b0435a;
  font-size: 0.86rem;
  font-weight: 900;
}

.profile-card dd {
  margin: 0;
  color: rgba(52, 50, 61, 0.86);
  font-weight: 900;
}

.profile-note {
  display: inline-block;
  margin-top: 0.18rem;
  color: rgba(52, 50, 61, 0.62);
  font-size: 0.92em;
  font-weight: 900;
}

.story-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.poem-lines {
  color: var(--white);
}

.story-catch {
  margin: 1rem 0 1.3rem;
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.55;
}

.poem-lines p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 2.15;
  text-shadow: 0 2px 12px rgba(80, 30, 38, 0.18);
}

.poem-image img {
  width: 100%;
  max-height: 36rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(80, 30, 38, 0.2));
}

.activity-card {
  min-height: 12rem;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.activity-card:hover {
  filter: brightness(1.03);
  transform: translateY(-4px) rotate(-0.4deg);
}

.activity-card h3 {
  margin: 0 0 0.6rem;
  color: #b0435a;
  font-size: 1.35rem;
}

.activity-card p {
  margin: 0;
  color: rgba(52, 50, 61, 0.78);
  font-weight: 700;
}

.movie-card {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 247, 244, 0.72);
  box-shadow: var(--shadow);
}

.movie-copy h3 {
  margin: 0 0 0.65rem;
  color: #b0435a;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.movie-copy p {
  margin: 0;
  color: rgba(52, 50, 61, 0.78);
  font-weight: 800;
}

.movie-frame {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-height: 0;
  place-items: stretch;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 7rem),
    radial-gradient(circle at 28% 22%, rgba(255, 143, 189, 0.28), transparent 10rem),
    radial-gradient(circle at 82% 78%, rgba(103, 232, 249, 0.22), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 233, 236, 0.56));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  background: rgba(52, 50, 61, 0.18);
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(80, 30, 38, 0.14);
}

.movie-caption {
  margin: 0;
  padding: 0 0.2rem 0.15rem;
  color: rgba(176, 67, 90, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.goods-card {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 251, 0.72)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 143, 189, 0.08) 16px 32px);
  box-shadow: var(--shadow);
}

.goods-copy h3 {
  margin: 0.25rem 0 0.7rem;
  color: #b0435a;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.35;
}

.goods-copy p {
  margin: 0 0 1rem;
  color: rgba(52, 50, 61, 0.78);
  font-weight: 800;
}

.goods-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0.72rem;
  color: var(--white) !important;
  font-size: 0.82rem;
  background: var(--accent);
  border-radius: 999px;
}

.goods-visual {
  position: relative;
  display: grid;
  min-height: 19rem;
  place-items: center;
  overflow: visible;
  padding: 0.9rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.7), transparent 9rem),
    radial-gradient(circle at 82% 72%, rgba(103, 232, 249, 0.18), transparent 11rem);
}

.goods-visual::before {
  position: absolute;
  inset: 0.45rem;
  border: 2px solid rgba(255, 143, 189, 0.38);
  border-radius: 8px;
  background: rgba(255, 233, 236, 0.38);
  box-shadow:
    0 18px 42px rgba(176, 67, 90, 0.14),
    inset 0 0 0 4px rgba(255, 255, 255, 0.28);
  content: "";
}

.goods-thumbnail {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  max-height: 29rem;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  filter:
    drop-shadow(0 20px 34px rgba(80, 30, 38, 0.14))
    drop-shadow(0 0 18px rgba(255, 233, 236, 0.55));
  box-shadow: none;
}

.goods-thumbnail-link {
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.goods-thumbnail-link:hover,
.goods-thumbnail-link:focus-visible {
  filter: brightness(1.04);
  outline: none;
  transform: translateY(-4px) rotate(0.4deg);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem auto 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  min-height: 4.4rem;
  padding: 0.75rem 1.1rem;
  gap: 0.65rem;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: #b0435a;
  font-size: 1rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(80, 30, 38, 0.12);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-link i {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: #b0435a;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 30px rgba(80, 30, 38, 0.16);
  outline: none;
  transform: translateY(-3px) rotate(1deg);
}

.contact-card {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 247, 244, 0.72);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-card p {
  margin: 0 0 1.4rem;
  color: rgba(52, 50, 61, 0.76);
  font-weight: 900;
}

.contact-card .btn-cute {
  justify-content: center;
  padding-right: 1.15rem;
}

.contact-card .btn-cute::before,
.contact-card .btn-cute::after {
  content: none;
}

.contact-card .btn-cute i {
  font-size: 0.92rem;
}

.closing-poem {
  --section-bg: #f7c3ca;
  --section-wave-image: var(--wave-story);
  isolation: isolate;
}

.closing-poem::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.76) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(103, 232, 249, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.34), transparent 18rem),
    radial-gradient(circle at 18% 78%, rgba(103, 232, 249, 0.14), transparent 18rem),
    radial-gradient(circle at 82% 70%, rgba(255, 143, 189, 0.28), transparent 20rem),
    linear-gradient(180deg, #f1a9b3 0%, #f7c3ca 44%, #ffe9ec 100%);
  background-position: 0 0, 2.7rem 3.4rem, center, center, center, center;
  background-size: 5.6rem 5.6rem, 7.2rem 7.2rem, auto, auto, auto, auto;
}

.final-message {
  max-width: 48rem;
  text-align: center;
}

.closing-poem-lines {
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 2.1rem);
  color: rgba(52, 50, 61, 0.82);
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 900;
  line-height: 2.15;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.38);
}

.fade-poem-line {
  margin: 0;
}

.fade-poem-line.poem-char-ready {
  opacity: 1;
}

.poem-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.72em);
  transition:
    opacity 0.78s ease,
    transform 0.92s cubic-bezier(0.2, 1, 0.28, 1);
  white-space: pre;
}

.fade-poem-line.is-visible .poem-char,
.fade-poem-line.is-visible:not(.poem-char-ready) {
  opacity: 1;
  transform: translateY(0);
}

.pop-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.96) rotate(-1.2deg);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.2, 1.4, 0.34, 1);
}

.pop-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.pop-reveal.pop-bounce.is-visible {
  animation: tinyPop 0.72s cubic-bezier(0.2, 1.5, 0.38, 1) both;
}

@keyframes tinyPop {
  0% {
    transform: translateY(24px) scale(0.94) rotate(-1deg);
  }
  62% {
    transform: translateY(-5px) scale(1.025) rotate(0.4deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes loadingFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.25deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.25deg);
  }
}

@keyframes loadingBreath {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.08) saturate(1.08);
  }
}

@keyframes loadingOrbit {
  from {
    transform: rotate(-14deg) scaleX(1.35);
  }
  to {
    transform: rotate(346deg) scaleX(1.35);
  }
}

@keyframes loadingGlow {
  from {
    opacity: 0.72;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes loadingDot {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(0) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.45rem) scale(1.16);
  }
}

@keyframes companionPop {
  0% {
    opacity: 0;
    transform: translateY(1.7rem) scale(0.58) rotate(-10deg);
  }
  58% {
    opacity: 1;
    transform: translateY(-0.55rem) scale(1.08) rotate(5deg);
  }
  78% {
    opacity: 1;
    transform: translateY(0.2rem) scale(0.96) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

.site-footer {
  border-top: 1px solid rgba(52, 50, 61, 0.12);
  padding: 2.5rem 1.5rem;
  color: rgba(52, 50, 61, 0.72);
  font-size: 0.9rem;
  background: #f6d8dc;
}

.footer-inner {
  display: flex;
  max-width: 70rem;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-title {
  margin: 0 0 0.2rem;
  font-weight: 900;
}

.footer-inner small {
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 900;
}

.privacy-note {
  margin-top: 1.4rem;
  color: rgba(52, 50, 61, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.privacy-note a {
  color: #b0435a;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

@media (min-width: 760px) {
  .menu-button {
    top: clamp(1.35rem, 1.8vw, 2rem);
    right: clamp(5.5rem, 6vw, 7.5rem);
  }

  .hero-content {
    padding-right: 2vw;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  }

  .profile-layout {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  }

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

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

  .movie-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
    padding: 1.7rem;
  }

  .goods-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
    padding: 1.7rem;
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 860px;
  }

  .hero-character {
    left: 5vw;
    bottom: -2.3rem;
    width: 84.5vw;
    height: 64svh;
    opacity: 0.92;
  }

  .hero-companion {
    right: 6vw;
    bottom: 9%;
    width: clamp(7.2rem, 22vw, 10.5rem);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(240, 200, 206, 0.08), rgba(240, 200, 206, 0.68)),
      radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.5), transparent 13rem);
  }

  .hero-content {
    justify-content: flex-start;
    min-height: 860px;
    padding-top: 6.6rem;
    text-align: left;
    align-items: flex-start;
  }

  .hero-logo {
    width: min(84vw, 34rem);
    margin: 0 0 0.75rem -0.35rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy br {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: calc(6.3rem + var(--section-overlap)) 1rem calc(6.4rem + 50px);
  }

  .hero {
    min-height: 810px;
    overflow: visible;
  }

  .hero-content {
    min-height: 810px;
    padding: 4.5rem 0.85rem 3rem;
  }

  .hero-character {
    left: -12vw;
    bottom: -8.2rem;
    width: 118vw;
    height: 82svh;
  }

  .hero-companion {
    right: 8vw;
    bottom: 2%;
    width: min(27vw, 7.8rem);
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-label {
    max-width: 80%;
    margin-bottom: 0.55rem;
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .hero-logo {
    width: min(80vw, 24rem);
    margin: 0 0 0.42rem -0.2rem;
  }

  .hero-subtitle {
    max-width: 80%;
    font-size: 0.62rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-shadow:
      -1.5px 0 0 #c95d80,
      1.5px 0 0 #c95d80,
      0 -1.5px 0 #c95d80,
      0 1.5px 0 #c95d80,
      0 5px 12px rgba(80, 30, 38, 0.22);
  }

  .hero-copy {
    max-width: min(74%, 23rem);
    margin-top: 1rem;
    padding: 0.78rem 0.9rem;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .btn-cute {
    width: 100%;
  }

  .heading-ruby {
    display: block;
    margin: 0.35rem 0 0;
  }

  .heading-subtitle {
    margin-top: -0.2rem;
  }

  .image-frame img {
    height: 22rem;
  }

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

  .profile-portrait img {
    min-height: 26rem;
  }

  .closing-poem-lines {
    font-size: 1rem;
    line-height: 2;
  }

  .goods-visual {
    min-height: 15rem;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-link {
    width: 100%;
    min-width: 0;
  }
}

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