/*	Top Character
============================== */
div.chara {
  position: relative;
  z-index: 0;
}
div.chara::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 540px;
  background: url("../img/bg_character.png") no-repeat top center;
  background-size: cover;
}
div.chara article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: center;
  overflow: hidden;
}
div.chara article header {
  display: block;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
div.chara article header h2 {
  font-weight: normal;
  line-height: 1.25;
  text-shadow: 2px 2px 0px #322a27, 0px 0px 16px #322a27, 0px 0px 30px rgba(255, 255, 255, 0.9)
}
div.chara article header h2 span {
  color: hsla(0, 0%, 100%, 1.00);
  display: inline-block;
  position: relative;
  padding-bottom: 0.1em;
}
div.chara article ul {
  display: flex;
}
div.chara article ul li.nth-child(even) {
  transform: translateY(20px);
}
div.chara article ul li a, div.chara article ul li span {
  display: block;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
div.chara article ul li a {
  background-position: center top;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
}
div.chara article ul li a.lazy-done {
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}
@media all and (min-width: 768px) {
  div.chara article {
    max-width: 1080px;
    margin: 0 auto;
  }
  div.chara article header {
    margin-top: 160px;
  }
  div.chara article header h2 {
    font-size: 550%;
  }
  div.chara article ul {
    width: 3780px;
    padding-bottom: 20px;
  }
  div.chara article ul li:first-child {
    margin-left: 360px;
  }
  div.chara article ul li a, div.chara article ul li span {
    width: 360px;
    height: 360px;
  }
  div.chara article ul li:not(:last-child) {
    margin-right: 60px;
  }
}
@media all and (max-width: 767px) {
  div.chara::before {
    height: inherit;
    background: url("../img/bg_character_sp.png") no-repeat top center;
  }
  div.chara article {}
  div.chara article header {
    padding-top: 40px;
  }
  div.chara article header h2 {
    font-size: 12vw;
  }
  div.chara article ul {
    width: 3780px;
    /*	padding-bottom:2.5vh;*/
  }
  div.chara article ul li:first-child {
    margin-left: 280px;
  }
  div.chara article ul li a, div.chara article ul li span {
    width: 280px;
    height: 280px;
  }
  div.chara article ul li:not(:last-child) {
    margin-right: 40px;
  }
}
/*	tolist
============================== */
div.chara article header p.tolist {
  padding-right: 2em;
  text-align: right;
}
div.chara article header p.tolist a {
  color: #fff;
  text-decoration: none;
}
div.chara article header p.tolist a:after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
}
div.chara article header p.tolist a span {
  display: inline-block;
  margin-right: 0.5em;
  text-shadow: 1px 1px 0px #322a27, 0px 0px 16px #322a27, 0px 0px 30px rgba(255, 255, 255, 0.9)
}
@media all and (min-width: 992px) {
  div.chara article header p.tolist {
    font-size: 120%;
  }
}
@media all and (max-width: 991.98px) {
  div.chara article header p.tolist {
    font-size: 87.5%;
  }
  div.chara article header p.tolist a:after {
    width: 8px;
    height: 8px;
  }
}
div.chara article header p.tolist a {
  color: #fff;
  text-decoration: none;
}
@media all and (max-width: 991.98px) {
  div.chara article header p.tolist a span {
    display: none;
  }
}
/*	line-text
============================== */
div.chara .tolist .line-text {
  position: relative;
  padding-left: 30px;
}
div.chara .tolist .line-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 115px;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background-color: #fff;
  box-shadow: 1px 1px 0px #322a27, 0px 0px 16px #322a27, 0px 0px 30px rgba(255, 255, 255, 0.9);
}
