/* 全体のリセットと基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* コンテナ全体 */
.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* プロフィールヘッダーのスタイル */
.profile-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.profile-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.profile-header p {
    font-size: 1.2em;
    margin-bottom: 0;
}

/* プロフィール内容のスタイル */
.profile-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

/* プロフィールカードのスタイル */
.profile-card {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    width: 55%;
    text-align: left;
}

.profile-card h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.profile-card ul {
    list-style: none;
}

.profile-card li {
    font-size: 1.2em;
    margin: 10px 0;
    color: #2c3e50;
}

.profile-card li strong {
    color: #34495e;
}

/* 画像のスタイル */
.profile-images {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 40%;
}

.profile-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-images img:hover {
    transform: scale(1.05);
}

/* メディアクエリ（スマホ対応） */
@media (max-width: 900px) {
    .profile-content {
        flex-direction: column;
        align-items: center;
    }

    .profile-card, .profile-images {
        width: 100%;
    }

    .profile-card {
        margin-bottom: 20px;
    }
}
