/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   みぃ - メインスタイル (アイドルピンクテーマ)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --pink:       #E85D8A;
  --pink-light: #F4A4C8;
  --pink-pale:  #FFF0F5;
  --pink-border:#FFD0E5;
  --gold:       #FFD700;
  --text:       #3D2C35;
  --text-sub:   #7A6070;
  --white:      #FFFFFF;
  --shadow:     0 4px 20px rgba(232,93,138,.12);
  --radius:     16px;
  --radius-sm:  10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--pink-pale);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { opacity: .8; }

/* ── ヘッダー ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--pink);
  box-shadow: 0 2px 12px rgba(232,93,138,.25);
  /* スマホのメニュードロップダウン位置基準 */
  isolation: isolate;
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}

/* ── ロゴ ── */
.header-logo { flex-shrink: 0; }
.logo-link { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-img { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-name { font-family: 'Zen Maru Gothic', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
/* タグラインは大画面のみ表示 */
.logo-tagline {
  font-size: .58rem; color: rgba(255,255,255,.85);
  white-space: nowrap; letter-spacing: .02em;
  display: none; /* 900px以上で表示 */
}
@media (min-width: 900px) { .logo-tagline { display: block; } }

/* ── グローバルナビ ── */
.header-nav { flex: 1; min-width: 0; }
.nav-list {
  list-style: none; display: flex; gap: 0;
  flex-wrap: nowrap;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: .5rem .7rem;
  color: var(--white); font-weight: 500; font-size: .85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .2s;
}
.nav-list > li > a:hover { background: rgba(255,255,255,.2); opacity: 1; }

/* ドロップダウン */
.has-dropdown .dropdown {
  display: none; position: absolute; top: 100%; left: 0; z-index: 200;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); min-width: 180px; list-style: none;
  border: 1px solid var(--pink-border);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: .7rem 1rem;
  color: var(--text); font-size: .88rem;
  border-left: 3px solid transparent;
  transition: background .15s;
}
.dropdown a:hover { background: var(--pink-pale); opacity: 1; }

/* ── ヘッダーアクション ── */
.header-actions { display: flex; gap: .4rem; flex-shrink: 0; }
.search-toggle {
  background: rgba(255,255,255,.2); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
/* ハンバーガーはスマホのみ */
.menu-toggle { display: none; }
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
}
.menu-toggle span + span { margin-top: 5px; }

/* 検索バー */
.search-bar { display: none; padding: .5rem 1.5rem 1rem; }
.search-bar.open { display: block; }
.search-form { display: flex; gap: .5rem; max-width: 600px; margin: 0 auto; }
.search-form input {
  flex: 1; padding: .6rem 1rem; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.9); font-family: inherit; font-size: .95rem;
}
.search-form button {
  padding: .6rem 1.4rem; background: var(--white);
  color: var(--pink); border: none; border-radius: 999px;
  font-weight: 700; cursor: pointer; font-family: inherit;
}

/* ── ヒーロー ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #FF6B8A 0%, #FFB6D3 55%, #FFE4F0 100%);
  padding: 3.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '✦'; position: absolute; top: 1rem; left: 5%; font-size: 1.5rem;
  color: rgba(255,255,255,.3); animation: float 3s ease-in-out infinite;
}
.hero::after {
  content: '♡'; position: absolute; bottom: 1rem; right: 8%; font-size: 2rem;
  color: rgba(255,255,255,.25); animation: float 4s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.hero-label {
  display: inline-block; font-size: .78rem; font-weight: 700;
  background: rgba(255,255,255,.25); color: var(--white);
  padding: .25rem .9rem; border-radius: 999px;
  letter-spacing: .08em; margin-bottom: .8rem;
}
.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--white); line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: normal;
  color: #fff;           /* フォールバック：全ブラウザで白 */
  font-size: 1.1em;
  text-shadow: 0 2px 16px rgba(255,255,255,.4);
}
.hero-sub {
  color: rgba(255,255,255,.92); font-size: .95rem; line-height: 1.8;
  margin-bottom: 1.6rem;
}
.hero-groups {
  display: block; font-size: .78rem; margin-top: .4rem;
  background: rgba(255,255,255,.18); border-radius: 999px;
  padding: .3rem 1rem; display: inline-block;
  letter-spacing: .05em;
}
.hero-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.hero-cta {
  display: inline-block; padding: .75rem 1.8rem;
  background: var(--white); color: var(--pink);
  border-radius: 999px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); opacity: 1; }
