/* ===== CSS変数 ===== */
:root {
  /* きらめき☆ジェンヌ参考カラーパレット */
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --dark-mid:    #2A2A2A;
  --gold:        #C9A96E;
  --gold-light:  #F5D78E;
  --pink:        #E8457A;
  --shock-pink:  #FF1493;
  --light-pink:  #FFD6E8;
  --pale-pink:   #FFF4F9;
  --white:       #FFFFFF;
  --off-white:   #F8F4F2;
  --gray:        #888888;
  --light-gray:  #EEEEEE;
  --text-dark:   #1A1A1A;
  --text-light:  #F0EDE8;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(232, 69, 122, 0.18);
  --shadow-dark: 0 6px 30px rgba(0, 0, 0, 0.35);
}

/* ===== リセット・ベース ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== ヘッダー ===== */
.site-header {
  background: var(--white);
  padding: 0.3rem 1rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.8rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.header-akanavi-logo {
  height: 44px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  display: block;
  flex-shrink: 1;
}

.header-presented {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-presented-text {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1;
}

.header-jenne-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}


/* ===== ナビゲーション ===== */
.main-nav {
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.main-nav::-webkit-scrollbar { display: none; }

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0 0.6rem;
  white-space: nowrap;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.main-nav ul li a {
  display: block;
  padding: 0.9rem 1.3rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.main-nav ul li a:hover {
  color: var(--pink);
}

.main-nav ul li a:hover::after {
  width: 80%;
}

/* ===== セクション共通 ===== */
.section {
  padding: 2.5rem 1rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 1.6rem;
  background: linear-gradient(180deg, var(--shock-pink), var(--gold));
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===== セクション背景ゾーン ===== */
.topics-section { background: transparent; }

.gourmet-section,
.posts-section,
.jenne-section,
.events-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  padding: 2.2rem 1.4rem;
  margin: 1.2rem auto;
}

/* ===== スライダー ===== */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
}

.slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
}

.slide {
  min-width: 100%;
  padding: 0.2rem;
}

.slide-card {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.25);
  position: relative;
  overflow: hidden;
}

.slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--shock-pink), var(--gold));
}

.slide-card.pink-card {
  background: linear-gradient(135deg, #2A0A1A 0%, #1A0D14 100%);
  border-color: rgba(232, 69, 122, 0.35);
}

.badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}

.badge.shock {
  background: linear-gradient(90deg, var(--shock-pink), var(--pink));
}

.slide-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.55;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0 0.2rem;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.slider-dots span.active {
  background: var(--pink);
  transform: scale(1.4);
}

/* ===== グルメ カテゴリ ===== */
.category-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 1.6rem;
  padding-bottom: 0.4rem;
}
.category-tabs-wrapper::-webkit-scrollbar { display: none; }

.category-tabs {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.2rem 0.1rem 0.5rem;
}

.cat-tab {
  padding: 0.65rem 1.3rem;
  border: 2px solid var(--light-gray);
  border-radius: 30px;
  background: var(--white);
  color: var(--gray);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.cat-tab:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cat-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

/* スポットカード */
.gourmet-spots {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gourmet-spots.hidden { display: none; }

.spot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  border: 1px solid var(--light-gray);
  gap: 0.8rem;
  flex-wrap: wrap;
  transition: box-shadow 0.2s;
}

.spot-card:hover {
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}

.spot-info { flex: 1; min-width: 120px; }

.spot-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.spot-genre {
  font-size: 0.9rem;
  color: var(--pink);
  font-weight: 600;
}

.spot-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.map-btn, .search-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.map-btn {
  background: var(--dark);
  color: var(--white);
}
.map-btn:hover { background: var(--dark-mid); }

.search-btn {
  background: var(--off-white);
  color: var(--text-dark);
  border: 1.5px solid var(--light-gray);
}
.search-btn:hover { border-color: var(--pink); color: var(--pink); }

.like-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.like-btn:hover { border-color: var(--pink); color: var(--pink); }
.like-btn.liked {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.like-icon { font-size: 1.1rem; }

/* Google Map */
.map-area {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.map-area iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
.map-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.45rem;
  background: var(--light-gray);
}

/* ===== ユーザー投稿 ===== */
.posts-header h3,
.post-form-section h3,
.events-list h3,
.sns-links h3,
.calendar-block h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.post-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.2rem;
  border-left: 4px solid var(--pink);
}

.post-meta {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.post-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.post-date {
  font-size: 0.85rem;
  color: var(--gray);
}
.post-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.post-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
}

/* 投稿フォーム */
.post-form-section {
  margin-top: 2rem;
  border-top: 2px solid var(--light-gray);
  padding-top: 1.6rem;
}

.post-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 69, 122, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ファイルアップロード */
.file-upload-area {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.file-upload-area input[type="file"] { display: none; }

.file-upload-label {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: var(--off-white);
  color: var(--gray);
  border: 2px dashed var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.file-upload-label:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--white);
}

.image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.image-preview img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--light-gray);
}

