/* ============================================
   Studio Pop デモ - ポップ＆カラフルテーマ
   STUDIO Hデモサイト「ポップテイスト見本」
   2026-05-16 Page実装
   ============================================ */

.theme-pop {
  --pop-bg:        #fffaf3;
  --pop-bg-cream:  #fef3e2;
  --pop-text:      #1a1a2e;
  --pop-text-soft: #4b5563;
  --pop-pink:      #ff6b9d;
  --pop-yellow:    #fbbf24;
  --pop-cyan:      #06b6d4;
  --pop-purple:    #a855f7;
  --pop-green:     #10b981;
  --pop-red:       #ef4444;
  --pop-dark:      #1a1a2e;

  font-family: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4",
               -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Yu Gothic", "Meiryo", sans-serif;
  color: var(--pop-text);
  background: var(--pop-bg);
}

.theme-pop h1, .theme-pop h2, .theme-pop h3 {
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* ============================================
   デモ告知バー
   ============================================ */
.pop-demo-notice {
  background: linear-gradient(90deg, #fbbf24, #ff6b9d);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   ヘッダー
   ============================================ */
.pop-header {
  background: #fff;
  padding: 16px 0;
  border-bottom: 3px solid var(--pop-pink);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.12);
}
.pop-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pop-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pop-logo-mark svg {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.4));
  animation: pop-spin 12s linear infinite;
}
@keyframes pop-spin {
  to { transform: rotate(360deg); }
}
.pop-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--pop-text);
  letter-spacing: 0.01em;
}
.pop-logo-pop {
  background: linear-gradient(90deg, var(--pop-pink), var(--pop-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}
.pop-nav {
  display: flex;
  gap: 28px;
}
.pop-nav a {
  font-size: 15px;
  color: var(--pop-text);
  font-weight: 700;
  position: relative;
  padding: 4px 2px;
  transition: color 0.15s;
}
.pop-nav a:hover { color: var(--pop-pink); }
.pop-nav a:hover::after {
  content: "💕";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}

/* ボタン */
.pop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 3px solid transparent;
}
.pop-btn-lg { padding: 16px 32px; font-size: 16px; }
.pop-btn-pink {
  background: var(--pop-pink);
  color: #fff;
  border-color: var(--pop-pink);
  box-shadow: 0 6px 0 #c2185b;
}
.pop-btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #c2185b;
}
.pop-btn-pink:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #c2185b;
}
.pop-btn-purple {
  background: var(--pop-purple);
  color: #fff;
  border-color: var(--pop-purple);
  box-shadow: 0 6px 0 #7e22ce;
}
.pop-btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #7e22ce; }
.pop-btn-outline {
  background: #fff;
  color: var(--pop-text);
  border-color: var(--pop-text);
  box-shadow: 0 6px 0 var(--pop-text);
}
.pop-btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--pop-text); }
.pop-btn-line {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
  font-size: 13px;
  padding: 10px 18px;
  box-shadow: 0 4px 0 #05a847;
}
.pop-btn-line:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #05a847; }
.pop-btn-line-big {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
  padding: 16px 36px;
  font-size: 17px;
  box-shadow: 0 6px 0 #05a847;
}
.pop-btn-line-big:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #05a847; }

/* ============================================
   ヒーロー
   ============================================ */
.pop-hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--pop-bg);
  overflow: hidden;
}
.pop-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.pop-hero-bg svg {
  width: 100%;
  height: 100%;
}
.pop-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.pop-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pop-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  transform: rotate(-2deg);
}
.pop-badge-pink { background: var(--pop-pink); }
.pop-badge-yellow { background: var(--pop-yellow); color: var(--pop-text); transform: rotate(3deg); }
.pop-badge-cyan { background: var(--pop-cyan); transform: rotate(-1deg); }

.pop-hero-title {
  font-size: 56px;
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 900;
}
.pop-word-1 { color: var(--pop-pink); }
.pop-word-2 { color: var(--pop-cyan); }
.pop-word-3 { color: var(--pop-yellow); }
.pop-hero-lead {
  font-size: 16px;
  line-height: 2;
  color: var(--pop-text-soft);
  margin-bottom: 32px;
}
.pop-hero-lead strong {
  color: var(--pop-purple);
  background: linear-gradient(transparent 60%, #fde047 60%);
  padding: 0 4px;
}
.pop-hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pop-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pop-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 2px solid var(--pop-pink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pop-pink);
}
.pop-hero-svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  animation: pop-float 4s ease-in-out infinite;
}
@keyframes pop-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   セクション共通
   ============================================ */
