* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #fff;
}

main {
    overflow: hidden;
    background-color: #000;
    left: 50%;
}

@-webkit-keyframes appear {
  0% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes appear {
  0% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2b2b2b;
  padding: 15px 64px 19px 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 81px;
  z-index: 900;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
@media screen and (max-width: 1200px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 20px;
    height: 40px;
  }
}
.header.is-fixed {
  -webkit-animation: appear 1s ease-in-out;
          animation: appear 1s ease-in-out;
  -webkit-transform: none;
          transform: none;
}
.header__logo {
  width: 190px;
  border: 1px solid #000;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo-image {
  width: 100%;
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 51.5px;
}
@media screen and (max-width: 1200px) {
  .header__navigation {
    gap: 35px;
  }
}
@media screen and (max-width: 980px) {
  .header__navigation {
    display: none;
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #2b2b2b;
    overflow: auto;
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .header__navigation {
    top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__navigation.active {
    display: block;
  }
}
.header__link {
    font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .header__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 980px) {
  .header__link {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 980px) {
  .header__link:not(:last-child) {
    margin-bottom: 20px;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__hamburger {
    display: block;
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 30px;
  }
}
.header__line {
  width: 100%;
  height: 2px;
  background-color: #ccc;
}
.header__line:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .header__line:not(:last-child) {
    margin-bottom: 5px;
  }
}

.footer {
  text-align: center;
  background-color: #2b2b2b;
  padding: 2px 20px;
}
.footer__top-secondary {
  display: inline-block;
  font-size: 1.8rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
}
.footer__logo {
  width: 80px;
  margin: 0 auto 10px;
}
.footer__logo-image {
  width: 100%;
}
.footer__copyright {
  font-size: 10px;
}

.top__mv {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #2b2b2b;
  height: calc(100vh - 10.53vw);
  height: calc(100svh - 10.53vw);
  min-height: 600px;
  max-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__mv {
    height: 400px;
    min-height: unset;
  }
}
.top__mv-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__mv-text {
  color: #ff0707;
  font-size: 6.4rem;
}
@media screen and (max-width: 767px) {
  .top__mv-text {
    font-size: 40px;
  }
}
.top__mv-navigation {
  background-color: #2b2b2b;
}
.top__mv-slide {
  height: 10.53vw;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .top__mv-slide {
    height: auto;
    aspect-ratio: 640/200;
  }
}
.top__mv-link {
    display: block;
    width: 100%;
    height: 100%;
}


.top__story {
  width: 1600px;
  margin: 0 auto;
  max-width: calc(100% - 50px);
  padding: 50px 0 100px;
}
@media screen and (max-width: 767px) {
  .top__story {
    padding: 40px 20px 60px;
    max-width: 100%;
  }
}
.top__story-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 47px;
}
@media screen and (max-width: 980px) {
  .top__story-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__story-image {
    width: 40%;
    /* [disabled]height: 778px; */
    background-color: #2b2b2b;
    font-size: 4rem;
    color: #ff0707;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 980px) {
  .top__story-image {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top__story-image {
    height: 100%;
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.top__story-content {
  width: 51%;
  padding-top: 20px;
}
@media screen and (max-width: 980px) {
  .top__story-content {
    width: 100%;
    padding-top: 0;
  }
}
.top__story-content-title {
  font-size: 3.2rem;
  border-bottom: 2px dashed #ffc700;
  margin-bottom: 45px;
  padding-bottom: 10px;
  font-weight: 400;
}
@media screen and (max-width: 1290px) {
  .top__story-content-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__story-content-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.top__story-text {
  font-size: 2rem;
  line-height: 1.2em;
  padding: 0 45px;
}
@media screen and (max-width: 1200px) {
  .top__story-text {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__story-text {
    font-size: 18px;
  }
}
.top__character {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top__character {
    padding-bottom: 50px;
  }
}
.top__splide {
  margin-top: 50px;
}
.top__title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top__title {
    font-size: 30px;
  }
}
.top__subtitle {
  font-size: 1.6rem;
}
.top__character-thumbnail {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 29px;
  margin: 29px auto 0;
}
@media screen and (max-width: 767px) {
  .top__character-thumbnail {
    max-width: calc(100% - 40px);
    gap: 15px;
  }
}
.top__thumbnail-item {
  width: 104px;
  height: 104px;
  background-color: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  padding: 1px 7px 3px;
}
@media screen and (max-width: 767px) {
  .top__thumbnail-item {
    width: 50px;
    height: 50px;
  }
}
.top__thumbnail-item img {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__thumbnail-item:hover img, .top__thumbnail-item.is-active img {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.top__splide-slide {
  width: 100%;
}
.top__splide-slide [data-aos][data-aos][data-aos-duration="1000"],
.top__splide-slide body[data-aos-duration="1000"] [data-aos] {
  -webkit-transition-duration: 0s !important;
          transition-duration: 0s !important;
}
.top__splide-slide [data-aos][data-aos][data-aos-duration="1000"].aos-animate,
.top__splide-slide body[data-aos-duration="1000"] [data-aos].aos-animate {
  -webkit-transition-duration: 1s !important;
          transition-duration: 1s !important;
}
.top__splide-container {
  position: relative;
  width: 1000px;
  max-width: calc(100% - 100px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .top__splide-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top__splide-container {
    gap: 30px;
    max-width: calc(100% - 40px);
  }
}
.top__splide-image {
  position: relative;
  width: 27%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 50px;
}
@media screen and (max-width: 980px) {
  .top__splide-image {
    width: 400px;
    margin: 0 auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__splide-image {
    max-width: calc(100% - 90px);
    padding-left: 30px;
  }
}
@media screen and (max-width: 580px) {
  .top__splide-image {
    margin-right: 0;
  }
}
.top__splide-subtitle {
  position: absolute;
  top: 35px;
  letter-spacing: 0.4em;
  left: 0;
  font-size: 1.6rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 980px) {
  .top__splide-subtitle {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__splide-subtitle {
    left: 20px;
    font-size: 14px;
  }
}
.top__splide-content {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .top__splide-content {
    width: 55%;
  }
}
@media screen and (max-width: 980px) {
  .top__splide-content {
    width: 100%;
  }
}
.top__splide-title {
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin-bottom: 13px;
}
.top__h-scene {
  margin-top: 20px;
  padding-left: 10px;
}
.top__block-title {
  font-size: 2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-weight: 400;
}
.top__block-text {
  font-size: 1.4rem;
}
.top__splide-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__splide-information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.top__splide-cv {
  font-size: 2rem;
}
.top__voice-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.top__voice-item {
  position: relative;
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  background-color: #ffaeae;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__image-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top__block-image {
    width: 160px;
    height: 90px;
    background-color: #2b2b2b;
    cursor: pointer;
}
.top__splide-profile {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}
.top__splide-profile-inner {
  background-color: #2b2b2b;
  padding: 8px 14px 20px;
}
.top__profile-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 400;
}
.top__profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.top__profile-item:not(:last-child) {
  margin-bottom: 10px;
}
.top__profile-label {
    width: 105px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #310808;
    font-size: 1.4rem;
    text-align: center;
}
.top__profile-info {
  font-size: 1.2rem;
}
.top__popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__popup.active {
  opacity: 1;
  pointer-events: visible;
}
.top__popup-backdrop {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
}
.top__popup-container {
  position: relative;
  z-index: 2;
  width: 800px;
  padding: 10px;
  background-color: #2b2b2b;
  max-width: 90%;
  aspect-ratio: 1280/720;
}
@media screen and (max-width: 767px) {
  .top__popup-container {
    padding: 5px;
    max-width: 98%;
  }
}
.top__popup-container iframe {
  width: 100%;
  height: 100%;
}
.top__popup-container--image {
  aspect-ratio: unset;
  height: auto;
}
.top__special {
  padding-bottom: 95px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  width: 1050px;
}
@media screen and (max-width: 767px) {
  .top__special {
    padding-bottom: 60px;
    max-width: calc(100% - 40px);
  }
}
.top__special-link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  .top__special-link-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.top__special-link {
  cursor: pointer;
  width: 440px;
  height: 80px;
  border: 1px solid #ccc;
  font-size: 2rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__special-link {
    height: 60px;
    width: 100%;
  }
}
.top__special-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 84px 51px;
}
@media screen and (max-width: 767px) {
  .top__special-group {
    gap: 30px 20px;
  }
}
.top__special-item {
  width: 315px;
  height: 200px;
  max-width: calc(33.3333333333% - 34px);
  background-color: #2b2b2b;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top__special-item {
    max-width: calc(50% - 10px);
    width: calc(50% - 10px);
    height: auto;
    aspect-ratio: 315/199;
  }
}
.top__special-item img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__special-item img:hover {
  opacity: 0.8;
}
.top__spec-container {
  width: 1078px;
  margin: 0 auto;
  max-width: calc(100% - 60px);
  padding: 80px 0 160px;
}
@media screen and (max-width: 767px) {
  .top__spec-container {
    max-width: calc(100% - 30px);
    padding: 40px 0 100px;
  }
}

.top__spec-container2 {
    width: 1600px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    max-width: calc(100% - 60px);
    padding-right: auto;
    padding-left: auto;
}
@media screen and (max-width: 767px) {
  .top__spec-container2 {
    max-width: calc(100% - 30px);
    padding: 40px 0 100px;
 	object-fit: cover;  
	width: 600px;  
  }
}


.top__spec-container3 {
    width: 900px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    max-width: calc(80% - 60px);
    padding-right: auto;
    padding-left: auto;
}
@media screen and (max-width: 767px) {
  .top__spec-container3 {
    max-width: calc(80% - 30px);
    padding: 40px 0 100px;
 	object-fit: cover;  
	width: 600px;  
  }
}


.top__spec-list {
  margin-top: 30px;
}
.top__spec-list--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
    justify-content: center;	
/*    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    margin-left: auto;*/
}
@media screen and (max-width: 767px) {
  .top__spec-list--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.top__spec-list--flex label {
    width: auto;
}

.top__spec-list--flex .top__spec-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.top__spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
.top__spec-item:not(:last-child) {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
}





.top__spec-label {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.47);
}
.top__spec-label--small {
  width: 70px;
}
.top__spec-text {
  font-size: 13px;
}
.top__spec-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top__spec-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
.top__spec-block {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .top__spec-block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__spec-block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.top__spec-block2 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__spec-block2 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__spec-block2:not(:last-child) {
    margin-bottom: 40px;
  }
}



.top__clothes-thumbnail {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 980px) {
  .top__clothes-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top__clothes-item img {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__clothes-item:hover img, .top__clothes-item.is-active img {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.top__clothes-subtitle {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.top__clothes-image {
  width: 75px;
  height: 75px;
  background-color: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
}

.overflow {
  overflow: hidden;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

.anchor {
  display: block;
  position: relative;
  top: -81px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -40px;
  }
}
