/* 共通のコンテナ設定 */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ヘッダー設定 */
.breast-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fffaf0;
    /* 少し暖色系に */
}

.category-tag {
    display: block;
    color: #5B744C;
    font-weight: bold;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #5B744C;
    font-weight: bold;
}

/* 導入文の色（産後ケアと統一） */
.detail-subtitle {
    color: #655d55;
    font-weight: bold;
}

.detail-description {
    color: #5A544E;
    font-size: 1.1rem;
}

/* いらすとやさんのアイコン調整 */
.detail-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.detail-icon img {
    max-height: 100%;
    width: auto;
}

/* カードとテーブルの設定（共通） */
.service-detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-table th,
.custom-table td {
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

/* ボタンのホバー（以前作成したものを継承） */
.btn-submit {
    display: inline-block;
    background-color: #5B744C;
    color: #fff !important;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d855d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 116, 76, 0.3);
}

/* Bootstrapの余白補強 */
.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}