@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

.site-header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #ddd;
}

section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  font-size: 1.5rem;
  border-left: 4px solid #333;
  padding-left: 0.5rem;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 0.5rem 0;
}

.portfolio-list {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.portfolio-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.portfolio-item h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.thumbnail {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

.description {
  margin: 1rem 0;
  line-height: 1.8;
}

.images1 img {
  display: block;
  width: 100%;
  margin: 1rem 0;
  cursor: pointer;
}

.images2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.images2 img {
  width: calc(50% - 0.5rem);
  cursor: pointer;
}

/* カテゴリ */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-list span {
  background: #eee;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* シェアボタン */
.share-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  background: #333;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ページャー */
.pagination {
  text-align: center;
  margin: 3rem 0;
}

.pagination button {
  margin: 0 0.3rem;
  padding: 0.5rem 1rem;
  border: 1px solid #aaa;
  background: white;
  cursor: pointer;
  border-radius: 5px;
}

.pagination button.active {
  background: #333;
  color: white;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  height: auto;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.share-btn, .view-btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
}

.share-btn:hover, .view-btn:hover {
  background: #555;
}

.share-btn:disabled {
  background: #888;
  cursor: default;
}/*# sourceMappingURL=style.css.map */