:root {
  --pink-1: #fff7fb;
  --pink-2: #ffe9f2;
  --pink-3: #ffd6e7;
  --pink-4: #ffb8d3;
  --pink-5: #f48bb6;
  --white: #ffffff;
  --text: #7a4a63;
  --text-strong: #5f3147;
  --shadow: 0 12px 35px rgba(238, 159, 193, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 245, 250, 0.82)),
    url("サイト背景.png") center center / cover no-repeat fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.45), transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(255, 214, 231, 0.28), transparent 20%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.35), transparent 20%);
  z-index: 0;
}

.petal-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.petal {
  position: absolute;
  top: -80px;
  left: 0;
  width: 42px;
  height: auto;
  opacity: 0.94;
  will-change: transform, opacity, filter;
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  filter:
    drop-shadow(0 5px 10px rgba(237, 170, 197, 0.22))
    saturate(1.02);
}

.gyro-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ff96c2, #f7a6c7, #ffbfd8);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gyro-button:hover {
  transform: translateY(-2px);
}

.gyro-button.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero,
.content,
.site-footer,
.ticket-page {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 48px 20px 36px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-sub {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 194, 221, 0.8);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--pink-5);
  box-shadow: var(--shadow);
}

.main-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.drop-title {
  display: inline-block;
  opacity: 0;
  transform: translateY(-90px);
  animation: dropIn 1s cubic-bezier(0.2, 0.9, 0.25, 1.15) forwards;
  background: linear-gradient(180deg, #ff7fb5 0%, #f29fc0 40%, #d875a2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 18px rgba(255, 172, 204, 0.18);
  line-height: 1.15;
}

.t1 {
  animation-delay: 0.15s;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
}

.t2 {
  animation-delay: 0.7s;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
}

.hero-copy {
  margin: 24px auto 0;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-strong);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.2s;
}

.copy-line {
  display: block;
}

.copy-line-sp {
  display: none;
}

.creator-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.creator-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 214, 231, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 18px 18px 20px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-110px);
  animation: dropCard 0.95s cubic-bezier(0.2, 0.9, 0.25, 1.15) forwards;
}

.c1 {
  animation-delay: 1.5s;
}

.c2 {
  animation-delay: 2s;
}

.c3 {
  animation-delay: 2.5s;
}

.creator-photo-wrap {
  position: relative;
  width: 100%;
}

.creator-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 22px rgba(240, 162, 196, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.creator-ig-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 214, 231, 0.92);
  box-shadow: 0 4px 10px rgba(240, 162, 196, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.creator-ig-icon {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.creator-name {
  margin: 14px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-strong);
}

.creator-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  will-change: transform;
}

.creator-link:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 36px rgba(240, 162, 196, 0.28);
}

.creator-link:active {
  transform: translateY(-2px) scale(0.98);
}

.creator-link:focus-visible {
  outline: 3px solid rgba(244, 139, 182, 0.45);
  outline-offset: 4px;
}

.creator-link:hover .creator-photo {
  transform: scale(1.02);
  box-shadow: 0 12px 26px rgba(240, 162, 196, 0.24);
}

.creator-link:hover .creator-ig-badge {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(240, 162, 196, 0.28);
}

.hero-buttons {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff96c2, #f7a6c7, #ffbfd8);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  border: 1px solid rgba(255, 194, 221, 0.85);
}

.content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 72px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 220, 233, 0.98);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 28px;
  margin-bottom: 24px;
}

.glass-card h2,
.glass-card h3 {
  margin-top: 0;
  color: var(--text-strong);
}

.glass-card h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.glass-card h3 {
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.intro-card {
  position: relative;
  overflow: hidden;
}

.intro-card::after {
  content: none;
}

.highlight-text {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d96b9e;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-two > .glass-card:only-child {
  grid-column: 1 / -1;
}

.price-line {
  font-size: 1.08rem;
  line-height: 1.8;
}

.price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e86ea5;
}

.notes-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 252, 0.95);
  border: 1px dashed rgba(243, 150, 193, 0.7);
}

.inline-link {
  display: inline-block;
  margin-top: 10px;
  color: #df5d97;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(223, 93, 151, 0.4);
}

.inline-link:hover {
  opacity: 0.75;
}

.host-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.host-list span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #ffe6f0);
  border: 1px solid rgba(255, 210, 228, 0.95);
  font-weight: 700;
}

