@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  
  --ink: #251900;
  --brown: #5b3a00;
  --muted: #76551a;
  --gold: #ffd84d;
  --orange: #ffad3b;
  --cream: #fff7cf;
  --cream-strong: #fff0a8;
  --white-section: #fffef9;
  --line: rgba(190, 125, 0, 0.28);
  --glass: #ffffff;
  --shadow: 0 22px 60px rgba(130, 80, 0, 0.13);
  --pink:#ff00c8;
  --pink-soft:#ffe2f7;
  --pink-line:rgba(255,0,200,.25);
  --pink-shadow:rgba(255,0,200,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Outfit', 'Noto Sans JP', system-ui, sans-serif;
  background: #ffe76f;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(210,150,30,0.15);
  background: rgba(255, 250, 234, 0.72);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { font-weight: 900; letter-spacing: -0.04em; text-decoration: none; }
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #674700;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
}
.nav-links a:hover { background: rgba(255,216,77,0.34); }

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 6vw, 64px);
  padding: clamp(36px, 7vw, 72px) 0 clamp(56px, 9vw, 96px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(190,125,0,0.18);
  background: rgba(255,255,255,0.62);
  color: #7b5200;
  font-size: 0.88rem;
  font-weight: 800;
}
h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-name-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 26px);
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-name-row h1 { margin: 0; }
.hero-sign {
  width: clamp(132px, 22vw, 230px);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,0,200,.38)) drop-shadow(0 8px 18px rgba(255,0,200,.18));
  transform: rotate(-4deg);
  pointer-events: none;
  opacity: 0.5;
}
.lead-wrap{
position: relative;
}

.hero-sign-bg{
position: absolute;

left: 50%;
top: 50%;

transform:
translate(-50%, -50%)
rotate(-8deg);

width: clamp(220px, 34vw, 420px);

opacity: 0.10;

z-index: 0;

pointer-events: none;

filter:
drop-shadow(0 0 12px rgba(255, 0, 180, .15));
}

.lead{
position: relative;
z-index: 1;
}


.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--brown);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.95;
}
.hero-actions, .button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #2a1e00;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(220,145,0,.22);
}
.stream-btn {
  color: #2a1e00;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 28px var(--pink-shadow);
}
.btn-secondary {
  border: 1px solid rgba(190,125,0,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--brown);
}
.btn-dark { background: #2a1e00; color: #fff8d6; }

.hero-visual { position: relative; width: min(100%, 420px); margin-inline: auto; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  background: #fff0a8;
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 28px 70px rgba(128,88,0,.24);
}
.section {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--white-section);
  box-shadow: none;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(180, 125, 0, 0.22);
}

/* =========================
   SECTION COLOR MAP
   ここだけを変更すれば、各エリアの背景色を個別に変更できます。
   ボタン・リンクカード・グッズカードの色とは分離しています。

   Hero: 白
   Wishlist: 白（写真・自己紹介の次のエリア）
   Links: 薄黄色
   Goods: 白
   Schedule: 薄黄色
   Footer: 白
========================= */
.section-white { background: #fffef9; }
.section-yellow { background: #fff7cf; }
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 78px) 0;
}
.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 54px);
}
.section-title { display: flex; flex-direction: column; gap: 12px; }
.section-title-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(190,125,0,.18);
}
.section-title-row { display: flex; align-items: center; gap: 10px; }
.icon-bubble {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  width: auto;
  padding: 0 10px;
  height: 38px;
  border-radius: 16px;
  color: #a80086;
  background: var(--pink-soft);
}
h2 { margin: 0; font-size: clamp(1.35rem, 2.3vw, 1.9rem); letter-spacing: -0.025em; }
.section-title p, .note, .card p { margin: 0; color: var(--muted); font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; line-height: 1.8; }

