/*------------------------------------
  Font
------------------------------------*/
html,
body {
  background: #fff;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 10px;
  letter-spacing: 0;
  color: #000;
}

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

body {
  margin: 0;
  height: 100%;
}

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

img {
  width: 100%;
  height: auto;
}

/*------------------------------------
  Text
------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
th,
td,
dt,
dd {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*------------------------------------
  breadcrumb
------------------------------------*/
.breadcrumb-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5px 0 5px 10px;
  display: flex;
  list-style: none;
}

.breadcrumb-list-text-underline {
  text-decoration: underline;
}

.breadcrumb-list-item:not(:last-child)::after {
  content: ">";
}