/* ペット墓ページのスタイル */

/* メインコンテンツ */
.main-content {
    padding: 20px 0;
}

/* コンテンツセクション */
.content-section {
    margin-bottom: 40px;
}

/* ペット墓のメイン画像 */
.pet-main-image {
    text-align: center;
    margin: 40px 0;
}

.pet-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ペット墓の概要 */
.pet-overview {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pet-overview h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.pet-overview h2 {
    font-size: 1.8rem;
    color: #444;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.pet-overview p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* 特徴リスト */
.pet-features {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.pet-features h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.pet-features ul {
    list-style: none;
    padding: 0;
}

.pet-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pet-features li:before {
    content: "✓ ";
    color: #4CAF50;
    font-weight: bold;
}

/* 料金表 */
.pet-pricing {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pet-pricing h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.pricing-table th,
.pricing-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.pricing-table .price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

/* お問い合わせセクション */
.pet-contact {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.pet-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pet-contact p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info {
    margin: 30px 0;
}

.contact-info .phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    margin: 10px 0;
}

.contact-info .email {
    font-size: 1.1rem;
    margin: 10px 0;
}

.contact-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #c0392b;
    text-decoration: none;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pet-overview {
        padding: 0 15px;
    }
    
    .pet-overview h1 {
        font-size: 2rem;
    }
    
    .pet-overview h2 {
        font-size: 1.5rem;
    }
    
    .pet-features,
    .pet-pricing {
        padding: 20px;
        margin: 20px 0;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .pet-contact {
        padding: 30px 15px;
    }
    
    .contact-info .phone {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .pet-overview h1 {
        font-size: 1.8rem;
    }
    
    .pet-overview h2 {
        font-size: 1.3rem;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 6px;
    }
    
    .contact-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
