/* ============================================================
   kitappi.css
   Kitappi 認証フロー刷新（Phase 1 UI 雛形）
   - ベースは デザイン案/styles.css の --wf-* カラーを取り込み
   - フォントはローカルシステムフォントスタックのみ（Google Fonts 不使用）
   ============================================================ */

/* Alpine 初期化前は x-cloak 付き要素を非表示にし、x-show 未適用による一瞬の表示(FOUC)を防ぐ */
[x-cloak] {
	display: none !important;
}

:root {
	--ink: #1d2a1f;
	--ink-soft: #5b6b5e;
	--muted: #bbbebb;
	--line: #1d2a1f;
	--line-soft: #b8d6b9;
	--fill-0: #ffffff;
	--fill-1: #f1faf0;
	--fill-2: #e5f7e4;
	--fill-3: #c6ebc4;
	--key: #5bb932;
	--key-soft: #00bf99;
	--key-cool: #0981cd;
	--key-tint: #e5f7e4;
	--key-grad: linear-gradient(135deg, #5bb932 0%, #00bf99 60%, #10ceda 100%);
	--danger: #d04a3a;
	--sans: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', system-ui, sans-serif;
	--mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	/* ボトムナビが占める高さ（バー＋中央QR丸ボタンの出っ張り分を含む概算）。
	   施設詳細モーダルをナビの上端で止めるために使用 */
	--bottom-nav-height: 130px;
}

/* ---------- 全体 ---------- */
body {
	margin: 0;
	padding: 0;
	background: linear-gradient(160deg, var(--fill-1) 0%, var(--fill-2) 100%);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 21px;
	line-height: 1.55;
	min-height: 100vh;
}
body * {
	box-sizing: border-box;
}
body button {
	font-family: inherit;
	cursor: pointer;
}

.app {
	max-width: 640px;
	margin: 0 auto;
	padding: 32px 24px 180px;
	min-height: 100vh;
	background: var(--fill-0);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
	position: relative;
}

/* ---------- ロゴ ---------- */
.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
}
.logo-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}
.logo-text {
	font-size: 43px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.logo-wordmark {
	width: min(240px, calc(100vw - 64px));
	height: auto;
	object-fit: contain;
}
.logo-sub {
	font-size: 24px;
	color: var(--ink-soft);
	letter-spacing: 0.04em;
}

/* ---------- タブ（ログイン / 新規登録） ---------- */
.tabs {
	display: flex;
	gap: 0;
	background: var(--fill-1);
	border-radius: 6px;
	padding: 6px;
	margin-bottom: 16px;
}
.tab {
	flex: 1;
	padding: 12px 0;
	background: transparent;
	border: none;
	border-radius: 4px;
	font-size: 24px;
	font-weight: 600;
	color: var(--ink-soft);
	text-align: center;
	cursor: pointer;
}
.tab.is-active {
	background: var(--key);
	color: #fff;
}

/* ---------- カード ---------- */
.card {
	background: var(--fill-1);
	border: 1px solid var(--line-soft);
	border-radius: 10px;
	padding: 28px 22px;
	margin-bottom: 16px;
}
.card-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--ink);
	text-align: center;
	margin: 0 0 16px;
}
.card-sub {
	font-size: 21px;
	line-height: 1.7;
	color: var(--ink-soft);
	text-align: center;
	margin: 0 0 16px;
}
.card-icon {
	width: 136px;
	height: 136px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--line-soft);
	border-radius: 50%;
	background: var(--fill-0);
	color: var(--ink);
	font-size: 50px;
}
.card-icon-img {
	width: 124px;
	height: auto;
	object-fit: contain;
}

/* ---------- ボタン ---------- */
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 93px;
	padding: 0 18px;
	border: 1px solid var(--line-soft);
	background: var(--fill-0);
	border-radius: 6px;
	font-size: 25px;
	font-weight: 600;
	color: var(--ink);
}
.btn--primary {
	background: var(--key-grad);
	color: #fff;
	border-color: transparent;
}
.btn--primary:disabled {
	background: var(--line-soft);
	color: var(--fill-0);
	cursor: not-allowed;
}
.btn--ghost {
	background: transparent;
	border-style: dashed;
}
.btn--text {
	background: transparent;
	border: none;
	color: var(--ink-soft);
	font-weight: 500;
}

