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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.7;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}
header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}
.reserve-btn {
    padding: 8px 18px;
    background: #704125;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* ← アイコンと文字の間隔 */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 30px;
}

.logo-icon {
    width: 100px;   /* アイコンのサイズ調整 */
    height: 100px;  /* 好みに合わせて変更可能 */
    object-fit: contain;
}

/* ===== Main ===== */
.container {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 24px;
}

.page-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.page-description {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.card h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8b5e3c;
}

.card ul {
  padding-left: 20px;
}

.card li {
  margin-bottom: 8px;
}

/* Footer */
footer {
    background: #f6f6f6;
    padding: 50px 10%;
    font-size: 13px;
}
footer .columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 3px 0;
}
footer .copyright {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}