.sns-grid, .goods-grid { display: grid; gap: 16px; }
.sns-grid { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }
.goods-grid { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.card, .sns-card, .goods-shell, .link-panel, .calendar-shell {
  border: 1px solid rgba(190,125,0,.22);
  background: var(--glass);
  box-shadow: 0 14px 32px rgba(140,90,0,.08);
}
.card { padding: 22px; border-radius: 28px; }
.card .icon-bubble { margin-bottom: 16px; }
.card h3, .goods-item h3 { margin: 0 0 8px; font-size: .98rem; }
.sns-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 16px;
  border-radius: 26px;
  text-decoration: none;
  transition: transform .2s ease;
}
.sns-card:hover, .goods-item:hover { transform: translateY(-4px); }
.sns-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 18px; font-weight: 900; }
.sns-card strong { display: block; font-size: .95rem; }
.sns-card small { display: block; color: #7a5e18; font-size: .76rem; }

.goods-shell, .calendar-shell {
  border-radius: 34px;
  padding: 22px;
  background: #fff7cf;
}
.goods-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 20px; }
.eyebrow { margin: 0 0 4px; color: #b87500; font-weight: 900; letter-spacing: .06em; font-size: .76rem; }
.goods-head h3 { margin: 0; font-size: 1.35rem; }
.goods-item {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 12px;
  border: 1px solid rgba(210,150,30,.18);
  border-radius: 28px;
  background: #ffffff;
  text-decoration: none;
  transition: transform .2s ease;
}
.goods-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 22px; }
.goods-item div { padding-top: 12px; }
.goods-item p { margin: 0; color: #8a6418; font-size: .78rem; line-height: 1.55; }
.goods-item .price { margin-top: 8px; color: #c47a00; font-weight: 900; font-size: .9rem; }

.note-box { margin-top: 20px; padding: 18px; border: 1px solid rgba(210,150,30,.18); border-radius: 26px; background: #ffffff; }
.calendar-shell { padding: 12px; box-shadow: var(--shadow); }
.calendar-frame { overflow: hidden; border-radius: 26px; background: #fff; padding: 8px; }
.calendar-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 13px; }
.calendar-head p { margin: 0; }
.calendar-head strong { display: block; font-size: 1.08rem; }
.pill { padding: 6px 12px; border-radius: 999px; background: rgba(255,216,77,.38); color: #6a4a0f; font-size: .76rem; font-weight: 900; }
.calendar-embed { position: relative; height: 520px; overflow: hidden; border-radius: 22px; background: #fff7d7; }
.calendar-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.link-panel {
  padding: clamp(22px, 4vw, 30px);
  border-radius: 34px;
  background: #fff7cf;
}
.link-panel h3 { margin: 0 0 10px; font-size: clamp(1.18rem, 2vw, 1.55rem); }
.link-panel p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; line-height: 1.8; }

.btn.is-live { position: relative; animation: livePulse 1.7s ease-in-out infinite; }
.btn.is-live::before { content: ''; width: 9px; height: 9px; border-radius: 999px; background: #ff3b30; box-shadow: 0 0 0 6px rgba(255,59,48,.14); }
@keyframes livePulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }

.title-decoration {
  color: var(--pink);
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .02em;
  text-shadow: 0 0 10px rgba(255,0,200,.22);
}
.btn { transform-origin: center; }
.btn:hover {
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 18px 34px rgba(255,0,200,.18);
}
.stream-btn.is-live {
  background: linear-gradient(135deg, #ff2a8a, #ff00c8, #ff5a7a);
  color: #fff;
  animation: liveBeat 1.05s ease-in-out infinite, liveGlow 1.6s ease-in-out infinite;
}
.stream-btn.is-live::after {
  content: '';
}
@keyframes liveBeat {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.06); }
  60% { transform: scale(.99); }
}
@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,200,.38), 0 14px 28px rgba(255,0,140,.25); }
  50% { box-shadow: 0 0 0 9px rgba(255,0,200,0), 0 18px 40px rgba(255,0,200,.42); }
}
.sparkle {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  color: var(--pink);
  font-size: 16px;
  text-shadow: 0 0 10px rgba(255,0,200,.45);
  animation: sparkleFloat .8s ease-out forwards;
}
@keyframes sparkleFloat {
  from { transform: translate(-50%, -50%) scale(.6) rotate(0deg); opacity: .95; }
  to { transform: translate(-50%, -120%) scale(1.35) rotate(24deg); opacity: 0; }
}

.footer { padding: 30px 16px; text-align: center; color: #9a7c2a; font-size: .76rem; }

@media (max-width: 860px) {
  .nav { align-items: flex-start; padding: 13px 0; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero, .two-col { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; max-width: 360px; }
  .sns-grid { grid-template-columns: 1fr; }
  .goods-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .goods-head { align-items: flex-start; flex-direction: column; }
  .calendar-embed { height: 430px; }
}

@media (max-width: 520px) {
  .hero-name-row { gap: 10px; }
  .hero-sign { width: min(42vw, 150px); }
  .nav-links a { padding: 8px 10px; font-size: .8rem; }
  .hero-actions, .button-row { flex-direction: column; }
  .btn { width: 100%; }
  .section-inner, .hero, .nav { width: min(100% - 24px, 1120px); }
  .calendar-shell, .goods-shell { border-radius: 26px; padding: 12px; }
  .calendar-frame { border-radius: 22px; }
  .goods-grid { grid-template-columns: 1fr; gap: 12px; }
  .goods-item {
    grid-template-columns: 96px 1fr;
    grid-template-rows: none;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 22px;
  }
  .goods-item img {
    width: 96px;
    height: 96px;
    aspect-ratio: auto;
    border-radius: 18px;
  }
  .goods-item div { padding-top: 0; }
  .goods-item h3 { margin-bottom: 4px; }
  .goods-item p { font-size: .74rem; }
  .goods-item .price { margin-top: 5px; }
}
