/* ===================================
   Service Section - 工事だけのご依頼も承ります！
   =================================== */

.service-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

.service-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトル */
.service-section__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

/* カードコンテナ */
.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* カード */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: calc(25% - 15px);
    min-width: 200px;
    max-width: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* カード画像 */
.service-card__image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* カードテキスト */
.service-card__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card__title-ja {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.service-card__title-en {
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.03em;
}

/* 説明文 */
.service-section__description {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Responsive Styles
   =================================== */

/* タブレット */
@media (max-width: 991px) {
    .service-section {
        padding: 50px 0 60px;
    }
    
    .service-section__title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .service-card {
        width: calc(50% - 10px);
        min-width: 180px;
    }
    
    .service-section__description {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* スマートフォン */
@media (max-width: 576px) {
    .service-section {
        padding: 40px 0 50px;
    }
    
    .service-section__title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .service-card {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 20px 10px;
    }
    
    .service-card__image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .service-card__title-ja {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .service-card__title-en {
        font-size: 9px;
    }
    
    .service-section__description {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 10px;
    }
}

/* 小さいスマートフォン */
@media (max-width: 400px) {
    .service-card {
        padding: 15px 8px;
    }
    
    .service-card__image {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    
    .service-card__title-ja {
        font-size: 12px;
    }
    
    .service-card__title-en {
        font-size: 8px;
    }
}

