/* ===== YSM 旅プラン ===== */
:root {
  --navy: #14233d;
  --navy-deep: #0d1828;
  --slate: #5C6B7E;
  --violet: #845ef7;
  --gold: #ffce3b;
  --coral: #ff6b5d;
  --sunset: #ff9a62;
  --mint: #4dd4ac;
  --paper: #fbf7ef;
  --ink: #1a2438;
  --cloud: #ffffff;
  --shadow-soft: 0 8px 30px rgba(20,35,61,0.12);
  --shadow-card: 0 12px 40px rgba(20,35,61,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Zen Kaku Gothic New", -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 70px;
  overflow-x: hidden;
}

/* ===== ヘッダー ===== */
.plan-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  z-index: 50;
  background: rgba(251,247,239,0.0);
  transition: background 0.3s, box-shadow 0.3s;
}
.plan-header.scrolled {
  background: rgba(251,247,239,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(20,35,61,0.08);
}
.ph-top, .ph-profile {
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.ph-top:active, .ph-profile:active { transform: scale(0.92); }
.ph-title {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.3s;
}
.plan-header.scrolled .ph-title { opacity: 1; }
.ph-title span { color: var(--violet); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 460px;
  padding: 90px 22px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 0%, #ff9a62 0%, transparent 50%),
    radial-gradient(100% 90% at 0% 20%, #845ef7 0%, transparent 55%),
    linear-gradient(160deg, #1a2c4d 0%, #14233d 50%, #0d1828 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255,206,59,0.25) 0%, transparent 25%),
    radial-gradient(circle at 90% 60%, rgba(77,212,172,0.18) 0%, transparent 30%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.18;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}
.hero-accent {
  background: linear-gradient(105deg, var(--gold), var(--sunset), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 100px;
  padding: 7px 7px 7px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}
.hs-icon { font-size: 16px; }
.hero-search input {
  flex: 1;
  border: none; outline: none;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--ink);
}
.hero-search input::placeholder { color: #9aa3b2; }
.hs-go {
  border: none;
  background: linear-gradient(135deg, var(--violet), #6845e0);
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(132,94,247,0.4);
  transition: transform 0.2s;
}
.hs-go:active { transform: scale(0.94); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.hs-stat { display: flex; flex-direction: column; }
.hs-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: white;
  line-height: 1;
}
.hs-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
  letter-spacing: 1px;
}
.hs-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); }

/* ===== カテゴリ ===== */
.categories {
  position: sticky;
  top: 56px;
  z-index: 40;
  background: var(--paper);
  padding: 14px 0 10px;
  margin-top: -20px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 30px rgba(20,35,61,0.1);
}
.cat-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 18px;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1.5px solid #e6ddcd;
  background: white;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.cat-emoji { font-size: 16px; }
.cat-chip.active {
  background: linear-gradient(135deg, var(--navy), #243b5e);
  color: white;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(20,35,61,0.25);
}

/* ===== row ===== */
.row {
  padding: 22px 0 8px;
}
.row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 18px;
  margin-bottom: 14px;
}
.row-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-title .rt-badge { font-size: 18px; }
.row-sub {
  font-size: 12px;
  color: var(--slate);
  margin-top: 3px;
  font-weight: 500;
}
.row-more {
  font-size: 12px;
  color: var(--violet);
  font-weight: 700;
  background: none; border: none; cursor: pointer;
  white-space: nowrap;
}
.row-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 18px 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.row-scroll::-webkit-scrollbar { display: none; }

/* ===== カード ===== */
.card {
  flex-shrink: 0;
  width: 230px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.card:active { transform: scale(0.97); }
.card-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.card-grad { position: absolute; inset: 0; }
.card-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
  color: white;
  backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 3px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.badge-unvisited { background: rgba(132,94,247,0.92); }
.badge-rally { background: rgba(255,107,93,0.92); }
.badge-diary { background: rgba(77,212,172,0.92); }
.card-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.card-fav:active { transform: scale(0.8); }
.card-fav.liked { background: var(--coral); }
.card-body { padding: 13px 15px 15px; }
.card-loc {
  font-size: 11px;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 4px;
}
.card-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 4px 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 3px;
}
.card-rating .star { color: var(--gold); }
.card-rating .count { color: var(--slate); font-weight: 500; font-size: 11px; }
.card-price { text-align: right; }
.card-price .cp-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--navy);
}
.card-price .cp-unit { font-size: 11px; color: var(--slate); }
.card-price .cp-drop {
  font-size: 10px;
  color: var(--coral);
  font-weight: 700;
}

/* 大型カード（特集） */
.card-feature {
  width: 300px;
  height: 300px;
}
.card-feature .card-img { height: 100%; }
.card-feature .card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,24,40,0.95) 0%, rgba(13,24,40,0.5) 60%, transparent 100%);
  padding: 40px 18px 18px;
}
.card-feature .card-loc { color: rgba(255,255,255,0.85); }
.card-feature .card-name { color: white; font-size: 20px; }
.card-feature .card-rating { color: white; }
.card-feature .cp-num { color: white; }
.card-feature .cp-unit { color: rgba(255,255,255,0.7); }

