/* 共通デザイン */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    text-align: center;
    background-image: url('haikei.jpg'); /* 背景画像の設定 */
    background-size: cover; /* 画像を画面全体にフィットさせる */
    background-position: center -50px; /* 画像の位置を中央に設定 */
    background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.hd {
    background-color: #1e90ff;
    padding: 15px;
    color: white;
}

.menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu a:hover {
    background-color: #0f6ecd;
}

/* ホームページデザイン */
.home-container {
    padding: 50px 20px;
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

h2, h3 {
    font-size: 24px;
    color: #555;
}

/* プロフィールページデザイン */
.profile-container {
    background-color: white;
    padding: 30px;
    margin: 20px auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-image: url('haikei.jpg'); /* 背景画像の設定 */
    background-size: cover; /* 画像を要素のサイズに合わせる */
    background-position: center center; /* 画像を中央に配置 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
}

.profile-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.profile-info {
    text-align: left;
    margin-top: 20px;
}

.profile-info h2 {
    color: #333;
}

.profile-info dt {
    font-size: 18px;
    margin-left: 20px;
}