.submit-btn {
  padding: 1rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--shock-pink), var(--gold));
}

.submit-btn:hover {
  background: var(--dark-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-dark);
}

/* ===== ジェンヌセクション ===== */
.jenne-section {
  background: linear-gradient(160deg, var(--dark) 0%, #1A0D14 100%);
  color: var(--text-light);
}

.jenne-section .section-title {
  color: var(--text-light);
}

.jenne-section .section-title::before {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.jenne-section .calendar-block h3,
.jenne-section .sns-links h3 {
  color: var(--gold);
  border-bottom-color: rgba(201, 169, 110, 0.3);
}

/* カレンダー */
.calendar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.cal-month {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.cal-nav {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-nav:hover {
  background: rgba(201, 169, 110, 0.15);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(255, 255, 255, 0.04);
}

.cal-day-label {
  text-align: center;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
}

.cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.cal-cell {
  background: rgba(255, 255, 255, 0.02);
  min-height: 48px;
  padding: 0.3rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  cursor: default;
}
.cal-cell.empty { background: transparent; }
.cal-cell.today {
  background: rgba(232, 69, 122, 0.12);
  color: var(--light-pink);
  font-weight: 900;
}
.cal-cell.has-event {
  cursor: pointer;
  background: rgba(201, 169, 110, 0.12);
}
.cal-cell.has-event:hover {
  background: rgba(201, 169, 110, 0.25);
}
.event-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: 2px auto 0;
}

.event-detail {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.2rem;
  border-left: 4px solid var(--gold);
}
.event-detail h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.event-detail p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.8rem;
}
.event-detail button {
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.event-detail button:hover { background: rgba(255, 255, 255, 0.18); }

/* ジェンヌリンク */
.jenne-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jenne-link-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: transparent;
  color: var(--gold-light);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  font-family: 'Shippori Mincho B1', serif;
}
.jenne-link-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.sns-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sns-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.sns-btn.facebook  { background: #1877F2; color: #fff; }
.sns-btn.youtube   { background: #CC0000; color: #fff; }
.sns-btn.tiktok    { background: #010101; color: #fff; }
.sns-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.35); }

/* メンバーInstagram */
.member-links {
  margin-top: 0.5rem;
}
.member-links h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.member-btn {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.member-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.35); opacity: 0.9; }

/* ===== イベントセクション ===== */
.wov-block { margin-bottom: 2rem; }

.wov-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  border-bottom: 3px solid var(--pink);
  font-family: 'Shippori Mincho B1', serif;
}
.wov-btn:hover {
  background: var(--dark-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-dark);
}

.event-item {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 4px solid var(--dark);
  margin-bottom: 0.9rem;
}
.event-date {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.event-item .event-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.event-item .event-place {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== フッター ===== */
.site-footer {
  background: var(--white);
  border-top: 2px solid var(--gold);
  color: var(--gray);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
.site-footer p {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* ===== トースト ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-dark);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  pointer-events: none;
  border-bottom: 3px solid var(--pink);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== レスポンシブ ===== */
@media (max-width: 480px) {
  html { font-size: 17px; }

  .header-inner { padding: 0.5rem 0.6rem; gap: 0.4rem; align-items: center; }
  .header-akanavi-logo { height: 27px; max-width: 44vw; }
  .header-presented { flex-direction: column-reverse; align-items: flex-end; gap: 0.2rem; }
  .header-jenne-logo { height: 52px; max-width: 44vw; }
  .header-presented-text { font-size: 0.45rem; color: var(--text-dark); }

  .main-visual {
    background: var(--white);
    border-bottom: none;
    padding: 18px 16px 22px;
  }
  .main-visual-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow:
      0 12px 36px rgba(0, 0, 0, 0.22),
      0 4px 10px rgba(0, 0, 0, 0.14);
  }
}

@media (min-width: 600px) {
  html { font-size: 20px; }

  .sns-grid { grid-template-columns: repeat(4, 1fr); }
  .map-area iframe { height: 400px; }
}

@media (min-width: 900px) {
  html { font-size: 21px; }

  .section { padding: 2.8rem 2rem 3.5rem; }

  .posts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .member-cards { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

/* ============================================================
   認証ステータス（ヘッダー右）
============================================================ */
.auth-status {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--text-dark);
}

.auth-link-btn {
  background: none;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: .3rem .8rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: .8rem;
  white-space: nowrap;
}
.auth-link-btn:hover { background: rgba(232,69,122,.08); }
.auth-link-btn.logout-btn { border-color: var(--pink); color: var(--pink); }
.auth-link-btn.logout-btn:hover { background: rgba(232,69,122,.08); }

/* ============================================================
   投稿ログインプロンプト
============================================================ */
.post-login-prompt {
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  color: var(--gold);
  margin-top: 1.5rem;
}
.link-btn {
  background: none;
  border: none;
  color: var(--pink);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0 .2rem;
}

/* ============================================================
   認証モーダル
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.8rem;
  width: min(420px, 92vw);
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.modal-tabs {
  display: flex;
  gap: .4rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.modal-tab {
  flex: 1;
  padding: .45rem .5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--gray);
  border-radius: 6px;
  cursor: pointer;
  font-size: .8rem;
  white-space: nowrap;
}
.modal-tab.active {
  background: rgba(232,69,122,.08);
  border-color: var(--pink);
  color: var(--pink);
}

.auth-form label {
  display: block;
  font-size: .82rem;
  color: var(--text-dark);
  margin-top: .9rem;
}
.auth-form input {
  display: block;
  width: 100%;
  margin-top: .3rem;
  padding: .55rem .7rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--text-dark);
  border-radius: 6px;
  font-size: .95rem;
}
.auth-form input:focus { border-color: var(--pink); outline: none; box-shadow: 0 0 0 3px rgba(232,69,122,.1); }

.auth-submit {
  width: 100%;
  margin-top: 1.2rem;
  padding: .65rem;
  background: var(--pink);
  color: var(--white);
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: .95rem;
  transition: background 0.2s;
}
.auth-submit:hover { background: var(--shock-pink); }

.auth-error {
  font-size: .8rem;
  color: var(--pink);
  margin: .5rem 0 0;
  min-height: 1.1em;
}

.modal-close {
  position: absolute;
  top: .7rem;
  right: .8rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }

.hidden { display: none !important; }

/* ============================================================
   折りたたみトグル
============================================================ */
.collapse-toggle {
  display: block;
  width: 100%;
  padding: .7rem 1rem;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
  text-align: left;
  margin-bottom: .5rem;
}
.collapse-toggle:hover { background: rgba(201,169,110,.2); }

.collapse-body { margin-top: .8rem; }

/* ============================================================
   ローディングテキスト
============================================================ */
.loading-text { color: #666; padding: 1rem; text-align: center; }

/* ============================================================
   メインビジュアル
============================================================ */
.main-visual {
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 0;
}

.main-visual-img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   最新トピックス 箇条書きリスト
============================================================ */
.tts-wrap {
  display: none;
  background: var(--white);
  padding: 16px 20px 14px;
}

.tts-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.tts-stage { display: block; }

.tts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tts-list li {
  border-bottom: 1px solid var(--light-gray);
  padding: 5px 0;
}

.tts-list li:last-child { border-bottom: none; }

.tts-list li::before {
  content: '▶';
  font-size: 0.55rem;
  color: var(--pink);
  margin-right: 8px;
  vertical-align: middle;
}

.tts-list a {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
}

.tts-list a:hover { color: var(--pink); }

.tts-list span {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.tts-source {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray);
  background: var(--light-gray);
  border-radius: 3px;
  padding: 1px 5px;
  margin-right: 5px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   清野とおる先生コーナーバナー
============================================================ */
.seino-banner-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1rem 0;
  text-align: center;
  background: #ffffff;
}

.seino-banner-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.seino-banner-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.seino-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ============================================================
   きらめき☆ジェンヌ セクション
============================================================ */
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--pink) 15%, var(--gold) 50%, var(--pink) 85%, transparent);
  margin: 0;
  opacity: 0.55;
}

.jenne-section {
  background: var(--white);
  padding: 28px 20px 32px;
}

.jenne-section-inner {
  max-width: 640px;
  margin: 0 auto;
}

.jenne-section-heading {
  margin: 0 0 22px;
  line-height: 1;
  text-align: center;
}

.jenne-section-logo {
  display: inline-block;
  height: auto;
  max-height: 60px;
  max-width: 100%;
  width: auto;
}

.jenne-block {
  margin-bottom: 22px;
  text-align: center;
}
.jenne-block:last-child { margin-bottom: 0; }

.jenne-block-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0 0 8px;
  overflow-wrap: break-word;
}

.jenne-block-heading-img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.jenne-official-link {
  display: block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.65;
}
.jenne-official-link:hover { color: var(--pink); }

.jenne-shop-link { display: inline-block; }

.jenne-shop-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* メンバーカード */
.member-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.member-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  display: block;
}