/* ---------- 区切り「または」 ---------- */
.divider {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ink-soft);
	font-size: 21px;
	margin: 16px 0;
}
.divider::before,
.divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--line-soft);
}

/* ---------- 入力欄 ---------- */
.field {
	margin-bottom: 14px;
}
.label {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: var(--ink-soft);
	margin-bottom: 4px;
}
.label .req {
	color: var(--danger);
	margin-left: 4px;
}
.input {
	width: 100%;
	min-height: 93px;
	padding: 0 16px;
	border: 1px solid var(--line-soft);
	background: var(--fill-0);
	border-radius: 6px;
	font-size: 25px;
	color: var(--ink);
	font-family: inherit;
}
.input:focus {
	outline: 2px solid var(--key);
	outline-offset: -2px;
	border-color: var(--key);
}
/* プレースホルダーは入力済みテキストより薄く（テーマの muted グレー）し、入力欄であることを邪魔しない */
.input::placeholder {
	color: var(--muted);
	opacity: 1;
	font-weight: 400;
}
.input:read-only {
	background: var(--fill-1);
	color: var(--ink-soft);
}
.input-2col {
	display: flex;
	gap: 8px;
}
.input-2col .input {
	flex: 1;
}
.input-3col {
	display: flex;
	gap: 8px;
}
.input-3col .input {
	flex: 1;
}
select.input {
	appearance: auto;
	-webkit-appearance: auto;
}
.radio-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	padding: 8px 0;
}
.radio {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 25px;
}
.radio input[type='radio'] {
	width: 22px;
	height: 22px;
	cursor: pointer;
}

/* ---------- フッター NOTE ---------- */
.note {
	margin-top: 20px;
	padding: 10px 12px;
	border: 1px dashed var(--line-soft);
	border-radius: 6px;
	font-size: 21px;
	line-height: 1.6;
	color: var(--ink-soft);
}
.note-label {
	font-size: 24px;
	font-weight: 700;
	color: var(--ink);
	margin-right: 4px;
}

/* ---------- 戻る ---------- */
.back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	color: var(--ink-soft);
	font-size: 24px;
	padding: 0;
	margin-bottom: 12px;
}

/* ---------- OTP 入力欄 ---------- */
.otp-row {
	display: flex;
	gap: 6px;
	justify-content: space-between;
	margin: 16px 0 8px;
}
.otp-cell {
	flex: 1;
	min-width: 0;
	width: 100%;
	height: 118px;
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	border: 1.5px solid var(--line-soft);
	border-radius: 6px;
	background: var(--fill-0);
	color: var(--ink);
	font-family: var(--mono);
}
.otp-cell:focus {
	outline: 2px solid var(--key);
	outline-offset: -2px;
	border-color: var(--key);
}
.otp-meta {
	text-align: center;
	font-size: 21px;
	color: var(--ink-soft);
	margin-bottom: 16px;
}
.otp-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.otp-actions .btn {
	flex: 1;
}

/* ---------- 規約同意 ---------- */
.agree {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 24px;
	color: var(--ink-soft);
	margin: 12px 0;
}
.agree input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--key);
}

/* ---------- ホーム挨拶 ---------- */
.greet {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.greet-name {
	font-size: 21px;
	color: var(--ink-soft);
	margin-bottom: 2px;
}
.greet-name-main {
	font-size: 32px;
	font-weight: 700;
	color: var(--ink);
}
.avatar {
	width: 62px;
	height: 62px;
	border: 1.5px solid var(--line-soft);
	border-radius: 50%;
	background: var(--fill-1) center/70% no-repeat;
}
.greet-logout {
	font-size: 24px;
	color: var(--ink-soft);
	text-decoration: underline;
	cursor: pointer;
	padding: 4px 8px;
}
.greet-logout:hover {
	color: var(--ink);
}

/* ---------- ホーム QR カード ---------- */
.qr-card {
	background: var(--fill-1);
	border: 1px solid var(--line-soft);
	border-radius: 14px;
	padding: 32px 24px;
	text-align: center;
	margin-bottom: 12px;
}
.qr-icon {
	width: 280px;
	height: 260px;
	max-width: 100%;
	margin: 0 auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--key);
	font-size: 74px;
}
.qr-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.qr-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.qr-sub {
	font-size: 21px;
	color: var(--ink-soft);
	margin-bottom: 16px;
	line-height: 1.5;
}

