.section-inner {
    padding-top: 80px;
    padding-bottom: 64px;
} 

.profile {
    text-align: center;
}

.profile-img {
    padding-bottom: 32px;
}
.profile-img img{
    width: 100%;
    height: auto;
    display: block;
}

.profile-text p {
    line-height: 1.8;
    font-size: 24px;
    padding: 40px;
}


.profile-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.card {
    flex: 1;
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
}

/* 色（やさしめ） */
.card.pink {
    background: #f8cfc9;
}

.card.blue {
    background: #cfd6f3;
}

.card.yellow {
    background: #f6e3a1;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.card p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.03em;
}



.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {

    .profile-text p {
    line-height: 1.5;
    font-size: 18px;
    padding: 0;
    text-align: left;
    }

    .profile-cards {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}