.member-card-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
}

.member-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.member-card-link:hover .member-card-img {
  opacity: 0.85;
  outline: 2px solid #E1306C;
}
.member-card-link:hover .member-card-name {
  color: #E1306C;
}

.member-card-img-placeholder {
  background: var(--light-gray);
}

.member-card-sns {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
}
.member-card-sns-link {
  color: var(--gray);
  font-size: .85rem;
  text-decoration: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
  transition: background .15s, color .15s;
}
.member-card-sns-link:hover {
  background: var(--pink);
  color: var(--white);
}

.jenne-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}
.jenne-line-btn:hover { background: #05a847; }
.jenne-line-btn i { font-size: 1.2rem; }

/* ============================================================
   ジェンヌ メンバーお知らせ
============================================================ */
.member-posts-list { display: flex; flex-direction: column; gap: 10px; }

/* ジェンヌセクション インフォメーション バナー風スクロール */
.jenne-info-overflow {
  overflow: hidden;
  margin: 0 -20px;
  padding: 4px 0;
}

/* 1件のみのとき：スクロールなしで1枚表示 */
.jenne-info-overflow.jenne-info-single {
  overflow: visible;
  margin: 0;
  padding: 0;
}
.jenne-info-single #member-posts-track {
  display: block;
  width: 100%;
  animation: none !important;
  padding: 0;
}
.info-single-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-single-img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.info-single-body {
  font-size: .9rem;
  line-height: 1.7;
  white-space: pre-wrap;
  color: var(--text-dark);
  margin: 0;
}

