@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

/* ========== 共通設定 ========== */
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff8f0;
  color: #444;
}

/* ========== ヘッダー ========== */
header {
  background-color: #fceae8;
  padding: 2rem 1rem;
  text-align: center;
}

.sub-title {
    font-size: 0.9rem;
    color: #a65f3e; /* 温かみのあるブラウン */
    margin-bottom: 0.1rem;
    font-weight: 500;
  }

header h1 {
  font-size: 2rem;
  margin: 0;
}

header p {
  font-size: 1rem;
  color: #666;
}


/* ========== ナビゲーション ========== */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #fff0f5;
  padding: 10px 0;
  border-bottom: 1px solid #f0cfc1;
}

nav a {
  text-decoration: none;
  color: #6d4c41;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: #d2691e;
}

@media screen and (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== メインコンテンツ ========== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  font-size: 1.8em;
  margin-bottom: 2rem;
  text-align: center;
  color: #a15c38;
}

/* ========== 特定商取引法テーブル ========== */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffefc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
  word-break: break-word;
  overflow-wrap: break-word;
}

.legal-table th,
.legal-table td {
  padding:  8px;
  border: 1px solid #e9ddd2;
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background-color: #f8eee8;
  text-align: left;
  width: 40%;
  color: #7d4f30;
  font-weight: bold;
}

.legal-table td {
  color: #333;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    display: block;
    margin-bottom: 1rem;
  }
}

/* ========== フッター ========== */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5e8df;
  color: #7d4f30;
  font-size: 0.9rem;
}
nav {
  display: flex;
  justify-content: center;
  gap: 10px; /* ボタン間の間隔 */
  flex-wrap: wrap; /* 横幅が足りないときは折り返す */
  margin: 20px 0;
  text-align: center;
}

@media (max-width: 600px) {
  nav {
    justify-content: center;
  }

  nav a {
    margin: 5px;
  }
}
