/* version 3.4 | last-modified 2026-07-23 */
/* lp.prikyaba.com / prikyaba.com 新デザイン共通CSS。ブレークポイント: min-width 1024px */
:root {
  --color-bg: #fffaf3;
  --color-paper: #fffdf9;
  --color-cream: #f7efe7;
  --color-ivory: #fbf6ee;
  --color-blue: #e9f7fb;
  --color-lavender: #eee8f7;
  --color-pink: #f3dde7;
  --color-gold: #b89a5d;
  --color-gold-soft: #eadcba;
  --color-ink: #5e496b;
  --color-charcoal: #372937;
  --color-muted: #2a2427;
  --color-deep: #39235e;
  --color-line: #69b995;
  --color-line-dark: #479b78;
  --color-border: rgba(121, 99, 84, 0.18);
  --shadow-soft: 0 24px 70px rgba(72, 58, 82, 0.13);
  --shadow-card: 0 16px 38px rgba(72, 58, 82, 0.09);
  --radius-card: 8px;
  --radius-media: 24px;
  --radius-button: 999px;
  --mobile-width: 430px;
  --mobile-half-width: 215px;
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  --font-latin: "Cormorant Garamond", "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(132deg, rgba(242, 229, 215, 0.98) 0%, rgba(211, 232, 239, 0.94) 46%, rgba(218, 207, 235, 0.98) 100%);
  background-attachment: fixed;
  color: var(--color-charcoal);
  font-family: var(--font-serif);
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.desktop-lp-stage {
  width: 100%;
  min-height: 100vh;
}

.desktop-brand-panel,
.desktop-nav-panel {
  display: none;
}

.brand-lp-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(252, 244, 235, 0.98) 0%, rgba(255, 250, 243, 0.98) 48%, rgba(239, 229, 222, 0.98) 100%);
  background-attachment: fixed;
}

h1,
h2,
h3,
.site-logo,
.footer-logo {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

.section-label {
  margin-bottom: 10px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 17px;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  color: var(--color-ink);
  font-size: 31px;
  line-height: 1.42;
}

.section-heading > p:not(.section-label) {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
}

.button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-line {
  background: linear-gradient(167deg, var(--color-line), var(--color-line-dark));
  color: var(--color-paper);
  box-shadow: 0 14px 30px rgba(71, 155, 120, 0.22);
}

.button-line:hover {
  background: var(--color-line);
}

.button-outline {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
}

.button-light {
  border-color: rgba(234, 220, 186, 0.72);
  background: rgba(255, 253, 249, 0.96);
  color: var(--color-ink);
}

.button-light:hover {
  background: var(--color-lavender);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(121, 99, 84, 0.12);
  background: rgba(255, 253, 249, 0.9);
  animation: header-surface-in 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-logo-mark {
  width: min(178px, 54vw);
  height: auto;
  max-height: 36px;
  display: block;
  object-fit: contain;
}

.menu-button,
.menu-close-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  transition: color 240ms ease, transform 240ms ease;
}

.menu-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.menu-button span {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 22px;
  height: 1px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: width 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  width: 15px;
  transform: translateY(4px);
}

.menu-button {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 10px);
  right: max(12px, calc(env(safe-area-inset-right, 0px) + 12px));
  z-index: 45;
}

.menu-button::before {
  border-color: rgba(184, 154, 93, 0.24);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 8px 24px rgba(72, 58, 82, 0.12);
  backdrop-filter: blur(10px);
}

.menu-button:active,
.menu-close-button:active {
  transform: scale(0.94);
}

.menu-button:focus-visible,
.menu-close-button:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 2px;
}

.mobile-menu-modal {
  width: min(100%, var(--mobile-width));
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0 auto;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  background:
    linear-gradient(155deg, rgba(255, 253, 249, 0.99) 0%, rgba(238, 232, 247, 0.98) 52%, rgba(233, 247, 251, 0.98) 100%);
  color: var(--color-charcoal);
}

