@charset "utf-8";

.top_shop {
  padding: 80px 0;
  background: #F0F0F0;
}

.top_shop .common_h2_box02 {
  margin-bottom: 40px;
}

.top_shop .shop_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.top_shop .shop_list li a {
  display: block;
  height: 100%;
}

.top_shop .shop_list li a .title {
  text-align: center;
  color: #1823A8;
  margin: 0 0 15px;
  font-weight: 800;
  letter-spacing: .05em;
  font-size: 20px;
}

.top_shop .shop_list li a .img {
  overflow: hidden;
  margin-bottom: 15px;
}

.top_shop .shop_list li a .img img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: .5s;
}

.top_shop .shop_list li a:hover .img img {
  scale: 1.1;
}

.top_shop .shop_list li a .text_box .text {
  color: #1A1A1A;
  font-size: 14px;
  letter-spacing: .05em;
  font-weight: 600;
  line-height: 1.5;
}

.top_shop .shop_list li a .text_box .addr {
  margin-bottom: 10px;
}

@media (max-width: 750px) {

  .top_shop {
    padding: 50px 0;
  }

  .top_shop .common_h2_box02 {
    margin-bottom: 25px;
  }

  .top_shop .shop_list ul {
    grid-template-columns: repeat(2, 1fr);
    /* display: flex; */
    /* align-items: flex-start; */
    /* overflow: scroll; */
    gap: 6vw 4vw;
  }

  .top_shop .shop_list ul li {
    /* flex-shrink: 0; */
    /* width: 70vw; */
  }

  .top_shop .shop_list li a .title {
    font-size: 3.2vw;
    margin: 0 0 0.7em;
    letter-spacing: 0;
  }

  .top_shop .shop_list li a .img {
    margin-bottom: 2.8vw;
  }

  .top_shop .shop_list li a:hover .img img {
    scale: 1;
  }

  .top_shop .shop_list li a .text_box .text {
    font-size: 3vw;
  }

  .top_shop .shop_list li a .text_box .addr {
    margin-bottom: 5px;
  }

}