:root {
  --paper: #fffefe;
  --pink: #f4a5bd;
  --rose: #c85072;
  --deep: #714d78;
  --ink: #5f4b55;
  --muted: #9a8190;
  --line: #f3cfd9;
  --lav: #cbb7df;
  --gold: #e7bc72;
  --shadow: 0 10px 30px rgba(201, 116, 143, .14);
  --round: 16px;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 214, 226, .55), transparent 220px),
    radial-gradient(circle at 86% 0%, rgba(224, 211, 242, .55), transparent 280px),
    linear-gradient(180deg, #fffdfd, #fff7fb 72%, #f7e9fa);
}

body::before {
  content: "♪   ❀   ♫   ❀   ♪   ✧   ❀";
  position: fixed;
  inset: 16px 0 auto;
  z-index: -1;
  color: rgba(217, 144, 173, .2);
  font-size: 34px;
  letter-spacing: 86px;
  white-space: nowrap;
  pointer-events: none;
}

img { display: block; max-width: 100%; }
img[src$="nanae-avatar.png"] {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.garden-shell {
  width: 1512px;
  min-height: 100vh;
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.42)),
    repeating-linear-gradient(135deg, rgba(239, 187, 205, .1) 0 2px, transparent 2px 22px);
  border-left: 1px solid rgba(244, 185, 202, .7);
  border-right: 1px solid rgba(244, 185, 202, .7);
  box-shadow: 0 0 42px rgba(160, 90, 124, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 252px minmax(300px, 390px) 1fr;
  gap: 18px;
  align-items: center;
  height: 82px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  align-items: center;
  min-width: 0;
  color: #b14f67;
  font-family: Georgia, var(--serif);
}

.brand-mark {
  width: 42px;
  height: 52px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 50% 33%, #fff 0 11px, transparent 12px),
    linear-gradient(#e3b56d 0 0) center 10px / 5px 34px no-repeat,
    linear-gradient(135deg, transparent 36%, #f5a4b8 37% 62%, transparent 63%),
    radial-gradient(circle at 50% 80%, #f7bdd0 0 18px, transparent 19px);
  border: 1px solid #f2b7c7;
  flex: 0 0 auto;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.brand-copy { min-width: 0; }
.brand strong {
  display: block;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.01em;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: #d48a63;
  font: 12px var(--serif);
  white-space: nowrap;
}

.search {
  display: grid;
  grid-template-columns: 1fr 42px;
  height: 38px;
  border: 1px solid #f3d5df;
  border-radius: 999px;
  background: #fffafb;
  overflow: hidden;
}
.search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  outline: 0;
  font-size: 13px;
}
.search button {
  border: 0;
  color: var(--deep);
  background: #f6eaf4;
  font-size: 22px;
  cursor: pointer;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(76px, 1fr));
  gap: 6px;
  min-width: 0;
}
.top-nav a {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 54px;
  padding: 4px 3px;
  color: var(--deep);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}
.top-nav span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 18px;
}
.top-nav .is-active {
  color: #fff;
  background: linear-gradient(180deg, #f6a8bd, #ef7fa1);
  box-shadow: 0 8px 14px rgba(232, 126, 157, .28);
}

.dashboard {
  display: grid;
  grid-template-columns: 230px 1fr 370px;
  gap: 12px;
  padding: 14px 10px 12px;
}
.sidebar, .right-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-card, .side-menu, .members, .soft-card, .x-panel, .fan-memo, .page-hero, .page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.profile-card { padding: 14px 10px 12px; text-align: center; }
.profile-card::before, .hero-card::before, .fan-memo::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(246, 163, 186, .24) 0 3px, transparent 4px),
    radial-gradient(circle at 90% 20%, rgba(245, 181, 111, .22) 0 3px, transparent 4px),
    radial-gradient(circle at 16% 80%, rgba(201, 181, 224, .2) 0 4px, transparent 5px);
  pointer-events: none;
}

