main.dojo-page {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.section {
    margin-top: 60px;
}

.instructor-profile {
    background-color: #fff;
    font-family: '游明朝', 'Yu Mincho', serif;
    color: #111;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.profile-details {
    flex: 1;
    min-width: 280px;
}

.instructor-name {
    font-size: 2em;
    margin-bottom: 5px;
}

.instructor-rank {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.instructor-achievements h4,
.instructor-message h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.instructor-achievements ul {
    list-style: disc inside;
    margin-bottom: 20px;
}

.instructor-message p {
    line-height: 1.7;
    color: #222;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image img {
        width: 100%;
        max-width: 300px;
    }

    .profile-details {
        text-align: left;
        width: 100%;
    }

    .instructor-achievements ul {
        padding-left: 1em;
    }
}


main h2 {
    border-left: 6px solid #000;
    padding-left: 10px;
    font-size: 2rem;
    margin-bottom: 1rem;
}