body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:#f4f4f4;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
  background:#ffffff;
}

h1{
  text-align:center;
  margin-bottom:20px;
}

/* ギャラリー基本（スマホは1列） */
.gallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:15px;
}

/* PCは2列表示 */
@media (min-width:768px){
  .gallery{
    grid-template-columns: 1fr 1fr;
  }
}

.gallery img{
  width:100%;
  height:auto;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}

.gallery img:hover{
  opacity:0.8;
}

/* スペック表 */
.spec{
  margin-top:30px;
  width:100%;
  border-collapse:collapse;
}

.spec th, .spec td{
  border:1px solid #ccc;
  padding:10px;
}

.spec th{
  background:#eee;
  width:30%;
}

/* ボタン */
.buttons{
  text-align:center;
  margin-top:30px;
}

.btn{
  display:inline-block;
  padding:12px 20px;
  margin:5px;
  background:#333;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
}

.btn:hover{
  background:#555;
}

/* モーダル（拡大表示） */
.modal{
  display:none;
  position:fixed;
  z-index:999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
}

.modal img{
  max-width:90%;
  max-height:90%;
}

.close{
  position:absolute;
  top:20px;
  right:30px;
  color:white;
  font-size:30px;
  cursor:pointer;
}

/* スマホ調整 */
@media (max-width:600px){
  h1{
    font-size:18px;
  }
}