.portrait-frame {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto 8px;
  border: 2px solid #ffd8e1;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.18);
}
.profile-card h1 { margin: 2px 0 1px; color: #554750; font-size: 18px; line-height: 1.15; }
.role {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 12px;
  color: #755e68;
  border-radius: 999px;
  background: #fff0f4;
  font-size: 11px;
  font-weight: 700;
}
.profile-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 10px;
}
.profile-tags div {
  min-height: 34px;
  padding: 5px 4px;
  border: 1px solid #f2d4c8;
  border-radius: 8px;
  background: #fffdfb;
}
.profile-tags dt { color: #d76d8e; font-size: 10px; font-weight: 800; }
.profile-tags dd { margin: 0; color: #5d4e56; font-size: 12px; font-weight: 800; }
.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mini-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 6px;
  min-height: 31px;
  padding: 5px 8px;
  text-align: left;
  border: 1px solid #f1d9cf;
  border-radius: 8px;
  background: #fffdfb;
  font-size: 12px;
}
.mini-list b { color: #b67c48; }

.side-menu { padding: 10px 18px 12px; }
.side-menu h2 {
  margin: -2px -10px 7px;
  padding: 4px 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #ef7897, #e45f88);
  font-size: 13px;
  letter-spacing: .15em;
}
.side-menu a {
  display: block;
  padding: 7px 2px 7px 22px;
  color: #745761;
  border-bottom: 1px solid #f5e1e7;
  font-size: 13px;
  font-weight: 800;
}
.side-menu a::before { content: "✦"; margin-left: -18px; margin-right: 7px; color: #d75f85; }

.members {
  padding: 15px 12px;
  text-align: center;
  color: #b8506d;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 161, 183, .28), transparent 38px),
    radial-gradient(circle at 88% 78%, rgba(245, 161, 183, .24), transparent 34px),
    #fffdfd;
}
.members p { margin: 0; font: 12px Georgia, serif; }
.members strong { display: block; color: #d95376; font: 23px Georgia, serif; }
.members span { display: block; color: #806673; font-size: 12px; font-weight: 700; }

.main-column { display: grid; gap: 12px; align-content: start; }
.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 345px;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 85%, rgba(245, 158, 188, .28), transparent 170px),
    radial-gradient(circle at 78% 25%, rgba(208, 189, 228, .35), transparent 210px),
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255, 234, 242, .84));
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "♪     ❀        ♫       ❀       ♪";
  position: absolute;
  inset: 24px 22px auto;
  color: rgba(210, 139, 169, .32);
  font-size: 27px;
  letter-spacing: 29px;
  white-space: nowrap;
}
.hero-copy { position: relative; z-index: 2; padding: 35px 28px 26px 58px; }
.kicker { margin-bottom: 0; color: #a61f47; font: 34px var(--serif); letter-spacing: .12em; }
.hero-copy h2 {
  margin: 0 0 18px;
  color: #9a1d45;
  font: 43px/1.2 var(--serif);
  letter-spacing: .04em;
  white-space: nowrap;
}
.hero-copy p:not(.kicker) {
  width: 82%;
  color: #7f475b;
  font: 14px/2 var(--serif);
  letter-spacing: .06em;
}
.hero-card > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center bottom;
}

.cta, .small-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 42px;
  margin-top: 12px;
  padding: 0 22px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, #f28aa3, #df587b);
  box-shadow: 0 10px 18px rgba(221, 78, 116, .24);
  font-size: 13px;
  font-weight: 800;
}
.cta::after, .small-cta::after { content: "›"; margin-left: 12px; font-size: 19px; }

