body {
    /* Google Fontsを適用 */
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #121212; /* ダークな背景色 */
    color: #e0e0e0; /* 明るいテキスト色 */
    margin: 0;
    line-height: 1.6;
}

.header {
    background-color: #1a1a1a;
    padding: 2em 0;
    text-align: center;
    border-bottom: 1px solid #444; /* 落ち着いたライン */
}

.header h1 {
    font-family: 'Noto Sans JP', sans-serif; /* 落ち着いたフォントに変更 */
    color: #fff;
    font-weight: 700; /* 少し太くして視認性を確保 */
}

.container {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background-color: #1e1e1e; /* コンテンツエリアの背景色 */
    border-radius: 10px;
    border: 1px solid #333;
}

.profile {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 2em;
    flex-wrap: wrap; /* 小さい画面でも崩れないように */
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #555; /* 落ち着いた色で縁取り */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text h2 {
    color: #fff;
    margin-top: 0;
}

.groups {
    margin-bottom: 2em;
}

.groups h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1em;
}

.groups ul {
    list-style: none;
    padding: 0;
}

.groups li {
    background-color: #2a2a2a;
    padding: 0.75em 1.25em;
    margin-bottom: 0.5em;
    border-radius: 5px;
    border-left: 3px solid #888; /* 落ち着いたアクセントカラー */
}

.portfolio {
    margin-bottom: 2em;
}

.portfolio h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1em;
}

.video-container {
    overflow: hidden; /* iframeの角を丸めるため */
    border-radius: 8px;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* 16:9のアスペクト比を維持 */
    border: none;
    display: block; /* iframe下の余白を消す */
}

.social-links h2 {
    color: #fff;
}

.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.social-icon {
    display: inline-block;
    font-size: 2.5em;
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.youtube:hover {
    color: #ff0000;
}

.x:hover {
    /* Xのブランドカラーは白黒なので、白っぽく光らせる */
    color: #fff;
}

.booth:hover {
    color: #F9423A; /* Boothのブランドカラー */
}

.footer {
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
    color: #888;
    font-size: 0.9em;
}