.mobile-menu-modal[open] {
  display: block;
  transform-origin: top center;
  animation: menu-modal-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu-modal.is-closing {
  pointer-events: none;
  animation: menu-modal-out 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.mobile-menu-modal::backdrop {
  background: rgba(48, 42, 57, 0.46);
  backdrop-filter: blur(5px);
}

.mobile-menu-modal[open]::backdrop {
  animation: menu-backdrop-in 420ms ease both;
}

.mobile-menu-modal.is-closing::backdrop {
  animation: menu-backdrop-out 300ms ease both;
}

.mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(121, 99, 84, 0.14);
  background: rgba(255, 253, 249, 0.72);
}

.mobile-menu-logo {
  width: min(178px, 54vw);
  height: auto;
  max-height: 36px;
  display: block;
  object-fit: contain;
}

.menu-close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-content {
  flex: 1;
  padding: 42px 26px calc(116px + env(safe-area-inset-bottom));
}

.mobile-menu-title {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mobile-menu-nav {
  display: grid;
  margin-top: 10px;
}

.mobile-menu-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(121, 99, 84, 0.16);
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 220ms ease, padding-left 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-nav a::after {
  content: "→";
  color: var(--color-gold);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 400;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.mobile-menu-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 32px;
  color: var(--color-muted);
}

.mobile-menu-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: color 220ms ease, transform 220ms ease;
}

.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-header {
  animation: menu-header-in 520ms 60ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-title {
  animation: menu-item-in 480ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a {
  animation: menu-item-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a:nth-child(1) { animation-delay: 120ms; }
.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a:nth-child(2) { animation-delay: 155ms; }
.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a:nth-child(3) { animation-delay: 190ms; }
.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a:nth-child(4) { animation-delay: 225ms; }
.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-nav a:nth-child(5) { animation-delay: 260ms; }
.mobile-menu-modal[open]:not(.is-closing) .mobile-menu-social {
  animation: menu-item-in 520ms 310ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* First View / Video Hero */
.hero-section {
  padding: 0;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 430 / 538;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(72, 62, 84, 0.06) 0%, rgba(54, 47, 67, 0.68) 100%),
    linear-gradient(135deg, #f3dde7 0%, #e9f7fb 18%, #bbb0d1 42%, #5b5267 67%, #2f3142 100%);
  box-shadow: var(--shadow-soft);
}

.video-frame {
  background: linear-gradient(135deg, #f3dde7 0%, #e9f7fb 34%, #5b5267 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: hero-media-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.video-frame::before,
.video-frame::after {
  display: none;
}

.video-frame .video-caption {
  text-shadow: 0 2px 14px rgba(32, 28, 39, 0.42);
}

.hero-copy {
  position: absolute;
  right: 24px;
  bottom: calc(60px + env(safe-area-inset-bottom));
  left: 24px;
  z-index: 2;
  color: var(--color-paper);
  text-shadow: 0 2px 18px rgba(25, 21, 31, 0.68);
}

.hero-copy h1 {
  color: inherit;
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
}

.hero-copy p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 28px;
}

.video-placeholder::before,
.video-placeholder::after {
  content: "";
  position: absolute;
  bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 120px 120px 18px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.video-placeholder::before {
  left: 44px;
  width: 130px;
  height: 210px;
}

.video-placeholder::after {
  right: 40px;
  width: 150px;
  height: 260px;
}


.video-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.final-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

/* Area */
.area-section {
  padding: 74px 20px 80px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(238, 232, 247, 0.78) 58%, rgba(251, 246, 238, 0.96) 100%);
}

.area-section .section-heading {
  margin-bottom: 28px;
}

.area-section .section-heading h2 {
  font-size: 36px;
  line-height: 45px;
}

.area-section .section-heading > p:not(.section-label) {
  line-height: 28px;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.area-card,
.pickup-shop-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 186, 0.64);
  border-radius: var(--radius-card);
  background: #2f3142;
  box-shadow: 0 16px 36px rgba(54, 47, 67, 0.18);
  isolation: isolate;
}

.area-card {
  aspect-ratio: 193 / 160;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 253, 249, 0);
  transition: background 320ms ease;
}

.area-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) brightness(1);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.area-card-copy {
  position: absolute;
  z-index: 2;
  display: grid;
  color: var(--color-paper);
  text-shadow: 0 2px 12px rgba(15, 13, 22, 0.58);
}

.area-card-copy {
  left: 16px;
  right: 16px;
  top: 16px;
  gap: 1px;
}

.area-card-en {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  text-transform: uppercase;
}

.area-card-ja {
  color: var(--color-paper);
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}

.area-card-arrow,
.pickup-shop-arrow {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: calc(16px + 53px / 2);
  transform: translateY(-50%);
  color: var(--color-gold-soft);
  font-family: var(--font-latin);
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(15, 13, 22, 0.52);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pickup-section {
  padding: 48px 20px;
  background: linear-gradient(213.8deg, #5d5889 11.6%, #8e80af 53.9%, #5d5889 91.7%);
}

.pickup-shop-heading {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
}

.pickup-section .pickup-shop-heading {
  color: var(--color-gold);
}

.pickup-section-title {
  margin-top: 2px;
  color: var(--color-paper);
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
}

.pickup-shop-banner {
  display: grid;
  min-width: 0;
  margin-top: 10px;
  background: var(--color-paper);
}

.pickup-shop-banner img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.pickup-shop-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 15px 18px 17px;
  background: var(--color-paper);
  color: var(--color-ink);
  text-shadow: none;
}

.pickup-shop-title {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.pickup-shop-name {
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

.pickup-shop-arrow {
  display: none;
}

.pickup-shop-copy-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
  background: var(--color-lavender);
}

.pickup-shop-copy-row .pickup-shop-name {
  color: var(--color-ink);
  min-width: 0;
  text-align: center;
}

.pickup-shop-wage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-charcoal);
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}

.pickup-shop-price {
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

/* Three Brand Values */
.brand-values-section {
  padding: 48px 0 0;
  background:
    linear-gradient(132.432deg, #fdedff 17.504%, #f7effe 49.474%, #ced2ff 74.594%);
}

.brand-values-section .section-heading {
  padding: 0 20px;
  text-align: center;
}

.brand-values-section .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
}

.brand-values-section .section-heading > p:not(.section-label) {
  line-height: 28px;
}

.brand-value-list {
  display: grid;
  gap: 0;
}

.brand-value-card {
  overflow: hidden;
  background: transparent;
  box-shadow: 0 24px 35px rgba(72, 58, 82, 0.13);
}

.value-card-visual {
  position: relative;
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-lavender) 0%, var(--color-blue) 56%, var(--color-gold-soft) 100%);
}

.value-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 28, 38, 0.02) 42%, rgba(32, 28, 38, 0.56) 100%);
}