/* ---------- 最近の利用リスト ---------- */
.section-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--ink-soft);
	margin: 16px 0 8px;
	letter-spacing: 0.04em;
}
.recent-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.recent-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--fill-0);
	border: 1px solid var(--line-soft);
	border-radius: 8px;
	padding: 16px 18px;
	margin-bottom: 6px;
	font-size: 21px;
	color: var(--ink);
	cursor: pointer;
}
.recent-date {
	font-family: var(--mono);
	font-size: 21px;
	color: var(--ink-soft);
	min-width: 64px;
}
.recent-main {
	flex: 1;
}
.recent-time {
	font-weight: 600;
}
/* 予約ステータスバッジ（ホームの予約状況リスト等。施設管理側の色味に合わせる） */
.reservation-status-badge {
	display: inline-block;
	padding: 2px 12px;
	border-radius: 999px;
	font-size: 21px;
	font-weight: 600;
	white-space: nowrap;
	vertical-align: middle;
}
.reservation-status-pending          { background: #fff3cd; color: #8a6d00; }
.reservation-status-approved         { background: #d8f0df; color: #1f7a3d; }
.reservation-status-rejected         { background: #f8d7da; color: #9b2c2c; }
.reservation-status-cancel-requested { background: #e6e0f5; color: #5b3fa0; }
.reservation-status-cancelled        { background: #e9ecef; color: #6c757d; }
.reservation-status-unknown          { background: #e6e8ea; color: #5b6168; }
.recent-room {
	font-size: 21px;
	color: var(--ink-soft);
}
.recent-arrow {
	color: var(--ink-soft);
}
.dir-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 21px;
	font-weight: 700;
	flex-shrink: 0;
}
.dir-icon--entry {
	background: var(--fill-2);
	color: var(--key);
}
.dir-icon--exit {
	background: var(--fill-1);
	color: var(--ink-soft);
}
.dir-icon--common {
	background: var(--fill-1);
	color: var(--coolgray);
}

/* ---------- 下部ナビ ---------- */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 640px;
	display: flex;
	background: var(--fill-0);
	border-top: 1px solid var(--line-soft);
	padding: 10px 12px 16px;
	z-index: 5;
}
.nav-btn {
	flex: 1;
	background: none;
	border: none;
	padding: 6px 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 21px;
	color: var(--ink-soft);
}
.nav-btn.is-active {
	color: var(--key);
}
.nav-icon {
	font-size: 37px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	margin-bottom: 5px;
}
.nav-icon img {
	height: 100%;
	width: auto;
	max-width: 100%;
	display: block;
}
.nav-center {
	flex: 0 0 130px;
	background: var(--key-grad);
	color: #fff;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	margin-top: -34px;
	box-shadow: 0 4px 12px rgba(91, 185, 50, 0.4);
}
.nav-center .nav-icon {
	font-size: 46px;
	height: 50px;
	margin-top: 15px;
}

/* ---------- ユーザーSPA固定シェル ---------- */
html.user-spa-root,
html.user-spa-root body.user-spa-shell {
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}
html.user-spa-root body.user-spa-shell {
	position: relative;
	width: 100%;
	max-height: 100%;
	overscroll-behavior: none;
}
html.user-spa-root body.user-spa-shell #spa-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
}
html.user-spa-root body.user-spa-shell .bottom-nav {
	position: absolute;
	overflow: visible;
	transform: translate3d(-50%, 0, 0);
	will-change: transform;
	backface-visibility: hidden;
}
html.user-spa-root body.user-spa-shell .nav-center {
	position: relative;
	z-index: 1;
}

/* ---------- マイページ情報リスト ---------- */
.info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.info-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}
.info-row:last-child {
	border-bottom: none;
}
.info-label {
	font-size: 24px;
	color: #777;
}
.info-value {
	font-weight: 600;
	color: var(--ink);
}

/* ---------- ユーティリティ ---------- */
.hidden {
	display: none !important;
}
.mt-8 {
	margin-top: 8px;
}
.mt-16 {
	margin-top: 16px;
}
.mb-8 {
	margin-bottom: 8px;
}
.mb-16 {
	margin-bottom: 16px;
}

/* ---------- プロフィール編集 ---------- */
.prof-icon-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
}
.prof-icon {
	width: 186px;
	height: 186px;
	border-radius: 50%;
	background: var(--fill-2) url(../img/icon_user_default.svg) center / 70% no-repeat;
	background-size: cover;
	border: 2px solid var(--line-soft);
	cursor: pointer;
	margin-bottom: 8px;
}
.conf-val {
	font-size: 21px;
	color: var(--ink);
	padding: 10px 0;
	border-bottom: 1px solid var(--line-soft);
	min-height: 68px;
}

/* ---------- モーダル共通 ---------- */
.hide {
	display: none !important;
}
.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-bg {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: default;
}
.modal-content-wrapper {
	position: relative;
	z-index: 1;
	width: min(92vw, 600px);
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 12px;
}
.modal-content {
	background: var(--fill-0);
	border-radius: 12px;
	padding: 28px 24px 24px;
}
.modal-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
}
.modal-title-wrapper .title {
	font-size: 28px;
	font-weight: 700;
	color: var(--ink);
	flex: 1;
}
.modal-header-close-btn {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fill-2);
	border-radius: 50%;
	color: var(--ink-soft);
	font-size: 22px;
}
.modal-header-close-btn::after {
	content: '✕';
}
.modal-button-wrapper {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 12px;
}
.ok-button-wrapper {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

/* ---------- 施設詳細モーダル ---------- */
.facility-detail-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 21px;
	color: var(--ink);
}
.facility-detail-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	line-height: 1.5;
}
.facility-detail-label {
	font-size: 24px;
	color: var(--ink-soft);
	min-width: 48px;
	flex-shrink: 0;
}
.facility-detail-value {
	flex: 1;
	word-break: break-all;
}
.facility-map-container {
	width: 100%;
	height: 200px;
	margin-top: 8px;
	border-radius: 8px;
	overflow: hidden;
}

