﻿@charset "utf-8";
.btn-list {
  max-width: 990px;
  margin: 0 auto 20px;
  font-weight: bold;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 36px;
  border-radius: 50px;

  background: #f3efea;
  color: #7c674f;
  text-decoration: none;

  font-size: 1.4rem;
  line-height: 1;

  transition: border-color .3s;
}

.category-btn:hover {
  border-color: #000;
}

.arrow {
  width: 10px;
  height: 10px;

  border-top: 1.5px solid #7c674f;
  border-right: 1.5px solid #7c674f;

  transform: rotate(45deg);
  transition: transform .3s ease;
}

.category-btn:hover .arrow {
  transform: translateX(6px) rotate(45deg);
}

/* SP */
@media (max-width: 600px) {
  .btn-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5px;
  }

  .category-btn {
    padding: 18px 16px;
    font-size: 1.2rem;
  }
}
}