.hero-cta-ig { background: rgba(255,255,255,.2); color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.hero-cta-ig:hover { background: rgba(255,255,255,.35); color: var(--white); }

/* ── アフィリエイト表示 ────────────────────── */
.affiliate-notice {
  background: #FFF9E6; border: 1px solid #FFE4A0;
  text-align: center; padding: .4rem 1rem;
  font-size: .78rem; color: #8A7000;
}

/* ── ページ共通 ───────────────────────────── */
.page-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem;
}
.page-inner-narrow { max-width: 760px; }

/* 2カラム */
.layout-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 2rem;
  align-items: start;
}
.main-col, .sidebar-col { min-width: 0; }

/* ── セクションタイトル ─────────────────────── */
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.2rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-title span {
  position: relative;
  padding-bottom: .3rem;
}
.section-title span::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: 2px;
}
.section-title::before { content: '✦'; color: var(--pink); }

/* ── 人物タブ ─────────────────────────────── */
.person-tab-wrap {
  overflow: hidden; margin-bottom: 1.5rem;
}
.person-tabs {
  display: flex; gap: .5rem;
  overflow-x: auto; padding-bottom: .5rem;
  scrollbar-width: thin; scrollbar-color: var(--pink-light) transparent;
}
.person-tab {
  display: inline-block; white-space: nowrap;
  padding: .35rem .9rem; border-radius: 999px;
  background: var(--white); color: var(--text);
  border: 2px solid var(--pink-border);
  font-size: .82rem; font-weight: 500;
  transition: all .2s;
}
.person-tab:hover, .person-tab.active {
  background: var(--pink); color: var(--white);
  border-color: var(--pink); opacity: 1;
}
/* グループタブ（メンバー個人と区別） */
.person-tab-group {
  background: var(--pink-pale);
  border-style: dashed;
  font-weight: 700;
}
.person-tab-group:hover, .person-tab-group.active {
  background: #C9456F; border-style: solid;
}

/* ── 記事カード グリッド ─────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.post-grid-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }

.post-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(232,93,138,.2); }
.post-card-link { display: block; color: inherit; text-decoration: none; }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-noimg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--pink);
}
.post-card-body { padding: 1rem 1.2rem 1.2rem; }
.post-card-meta { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; margin-bottom: .5rem; }
.post-date { font-size: .78rem; color: var(--text-sub); }
.tag {
  display: inline-block; padding: .15rem .6rem;
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  color: var(--white);
}
.post-card-title {
  font-size: .95rem; font-weight: 700; line-height: 1.5;
  margin-bottom: .4rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-excerpt {
  font-size: .82rem; color: var(--text-sub); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: .6rem;
}
.post-card-more { font-size: .8rem; color: var(--pink); font-weight: 700; }

/* ── ページネーション ─────────────────────── */
.pagination {
  display: flex; gap: 1rem; justify-content: center;
  align-items: center; margin: 2rem 0;
}
.page-btn {
  padding: .6rem 1.4rem; background: var(--white);
  border: 2px solid var(--pink); color: var(--pink);
  border-radius: 999px; font-weight: 700;
}
.page-btn:hover { background: var(--pink); color: var(--white); opacity: 1; }
.page-info { color: var(--text-sub); font-size: .9rem; }

/* ── サイドバー ───────────────────────────── */
.sidebar-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 100%;
}
.widget-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem; margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--pink-pale);
  color: var(--pink);
}
.sidebar-search { display: flex; gap: .4rem; min-width: 0; }
.sidebar-search input {
  flex: 1 1 auto; min-width: 0; width: 100%;
  padding: .5rem .8rem; border: 2px solid var(--pink-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem;
}
.sidebar-search button {
  flex: 0 0 auto;
  padding: .5rem .8rem; background: var(--pink); color: var(--white);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
}
.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid var(--pink-pale); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
  display: block; padding: .5rem 0; color: var(--text);
  font-size: .88rem;
  overflow-wrap: anywhere;
}
.sidebar-list a:hover { color: var(--pink); opacity: 1; }

