/* 基本スタイル */
body {
margin: 0;
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background: #f5f5f5;
}
/* ヘッダー */
header {
background: #4CAF50;
color: white;
text-align: center;
padding: 20px 10px;
}
header h1 {
margin: 0;
font-size: 2rem;
}
header p {
margin: 10px 0 0;
font-size: 1rem;
}
/* メインコンテンツ */
main {
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: auto;
}
#map {
height: 580px;
border-radius: 5px;
border: 1px solid #ddd;
background: #eaeaea;
}
#history {
background: white;
border-radius: 5px;
padding: 15px;
border: 1px solid #ddd;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#history h2 {
margin-top: 0;
color: #4CAF50;
}
#comments-list {
max-height: 200px;
overflow-y: auto;
padding: 10px 0;
}
/* フッター */
footer {
background: #333;
color: white;
text-align: center;
padding: 10px;
font-size: 0.9rem;
}
.comment-text[contenteditable="true"] {
border: 1px dashed #ccc;
padding: 2px;
background-color: #f9f9f9;
}
.comment-text[contenteditable="true"]:focus {
outline: 2px solid #4caf50;
}