.value-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.value-card-influence {
  background: linear-gradient(145deg, var(--color-pink), var(--color-ivory));
}

.value-card-media {
  background: linear-gradient(145deg, #edf6f8, #8d83a1);
}

.value-card-visual span {
  position: relative;
  z-index: 1;
  color: rgba(65, 55, 71, 0.58);
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.value-card-photo span {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 12px rgba(24, 20, 29, 0.36);
}

.value-card-content {
  padding: 22px 22px 32px;
  background: rgba(255, 255, 255, 0.7);
}

.value-label {
  color: var(--color-gold);
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}

.value-card-content h3 {
  margin-top: 7px;
  color: var(--color-ink);
  font-size: 24px;
  line-height: 35px;
}

.value-card-content > p:last-child {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 28px;
}

.group-value-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 17px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 28px;
  transition: background 180ms ease;
}

.group-value-link:hover {
  background: var(--color-paper);
}

.group-value-link-arrow {
  font-family: var(--font-latin);
}

/* FAQ */
.faq-section {
  padding: 76px 20px;
  background: var(--color-ivory);
}

.faq-section .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-paper);
}

.faq-list summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  list-style: none;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--color-gold);
  font-family: var(--font-latin);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-list details p {
  padding: 0 16px 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 28px;
}

/* Final CTA */
.final-cta-section {
  padding: 48px 24px;
  background: #3d374c;
  color: var(--color-paper);
  text-align: center;
}

.final-cta-section .section-label {
  color: var(--color-gold-soft);
  font-size: 14px;
}

.final-cta-section h2 {
  color: var(--color-paper);
  font-size: 36px;
  line-height: 45px;
}

.final-cta-section > p:not(.section-label) {
  margin-top: 16px;
  color: var(--color-paper);
  font-size: 15px;
  line-height: 28px;
  text-align: left;
}

/* Footer */
.site-footer {
  display: grid;
  gap: 20px;
  padding: 44px 22px 200px;
  background: #3d374c;
  color: var(--color-paper);
}

.footer-logo {
  color: var(--color-paper);
  font-size: 19px;
  line-height: 32px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--color-paper);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.footer-social-links,
.desktop-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-social-links a,
.desktop-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.prikyaba-banner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(234, 220, 186, 0.46);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.prikyaba-banner span {
  color: var(--color-gold-soft);
  font-family: var(--font-latin);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.prikyaba-banner strong {
  color: var(--color-paper);
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
}

.footer-notice-group {
  display: grid;
  gap: 10px;
}

.age-notice,
.site-footer small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 17px;
}

