body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: url('ghost.JPG') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* 背景画像に透かし効果を適用 */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('ghost.JPG') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.3; /* 透明度調整 */
    z-index: -1;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #8a2be2;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
    font-family: Montserrat, sans-serif;
}

/* ロゴ */
.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    font-size: 14px;
    display: block;
    opacity: 0.8;
}

/* ナビゲーション */
.nav {
    display: flex;
    flex-wrap: wrap;  /* 画面幅が狭いときに折り返し */
    justify-content: flex-end;  /* 右寄せ */
    gap: 15px;  /* リンク間の余白 */
    padding-right: 20px;  /* 右側の余白を調整 */
    margin-right: 10px; 
}

.nav a {
    color: white;
    text-decoration: none; /* 下線を消す */
    border: 2px solid white;  /* 白色の枠線を追加 */
    padding: 5px 10px;  /* 内側の余白を設定 */
    border-radius: 5px;  /* 角を少し丸く */
    transition: background 0.3s, color 0.3s;
}


/* メインコンテンツ */
.container {
    max-width: 800px;
    margin: 100px auto 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.935);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    width: 120px; 
    height: 120px; 
    display: block;
    object-fit: cover; /* 画像のアスペクト比を保持 */
    float: left; /* 左に寄せる */
    margin-right: 10px; /* テキストとの間に余白 */
}
/* 見出し */
h2 {
    color: #8a2be2;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 5px;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background: #8a2be2;
    color: white;
    margin
