body {
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards; /* 2秒でフェードイン */
  background: url('../img/News_modal_bg.png') no-repeat center center fixed;
  background-size: cover;
}
h1 {
  font-size: 15px;
  color:#738F5D;
}
h2{
  font-size: 60px;
  display:flex;
	text-align: center;
	justify-content: center;
}
.background-container {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 1s ease-in-out; /* 2秒かけてフェードイン */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.content {
  margin: 50px;
  text-align: center;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.image-container {
  margin: 0 auto;
  padding-left: 10px;
  width: 300px;
}

.image-container a{
  font-size: 10px;
  font-family: 'Noto Serif JP', serif;
  color: #695e4c;
  text-decoration: none;
}


