@charset "UTF-8";

/* 全体の基本スタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "游明朝", "Yu Mincho", "Shippori Mincho", serif;
    color: #4a4a4a;
    background-color: #fdfaf6;
}

/* ヘッダー全体 */
.site-header {
    background-color: #fffaf0;
    padding: 30px 20px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

/* タイトル構成 */
.site-title {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 30px;
}

.title-left,
.title-center,
.title-right {
    color: #7a6c5d;
    letter-spacing: 1px;
}

.title-left {
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.title-center {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #ccc;
    margin-top: 0;
}

.title-right {
    font-size: 16px;
    font-style: italic;
    font-weight: 500px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ナビゲーションメニュー */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-top: 50px;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #a67c52;
}



/* カテゴリセクション */
.category {
  padding: 2em 1em;
  border-top: 1px dashed #ccc;
}

/* カテゴリ名（小さく中央揃え） */
.category h2 {
  text-align: center;
  font-size: 1em;
  color: #6b5c5c;
  margin-top: 0;
  margin-bottom: 2em;
  font-family: 'Yu Mincho', serif;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* 作品ギャラリー */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

/* 作品画像 */
.gallery img {
  width: 250px;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}


/* フッター */
.site-footer {
  background-color: #faf3ea;
  color: #7a6c5d;
  text-align: center;
  padding: 30px 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 0.9em;
  border-top: 1px solid #d8cfc0;
  margin-top: 60px;
}

.footer-text {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.footer-subtext {
  margin-top: 8px;
  font-style: italic;
  opacity: 0.8;
}

.site-footer {
  position: relative; /* ← fixed ではなく relative に */
  margin-top: 0px;   /* ← 余白を調整して上に寄せる */
}

@media (max-width: 600px) {
  body {
    font-size: 0.95em;
    padding: 0 1em;
  }

  nav ul {
    flex-direction: column;
    gap: 1em;
    padding: 1em 0;
  }

  .home-button a {
    padding: 0.4em 1em;
    font-size: 0.9em;
  }

  .slide {
    max-height: 250px;
  }

  footer {
    font-size: 0.85em;
    padding: 1.5em 1em;
  }

  .category h2 {
    font-size: 0.9em;
  }
}

