/* =========================================================
   Night Portal — メインスタイル（スマホ優先・黒基調）
   ========================================================= */

:root {
	--np-bg: #fff5f9;           /* ほんのりピンクの白 */
	--np-surface: #ffffff;      /* カードは純白 */
	--np-surface-2: #fff0f6;    /* やわらかいピンク */
	--np-text: #5a4650;         /* やさしい黒（プラム） */
	--np-muted: #b58da0;        /* くすみピンクの補助文字 */
	--np-accent: #ff7eb3;       /* メインのピンク */
	--np-accent-dark: #ff5fa0;  /* 濃いピンク（ホバー） */
	--np-border: #ffd6e7;       /* 淡いピンクの枠線 */
	--np-radius: 16px;          /* まるみを強めに */
	--np-shadow: 0 6px 20px rgba(255, 126, 179, 0.18);
	--np-available: #51c98a;    /* 空きあり：グリーン */
	--np-busy: #ffb454;         /* 混雑中：オレンジ */
	--np-full: #ff7088;         /* 満席：レッドピンク */
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--np-bg);
	color: var(--np-text);
	font-family: "M PLUS Rounded 1c", "Quicksand", -apple-system, BlinkMacSystemFont,
		"Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--np-accent);
	text-decoration: none;
}

a:hover {
	opacity: 0.85;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.np-container {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ---------- ヘッダー ---------- */
.np-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--np-border);
}

.np-header__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.np-header__logo {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.np-header__logo a {
	color: var(--np-text);
}

.np-header__nav a {
	font-size: 0.9rem;
	color: var(--np-muted);
}

/* ---------- メイン ---------- */
.np-main {
	padding: 24px 0 56px;
}

.np-section-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 8px 0 20px;
	padding-left: 12px;
	border-left: 4px solid var(--np-accent);
}

.np-empty {
	color: var(--np-muted);
	text-align: center;
	padding: 32px 0;
}

/* ---------- 広告枠（TOP） ---------- */
.np-ads {
	padding: 20px 0 4px;
}

.np-ads__label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--np-muted);
	margin: 0 0 8px;
}

.np-ads__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 720px) {
	.np-ads__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.np-ad {
	display: block;
	border-radius: var(--np-radius);
	overflow: hidden;
	box-shadow: var(--np-shadow);
	transition: transform 0.15s ease;
}

.np-ad:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.np-ad img {
	width: 100%;
	aspect-ratio: 16 / 5;
	object-fit: cover;
	display: block;
}

/* ---------- ヒーロー（トップ） ---------- */
.np-hero {
	padding: 56px 0;
	text-align: center;
	background: radial-gradient(120% 100% at 50% 0%, #ffe3ef 0%, var(--np-bg) 70%);
	border-bottom: 1px solid var(--np-border);
}

.np-hero__title {
	font-size: 1.8rem;
	margin: 0 0 12px;
	letter-spacing: 0.06em;
}

.np-hero__lead {
	color: var(--np-muted);
	margin: 0 0 24px;
}

.np-hero__btn {
	display: inline-block;
	padding: 12px 32px;
	background: var(--np-accent);
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	box-shadow: var(--np-shadow);
}

.np-hero__btn:hover {
	background: var(--np-accent-dark);
	opacity: 1;
}

/* 郵便番号の自動入力 */
.np-zip-group {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.np-zip-group input {
	flex: 1;
	min-width: 120px;
	padding: 10px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 1rem;
}

.np-zip-status {
	display: block;
	margin-top: 4px;
}

/* ---------- お店検索フォーム ---------- */
.np-search {
	background: var(--np-surface);
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	padding: 16px;
	margin-bottom: 18px;
	box-shadow: var(--np-shadow);
}

.np-search__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 640px) {
	.np-search__row {
		grid-template-columns: repeat(3, 1fr);
	}
}

.np-search__field {
	display: block;
}

.np-search__field > span {
	display: block;
	font-size: 0.8rem;
	color: var(--np-muted);
	margin-bottom: 4px;
}

.np-search__field select,
.np-search__field input {
	width: 100%;
	padding: 10px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 1rem;
}

.np-search__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 14px;
}

.np-search__count {
	color: var(--np-muted);
	font-size: 0.88rem;
	margin: 0 0 14px;
}

/* ---------- 店舗カードのグリッド ---------- */
.np-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media (min-width: 720px) {
	.np-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

.np-card {
	display: block;
	background: var(--np-surface);
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	overflow: hidden;
	color: var(--np-text);
	box-shadow: var(--np-shadow);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.np-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(255, 126, 179, 0.28);
	opacity: 1;
}

.np-card__thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--np-surface-2);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.np-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-card__noimg {
	color: var(--np-muted);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

.np-card__body {
	padding: 10px 12px 14px;
}

.np-card__title {
	font-size: 0.98rem;
	margin: 0 0 4px;
	line-height: 1.4;
}

.np-card__area {
	margin: 0;
	font-size: 0.8rem;
	color: var(--np-muted);
}

/* ---------- 混雑バッジ ---------- */
.np-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
	background: var(--np-muted);
}

.np-card__thumb .np-badge {
	position: absolute;
	top: 8px;
	left: 8px;
}

.np-card__working {
	position: absolute;
	bottom: 8px;
	left: 8px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
	color: #fff;
	background: rgba(90, 70, 80, 0.78);
}

.np-store__working {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--np-text);
	background: var(--np-surface-2);
	border: 1px solid var(--np-border);
}