.member-posts-empty {
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
  margin: 0;
}

.mp-card {
  display: block;
  background: var(--pale-pink);
  border: 1px solid #f0d6e4;
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text-dark);
  transition: box-shadow 0.2s;
}
a.mp-card:hover { box-shadow: 0 2px 10px rgba(232,69,122,.15); }

.mp-card-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 8px;
}

.mp-card-title {
  font-weight: 700;
  font-size: .9rem;
  margin: 0 0 4px;
  line-height: 1.4;
}

.mp-card-body {
  font-size: .82rem;
  color: #555;
  margin: 0 0 6px;
  line-height: 1.5;
}

.mp-card-meta {
  font-size: .72rem;
  color: var(--pink);
  margin: 0;
}

/* 投稿トグルボタン */
.jenne-post-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pale-pink);
  color: var(--pink);
  border: 1px solid #f0d6e4;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.jenne-post-toggle:hover { background: #fce8f3; }

/* 投稿フォーム */
.jenne-post-form {
  margin-top: 12px;
  background: var(--pale-pink);
  border: 1px solid #f0d6e4;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
}

.jpf-group { margin-bottom: 10px; }
.jpf-label { display: block; font-size: .75rem; font-weight: 700; color: var(--pink); margin-bottom: 4px; }
.jpf-req   { color: var(--shock-pink); }

.jpf-input, .jpf-textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #f0d6e4;
  border-radius: 6px;
  background: var(--white);
  font-size: .87rem;
  font-family: inherit;
  color: var(--text-dark);
}
.jpf-textarea { resize: vertical; }
.jpf-input:focus, .jpf-textarea:focus { outline: none; border-color: var(--pink); }

