@charset "utf-8";

/* 1. 全体の背景と上部の余白設定 */
body {
    background-image: url(img/background03.jpg); /* 背景画像を設定 */
    background-repeat: repeat;
    margin: 0;
    padding: 20px 0 0 0; /* 上に20pxの隙間を作り、タイトルが隠れるのを防ぐ */
    font-family: "ＭＳ ゴシック", Osaka, sans-serif;
    color: #000000;
}

/* 2. 全体の幅を800pxに固定し、画面中央に寄せる */
#container {
    width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* 3. 検索ボックスエリアのデザイン */
#srch01 {
    width: 782px;
    padding: 0.5em;
    text-align: center;
    border: 1px solid #663300;
    margin-bottom: 10px;
    background-image: url(../img/background02.jpg);
}

/* 4. 行タイトルのデザイン */
#title01 {
    width: 780px;
    padding: 0.5em;
    text-align: center;
    border: 2px solid #663300;
    border-bottom: 1px dotted #663300;
    font-weight: bold;
    letter-spacing: 20px;
    background-image: url(../img/background02.jpg);
}

/* 5. データ表示部分：背景を白にし、枠線で囲む */
#main01 {
    background-color: #FFFFFF;
    border: 2px solid #663300;
    border-top: none;
    padding: 10px;
    width: 776px; /* パディングと枠線を考慮した幅 */
    min-height: 400px;
}

/* 6. 人物ごとの見出し枠 */
.person-header {
    width: 752px;
    padding: 0.5em;
    line-height: 150%;
    background-color: #ff9977;
    margin: 5px 0;
    font-weight: bold;
}

/* 7. 本文エリアの調整 */
.person-body {
    width: 752px;
    line-height: 150%;
    margin-left: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* リンクの色 */
a:link, a:visited { color: #663300; text-decoration: underline; }
a:hover, a:active { color: #CC0000; text-decoration: none; }