
.about .container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-photo {
    flex: 1;
}

.about-photo img {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    text-align: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e8eef7e3;;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8eef7e3;;
}

/* レスポンシブ（スマホ） */
@media (max-width: 768px) {
    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        margin-bottom: 20px;
    }
}