/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* タイトルのデザイン */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* 武器リストのレイアウト */
.wep {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

/* 武器画像のデザイン */
.wep input[type="image"] {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時の拡大アニメーション */
.wep input[type="image"]:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* ホームに戻るボタン */
li {
    list-style: none;
    margin-top: 20px;
}

li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: 0.3s;
}

li a:hover {
    background: rgba(255, 255, 255, 0.4);
}