.pop-section {
  padding: 90px 0;
  position: relative;
}
.pop-section-cream {
  background: var(--pop-bg-cream);
}
.pop-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.pop-section-eyebrow {
  font-size: 14px;
  color: var(--pop-pink);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pop-section-title {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.pop-section-lead {
  font-size: 15px;
  color: var(--pop-text-soft);
  line-height: 1.95;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ハイライト（インスタフィード風）
   ============================================ */
.pop-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pop-feed-item {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.pop-feed-item:hover {
  transform: scale(1.03) rotate(-1deg);
}
.pop-feed-1 { background: linear-gradient(135deg, #ff6b9d, #fbbf24); }
.pop-feed-2 { background: linear-gradient(135deg, #a855f7, #06b6d4); }
.pop-feed-3 { background: linear-gradient(135deg, #fbbf24, #ff6b9d); }
.pop-feed-4 { background: linear-gradient(135deg, #06b6d4, #a855f7); }
.pop-feed-5 { background: linear-gradient(135deg, #ff6b9d, #a855f7); }
.pop-feed-6 { background: linear-gradient(135deg, #fbbf24, #06b6d4); }

.pop-feed-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}
.pop-feed-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
}
.pop-feed-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.pop-feed-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.pop-feed-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   メニュー
   ============================================ */
.pop-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.pop-menu-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
  border: 4px solid transparent;
}
.pop-menu-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}
.pop-menu-pink { border-color: var(--pop-pink); box-shadow: 0 8px 0 #c2185b; }
.pop-menu-yellow { border-color: var(--pop-yellow); box-shadow: 0 8px 0 #d97706; }
.pop-menu-cyan { border-color: var(--pop-cyan); box-shadow: 0 8px 0 #0e7490; }
.pop-menu-purple { border-color: var(--pop-purple); box-shadow: 0 8px 0 #7e22ce; }
.pop-menu-emoji {
  font-size: 64px;
  margin-bottom: 12px;
  line-height: 1;
}
.pop-menu-name {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--pop-text);
}
.pop-menu-desc {
  font-size: 13px;
  color: var(--pop-text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.pop-menu-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--pop-pink);
  margin-bottom: 6px;
}
.pop-menu-stars {
  color: var(--pop-yellow);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============================================
   ストーリー
   ============================================ */
.pop-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pop-story-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 3px solid #f5e6f5;
  transition: all 0.2s ease;
}
.pop-story-card:hover {
  border-color: var(--pop-pink);
  transform: translateY(-4px);
}
.pop-story-visual {
  margin-bottom: 18px;
}
.pop-story-visual svg {
  width: 100%;
  height: auto;
  display: block;
}
.pop-story-title {
  font-size: 17px;
  color: var(--pop-text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.pop-story-text {
  font-size: 13px;
  color: var(--pop-text-soft);
  line-height: 1.85;
}

/* ============================================
   イベント
   ============================================ */
.pop-events-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pop-event-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
  border: 3px solid #fef3c7;
  transition: all 0.2s ease;
}
.pop-event-card:hover {
  border-color: var(--pop-yellow);
  transform: translateX(-4px);
  box-shadow: 8px 8px 0 var(--pop-yellow);
}
.pop-event-date {
  background: linear-gradient(135deg, var(--pop-pink), var(--pop-purple));
  color: #fff;
  padding: 14px 8px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
}
.pop-event-month {
  font-size: 12px;
  opacity: 0.9;
}
.pop-event-day {
  font-size: 32px;
  line-height: 1.1;
}
.pop-event-wkd {
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.pop-event-tag {
  display: inline-block;
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pop-event-title {
  font-size: 18px;
  color: var(--pop-text);
  margin-bottom: 8px;
}
.pop-event-text {
  font-size: 13px;
  color: var(--pop-text-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}
.pop-event-meta {
  font-size: 12px;
  color: var(--pop-text-soft);
  line-height: 1.7;
}
.pop-event-btn {
  background: var(--pop-yellow);
  color: var(--pop-text);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.15s;
}
.pop-event-btn:hover {
  background: var(--pop-pink);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   SNS
   ============================================ */
.pop-social {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
}
.pop-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pop-social-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}
.pop-social-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}
.pop-social-ig { border-color: var(--pop-pink); }
.pop-social-x { border-color: var(--pop-cyan); }
.pop-social-line { border-color: var(--pop-green); }
.pop-social-tt { border-color: var(--pop-purple); }

.pop-social-icon {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1;
}
.pop-social-num {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, var(--pop-pink), var(--pop-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pop-social-label {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 6px;
}
.pop-social-handle {
  font-size: 11px;
  opacity: 0.6;
  font-family: monospace;
}

/* ============================================
   お店情報
   ============================================ */
.pop-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pop-info-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  border: 4px solid transparent;
}
.pop-info-main {
  border-color: var(--pop-pink);
  box-shadow: 0 8px 0 #c2185b;
}
.pop-info-title {
  font-size: 22px;
  color: var(--pop-text);
  margin-bottom: 24px;
}
.pop-info-title-white { color: #fff; }
.pop-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.pop-info-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.pop-info-strong {
  font-size: 15px;
  color: var(--pop-text);
  font-weight: 700;
  margin-bottom: 4px;
}
.pop-info-sub {
  font-size: 12px;
  color: var(--pop-text-soft);
}
.pop-info-line {
  background: linear-gradient(135deg, #06c755, #04a847);
  border-color: #06c755;
  box-shadow: 0 8px 0 #038139;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pop-info-line-deco {
  font-size: 80px;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.15;
}
.pop-info-line-text {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.95);
}
.pop-info-line-mini {
  font-size: 12px;
  margin-top: 14px;
  opacity: 0.9;
  font-family: monospace;
}

/* ============================================
   フッター
   ============================================ */
.pop-footer {
  background: var(--pop-dark);
  color: #fff;
  margin-top: 80px;
  position: relative;
  padding-bottom: 30px;
}
.pop-footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-99%);
  pointer-events: none;
}
.pop-footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pop-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding: 60px 0 30px;
}
.pop-footer-logo {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
.pop-footer-tagline {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 22px;
}
.pop-footer-sns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pop-footer-sns-link {
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.15s;
}
.pop-footer-sns-link:hover {
  background: var(--pop-pink);
}
.pop-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.pop-footer-col h4 {
  font-size: 14px;
  color: var(--pop-yellow);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.pop-footer-col ul li {
  padding: 4px 0;
}
.pop-footer-col ul a {
  font-size: 13px;
  opacity: 0.85;
  transition: all 0.15s;
}
.pop-footer-col ul a:hover {
  opacity: 1;
  color: var(--pop-pink);
}
.pop-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  opacity: 0.6;
  line-height: 1.7;
}

/* ============================================
   ハンバーガー（ポップトーン）
   ============================================ */
.pop-hamburger span { background: var(--pop-pink); height: 3px; }
.pop-hamburger.is-active span { background: var(--pop-purple); }

/* ============================================
   画面下部・固定LINEボタン（ポップ）
   ============================================ */
.floating-line {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: #06c755;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.45),
              0 4px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-weight: 800;
  border: 3px solid #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-line-pop {
  background: linear-gradient(135deg, #06c755 0%, #05a847 100%);
  box-shadow: 0 6px 0 #038139, 0 12px 30px rgba(6, 199, 85, 0.5);
}
.floating-line-pop:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #038139, 0 16px 36px rgba(6, 199, 85, 0.55);
}
.floating-line-icon { flex-shrink: 0; display: block; }
.floating-line-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-line-strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.floating-line-sub {
  font-size: 10px;
  opacity: 0.95;
  margin-top: 2px;
}
/* 鼓動するハロー演出 */
.floating-line-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 3px solid #06c755;
  opacity: 0;
  animation: pop-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pop-pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 900px) {
  .pop-hero-inner,
  .pop-info-grid,
  .pop-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pop-hero-title { font-size: 42px; }
  .pop-section-title { font-size: 32px; }
  .pop-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .pop-social-grid { grid-template-columns: repeat(2, 1fr); }
  .pop-event-card {
    grid-template-columns: 80px 1fr;
  }
  .pop-event-btn { grid-column: 1 / -1; justify-self: start; }
  .pop-header-line { display: none; }

  /* ハンバーガー＆スライドメニュー */
  .hamburger { display: block; }
  .pop-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 28px 32px;
    box-shadow: -10px 0 30px rgba(255, 107, 157, 0.25);
    border-left: 4px solid var(--pop-pink);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 105;
    overflow-y: auto;
  }
  .pop-nav.is-open { transform: translateX(0); }
  .pop-nav a {
    display: block;
    padding: 18px 4px;
    font-size: 17px;
    color: var(--pop-text);
    border-bottom: 2px dashed #fde7f1;
    font-weight: 800;
  }
  .pop-nav a:hover::after { display: none; }

  /* 固定LINE：モバイルではフルワイド気味 */
  .floating-line {
    bottom: 14px;
    right: 14px;
    left: 14px;
    justify-content: center;
    padding: 14px 18px;
  }
  body { padding-bottom: 78px; }
}
@media (max-width: 540px) {
  .pop-feed-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pop-feed-emoji { font-size: 44px; }
  .pop-hero-title { font-size: 36px; }
}
