@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Noto Serif JP", serif;
  background-color: #012B28; /* 濃いエメラルド */
  color: #E8D3A8;           /* シャンパンゴールド */
}

/* 画面全体を中央配置 */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}

/* 中央コンテンツ */
.hero-inner {
  text-align: center;
}

/* 細いゴールドライン */
.divider {
  width: 80px;
  height: 1px;
  background-color: #E8D3A8;
  margin: 0 auto 24px auto;
}

/* 名前 */
.site-title {
  font-size: 32px;
  letter-spacing: 0.35em;
  text-indent: 0.35em; /* 先頭のスペース分を戻す */
  margin-bottom: 12px;
}

/* サブタイトル（肩書き） */
.subtitle {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  color: #CBB890;
  margin-bottom: 18px;
}

/* キャッチコピー */
.tagline {
  font-size: 14px;
  color: #E8D3A8;
  margin-bottom: 32px;
}

/* アウトラインボタン */
.btn-outline {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #E8D3A8;
  color: #E8D3A8;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #E8D3A8;
  color: #012B28;
}

/* 下部ナビゲーション */
.nav-links {
  position: absolute;
  bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.nav-links a {
  color: #CBB890;
  text-decoration: none;
  margin: 0 4px;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.dot {
  color: #5C746F; /* 少し暗めの点 */
}