@charset "UTF-8";

/* ====== Profile ====== */
.profile-category {
	width: 900px;
	padding: 10px 0px;
	margin: 20px auto;
}

.profile {
    display: flex;
    align-items: center;
}
.profile img {
    border-radius: 50%;
    width: 216px;
    height: 288px;
	margin:	auto;
}
.profile-body {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin:	auto;
}

.achievements, .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	justify-content: center;
}
.achievement {
    flex: 1 1 calc(50% - 20px);
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin: 30px;
}

.partner {
    flex: 1 1 calc(50% - 20px);
	max-width: 320px;
}

/* =============================================
メディアクエリ
============================================= */

/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
	.profile-category {
		width:		100%;
	}
}

/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile img {
        margin-bottom: 20px;
    }
    .achievement, .partner {
        flex: 1 1 100%;
    }
}
