@charset "UTF-8";
/*
**************************************************************************
*	fields ULTRAMAN style.css
**************************************************************************/
:root {
  --fonts-notosansjp: "Noto Sans JP", sans-serif;
  --fonts-roboto: "Roboto", sans-serif;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #FF3F1A;
  --color-blue: #00A7E0;
  --color-gray1: #010101;
  --color-gray2: #E7E7E7;
  --color-base: var(--color-black);
  --color-footer: var(--color-black);
  --color-complete1: var(--color-white);
  --color-complete2: var(--color-white);
  --btn-shadows: 20px 20px 30px rgba(89, 89, 89, 0.7);
  --easing-cubic1: cubic-bezier(0, 0, .2, 1);
}

/* --------------------------------------------------
		共通
-------------------------------------------------- */
.complete-limit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  z-index: 1;
  position: relative;
      flex-wrap: wrap;
  padding: 24px 20px;
  gap: 8px 24px;
  background-color: var(--color-complete1);
}
.l-footer .complete-limit {
  background-color: var(--color-complete2);
}
.complete-limit__text {
  color: var(--color-black);
  font-weight: 700;
  font-size: calc(28 / 10 * 1rem);
  line-height: 1.3928571429;
  letter-spacing: calc(200 / 1000 * 1em);
}
.l-footer .complete-limit__text {
  line-height: 1.2580645161;
}
.complete-limit__notice {
  color: var(--color-black);
  font-weight: 400;
  font-size: calc(14 / 10 * 1rem);
  line-height: 1.7142857143;
  letter-spacing: calc(25 / 1000 * 1em);
}

.c-section {
  padding-right: 20px;
  padding-left: 20px;
}

.separate {
  position: relative;
  height: 244px;
}
.separate img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  position: absolute;
  top: 0;
  left: 0;
     object-position: center;
}

.c-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-animation-delay: 0.3s !important;
  position: relative;
          animation-delay: 0.3s !important;
}
.c-title .is-mainlabel {
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  font-size: calc(48 / 10 * 1rem);
  line-height: 1;
  font-family: var(--fonts-roboto);
  letter-spacing: calc(50 / 1000 * 1em);
}

.is-red {
  color: var(--color-red);
}

.is-blue {
  color: var(--color-blue);
}

/* --------------------------------------------------
	MARK:Movie
-------------------------------------------------- */
.movie__embed {
  position: relative;
  width: 100%;
  padding-top: 56.6176%;
}
.movie__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: all;
}
.movie__frame > * {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
	MARK:Concept
-------------------------------------------------- */
.concept {
  position: relative;
  padding-block: 96px;
  background: url("../img/img-concept_pc.png") center no-repeat;
  background-size: cover;
}
.concept .c-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  margin-left: calc((-100vw + 1142px) / 2);
}
.concept .c-title .is-mainlabel {
  padding-right: 20px;
  padding-left: calc((100vw - 1142px) / 2 + 40px);
  padding-block: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.concept .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.concept__container {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "title case" "copyword case" "text case";
  -ms-grid-columns: 1fr 0 398px;
  grid-template-columns: 1fr 398px;
  -ms-grid-rows: auto 30px auto 30px 1fr;
  grid-template-rows: auto auto 1fr;
  -ms-flex-line-pack: start;
  z-index: 1;
  position: relative;
      align-content: flex-start;
  max-width: 1126px;
  margin-inline: auto;
  gap: 30px 0;
}
.concept__case {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  position: relative;
  grid-area: case;
          justify-content: center;
  padding-top: 160px;
}
.concept__case--img img {
  -webkit-filter: drop-shadow(20px 20px 30px rgba(0, 0, 0, 0.7));
          filter: drop-shadow(20px 20px 30px rgba(0, 0, 0, 0.7));
}
.concept__copyword {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  z-index: 1;
  position: relative;
  grid-area: copyword;
  margin-left: calc((-100vw + 1142px) / 2);
}
.concept__copyword--head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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: 12px;
}
.concept__copyword .is-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
  display: inline;
          flex: 0 0 auto;
  box-decoration-break: clone;
  padding-right: 10px;
  padding-left: calc((100vw - 1142px) / 2);
  background-color: var(--color-white);
  -webkit-box-decoration-break: clone;
  color: var(--color-black);
  font-weight: 700;
  font-size: clamp(24px, 3.275332651vw, 32px);
  line-height: 1.625;
  letter-spacing: calc(50 / 1000 * 1em);
}
.concept__contents {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  position: relative;
  grid-area: text;
}
.concept__contents--txt {
  z-index: 1;
  position: relative;
  font-weight: 500;
  font-size: clamp(15px, 1.6376663255vw, 16px);
  line-height: 2.25;
}
.concept__contents--txt + .concept__contents--txt {
  margin-top: 38px;
}

