202 lines
6.0 KiB
HTML
202 lines
6.0 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ja">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
||
|
|
<meta name="robots" content="noindex, nofollow">
|
||
|
|
<title>購入完了 — Posimai</title>
|
||
|
|
<link rel="icon" type="image/png" href="/logo.png">
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600&display=swap" rel="stylesheet">
|
||
|
|
<style>
|
||
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--bg: #0D0D0D;
|
||
|
|
--text: #F3F4F6;
|
||
|
|
--text2: #9CA3AF;
|
||
|
|
--accent: #6EE7B7;
|
||
|
|
--border: rgba(255,255,255,0.08);
|
||
|
|
--r: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'Geist', -apple-system, sans-serif;
|
||
|
|
background: var(--bg);
|
||
|
|
color: var(--text);
|
||
|
|
min-height: 100dvh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 32px 24px;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
}
|
||
|
|
|
||
|
|
.card {
|
||
|
|
max-width: 420px;
|
||
|
|
width: 100%;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon {
|
||
|
|
width: 64px;
|
||
|
|
height: 64px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: rgba(110,231,183,0.12);
|
||
|
|
border: 1px solid rgba(110,231,183,0.25);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
margin: 0 auto 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon svg {
|
||
|
|
width: 28px;
|
||
|
|
height: 28px;
|
||
|
|
stroke: var(--accent);
|
||
|
|
fill: none;
|
||
|
|
stroke-width: 2.5;
|
||
|
|
stroke-linecap: round;
|
||
|
|
stroke-linejoin: round;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 600;
|
||
|
|
letter-spacing: -0.02em;
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.sub {
|
||
|
|
font-size: 15px;
|
||
|
|
color: var(--text2);
|
||
|
|
line-height: 1.65;
|
||
|
|
margin-bottom: 32px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.sub strong {
|
||
|
|
color: var(--accent);
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
background: var(--accent);
|
||
|
|
color: #0D0D0D;
|
||
|
|
font-family: inherit;
|
||
|
|
font-size: 15px;
|
||
|
|
font-weight: 600;
|
||
|
|
padding: 14px 32px;
|
||
|
|
border-radius: var(--r);
|
||
|
|
text-decoration: none;
|
||
|
|
letter-spacing: -0.01em;
|
||
|
|
transition: opacity .15s, transform .1s;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
|
||
|
|
.btn-primary:active { transform: translateY(0); }
|
||
|
|
|
||
|
|
.note {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--text2);
|
||
|
|
line-height: 1.6;
|
||
|
|
}
|
||
|
|
|
||
|
|
.divider {
|
||
|
|
height: 1px;
|
||
|
|
background: var(--border);
|
||
|
|
margin: 28px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.steps {
|
||
|
|
text-align: left;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step {
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-start;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-num {
|
||
|
|
width: 22px;
|
||
|
|
height: 22px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: rgba(110,231,183,0.12);
|
||
|
|
border: 1px solid rgba(110,231,183,0.25);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-shrink: 0;
|
||
|
|
font-size: 11px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: var(--accent);
|
||
|
|
margin-top: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-text {
|
||
|
|
font-size: 13px;
|
||
|
|
color: var(--text2);
|
||
|
|
line-height: 1.55;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-text strong {
|
||
|
|
color: var(--text);
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="card">
|
||
|
|
<div class="icon">
|
||
|
|
<svg viewBox="0 0 24 24">
|
||
|
|
<polyline points="20 6 9 17 4 12"></polyline>
|
||
|
|
</svg>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h1>ご購入ありがとうございます</h1>
|
||
|
|
|
||
|
|
<p class="sub">
|
||
|
|
購入時のメールアドレスに<strong>ログインリンク</strong>を送りました。<br>
|
||
|
|
メールを確認してクリックするとすぐに使えます。
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<a class="btn-primary" href="https://posimai.soar-enrich.com/login">
|
||
|
|
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
||
|
|
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path>
|
||
|
|
<polyline points="10 17 15 12 10 7"></polyline>
|
||
|
|
<line x1="15" y1="12" x2="3" y2="12"></line>
|
||
|
|
</svg>
|
||
|
|
メールが届かない場合はこちら
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<p class="note">メールが届かない場合はこのボタンからログイン画面へ進み、<br>購入時のメールアドレスを入力してください。</p>
|
||
|
|
|
||
|
|
<div class="divider"></div>
|
||
|
|
|
||
|
|
<div class="steps">
|
||
|
|
<div class="step">
|
||
|
|
<div class="step-num">1</div>
|
||
|
|
<div class="step-text"><strong>メールを確認</strong> — 件名「Posimai へようこそ」のメールを開く</div>
|
||
|
|
</div>
|
||
|
|
<div class="step">
|
||
|
|
<div class="step-num">2</div>
|
||
|
|
<div class="step-text"><strong>ログインリンクをクリック</strong> — ボタンをタップすると自動でログイン</div>
|
||
|
|
</div>
|
||
|
|
<div class="step">
|
||
|
|
<div class="step-num">3</div>
|
||
|
|
<div class="step-text"><strong>アプリを使う</strong> — Brief・Brain・Reader など全アプリが利用可能に</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|