@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;
}


/* 本文コンテンツ（アニメーション対象） */
.kotonoha {
  text-align: center;
  padding: 4em 2em;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #6b5c5c;
  /* JavaScriptでフェードインさせるため、初期の透明度を0に設定 */
  opacity: 0;
}

.section-title {
  font-size: 1.8em;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 1em;
}

.intro-text {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 2em;
}

.coming-soon {
  font-size: 0.9em;
  font-style: italic;
  color: #a8a2a2;
}

.is-active {
  opacity: 1;
  transition: opacity 3s ease-in;
}

/* フッター */
.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;
  margin-top: 0px;
}

@media (max-width: 600px) {
  body {
    font-size: 0.95em;
    padding: 0 1em;
  }

  .site-title {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1em;
    padding: 1em 0;
  }
}