@charset "UTF-8";
/*
**************************************************************************
*	fields ULTRAMAN style.css
**************************************************************************/
:root {
  --fonts-notosansjp: "Noto Sans JP", sans-serif;
  --fonts-notoserifjp: "Noto Serif JP", serif;
  --color-black: #000;
  --color-white: #fff;
  --color-gray1: #191919;
  --color-gray2: #292929;
  --color-gray3: #707070;
  --color-gray4: #9B9B9B;
  --color-gray5: #EDEDED;
  --color-base: var(--color-gray5);
  --color-footer: var(--color-gray1);
  --color-complete1: var(--color-gray2);
  --color-complete2: var(--color-gray3);
  --text-shadows1: 0 0 5px rgba(0, 0, 0, 0.8);
  --text-shadows2: 0 0 14px rgba(0, 0, 0, 0.8);
  --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;
  max-width: 1166px;
  margin-inline: auto;
  padding: 58px 20px 48px;
  gap: 8px 24px;
}
.complete-limit__text {
  color: var(--color-white);
  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-white);
  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;
}

/* --------------------------------------------------
	MARK:Movie
-------------------------------------------------- */
.movie {
  z-index: 1;
  position: relative;
  padding-inline: 20px;
  padding-block: 126px 86px;
  background: url("../img/bg-movie_pc.jpg") center top no-repeat;
  background-size: cover;
}
.movie__block {
  max-width: 840px;
  margin-inline: auto;
}
.movie__block + .movie__block {
  -webkit-margin-before: 64px;
          margin-block-start: 64px;
}
.movie__block--thumbnail {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: opacity 0.6s var(--easing-cubic1);
  transition: opacity 0.6s var(--easing-cubic1);
}
.movie__block--thumbnail img {
  pointer-events: none;
}
.movie__block--thumbnail:hover {
  opacity: 0.8;
}
.movie__block--embed {
  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;
  gap: 50px;
}
.movie__block--trigger {
  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;
  padding: 20px 100px;
  gap: 20px;
  border: 1px solid var(--color-white);
  background: none;
  cursor: pointer;
  -webkit-transition: opacity 0.6s var(--easing-cubic1);
  transition: opacity 0.6s var(--easing-cubic1);
}
.movie__block--trigger picture {
  pointer-events: none;
}
.movie__block--trigger:hover {
  opacity: 0.8;
}
.movie__block--trigger::before {
  display: block;
  aspect-ratio: 1/1;
  width: 40px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background: url("../img/icon-play.svg") center no-repeat;
  content: "";
}

/* --------------------------------------------------
	MARK:Concept
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:Point
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:Flow
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:story
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:About
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:character
-------------------------------------------------- */
/* --------------------------------------------------
		MARK:SPEC
-------------------------------------------------- */
/* --------------------------------------------------
		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;
}
.modal__embed {
  position: relative;
  aspect-ratio: 840/475;
}
.modal__embed--inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: all;
}
.modal__embed--inner > * {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
		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: 977px){
  .complete-limit {
    padding-top: 24px;
    padding-bottom: 24px;
    -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);
  }
  .movie {
    padding-block: 56px 40px;
    background: url("../img/bg-movie_sp.jpg") center top no-repeat;
    background-size: cover;
  }
  .movie__block + .movie__block {
    gap: 40px;
  }
  .movie__block--embed {
    gap: 24px;
  }
  .movie__block--trigger {
    padding: 10px 60px;
    gap: 10px;
  }
  .movie__block--trigger::before {
    width: 26px;
  }
}
@media screen and (max-width: 767px){
  .complete-limit {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .l-footer .complete-limit {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 576px){
  .modal__overlay {
    padding: 40px 20px;
  }
  .modal__close {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .modal__container {
    translate: 0 -50px;
  }
}
@media screen and (max-width: 360px){
  .complete-limit {
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-section {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (any-hover: hover){
  .modal__close:hover {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=style.css.map */
