.hidden {
    display: none;
}

/* Base page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    display: flex; /* フレックスボックスを有効化 */
    justify-content: space-between; /* 左右のコンテンツを両端に配置 */
    background-color: #f4f4f4;
    align-items: center; /* 中央揃えでアイテムを配置 */
    width: 100%; /* ヘッダーの幅を画面いっぱいに広げる */
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box; /* パディングを含めた幅で計算 */
}

/* Main title styling */
#page-title {
    font-size: 25px;
    margin: 0; /* 余白をリセット */
    margin-right: auto; /* 右側の余白を自動調整し、左に寄せる */
}

/* Navigation styling */
nav {
}

nav ul {
    display: flex; /* フレックスボックスを有効化 */
    padding: 0; /* パディングをリセット */
    margin: 0; /* マージンをリセット */
    list-style: none;
}

nav ul li {
    margin-left: 20px; /* リンク間の余白 */
}

nav a {
    text-decoration: none;
    color: #333;
}

/* Styling for all sections for consistency */
.section-style {
    background-color: #f9f9f9;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
}

/* Section heading styling */
.section-heading {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

/* Paragraph styling in sections */
p {
    line-height: 1.6;
}

/* Lists within sections */
ul {
    margin: 20;
    list-style-position: outside; /* ブレットをアイテムの外側に配置 */
    padding-left: 20px; /* リストアイテムの左側のパディングを設定 */
}

/* List items in sections */
li {
    text-indent: 0px; /* ブレットの位置を左に調整 */
    margin: 10px; /* テキストの開始位置を調整 */
}

/* Link styling within sections, including hover effect */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.personal-name {
    font-weight: bold; /* 通常の太さ */
    font-size: 1.2em; /* 大きさを調整 */
    margin-bottom: 15px; /* 下の余白 */
}

/* Homeセクション内のリストのスタイル調整 */
#home ul {
    list-style-type: disc; /* メイン項目にブレットを使用 */
    padding-left: 20px; /* ブレットのインデント調整 */
}

#home ul ul {
    list-style-type: none; /* サブ項目のリストスタイルを無しに */
    padding-left: 0; /* サブ項目のパディングをリセット */
}

#home ul ul li {
    text-indent: -15px; /* サブ項目のテキストインデントをマイナス値に */
    margin-left: 15px; /* サブ項目のマージン左を設定 */
    padding-left: 0px; /* サブ項目のパディング左を設定 */
}