/* Entry CTA: fixed at the position right below the first-view hero (Figma: y=588 @430px frame, header included) */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 20;
  width: min(100%, var(--mobile-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
}

.fixed-trial-banner {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 26px rgba(72, 58, 82, 0.22);
}

.fixed-trial-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-bottom-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.fixed-bottom-cta-buttons a {
  min-height: 46px;
  display: grid;
  place-items: center;
  pointer-events: auto;
  border-radius: var(--radius-button);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.fixed-line-button {
  background: linear-gradient(167deg, var(--color-line), var(--color-line-dark));
  color: var(--color-paper);
}

.fixed-shop-button {
  border: 1px solid var(--color-border);
  background: var(--color-paper);
  color: var(--color-ink);
}

@media (hover: hover) {
  .menu-button:hover,
  .menu-close-button:hover {
    color: var(--color-gold);
  }

  .menu-button:hover::before {
    border-color: rgba(184, 154, 93, 0.34);
    background: rgba(255, 255, 255, 0.62);
  }

  .menu-button:hover span:last-child {
    width: 22px;
  }

  .menu-close-button:hover span:first-child {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .menu-close-button:hover span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-nav a:hover {
    padding-left: 6px;
    color: var(--color-gold);
  }

  .mobile-menu-nav a:hover::after {
    color: var(--color-ink);
    transform: translateX(5px);
  }

  .mobile-menu-social a:hover {
    color: var(--color-ink);
    transform: translateY(-2px);
  }

  .area-card:hover::before {
    background: rgba(255, 253, 249, 0.2);
  }
}

@keyframes header-surface-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-media-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes menu-modal-in {
  from { opacity: 0; transform: translateY(-16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes menu-modal-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(0.99); }
}

@keyframes menu-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes menu-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes menu-header-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes desktop-left-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes desktop-right-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 429px) {
  .site-logo-mark {
    width: 164px;
  }

  .area-section,
  .pickup-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .area-card-copy {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .area-card-en {
    font-size: 11px;
  }

  .area-card-ja {
    font-size: 22px;
  }

  .area-card-arrow {
    right: 12px;
    top: 12px;
    font-size: 22px;
  }

  .fixed-bottom-cta {
    gap: 7px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .fixed-bottom-cta-buttons a {
    min-height: 44px;
    font-size: 13px;
  }
}

/* Desktop designed mobile LP stage */
/* 1024px未満はフル幅表示（クライアント確定仕様）。「中央スマホ幅+左右パネル」はここから */
@media (min-width: 1024px) {
  body {
    padding: 28px 0;
  }

  .desktop-lp-stage {
    --desktop-frame-width: min(1120px, calc(100vw - 40px));
    --desktop-left-col: clamp(300px, calc(36.8vw - 76px), 350px);
    --desktop-side-col: minmax(164px, 1fr);
    --desktop-gap-left: clamp(8px, calc(14.7vw - 142.6px), 28px);
    --desktop-gap-right: 82px;
    width: var(--desktop-frame-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: var(--desktop-left-col) var(--desktop-gap-left) var(--mobile-width) var(--desktop-gap-right) var(--desktop-side-col);
    align-items: start;
    min-height: calc(100vh - 56px);
  }

  .desktop-brand-panel {
    grid-column: 1;
  }

  .brand-lp-shell {
    grid-column: 3;
  }

  .desktop-nav-panel {
    grid-column: 5;
  }

  .brand-lp-shell {
    max-width: var(--mobile-width);
    margin-inline: 0;
    min-height: calc(100vh - 56px);
    border: 1px solid rgba(121, 99, 84, 0.12);
    border-radius: 24px 24px 34px 34px;
    box-shadow: 0 30px 90px rgba(72, 58, 82, 0.16);
  }

  .site-header {
    border-radius: 24px 24px 0 0;
  }

  .menu-button {
    top: 38px;
  }

  .site-header {
    display: none;
  }

  .fixed-bottom-cta {
    display: none;
  }

  .menu-button,
  .mobile-menu-modal {
    display: none !important;
  }

  .desktop-brand-panel {
    position: sticky;
    top: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-ink);
    animation: desktop-left-in 900ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .desktop-panel-logo {
    width: min(250px, 86%);
    height: auto;
    display: block;
  }

  .desktop-brand-panel h2 {
    margin-top: 16px;
    max-width: 340px;
    color: var(--color-ink);
    font-size: 36px;
    line-height: 1.5;
  }

  .desktop-brand-panel > p {
    margin-top: 16px;
    max-width: 320px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 2;
  }

  .desktop-panel-actions {
    width: min(100%, 300px);
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .desktop-line-cta,
  .desktop-web-cta {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 22px;
    border-radius: var(--radius-button);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
  }

  .desktop-line-cta {
    border: 1px solid rgba(71, 155, 120, 0.28);
    background: linear-gradient(167deg, var(--color-line), var(--color-line-dark));
    color: var(--color-paper);
    box-shadow: 0 18px 42px rgba(71, 155, 120, 0.22);
  }

  .desktop-line-cta:hover {
    background: var(--color-line);
  }

  .desktop-web-cta {
    border: 1px solid rgba(184, 154, 93, 0.46);
    background: rgba(255, 253, 249, 0.76);
    color: var(--color-ink);
  }

  .desktop-web-cta:hover {
    background: var(--color-lavender);
  }

  .desktop-trial-banner {
    display: block;
    width: 100%;
    height: 72px;
    overflow: hidden;
    border-radius: 0;
  }

  .desktop-trial-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 180ms ease;
  }

  .desktop-trial-banner:hover img {
    opacity: 0.8;
  }

  .desktop-nav-panel {
    position: sticky;
    top: 222px;
    justify-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: min(100%, 176px);
    animation: desktop-right-in 900ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .desktop-side-nav {
    display: grid;
    width: 100%;
    gap: 2px;
    color: var(--color-muted);
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
  }

  .desktop-side-nav::before {
    content: "MENU";
    margin-bottom: 6px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
  }

  .desktop-side-nav a {
    min-width: 160px;
    padding: 10px 0;
    transition: color 180ms ease, transform 180ms ease;
  }

  .desktop-side-nav a:hover {
    color: var(--color-ink);
    transform: translateX(3px);
  }

  .desktop-social-links {
    display: grid;
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
    color: var(--color-muted);
  }

  .desktop-social-links::before {
    content: "SOCIAL";
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
  }

  .desktop-social-links a {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Group detail page additions */
.value-card-content > p:not(.value-label) {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
}

.value-card-link {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-button);
  background: rgba(255, 253, 249, 0.78);
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.value-card-link::after,
.back-home-link::before {
  color: var(--color-gold);
  font-family: var(--font-latin);
  line-height: 1;
}

.value-card-link::after {
  content: "→";
  font-size: 15px;
}

.group-page-hero {
  padding: 72px 22px 58px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(238, 232, 247, 0.72) 58%, rgba(233, 247, 251, 0.56) 100%);
}

.group-hero-icon,
.group-section-icon,
.timeline-dot,
.step-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(184, 154, 93, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.88);
  color: var(--color-gold);
  box-shadow: 0 12px 30px rgba(72, 58, 82, 0.08);
}

.group-hero-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
}

.group-section-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}

.brand-icon {
  width: 23px;
  height: 23px;
  display: block;
}

.group-page-hero h1 {
  color: var(--color-ink);
  font-size: 38px;
  line-height: 1.36;
}

.group-page-hero > p:not(.section-label) {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.95;
}

.back-home-link {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.back-home-link::before {
  content: "←";
  font-size: 15px;
}

.group-detail-section {
  scroll-margin-top: 78px;
  padding: 72px 20px 78px;
  background:
    linear-gradient(180deg, rgba(251, 246, 238, 0.98) 0%, rgba(255, 253, 249, 0.96) 100%);
}

.group-detail-section-alt {
  background:
    linear-gradient(180deg, rgba(238, 232, 247, 0.74) 0%, rgba(233, 247, 251, 0.70) 100%);
}

.group-section-copy {
  margin-bottom: 26px;
}

.group-section-copy .section-label,
.group-line-cta .section-label {
  margin-bottom: 8px;
}

.group-section-copy h2 {
  color: var(--color-ink);
  font-size: 30px;
  line-height: 1.42;
}

.group-section-copy p:not(.section-label) {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

.timeline-ui,
.cast-step-ui,
.location-gallery {
  border: 1px solid rgba(234, 220, 186, 0.66);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96) 0%, rgba(238, 232, 247, 0.62) 54%, rgba(233, 247, 251, 0.72) 100%);
  box-shadow: var(--shadow-card);
}

.timeline-ui,
.cast-step-ui {
  padding: 14px;
}

.timeline-photo,
.cast-step-photo img,
.gallery-main img,
.gallery-tile img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.timeline-photo {
  aspect-ratio: 1.48 / 1;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(54, 47, 67, 0.14);
}

.timeline-list,
.step-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list {
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 21px;
  width: 1px;
  background: linear-gradient(180deg, rgba(184, 154, 93, 0.20), rgba(94, 73, 107, 0.20));
}

.timeline-item,
.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(121, 99, 84, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 249, 0.82);
}

.timeline-dot,
.step-icon {
  z-index: 1;
  width: 42px;
  height: 42px;
  background: rgba(255, 250, 243, 0.96);
}

.timeline-copy,
.step-item span:last-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.timeline-copy strong,
.step-item strong {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.timeline-copy small,
.step-item small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.55;
}

.cast-step-photo {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--color-pink), var(--color-blue));
  box-shadow: 0 14px 34px rgba(54, 47, 67, 0.14);
}

.cast-step-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 28, 38, 0.02) 46%, rgba(32, 28, 38, 0.36) 100%);
  pointer-events: none;
}

