2026-04-01 01:45:13 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ja">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
2026-04-04 17:19:08 +00:00
|
|
|
<meta name="description" content="Posimai — 広告なし、サブスクなし。買い切り500円で全アプリ使い放題。">
|
|
|
|
|
<meta name="theme-color" content="#0D0D0D">
|
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
|
<link rel="icon" type="image/png" href="/logo.png">
|
|
|
|
|
<link rel="apple-touch-icon" href="/logo.png">
|
2026-04-01 01:45:13 +00:00
|
|
|
<title>Posimai Store</title>
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
2026-04-04 17:19:08 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
|
2026-04-01 01:45:13 +00:00
|
|
|
<script src="https://unpkg.com/lucide@0.344.0/dist/umd/lucide.min.js" integrity="sha384-tTkFttkBclaU1cloKwOi9xk3pbao3VZxTjLNBt8iFABWDBQibbAbWpVmO28zMuxq" crossorigin="anonymous"></script>
|
|
|
|
|
<style>
|
|
|
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
|
|
|
|
|
|
:root {
|
2026-04-04 17:19:08 +00:00
|
|
|
--bg: #0D0D0D;
|
|
|
|
|
--surface: #161616;
|
|
|
|
|
--surface2: #1E1E1E;
|
|
|
|
|
--border: rgba(255,255,255,0.07);
|
|
|
|
|
--text: #F3F4F6;
|
|
|
|
|
--text2: #9CA3AF;
|
|
|
|
|
--text3: #6B7280;
|
|
|
|
|
--accent: #6EE7B7;
|
|
|
|
|
--accent-d: rgba(110,231,183,0.12);
|
|
|
|
|
--accent-b: rgba(110,231,183,0.25);
|
|
|
|
|
--r: 14px;
|
2026-04-01 01:45:13 +00:00
|
|
|
--r-sm: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'Inter', -apple-system, sans-serif;
|
|
|
|
|
background: var(--bg);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: 1.65;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
a { color: inherit; text-decoration: none; }
|
|
|
|
|
button { cursor: pointer; border: none; background: none; font-family: inherit; }
|
|
|
|
|
|
|
|
|
|
/* ── Nav ── */
|
|
|
|
|
nav {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2026-04-04 17:19:08 +00:00
|
|
|
padding: 0 24px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
background: rgba(13,13,13,0.9);
|
|
|
|
|
backdrop-filter: blur(16px);
|
|
|
|
|
-webkit-backdrop-filter: blur(16px);
|
2026-04-01 01:45:13 +00:00
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
.nav-brand {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
2026-04-04 17:19:08 +00:00
|
|
|
font-size: 14px;
|
2026-04-01 01:45:13 +00:00
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: -0.02em;
|
|
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.nav-dot {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
border-radius: 50%;
|
2026-04-01 01:45:13 +00:00
|
|
|
background: var(--accent);
|
|
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.nav-login {
|
2026-04-01 01:45:13 +00:00
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--text2);
|
2026-04-04 17:19:08 +00:00
|
|
|
padding: 6px 14px;
|
|
|
|
|
border: 1px solid var(--border);
|
2026-04-01 01:45:13 +00:00
|
|
|
border-radius: var(--r-sm);
|
2026-04-04 17:19:08 +00:00
|
|
|
transition: color .15s, border-color .15s;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.nav-login:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
|
2026-04-01 01:45:13 +00:00
|
|
|
|
|
|
|
|
/* ── Hero ── */
|
|
|
|
|
.hero {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
text-align: center;
|
|
|
|
|
padding: 72px 24px 64px;
|
|
|
|
|
max-width: 560px;
|
|
|
|
|
margin: 0 auto;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.hero-badge {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
font-size: 11px;
|
2026-04-04 17:19:08 +00:00
|
|
|
font-weight: 500;
|
|
|
|
|
letter-spacing: .06em;
|
2026-04-01 01:45:13 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--accent);
|
2026-04-04 17:19:08 +00:00
|
|
|
background: var(--accent-d);
|
2026-04-01 01:45:13 +00:00
|
|
|
border: 1px solid var(--accent-b);
|
2026-04-04 17:19:08 +00:00
|
|
|
padding: 4px 12px;
|
2026-04-01 01:45:13 +00:00
|
|
|
border-radius: 100px;
|
2026-04-04 17:19:08 +00:00
|
|
|
margin-bottom: 28px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
|
|
|
|
.hero h1 {
|
2026-04-04 17:19:08 +00:00
|
|
|
font-size: clamp(32px, 6vw, 48px);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: -0.03em;
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
margin-bottom: 16px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.hero h1 span { color: var(--accent); }
|
2026-04-01 01:45:13 +00:00
|
|
|
.hero-sub {
|
2026-04-04 17:19:08 +00:00
|
|
|
font-size: 15px;
|
2026-04-01 01:45:13 +00:00
|
|
|
color: var(--text2);
|
2026-04-04 17:19:08 +00:00
|
|
|
margin-bottom: 36px;
|
|
|
|
|
line-height: 1.7;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.hero-price {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
2026-04-04 17:19:08 +00:00
|
|
|
gap: 4px;
|
|
|
|
|
margin-bottom: 8px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.hero-price .currency { font-size: 20px; font-weight: 500; color: var(--text2); }
|
|
|
|
|
.hero-price .amount { font-size: 56px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
|
|
|
|
|
.hero-price-note {
|
2026-04-01 01:45:13 +00:00
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text3);
|
2026-04-04 17:19:08 +00:00
|
|
|
margin-bottom: 32px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.btn-buy {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
gap: 8px;
|
|
|
|
|
background: var(--accent);
|
|
|
|
|
color: #0D0D0D;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 14px 36px;
|
|
|
|
|
border-radius: var(--r);
|
|
|
|
|
transition: opacity .15s, transform .1s;
|
|
|
|
|
letter-spacing: -0.01em;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.btn-buy:hover { opacity: .88; transform: translateY(-1px); }
|
|
|
|
|
.btn-buy:active { transform: translateY(0); }
|
2026-04-01 01:45:13 +00:00
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
/* ── Steps ── */
|
|
|
|
|
.steps {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
gap: 0;
|
|
|
|
|
max-width: 560px;
|
|
|
|
|
margin: 0 auto 64px;
|
|
|
|
|
padding: 0 24px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.step {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
gap: 10px;
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.step:not(:last-child)::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 16px;
|
|
|
|
|
left: calc(50% + 16px);
|
|
|
|
|
right: calc(-50% + 16px);
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
}
|
|
|
|
|
.step-num {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--surface2);
|
|
|
|
|
border: 1px solid var(--border);
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
2026-04-04 17:19:08 +00:00
|
|
|
align-items: center;
|
2026-04-01 01:45:13 +00:00
|
|
|
justify-content: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--accent);
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.step-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text2);
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 1.4;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
/* ── Apps ── */
|
|
|
|
|
.apps-section {
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0 24px 80px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.section-label {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
letter-spacing: .07em;
|
2026-04-01 01:45:13 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--text3);
|
2026-04-04 17:19:08 +00:00
|
|
|
margin-bottom: 20px;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.apps-grid {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: grid;
|
2026-04-04 17:19:08 +00:00
|
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
2026-04-01 01:45:13 +00:00
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
.app-card {
|
|
|
|
|
background: var(--surface);
|
|
|
|
|
border: 1px solid var(--border);
|
2026-04-04 17:19:08 +00:00
|
|
|
border-radius: var(--r);
|
|
|
|
|
padding: 20px;
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-04-04 17:19:08 +00:00
|
|
|
gap: 10px;
|
|
|
|
|
transition: border-color .15s;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.app-card:hover { border-color: rgba(255,255,255,0.14); }
|
|
|
|
|
.app-card-header {
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.app-icon {
|
|
|
|
|
width: 38px;
|
|
|
|
|
height: 38px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: var(--surface2);
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-shrink: 0;
|
2026-04-04 17:19:08 +00:00
|
|
|
color: var(--accent);
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
.app-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
|
|
|
|
|
.app-cat { font-size: 11px; color: var(--text3); margin-top: 1px; }
|
|
|
|
|
.app-desc { font-size: 12px; color: var(--text2); line-height: 1.55; }
|
2026-04-01 01:45:13 +00:00
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
/* ── Divider ── */
|
|
|
|
|
.divider {
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
margin: 0 auto 40px;
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: var(--border);
|
|
|
|
|
}
|
2026-04-01 01:45:13 +00:00
|
|
|
|
|
|
|
|
/* ── Footer ── */
|
|
|
|
|
footer {
|
|
|
|
|
border-top: 1px solid var(--border);
|
2026-04-04 17:19:08 +00:00
|
|
|
padding: 24px;
|
2026-04-01 01:45:13 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-04-04 17:19:08 +00:00
|
|
|
justify-content: center;
|
|
|
|
|
gap: 24px;
|
2026-04-01 01:45:13 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
footer a {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text3);
|
|
|
|
|
transition: color .15s;
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
2026-04-04 17:19:08 +00:00
|
|
|
footer a:hover { color: var(--text2); }
|
2026-04-01 01:45:13 +00:00
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
/* ── Responsive ── */
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
|
.hero { padding: 48px 20px 48px; }
|
|
|
|
|
.steps { gap: 0; }
|
|
|
|
|
.step-label { font-size: 11px; }
|
|
|
|
|
.apps-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
|
|
|
|
|
.app-card { padding: 14px; }
|
2026-04-01 01:45:13 +00:00
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
|
<div class="nav-brand">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="nav-dot"></div>
|
|
|
|
|
Posimai
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<a class="nav-login" href="https://posimai.soar-enrich.com/login">ログイン</a>
|
2026-04-01 01:45:13 +00:00
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<!-- Hero -->
|
|
|
|
|
<section class="hero">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="hero-badge">
|
2026-04-01 01:45:13 +00:00
|
|
|
<i data-lucide="package" style="width:11px;height:11px;"></i>
|
2026-04-04 17:19:08 +00:00
|
|
|
Posimai パス
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<h1>全アプリ、<span>一括で。</span></h1>
|
|
|
|
|
<p class="hero-sub">広告なし。サブスクなし。<br>一度買えば、ずっと使える。</p>
|
|
|
|
|
<div class="hero-price">
|
|
|
|
|
<span class="currency">¥</span>
|
|
|
|
|
<span class="amount">500</span>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="hero-price-note">買い切り — 追加請求なし</p>
|
2026-04-17 09:44:32 +00:00
|
|
|
<a class="btn-buy" href="https://buy.stripe.com/test_9B67sEbN3fowfMW4jwenS00" id="buyBtn" target="_blank" rel="noopener noreferrer">
|
2026-04-04 17:19:08 +00:00
|
|
|
<i data-lucide="credit-card" style="width:16px;height:16px;"></i>
|
|
|
|
|
購入する
|
|
|
|
|
</a>
|
2026-04-01 01:45:13 +00:00
|
|
|
</section>
|
|
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
<!-- Steps -->
|
|
|
|
|
<div class="steps">
|
|
|
|
|
<div class="step">
|
|
|
|
|
<div class="step-num">1</div>
|
|
|
|
|
<div class="step-label">Stripe で<br>安全に購入</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="step">
|
|
|
|
|
<div class="step-num">2</div>
|
|
|
|
|
<div class="step-label">メールで<br>ログイン</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="step">
|
|
|
|
|
<div class="step-num">3</div>
|
|
|
|
|
<div class="step-label">全アプリが<br>使えるように</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
<!-- Apps -->
|
|
|
|
|
<div class="apps-section">
|
|
|
|
|
<div class="section-label">含まれるアプリ</div>
|
|
|
|
|
<div class="apps-grid">
|
2026-04-01 01:45:13 +00:00
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="brain" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Brain</div>
|
|
|
|
|
<div class="app-cat">記事管理</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">URLを保存するだけ。AIが自動で要約・分類します。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="book-open" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Reader</div>
|
|
|
|
|
<div class="app-cat">記事閲覧</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">広告を除去してクリーンに表示。Brain への保存もワンタップ。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="calendar" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Tech Events</div>
|
|
|
|
|
<div class="app-cat">IT イベント</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">Connpass の最新 IT イベントを職種別に検索。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="aperture" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Lens</div>
|
|
|
|
|
<div class="app-cat">EXIF 解析</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">写真をドロップするだけでカメラ・レンズ・GPS などの情報を表示。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="diff" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Diff</div>
|
|
|
|
|
<div class="app-cat">テキスト差分</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">2 つのテキストの差分をリアルタイムで表示。完全ブラウザ完結。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="app-card">
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="app-card-header">
|
|
|
|
|
<div class="app-icon">
|
|
|
|
|
<i data-lucide="link-2" style="width:18px;height:18px;"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="app-name">Clean-Link</div>
|
|
|
|
|
<div class="app-cat">URL 整形</div>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-04 17:19:08 +00:00
|
|
|
<p class="app-desc">URL のトラッキングパラメータをワンタップで除去。</p>
|
2026-04-01 01:45:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-04 17:19:08 +00:00
|
|
|
<div class="divider"></div>
|
|
|
|
|
|
2026-04-01 01:45:13 +00:00
|
|
|
<footer>
|
2026-04-17 09:44:32 +00:00
|
|
|
<a href="https://posimai.soar-enrich.com/legal/tokusho" target="_blank" rel="noopener noreferrer">特定商取引法</a>
|
|
|
|
|
<a href="https://posimai.soar-enrich.com/legal/privacy" target="_blank" rel="noopener noreferrer">プライバシーポリシー</a>
|
|
|
|
|
<a href="https://posimai.soar-enrich.com/legal/terms" target="_blank" rel="noopener noreferrer">利用規約</a>
|
2026-04-01 01:45:13 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-04-04 17:19:08 +00:00
|
|
|
lucide.createIcons();
|
2026-04-01 01:45:13 +00:00
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|