    :root{
      --bgA:#fff4f6;
      --bgB:#fffdfe;
      --bgC:#f3fdff;
      --ink:#1f2937;
      --muted:#6b7280;
      --card:#ffffff;
      --card2:#ffffffcc;
      --border:#00000012;
      --p:#ff4d6d;
      --p2:#ffb703;
      --p3:#4cc9f0;
      --shadow: 0 18px 50px rgba(0,0,0,0.12);
      --shadow2: 0 10px 26px rgba(0,0,0,0.10);
      --r: 18px;
      --r2: 26px;
      --max: 1100px;
    }
    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    html, body{
      width: 100%;
      overflow-x: hidden;
      overscroll-behavior-x: none;
    }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic UI", "Meiryo", Arial, sans-serif;
      line-height:1.65;
      color:var(--ink);
      background:
        radial-gradient(900px 520px at 15% 15%, rgba(255,77,109,0.08), transparent 60%),
        radial-gradient(900px 520px at 85% 20%, rgba(76,201,240,0.14), transparent 60%),
        radial-gradient(900px 520px at 55% 95%, rgba(255,183,3,0.10), transparent 62%),
        linear-gradient(135deg, var(--bgA), var(--bgB) 55%, var(--bgC));
      min-height: 100vh;
    }
    /* メニューが開いているときはスクロール完全無効 */
    body.menu-open{
      overflow: hidden !important;
      position: fixed !important;
      width: 100% !important;
      height: 100% !important;
      touch-action: none !important;
    }
    html.menu-open{
      overflow: hidden !important;
    }
    img{ max-width: 100%; height: auto; }
    a{ color:inherit; }
    .container{
      width: min(var(--max), calc(100% - 28px));
      margin-inline:auto;
    }
    header{
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding: 10px 0;
      min-width: 0;
      position: relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap: 10px;
      text-decoration:none;
      font-weight: 950;
      letter-spacing: 0.02em;
      white-space: nowrap;
      flex: 0 0 auto;
    }
    .brand span{ font-size: 15px; }
    .brand-icon{
      width: 34px;
      height: 34px;
      border-radius: 12px;
      object-fit: cover;
      flex: none;
      box-shadow: 0 10px 25px rgba(255,77,109,0.20);
      background: #fff;
    }

/* ===== ハンバーガーボタン ===== */
.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .15s ease;
  z-index: 200;
  position: relative;
}
.menu-toggle:hover{ transform: scale(1.05); }
.menu-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
  opacity: 0;
}
.menu-toggle.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}.nav-scroller{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  padding-bottom: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-scroller::-webkit-scrollbar{ display:none; }
.nav-links{
  display:flex;
  flex-wrap: nowrap;
  gap: 8px;
  list-style:none;
  margin:0;
  padding:0;
  width: max-content;
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(31,41,55,0.92);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  white-space: nowrap;
  transition: transform .12s ease, filter .12s ease;
}
.nav-links a:hover{ transform: translateY(-1px); filter: brightness(1.02); }/* ===== SNSリンク（PC版右端） ===== */
.sns-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.sns-links a, .header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: transform .12s ease, filter .12s ease;
  text-decoration: none;
  cursor: pointer;
}
.header-btn {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
  color: var(--p);
}
.header-btn.logged-in {
  background: var(--bgA);
  color: var(--ink);
  border-color: rgba(255,77,109,0.3);
}
.sns-links a:hover, .header-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.sns-links svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
}/* ===== スマホ版フルスクリーンメニュー ===== */
@media (max-width: 640px){
  .menu-toggle{
    display: flex;
  }
  .nav-scroller{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: 
      radial-gradient(600px 400px at 20% 30%, rgba(255,77,109,0.15), transparent 60%),
      radial-gradient(600px 400px at 80% 70%, rgba(76,201,240,0.15), transparent 60%),
      radial-gradient(500px 300px at 50% 50%, rgba(255,183,3,0.10), transparent 60%),
      #ffffff;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* コンテンツが多いので上詰め */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    overflow-y: auto; /* 縦スクロール許可 */
    padding: 100px 30px 60px;
    touch-action: auto;
  }
  .nav-scroller.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
  }
  .nav-links li{
    width: 100%;
  }
  .nav-links a{
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    padding: 18px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links a:hover{
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    border-color: transparent;
  }
  .nav-scroller::before{
    content: "MENU";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  /* SNSリンク（モバイルメニュー下部） */
  .sns-links-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    margin-top: 40px;
    flex-shrink: 0;
  }
  .sns-links-mobile a, .mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    color: rgba(31,41,55,0.92);
    cursor: pointer;
  }
  .sns-links-mobile a:hover, .mobile-auth-btn:hover {
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    border-color: transparent;
  }
  .sns-links-mobile svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  /* PC版のSNSリンクをモバイルで非表示 */
  .sns-links {
    display: none;
  }
  /* モバイル用ログインボタンエリア */
  .mobile-auth-area {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    padding-bottom: 40px;
    flex-shrink: 0;
  }
  .mobile-auth-btn.logged-in {
    background: var(--bgA);
    color: var(--p);
  }
}/* PC版でSNSリンクを表示 */
@media (min-width: 641px) {
  .sns-links-mobile, .mobile-auth-area {
    display: none;
  }
}.section{ padding: 16px 0 30px; }
.hero{ padding: 18px 0 10px; }
.hero-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn.primary{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--p), var(--p2));
  box-shadow: 0 16px 35px rgba(255,77,109,0.22);
}/* ===== Gallery（フル幅＋左揃えスナップ） ===== */
.gallery{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}
.gallery-track{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 78vw, 560px);
  gap: 10px;
  padding: 6px 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar{ display: none; }
