body {

    font-family: "ivypresto-headline", serif;
    font-weight: 400;
    font-style: normal;;
    margin: 0;
    line-height: 1.6;
  }

  
  header {
    background: #333;
    color: #fff;
    padding: 10px 0;
  }
  
.navbar {
    display: flex; /* フレックスボックスで横並びに */
    justify-content: center; /* 中央揃え */
    background-color: #333; 
    padding: 10px 0; /* 上下の余白 */
    list-style: none; 
    margin: 0; /* 外側の余白を消す */
  }
  
  .navbar li {
    margin: 0 15px; /* リンク間の余白を設定 */
  }
  
  .navbar a {
    text-decoration: none; /* 下線を消す */
    color: #fff; /* 文字色を白に設定 */
    font-weight: bold; /* 太字 */
    padding: 5px 10px; /* クリック範囲を広げるためのパディング */
    transition: background-color 0.3s ease; /* ホバーアニメーション */
  }
  
  .navbar a:hover {
    background-color: #555; 
    border-radius: 5px;
  }

  section {
    text-align: center;
  }

  .gallery {
    display: flex;
    justify-content: space-around; 
    gap: 20px; 
    margin-top: 6rem;
    margin-bottom: 5rem;
  }

  .gallery-item {
    text-align: center; /* テキストを中央揃え */
    width: 240px; /* 各画像アイテムの幅を固定 */
  }

  .special-item {
    width: 225px;
  }

  .image-container img {
    width: 100%; /* 画像の幅をアイテムに合わせる */
    height: auto; /* 縦横比を保持 */
    border-radius: 5px; /* 角を少し丸くする（オプション） */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* 画像に影を付ける（オプション） */
  }

  .info {
    margin-top: 10px; /* 画像とテキストの間隔 */
    font-size: 16px;
    color: #333; /* テキストの色 */
  }  

  h3 {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6); /* 黒色を60%の透明度で表示 */
    font-weight: normal; /* フォントの太さを細めに調整（オプション） */

  }

  footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px 0;
  }

  