@charset "utf-8";

/* CSS Document */
html {
  font-size : 62.5%;
  /* 16px * 62.5% = 10px */
  width     : 100%;
  box-sizing: border-box;
}

body {
  font-family: FOT-筑紫Aオールド明朝 Pr6 R;
  font-style           : normal;
  font-weight          : 400;
  font-style           : normal;
  text-align           : left;
  font-size: 1.6rem;
  line-height          : 1.75;
  color                : #3D4333;
  font-feature-settings: "palt";
  background-color     : #D9D3C3;
}

.eb {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style : normal;
}

.dm {
  font-family: "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
}

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



.none {
  display: none;
}

* {
  margin : 0;
  padding: 0;
}

* {
  list-style: none;
}

* {
  text-decoration: none;
}

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

a {
  color: #2b2b2b;
}


.sa {
  opacity   : 0;
  transition: all .5s ease-in-out;
}

.sa--up {
  transform: translate(0, 30px);
}


.sa.show {
  opacity   : 1;
  transform : none;
  transition: all .5s ease-in-out;
}