<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>にじいろモール | オンラインショッピング</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="にじいろモールは、あらゆるジャンルの商品を取り揃えた総合ECサイトです。">
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/1170/1170576.png" type="image/png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Noto Sans JP', sans-serif;
background: #f3f3f3;
}
header {
background-color: #5a4fcf;
color: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
header h1 {
font-size: 1.8em;
margin: 0;
letter-spacing: 2px;
}
.search-bar {
flex: 1;
margin: 10px;
max-width: 500px;
}
.search-bar input {
width: 100%;
padding: 10px;
font-size: 1em;
border-radius: 4px;
border: none;
}
main {
padding: 20px;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
}
.product-card {
background: white;
border-radius: 6px;
padding: 15px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s;
}
.product-card:hover {
transform: translateY(-3px);
}
.product-card img {
width: 100%;
height: auto;
border-radius: 5px;
}
.product-card h3 {
margin: 10px 0 5px;
font-size: 1.2em;
}
.product-card p {
margin: 5px 0;
color: #555;
}
.price {
color: #d83535;
font-weight: bold;
font-size: 1.1em;
}
.product-card button {
width: 100%;
padding: 10px;
margin-top: 10px;
background: #ffce3d;
border: none;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
transition: background 0.2s;
}
.product-card button:hover {
background: #f2b200;
}
footer {
background: #5a4fcf;
color: white;
text-align: center;
padding: 20px;
margin-top: 40px;
}
@media (max-width: 600px) {
.search-bar {
order: 3;
width: 100%;
}
header {
flex-direction: column;
align-items: flex-start;
}
}
</style>
</head>
<body>
<header>
<h1>🌈 にじいろモール</h1>
<div class="search-bar">
<input type="text" placeholder="商品を検索...">
</div>
</header>
<main>
<div class="product-grid">
<div class="product-card">
<a href="product1.html">
<img src="https://via.placeholder.com/240x160" alt="スマートウォッチ">
<h3>スマートウォッチ</h3>
</a>
<p class="price">¥12,800</p>
<p>心拍計測 / 防水 / 通知連携</p>
<button>カートに追加</button>
</div>
<div class="product-card">
<a href="product2.html">
<img src="https://via.placeholder.com/240x160" alt="話題の書籍">
<h3>話題の書籍</h3>
</a>
<p class="price">¥1,540</p>
<p>ベストセラー本</p>
<button>カートに追加</button>
</div>
<div class="product-card">
<a href="product3.html">
<img src="https://via.placeholder.com/240x160" alt="Bluetoothイヤホン">
<h3>Bluetoothイヤホン</h3>
</a>
<p class="price">¥5,990</p>
<p>高音質 / ノイズキャンセリング</p>
<button>カートに追加</button>
</div>
</div>
</main>
<footer>
© 2025 にじいろモール - すべての権利を保有します。
</footer>
</body>
</html>