@charset "utf-8";
/* CSS Document */
/* ===============================
  色・文字・余白・リセット
   Base
   - variables
   - reset
   - body / typography
=============================== */

/* ---------- Variables ---------- */
:root {
  --accent-color: #C9A063;
  --text-main: #3E3A39;
  --text-sub: #595757;
  --bg-main: #f7f4ef;
  --bg-dark: #2e2a26;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.8;
}

/* ---------- Elements ---------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

/* ---------- Utility ---------- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px;
}