/* --------------------------------------------------
		MARK:Point
-------------------------------------------------- */
.point {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: linear-gradient(153deg, #FFF 16.99%, #C0C0C0 153.61%);
}
.point::after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-point-pattern_pc.svg") right top repeat-y;
  content: "";
  pointer-events: none;
}
.point__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.point__bg--line img {
  height: 100%;
}
.point .c-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  position: static;
  grid-area: title;
  margin-left: calc((-100vw + 1142px) / 2);
}
.point .c-title .is-mainlabel {
  padding-right: 20px;
  padding-left: calc((100vw - 1142px) / 2 + 40px);
  padding-block: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  z-index: 1;
  position: relative;
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.point .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.point .c-title .is-number {
  z-index: 5;
  position: absolute;
  top: 40px;
  right: 0;
}
.point__container {
  padding-block: 28px 72px;
  -webkit-padding-end: 56px;
  z-index: 1;
  position: relative;
  max-width: 1126px;
  margin-inline: auto;
          padding-inline-end: 56px;
}
.point__container::after {
  position: absolute;
  top: 0;
  width: calc(100vw - 80px);
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0.78;
}
.point__container:nth-of-type(odd)::after {
  left: calc((-100vw + 1142px) / 2);
}
.point__container:nth-of-type(even)::after {
  right: calc((-100vw + 1142px) / 2);
}
.point__container + .point__container {
  -webkit-margin-before: 160px;
          margin-block-start: 160px;
}
.point__copyword {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  z-index: 1;
  position: relative;
  grid-area: copyword;
  margin-left: calc((-100vw + 1142px) / 2);
}
.point__copyword--head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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: 12px;
  -webkit-margin-after: calc(-100% + 32px);
          margin-block-end: calc(-100% + 32px);
  overflow: clip;
  translate: 0 calc(-100% + 32px);
}
.point__copyword .is-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
  display: inline;
          flex: 0 0 auto;
  box-decoration-break: clone;
  padding-right: 10px;
  padding-left: calc((100vw - 1142px) / 2);
  background-color: var(--color-white);
  -webkit-box-decoration-break: clone;
  color: var(--color-black);
  font-weight: 700;
  font-size: clamp(24px, 3.275332651vw, 32px);
  line-height: 1.625;
  letter-spacing: calc(50 / 1000 * 1em);
}
.point__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-margin-before: 48px;
  z-index: 2;
  position: relative;
          margin-block-start: 48px;
}
.point__copyword {
  z-index: 2;
  position: relative;
}
.point__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  z-index: 2;
  position: relative;
          justify-content: flex-end;
}
.point__contents--txt {
  width: 100%;
  max-width: 916px;
  font-weight: 500;
  font-size: clamp(15px, 1.8423746162vw, 18px);
  line-height: 2;
  text-align: center;
}