/* ---------- 施設詳細モーダル（ほぼ全画面・地図最大化） ---------- */
/* コンテナをボトムナビの上端までに制限し、ナビを覆わず表示・操作可能に保つ。
   カードは上・左右20px、ナビとの間も約20pxの余白でほぼ全画面化する。
   .modal 本体は他画面と共有のため、本修飾クラスでのみ上書きする。 */
.modal.facility-detail-modal {
	bottom: var(--bottom-nav-height);
	align-items: stretch;
	padding: 20px;
}
.modal.facility-detail-modal .modal-content-wrapper {
	width: 100%;
	max-width: 600px;
	height: 100%;
	max-height: none;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
}
.modal.facility-detail-modal .modal-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
/* 住所・電話（上）と閉じるボタン（下）は自然高さ、地図が残りを全部埋める */
.modal.facility-detail-modal .facility-detail-body {
	flex: 0 0 auto;
}
.modal.facility-detail-modal .modal-button-wrapper {
	flex: 0 0 auto;
}
.modal.facility-detail-modal .facility-map-container {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
}
/* 施設詳細モーダルの操作ボタンはボタン感を強める（共通 .button-border-round は変更しない・モーダル限定スコープ）。
   予約する＝塗り（primary）／閉じる＝枠線。 */
.facility-detail-modal .modal-button-wrapper .facility-modal-btn {
	min-width: 120px;
	padding: 14px 24px;
	font-size: 21px;
	font-weight: 700;
	border-radius: 999px;
	border: 1.5px solid #21b9c9;
	background-color: #fff;
	color: #21b9c9;
	cursor: pointer;
}
.facility-detail-modal .modal-button-wrapper .facility-modal-btn:hover {
	background-color: #eef9fb;
}
.facility-detail-modal .modal-button-wrapper .facility-modal-btn-primary {
	background-color: #21b9c9;
	color: #fff;
}
.facility-detail-modal .modal-button-wrapper .facility-modal-btn-primary:hover {
	background-color: #1aa6b4;
	color: #fff;
}

