﻿@charset "utf-8";

.inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.visual-slider { height: 544px; background-size: cover; background-position: center; background-repeat: no-repeat; }

.section { padding: 50px 0; }

.page-title { text-align: center; }
.page-title h1 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.page-title p { font-size: 16px; color: #666; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.product-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 0;
  overflow: hidden;
  padding-bottom: 12px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  background: #fff;
}

.product-btn { display: block; width: 90%; max-width: 320px; margin: auto auto 0; padding: 10px 0; background: #880d05; color: #fff; font-size: 13px; text-align: center; border: none; }
.product-btn:hover { background: #b60606; color: #f9f9f9; }

.pc-only { display: block; }
.mobile-only { display: none; }

section:has(.product-grid) {
  padding-bottom: 60px;
}

@media (max-width: 1199px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 767px) {
  .pc-only { display: none; }
  .mobile-only { display: block; }
  .visual-slider { height: 300px; }
  .section { padding: 30px 0; }
  .page-title h1 { font-size: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-btn { width: 90%; }
}

@media (max-width: 575px) {
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-btn { width: 80%; }
}
