/* ==========================================================
 font 
========================================================== */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url('../font/ZenKakuGothicNew-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url('../font/ZenKakuGothicNew-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}
/* ==========================================================
base style
========================================================== */
body {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  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-y: scroll; */
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.846;
  }
}

:root {
  /* color */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-base01: #151F25;
  --color-base02: #89827A;
  --color-base03: #8D8079;
  --color-bg: #F3F1EE;
  --color-bg02: #2E0C02;
  --color-button: #BD8E62;

  --color-gray: #B6B6B6;

  /* 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: 51001;

  /* height */
  --height-header: 220px;
  --height-fixed: 6rem;
  --footer-height: 30rem;
}
@media (max-width: 767px) {
  :root {
    --height-header: 96px;
    --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;
  font-weight: 400;
}

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 (min-width: 768px) {
  .siteHeaderWrap {
    position: relative;
  }
  .breadcrumbNavWrap {
    position: relative;
    top: 0;
  }
}