.np-badge.is-available {
	background: var(--np-available);
}

.np-badge.is-busy {
	background: var(--np-busy);
}

.np-badge.is-full {
	background: var(--np-full);
}

/* ---------- 店舗詳細 ---------- */
.np-store__header {
	margin-bottom: 20px;
}

.np-store__thumb {
	border-radius: var(--np-radius);
	overflow: hidden;
	margin-bottom: 16px;
}

.np-store__head-body {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.np-store__title {
	font-size: 1.5rem;
	margin: 0;
}

.np-store__section {
	margin: 28px 0;
}

.np-store__h2 {
	font-size: 1.1rem;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--np-border);
}

/* 情報テーブル */
.np-info {
	width: 100%;
	border-collapse: collapse;
}

.np-info th,
.np-info td {
	text-align: left;
	padding: 10px 8px;
	border-bottom: 1px solid var(--np-border);
	vertical-align: top;
}

.np-info th {
	width: 30%;
	color: var(--np-muted);
	font-weight: 600;
	white-space: nowrap;
}

/* イベント */
.np-events {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.np-events__item {
	background: var(--np-surface);
	border: 1px solid var(--np-border);
	border-left: 4px solid var(--np-accent);
	border-radius: var(--np-radius);
	padding: 14px 16px;
}

.np-events__title {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.np-events__date {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: var(--np-accent);
}

/* キャストグリッド */
.np-cast-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

@media (min-width: 720px) {
	.np-cast-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.np-cast-card {
	display: block;
	color: var(--np-text);
	text-align: center;
}

.np-cast-card__thumb {
	position: relative;
	aspect-ratio: 3 / 4;
	background: var(--np-surface-2);
	border-radius: var(--np-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.np-cast-card__badge {
	position: absolute;
	top: 6px;
	left: 6px;
	font-size: 0.68rem;
	padding: 2px 8px;
}

.np-cast-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-cast-card__name {
	margin: 0;
	font-size: 0.85rem;
}

/* ---------- キャスト詳細 ---------- */
.np-cast__thumb {
	border-radius: var(--np-radius);
	overflow: hidden;
	margin-bottom: 16px;
	max-width: 360px;
}

.np-cast__head-body {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.np-cast__title {
	font-size: 1.5rem;
	margin: 0;
}

.np-cast__section {
	margin: 24px 0;
}

/* ---------- SNS・ほしいものリスト ボタン ---------- */
.np-sns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.np-sns__btn {
	display: inline-block;
	padding: 11px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	box-shadow: var(--np-shadow);
}

.np-sns__btn--ig {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.np-sns__btn--tt {
	background: #111;
}

.np-sns__btn--az {
	background: #ff9900;
	color: #1a1a1a;
}

/* ---------- キャストのフォトギャラリー（公開） ---------- */
.np-cast-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.np-cast-gallery__item {
	aspect-ratio: 1 / 1;
	border-radius: var(--np-radius);
	overflow: hidden;
	background: var(--np-surface-2);
}

.np-cast-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- ギャラリー編集（ダッシュボード） ---------- */
.np-gallery-edit {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 8px 0 12px;
}

.np-gallery-edit__item {
	background: var(--np-surface-2);
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	padding: 6px;
	text-align: center;
}

.np-gallery-edit__item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.np-gallery-edit__del {
	display: block;
	font-size: 0.78rem;
	color: var(--np-muted);
	margin-top: 4px;
}

.np-gallery-input {
	display: block;
	width: 100%;
	margin-bottom: 8px;
	color: var(--np-text);
	font-size: 0.9rem;
}

/* ---------- QRコード・URLコピー ---------- */
.np-qr {
	text-align: center;
	margin: 12px 0;
}

.np-qr img {
	display: inline-block;
	background: #fff;
	padding: 8px;
	border-radius: var(--np-radius);
	border: 1px solid var(--np-border);
}

.np-copy {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.np-copy input {
	flex: 1;
	min-width: 160px;
	padding: 10px;
	background: var(--np-surface-2);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 0.85rem;
}

.np-copy .np-btn {
	flex-shrink: 0;
	padding: 10px 18px;
}

/* ---------- ページネーション ---------- */
.np-pagination {
	margin-top: 32px;
	text-align: center;
}

.np-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 3px;
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
}

.np-pagination .page-numbers.current {
	background: var(--np-accent);
	color: #fff;
	border-color: var(--np-accent);
}

/* ---------- ボタン共通 ---------- */
.np-btn {
	display: inline-block;
	padding: 12px 28px;
	background: var(--np-accent);
	color: #fff;
	font-weight: 700;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-size: 1rem;
	box-shadow: var(--np-shadow);
}

.np-btn:hover {
	background: var(--np-accent-dark);
}

.np-btn--block {
	display: block;
	width: 100%;
}

/* ---------- ログイン画面 ---------- */
.np-auth {
	max-width: 420px;
}

.np-auth__title {
	font-size: 1.4rem;
	text-align: center;
	margin: 8px 0 24px;
}

.np-auth__form {
	background: var(--np-surface);
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	padding: 24px 20px;
	display: grid;
	gap: 16px;
	box-shadow: var(--np-shadow);
}

.np-field {
	display: block;
}

.np-field__label {
	display: block;
	font-size: 0.85rem;
	color: var(--np-muted);
	margin-bottom: 6px;
}

.np-field input,
.np-auth__form input[type="text"],
.np-auth__form input[type="password"] {
	width: 100%;
	padding: 12px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 1rem;
}

.np-field input:focus {
	outline: none;
	border-color: var(--np-accent);
}

.np-auth__remember {
	font-size: 0.85rem;
	color: var(--np-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.np-auth__error {
	background: #ffe9ee;
	border: 1px solid var(--np-full);
	color: #d6336c;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 0.9rem;
}

/* ---------- ダッシュボード ---------- */
.np-dash-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.np-logout {
	font-size: 0.85rem;
	color: var(--np-muted);
}

.np-dash-welcome {
	color: var(--np-muted);
	margin: 0 0 20px;
}

.np-dash-card {
	background: var(--np-surface);
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	padding: 20px;
	box-shadow: var(--np-shadow);
}

.np-dash-todo {
	margin: 8px 0 0;
	padding-left: 20px;
}

.np-dash-todo li {
	margin: 6px 0;
}

/* ---------- ダッシュボード（操作系） ---------- */
.np-notice {
	background: #eafaf2;
	border: 1px solid var(--np-available);
	color: #1f9d6b;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 0.9rem;
}

.np-muted {
	color: var(--np-muted);
	font-size: 0.88rem;
}

.np-dash .np-dash-card {
	margin-bottom: 18px;
}

.np-dash-card__title {
	font-size: 1.05rem;
	margin: 0 0 10px;
}

/* 混雑状況ボタン */
.np-cong-btns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.np-cong-btn {
	position: relative;
	padding: 18px 8px;
	border: 2px solid var(--np-border);
	border-radius: var(--np-radius);
	background: var(--np-surface-2);
	color: var(--np-text);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
}

.np-cong-btn.is-current {
	color: #fff;
	border-color: transparent;
}

.np-cong-btn.is-current.is-available {
	background: var(--np-available);
}

.np-cong-btn.is-current.is-busy {
	background: var(--np-busy);
}

.np-cong-btn.is-current.is-full {
	background: var(--np-full);
}

.np-cong-btn__now {
	display: block;
	font-size: 0.7rem;
	font-weight: 400;
	margin-top: 4px;
	opacity: 0.9;
}

/* 出勤リスト */
.np-attend-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.np-attend-item {
	border-bottom: 1px solid var(--np-border);
}

.np-attend-item label {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 4px;
	cursor: pointer;
}

.np-attend-item input[type="checkbox"] {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

/* 出勤スケジュール（店長：表） */
.np-sched-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 16px;
}

.np-sched {
	border-collapse: collapse;
	width: 100%;
	min-width: 480px;
}

.np-sched th,
.np-sched td {
	border: 1px solid var(--np-border);
	padding: 8px 6px;
	text-align: center;
	font-size: 0.82rem;
	white-space: nowrap;
}

.np-sched thead th {
	background: var(--np-surface-2);
}

.np-sched__name {
	text-align: left;
	position: sticky;
	left: 0;
	background: var(--np-surface);
	font-weight: 700;
	z-index: 1;
}

.np-sched thead .np-sched__name {
	background: var(--np-surface-2);
}

.np-sched__cell {
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.np-sched__cell input[type="checkbox"] {
	width: 20px;
	height: 20px;
}

/* 出勤予定（女の子・公開：チップ） */
.np-sched-days {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.np-sched-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 8px 12px;
	border: 1px solid var(--np-border);
	border-radius: 12px;
	background: var(--np-surface-2);
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
}

.np-sched-day input {
	width: 18px;
	height: 18px;
}

.np-sched-days--view .np-sched-day {
	cursor: default;
}

.np-sched-day small {
	font-weight: 400;
	font-size: 0.72rem;
	color: var(--np-muted);
}

.np-sched-day.is-on {
	background: var(--np-available);
	border-color: transparent;
	color: #fff;
}

.np-sched-day.is-on small {
	color: rgba(255, 255, 255, 0.9);
}

/* イベントフォーム */
.np-event-form {
	display: grid;
	gap: 12px;
	margin-bottom: 8px;
}

.np-event-form input[type="text"],
.np-event-form input[type="date"],
.np-event-form textarea {
	width: 100%;
	padding: 10px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 1rem;
	font-family: inherit;
}

.np-sep {
	border: none;
	border-top: 1px dashed var(--np-border);
	margin: 18px 0;
}

.np-event-new summary {
	cursor: pointer;
	color: var(--np-accent);
	padding: 8px 0;
	font-weight: 600;
}

.np-event-new[open] summary {
	margin-bottom: 12px;
}

/* 写真編集 */
.np-photo-edit {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.np-photo-edit__current {
	width: 120px;
	aspect-ratio: 3 / 4;
	background: var(--np-surface-2);
	border-radius: var(--np-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.np-photo-edit__current img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.np-photo-edit .np-field {
	flex: 1;
	min-width: 180px;
}

.np-photo-edit input[type="file"] {
	width: 100%;
	color: var(--np-text);
	font-size: 0.9rem;
}

/* 店長アカウント一覧 */
.np-mgr-list {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.np-mgr-list li {
	padding: 10px 4px;
	border-bottom: 1px solid var(--np-border);
	font-size: 0.92rem;
}

.np-mgr-store {
	display: block;
	margin-top: 2px;
	font-size: 0.8rem;
	color: var(--np-accent);
	font-weight: 700;
}

.np-mgr-item__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.np-mgr-item__move {
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
}

.np-mgr-item__move select {
	padding: 8px 10px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 0.88rem;
}

.np-btn--sm {
	padding: 8px 14px;
	font-size: 0.85rem;
	box-shadow: none;
}

.np-link-danger {
	background: none;
	border: none;
	color: var(--np-full);
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	padding: 8px 4px;
	text-decoration: underline;
}

.np-event-del {
	margin-top: 6px;
}

/* 会社ダッシュボード：店舗の折りたたみ編集 */
.np-store-edit {
	border: 1px solid var(--np-border);
	border-radius: var(--np-radius);
	margin-bottom: 12px;
	overflow: hidden;
}

.np-store-edit > summary {
	cursor: pointer;
	padding: 14px 16px;
	background: var(--np-surface-2);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.np-store-edit[open] > summary {
	border-bottom: 1px solid var(--np-border);
}

.np-store-edit .np-event-form {
	padding: 16px;
}

.np-store-edit__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.np-link-sub {
	font-size: 0.85rem;
	color: var(--np-muted);
}

.np-tag-warn {
	font-size: 0.72rem;
	font-weight: 700;
	color: #1a1a1a;
	background: var(--np-busy);
	padding: 2px 8px;
	border-radius: 999px;
}

.np-req {
	font-size: 0.7rem;
	color: var(--np-full);
	margin-left: 6px;
}

.np-dash .np-event-form select,
.np-store-edit select {
	width: 100%;
	padding: 10px;
	background: var(--np-bg);
	border: 1px solid var(--np-border);
	border-radius: 8px;
	color: var(--np-text);
	font-size: 1rem;
}

.np-hint {
	display: block;
	margin-top: 4px;
	font-size: 0.75rem;
	color: var(--np-muted);
}

/* イベント追加者ラベル */
.np-event-author {
	margin: 0 0 4px;
	font-size: 0.78rem;
	color: var(--np-accent);
	font-weight: 600;
}

.np-event-meta {
	font-weight: 400;
	font-size: 0.78rem;
	color: var(--np-muted);
}

/* ---------- フッター ---------- */
.np-footer {
	border-top: 1px solid var(--np-border);
	padding: 24px 0;
	margin-top: 40px;
}

.np-footer__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 16px;
	text-align: center;
}

.np-footer__copy {
	margin: 0;
	color: var(--np-muted);
	font-size: 0.82rem;
}