.top-grid { display: grid; grid-template-columns: 220px 1fr; gap: 12px; }
.soft-card { padding: 13px 16px; }
.soft-card h2, .x-panel h2, .fan-memo h2, .page-card h2 {
  margin: 0;
  color: #bd4065;
  font-size: 17px;
  letter-spacing: .08em;
}
.soft-card h2::before, .x-panel h2::before, .fan-memo h2::before, .page-card h2::before {
  content: "✿";
  margin-right: 7px;
  color: #ee7898;
}
.intro {
  min-height: 146px;
  background:
    radial-gradient(circle at 90% 70%, rgba(239, 170, 122, .22), transparent 70px),
    rgba(255,255,255,.84);
}
.intro p { margin: 11px 0 0; color: #6e5962; font: 13px/1.9 var(--serif); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.card-head a { color: #8968bd; font-size: 11px; font-weight: 800; }

.work-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.work-strip article {
  min-width: 0;
  padding: 7px 7px 8px;
  border: 1px solid #f1d1c8;
  border-radius: 10px;
  background: #fffdfb;
  text-align: center;
}
.work-strip img { width: 100%; height: 72px; margin-bottom: 6px; border-radius: 8px; object-fit: cover; object-position: center 26%; }
.work-strip b { display: block; color: #74545b; font-size: 13px; line-height: 1.25; }
.work-strip span { display: block; color: #8c7880; font-size: 10px; line-height: 1.25; }
.work-strip.text-only article {
  display: grid;
  align-content: center;
  min-height: 86px;
}
.work-strip.text-only b {
  color: #c34d72;
  font: 20px Georgia, serif;
}
.work-strip.text-only span {
  margin-top: 5px;
  color: #6c5660;
  font-size: 11px;
  line-height: 1.55;
}

.info-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 12px; }
.news, .schedule { min-height: 178px; }
.news ul, .schedule ul, .media ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.news li {
  display: grid;
  grid-template-columns: 42px 84px 1fr;
  align-items: center;
  gap: 8px;
  color: #68545c;
  font-size: 11px;
}
.news li span {
  min-height: 18px;
  color: #fff;
  border-radius: 999px;
  background: #ff6689;
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  line-height: 18px;
}
.news li span:empty { width: 17px; justify-self: center; background: #ff7898; }
.news time { color: #9e8b92; font-size: 11px; }
.schedule li { display: grid; grid-template-columns: 76px 1fr; column-gap: 9px; align-items: center; color: #68545c; }
.schedule time {
  grid-row: span 2;
  padding: 3px 5px;
  color: #fff;
  border-radius: 4px;
  background: #876cc1;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.schedule li:nth-child(4) time { background: #ef7d5f; }
.schedule b { font-size: 12px; }
.schedule span { color: #9d878f; font-size: 10px; }

.bottom-grid {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 12px;
  grid-template-areas: "points pickup";
}
.points { grid-area: points; }
.pickup { grid-area: pickup; }
.point-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.point-row article { text-align: center; }
.point-row i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 6px;
  color: #d95076;
  border: 2px solid #f6ccd8;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 42%, #f6d4de 43% 100%);
  font-style: normal;
  font-size: 28px;
}
.point-row b { display: block; color: #896276; font-size: 11px; line-height: 1.35; }
.point-row span { display: block; margin-top: 4px; color: #8c7680; font-size: 9px; line-height: 1.45; }

.pickup {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 154px;
  background:
    radial-gradient(circle at 82% 22%, rgba(248, 176, 198, .25), transparent 90px),
    rgba(255,255,255,.84);
}
.pickup img { width: 104px; height: 126px; border-radius: 14px; object-fit: contain; object-position: center; }
.pickup h2 { font-size: 15px; white-space: nowrap; }
.pickup h3 { margin: 5px 0 4px; color: #674e76; font: 16px var(--serif); }
.pickup p { margin-bottom: 4px; color: #78646d; font-size: 10px; line-height: 1.55; }
.pickup strong {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  border-radius: 50%;
  background: #f3a443;
  font: 12px Georgia, serif;
  line-height: 1.05;
}
.small-cta {
  min-width: 120px;
  min-height: 28px;
  margin-top: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #9d79ca, #8060b5);
  font-size: 11px;
}
.media li {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  column-gap: 9px;
  padding: 6px 8px;
  border: 1px solid #f4d8df;
  border-radius: 10px;
  background: #fffdfd;
}
.media i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff1f5;
  font-style: normal;
}
.media b { font-size: 11px; }
.media span { color: #9b8790; font-size: 10px; }
.archive { display: block; margin-top: 8px; color: #8d6fc4; text-align: center; font-size: 11px; font-weight: 900; }

.right-column .card-head { margin-bottom: 8px; }
.x-panel { padding: 13px 14px; background: rgba(255,255,255,.86); }
.x-logo { margin-right: 9px; color: #111; font: 24px/1 Arial, sans-serif; }
.x-panel h2::before { display: none; }
.x-post {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #f1dce3;
}
.x-post:first-of-type { border-top: 0; }
.x-post img { width: 46px; height: 46px; border-radius: 50%; object-fit: contain; object-position: center; background: #fff6fa; transform: scale(1.05); }
.x-post header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 5px; color: #6a525a; font-size: 12px; }
.x-post header span, .x-post time { color: #9f8b93; font-size: 10px; }
.x-post p { margin: 4px 0 7px; color: #51444b; font-size: 12px; line-height: 1.7; }
.x-post blockquote {
  margin: 6px 0 6px;
  padding: 7px 9px;
  color: #6c4560;
  border-left: 3px solid #ee83a2;
  border-radius: 0 8px 8px 0;
  background: #fff7fa;
  font-size: 12px;
  line-height: 1.65;
}
.x-post footer { color: #a08b94; font-size: 11px; }
.x-post footer a, .media a, .source-note a {
  color: #7d5fb0;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.x-archive-list {
  display: grid;
  gap: 12px;
}
.x-post.large {
  grid-template-columns: 58px 1fr;
  padding: 14px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background: #fffdfb;
}
.x-post.large:first-of-type {
  border-top: 1px solid #f1d1c8;
}
.x-post.large img {
  width: 58px;
  height: 58px;
}
.x-post.large blockquote {
  font-size: 14px;
}
.x-post.large p {
  font-size: 13px;
}
.source-note {
  margin: 8px 0 0;
  color: #9b7f8a;
  font-size: 10px;
  line-height: 1.6;
}
.page-source {
  margin: 12px 4px 0;
  font-size: 12px;
}

.fan-memo { padding: 13px 14px 14px; }
.memo-board {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #f5d9df;
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 165, 189, .2), transparent 42px),
    linear-gradient(120deg, #fffdf8, #fff8fb);
}
.memo-board article {
  padding: 9px 12px;
  border: 1px solid #f3dbe2;
  border-radius: 10px;
  background: rgba(255,255,255,.72);
}
.memo-board h3 { margin: 0 0 2px; color: #8763ad; font-size: 14px; }
.memo-board p { margin: 0; color: #75626c; font-size: 10px; line-height: 1.55; }

.site-footer {
  min-height: 72px;
  padding: 18px 20px;
  color: #6f5275;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 50%, rgba(255,255,255,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 40%, rgba(255,255,255,.9) 0 4px, transparent 5px),
    linear-gradient(90deg, #e7d1ec, #f3d7e4, #e8d5ee);
}
.site-footer p { margin: 0; font: italic 25px Georgia, serif; letter-spacing: .05em; }
.site-footer small { font-size: 12px; }

.page-main {
  padding: 18px;
}
.page-hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 34px 44px;
  background:
    radial-gradient(circle at 78% 20%, rgba(208, 189, 228, .34), transparent 190px),
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255, 236, 243, .86));
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #9a1d45;
  font: 42px/1.25 var(--serif);
  letter-spacing: .04em;
}
.page-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 720px;
  color: #765262;
  font: 15px/2 var(--serif);
}
.page-hero img {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 210px;
  justify-self: end;
  border-radius: 18px;
  object-fit: contain;
  object-position: center bottom;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.page-grid.two { grid-template-columns: repeat(2, 1fr); }
.page-card { padding: 18px; }
.page-card p, .page-card li { color: #6e5962; font-size: 13px; line-height: 1.85; }
.page-card ul { margin: 12px 0 0; padding-left: 18px; }
.public-memo-card {
  margin-top: 14px;
}
.public-memo-card h2 {
  margin-bottom: 12px;
}
.admin-hero {
  border-color: #d7c0ee;
  background:
    radial-gradient(circle at 78% 20%, rgba(184, 152, 223, .28), transparent 190px),
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(248, 240, 255, .9));
}
.memo-workspace {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 14px;
  margin-top: 14px;
}
.memo-editor form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.memo-editor label {
  display: grid;
  gap: 6px;
  color: #9a5670;
  font-size: 12px;
  font-weight: 800;
}
.memo-editor input,
.memo-editor select,
.memo-editor textarea {
  width: 100%;
  border: 1px solid #f0c8d4;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdfd;
  outline: 0;
}
.memo-editor textarea { resize: vertical; min-height: 138px; }
.memo-editor input:focus,
.memo-editor select:focus,
.memo-editor textarea:focus {
  border-color: #e8759b;
  box-shadow: 0 0 0 4px rgba(232, 117, 155, .13);
}
.memo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.memo-actions .cta { margin-top: 0; border: 0; cursor: pointer; }
.ghost-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #edc7d3;
  border-radius: 999px;
  color: #8a5870;
  background: #fff8fb;
  cursor: pointer;
  font-weight: 800;
}
.ghost-button.danger {
  color: #bd4f6e;
  border-color: #f0bdca;
}
.memo-list {
  display: grid;
  gap: 10px;
}
.memo-item {
  padding: 14px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background:
    radial-gradient(circle at 95% 15%, rgba(244, 165, 189, .16), transparent 54px),
    #fffdfb;
}
.memo-item header,
.memo-item footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.memo-item header span {
  padding: 3px 10px;
  color: #fff;
  border-radius: 999px;
  background: #9671c6;
  font-size: 11px;
  font-weight: 900;
}
.memo-item time {
  color: #a28a96;
  font-size: 11px;
}
.memo-item h3 {
  margin: 10px 0 4px;
  color: #794e70;
  font-size: 16px;
}
.memo-item p {
  margin-bottom: 12px;
  white-space: pre-wrap;
}
.memo-item footer {
  justify-content: flex-end;
}
.memo-item footer button {
  min-width: 64px;
  min-height: 30px;
  border: 1px solid #efd0d9;
  border-radius: 999px;
  color: #8a5870;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.empty-memo {
  margin: 0;
  padding: 22px;
  border: 1px dashed #edc7d3;
  border-radius: 12px;
  text-align: center;
}
.gallery-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 24%;
}
.gallery-card h3 { margin: 10px 0 2px; color: #74545b; font-size: 16px; }
.timeline-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.timeline-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background: #fffdfb;
}
.timeline-list time { color: #fff; background: #8d70c1; border-radius: 8px; text-align: center; font-weight: 800; padding: 7px; }
.timeline-list b { color: #674e76; }
.schedule-board {
  display: grid;
  gap: 14px;
}
.schedule-empty {
  padding: 15px 16px;
  border: 1px solid #f0cbc7;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffdfb, #fff3f5);
}
.schedule-empty b {
  display: block;
  margin-bottom: 5px;
  color: #9e5370;
}
.schedule-cards {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.schedule-cards li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid #f1d1c8;
  border-radius: 14px;
  background: #fffdfb;
}
.schedule-cards time {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #9a80ca, #df6f8c);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.schedule-cards b {
  display: block;
  color: #674e76;
  font-size: 14px;
  line-height: 1.55;
}
.schedule-cards p {
  margin: 4px 0 7px;
}
.schedule-cards a {
  color: #bc4f78;
  font-weight: 800;
}
.source-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.source-list li {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background: #fffdfb;
}
.source-list b { color: #674e76; }
.source-list span { color: #7d6770; font-size: 12px; }
.page-kicker {
  margin: 0 0 4px;
  color: #c65d79;
  font: italic 18px Georgia, serif;
  letter-spacing: .08em;
}
.works-timeline {
  margin-top: 14px;
  padding: 16px;
}
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tab-list button {
  min-width: 112px;
  min-height: 38px;
  border: 1px solid #f0c8d4;
  border-radius: 999px;
  color: #7d5770;
  background: #fff9fb;
  cursor: pointer;
  font-weight: 800;
}
.tab-list button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #f08ca7, #df5f83);
  box-shadow: 0 8px 16px rgba(223, 95, 131, .2);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.works-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 13px;
}
.works-table th {
  padding: 0 12px 4px;
  color: #a05b76;
  text-align: left;
  font-size: 12px;
}
.works-table td {
  padding: 12px;
  border-top: 1px solid #f1d1c8;
  border-bottom: 1px solid #f1d1c8;
  background: #fffdfb;
  line-height: 1.55;
  word-break: break-word;
}
.works-table td:first-child {
  width: 105px;
  border-left: 1px solid #f1d1c8;
  border-radius: 10px 0 0 10px;
  color: #fff;
  background: #9272c2;
  text-align: center;
  font-weight: 900;
}
.works-table td:last-child {
  width: 230px;
  border-right: 1px solid #f1d1c8;
  border-radius: 0 10px 10px 0;
  color: #6d5963;
}

body::before {
  content: "♪   ♡   ✧   ♪   ♡   ✧   ♪";
}
.news-board,
.profile-note,
.policy-board,
.media-board,
.fan-template,
.x-archive {
  display: grid;
  gap: 14px;
}
.news-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-list li {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 13px;
  padding: 13px;
  border: 1px solid #f1d1c8;
  border-radius: 14px;
  background: #fffdfb;
}
.news-list time {
  display: grid;
  place-items: center;
  min-height: 68px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #df6f8c, #9576c4);
  font-weight: 900;
}
.news-list b { color: #674e76; font-size: 14px; }
.news-list p { margin: 4px 0 7px; }
.news-list a,
.link-cards a,
.policy-list a,
.media-links a {
  color: #bc4f78;
  font-weight: 800;
}
.fact-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}
.fact-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #f1d1c8;
  border-radius: 10px;
  background: #fffdfb;
}
.fact-list dt { color: #9e5370; font-weight: 900; }
.fact-list dd { margin: 0; color: #6e5962; }
.link-cards,
.policy-grid,
.media-links,
.memo-template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.link-cards a,
.media-links a,
.memo-template-grid article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background: #fffdfb;
}
.link-cards b,
.media-links b,
.memo-template-grid h3 { color: #674e76; }
.link-cards span,
.media-links span,
.memo-template-grid p { color: #7d6770; font-size: 12px; }
.policy-grid article {
  padding: 14px;
  border: 1px solid #f1d1c8;
  border-radius: 14px;
  background: #fffdfb;
}
.policy-grid h2 { margin-bottom: 7px; }
.policy-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-list li {
  padding: 11px 12px;
  border: 1px solid #f1d1c8;
  border-radius: 12px;
  background: #fffdfb;
}
.policy-list b {
  display: block;
  color: #674e76;
}
.media-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form-section {
  display: grid;
  gap: 14px;
}
.contact-form-wrap {
  padding: 16px;
  border: 1px solid #f1d1c8;
  border-radius: 14px;
  background: #fffdfb;
}
.contact-form-wrap .wpcf7-form {
  display: grid;
  gap: 14px;
}
.contact-form-wrap p {
  margin: 0;
}
.contact-form-wrap label {
  display: grid;
  gap: 6px;
  color: #674e76;
  font-weight: 800;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="url"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #f1c8d3;
  border-radius: 12px;
  color: #5f4b55;
  background: #fff;
  outline: none;
}
.contact-form-wrap textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-wrap input[type="submit"] {
  min-width: 180px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ef8aa6, #d95479);
  box-shadow: 0 8px 18px rgba(211, 80, 118, .22);
  font-weight: 900;
  cursor: pointer;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: #c44762;
  font-size: 12px;
}
.contact-form-wrap .wpcf7-response-output {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .garden-shell { width: 100%; }
  .site-header { position: static; grid-template-columns: 1fr; height: auto; }
  .top-nav { grid-template-columns: repeat(4, 1fr); }
  .dashboard { grid-template-columns: 1fr; padding: 10px; }
  .hero-card, .top-grid, .info-grid, .bottom-grid, .page-hero, .page-grid, .page-grid.two, .memo-workspace { grid-template-columns: 1fr; }
  .hero-copy { padding: 30px 22px; }
  .hero-copy h2 { white-space: normal; }
  .hero-copy p:not(.kicker) { width: 100%; }
  .hero-card > img { height: 310px; }
  .work-strip, .point-row { grid-template-columns: repeat(2, 1fr); }
  .bottom-grid { grid-template-areas: none; }
  .points, .pickup, .media { grid-area: auto; }
  .page-hero img { justify-self: start; width: 100%; }
  .news-list li, .schedule-cards li, .fact-list div { grid-template-columns: 1fr; }
  .link-cards, .policy-grid, .media-links, .memo-template-grid { grid-template-columns: 1fr; }
}
