#character #main_inner h3 {
  font-family: garamond-premier-pro, serif;
  font-weight: bold;
}

#character #main_inner h3:before, #character #main_inner h3:after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 12px;
  margin-top: -1px;
  background-image: url("../img/common/ico01.png");
  background-repeat: no-repeat;
  background-size: 200% auto;
  vertical-align: top;
}

/* character
##################################### */
#character #main {
  background: url("../img/character/bg_t.png") no-repeat 0 0/100% auto;
}

#character #main_inner h3 {
  margin-bottom: 20px;
  line-height: 1;
  color: #482101;
  text-align: center;
}

#character #main_inner h3:before {
  margin-right: 10px;
}

#character #main_inner h3:after {
  margin-left: 10px;
  background-position: 100% 0;
}

.detail_chara .slick-arrow {
  position: absolute;
  display: block;
  padding: 0;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  font-size: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
}

.detail_chara .slick-prev {
  left: 0;
  background-image: url("../img/common/btn_prev.png");
}

.detail_chara .slick-prev:hover {
  -webkit-animation: arrowPrev 1.2s ease-in-out infinite;
  animation: arrowPrev 1.2s ease-in-out infinite;
}

@-webkit-keyframes arrowPrev {
  0% {
    left: 0;
  }
  50% {
    left: -10px;
  }
  100% {
    left: 0;
  }
}

@keyframes arrowPrev {
  0% {
    left: 0;
  }
  50% {
    left: -10px;
  }
  100% {
    left: 0;
  }
}

.detail_chara .slick-next {
  right: 0;
  background-image: url("../img/common/btn_next.png");
}

.detail_chara .slick-next:hover {
  -webkit-animation: arrowNext 1.2s ease-in-out infinite;
  animation: arrowNext 1.2s ease-in-out infinite;
}

@-webkit-keyframes arrowNext {
  0% {
    right: 0;
  }
  50% {
    right: -10px;
  }
  100% {
    right: 0;
  }
}

@keyframes arrowNext {
  0% {
    right: 0;
  }
  50% {
    right: -10px;
  }
  100% {
    right: 0;
  }
}

.box_chara .cv {
  color: #9a1e23;
}

.box_chara .cv span {
  display: inline-block;
  padding: .3em .8em .23em;
  margin-top: -4px;
  margin-right: .8em;
  background: #9a1e23;
  color: #fff;
  vertical-align: middle;
}

.box_chara .stand img {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.box_chara .face {
  text-align: center;
}

.list_chara {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list_chara a {
  position: relative;
  display: block;
  z-index: 1;
}

.list_chara a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  z-index: -1;
  -webkit-transition: background .8s ease-out;
  -o-transition: background .8s ease-out;
  transition: background .8s ease-out;
}

.list_chara a:hover:before {
  background: #c1e9bd;
}

.list_chara a.is-active:before {
  background: #5bb653;
}

.list_chara img {
  width: 100%;
}

/* character pc
===================================== */
@media screen and (min-width: 769px) {
  .detail_chara .slick-arrow {
    top: 180px;
    width: 44px;
    height: 124px;
  }
  .detail_chara .slick-prev {
    -webkit-transform: translate(-70px, 0);
    -ms-transform: translate(-70px, 0);
    transform: translate(-70px, 0);
  }
  .detail_chara .slick-next {
    -webkit-transform: translate(70px, 0);
    -ms-transform: translate(70px, 0);
    transform: translate(70px, 0);
  }
  .box_chara {
    margin-bottom: 48px;
  }
  .box_chara .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
  }
  .box_chara .inner > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 530px;
  }
  .box_chara .inner > div > * {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .box_chara .stand {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 310px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .box_chara .stand img[src*='chara5'] {
    -webkit-transform: translate(-54%, 0);
    -ms-transform: translate(-54%, 0);
    transform: translate(-54%, 0);
  }
	.box_chara .stand .noimage{
		left: 55%!important;
	}
  .box_chara dl {
    width: 400px;
  }
  .box_chara .cv {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2;
    font-weight: normal;
  }
  .box_chara .cv span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: normal;
  }
  .box_chara dt {
    margin-bottom: 30px;
  }
  .box_chara dt img {
    width: auto;
    height: 43px;
  }
  .list_chara li {
    width: 84px;
  }
  .list_chara li:not(:last-child):not(:nth-child(8n)) {
    margin-right: 6px;
  }
  .list_chara li:nth-child(n+9) {
    margin-top: 15px;
  }
}

@media all and (-ms-high-contrast: none) {
  .box_chara .cv span {
    padding: .4em .8em .1em;
  }
}

/* character sp
===================================== */
@media screen and (max-width: 768px) {
  .detail_chara .slick-arrow {
    top: 39.2vw;
    width: 5.88%;
    padding-top: 16.57%;
  }
  .box_chara {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  }
  .box_chara .inner {
    margin-bottom: 20px;
  }
  .box_chara .stand {
    width: 72.75%;
    margin: 0 auto 5%;
  }
  .box_chara .cv {
    margin-bottom: 8px;
    text-align: center;
  }
  .box_chara .cv span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: normal;
  }
  .box_chara dt {
    margin-bottom: 10px;
  }
  .box_chara dt img {
    width: auto;
    height: 25px;
    margin: 0 auto;
  }
  .list_chara li {
    width: 18.6%;
  }
  .list_chara li:not(:last-child):not(:nth-child(5n)) {
    margin-right: 1.7%;
  }
  .list_chara li:nth-child(n+6) {
    margin-top: 3%;
  }
}
