@charset "UTF-8";

/* =============================
    Base
============================= */

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
  margin-top: 150px;
  color: #625449;
  background-color: #FFF9F1;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  body {
    margin-top: 50px;
  }
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

p {
  font-weight: 500;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =============================
    リンク先をヘッダー分スクロール
============================= */

[id] {
  scroll-margin-top: 20px;
}

@media screen and (min-width: 768px) {
  [id] {
    scroll-margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  [id] {
    scroll-margin-top: 20px;
  }
}