.notice-list {
  padding-left: 1.4em;
  margin: 0;
  line-height: 1.95;
}

.site-footer {
  text-align: center;
  padding: 18px 20px 36px;
  color: #b17492;
  font-size: 0.95rem;
}

.ticket-entry-card .btn {
  margin-top: 6px;
}

.ticket-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 20px 72px;
}

.ticket-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.ticket-card {
  background: rgba(255, 245, 250, 0.88);
  border: 1px solid rgba(255, 214, 231, 0.95);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}

.ticket-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ticket-badge {
  min-width: 74px;
  height: 74px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7a5c7, #ffbdd5);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.ticket-badge.free {
  background: linear-gradient(135deg, #ff92ba, #ffc5d8);
}

.ticket-title {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-strong);
}

.ticket-time {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.ticket-note {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--text);
}

.ticket-action {
  margin-top: 18px;
}

.ticket-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff96c2, #f7a6c7, #ffbfd8);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.ticket-link-btn:hover {
  transform: translateY(-2px);
}

.ticket-link-btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
  filter: grayscale(0.2);
}

.back-top-link {
  display: inline-block;
  margin-top: 26px;
  color: #df5d97;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(223, 93, 151, 0.4);
}

.consent-card {
  margin-top: 24px;
}

.consent-lead {
  margin-top: 0;
  line-height: 1.9;
}

.notice-open-btn {
  margin-top: 8px;
}

.consent-links {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
  background: rgba(255, 250, 252, 0.95);
  border: 1px solid rgba(255, 214, 231, 0.9);
  border-radius: 18px;
  padding: 14px 16px;
}

.consent-checkbox {
  margin-top: 0.35em;
  width: 18px;
  height: 18px;
  accent-color: #f48bb6;
  flex: 0 0 auto;
}

.consent-note {
  margin: 14px 0 0;
  font-size: 0.94rem;
  color: #9a6c82;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.notice-modal.is-open {
  display: block;
}

.notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(99, 54, 76, 0.42);
  backdrop-filter: blur(3px);
}

.notice-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  max-height: 86vh;
  overflow: auto;
  margin: 7vh auto 0;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 220, 233, 0.98);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(155, 87, 117, 0.24);
}

.notice-modal__body {
  padding: 28px 24px 24px;
}

.notice-modal__title {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: 1.8rem;
}

.notice-modal__close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 240, 246, 0.98);
  color: var(--text-strong);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.notice-modal__list {
  margin-bottom: 0;
}

.notice-modal__actions {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.notice-modal__check {
  margin: 0;
}

.important-note {
  color: #e53935;
  font-weight: 700;
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }

  72% {
    opacity: 1;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropCard {
  0% {
    opacity: 0;
    transform: translateY(-110px) scale(0.94);
  }

  75% {
    opacity: 1;
    transform: translateY(16px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .creator-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .glass-card {
    padding: 22px;
  }

  .creator-card {
    padding: 10px 10px 14px;
  }

  .creator-name {
    margin-top: 10px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .t1 {
    font-size: clamp(1.65rem, 7.2vw, 2.15rem);
  }

  .t2 {
    font-size: clamp(1.9rem, 8.2vw, 2.55rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .copy-line-pc {
    display: none;
  }

  .copy-line-sp {
    display: block;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }

  .creator-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .creator-card {
    padding: 8px 8px 12px;
  }

  .creator-name {
    font-size: 0.82rem;
    margin-top: 8px;
  }

  .creator-ig-badge {
    width: 26px;
    height: 26px;
    right: 6px;
    bottom: 6px;
    border-radius: 8px;
  }

  .creator-ig-icon {
    width: 15px;
    height: 15px;
  }

  .gyro-button {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .petal {
    width: 26px;
  }

  .ticket-card {
    padding: 18px 16px 16px;
  }

  .ticket-head {
    align-items: flex-start;
  }

  .ticket-badge {
    min-width: 62px;
    height: 62px;
    font-size: 1.2rem;
  }

  .ticket-title {
    font-size: 1.1rem;
  }

  .ticket-time {
    font-size: 0.98rem;
  }

  .ticket-link-btn {
    min-height: 54px;
    font-size: 1rem;
  }

  .notice-modal__dialog {
    width: min(94vw, 760px);
    margin-top: 4vh;
    max-height: 90vh;
  }

  .notice-modal__body {
    padding: 20px 16px 18px;
  }

  .notice-modal__title {
    font-size: 1.45rem;
  }
}