.person-list { display: flex; flex-direction: column; gap: .3rem; }
.person-link {
  display: flex; align-items: center; gap: .7rem;
  padding: .4rem .6rem; border-radius: var(--radius-sm);
  border-left: 3px solid var(--pink); color: var(--text) !important;
  font-size: .88rem;
  min-width: 0;
}
.person-link:hover { background: var(--pink-pale); opacity: 1; }
.person-link span:last-child { min-width: 0; overflow-wrap: anywhere; }
.person-thumb { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.person-initial {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .7rem; font-weight: 700;
  flex-shrink: 0;
}

.sidebar-tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; min-width: 0; }
.sidebar-tag-list li { min-width: 0; max-width: 100%; }
.sidebar-tag {
  display: inline-flex; max-width: 100%;
  padding: .3rem .8rem; border-radius: 999px;
  border: 1.5px solid; font-size: .8rem;
  transition: all .2s;
  overflow-wrap: anywhere;
}
.sidebar-tag:hover { opacity: .75; }

.sidebar-profile { text-align: center; }
.profile-img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto .8rem; }
.profile-catch { font-size: .95rem; line-height: 1.5; margin-bottom: .6rem; }
.profile-desc { font-size: .8rem; color: var(--text-sub); line-height: 1.7; margin-bottom: .7rem; overflow-wrap: anywhere; }
.profile-tags { display: flex; flex-wrap: wrap; gap: .3rem; justify-content: center; margin-bottom: .7rem; }
.profile-tag {
  font-size: .72rem; background: var(--pink-pale); color: var(--pink);
  padding: .15rem .6rem; border-radius: 999px; border: 1px solid var(--pink-border);
}
.profile-ig {
  display: block; padding: .5rem 1rem; margin-bottom: .5rem;
  background: linear-gradient(135deg, #F77737, #E1306C, #833AB4);
  color: var(--white) !important; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  transition: opacity .2s;
}
.profile-ig:hover { opacity: .85; }
.profile-contact {
  display: inline-block; padding: .4rem 1.2rem;
  background: var(--pink); color: var(--white); border-radius: 999px;
  font-size: .85rem; font-weight: 700;
}

/* ── 記事詳細 ─────────────────────────────── */
.breadcrumb {
  font-size: .8rem; color: var(--text-sub);
  display: flex; gap: .4rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--text-sub); }
.breadcrumb span { color: var(--text-sub); }

.post-header { margin-bottom: 2rem; }
.post-meta { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-bottom: .8rem; }
.post-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.5; margin-bottom: 1.2rem;
}
.post-eyecatch {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 16/9; object-fit: cover;
}
.post-content {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  margin-bottom: 2rem;
  line-height: 2;
}
.post-content h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem; border-left: 4px solid var(--pink);
  padding-left: .8rem; margin: 2rem 0 1rem;
  color: var(--pink);
}
.post-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .8rem; }
.post-content p { margin-bottom: 1rem; }
.post-content img { border-radius: var(--radius-sm); margin: 1rem auto; }
.post-content a { border-bottom: 1px dotted var(--pink); }

