@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;
}

/* スライドショーのスタイル */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 400px; /* ★ 高さを追加 */
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★ 画像のフィット方法を変更 */
    display: block;
}

.slide.active {
    opacity: 1;
}


/* ホームセクション */
.welcome {
  background-color: #fdf6f0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  color: #4b4b4b;
}

.welcome h2 {
  font-size: 20px;
  margin-bottom: 100px;
  color: #877663;
}

.fade-in {
  margin-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.welcome p {
  font-size: 16px;
  line-height: 1.8;
}

/* フッター */
.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: 0px;
}

.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;
  margin-top: 0px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons img {
  width: 30px;
  height: auto;
}

/* メディアクエリ（スマホ対応） */
@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;
  }

  .slideshow-container {
    height: 250px;
  }

  .slide {
    max-height: 250px;
  }

  footer {
    font-size: 0.85em;
    padding: 1.5em 1em;
  }

  .category h2 {
    font-size: 0.9em;
  }
}