/* --------------------------------------------------
		MARK:Flow
-------------------------------------------------- */
.flow {
  position: relative;
  padding-block: 72px 68px;
  background: url("../img/bg-flow_pc.png") center top no-repeat #2D2D2D;
  background-size: 100% auto;
}
.flow .c-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  z-index: 1;
  grid-area: title;
  margin-bottom: 42px;
  margin-left: calc((-100vw + 1142px) / 2);
}
.flow .c-title .is-mainlabel {
  padding-right: 20px;
  padding-left: calc((100vw - 1142px) / 2 + 40px);
  padding-block: 8px;
  background-color: var(--color-white);
  color: var(--color-black);
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.flow .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.flow__container {
  z-index: 1;
  position: relative;
  max-width: 1206px;
  margin-inline: auto;
}
.flow__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow__img + .flow__img {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
}

/* --------------------------------------------------
		MARK:story
-------------------------------------------------- */
.story {
  position: relative;
  background-color: #FF3938;
}
.story .c-title {
  z-index: 2;
  position: relative;
  margin-right: calc((-100vw + 1102px) / 2);
  translate: 0 50%;
}
.story .c-title .is-mainlabel {
  padding-right: calc((100vw - 1142px) / 2 + 40px);
  padding-left: 20px;
  padding-block: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  z-index: 1;
  position: relative;
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.story .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.story__container {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "img titlegroup" "img conts";
  -ms-grid-columns: 45.58823529% 44px 42.020497803%;
  grid-template-columns: 45.58823529% 42.020497803%;
  -ms-grid-rows: auto 0 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 42px 20px 74px;
  gap: 0 44px;
  text-align: right;
}
.story__hgroup {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  position: relative;
  grid-area: titlegroup;
}
.story__title {
  position: absolute;
  top: 0;
  left: 0;
}
.story__img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  grid-area: img;
          justify-content: flex-end;
  margin-left: -20px;
  translate: 0 -42px;
}
.story__img img {
  width: 100%;
  height: auto;
}
.story__contents {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-area: conts;
  gap: 40px;
  -webkit-margin-before: 120px;
  z-index: 2;
  position: relative;
          margin-block-start: 120px;
  text-align: left;
}
.story__contents--txt {
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(15px, 1.6376663255vw, 16px);
  line-height: 2;
}
.story__contents--txt span {
  box-decoration-break: clone;
  padding: 2px 9px 2px;
  background-color: #922121;
  -webkit-box-decoration-break: clone;
}
.story__contents--last {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
.story__contents--bg {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.story__contents--bg img {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 0.4s 0.6s var(--easing-cubic1);
  transition: -webkit-filter 0.4s 0.6s var(--easing-cubic1);
  transition: filter 0.4s 0.6s var(--easing-cubic1);
  transition: filter 0.4s 0.6s var(--easing-cubic1), -webkit-filter 0.4s 0.6s var(--easing-cubic1);
}
.story__contents--bg .is-word1 {
  position: absolute;
  top: 533px;
  right: 266px;
  translate: -100% 20%;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s 0.6s, translate 1s 0.6s var(--easing-cubic1);
  transition: opacity 0.4s 0.6s, translate 1s 0.6s var(--easing-cubic1);
}
.story__contents--bg .is-word1.is-view {
  translate: 0;
  opacity: 1;
}
.story__contents--bg .is-word1.is-view img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.story__contents--bg .is-word2 {
  position: absolute;
  top: 600px;
  right: 72px;
  translate: 100% -20%;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s 0.8s, translate 1s 0.8s var(--easing-cubic1);
  transition: opacity 0.4s 0.8s, translate 1s 0.8s var(--easing-cubic1);
}
.story__contents--bg .is-word2.is-view {
  translate: 0;
  opacity: 1;
}
.story__contents--bg .is-word2.is-view img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.story__contents--bg .is-word3 {
  position: absolute;
  top: 728px;
  right: 198px;
  translate: -100% -50%;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s 1s, translate 1s 1s var(--easing-cubic1);
  transition: opacity 0.4s 1s, translate 1s 1s var(--easing-cubic1);
}
.story__contents--bg .is-word3.is-view {
  translate: 0;
  opacity: 1;
}
.story__contents--bg .is-word3.is-view img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.story__contents--bg .is-word4 {
  position: absolute;
  top: 798px;
  right: 252px;
  translate: -100% 50%;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s 0.4s, translate 1s 0.4s var(--easing-cubic1);
  transition: opacity 0.4s 0.4s, translate 1s 0.4s var(--easing-cubic1);
}
.story__contents--bg .is-word4.is-view {
  translate: 0;
  opacity: 1;
}
.story__contents--bg .is-word4.is-view img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.story__contents--bg .is-word5 {
  position: absolute;
  right: -56px;
  bottom: 115px;
  translate: -25% 0;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s, translate 1s var(--easing-cubic1);
  transition: opacity 0.4s, translate 1s var(--easing-cubic1);
}
.story__contents--bg .is-word5.is-view {
  translate: 0;
  opacity: 1;
}
.story__contents--bg .is-word5.is-view img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

/* --------------------------------------------------
		MARK:character
-------------------------------------------------- */
.character {
  position: relative;
  padding-block: 56px 40px;
  background: linear-gradient(139deg, #CECACA -24.18%, #F7F5F5 90.56%);
}
.character::after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-character-line_pc.svg") center no-repeat;
  background-size: cover;
  content: "";
  pointer-events: none;
}
.character .c-title {
  -webkit-margin-after: 32px;
  z-index: 1;
          margin-block-end: 32px;
}
.character__container {
  z-index: 1;
  position: relative;
  max-width: 1020px;
  margin-inline: auto;
}
.character__container .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  padding-inline: 6px;
}
.character__container .splide__arrow {
  position: static;
  width: auto;
  height: auto;
  gap: 8px;
  border-radius: 0;
  background: none;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.character__container .splide__arrow svg {
  display: none;
}
.character__container .splide__arrow--prev {
  -webkit-padding-end: 24px;
          padding-inline-end: 24px;
}
.character__container .splide__arrow--prev::before {
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask: url("../img/icon-arrow.svg") center no-repeat;
          mask: url("../img/icon-arrow.svg") center no-repeat;
  -webkit-mask-size: contain;
  scale: -1 1;
  background-color: var(--color-black);
          mask-size: contain;
}
.character__container .splide__arrow--prev::after {
  content: "PREV";
  color: var(--color-black);
  font-weight: 700;
  font-size: calc(14 / 10 * 1rem);
  font-family: var(--fonts-roboto);
  letter-spacing: calc(50 / 1000 * 1em);
}
.character__container .splide__arrow--next {
  -webkit-padding-start: 24px;
          padding-inline-start: 24px;
  border-left: 1px solid var(--color-black);
}
.character__container .splide__arrow--next::before {
  content: "NEXT";
  color: var(--color-black);
  font-weight: 700;
  font-size: calc(14 / 10 * 1rem);
  font-family: var(--fonts-roboto);
  letter-spacing: calc(50 / 1000 * 1em);
}
.character__container .splide__arrow--next::after {
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask: url("../img/icon-arrow.svg") center no-repeat;
          mask: url("../img/icon-arrow.svg") center no-repeat;
  -webkit-mask-size: contain;
  background-color: var(--color-black);
          mask-size: contain;
}
.character__container .splide__slide {
  position: relative;
}
.character__container .splide__slide::after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0px);
  background-color: rgba(211, 208, 208, 0.4);
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s 0.6s var(--easing-cubic1), backdrop-filter 0.4s 0.6s var(--easing-cubic1);
  transition: opacity 0.4s 0.6s var(--easing-cubic1), backdrop-filter 0.4s 0.6s var(--easing-cubic1);
}
.character__container .splide__slide.is-active::after {
  backdrop-filter: blur(4px);
  opacity: 1;
}
.character__container .splide__slide.is-active .character__charaimg {
  translate: 0 0;
  opacity: 1;
}
.character__container .splide__slide.is-active .character__contents {
  opacity: 1;
}
.character__container .splide__slide.is-code016 {
  border-bottom: 3px solid var(--color-blue);
  background: url("../img/bg-code016_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code016 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code016 .character__name .is-name {
  border-bottom: 1px solid var(--color-blue);
}
.character__container .splide__slide.is-code056 {
  border-bottom: 3px solid var(--color-blue);
  background: url("../img/bg-code056_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code056 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code056 .character__name .is-name {
  border-bottom: 1px solid var(--color-blue);
}
.character__container .splide__slide.is-code666 {
  border-bottom: 3px solid var(--color-blue);
  background: url("../img/bg-code666_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code666 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code666 .character__name .is-name {
  border-bottom: 1px solid var(--color-blue);
}
.character__container .splide__slide.is-code326 {
  border-bottom: 3px solid var(--color-blue);
  background: url("../img/bg-code326_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code326 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code326 .character__name .is-name {
  border-bottom: 1px solid var(--color-blue);
}
.character__container .splide__slide.is-code214 {
  border-bottom: 3px solid var(--color-blue);
  background: url("../img/bg-code214_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code214 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code214 .character__name .is-name {
  border-bottom: 1px solid var(--color-blue);
}
.character__container .splide__slide.is-code002 {
  border-bottom: 3px solid var(--color-red);
  background: url("../img/bg-code002_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code002 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code002 .character__name .is-name {
  border-bottom: 1px solid var(--color-red);
}
.character__container .splide__slide.is-code015 {
  border-bottom: 3px solid var(--color-red);
  background: url("../img/bg-code015_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code015 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code015 .character__name .is-name {
  border-bottom: 1px solid var(--color-red);
}
.character__container .splide__slide.is-code390 {
  border-bottom: 3px solid var(--color-red);
  background: url("../img/bg-code390_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code390 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code390 .character__name .is-name {
  border-bottom: 1px solid var(--color-red);
}
.character__container .splide__slide.is-code556 {
  border-bottom: 3px solid var(--color-red);
  background: url("../img/bg-code556_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code556 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code556 .character__name .is-name {
  border-bottom: 1px solid var(--color-red);
}
.character__container .splide__slide.is-code196 {
  border-bottom: 3px solid var(--color-red);
  background: url("../img/bg-code196_pc.png") center no-repeat;
  background-size: cover;
}
.character__container .splide__slide.is-code196 .character__contents {
  max-width: 504px;
}
.character__container .splide__slide.is-code196 .character__name .is-name {
  border-bottom: 1px solid var(--color-red);
}
.character__charaimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  translate: 0 40px;
  opacity: 0;
  -webkit-transition: opacity 0.4s 1.4s var(--easing-cubic1), translate 0.4s 1.4s var(--easing-cubic1);
  z-index: 2;
  position: relative;
  transition: opacity 0.4s 1.4s var(--easing-cubic1), translate 0.4s 1.4s var(--easing-cubic1);
}
.character__contents {
  z-index: 2;
  position: absolute;
  bottom: 56px;
  left: 80px;
  opacity: 0;
  -webkit-transition: opacity 0.4s 1.6s var(--easing-cubic1), translate 0.4s 1.6s var(--easing-cubic1);
  transition: opacity 0.4s 1.6s var(--easing-cubic1), translate 0.4s 1.6s var(--easing-cubic1);
}
.character__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.character__name .is-code {
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(13px, 1.6376663255vw, 16px);
  line-height: 1;
  font-family: var(--fonts-roboto);
}
.character__name .is-code span {
  display: inline-block;
  padding: 2px 10px 1px;
  background-color: var(--color-black);
}
.character__name .is-name {
  display: inline-block;
  padding: 4px 24px 8px;
  background-color: var(--color-white);
  font-weight: 700;
  font-size: clamp(28px, 4.0941658137vw, 40px);
  line-height: 1;
  text-align: center;
}
.character__text {
  font-weight: 500;
  font-size: clamp(15px, 1.6376663255vw, 16px);
  line-height: 2;
  -webkit-margin-before: 18px;
          margin-block-start: 18px;
  letter-spacing: calc(50 / 1000 * 1em);
}

/* --------------------------------------------------
		MARK:franxx
-------------------------------------------------- */
.franxx {
  position: relative;
  padding-block: 56px 40px;
  background: linear-gradient(139deg, #9A9A9A -24.18%, #3C3C3C 90.56%);
}
.franxx::after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-character-line_pc.svg") center no-repeat;
  background-size: cover;
  content: "";
  pointer-events: none;
}
.franxx .c-title {
  -webkit-margin-after: 32px;
  z-index: 1;
          margin-block-end: 32px;
}
.franxx__container {
  z-index: 1;
  position: relative;
  max-width: 1020px;
  margin-inline: auto;
}
.franxx__container .splide__track {
  overflow: visible;
}
.franxx__container .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  padding-inline: 6px;
}
.franxx__container .splide__arrow {
  position: static;
  width: auto;
  height: auto;
  gap: 8px;
  border-radius: 0;
  background: none;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.franxx__container .splide__arrow svg {
  display: none;
}
.franxx__container .splide__arrow--prev {
  -webkit-padding-end: 24px;
          padding-inline-end: 24px;
}
.franxx__container .splide__arrow--prev::before {
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask: url("../img/icon-arrow.svg") center no-repeat;
          mask: url("../img/icon-arrow.svg") center no-repeat;
  -webkit-mask-size: contain;
  scale: -1 1;
  background-color: var(--color-white);
          mask-size: contain;
}
.franxx__container .splide__arrow--prev::after {
  content: "PREV";
  color: var(--color-white);
  font-weight: 700;
  font-size: calc(14 / 10 * 1rem);
  font-family: var(--fonts-roboto);
  letter-spacing: calc(50 / 1000 * 1em);
}
.franxx__container .splide__arrow--next {
  -webkit-padding-start: 24px;
          padding-inline-start: 24px;
  border-left: 1px solid var(--color-white);
}
.franxx__container .splide__arrow--next::before {
  content: "NEXT";
  color: var(--color-white);
  font-weight: 700;
  font-size: calc(14 / 10 * 1rem);
  font-family: var(--fonts-roboto);
  letter-spacing: calc(50 / 1000 * 1em);
}
.franxx__container .splide__arrow--next::after {
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask: url("../img/icon-arrow.svg") center no-repeat;
          mask: url("../img/icon-arrow.svg") center no-repeat;
  -webkit-mask-size: contain;
  background-color: var(--color-white);
          mask-size: contain;
}
.franxx__container .splide__slide {
  position: relative;
  height: 560px;
  border-bottom: 2px solid var(--color-white);
}
.franxx__container .splide__slide::after {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s 0.6s var(--easing-cubic1), backdrop-filter 0.4s 0.6s var(--easing-cubic1);
  transition: opacity 0.4s 0.6s var(--easing-cubic1), backdrop-filter 0.4s 0.6s var(--easing-cubic1);
}
.franxx__container .splide__slide.is-active::after {
  backdrop-filter: blur(4px);
  opacity: 1;
}
.franxx__container .splide__slide.is-active .franxx__charaimg {
  translate: 0 0;
  opacity: 1;
}
.franxx__container .splide__slide.is-active .franxx__contents {
  opacity: 1;
}
.franxx__container .splide__slide.is-strelitzia {
  background: url("../img/bg-strelitzia_pc.png") center no-repeat;
  background-size: cover;
}
.franxx__container .splide__slide.is-strelitzia .franxx__contents {
  max-width: 304px;
}
.franxx__container .splide__slide.is-delphinium {
  background: url("../img/bg-delphinium_pc.png") center no-repeat;
  background-size: cover;
}
.franxx__container .splide__slide.is-delphinium .franxx__contents {
  max-width: 340px;
}
.franxx__container .splide__slide.is-argentia {
  background: url("../img/bg-argentia_pc.png") center no-repeat;
  background-size: cover;
}
.franxx__container .splide__slide.is-argentia .franxx__contents {
  max-width: 404px;
}
.franxx__container .splide__slide.is-genista {
  background: url("../img/bg-genista_pc.png") center no-repeat;
  background-size: cover;
}
.franxx__container .splide__slide.is-genista .franxx__contents {
  max-width: 435px;
}
.franxx__container .splide__slide.is-chlorophylls {
  background: url("../img/bg-chlorophylls_pc.png") center no-repeat;
  background-size: cover;
}
.franxx__container .splide__slide.is-chlorophylls .franxx__contents {
  max-width: 505px;
}
.franxx__charaimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
          justify-content: center;
  translate: 0 40px;
  opacity: 0;
  -webkit-transition: opacity 0.4s 1.4s var(--easing-cubic1), translate 0.4s 1.4s var(--easing-cubic1);
  transition: opacity 0.4s 1.4s var(--easing-cubic1), translate 0.4s 1.4s var(--easing-cubic1);
}
.franxx__contents {
  z-index: 2;
  position: absolute;
  bottom: 56px;
  left: 80px;
  opacity: 0;
  -webkit-transition: opacity 0.4s 1.6s var(--easing-cubic1), translate 0.4s 1.6s var(--easing-cubic1);
  transition: opacity 0.4s 1.6s var(--easing-cubic1), translate 0.4s 1.6s var(--easing-cubic1);
}
.franxx__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.franxx__name .is-code {
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(13px, 1.6376663255vw, 16px);
  line-height: 1;
  font-family: var(--fonts-roboto);
}
.franxx__name .is-code span {
  display: inline-block;
  padding: 2px 10px 1px;
  background-color: var(--color-black);
}
.franxx__name .is-name {
  display: inline-block;
  padding: 4px 24px 8px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(28px, 4.0941658137vw, 40px);
  line-height: 1;
  text-align: center;
}
.franxx__text {
  font-weight: 500;
  font-size: clamp(15px, 1.6376663255vw, 16px);
  line-height: 2;
  -webkit-margin-before: 18px;
          margin-block-start: 18px;
  letter-spacing: calc(50 / 1000 * 1em);
}

/* --------------------------------------------------
		MARK:MUSIC
-------------------------------------------------- */
.music {
  position: relative;
  min-height: 840px;
  padding-block: 87px 64px;
  background: url("../img/bg-music_pc.png") top center no-repeat #2D2D2D;
  background-size: cover;
}
.music::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  content: "";
}
.music .c-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  margin-left: calc((-100vw + 1142px) / 2);
}
.music .c-title .is-mainlabel {
  padding-right: 64px;
  padding-left: calc((100vw - 1142px) / 2 + 40px);
  padding-block: 8px;
  background-color: var(--color-white);
  color: var(--color-black);
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.music .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.music__container {
  max-width: 1126px;
  margin-inline: auto;
}
.music__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.music__contents {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "op soundtrack" "ed ed";
  -ms-grid-columns: 280px 20px 280px;
  grid-template-columns: 280px 280px;
  -ms-grid-rows: auto 20px 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-padding-before: 130px;
  z-index: 1;
  position: relative;
          padding-block-start: 130px;
}
.music__block.is-op {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: op;
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}
.music__block.is-op .is-songtitle {
  font-size: clamp(20px, 3.0706243603vw, 30px);
}
.music__block.is-soundtrack {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: soundtrack;
  margin-top: auto;
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.music__block.is-soundtrack .music__item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}
.music__block.is-ed {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: ed;
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
.music__block.is-ed .music__block--song {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  padding-inline: clamp(8px, 2.0470829069vw, 20px);
  padding-block: 18px;
  gap: 40px;
}
.music__block.is-ed .music__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px 64px;
  -ms-grid-columns: (auto)[3];
  grid-template-columns: repeat(3, auto);
}
.music__block.is-ed .music__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-inline: 0;
}
.music__block--label {
  display: inline-block;
  padding: 4px 8px 5px;
  background-color: #E12325;
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(14px, 1.8423746162vw, 18px);
  line-height: 1;
  vertical-align: bottom;
}
.music__block--song {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 92px;
  padding: 18px 20px;
  gap: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#2c2c2c), to(rgba(114, 114, 114, 0.88)));
  background: linear-gradient(90deg, #2c2c2c 0%, rgba(114, 114, 114, 0.88) 100%);
}
.music__block--singer {
  padding: 6px clamp(8px, 2.0470829069vw, 20px);
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: 500;
  font-size: clamp(16px, 1.8423746162vw, 18px);
  line-height: 1;
  letter-spacing: calc(-14 / 1000 * 1em);
}
.music__block--discimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  gap: 8px;
}
.music__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 16px;
}
.music__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: -10px;
  gap: 6px;
}
.music__item .is-songtitle {
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(20px, 3.0706243603vw, 30px);
  line-height: 1;
  letter-spacing: calc(50 / 1000 * 1em);
}
.music__item .is-songsub {
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(16px, 2.2517911975vw, 22px);
  line-height: 1;
  letter-spacing: calc(50 / 1000 * 1em);
}

/* --------------------------------------------------
		MARK:SPEC
-------------------------------------------------- */
.spec {
  position: relative;
  padding-block: 80px;
  background: url("../img/bg-spec_pc.png") top center no-repeat #00A9EB;
  background-size: contain;
}
.spec .c-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  grid-area: title;
  margin-left: calc((-100vw + 1142px) / 2);
}
.spec .c-title .is-mainlabel {
  padding-right: 20px;
  padding-left: calc((100vw - 1142px) / 2 + 40px);
  padding-block: 8px;
  background-color: var(--color-black);
  color: var(--color-white);
  opacity: 0;
  -webkit-transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
  transition: opacity 0.5s var(--easing-cubic1), translate 0.3s var(--easing-cubic1);
}
.spec .c-title .is-mainlabel.is-view {
  translate: 0 0;
  opacity: 1;
}
.spec__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 652px;
  grid-template-columns: 1fr 652px;
  -ms-grid-rows: auto 1fr;
  position: relative;
  grid-template-rows: auto 1fr;
  max-width: 1126px;
  margin-inline: auto;
  gap: 0 40px;
}
.spec__case {
  -webkit-padding-before: 160px;
  z-index: 1;
  position: relative;
          padding-block-start: 160px;
}
.spec__case--img {
  position: sticky;
  top: 120px;
  left: 0;
}
.spec__case--img img {
  display: block;
  margin-left: auto;
  -webkit-box-shadow: 28px 17px 55px rgba(0, 58, 88, 0.74);
          box-shadow: 28px 17px 55px rgba(0, 58, 88, 0.74);
}
.spec__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-padding-before: 160px;
          padding-block-start: 160px;
}
.spec__block--contents {
  position: relative;
  padding: 20px;
  border-radius: 4px;
  backdrop-filter: blur(12px);
  background: rgba(26, 45, 88, 0.75);
}
.spec__block--contents:nth-of-type(1) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 24px 1fr;
  grid-template-rows: auto 1fr;
      grid-template-areas: "number effective" "smallrole smallrole";
  gap: 24px 28px;
}
.spec__block--item.is-number {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: number;
}
.spec__block--item.is-effective {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: effective;
}
.spec__block--item.is-smallrole {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: smallrole;
}
.spec__block--item.is-rarerole {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
.spec__block--img img {
  width: 100%;
  height: auto;
}
.spec__subtitle {
  padding: 6px 10px;
  border-radius: 4px 4px 0px 0px;
  background: #000;
  text-align: center;
}
.spec__subtitle .is-label {
  color: var(--color-white);
  font-weight: 700;
  font-size: calc(18 / 10 * 1rem);
  line-height: 1;
}
.spec__subtitle .is-stxt {
  display: inline-block;
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
  font-weight: 700;
  font-size: calc(14 / 10 * 1rem);
}

/* --------------------------------------------------
		MARK:BANNER
-------------------------------------------------- */
.banner {
  position: relative;
  padding: 30px 20px;
  background: #1A4361;
}
.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__link img {
  -webkit-transition: opacity 0.3s var(--easing-cubic1);
  transition: opacity 0.3s var(--easing-cubic1);
}
.banner__link:hover img {
  opacity: 0.5;
}

/* --------------------------------------------------
		MARK:モーダル
-------------------------------------------------- */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  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;
  z-index: 40;
  position: fixed;
  top: 0;
  left: 0;
          justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 60px 40px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-overflow-scrolling: touch;
}
[aria-hidden=false] .modal__overlay {
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}
[aria-hidden=true] .modal__overlay {
  -webkit-animation: fadeOut 0.3s ease-out;
          animation: fadeOut 0.3s ease-out;
}
.modal__close {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  margin-left: auto;
  padding: 0;
  translate: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: opacity 0.3s ease-out, rotate 0.3s ease-out;
  position: relative;
  transition: opacity 0.3s ease-out, rotate 0.3s ease-out;
}
.modal__close::before, .modal__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  translate: -50% -50%;
  border-radius: 10px;
  background-color: var(--color-white);
  content: "";
}
.modal__close::before {
  rotate: 45deg;
}
.modal__close::after {
  rotate: -45deg;
}
.modal__container {
  width: 100%;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  translate: 0 -70px;
}

