/*------------------------------------
  Font
------------------------------------*/
html, body {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", sans-serif;
  letter-spacing: -0.05em;
  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;
}

/*------------------------------------
  breadcrumb
------------------------------------*/
.breadcrumb-list {
  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: ">";
}

/*------------------------------------
  footer
------------------------------------*/
footer {
  font-size: 14px;
}

#global-footer>ul {
  display: flex;
  justify-content: center;
}

#global-footer>ul>li {
  list-style: none;
}

#global-footer a {
  text-decoration: underline;
  padding: 0 5px;
}

footer .footer-banner a {
  color: #1a0dab;
}

#global-footer .footer-link li:not(:last-of-type) {
  border-right: 1px solid #444;
}

#global-footer .footer-copyright {
  font-size: 12px;
  line-height: 150%;
  margin: 15px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 991px) {
  footer {
      font-size: 12px;
  }

  #global-footer>ul {
      padding: 0;
  }
}

@media screen and (max-width: 479px) {
  #global-footer {
      font-size: 3.75vw;
      padding: 5.3333vw 2.6667vw;
      text-align: center;
      color: #fff;
      background: -moz-linear-gradient(top, #7cb, #498);
      background: -webkit-gradient(linear, center top, center bottom, from(#7cb), to(#498));
  }

  #global-footer>ul {
      display: block;
      text-align: center;
      padding: 0;
  }

  #global-footer a {
      color: #fff;
  }

  .footer-link {
      font-size: .9em;
  }
}