@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Pacifico&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

:root {
  --sakura: #ff8fb8;
  --deep-pink: #f15f9a;
  --sky: #8dccff;
  --soft-blue: #ddf3ff;
  --lavender: #b99cff;
  --cream: #fff7fb;
  --white: #ffffff;
  --orange: #d9893b;
  --navy: #253b68;
  --ink: #4b4d77;
  --muted: #7f82aa;
  --line: rgba(255, 143, 184, 0.26);
  --glass: rgba(255, 255, 255, 0.78);
  --card-shadow: 0 12px 32px rgba(255, 143, 184, 0.18);
  --float-shadow: 0 20px 60px rgba(141, 204, 255, 0.28);
  --button-shadow: 0 8px 18px rgba(241, 95, 154, 0.32);
  --radius-card: 24px;
  --radius-large: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "M PLUS Rounded 1c", system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 193, 216, 0.78), transparent 18rem),
    radial-gradient(circle at 88% 2%, rgba(179, 221, 255, 0.92), transparent 22rem),
    linear-gradient(135deg, #fff6fb 0%, #eaf7ff 48%, #fff7fb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image: var(--page-bg);
  background-size: cover;
  background-position: top center;
  opacity: 0.08;
  filter: saturate(1.06) blur(1px);
}

body::after {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 143, 184, 0.16) 0 0.42rem, transparent 0.48rem),
    radial-gradient(circle at 22% 64%, rgba(255, 143, 184, 0.12) 0 0.34rem, transparent 0.39rem),
    radial-gradient(circle at 84% 34%, rgba(255, 255, 255, 0.8) 0 0.24rem, transparent 0.31rem),
    radial-gradient(circle at 92% 74%, rgba(185, 156, 255, 0.16) 0 0.42rem, transparent 0.5rem);
  z-index: -1;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  translate: 0 -160%;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-pink);
  box-shadow: var(--button-shadow);
  font-weight: 900;
  transition: translate 160ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site {
  position: relative;
}

.petal-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.petal {
  position: absolute;
  top: -8vh;
  width: 18px;
  height: 13px;
  border-radius: 70% 30% 70% 30%;
  background: linear-gradient(135deg, rgba(255, 168, 199, 0.92), rgba(255, 255, 255, 0.88));
  box-shadow: 0 0 12px rgba(255, 143, 184, 0.28);
  animation: fall var(--speed) linear infinite;
  animation-delay: var(--delay);
  opacity: 0.8;
}

.petal:nth-child(1) { left: 6%; --speed: 16s; --delay: -2s; }
.petal:nth-child(2) { left: 14%; --speed: 19s; --delay: -7s; transform: scale(0.8); }
.petal:nth-child(3) { left: 27%; --speed: 15s; --delay: -10s; }
.petal:nth-child(4) { left: 39%; --speed: 22s; --delay: -4s; transform: scale(1.15); }
.petal:nth-child(5) { left: 52%; --speed: 18s; --delay: -13s; }
.petal:nth-child(6) { left: 67%; --speed: 24s; --delay: -5s; transform: scale(0.75); }
.petal:nth-child(7) { left: 76%; --speed: 17s; --delay: -11s; }
.petal:nth-child(8) { left: 90%; --speed: 21s; --delay: -8s; transform: scale(1.05); }

