@charset "UTF-8";
/* ===========================================
製品情報トップページ
=========================================== */
body {
  background-color: #F7F7F7; }

.products-title {
  margin: 1em 0 2em; }

#products-top-page {
  width: 90%; }

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1375px;
  margin: 0 auto 11rem;
  gap: 30px; }

.product-item {
  width: calc(50% - 15px);
  aspect-ratio: 1 / 1;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer; }
  .product-item:hover {
    opacity: 0.8; }

.product-text {
  padding: 5rem 1rem;
  text-align: center; }

.product-description {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.8rem; }

.product-name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #38B281; }

.product-image {
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

/* レスポンシブデザイン */
@media screen and (max-width: 1280px) {
  .product-item {
    aspect-ratio: 1 / 1.1; } }
@media screen and (max-width: 960px) {
  .products-container {
    flex-direction: column;
    align-items: center; }

  .product-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 550px; }

  .product-text {
    padding: 3rem 1rem; }

  .product-description {
    font-size: 1.8rem; }

  .product-name {
    font-size: 2.6rem; } }
@media screen and (max-width: 428px) {
  .product-item {
    aspect-ratio: 1 / 1.1; }

  .product-description {
    font-size: 1.6rem; }

  .product-name {
    font-size: 2.2rem; } }
