/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
/** keyframe */
/* */
.character-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.character-popup-overlay .character-popup-box {
  width: 90%;
  max-width: 1000px;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  animation: popupFade 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  .character-popup-overlay .character-popup-box {
    border-radius: 6px;
  }
}
.character-popup-overlay .character-popup-box .character-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 47.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-close {
    top: 5px;
    right: 15px;
  }
}
.character-popup-overlay .character-popup-box .character-popup-body ._inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px 40px 0;
}
@media only screen and (max-width: 47.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner {
    padding: 0 10px 15px 10px;
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 48rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._left {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.character-popup-overlay .character-popup-box .character-popup-body ._inner ._left ._image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 48rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right {
    flex: 1;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._title {
  font-weight: 700;
  margin-bottom: 5px;
}
@media only screen and (min-width: 64rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._title {
    font-size: 24px;
    line-height: 32px;
  }
}
.character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._nickname {
  font-weight: 600;
}
@media only screen and (min-width: 64rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._nickname {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._nickname {
    font-size: 18px;
    line-height: 24px;
  }
}
.character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._desc {
  font-weight: 500;
  margin-top: 30px;
  color: #505050;
}
@media only screen and (min-width: 64rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._desc {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 64rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._desc p {
    line-height: 24px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .character-popup-overlay .character-popup-box .character-popup-body ._inner ._right ._desc p {
    line-height: 20px;
  }
}

.character-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.series-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.series-popup-overlay .series-popup-box {
  width: 90%;
  max-width: 1000px;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  animation: popupFade 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box {
    border-radius: 6px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-close {
    top: 5px;
    right: 15px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 30px 40px 40px;
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}

@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner {
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner {
    grid-gap: 1.5625rem;
    gap: 1.5625rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner {
    padding: 15px 15px 15px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._text {
  flex: 0 0 100%;
  max-width: 100%;
  font-weight: 700;
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._text {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._left {
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._left ._image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._title {
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._number {
  font-weight: 700;
  color: #7a0e1b;
  margin-bottom: 5px;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._number {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._number {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._desc {
  color: #505050;
  margin-bottom: 15px;
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._desc p {
    line-height: 24px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._desc p {
    line-height: 20px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list {
  grid-gap: 0.3125rem;
  gap: 0.3125rem;
}

@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list {
    grid-gap: 0.625rem;
    gap: 0.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list {
    grid-gap: 0.625rem;
    gap: 0.625rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span {
  font-weight: 600;
  display: block;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span {
    text-align: center;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span:nth-child(1) {
  font-size: 13px;
  line-height: 20px;
  color: #a8a8a8;
}
@media only screen and (max-width: 63.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span:nth-child(1) {
    font-size: 12px;
  }
}
@media only screen and (min-width: 64rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span:nth-child(2) {
    font-size: 17px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._classify span:nth-child(2) {
    font-size: 13px;
    line-height: 20px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._age span {
  font-weight: 600;
  display: block;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._age span {
    text-align: center;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._age span:nth-child(1) {
  font-size: 13px;
  line-height: 20px;
  color: #a8a8a8;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._age span:nth-child(2) {
    font-size: 17px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._age span:nth-child(2) {
    font-size: 15px;
    line-height: 20px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._broadcast span {
  font-weight: 600;
  display: block;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._broadcast span {
    text-align: center;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._broadcast span:nth-child(1) {
  font-size: 13px;
  line-height: 20px;
  color: #a8a8a8;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._broadcast span:nth-child(2) {
    font-size: 17px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._broadcast span:nth-child(2) {
    font-size: 15px;
    line-height: 20px;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._category span {
  font-weight: 600;
  display: block;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._category span {
    text-align: center;
  }
}
.series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._category span:nth-child(1) {
  font-size: 13px;
  line-height: 20px;
  color: #a8a8a8;
}
@media only screen and (min-width: 48rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._category span:nth-child(2) {
    font-size: 17px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .series-popup-overlay .series-popup-box .series-popup-body ._inner ._right ._list ._category span:nth-child(2) {
    font-size: 15px;
    line-height: 20px;
  }
}

.series-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* */
._contacts_shortcode {
  background: #ffffff;
}
._contacts_shortcode ._contact_shortcode_inner {
  position: relative;
}
._contacts_shortcode ._contact_shortcode_inner ._images {
  position: relative;
  width: 100%;
  height: 270px;
  box-shadow: 0px 0px 10px 0px rgba(147, 129, 70, 0.1019607843);
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 47.99875rem) {
  ._contacts_shortcode ._contact_shortcode_inner ._images {
    border-radius: 8px;
  }
}
._contacts_shortcode ._contact_shortcode_inner ._images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._contacts_shortcode ._contact_shortcode_inner .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (min-width: 48rem) {
  ._contacts_shortcode ._contact_shortcode_inner .inner {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 47.99875rem) {
  ._contacts_shortcode ._contact_shortcode_inner .inner {
    width: 90%;
    margin: 0 auto;
  }
}
._contacts_shortcode ._contact_shortcode_inner .inner ._title {
  color: #ffffff;
  font-weight: 500;
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 63.99875rem) {
  ._contacts_shortcode ._contact_shortcode_inner .inner ._title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 5px;
  }
}
._contacts_shortcode ._contact_shortcode_inner .inner ._desc {
  color: #ffffff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  ._contacts_shortcode ._contact_shortcode_inner .inner ._desc {
    margin-bottom: 10px;
  }
}
._contacts_shortcode ._contact_shortcode_inner .inner ._button_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
._contacts_shortcode ._contact_shortcode_inner .inner ._button_wrap {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

._contacts_shortcode ._contact_shortcode_inner .inner ._button a {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.4s;
  line-height: 1;
}
._contacts_shortcode ._contact_shortcode_inner .inner ._button a:hover {
  transform: translateY(-5px);
}
._contacts_shortcode ._contact_shortcode_inner .inners ._title {
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  ._contacts_shortcode ._contact_shortcode_inner .inners ._title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  ._contacts_shortcode ._contact_shortcode_inner .inners ._title br {
    display: none;
  }
}

/* */
/* */