@charset "utf-8";
/* CSS Document */

/*------------------------------------------
base css 
------------------------------------------*/

html {
  height: 100%;
  background-color: #000;
}
@media screen and (max-width: 428px) {
  html {
    height: auto;
  }
}

body {
  /* background: #000; */
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
}

body #wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* @media screen and (max-width: 428px) {
  body #wrapper {
    min-height: fit-content;
  }
} */

.site-content {
  flex: 1 0 auto;
  /*  padding: 1em 0 2em; */
  /*  padding: 0.5em 0 2em; */
}

#wrapper * img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .6;
}

header,
main,
footer {
  display: block;
  position: relative;
  width: 100%;
}

header,
footer {
  /*max-width: 1280px;*/
  margin: 0 auto;
}

main {
  background: rgba(177, 178, 182, 1);
}

main img {
  width: 100%;
}

header:after,
main:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

header {
  background: rgba(255, 255, 255, 1);
  /*  width: 100%;*/
}


/*パンくず*/
.breadcrumbs {
  background-color: rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  color: #fff;
  display: block;
  padding: 5px 0;
  position: relative;
  transition: all 500ms ease-in-out 0s;
  width: 100%;
  z-index: 1000;
}

ol#pankuzu {
  color: rgba(66, 66, 66, 1);
  display: flex;
  font-size: 13px;
  list-style: outside none none;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 90%;
  max-width: 980px;
  z-index: 1000;
}


ol#pankuzu li a:after {
  content: "\f054";
  font-family: FontAwesome;
  margin: 0 5px;
}

#pankuzu li#top:before {
  content: "\f015";
  font-family: FontAwesome;
  padding-right: 6px;
  padding-top: 2px;
}