/* ── 商品ブロック ─────────────────────────── */
.products-section { margin: 2rem 0; }
.product-block {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
  overflow: hidden; border: 1.5px solid var(--pink-border);
}
.product-genre {
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  color: var(--white); font-weight: 700; font-size: .85rem;
  padding: .4rem 1.2rem;
}
.product-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem; padding: 1.5rem;
}
.product-img-wrap { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-sm); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-brand { font-size: .82rem; color: var(--text-sub); margin-bottom: .2rem; }
.product-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--pink); margin-bottom: .6rem; }
.product-desc { font-size: .88rem; color: var(--text-sub); margin-bottom: .8rem; }
.product-note { font-size: .78rem; color: var(--text-sub); margin-top: .6rem; }
.product-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.shop-btn {
  display: inline-block; padding: .6rem 1.2rem;
  border-radius: var(--radius-sm); color: var(--white) !important;
  font-weight: 700; font-size: .88rem;
  transition: opacity .2s, transform .15s;
}
.shop-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ── SNSシェア ────────────────────────────── */
.share-btns {
  display: flex; gap: .8rem; align-items: center;
  flex-wrap: wrap; margin: 2rem 0; padding: 1rem;
  background: var(--pink-pale); border-radius: var(--radius);
}
.share-label { font-weight: 700; font-size: .9rem; width: 100%; }
.share-btn {
  padding: .5rem 1.2rem; border-radius: var(--radius-sm);
  color: var(--white) !important; font-size: .85rem; font-weight: 700;
}
.share-x    { background: #000; }
.share-fb   { background: #1877F2; }
.share-line { background: #06C755; }

/* ── 注意書き ─────────────────────────────── */
.post-disclaimer {
  font-size: .78rem; color: var(--text-sub);
  padding: .8rem 1rem; background: var(--pink-pale);
  border-radius: var(--radius-sm); border-left: 3px solid var(--pink-light);
  margin: 1rem 0 2rem;
}

/* ── カテゴリヒーロー ─────────────────────── */
.category-hero {
  display: flex; gap: 1.5rem; align-items: center;
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid;
}
.cat-hero-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cat-hero-initial {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem; font-weight: 700; flex-shrink: 0;
}
.cat-group { font-size: .82rem; color: var(--text-sub); margin-bottom: .2rem; }
.cat-title { font-family: 'Zen Maru Gothic', sans-serif; font-size: 1.5rem; margin-bottom: .4rem; }
.cat-desc { font-size: .88rem; color: var(--text-sub); margin-bottom: .4rem; }
.cat-count { font-size: .82rem; color: var(--pink); font-weight: 700; }

/* ── お問い合わせ ─────────────────────────── */
.contact-form, .edit-form { max-width: 100%; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .7rem 1rem;
  border: 2px solid var(--pink-border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text);
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--pink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.required { color: var(--pink); }

.btn-primary {
  display: inline-block; padding: .8rem 2rem;
  background: var(--pink); color: var(--white);
  border: none; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  font-family: inherit; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #C9456F; transform: translateY(-1px); opacity: 1; }

.recaptcha-notice {
  font-size: .72rem; color: var(--text-sub);
  margin-top: .8rem; line-height: 1.6;
}
.recaptcha-notice a { color: var(--text-sub); text-decoration: underline; }
.btn-secondary {
  display: inline-block; padding: .7rem 1.8rem;
  border: 2px solid var(--pink); color: var(--pink);
  border-radius: 999px; font-weight: 700; font-size: .95rem;
}

/* ── アラート ─────────────────────────────── */
.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.alert-success { background: #E8F5E9; border: 1px solid #C8E6C9; color: #2E7D32; }
.alert-error   { background: #FFF0F0; border: 1px solid #FFCDD2; color: #C62828; }

/* ── 静的ページ ───────────────────────────── */
.page-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.8rem; margin-bottom: 1.5rem;
  color: var(--pink);
}
.static-content h2 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; color: var(--pink); }
.static-content p { margin-bottom: .8rem; }
.static-date { color: var(--text-sub); font-size: .85rem; margin-top: 1.5rem; }

/* ── 検索 ─────────────────────────────────── */
.search-form-lg {
  display: flex; gap: .5rem; margin-bottom: 2rem;
}
.search-form-lg input {
  flex: 1; padding: .8rem 1.2rem;
  border: 2px solid var(--pink-border); border-radius: 999px;
  font-family: inherit; font-size: 1rem;
}
.search-form-lg input:focus { outline: none; border-color: var(--pink); }
.search-form-lg button {
  padding: .8rem 1.6rem; background: var(--pink); color: var(--white);
  border: none; border-radius: 999px; font-weight: 700; cursor: pointer;
}
.empty-msg { color: var(--text-sub); padding: 2rem; text-align: center; }

/* ── フッター ─────────────────────────────── */
.site-footer {
  background: #3D2C35; color: rgba(255,255,255,.8);
  padding: 2.5rem 1.5rem 1.5rem; margin-top: 3rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { text-align: center; margin-bottom: 2rem; }
.footer-logo img { width: 60px; margin: 0 auto .5rem; }
.footer-tagline { font-size: .85rem; opacity: .7; }
.footer-nav { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-nav-col h4 { color: var(--pink-light); font-size: .85rem; margin-bottom: .6rem; }
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: .3rem; }
.footer-nav-col a { color: rgba(255,255,255,.7); font-size: .82rem; }
.footer-nav-col a:hover { color: var(--white); opacity: 1; }
.footer-sns { display: flex; gap: .6rem; justify-content: center; margin-bottom: 1.5rem; }
.sns-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15); color: var(--white) !important;
  font-size: .7rem; font-weight: 700;
}
.sns-ig { background: #E1306C; }
.sns-x  { background: #000; }
.sns-tt { background: #010101; }
.sns-yt { background: #FF0000; }
.push-subscribe-area { text-align: center; margin-bottom: 1.2rem; }
.push-btn {
  padding: .6rem 1.6rem; background: var(--pink); color: var(--white);
  border: none; border-radius: 999px; font-weight: 700; cursor: pointer;
  font-size: .9rem; font-family: inherit;
}
.footer-copy { text-align: center; font-size: .78rem; opacity: .5; margin-top: 1rem; }

/* ── スクロールトップ ─────────────────────── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: var(--white);
  border: none; cursor: pointer; font-size: .9rem;
  box-shadow: 0 4px 12px rgba(232,93,138,.4);
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }

/* ── エラーページ ─────────────────────────── */
.error-page { text-align: center; padding: 4rem 1rem; }
.error-page .error-icon { font-size: 3rem; color: var(--pink); margin-bottom: 1rem; }
.error-page h1 { font-size: 5rem; color: var(--pink); font-family: 'Zen Maru Gothic', sans-serif; }
.error-page p { color: var(--text-sub); margin: .5rem 0; }
.error-page .btn-primary { margin-top: 1.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   レスポンシブ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .layout-2col {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar-col { order: 2; }
  .header-nav { display: none; }
  .header-nav.open {
    display: block;
    position: absolute; top: 60px; left: 0; right: 0; z-index: 100;
    background: var(--pink);
    padding: .5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
  }
  .nav-list { flex-direction: column; gap: 0; }
  .has-dropdown .dropdown {
    position: static; display: block; box-shadow: none;
    border: none; background: transparent;
  }
  .dropdown a { color: rgba(255,255,255,.9); padding: .4rem .5rem .4rem 1.2rem; }
  .menu-toggle {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(255,255,255,.2); border: none; border-radius: 6px;
    width: 36px; height: 36px; cursor: pointer; gap: 0; padding: 8px 6px;
  }
  .product-inner {
    grid-template-columns: 140px 1fr;
    gap: 1rem; padding: 1rem;
  }
}

@media (max-width: 640px) {
  .logo-name { font-size: .95rem; }

  .header-nav { display: none; }
  .header-nav.open {
    display: block;
    position: absolute; top: 60px; left: 0; right: 0; z-index: 100;
    background: var(--pink);
    padding: .5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
  }
  .nav-list { flex-direction: column; gap: 0; }
  .has-dropdown .dropdown {
    position: static; display: block; box-shadow: none;
    border: none; background: transparent;
  }
  .dropdown a { color: rgba(255,255,255,.9); padding: .4rem .5rem .4rem 1.2rem; }

  /* スマホでハンバーガーを表示 */
  .menu-toggle {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(255,255,255,.2); border: none; border-radius: 6px;
    width: 36px; height: 36px; cursor: pointer; gap: 0; padding: 8px 6px;
  }

  .product-inner {
    grid-template-columns: 1fr;
  }
  .product-img-wrap { max-width: 200px; margin: 0 auto; }

  .category-hero { flex-direction: column; text-align: center; }

  .post-grid { grid-template-columns: 1fr; }

  .hero { padding: 2rem 1rem; }

  .page-inner { padding: 1.5rem 1rem; }
}