.shot{
  position: relative;
  display:block;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  outline: none;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(600px 220px at 30% 20%, rgba(76,201,240,0.18), transparent 60%),
    radial-gradient(600px 220px at 70% 40%, rgba(255,77,109,0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,183,3,0.12), rgba(255,77,109,0.08));
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform .12s ease, filter .12s ease;
}
.shot:hover{ transform: translateY(-2px); filter: brightness(1.02); }
.shot:focus-visible{
  box-shadow: 0 0 0 4px rgba(255,77,109,0.25), 0 14px 30px rgba(0,0,0,0.10);
}
.shot img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}
.shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.45) 80%);
  pointer-events:none;
}
.shot-cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  color: #fff;
  pointer-events: none;
}
.cap-title{
  margin:0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.01em;
}
.cap-sub{
  margin: 2px 0 0;
  font-size: 12px;
  opacity: 0.92;
}
.badge{
  flex:none;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
}/* 左右ボタン */
.gallery-controls{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}
.gallery-prev, .gallery-next{
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: none;
  font-size: 32px;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all .2s ease;
}
.gallery-prev:hover, .gallery-next:hover{
  background: rgba(255,255,255,0.95);
  transform: scale(1.1);
}/* ドットインジケータ */
.gallery-dots{
  display:flex;
  gap: 10px;
  justify-content:center;
  align-items:center;
  padding: 12px 0;
  background: transparent;
  border: none;
}
.dot{
  appearance:none;
  border: none;
  cursor:pointer;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31,41,55,0.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  transition: transform .12s ease, background .12s ease;
}
.dot:hover{ transform: translateY(-1px); }
.dot:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,77,109,0.18), inset 0 0 0 1px rgba(0,0,0,0.06);
}
.dot[aria-current="true"]{
  background: linear-gradient(135deg, var(--p), var(--p2));
  box-shadow: 0 10px 20px rgba(255,77,109,0.18);
}.panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-header{
  padding: 16px 16px 10px;
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(255,77,109,0.10), transparent 60%),
    radial-gradient(900px 240px at 90% 20%, rgba(76,201,240,0.12), transparent 60%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tts-title{
  margin:0;
  font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: 0.01em;
  display:flex;
  align-items:center;
  gap: 10px;
}
.tts-emoji{
  font-size: 20px;
  line-height: 1;
  flex: none;
  transform: translateY(1px);
}
.help{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.panel-body{ padding: 14px 16px 16px; }
.tts-input{
  width:100%;
  min-height: 130px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.55;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.16);
  outline:none;
  resize: vertical;
  background: #fff;
  color: #111827;
  caret-color: #111827;
}
.tts-input::placeholder{ color: rgba(17,24,39,0.45); }
.tts-input:focus{
  border-color: rgba(255,77,109,0.55);
  box-shadow: 0 0 0 4px rgba(255,77,109,0.18);
}
.btn-primary{
  width:100%;
  margin-top: 12px;
  border: none;
  color:#fff;
  background: linear-gradient(135deg, var(--p), var(--p2));
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 950;
  font-size: 16px;
  cursor:pointer;
  box-shadow: 0 16px 35px rgba(255,77,109,0.22);
  transition: transform .12s ease, filter .12s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn-primary:disabled{
  opacity: 0.65;
  cursor: not-allowed;
  transform:none;
  box-shadow:none;
}
#audio-player{ width:100%; margin-top: 12px; border-radius: 12px; }/* ===== ダウンロードボタン ===== */
.audio-controls{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.btn-download{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .12s ease, background .12s ease;
  cursor: pointer;
}
.btn-download:hover{
  transform: translateY(-1px);
  background: #f9fafb;
}
.btn-download:disabled{
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-download svg{
  width: 18px;
  height: 18px;
  flex: none;
}
.loading{
  display:none;
  margin-top: 10px;
  color: rgba(255,77,109,0.95);
  font-size: 13px;
  font-weight: 900;
}
#status{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(31,41,55,0.92);
  word-break: break-word;
}
/* 再生ボタンのオーバーレイデザイン */
.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
}

/* 中央の三角形をCSSだけで描画 */
.play-overlay-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%); /* ほんの少し右に寄せて見た目を調整 */
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff; /* 白い三角形 */
}

