/* ==========================================================
 font 
========================================================== */
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-Black.ttf') format('truetype');
  font-weight: 900;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../font/Cormorant-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../font/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

/* ==========================================================
base style
========================================================== */
body {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
  font-variant-numeric: tabular-nums;
  z-index: var(--zindex-base);
  width: 100%;
  color: var(--color-black);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.846;
  }
}

:root {
  /* color */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-base: #D7C8C0;
  --color-accent01: #483B2B;
  --color-accent02: #89827A;
  --color-accent03: #855A3F;
  --color-sub01: #C8BAB3;
  --color-sub02: #E3DDD9;
  --color-sub03: #F1EEEC;

  /* z-index */
  --zindex-minus: -1;
  --zindex-base: 0;
  --zindex-01: 1;
  --zindex-02: 2;
  --zindex-03: 3;
  --zindex-04: 4;
  --zindex-05: 5;
  --zindex-follow: 99;
  --zindex-modal: 9999;

  /* height */
  --height-header: 10.0rem;
  --height-fixed: 6.0rem;
  --footer-height: 30.0rem
}
@media (max-width: 767px) {
  :root {
    --height-header: 7.2rem;
    --height-fixed: 5.2141rem;
  }
}

/* ==========================================================
 html5 elements
========================================================== */
article,
aside,
figure,
figcaption,
footer,
header,
nav,
section,
main {
  display: block;
}

/* ==========================================================
 reseting
========================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
  max-width: 100%;
  width: 100%;
  height: auto;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

main {
  position: relative;
  width: 100%;
  text-align: left;
  color: var(--color-black);
}
@media (max-width: 1079px) {
  main {
    min-width: 320px;
  }
}