.main-visual {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.puppy-section-title {
    color: #384C68;
    font-weight: bold;
}

.puppy-box {
    border: 2px solid #6f5436;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 10px rgba(80, 30, 20, 0.5);
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #fff;
}

.puppy-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.puppy-link {
    font-size: 25px; 
    font-weight: bold;
    color: #3B4C68;     /* アイアンブルー */
    text-decoration: none;
    transition: color 0.3s ease;
}

 .info-buttons a {
    display: inline-block;
    margin: 30px;
    padding: 12px 20px;
    background-color: #6f5436;
    font-size: 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.info-buttons a:hover {
    background-color: #e9bc00;
    color: black;
}

.line-link p {
    color: #192f60;
    font-size: 1.4rem; /* 例：大きめの文字 */
    font-weight: bold; /* 太字にしたい場合は追加 */
}

.home-line-icon {
    width: 70px;
    height: 70px;
    text-align: center;
}

.home-line-icon:hover {
  transform: scale(1.3);
}

@media (max-width: 576px) {
  .puppy-box {
    max-width: 90%;
    margin: 0 auto;
  }

  .dog-box {
    max-width: 90%;
    margin: 0 auto;
  }
}
