body {
  background-color: #fff;
  color: #333;
  margin: 0;
  font-family: sans-serif;  /* 本文はsans-serif */
  margin-top: 80px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;  
  top: 0;
  left: 0; 
  right: 0; 
  z-index: 1000;  
  background-color: #fff;  
  /* font-familyはnavやsite-titleに分離するのでここでは指定しない */
}

.site-title {
  font-size: 1.5rem;
  font-family: "futura", sans-serif;  /* タイトルだけfutura */
}

.nav {
  display: flex;  /* 横並びを保つ */
}

.nav a {
  margin-left: 20px;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-family: "futura", sans-serif;  /* ナビゲーションだけfutura */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,150px));
  gap: 20px;
  padding: 50px;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
}

/* モーダル関連 */
.modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: auto;
}

.modal-content {
  position: relative;
  margin: 60px auto;
  text-align: center;
  max-width: 90%;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
}

.modal-caption h3 {
  font-size: 1.0rem;
  margin-bottom: 10px;
}

.modal-caption p {
  font-size: 0.8rem;
  line-height: 1.7;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
}

.prev { left: 10px; }
.next { right: 10px; }

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 1000;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .nav a {
    padding: 5px;
    font-size: 0.9rem;
  }

  .modal-content {
    max-width: 95%;
  }

  .modal-content img {
    max-height: 60vh;
  }
}

.about-page {
  padding: 50px;
  position: relative;  
  top: 0;
  left: 0; 
  right: 0; 
  z-index: 1000;  
  background-color: #fff;  
}

.about-page h2 {
  font-size: 0.8rem;
  margin-top: 0px;
  margin-bottom: 10px;
}

.about-page p {
  margin-bottom: 20px;
  font-size: 0.8rem;
  margin-top: 0px;
  margin-bottom: 10px;
}

/* ハンバーガーメニューの基本スタイル */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 2rem;
}

.nav {
  display: flex;
  list-style: none;
}

.nav a {
  text-decoration: none;
  margin-left: 20px;
  padding: 10px;
}

/* ハンバーガーメニューの表示と非表示 */
.show {
  display: block;
}

/* 画面幅が小さい場合にハンバーガーメニューを表示 */
@media (max-width: 800px) {
  .hamburger {
    display: block; /* ハンバーガーアイコンを表示 */
  }

  .nav {
    display: none; /* 最初はメニューを非表示 */
    flex-direction: column; /* メニュー項目を縦に並べる */
    position: absolute;
    top: 60px; /* ヘッダーの下に表示 */
    right: 0;
    background-color: #00000000;
    padding: 25px;
    width: 100%;
  }

  .nav.show {
    display: block; /* showクラスが付与されたときにメニューを表示 */
  }

  .nav a {
    padding: 15px;
    text-align: center;
    width: 100%;
  }
}