.cast-step-photo img {
  height: 100%;
}

.step-list {
  counter-reset: step-count;
}

.step-item {
  counter-increment: step-count;
  background: rgba(255, 255, 255, 0.70);
}

.step-item::after {
  content: "0" counter(step-count);
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(184, 154, 93, 0.34);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.location-gallery {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.gallery-main,
.gallery-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #3d374c;
}

.gallery-main img {
  aspect-ratio: 1.06 / 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-tile img {
  aspect-ratio: 1 / 1;
}

.gallery-tile:nth-child(1) img {
  object-position: 34% 50%;
}

.gallery-tile:nth-child(2) img {
  object-position: 70% 44%;
}

.gallery-main::after,
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 29, 0.02) 48%, rgba(24, 20, 29, 0.50) 100%);
  pointer-events: none;
}

.gallery-main figcaption,
.gallery-tile figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-paper);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(24, 20, 29, 0.42);
  text-transform: uppercase;
}

.gallery-main figcaption .brand-icon,
.gallery-tile figcaption .brand-icon {
  width: 18px;
  height: 18px;
}

.group-line-cta {
  padding: 76px 24px 88px;
  background:
    linear-gradient(145deg, #5a5168 0%, #443d55 48%, #39354a 100%);
  color: var(--color-paper);
  text-align: center;
}

.group-line-cta .group-section-icon {
  margin: 0 auto 18px;
  background: rgba(255, 253, 249, 0.12);
  color: var(--color-gold-soft);
}

.group-line-cta .section-label {
  color: var(--color-gold-soft);
}

.group-line-cta h2 {
  color: var(--color-paper);
  font-size: 35px;
  line-height: 1.42;
}

.group-line-cta > p:not(.section-label) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.group-line-cta .button {
  margin-top: 26px;
}

@media (hover: hover) {
  .value-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 154, 93, 0.56);
    background: rgba(255, 255, 255, 0.94);
  }

  .back-home-link:hover {
    color: var(--color-gold);
  }

  .timeline-item:hover,
  .step-item:hover,
  .gallery-main:hover,
  .gallery-tile:hover {
    border-color: rgba(184, 154, 93, 0.34);
  }
}

