.honorees {
    background-color: #f8f5ee;
    color: #4c7437;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.honorees h2 {
    font-size: 1.2em;
    font-weight:bold;
}


.honoree-list {
    list-style-type: none;
    padding: 0;
}

.honoree {
    margin-bottom: 10px;
}

.honoree-name {
    cursor: pointer;
    font-size: 1.2em;
    margin: 0;
    padding: 10px;
    background-color: #e0e9d9;
    border-radius: 5px;
}

.honoree-name:hover {
    background-color: #d0dcc9;
}

.honoree-details {
    display: none;
    padding: 10px;
    border: 1px solid #4c7437;
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
}

.honoree-name-reading,
.honoree-lifespan {
    font-size: 0.9em;
    color: #6c8f57;
    margin: 5px 0;
}

.honoree-description {
    line-height: 1.6;
}

/* 全体のスタイリング */
.information-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* 見出しのスタイリング */
  .information-detail h2 {
    font-size: 1.8em;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  /* 定義リストのスタイリング */
  .information-detail dl {
    margin: 0;
    padding: 0;
  }
  
  .information-detail dl > div {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .information-detail dt {
    font-weight: bold;
    color: #2980b9;
    margin-bottom: 5px;
  }
  
  .information-detail dd {
    margin-left: 0;
  }
  
  /* リストのスタイリング */
  .information-detail ul {
    padding-left: 20px;
    margin: 10px 0;
  }
  
  .information-detail li {
    margin-bottom: 5px;
  }
  
  /* イベントステータスのスタイリング */
  .event-status {
    font-size: 0.9em;
    color: #e74c3c;
    font-weight: bold;
    margin-left: 10px;
  }
  
  /* レスポンシブデザイン */
  @media (max-width: 600px) {
    .information-detail {
      padding: 10px;
    }
  
    .information-detail h2 {
      font-size: 1.5em;
    }
  
    .information-detail dl > div {
      margin-bottom: 10px;
      padding-bottom: 10px;
    }
  }
  
  /* アクセシビリティ向上のためのフォーカススタイル */
  .information-detail a:focus,
  .information-detail button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
  }
  
  /* 印刷用スタイル */
  @media print {
    .information-detail {
      max-width: 100%;
      padding: 0;
    }
  
    .information-detail h2 {
      color: #000;
      border-bottom: 1px solid #000;
    }
  
    .information-detail dt,
    .information-detail .event-status {
      color: #000;
    }
  }

  /* 見出しのスタイル */
  .learning-points h3 {
    color: #3c5c2c;
    border-bottom: 2px solid #4c7437;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 28px;
  }
  
  /* 定義リストのスタイル */
  .learning-points dl {
    margin: 0;
    padding: 0;
  }
  
  .learning-points dt {
    font-size: 18px;
    font-weight: bold;
    color: #3c5c2c;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #4c7437;
    padding-left: 15px;
  }
  
  .learning-points dd {
    margin-left: 0;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 1px solid #7da06a;
  }
  
  /* 段落のスタイル */
  .learning-points p {
    margin-bottom: 15px;
  }
  
  /* リストのスタイル */
  .learning-points ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .learning-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  
  .learning-points li::before {
    content: "•";
    color: #4c7437;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
  }

  /* レスポンシブデザイン */
  @media (max-width: 600px) {
    .learning-points {
      padding: 15px;
    }
  
    .learning-points h3 {
      font-size: 24px;
    }
  
    .learning-points dt {
      font-size: 20px;
    }
  }
  
  /* アクセシビリティ向上のためのフォーカススタイル */
  .learning-points a:focus,
  .learning-points dt:focus,
  .learning-points li:focus {
    outline: 2px solid #4c7437;
    outline-offset: 2px;
  }
  
  /* 印刷用スタイル */
  @media print {
    .learning-points {
      background-color: white;
      color: #4c7437;
    }
  
    .learning-points h3,
    .learning-points dt {
      color: #3c5c2c;
    }
  }

  .honoree {
    list-style-type: none;
}

.facility-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.facility-images figure {
  flex: 0 1 calc(50% - 10px);
  margin: 0;
  text-align: center;
}
.facility-images img {
  width: 100%;
  height: auto;
  max-width: 264px;
  object-fit: cover;
}
.facility-images figcaption {
  margin-top: 10px;
  font-size: 14px;
}

/* セクションスタイル */
.museum-shop, .gift-shop-items {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  padding: 20px;
}

.shop-title {
  font-size: 1.5em;
  color: #4c7437;
}

/* 商品スタイル */
.product {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.product-image {
  flex: 0 0 250px;
  margin-right: 20px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-details {
  flex: 1;
}

.product-details h3 {
  color: #4c7437;
  margin-bottom: 10px;
}

.product-price, .product-price-list {
  font-weight: bold;
  color: #e74c3c;
  margin-top: 10px;
}

.product-price-list {
  list-style-type: none;
}

/* アクセシビリティ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
  }

  .product-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 10px;
  }

  h2 {
    font-size: 1.2em;
  }

  .product-details h3 {
    font-size: 1em;
  }
}

.social-media-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.twitter-box, .fb-box {
  flex: 1;
  min-width: 280px;
  max-width: 375px;
}

.twitter-embed, .fb-box iframe {
  width: 100%;
  height: 535px;
  border: 1px solid #e1e8ed;
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .social-media-container {
    flex-direction: column;
    align-items: center;
  }

  .twitter-box, .fb-box {
    width: 100%;
  }
}