/* ===== フッター ===== */
.plan-footer {
  text-align: center;
  padding: 36px 20px 24px;
  color: var(--slate);
}
.plan-footer p {
  font-size: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.pf-note { font-size: 11px; font-weight: 400; margin-top: 6px; opacity: 0.7; }

/* ===== ボトムナビ ===== */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(20,35,61,0.08);
  display: flex;
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom);
}
.bn-item {
  flex: 1;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  color: var(--slate);
  transition: color 0.2s;
}
.bn-item span { font-size: 20px; filter: grayscale(0.4); transition: filter 0.2s, transform 0.2s; }
.bn-item label { font-size: 10px; font-weight: 700; cursor: pointer; }
.bn-item.active { color: var(--violet); }
.bn-item.active span { filter: grayscale(0); transform: translateY(-2px) scale(1.1); }
.bn-item:active span { transform: scale(0.85); }

/* ===== 詳細シート ===== */
.detail-sheet {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
}
.detail-sheet.open { display: block; }
.ds-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,24,40,0.5);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.3s;
}
.ds-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-height: 88vh;
  background: var(--paper);
  border-radius: 28px 28px 0 0;
  overflow-y: auto;
  animation: sheetUp 0.4s cubic-bezier(0.2,0.9,0.3,1);
}
.ds-handle {
  width: 40px; height: 5px;
  background: #d8cfbf;
  border-radius: 100px;
  margin: 12px auto 0;
}
.ds-body { padding: 8px 0 30px; }
.ds-hero {
  height: 220px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  margin: 12px 16px 0;
  border-radius: 24px;
  overflow: hidden;
}
.ds-info { padding: 20px 22px 0; }
.ds-loc { font-size: 13px; color: var(--slate); font-weight: 600; }
.ds-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  margin: 6px 0 12px;
}
.ds-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ds-badge {
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; color: white;
  display: flex; align-items: center; gap: 4px;
}
.ds-desc { font-size: 14px; line-height: 1.8; color: #3a4658; margin-bottom: 20px; }
.ds-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-top: 1px solid #ece3d3;
}
.ds-row-label { font-size: 13px; color: var(--slate); font-weight: 600; }
.ds-row-val { font-size: 15px; color: var(--ink); font-weight: 700; }
.ds-cta {
  margin: 24px 22px 0;
  display: flex; gap: 12px;
}
.ds-cta button {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
}
.ds-save {
  background: white;
  color: var(--violet);
  border: 2px solid var(--violet) !important;
}
.ds-book {
  background: linear-gradient(135deg, var(--coral), var(--sunset));
  color: white;
  box-shadow: 0 10px 26px rgba(255,107,93,0.4);
}
.ds-soon {
  text-align: center;
  font-size: 11px;
  color: var(--slate);
  margin: 12px 22px 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* row stagger */
.row { opacity: 0; animation: fadeUp 0.6s forwards; }
.row:nth-child(1) { animation-delay: 0.1s; }
.row:nth-child(2) { animation-delay: 0.2s; }
.row:nth-child(3) { animation-delay: 0.3s; }
.row:nth-child(4) { animation-delay: 0.4s; }
.row:nth-child(5) { animation-delay: 0.5s; }

/* ===== ヘッダー改（ロゴ＋通知＋メニュー） ===== */
.plan-header { justify-content: space-between; }
.ph-logo {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
.plan-header.scrolled .ph-logo { color: var(--navy); text-shadow: none; }
.ph-right { display: flex; gap: 10px; }
.ph-icon {
  position: relative;
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 17px; cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.ph-icon:active { transform: scale(0.9); }
.ph-dot {
  position: absolute; top: 8px; right: 9px;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  border: 1.5px solid white;
}

/* ===== ドロワー（メニュー・通知） ===== */
.drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.drawer.open { display: block; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,24,40,0.5);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.25s;
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 84%; max-width: 360px;
  background: var(--paper);
  box-shadow: -10px 0 40px rgba(0,0,0,0.25);
  animation: slideInRight 0.3s cubic-bezier(0.2,0.9,0.3,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-head {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy), #243b5e);
  color: white;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 17px;
}
.drawer-head button {
  border: none; background: rgba(255,255,255,0.2);
  color: white; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
}
.drawer-body { padding: 12px 16px 30px; }
.dr-section { margin-bottom: 22px; }
.dr-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--slate); text-transform: uppercase;
  margin: 8px 8px 10px;
}
.dr-item {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 14px 14px;
  background: white;
  border: none;
  border-radius: 14px;
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 15px; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(20,35,61,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dr-item:active { transform: scale(0.98); }
.dr-item span:first-child { font-size: 20px; }
.dr-val { margin-left: auto; font-size: 13px; color: var(--violet); font-weight: 700; }

/* 通知 */
.notif-panel { width: 88%; max-width: 380px; }
.notif-card {
  display: flex; gap: 12px;
  padding: 14px;
  background: white;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(20,35,61,0.05);
}
.notif-card.unread { border-left: 3px solid var(--coral); }
.nc-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nc-body { flex: 1; }
.nc-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.nc-text { font-size: 12.5px; color: #5a6678; line-height: 1.5; }
.nc-time { font-size: 11px; color: var(--slate); margin-top: 5px; }

/* ===== ピッカー（言語・通貨） ===== */
.picker { position: fixed; inset: 0; z-index: 110; display: none; }
.picker.open { display: block; }
.picker-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,24,40,0.5);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.25s;
}
.picker-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-radius: 28px 28px 0 0;
  padding: 0 0 30px;
  animation: sheetUp 0.35s cubic-bezier(0.2,0.9,0.3,1);
  max-height: 70vh; overflow-y: auto;
}
.picker-panel h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 18px;
  text-align: center; color: var(--ink);
  padding: 4px 0 16px;
}
.picker-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid #ece3d3;
}
.picker-opt:active { background: #f3ece0; }
.picker-opt.sel { color: var(--violet); font-weight: 800; }
.picker-opt .po-check { margin-left: auto; color: var(--violet); }

/* ===== フッター ===== */
.plan-foot {
  background: linear-gradient(180deg, #14233d 0%, #0d1828 100%);
  color: rgba(255,255,255,0.85);
  margin-top: 30px;
  padding: 36px 22px 30px;
}
.pf-cta { text-align: center; margin-bottom: 32px; }
.pf-cta h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 22px; color: white;
  margin-bottom: 8px;
}
.pf-cta p { font-size: 13px; color: rgba(255,255,255,0.7); }
.pf-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-bottom: 30px;
}
.pf-col h4 {
  font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 12px; letter-spacing: 0.5px;
}
.pf-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.pf-col a:active { color: white; }
.pf-pay {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px; margin-bottom: 22px;
}
.pf-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
.pf-pay-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pay-chip {
  font-size: 11px; font-weight: 700;
  padding: 6px 11px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  color: rgba(255,255,255,0.9);
}
.pf-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px; margin-bottom: 24px;
}
.pf-sns { display: flex; gap: 10px; }
.sns-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.sns-btn:active { transform: scale(0.9); background: rgba(255,255,255,0.2); }
.pf-selectors { display: flex; gap: 10px; }
.pf-select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-family: inherit; font-size: 12px; font-weight: 600;
  padding: 9px 14px; border-radius: 100px;
  cursor: pointer;
}
.pf-copy { text-align: center; }
.pf-logo {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 20px; color: white;
  letter-spacing: 2px; margin-bottom: 6px;
}
.pf-logo span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 4px; }
.pf-copy > p {
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-family: "Zen Maru Gothic", sans-serif; margin-bottom: 12px;
}
.pf-copy small { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ===== ボトムナビ 6個対応 ===== */
.bn-item label { font-size: 9.5px; }
.bn-item span { font-size: 19px; }

/* ===== アカウント画面（全画面シート） ===== */
.account-screen {
  position: fixed; inset: 0;
  z-index: 95;
  background: var(--paper);
  display: none;
  flex-direction: column;
}
.account-screen.open { display: flex; animation: accIn 0.35s cubic-bezier(0.2,0.9,0.3,1); }
@keyframes accIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #14233d, #243b5e);
  color: white;
  flex-shrink: 0;
}
.acc-header span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 18px;
}
.acc-back, .acc-gear {
  border: none; background: rgba(255,255,255,0.18);
  color: white; width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 15px;
}
.acc-scroll { flex: 1; overflow-y: auto; padding: 18px 16px 40px; }

