
  
  /* フォント設定 */
body {
  font-family: 'M PLUS 1p', sans-serif;
  background: #fdfdfd;
  margin: 0;
  padding: 0;
}

/* ヘッダー */
header {
  background-color: #888;
  color: white;
  padding: 10px;
  text-align: center;
}

header a {
  color: white;
  text-decoration: none;
}

/* トップページのギャラリー */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.gallery a {
  width: 150px;
  text-align: center;
  text-decoration: none;
  color: black;
}

.gallery img {
  width: 100%;
  border-radius: 5px;
}

/* ノート風背景 */
main {
  background: linear-gradient(white 90%, #e0e0e0 90%, #e0e0e0 92%, white 92%);
  background-size: 100% 40px;
  padding: 20px;
}

/* セクション（詳細ページの写真と文） */
main section {
  display: flex;
  gap: 20px;
  background-color: #ffffffcc;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  align-items: center;
}

main section img {
  width: 200px;
  border-radius: 10px;
}

main section p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}
/* モーダル全体の見た目 */
.modal {
  display: none; /* 最初は隠す */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
}

/* 閉じるボタン */
#modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* 拡大画像 */
#modal-img {
  margin: 80px auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
}
