@charset "utf-8";

:root {
  --ff-serif: "Noto Serif JP", serif;
  --ff-ja: "Noto Sans JP", sans-serif;
  /* カラー */
  --color-text: #483c42;
  --color-white: #ffffff;
  --color-title: #b9a67a;
}

body {
  font-family: var(--ff-ja);
  color: var(--color-text);
  background: #fdfdfd;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  color: inherit !important;
  opacity: 0.7;
  cursor: pointer;
  text-decoration: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