.play-overlay-btn:hover {
  background: rgba(225, 29, 72, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-overlay-btn.hidden {
  display: none;
}

/* 文字数制限表示 */
.char-count-wrapper {
  text-align: right;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.char-count-wrapper .warning {
  color: #ef4444;
}
.section-title{
  margin: 0 0 14px;
  text-align:center;
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: 0.01em;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  min-width: 0;
}
.card{
  grid-column: span 6;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .12s ease, filter .12s ease;
  min-width: 0;
}
.card:hover{ transform: translateY(-2px); filter: brightness(1.01); }
.card h3{
  margin:0;
  padding: 12px 14px;
  color:#fff;
  font-size: 15px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--p), var(--p3));
}
.card p{
  margin:0;
  padding: 12px 14px 14px;
  color: rgba(31,41,55,0.84);
  font-size: 14px;
}
.media{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  background: #0b1020;
}
.media iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 動画をコンテナにフィット（歪みなし） */
  border: none;
}
.membership{
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255,77,109,0.92), rgba(255,183,3,0.88));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r2);
  color:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.membership .inner{
  padding: 18px;
  text-align:center;
}
.membership h2{
  margin:0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 950;
}
.membership p{
  margin: 0 0 14px;
  opacity: 0.95;
  font-size: 14px;
}
.btn-secondary{
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.18);
  color:#fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  margin-top: 10px;
}
.btn-secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.22);
}
.btn-white {
  border: none;
  background: #fff;
  color: var(--p);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-1px);
  background: #fdfdfd;
}
footer{
  padding: 22px 0 34px;
  text-align:center;
  color: rgba(31,41,55,0.70);
  font-size: 13px;
}
@media (max-width: 860px){
  .card{ grid-column: span 12; }
  .gallery-track{ padding-inline: 14px; }
  .gallery-controls{ padding: 0 10px; }
  .gallery-prev, .gallery-next{ width: 44px; height: 44px; font-size: 28px; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
  .card:hover, .btn:hover, .btn-primary:hover, .shot:hover{ transform:none; }
  .gallery-track{ scroll-behavior: auto; }
}/* ===== ライブカードコンテナ（中央揃え修正） ===== */
#live-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}.live-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid var(--border);
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 400px;
  flex: 1 1 300px;
}
.live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.live-card.past {
  opacity: 0.65;
}
.live-card-header {
  padding: 16px 18px 12px;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
}
.live-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.live-card-platform {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.live-card-body {
  padding: 14px 18px 18px;
}
.live-card-time {
  font-size: 15px;
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 6px;
}
.live-card-status {
  font-size: 13px;
  color: var(--muted);
}
.live-card.past .live-card-status::after {
  content: "（終了）";
  color: var(--muted);
  margin-left: 6px;
}/* スマホ対応（中央揃え強化） */
@media (max-width: 600px) {
  #live-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
  }
  .live-card {
    max-width: 100%;
    flex: none;
    width: calc(100% - 8px);
  }
}
/* Blog cards (Top) */
.blog-cards{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  width:100%;
  margin:0 auto;
}

.blog-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  border:1px solid var(--border);
  display:block;
  text-decoration:none;
  color:inherit;
  width:100%;
  max-width:400px;
  flex:1 1 300px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-thumb{ aspect-ratio:16/9; background:#0b1020; }
.blog-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.blog-body{ padding:14px 18px 18px; }
.blog-title{ margin:0 0 8px; font-size:16px; font-weight:950; }
.blog-date{ margin:0; font-size:13px; color: var(--muted); font-weight:900; }
/* ===== 新規追加: SNSリンク紹介欄のスタイル ===== */
#sns-section {
  background: linear-gradient(135deg, rgba(255,77,109,0.05), rgba(76,201,240,0.05));
  border-top: 1px solid var(--border);
  padding: 30px 0 20px;
}
.sns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.sns-list li {
  flex: 1 1 200px;
  max-width: 300px;
}
.sns-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
  transition: transform .12s ease, filter .12s ease;
}
.sns-list a:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.sns-list svg {
  width: 24px;
  height: 24px;
  fill: var(--p);
} 