/* --------------------------------------------------
		MARK:コンテンツ表示アニメーション
-------------------------------------------------- */
[data-fadein] {
  opacity: 0;
}
[data-fadein].is-view {
  -webkit-animation: fadeIn 0.6s var(--easing-cubic1) forwards;
          animation: fadeIn 0.6s var(--easing-cubic1) forwards;
}

[data-slideup] {
  opacity: 0;
}
[data-slideup].is-view {
  -webkit-animation: slideUp 0.6s var(--easing-cubic1) forwards;
          animation: slideUp 0.6s var(--easing-cubic1) forwards;
}

[data-slidedown] {
  opacity: 0;
}
[data-slidedown].is-view {
  -webkit-animation: slideDown 0.6s var(--easing-cubic1) forwards;
          animation: slideDown 0.6s var(--easing-cubic1) forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 1382px){
  .story .c-title {
    margin-right: -20px;
  }
  .story .c-title .is-mainlabel {
    padding-right: 52px;
  }
  .story__container {
    -ms-grid-columns: 45.58823529% 1fr;
    grid-template-columns: 45.58823529% 1fr;
  }
}
@media screen and (max-width: 1366px){
  .story__contents--bg .is-word1 {
    top: 39.019033675vw;
    right: 19.4729136164vw;
  }
  .story__contents--bg .is-word2 {
    top: 43.9238653001vw;
    right: 5.270863836vw;
  }
  .story__contents--bg .is-word3 {
    top: 53.2942898975vw;
    right: 14.494875549vw;
  }
  .story__contents--bg .is-word4 {
    top: 58.4187408492vw;
    right: 18.4480234261vw;
  }
  .story__contents--bg .is-word5 {
    right: -56px;
    bottom: 8.4187408492vw;
  }
}
@media screen and (max-width: 1280px){
  .point__container:nth-of-type(odd)::after {
    left: -20px;
    width: calc(100vw - 40px);
  }
  .point__container:nth-of-type(even)::after {
    right: -20px;
    width: calc(100vw - 26px);
  }
}
@media screen and (max-width: 1180px){
  .concept .c-title {
    margin-left: -20px;
  }
  .concept .c-title .is-mainlabel {
    padding-left: 52px;
  }
  .concept__copyword {
    margin-left: -20px;
  }
  .concept__copyword .is-label {
    padding-left: 20px;
  }
  .point .c-title {
    margin-left: -20px;
  }
  .point .c-title .is-mainlabel {
    padding-left: 52px;
  }
  .point__copyword {
    margin-left: -20px;
  }
  .point__copyword .is-label {
    padding-left: 20px;
  }
  .flow .c-title {
    margin-left: -20px;
  }
  .flow .c-title .is-mainlabel {
    padding-left: 20px;
  }
  .music .c-title {
    margin-left: -20px;
  }
  .music .c-title .is-mainlabel {
    padding-right: 32px;
    padding-left: 20px;
  }
  .music__img {
    top: 40px;
    bottom: auto;
  }
  .spec .c-title {
    margin-left: -20px;
  }
  .spec .c-title .is-mainlabel {
    padding-left: 20px;
  }
}
@media screen and (max-width: 977px){
  .complete-limit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .complete-limit__text {
    font-size: clamp(16px, 2.8659160696vw, 28px);
  }
  .l-footer .complete-limit__text {
    font-size: clamp(22px, 3.1729785056vw, 31px);
  }
  .c-title .is-mainlabel {
    font-size: calc(32 / 10 * 1rem);
  }
  .concept {
    padding-block: 60px;
    background: url("../img/img-concept_sp.png") top center no-repeat #ECECEC;
    background-size: 100% auto;
  }
  .concept::after {
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/img-concept-xx.svg") bottom center no-repeat;
    background-size: 100% calc(100% - 572px);
    content: "";
  }
  .concept__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .concept__case {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .concept__copyword--head {
    gap: 8px;
  }
  .concept__copyword .is-label {
    line-height: 1.75;
  }
  .point {
    padding-block: 60px;
  }
  .point::after {
    background: url("../img/bg-point-pattern_sp.svg") right top repeat-y;
  }
  .point .c-title .is-number {
    top: 56px;
    max-width: 56px;
  }
  .point .c-title {
    margin-left: -40px;
  }
  .point .c-title .is-mainlabel {
    padding-left: 40px;
  }
  .point__container {
    padding-block: 20px 56px;
  }
  .point__container:nth-of-type(odd) {
    padding-inline: 20px 0;
  }
  .point__container:nth-of-type(odd)::after {
    width: calc(100vw - 20px);
  }
  .point__container:nth-of-type(odd) .point__contents--txt {
    -webkit-padding-end: 20px;
            padding-inline-end: 20px;
  }
  .point__container:nth-of-type(even) {
    padding-inline: 0 20px;
  }
  .point__container:nth-of-type(even)::after {
    right: -20px;
    width: calc(100vw - 20px);
  }
  .point__container:nth-of-type(even) .point__contents--txt {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
  .point__container + .point__container {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
  }
  .point__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .point__copyword--head {
    gap: 8px;
    translate: 0 -40px;
    -webkit-margin-end: -20px;
            margin-inline-end: -20px;
  }
  .point__copyword .is-label {
    line-height: 1.75;
  }
  .point__thumbnail {
    display: block;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .point__thumbnail img {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .point__contents--txt {
    text-align: left;
    -webkit-margin-before: 4px;
            margin-block-start: 4px;
  }
  .flow {
    padding-block: 40px 56px;
    background: url("../img/bg-flow_sp.png") center top no-repeat #2D2D2D;
    background-size: 100% auto;
  }
  .story .c-title {
    margin-right: 0;
    margin-left: -20px;
    translate: 0 0;
  }
  .story .c-title .is-mainlabel {
    padding-right: 20px;
    padding-left: 20px;
  }
  .story__container {
        grid-template-areas: "titlegroup" "img" "conts";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
    text-align: left;
    -webkit-padding-after: 48px;
            padding-block-end: 48px;
  }
  .story__hgroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .story__title {
    position: static;
    translate: 18px 0;
  }
  .story__title img {
    max-width: 180px;
  }
  .story__img {
    display: block;
    -webkit-margin-before: 10px;
    margin-right: -20px;
            margin-block-start: 10px;
    translate: 0 0;
  }
  .story__hgroup {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .story__img {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .story__contents {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .story__contents {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
  .story__contents--bg .is-word1 {
    top: 173.1832139202vw;
    right: 38.3828045036vw;
  }
  .story__contents--bg .is-word2 {
    top: 197.7482088025vw;
    right: 28.8638689867vw;
  }
  .story__contents--bg .is-word3 {
    top: 188.5363357216vw;
    right: 16.5813715455vw;
  }
  .story__contents--bg .is-word4 {
    top: 226.4073694985vw;
    right: 13.5107471853vw;
  }
  .story__contents--bg .is-word5 {
    right: auto;
    bottom: 11.054247697vw;
    left: 5.1177072671vw;
  }
  .character {
    padding-inline: 0;
  }
  .character::after {
    background: url("../img/bg-character-line_sp.svg") center no-repeat;
    background-size: cover;
  }
  .character {
    padding-block: 42px 40px;
  }
  .character .c-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 20px;
  }
  .character .c-title img {
    max-width: 320px;
  }
  .character__container .splide__arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .character__container .splide__slide.is-code016 {
    background: url("../img/bg-code016_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code056 {
    background: url("../img/bg-code056_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code666 {
    background: url("../img/bg-code666_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code326 {
    background: url("../img/bg-code326_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code214 {
    background: url("../img/bg-code214_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code002 {
    background: url("../img/bg-code002_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code015 {
    background: url("../img/bg-code015_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code390 {
    background: url("../img/bg-code390_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code556 {
    background: url("../img/bg-code556_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__container .splide__slide.is-code196 {
    background: url("../img/bg-code196_sp.png") center no-repeat;
    background-size: cover;
  }
  .character__contents {
    right: 24px;
    bottom: 20px;
    left: 24px;
  }
  .character__name .is-code span {
    padding-inline: 3px;
  }
  .character__name .is-name {
    padding-block: 3px 6px;
  }
  .franxx {
    padding-inline: 0;
  }
  .franxx {
    padding-block: 42px 40px;
  }
  .franxx .c-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-inline: 20px;
  }
  .franxx .c-title img {
    max-width: 226px;
  }
  .franxx__container .splide__arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .franxx__container .splide__slide {
    height: auto;
  }
  .franxx__container .splide__slide::after {
    background-color: rgba(255, 255, 255, 0.45);
  }
  .franxx__container .splide__slide.is-strelitzia {
    background: url("../img/bg-strelitzia_sp.png") center no-repeat;
    background-size: cover;
  }
  .franxx__container .splide__slide.is-delphinium {
    background: url("../img/bg-delphinium_sp.png") center no-repeat;
    background-size: cover;
  }
  .franxx__container .splide__slide.is-argentia {
    background: url("../img/bg-argentia_sp.png") center no-repeat;
    background-size: cover;
  }
  .franxx__container .splide__slide.is-genista {
    background: url("../img/bg-genista_sp.png") center no-repeat;
    background-size: cover;
  }
  .franxx__container .splide__slide.is-chlorophylls {
    background: url("../img/bg-chlorophylls_sp.png") center no-repeat;
    background-size: cover;
  }
  .franxx__charaimg {
    position: relative;
  }
  .franxx__contents {
    right: 24px;
    bottom: 20px;
    left: 24px;
  }
  .franxx__name .is-code span {
    padding-inline: 3px;
  }
  .franxx__name .is-name {
    padding-block: 3px 6px;
  }
  .music {
    padding-block: 40px;
    background: url("../img/bg-music_sp.png") top center no-repeat #2D2D2D;
    background-size: contain;
  }
  .music__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    position: static;
            justify-content: center;
    translate: 0 0;
  }
  .music__contents {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-margin-after: -166px;
        grid-template-areas: "op" "ed" "soundtrack";
            margin-block-end: -166px;
    translate: 0 -166px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .music__block.is-op img {
    width: 100%;
  }
  .music__block.is-soundtrack .music__item {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .music__block.is-op {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .music__block.is-soundtrack {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .music__block.is-ed {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .music__block.is-ed .music__block--song {
    padding-inline: 12px;
    padding-block: 14px;
    gap: 20px;
  }
  .music__block.is-ed .music__block--song img {
    width: 100%;
    max-width: 132px;
  }
  .music__block.is-ed .music__list {
    gap: 12px 24px;
  }
  .music__block.is-ed .music__block--singer {
    padding-inline: 8px;
  }
  .music__block--label {
    padding-inline: 12px;
  }
  .music__block--song {
    min-height: 53px;
    padding-inline: 12px;
    padding-block: 14px;
  }
  .music__block--singer {
    padding-inline: 12px;
  }
  .music__block--singer .is-name {
    display: inline-block;
    font-size: calc(14 / 10 * 1rem);
    line-height: 1.4285714286;
  }
  .music__item {
    margin-inline: 0;
  }
  .spec {
    padding-block: 40px;
    background: url("../img/bg-spec_sp.png") top center no-repeat #00A9EB;
    background-size: contain;
  }
  .spec__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .spec__case {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-padding-before: 80px;
            padding-block-start: 80px;
  }
  .spec__case--img {
    position: static;
    -webkit-margin-after: -24px;
            margin-block-end: -24px;
  }
  .spec__block {
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
  .spec__block--contents:nth-of-type(1) {
    -webkit-padding-before: 40px;
            padding-block-start: 40px;
  }
}
@media screen and (max-width: 767px){
  .complete-limit {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .l-footer .complete-limit {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .separate {
    height: 157px;
  }
  .point__contents--txt {
    line-height: 2.1333333333;
    text-align: left;
  }
  .flow__img + .flow__img {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
  .story__contents {
    gap: 32px;
  }
  .story__contents--txt {
    line-height: 1.8666666667;
  }
  .character__text {
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
    line-height: 1.8666666667;
  }
  .franxx__text {
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
    line-height: 1.8666666667;
  }
  .spec__case--img img {
    -webkit-box-shadow: 12px 8px 40px rgba(0, 58, 88, 0.74);
            box-shadow: 12px 8px 40px rgba(0, 58, 88, 0.74);
  }
  .spec__block--contents:nth-of-type(1) {
        grid-template-areas: "number" "effective" "smallrole";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .spec__block--item.is-number {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .spec__block--item.is-effective {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .spec__block--item.is-smallrole {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media screen and (max-width: 576px){
  .flow {
    background-position: top center;
  }
  .flow .c-title {
    z-index: 2;
    position: relative;
    margin-bottom: 24px;
  }
  .story__contents--bg .is-word1 {
    top: 211.7333333333vw;
    right: 22.6666666667vw;
  }
  .story__contents--bg .is-word2 {
    top: 304vw;
    right: 13.8666666667vw;
  }
  .story__contents--bg .is-word3 {
    top: 263.2vw;
    right: 5.8666666667vw;
  }
  .story__contents--bg .is-word4 {
    top: 412.2666666667vw;
    right: 3.2vw;
  }
  .story__contents--bg .is-word5 {
    bottom: 28vw;
    left: 12.8vw;
  }
  .character__contents {
    right: 16px;
    left: 16px;
  }
  .character__text {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
  }
  .franxx__contents {
    right: 16px;
    left: 16px;
  }
  .franxx__text {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
  }
  .music .c-title {
    z-index: 2;
    position: relative;
  }
  .music .c-title .is-mainlabel {
    padding-right: 10px;
  }
  .music__block.is-op .music__block--discimg {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.87fr;
    grid-template-columns: 1fr 0.87fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  .music__block.is-ed .music__block--song {
    gap: 12px;
    -ms-grid-columns: 126px 1fr;
    grid-template-columns: 126px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .music__block.is-ed .music__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .music__block--singer {
    line-height: 1.5;
  }
  .modal__overlay {
    padding: 40px 20px;
  }
  .modal__close {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .modal__container {
    translate: 0 -50px;
  }
}
@media screen and (max-width: 532px){
  .music__block.is-op .music__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .music__block.is-op .music__item .is-songsub {
    translate: -9px 0;
  }
}
@media screen and (max-width: 428px){
  .point__copyword .is-label {
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
}
@media screen and (max-width: 360px){
  .complete-limit {
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-section {
    padding-right: 10px;
    padding-left: 10px;
  }
  .concept .c-title {
    margin-left: -10px;
  }
  .concept .c-title .is-mainlabel {
    padding-left: 20px;
  }
  .point .c-title {
    margin-left: -30px;
  }
  .point .c-title .is-mainlabel {
    padding-left: 30px;
  }
  .point__container:nth-of-type(odd)::after {
    left: -10px;
  }
  .point__container:nth-of-type(even)::after {
    right: -5px;
  }
  .point__container:nth-of-type(even) .c-title {
    margin-left: -20px;
  }
  .point__copyword .is-label {
    font-size: 21px;
  }
  .point__contents--txt {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .flow .c-title {
    margin-left: -20px;
  }
  .flow .c-title .is-mainlabel {
    padding-left: 20px;
  }
  .story__container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .story__img {
    margin-right: -10px;
    margin-left: -10px;
  }
  .character {
    padding-inline: 0;
  }
  .character .c-title {
    padding-inline: 10px;
  }
  .franxx {
    padding-inline: 0;
  }
  .franxx .c-title {
    padding-inline: 10px;
  }
  .music .c-title {
    margin-left: -20px;
  }
  .music .c-title .is-mainlabel {
    padding-left: 20px;
  }
  .music__block.is-ed .music__block--song {
    gap: 10px;
    -ms-grid-columns: 96px 1fr;
    grid-template-columns: 96px 1fr;
  }
  .spec .c-title {
    margin-left: -20px;
  }
  .spec .c-title .is-mainlabel {
    padding-left: 20px;
  }
}
@media (any-hover: hover){
  .modal__close:hover {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=style.css.map */