@media (max-width: 429px) {
  .group-page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .group-page-hero h1 {
    font-size: 34px;
  }

  .group-detail-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .group-section-copy h2 {
    font-size: 28px;
  }

  .timeline-ui,
  .cast-step-ui,
  .location-gallery {
    padding: 10px;
  }

  .timeline-item,
  .step-item {
    padding: 11px;
    gap: 10px;
  }

  .timeline-copy strong,
  .step-item strong {
    font-size: 15px;
  }
}

/* Logo mark: 3-part SVG composite (Figma export has no single flattened asset) */
.logo-mark {
  position: relative;
  width: min(178px, 54vw);
  aspect-ratio: 206.26 / 34.75;
  display: block;
}

.logo-mark img {
  position: absolute;
  display: block;
}

.logo-mark .logo-mark-word {
  top: 11.8%;
  left: 15.49%;
  width: 84.47%;
  height: 40.29%;
}

.logo-mark .logo-mark-icon {
  top: 0;
  left: 0;
  width: 11.13%;
  height: 63.86%;
}

.logo-mark .logo-mark-sub {
  top: 65.44%;
  left: 34.21%;
  width: 65.31%;
  height: 34.59%;
}

.desktop-panel-logo.logo-mark {
  width: min(250px, 70vw);
  margin-bottom: 0;
}