.jpf-msg { font-size: .82rem; padding: 6px 10px; border-radius: 6px; margin-bottom: 8px; }
.jpf-msg.error   { background: #fde8ef; color: #c0143c; }
.jpf-msg.success { background: #e8f8ef; color: #1a7a4a; }

.jpf-submit {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.jpf-submit:hover { background: #d03060; }
.jpf-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ログインプロンプト */
.jenne-login-prompt {
  font-size: .82rem;
  color: var(--gray);
  margin: 0;
}
.jenne-login-link {
  background: none;
  border: none;
  color: var(--pink);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  text-decoration: underline;
}

/* ============================================================
   ニュースバナー（自動スクロール）
============================================================ */
.news-banner {
  background: var(--white);
  padding: 10px 0 8px;
  overflow: hidden;
}

.news-banner-header {
  padding: 0 14px;
  margin-bottom: 8px;
}

/* カテゴリタブ */
.info-cat-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.info-cat-tab {
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--gray);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.info-cat-tab.active,
.info-cat-tab:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.news-banner-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.18em;
}

.news-banner-overflow {
  overflow: hidden;
}

.news-banner-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0 10px 4px;
  animation: bannerScroll linear infinite;
}

.news-banner-track:hover {
  animation-play-state: paused;
}

@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* バナー画像カード */
.banner-img-card {
  flex-shrink: 0;
  width: 138px;
  aspect-ratio: 210 / 297;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.banner-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
a.banner-img-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.banner-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  padding: 22px 7px 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-img-overlay .banner-card-cat   { color: rgba(255,255,255,0.8); }
.banner-img-overlay .banner-card-title { color: var(--white); font-size: 11px; -webkit-line-clamp: 2; }

/* テキストのみバナーカード */
.banner-text-card {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  border-radius: 6px;
  background: var(--pale-pink);
  border: 1px solid rgba(232, 69, 122, 0.2);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  align-items: stretch;
}
a.banner-text-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.banner-text-inner {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  justify-content: center;
}
.banner-card-cat {
  font-size: 11px;
  color: var(--pink);
  font-weight: 700;
}
.banner-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner-card-arrow {
  font-size: 14px;
  color: var(--pink);
  align-self: flex-end;
}

/* 空メッセージ */
.info-banner-empty {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  padding: 16px 14px;
  margin: 0;
}

/* 必須マーク */
.required-mark {
  color: var(--pink);
  font-size: 0.85em;
}

/* バナー投稿フォームエリア */
.banner-submit-section {
  padding: 0 20px 4px;
}
.banner-submit-inner {
  max-width: 640px;
  margin: 0 auto;
}
.banner-submit-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0 0 10px;
}
.banner-form-msg {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 10px;
}
.banner-form-msg.success { color: #2ecc71; }
.banner-form-msg.error   { color: var(--pink); }

.banner-item {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px;
  padding: 9px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

a.banner-item { cursor: pointer; }
a.banner-item:hover { border-color: var(--gold); box-shadow: 0 3px 12px rgba(201,169,110,0.2); }

.banner-item-jenne {
  border-color: rgba(232,69,122,0.3);
  background: var(--pale-pink);
}

a.banner-item-jenne:hover { border-color: var(--pink); box-shadow: 0 3px 12px rgba(232,69,122,0.15); }

.banner-item-gourmet {
  border-color: rgba(201,169,110,0.4);
  background: #FFFDF8;
}

.banner-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
}

.banner-item-jenne .banner-badge { color: var(--pink); }

.banner-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   アクションセクション（ボタングリッド）
============================================================ */
.action-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 14px 40px;
  border-top: 1px solid var(--light-gray);
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

@media (min-width: 600px) {
  .action-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 16px;
  }
}

.action-btn {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  text-align: center;
}

.action-btn:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.action-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  box-shadow: var(--shadow-dark);
  transform: translateY(-1px);
}

.action-btn .btn-icon {
  font-size: 28px;
  line-height: 1;
}

.action-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.action-btn .btn-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  text-align: center;
}

.action-btn.active .btn-label { color: var(--white); }

.action-btn .btn-desc {
  font-size: 12px;
  color: var(--gray);
  display: none;
  text-align: center;
}

.action-btn.active .btn-desc { color: rgba(255,255,255,0.65); }

@media (min-width: 480px) {
  .action-btn .btn-label { font-size: 14px; }
}

@media (min-width: 600px) {
  .action-btn { padding: 18px 12px; gap: 10px; }
  .action-btn .btn-icon { font-size: 32px; }
  .action-btn .btn-label { font-size: 13px; }
  .action-btn .btn-desc { display: block; }
}

/* ============================================================
   パネル
============================================================ */
.panel-wrap { width: 100%; }

.panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  animation: panelIn 0.28s ease;
}

.panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-inner {
  padding: 1.6rem 1.4rem 2rem;
}

/* ダークパネル（きらめきジェンヌ用） */
.panel.panel-dark {
  background: linear-gradient(160deg, var(--dark) 0%, #1A0D14 100%);
}

.panel.panel-dark .section-title {
  color: var(--text-light);
}

.panel.panel-dark .section-title::before {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.panel.panel-dark .sns-links h3,
.panel.panel-dark .member-links h3 {
  color: var(--gold);
  border-bottom-color: rgba(201,169,110,0.3);
}

/* パネル内セクションスタイルのリセット（二重適用を防ぐ） */
.panel .gourmet-section,
.panel .posts-section,
.panel .events-section,
.panel .jenne-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