@keyframes fall {
  0% {
    translate: 0 -10vh;
    rotate: 0deg;
  }
  50% {
    translate: 8vw 52vh;
    rotate: 140deg;
  }
  100% {
    translate: -5vw 112vh;
    rotate: 280deg;
  }
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.header-wrap {
  position: sticky;
  top: 20px;
  z-index: 20;
  padding: 18px 0 8px;
}

.header {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: grid;
  gap: 2px;
  color: var(--navy);
}

.logo-main {
  position: relative;
  width: max-content;
  color: var(--deep-pink);
  font-family: "Pacifico", cursive;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1;
  text-shadow: 0 4px 14px rgba(255, 143, 184, 0.22);
}

.logo-main::after {
  content: "✿";
  position: absolute;
  right: -1.25rem;
  top: -0.35rem;
  color: var(--deep-pink);
  font-family: serif;
  font-size: 1.1rem;
}

.logo-sub {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-shell {
  display: flex;
  justify-content: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(760px, 100%);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  box-shadow: 0 10px 30px rgba(255, 120, 170, 0.2), inset 0 0 0 1px rgba(141, 204, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav a {
  position: relative;
  display: grid;
  flex: 1 1 0;
  min-width: 86px;
  place-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.nav a + a {
  border-left: 1px solid rgba(75, 77, 119, 0.12);
}

.nav .en {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: var(--deep-pink);
  background: rgba(255, 143, 184, 0.12);
  transform: translateY(-1px);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: -11px;
  height: 4px;
  border-radius: 999px;
  background: var(--deep-pink);
}

.support-pill,
.primary-button,
.ghost-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-pill,
.primary-button {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #ff9fc2, #f15f9a);
  box-shadow: var(--button-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.support-pill::before,
.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -140% 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transition: translate 520ms ease;
}

.support-pill:hover::before,
.primary-button:hover::before {
  translate: 140% 0;
}

.support-pill:hover,
.support-pill.active,
.primary-button:hover,
.ghost-button:hover,
.mini-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.02);
}

.support-pill.active {
  outline: 3px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(241, 95, 154, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.support-pill {
  min-width: 168px;
  padding: 14px 22px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.05;
}

.support-pill span {
  display: block;
  font-size: 1.2rem;
}

.support-pill small {
  display: block;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--deep-pink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
}

.hero {
  position: relative;
  min-height: 520px;
  margin-top: -96px;
  padding: 142px 0 78px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 246, 251, 0.98) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(229, 246, 255, 0.78) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    var(--page-bg);
  background-size: cover;
  background-position: center top;
  opacity: 0.94;
  background-blend-mode: normal, screen, normal;
  filter: saturate(1.08);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -44px;
  height: 104px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 30px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(75, 77, 119, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--deep-pink);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-title {
  margin: 0;
  color: var(--deep-pink);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(3.7rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 1.04;
  text-shadow: 0 6px 0 rgba(255, 255, 255, 0.72), 0 16px 30px rgba(255, 143, 184, 0.24);
}

.hero-title .grad {
  background: linear-gradient(100deg, var(--deep-pink), var(--lavender), #6ebcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-en {
  margin: 4px 0 0;
  color: #6fa5ec;
  font-family: "Caveat", cursive;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.72);
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  padding: 12px 34px;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(180deg, #ff9dc0, #e75a93);
  font-family: "Pacifico", cursive;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  box-shadow: 0 14px 28px rgba(241, 95, 154, 0.24);
}

.tagline {
  width: min(700px, 100%);
  margin: 0;
  color: #a34d78;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.character-card {
  position: absolute;
  right: -76px;
  bottom: -98px;
  width: min(780px, 64vw);
  height: 560px;
  overflow: visible;
  filter: drop-shadow(0 24px 32px rgba(75, 77, 119, 0.18));
  animation: floaty 5.5s ease-in-out infinite;
}

.character-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  scale: 1.1;
}

.speech {
  position: absolute;
  right: 10px;
  top: 76px;
  width: 190px;
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 54% 46% 50% 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
  text-align: center;
  font-weight: 900;
  line-height: 1.7;
}

.speech::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -14px;
  width: 28px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 16px rgba(255, 143, 184, 0.8);
  animation: blink 2.4s ease-in-out infinite;
}

.sparkle.one { left: 5%; top: 28%; font-size: 2rem; }
.sparkle.two { right: 42%; top: 22%; font-size: 1.5rem; animation-delay: -0.7s; }
.sparkle.three { right: 11%; bottom: 24%; font-size: 2.2rem; animation-delay: -1.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes blink {
  0%, 100% { opacity: 0.34; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

.main {
  position: relative;
  z-index: 2;
  padding: 44px 0 84px;
}

.section {
  margin-top: 38px;
}

.section:first-child {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--deep-pink);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
}

.section-title .en {
  color: #96b9f0;
  font-family: "Caveat", cursive;
  font-size: 1.1em;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(16px);
}

.card.large {
  border-radius: var(--radius-large);
}

.card.pad {
  padding: 24px;
}

.card:hover {
  box-shadow: var(--float-shadow);
  transform: translateY(-3px);
}

.is-hidden {
  display: none !important;
}

.card,
.gallery-card,
.news-card,
.plan-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-title {
  margin: 0 0 14px;
  color: var(--deep-pink);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.card-title .en {
  margin-left: 8px;
  color: #9bb9ee;
  font-family: "Caveat", cursive;
  font-size: 1.08em;
}

.text {
  margin: 0;
  line-height: 1.9;
  font-weight: 600;
}

.list-clean {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li,
.profile-row {
  display: grid;
  grid-template-columns: 96px 70px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 143, 184, 0.36);
  font-weight: 800;
}

.date {
  color: var(--muted);
  font-size: 0.84rem;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--deep-pink);
  background: rgba(255, 143, 184, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.tag.info {
  color: #3d83de;
  background: rgba(141, 204, 255, 0.22);
}

.tag.event {
  color: #8f60d6;
  background: rgba(185, 156, 255, 0.2);
}

.profile-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
}

.avatar-frame {
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(255, 143, 184, 0.18);
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 71% 39%;
  scale: 1.65;
}

.profile-row {
  grid-template-columns: 112px 1fr;
}

.profile-row span:first-child {
  color: var(--deep-pink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.primary-button,
.ghost-button,
.mini-button {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
}

.ghost-button,
.mini-button {
  border: 1px solid rgba(141, 204, 255, 0.32);
  color: #417bcc;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(141, 204, 255, 0.16);
}

.mini-button {
  min-height: 38px;
  padding: 8px 15px;
  font-size: 0.84rem;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.thumb {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(75, 77, 119, 0.12);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thanks-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1fr minmax(260px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.heart-panel {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 34px;
  color: var(--deep-pink);
  background: linear-gradient(135deg, rgba(255, 194, 216, 0.82), rgba(255, 255, 255, 0.72));
  box-shadow: var(--card-shadow);
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
}

.link-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.sns-link {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(141, 204, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 20px rgba(141, 204, 255, 0.14);
  color: #3678cc;
  font-weight: 900;
  text-align: center;
}

.page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 122px;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 9px 13px;
  border-radius: 15px;
  color: var(--navy);
  font-weight: 900;
}

.category-item.active,
.category-item:hover {
  color: var(--white);
  background: linear-gradient(180deg, #ff9fc2, #f15f9a);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 143, 184, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  cursor: pointer;
}

.chip.active {
  color: var(--white);
  background: linear-gradient(180deg, #ff9fc2, #f15f9a);
  box-shadow: var(--button-shadow);
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(75, 77, 119, 0.16);
  cursor: pointer;
}

.gallery-card.is-favorite .favorite-dot,
.favorite-dot.is-favorite {
  color: var(--white);
  background: linear-gradient(180deg, #ff9fc2, #f15f9a);
}

.gallery-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(37, 59, 104, 0.78));
}

.gallery-card strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(0.86rem, 1.8vw, 1rem);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(37, 59, 104, 0.32);
}

.favorite-dot {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--deep-pink);
  background: rgba(255, 255, 255, 0.88);
}

.preview-card {
  position: sticky;
  top: 122px;
}

.preview-image {
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 22px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.page-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 143, 184, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 900;
}

.page-dot.active {
  color: var(--deep-pink);
  border-color: var(--sakura);
}

.news-layout,
.contact-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: 22px;
  align-items: center;
}

.featured-news .feature-image {
  aspect-ratio: 1.62;
  overflow: hidden;
  border-radius: 20px;
}

.feature-image img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.news-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
  padding: 14px;
  border-radius: 22px;
}

.news-card .news-thumb {
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 16px;
}

.news-card h3,
.plan-card h3,
.message-card h3 {
  margin: 5px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
}

.news-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
}

.field,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(141, 204, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
}

.field,
.select {
  min-height: 48px;
  padding: 0 15px;
}

.textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.archive-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.archive-list a {
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px dashed rgba(255, 143, 184, 0.32);
  font-weight: 800;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  text-align: center;
}

.plan-card.featured {
  border-color: rgba(141, 204, 255, 0.46);
  box-shadow: 0 18px 44px rgba(141, 204, 255, 0.26);
}

.plan-card.selected {
  outline: 4px solid rgba(255, 143, 184, 0.26);
  box-shadow: 0 22px 60px rgba(241, 95, 154, 0.22);
}

.badge {
  position: absolute;
  right: 18px;
  top: -13px;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, #89caff, #5f9bea);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 20px;
  color: var(--deep-pink);
  background: linear-gradient(135deg, rgba(255, 143, 184, 0.18), rgba(255, 255, 255, 0.88));
  font-size: 1.9rem;
}

.price {
  margin: 10px 0 18px;
  color: #4e78c9;
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--deep-pink);
  background: rgba(255, 143, 184, 0.12);
  font-size: 1.55rem;
}

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

.message-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.mini-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.82);
  background: var(--soft-blue);
}

.mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  scale: 1.75;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.form-status,
.inline-status {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(141, 204, 255, 0.28);
  border-radius: 14px;
  color: #417bcc;
  background: rgba(221, 243, 255, 0.58);
  font-weight: 800;
  line-height: 1.6;
}

.form-status.success,
.inline-status.success {
  color: var(--deep-pink);
  background: rgba(255, 143, 184, 0.12);
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--float-shadow);
  backdrop-filter: blur(16px);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
}

.form-row label {
  color: var(--navy);
  font-weight: 900;
}

.required {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sakura);
  font-size: 0.7rem;
}

.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.type-tabs .chip {
  min-height: 38px;
}

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

.faq-item {
  border: 1px solid rgba(141, 204, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border: 0;
  color: #417bcc;
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 600;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  padding: 72px 0 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.84), transparent 12rem),
    linear-gradient(180deg, #ddf3ff 0%, #ffffff 100%);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: -46px;
  height: 96px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.footer .logo-main {
  font-size: 2.35rem;
}

.copyright {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .header {
    grid-template-columns: 220px 1fr auto;
    gap: 14px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-grid,
  .news-layout,
  .contact-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .page-layout {
    grid-template-columns: 230px 1fr;
  }

  .preview-card {
    grid-column: 1 / -1;
    position: static;
  }

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

  .thanks-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .character-card {
    right: 0;
    width: min(620px, 88vw);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .header-wrap {
    top: 0;
    padding-top: 10px;
  }

  .header {
    grid-template-columns: 1fr auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
  }

  .logo-main {
    font-size: 2.1rem;
  }

  .nav-shell {
    grid-column: 1 / -1;
    display: none;
  }

  .nav-shell.open {
    display: block;
  }

  .nav {
    display: grid;
    width: 100%;
    border-radius: 22px;
    margin-top: 8px;
  }

  .nav a {
    min-width: 0;
  }

  .nav a + a {
    border-left: 0;
    border-top: 1px solid rgba(75, 77, 119, 0.1);
  }

  .support-pill {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    margin-top: -102px;
    padding: 148px 0 54px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 330px;
  }

  .character-card {
    left: 50%;
    right: auto;
    bottom: -34px;
    width: min(640px, 132vw);
    height: 370px;
    translate: -50% 0;
  }

  .character-card img {
    object-position: center bottom;
    scale: 1.1;
  }

  .speech {
    right: 0;
    top: 18px;
    width: 156px;
    min-height: 94px;
    padding: 15px;
    font-size: 0.86rem;
  }

  .hero-title {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .ribbon {
    padding: 10px 22px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .plan-grid,
  .benefit-grid,
  .message-grid,
  .page-layout,
  .news-grid,
  .featured-news,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

  .gallery-card:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 1.16;
  }

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

  .image-strip,
  .link-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 520px) {
  .card.pad {
    padding: 18px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .character-card {
    height: 340px;
  }

  .speech {
    display: none;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .gallery-grid,
  .image-strip,
  .link-buttons {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .button-row .primary-button,
  .button-row .ghost-button {
    width: 100%;
  }
}

@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;
  }
}
