@charset "utf-8";
/* CSS Document */

.horse-cards {
align-items: stretch;
gap: clamp(16px, 4vw, 32px);
padding-bottom: clamp(80px, 10vw, 150px);
}

.horse-card {
  width: calc((100% - 64px) / 3);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.horse-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.horse-name {
  color: #2e7f51;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}


.horse-card .ul {
  gap: 6px;
}

.horse-card .li p {
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding: 4px 0;
  margin: 0;
}

.horse-card .li span {
  background: #000;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 8px;
}

.horse-sub {
  margin-top: 8px;
}

.horse-comment {
  font-size: 14px;
  line-height: 1.6;
}
.horse-card .imgbox{
    overflow: hidden;
}
.horse-card .imgbox .swiper-container{
    overflow: hidden;
}
.horse-card .imgbox .swiper-container .swiper-slide{opacity: 1;}
.swiper-pagination-bullet{
    background-color: #fff;
    opacity: 0.3;
}
.swiper-pagination-bullet-active{
    color: #fff;
}

.section03,.main-wrap{padding-bottom:0;}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
 .horse-card {
    width: calc((100% - 32px) / 2); /* gap を考慮した2カラム幅 */
  }
    }
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
  .horse-card {
    width: 100%;
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

