Prime Video年間会員が無料で手に入ります
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML lang=ja><HEAD><TITLE>Prime Video会員 初年度無料キャンペーン</TITLE>
<META charset=UTF-8>
<META name=viewport content="width=device-width, initial-scale=1.0">
<META name=color-scheme content="dark light">
<STYLE>
/* 基礎スタイル */
body {
padding: 0;
margin: 0;
background: #fff;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
background: transparent;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 4px;
}
/* 鼠标悬停时的状态 */
:hover::-webkit-scrollbar {
background: rgba(0, 0, 0, 0.05);
}
:hover::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
}
:hover::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
}
/* 更精确的悬停状态(可选) */
::-webkit-scrollbar:hover {
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.4);
}
::-webkit-scrollbar-thumb:active {
background: rgba(0, 0, 0, 0.6);
}
/* コンテナースタイル */
.container {
max-width: 600px;
margin: 0 auto;
background-color: #000000;
}
/* ヘッダースタイル */
.header {
padding: 40px 20px 30px;
text-align: center;
}
.logo {
max-width: 200px;
height: auto;
}
/* メインビジュアルスタイル */
.hero {
padding: 0 20px 30px;
}
.hero-image {
width: 100%;
border-radius: 16px;
display: block;
}
/* コンテンツエリアスタイル */
.content-section {
padding: 30px 20px;
}
.title {
color: #00A8E1;
font-size: 34px;
font-weight: bold;
margin: 0 0 20px 0;
line-height: 1.2;
}
.subtitle {
color: #FFFFFF;
font-size: 28px;
font-weight: bold;
margin: 0 0 20px 0;
}
.description {
color: #F0F0F0;
font-size: 18px;
line-height: 1.6;
margin: 0 0 25px 0;
}
.highlight {
color: #00A8E1;
font-weight: bold;
}
/* CTAボタンスタイル */
.cta-container {
text-align: center;
padding: 30px 20px;
}
.cta-button {
display: inline-block;
background-color: #00A8E1;
color: #FFFFFF;
text-decoration: none;
font-size: 20px;
font-weight: bold;
padding: 18px 40px;
border-radius: 36px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
min-width: 250px;
}
.cta-button:hover {
background-color: #0090C1;
}
/* 特典リストスタイル */
.benefits-list {
list-style: none;
padding: 0;
margin: 25px 0;
}
.benefits-list li {
color: #F0F0F0;
font-size: 18px;
line-height: 1.6;
margin-bottom: 15px;
padding-left: 10px;
}
.benefits-list li:before {
content: "✓";
color: #00A8E1;
font-weight: bold;
margin-right: 10px;
}
/* コンテンツグリッドスタイル */
.content-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin: 30px 0;
}
.content-item {
border-radius: 12px;
overflow: hidden;
}
.content-item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
}
.content-item img:hover {
transform: scale(1.03);
}
/* Primeバッジスタイル */
.prime-badge {
display: inline-flex;
align-items: center;
background-color: rgba(0, 168, 225, 0.1);
color: #00A8E1;
padding: 8px 16px;
border-radius: 20px;
font-size: 16px;
font-weight: bold;
margin: 10px 0 20px 0;
}
.prime-badge img {
width: 20px;
height: 20px;
margin-right: 8px;
}
/* ステップ説明スタイル */
.steps-container {
margin: 30px 0;
}
.step {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
}
.step-number {
background-color: #00A8E1;
color: #000000;
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 18px;
margin-right: 15px;
flex-shrink: 0;
}
.step-content {
flex: 1;
}
.step-title {
color: #FFFFFF;
font-size: 20px;
font-weight: bold;
margin: 0 0 8px 0;
}
.step-description {
color: #CCCCCC;
font-size: 16px;
line-height: 1.5;
margin: 0;
}
/* フッタースタイル */
.footer {
padding: 20px 20px 20px;
color: #969696;
font-size: 14px;
text-align: center;
}
.footer a {
color: #00A8E1;
text-decoration: underline;
}
.footer p {
margin: 0 0 15px 0;
}
/* レスポンシブデザイン */
@media (max-width: 640px) {
.container {
width: 100%;
}
.title {
font-size: 28px;
}
.subtitle {
font-size: 24px;
}
.description {
font-size: 16px;
}
.content-grid {
grid-template-columns: 1fr;
}
.cta-button {
padding: 16px 30px;
font-size: 18px;
min-width: 200px;
}
}
/* 印刷スタイル */
@media print {
body {
background-color: #FFFFFF;
color: #000000;
}
.container {
max-width: 100%;
}
.cta-button {
border: 2px solid #000000;
background-color: #FFFFFF;
color: #000000;
}
}
</STYLE>
<META name=GENERATOR content="MSHTML 11.00.10570.1001"></HEAD>
<BODY style="ZOOM: 1">
<DIV class=container><!-- ヘッダー -->
<DIV class=header><IMG class=logo alt="Prime Video"
src="https://m.media-amazon.com/images/G/01/digital/video/EA/alohomora/logo_pvHoriz_padded.png">
</DIV><!-- メインタイトル -->
<DIV class=content-section>
<H1 class=title>