/* プロフィール */
.acc-profile {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.acc-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #845ef7, #6845e0);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(132,94,247,0.35);
  flex-shrink: 0;
}
.acc-pinfo { flex: 1; min-width: 0; }
.acc-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 18px; color: var(--ink);
  display: flex; flex-direction: column; gap: 5px; align-items: flex-start;
}
.acc-rank-badge {
  font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, #c0c8d4, #94a0b0);
  color: white; padding: 3px 10px; border-radius: 100px;
}
.acc-email { font-size: 12px; color: var(--slate); margin-top: 4px; }
.acc-edit {
  border: 1.5px solid #d8cfbf; background: white;
  color: var(--slate); font-family: inherit; font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 100px; cursor: pointer; flex-shrink: 0;
}

/* ステータス */
.acc-stats {
  display: flex;
  background: white;
  border-radius: 18px;
  padding: 18px 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.acc-stat { flex: 1; text-align: center; position: relative; }
.acc-stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: #ece3d3;
}
.as-num {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 22px; color: var(--navy);
}
.as-label { font-size: 11px; color: var(--slate); margin-top: 4px; }

/* カード共通 */
.acc-card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

/* 旅人ランク */
.ar-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ar-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 17px; color: var(--ink); }
.ar-sub { font-size: 12px; color: var(--slate); margin-top: 4px; }
.ar-sub b { color: var(--violet); }
.ar-more {
  border: none; background: #f0ebf8; color: var(--violet);
  font-family: inherit; font-size: 11px; font-weight: 700;
  padding: 7px 12px; border-radius: 100px; cursor: pointer; white-space: nowrap;
}
.ar-bar { height: 8px; background: #ece3d3; border-radius: 100px; overflow: hidden; margin-bottom: 14px; }
.ar-fill { height: 100%; background: linear-gradient(90deg, #c0c8d4, #ffce3b); border-radius: 100px; }
.ar-perks { display: flex; flex-direction: column; gap: 8px; }
.ar-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink); font-weight: 600; }
.ar-perk.locked { color: #b0b8c4; }

/* クイックアクセス グリッド */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.acc-tile {
  position: relative;
  background: white;
  border: none;
  border-radius: 16px;
  padding: 18px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-family: inherit;
  transition: transform 0.2s;
}
.acc-tile:active { transform: scale(0.95); }
.at-icon { font-size: 26px; }
.at-label { font-size: 12px; font-weight: 700; color: var(--ink); }
.at-badge {
  position: absolute; top: 10px; right: 14px;
  background: var(--coral); color: white;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* 招待特典 */
.acc-invite {
  display: flex; gap: 14px; align-items: center;
  background: linear-gradient(135deg, #845ef7, #6845e0);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 14px;
  color: white;
  box-shadow: 0 10px 30px rgba(132,94,247,0.35);
}
.ai-deco { font-size: 44px; flex-shrink: 0; }
.ai-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 17px; margin-bottom: 6px; }
.ai-text { font-size: 12.5px; line-height: 1.6; opacity: 0.92; margin-bottom: 12px; }
.ai-text b { color: var(--gold); }
.ai-btn {
  border: none; background: white; color: var(--violet);
  font-family: inherit; font-weight: 800; font-size: 13px;
  padding: 10px 18px; border-radius: 100px; cursor: pointer;
}

/* アプリ勧誘 */
.acc-app {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #14233d, #243b5e);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 22px;
  color: white;
}
.aa-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 15px; margin-bottom: 4px; }
.aa-text { font-size: 11.5px; opacity: 0.8; }
.aa-btn {
  border: none; background: linear-gradient(135deg, #4dd4ac, #2eb88a); color: white;
  font-family: inherit; font-weight: 800; font-size: 13px;
  padding: 11px 20px; border-radius: 100px; cursor: pointer; flex-shrink: 0;
}

/* 設定セクション */
.acc-section { margin-bottom: 20px; }
.acc-sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--slate); text-transform: uppercase; margin: 0 6px 10px;
}
.acc-row {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  background: white;
  border: none;
  padding: 15px 16px;
  font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid #f3ece0;
}
.acc-row:first-of-type { border-radius: 14px 14px 0 0; }
.acc-row:last-of-type { border-radius: 0 0 14px 14px; border-bottom: none; }
.acc-row span:first-child { font-size: 18px; }
.acc-val { margin-left: auto; font-size: 13px; color: var(--violet); font-weight: 700; }
.acc-arrow { margin-left: auto; color: #c0b8a8; font-size: 20px; }
.acc-val + .acc-arrow { margin-left: 8px; }
.acc-logout { color: var(--coral); border-radius: 14px; }
.acc-logout span:first-child { font-size: 18px; }
.acc-foot { text-align: center; font-size: 11px; color: var(--slate); margin-top: 8px; }

/* ===== ホーム：会員ランク ミニ ===== */
.home-rank {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 16px 16px 4px;
  padding: 14px 16px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.hr-left { display: flex; align-items: center; gap: 12px; }
.hr-badge {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, #c0c8d4, #94a0b0);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  flex-shrink: 0;
}
.hr-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 15px; color: var(--ink); }
.hr-sub { font-size: 11.5px; color: var(--slate); margin-top: 2px; }
.hr-sub b { color: var(--violet); }
.hr-right { text-align: right; min-width: 110px; }
.hr-bar { height: 7px; background: #ece3d3; border-radius: 100px; overflow: hidden; margin-bottom: 5px; }
.hr-fill { height: 100%; background: linear-gradient(90deg, #c0c8d4, #ffce3b); border-radius: 100px; }
.hr-pt { font-size: 11px; font-weight: 700; color: var(--slate); }

/* ===== ホーム：キャンペーン帯 ===== */
.home-campaign { margin-top: 16px; }
.hc-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding: 4px 16px 6px; scrollbar-width: none; scroll-snap-type: x mandatory;
}
.hc-scroll::-webkit-scrollbar { display: none; }
.hc-card {
  position: relative; flex-shrink: 0;
  width: 260px; height: 110px;
  border-radius: 18px; padding: 16px 18px;
  overflow: hidden; color: white;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
}
.hc-1 { background: linear-gradient(135deg, #3cc5e8, #1a9fc4); }
.hc-2 { background: linear-gradient(135deg, #845ef7, #6845e0); }
.hc-3 { background: linear-gradient(135deg, #ff9a62, #ff6b5d); }
.hc-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,0.25); padding: 3px 9px; border-radius: 100px; margin-bottom: 8px;
}
.hc-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 18px; }
.hc-text { font-size: 12px; opacity: 0.9; margin-top: 4px; }
.hc-deco { position: absolute; right: 12px; bottom: 8px; font-size: 46px; opacity: 0.45; }

/* ===== ホーム：人気ランキング ===== */
.home-ranking { padding: 22px 0 8px; }
.rank-list {
  display: flex; flex-direction: column; gap: 10px;
  padding: 4px 16px 0;
}
.rank-item {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: 16px; padding: 12px 14px;
  box-shadow: var(--shadow-soft); cursor: pointer;
  transition: transform 0.2s;
}
.rank-item:active { transform: scale(0.98); }
.rank-num {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 22px;
  width: 30px; text-align: center; flex-shrink: 0;
}
.rank-item:nth-child(1) .rank-num { color: #ffb800; }
.rank-item:nth-child(2) .rank-num { color: #b0b8c4; }
.rank-item:nth-child(3) .rank-num { color: #d09a5c; }
.rank-item:nth-child(n+4) .rank-num { color: #c8cdd6; font-size: 18px; }
.rank-thumb {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.rank-body { flex: 1; min-width: 0; }
.rank-name { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.rank-meta { font-size: 11.5px; color: var(--slate); margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.rank-up { color: var(--mint); font-weight: 700; }

/* ===== アカウント サブシート ===== */
.acc-sub-panel { max-height: 84vh; }
.acc-sub-body { padding: 4px 18px 10px; }
.sub-text { font-size: 14px; line-height: 1.8; color: #3a4658; padding: 8px 2px 16px; }
.sub-link {
  display: block; width: 100%; padding: 14px; margin-top: 4px;
  border: none; border-radius: 14px; background: linear-gradient(135deg,var(--violet),#6845e0);
  color: white; font-family: "Zen Maru Gothic",sans-serif; font-weight: 900; font-size: 14px; cursor: pointer;
}
/* サブカード */
.sub-card {
  display: flex; gap: 12px; background: white; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 10px; cursor: pointer;
}
.sub-card-img { width: 84px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; font-size: 34px; }
.sub-badges { position: absolute; top: 6px; left: 6px; display: flex; gap: 3px; }
.sub-mini { font-size: 9px; padding: 2px 5px; border-radius: 100px; color: white; }
.sub-card-body { flex: 1; padding: 11px 12px; min-width: 0; position: relative; }
.sub-card-loc { font-size: 11px; color: var(--slate); font-weight: 600; }
.sub-card-name { font-family: "Zen Maru Gothic",sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); margin: 3px 0; }
.sub-card-meta { font-size: 12px; color: var(--slate); }
.sub-status { position: absolute; top: 11px; right: 12px; font-size: 10px; font-weight: 700; color: var(--mint); background: #e3f9f0; padding: 3px 8px; border-radius: 100px; }
/* 空状態 */
.sub-empty { text-align: center; padding: 40px 20px; }
.se-e { font-size: 48px; margin-bottom: 12px; }
.se-t { font-family: "Zen Maru Gothic",sans-serif; font-weight: 900; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.se-x { font-size: 13px; color: var(--slate); line-height: 1.6; }
/* ポイント */
.pt-balance { font-size: 14px; color: var(--ink); padding: 6px 2px 14px; }
.pt-balance b { font-family: "Zen Maru Gothic",sans-serif; font-size: 22px; color: var(--violet); }
.pt-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 2px; border-bottom: 1px solid #ece3d3; }
.pt-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.pt-date { font-size: 11px; color: var(--slate); margin-top: 3px; }
.pt-amt { font-family: "Zen Maru Gothic",sans-serif; font-weight: 900; font-size: 16px; color: var(--mint); }
/* クーポン */
.cp-card { background: white; border-radius: 14px; padding: 16px; margin-bottom: 10px; box-shadow: var(--shadow-soft); position: relative; }
.cp-title { font-family: "Zen Maru Gothic",sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.cp-cond { font-size: 12px; color: var(--slate); margin: 6px 0 0; }
.cp-use { position: absolute; top: 16px; right: 16px; border: none; background: var(--navy); color: white; font-family: inherit; font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 100px; cursor: pointer; }

/* ===== プロフィール編集・背景 ===== */
.ie-label2 { display:block; font-size:12px; font-weight:700; color:var(--slate); margin:14px 2px 8px; }
.prof-input {
  width:100%; padding:13px 14px; border:1.5px solid #e6ddcd; border-radius:12px;
  font-family:inherit; font-size:15px; color:var(--ink); background:#fdfbf7; outline:none;
}
.prof-input:focus { border-color:var(--violet); }
.avatar-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:8px; }
.av-opt {
  aspect-ratio:1; border:2px solid #e6ddcd; background:#fdfbf7;
  border-radius:12px; font-size:24px; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.av-opt.on { border-color:var(--violet); background:#f0ebf8; transform:scale(1.05); }
.prof-save {
  width:100%; margin-top:20px; padding:15px; border:none; border-radius:14px;
  background:linear-gradient(135deg,var(--violet),#6845e0); color:white;
  font-family:"Zen Maru Gothic",sans-serif; font-weight:900; font-size:15px; cursor:pointer;
}
.bg-upload {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:16px; border:2px dashed #d0c6b2; border-radius:14px; background:#fdfbf7;
  font-weight:700; font-size:14px; color:var(--violet); cursor:pointer; margin-bottom:6px;
}
.bg-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:4px; }
.bg-opt {
  height:70px; border:none; border-radius:14px; cursor:pointer; position:relative; overflow:hidden;
  display:flex; align-items:flex-end; padding:10px;
}
.bg-opt span {
  font-size:12px; font-weight:700; color:white; text-shadow:0 1px 4px rgba(0,0,0,0.5);
}
/* 削除ボタン */
.sub-del {
  position:absolute; top:10px; right:10px;
  width:26px; height:26px; border-radius:50%;
  border:none; background:rgba(20,35,61,0.08); color:var(--slate);
  font-size:12px; cursor:pointer; z-index:2;
}
.sub-del:active { background:var(--coral); color:white; }
.sub-clear-all {
  width:100%; margin-top:8px; padding:13px; border:none; border-radius:12px;
  background:transparent; color:var(--coral); font-family:inherit; font-weight:700; font-size:13px; cursor:pointer;
}

/* ===== みんなの旅メモ ===== */
.home-feed { padding: 22px 0 8px; }
.feed-list { display: flex; flex-direction: column; gap: 14px; padding: 4px 16px 0; }
.feed-card {
  background: white; border-radius: 18px; padding: 16px;
  box-shadow: var(--shadow-soft); cursor: pointer;
}
.fc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.fc-cat { font-size: 10.5px; font-weight: 700; color: white; padding: 3px 9px; border-radius: 100px; }
.fc-author { font-size: 12px; font-weight: 700; color: var(--ink); }
.fc-time { font-size: 11px; color: var(--slate); margin-left: auto; }
.fc-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.fc-body {
  font-size: 13px; line-height: 1.7; color: #4a5668;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.fc-foot { display: flex; gap: 8px; margin-top: 12px; }
.fc-like, .fc-comment, .fc-report {
  border: 1.5px solid #ece3d3; background: #fdfbf7;
  font-family: inherit; font-size: 12px; font-weight: 700; color: var(--slate);
  padding: 7px 12px; border-radius: 100px; cursor: pointer;
}
.fc-like.on { background: #ffe8e5; border-color: var(--coral); color: var(--coral); }
.fc-report { margin-left: auto; color: #b0b8c4; }
/* 投稿ビューア */
#postViewBody { padding: 4px 20px 16px; }
.pv-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.pv-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 22px; color: var(--ink); margin-bottom: 14px; line-height: 1.35; }
.pv-body { font-size: 14.5px; line-height: 1.9; color: #3a4658; margin-bottom: 18px; }
.pv-actions { display: flex; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid #ece3d3; }
.pv-cmts-label { font-size: 13px; font-weight: 700; color: var(--ink); margin: 16px 0 12px; }
.pv-cmt { font-size: 13.5px; color: #3a4658; padding: 10px 0; border-bottom: 1px solid #f3ece0; line-height: 1.5; }
.pv-cmt b { display: block; font-size: 12px; color: var(--violet); margin-bottom: 3px; }
.pv-nocmt { font-size: 13px; color: var(--slate); padding: 10px 0; }
.pv-cmt-form { display: flex; gap: 8px; margin-top: 14px; }
.pv-cmt-form input {
  flex: 1; padding: 12px 14px; border: 1.5px solid #e6ddcd; border-radius: 100px;
  font-family: inherit; font-size: 14px; background: #fdfbf7; outline: none;
}
.pv-cmt-form input:focus { border-color: var(--violet); }
.pv-cmt-form button {
  border: none; background: var(--violet); color: white; font-family: inherit; font-weight: 700;
  font-size: 14px; padding: 0 18px; border-radius: 100px; cursor: pointer;
}
/* 投稿エディタ */
.post-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.post-cat {
  border: 1.5px solid #e6ddcd; background: #fdfbf7;
  font-family: inherit; font-size: 12.5px; font-weight: 700; color: var(--slate);
  padding: 8px 13px; border-radius: 100px; cursor: pointer;
}
.post-cat.on { background: var(--navy); color: white; border-color: var(--navy); }
.post-note { font-size: 11px; color: var(--slate); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ===== 写真アイコン編集 ===== */
.prof-icon-wrap { display:flex; flex-direction:column; align-items:center; gap:12px; padding:8px 0 4px; }
.prof-icon-prev {
  width:96px; height:96px; border-radius:50%;
  background:linear-gradient(135deg,#845ef7,#6845e0); background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center; font-size:46px;
  box-shadow:0 8px 22px rgba(132,94,247,0.3);
}
.prof-icon-prev.emoji { font-size:46px; }
.prof-icon-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 18px; border:1.5px solid var(--violet); border-radius:100px;
  color:var(--violet); font-weight:700; font-size:13px; cursor:pointer; background:white;
}

/* ===== スワイプ削除 ===== */
.swipe-hint { font-size:11px; color:var(--slate); text-align:right; padding:0 4px 8px; }
.swipe-wrap { position:relative; border-radius:16px; overflow:hidden; margin-bottom:10px; }
.swipe-bg {
  position:absolute; inset:0; background:var(--coral);
  display:flex; align-items:center; justify-content:flex-end;
  padding-right:24px; color:white; font-weight:800; font-size:14px;
}
.swipe-wrap .sub-card { position:relative; margin-bottom:0; cursor:grab; }

/* ===== いいねした投稿 ===== */
.liked-post {
  background:white; border-radius:14px; padding:14px; margin-bottom:10px;
  box-shadow:var(--shadow-soft); cursor:pointer;
}
.lp-title { font-family:"Zen Maru Gothic",sans-serif; font-weight:700; font-size:15px; color:var(--ink); margin:8px 0 5px; }
.lp-meta { font-size:12px; color:var(--slate); }

/* ===== 支払いロゴ ===== */
.pay-logo { display:inline-block; width:46px; height:30px; }
.pay-logo svg { width:100%; height:100%; display:block; border-radius:5px; box-shadow:0 1px 3px rgba(0,0,0,0.2); }
/* ===== SNSロゴ（ブランドカラー） ===== */
.pf-sns .sns-btn { background:#111; }
.pf-sns .sns-btn svg { width:18px; height:18px; }
.pf-sns .sns-btn.ig { background:radial-gradient(circle at 30% 110%, #FFD600 0%, #FF7A00 25%, #FF0069 50%, #D300C5 75%, #7638FA 100%); }
.pf-sns .sns-btn.yt { background:#FF0000; }

/* ===== 投稿写真 ===== */
.post-photos { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.pp-thumb {
  width:72px; height:72px; border-radius:10px; background-size:cover; background-position:center;
  position:relative; flex-shrink:0;
}
.pp-del {
  position:absolute; top:-6px; right:-6px; width:22px; height:22px; border-radius:50%;
  border:2px solid white; background:var(--coral); color:white; font-size:11px; cursor:pointer;
}
.post-photo-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 16px; border:1.5px dashed #d0c6b2; border-radius:12px;
  color:var(--violet); font-weight:700; font-size:13px; cursor:pointer; background:#fdfbf7;
}
.fc-photos { display:flex; gap:6px; margin-bottom:10px; overflow:hidden; border-radius:12px; }
.fc-photo { flex:1; height:120px; background-size:cover; background-position:center; min-width:0; }
.pv-photos { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.pv-photo { width:100%; height:200px; background-size:cover; background-position:center; border-radius:14px; }

/* ===== 投稿促進バー ===== */
.feed-cta {
  display:flex; align-items:center; gap:12px;
  width:calc(100% - 32px); margin:0 16px 14px;
  padding:12px 14px; border:none; border-radius:16px;
  background:white; box-shadow:var(--shadow-soft); cursor:pointer;
  font-family:inherit;
}
.feed-cta:active { transform:scale(0.99); }
.fcta-avatar {
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,#845ef7,#6845e0); background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.fcta-text { flex:1; text-align:left; font-size:14px; color:#9aa3b2; }
.fcta-btn {
  flex-shrink:0; background:linear-gradient(135deg,var(--violet),#6845e0); color:white;
  font-weight:800; font-size:13px; padding:9px 16px; border-radius:100px;
}

/* ===== YSMピクトグラム ===== */
.ysm-ic { display:inline-flex; align-items:center; justify-content:center; }
.ysm-ic svg { width:100%; height:100%; display:block; }
/* ボトムナビをピクトグラムに */
.bn-item .ysm-ic { width:24px; height:24px; }
.bn-item.active .ysm-ic { transform:translateY(-2px); }
/* カテゴリチップ */
.cat-chip .ysm-ic { width:18px; height:18px; }
/* ヘッダー */
.ph-icon .ysm-ic { width:20px; height:20px; }

/* メニュー・アカウントのアイコンサイズ */
.dr-item .ysm-ic { width:20px; height:20px; }
.acc-tile .at-icon .ysm-ic { width:26px; height:26px; }
.acc-row .ysm-ic { width:18px; height:18px; }