/* Area: 6th "coming soon" card (non-link) */
.area-card-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 220, 186, 0.5);
  border-radius: var(--radius-card);
  background: #2f3142;
  aspect-ratio: 193 / 160;
  color: rgba(255, 253, 249, 0.72);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.02em;
}

/* Area: nationwide network appeal numbers */
.area-appeal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 32px;
}

.area-appeal-icon {
  width: 35px;
  height: 28px;
}

.area-appeal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.area-appeal-deco {
  flex: 0 0 auto;
  width: clamp(36px, 11vw, 70px);
  height: auto;
}

.area-appeal-deco-right {
  transform: scaleY(-1) rotate(180deg);
}

.area-appeal-figure {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 214px;
  text-align: center;
}

.area-appeal-figure-label {
  color: var(--color-charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.area-appeal-figure-number {
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 40px;
}

.area-appeal-figure-number .unit {
  font-size: 20px;
}

.area-appeal-figure-number .num {
  font-size: 40px;
}

.area-appeal-divider {
  width: 100%;
  height: 2px;
  margin: 0;
  background: var(--color-gold);
}

.area-appeal-cast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
}

.area-appeal-cast .area-appeal-figure-number {
  line-height: 40px;
}

.area-appeal-cast .area-appeal-figure-number .num {
  font-size: 40px;
}

.area-appeal-cast .area-appeal-figure-number .unit {
  font-size: 20px;
}

.area-appeal-cast-label {
  color: var(--color-charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.9px;
  text-align: center;
  white-space: nowrap;
}

/* Group page: support hero (photo header) */
.group-support-hero {
  position: relative;
  padding: 48px 20px 24px;
  overflow: hidden;
  color: var(--color-paper);
}

.group-support-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-support-hero-bg + .group-support-hero-overlay {
  position: absolute;
  inset: 0;
  background: #796d6d;
  mix-blend-mode: multiply;
}

.group-support-hero-content {
  position: relative;
  z-index: 1;
}

.group-support-hero .section-label {
  color: var(--color-paper);
}

.group-support-hero h1 {
  color: var(--color-paper);
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}

.group-support-hero p {
  margin-top: 4px;
  color: var(--color-paper);
  font-size: 15px;
  line-height: 1.87;
}

/* Group page: intro + support topic cards */
.group-support-section {
  padding: 24px 20px 0;
  background:
    linear-gradient(165deg, rgba(253, 237, 255, 0.9) 17%, rgba(247, 239, 254, 0.9) 49%, rgba(206, 210, 255, 0.9) 75%);
}

.group-support-intro {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.87;
}

.group-support-list {
  display: grid;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.group-support-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.group-support-card-image {
  width: 100%;
  aspect-ratio: 390 / 215;
  display: block;
  object-fit: cover;
}

.group-support-card-content {
  padding: 20px;
}

.group-support-card-content h2 {
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

.group-support-card-content p {
  margin-top: 12px;
  color: var(--color-charcoal);
  font-size: 15px;
  line-height: 1.87;
}

.group-support-outro {
  max-width: 640px;
  margin: 24px auto 0;
  padding-bottom: 48px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.87;
}

.group-influence-section {
  padding: 48px 20px;
  background:
    linear-gradient(165deg, rgba(253, 237, 255, 0.9) 17%, rgba(247, 239, 254, 0.9) 49%, rgba(206, 210, 255, 0.9) 75%);
}

.group-influence-section .section-heading {
  max-width: 640px;
  margin: 0 auto 24px;
}

.group-influence-section .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
}

.group-influence-section .section-heading > p:not(.section-label) {
  line-height: 28px;
}

.group-influence-section .group-support-card {
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .group-support-card-image {
    aspect-ratio: 640 / 260;
  }
}

/* === 応募導線 準備中につき一時非表示 (2026-07-23) === */
.desktop-line-cta,
.desktop-web-cta,
.fixed-bottom-cta-buttons,
.final-cta-section,
.day-shop-calendar,
#day-calendar-dialog,
.qa-pending-hide {
  display: none !important;
}
/* === ここまで === */
