/* 全体コンテナ */
.services-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Playfair Display', serif;
    color: #333;
    background-color: #fff;
}

/* ページタイトル */
.page-title {
    font-size: 42px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    color: #222;
}

/* Strength Section */
.strength-section {
    margin-bottom: 80px;
}

.strength-section h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    border-left: 4px solid #555;
    padding-left: 10px;
    color: #222;
}

.strength-list {
    list-style: disc inside;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1rem;
    color: #555;
}

/* Business Section Title */
.business-section h2 {
    font-size: 28px;
    margin-bottom: 2rem;
    border-left: 4px solid #555;
    padding-left: 10px;
    color: #222;
}

/* サービスカードグリッド */

.service-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    /* スマホなどで折り返し */
}

/* 各サービスカード */
.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #222;
}

.service-card p {
    font-size: 0.95rem;
    padding: 0 1rem 1.5rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .service-grid {
        gap: 1.5rem;
      }

    .service-card {
        flex: 1 1 100%;
      }
    

    .strength-section h2,
    .business-section h2 {
        font-size: 22px;
    }

    .strength-list {
        font-size: 0.95rem;
    }
}