@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  text-shadow: 0 0 1px #fff; /* にじみっぽさ */
}

header {
  display: flex;
  align-items: center;
  background-color: #111;
  padding: 15px 25px;
  border-bottom: 3px solid #ffd700;
}

.flag-title {
  display: flex;
  align-items: center;
  flex: 2;
}

.flag-title img {
  height: 80px;
  margin-right: 15px;
}

.flag-title h1 {
  font-size: 24px;
  color: #f5f5f5;
  text-shadow: 0 0 1px #fff;
}

.links {
  flex: 3;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.links a {
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
}

main {
  max-width: 800px;
  margin: 40px auto;
  background-color: #111;
  padding: 30px;
  border-left: 5px solid #ffd700;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffd700;
}

.date {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
}