/* 全体 */
.museum-section {
  padding: 20px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
}

.museum-header-img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.museum-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.museum-desc {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
}

/* 商品一覧 */
.museum-goods-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .museum-goods-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.museum-goods-item {
  text-align: left;
  cursor: pointer;
  /*border: 1px solid #ddd;*/
  /*padding: 10px;*/
  /*background: #fafafa;*/
  transition: 0.2s;
}

.museum-goods-item:hover {
}

.museum-goods-img {
  width: 100%;
  height: auto;
  /*margin-bottom: 8px;*/
}

.museum-goods-name {
  font-size: 1.2em;
  margin: 0px 0;
  line-height: 1.2;
  font-feature-settings: "palt";
}

.museum-goods-price {
  font-size: 1.2em;
  /*font-weight: bold;*/
  margin-bottom: 8px;
  margin-top: 5px;
}

.museum-goods-price::after {
  font-size: 1em;
  content:"　税込";
}

/* ページトップ */
.museum-to-top {
  text-align: center;
  margin-top: 30px;
}

.museum-to-top a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 0.9em;
}

/* モーダル */
.museum-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
}

.museum-modal-content {
  background: #fff;
  margin: 50px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

.museum-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 36px;
  cursor: pointer;
}

/* フェード用アニメーション */
.museum-fade {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.museum-fade.show {
  opacity: 1;
}

.museum-section {
  width: 950px;
  margin: 0 auto;
  padding: 0px 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
}

/* 商品一覧を4列グリッドに */
.museum-goods-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.museum-goods-item {
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.museum-goods-item:hover {
  opacity: 0.5;
}

/* モーダルを少し広めに */
.museum-modal-content {
  background: #fff;
  margin: 50px auto;
  padding: 20px;
  max-width: 450px;
  border-radius: 10px;
  position: relative;
}