/* ---------- QRスキャナーモーダル ---------- */
#qr-scanner-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#qr-scanner-video {
	width: min(100vw, 745px);
	aspect-ratio: 1;
	object-fit: cover;
	background: #000;
	border-radius: 8px;
}
#qr-scanner-close-btn {
	position: fixed;
	top: 16px;
	right: 16px;
	width: 62px;
	height: 62px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 31px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
#qr-scanner-close-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}
#qr-scanner-status {
	margin-top: 16px;
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding: 0 16px;
	max-width: 480px;
}
.text-center {
	text-align: center;
}

/* ---------- SweetAlert2 ボタン配色（アプリ共通） ----------
   通常の確定ボタン＝ブランド緑、削除・退館など破壊的操作の確定ボタン＝赤（行内削除ボタン bt-row-delete と同色 #c0392b）。
   キャンセルは swal2 既定のグレーのまま据え置く。
   破壊的モーダルは Swal.fire の customClass: { confirmButton: 'swal2-confirm-danger' } で赤クラスを付ける。
   swal2 既定（.swal2-styled.swal2-confirm）に確実に勝つよう .swal2-popup を前置して詳細度を上げる（!important 不使用）。 */
.swal2-popup .swal2-styled.swal2-confirm {
	background-color: #00bf99;
}
.swal2-popup .swal2-styled.swal2-confirm:hover {
	background-color: #00a886;
}
.swal2-popup .swal2-styled.swal2-confirm:focus {
	box-shadow: 0 0 0 3px rgba(0, 191, 153, 0.4);
}
.swal2-popup .swal2-styled.swal2-confirm.swal2-confirm-danger {
	background-color: #c0392b;
}
.swal2-popup .swal2-styled.swal2-confirm.swal2-confirm-danger:hover {
	background-color: #a93226;
}
.swal2-popup .swal2-styled.swal2-confirm.swal2-confirm-danger:focus {
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.4);
}
/* ボタン文字サイズをアプリ共通で 24px に拡大（confirm / cancel / deny すべて）。
   swal2 既定は .swal2-styled.swal2-confirm{font-size:1em}（詳細度0,2,0・実行時に後から注入）。
   同点では後勝ちで負けるため、.swal2-actions を挟んで詳細度0,3,0で確実に勝たせる（!important 不使用）。 */
.swal2-popup .swal2-actions .swal2-styled {
	font-size: 24px;
}
/* アラート本文（説明テキスト）もアプリ共通で 24px に拡大。
   SweetAlert2 の本文コンテナ（新: html-container / 旧: content）双方を対象。 */
.swal2-popup .swal2-html-container,
.swal2-popup .swal2-content {
	font-size: 21px;
}
/* モーダルタイトルの既定は背景白・色は本文色を継承（プレーン）。アイコン有りモーダルはこちら。
   swal2 既定（.swal2-title）に勝つよう .swal2-popup を前置（詳細度0,2,0）。
   popup 既定 padding は 0 0 1.25em のため margin:0＋上角丸で上端まで届く。 */
.swal2-popup .swal2-title {
	margin: 0;
	padding: 27px 24px 20px;
	background-color: #fff;
	color: inherit;
	font-size: 28px;
	text-align: center;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
/* swal2-icon が表示されないモーダル（アイコン無し）のタイトルは緑帯＋白文字を維持。
   :not(:has(.swal2-icon-show)) で「アイコン未表示」を判定（詳細度0,3,0 で既定の0,2,0 に勝つ）。
   アイコン有り（warning/success/error/info/question 等）は上の既定＝白背景・inherit のまま。 */
.swal2-popup:not(:has(.swal2-icon-show)) .swal2-title {
	background-color: #00bf99;
	color: #fff;
}
