@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ========================================
サイトごとの全体設定
======================================== */
/* 基本のフォント設定 */
body {
  color: #ffffff;
  font-family: YakuHanMP, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "游明朝 Medium", "Yu Mincho Medium", "游明朝", "Yu Mincho", YuMincho, serif;
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: #000000;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}

.l-wrapper {
  position: relative;
  z-index: 2;
}

.l-bg {
  position: fixed;
  inset: 0 0 auto;
  height: max(var(--section-bg-h, 0), 100vh);
  height: max(var(--section-bg-h, 0), 100dvh);
  transform: translateY(var(--section-bg-y, 0));
  will-change: transform;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-bg iframe {
  display: block;
  width: auto;
  height: auto;
  min-height: max(var(--section-bg-h, 0), 100vh);
  min-height: max(var(--section-bg-h, 0), 100dvh);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.l-bg::before {
  content: "";
}

.l-bg-filter {
  position: fixed;
  inset: 0 0 auto;
  height: 100vh;
  height: 100dvh;
  background-image: linear-gradient(to bottom, #000000 1px, transparent 1px);
  background-position: center top;
  background-size: 100% 2px;
  background-repeat: repeat;
  background-color: rgba(0, 0, 0, 0.7);
}

/* リンク */
a {
  color: #1f8cd3;
  transition: 0.5s;
}

/* 訪問済みリンクカラー */
a:visited {
  color: #643f77;
}

/* ホバー効果 */
a:hover {
  opacity: 0.6;
}

/* 選択時カラー */
::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
}

/* ========================================
foundation
リセットのためのCSSの追加
======================================== */
/* 1rem = 10pxにする */
html {
  font-size: clamp(50%, 1vw, 62.5%);
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 0.5vw;
  }
}

body {
  font-variant-ligatures: none;
  word-break: break-all;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.4em;
  line-height: 1.2;
}

h2 {
  font-size: 1.87em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.12em;
}

h5, h6 {
  font-size: 1em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: none;
}

table {
  border-collapse: collapse;
}

tr {
  vertical-align: top;
}

th {
  text-align: left;
  padding: 0;
}

td {
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
}

ol {
  padding-left: 1.2em;
}

p,
ul,
ol,
dl {
  margin: 0 0 1em;
}

small {
  font-size: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  outline: 0;
}

figure {
  margin: 0;
}

/* リマーケティングタグの隙間回避 */
iframe[name=google_conversion_frame] {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* shutter 
========================================== */
.shutter {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  overflow: hidden;
  background: #141414;
  opacity: 1;
  transition: 0.2s;
}
.shutter.open {
  opacity: 0;
  pointer-events: none;
}
.shutter.close {
  opacity: 1;
  pointer-events: inherit;
}

/* Youtube
========================================== */
/*
  width = ウィンドウ幅 - 左右マージンの合計
  height = width * 9/16
  ※単位vwはスクロールバーを含めた値になるため、PCの場合は少しずれる。
  　スマホは問題ない。
*/
.read :not(.c-youtubeWrap) > iframe,
.read .c-youtubeWrap {
  margin: 1em 0;
}

.read iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ==========================================
*  MODAL
========================================== */
.m-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  overflow: auto;
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
  overscroll-behavior-y: none;
  outline: none !important;
  opacity: 0;
  transition: all 0.4s ease-out;
}
.is-modal-show .m-modal {
  opacity: 1;
}
.m-modal.is-open {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-load-start {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-close {
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
}
.m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #000 25%, transparent), linear-gradient(to top, rgba(0, 187, 187, 0.5), transparent);
  background-position: top center, bottom center;
  background-size: cover, 100% min(20vh, 30rem);
  background-repeat: no-repeat;
  background-color: #001313;
}
.m-modal__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/common/bg_marvel.jpg);
  background-position: center center;
  opacity: 0.1;
}
.m-modal__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  margin: auto;
  -webkit-mask-image: url(../img/common/circle.png);
          mask-image: url(../img/common/circle.png);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-image: linear-gradient(135deg, #010303, #31cdb0);
  opacity: 0.15;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.m-modal__container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .m-modal__container {
    padding: 5rem 0;
  }
}
.m-modal__content {
  width: 90%;
  height: auto !important;
  display: block;
  position: relative;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
[data-modal-type=img] .m-modal__content {
  width: 90%;
  max-width: 150vh;
}
@media screen and (max-width: 960px) {
  [data-modal-type=img] .m-modal__content {
    width: 100%;
  }
}
[data-modal-type=youtube] .m-modal__content {
  width: 90%;
  max-width: min(153vh, 1600px);
}
@media screen and (max-width: 960px) {
  [data-modal-type=youtube] .m-modal__content {
    width: 100%;
    max-width: min(153vh, 750px);
  }
}
.is-modal-show .m-modal__content {
  opacity: 1;
}
.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.m-modal__content > * {
  width: 100%;
  height: auto;
}
.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0 auto;
}
.m-modal__content-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .m-modal__content-bg {
    position: relative;
    top: auto;
    right: auto;
    width: 84%;
    height: auto;
    margin: 2rem auto 0;
  }
}
.m-modal__close {
  width: 3rem;
  height: 3rem;
  display: block;
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 2.5rem;
    height: 2.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.m-modal__close-in {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.m-modal__close-bar {
  content: "";
  width: 133%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 960px) {
  .m-modal__close-bar {
    height: 0.2rem;
  }
}
.m-modal__close-bar.-bar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.m-modal__close-bar.-bar2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.m-modal__close-bar::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  border-radius: 20rem;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-modal-open .m-modal__close-bar::before {
  width: 100%;
  left: auto;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close:hover .m-modal__close-bar::before {
    background-color: #00bbbb;
  }
}

.js-custom-modal-content {
  transition: 0.4s ease;
}
.js-custom-modal-content:not(.-open) {
  opacity: 0;
}

/* BUTTON
========================================== */
.morelink {
  letter-spacing: 0.02em;
}
.morelink a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}
.morelink a::after {
  content: "";
  display: inline-block;
  width: 2.6em;
  height: 1.7em;
  background-image: url(../img/common/arrow_more.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.4s;
}
.morelink a:hover {
  color: #00bbbb;
  opacity: 1;
}
.morelink a:hover::after {
  transform: translateX(1em);
}
.morelink.-back a::after {
  order: -1;
  transform: scale(-1);
}
.morelink.-back a:hover::after {
  transform: translateX(-1em) scale(-1);
}

/* バナーユニット
========================================== */
[id^=bnu_001_] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 0;
}

[id^=bnu_001_] > p {
  width: 100%;
  max-width: 350px;
  margin: 0 10px 10px;
}

/* animation
========================================== */
.fade-in {
  transition: 1s ease, opacity 0.6s;
}
.fade-in:not(.is-active) {
  opacity: 0;
  transform: translateY(2rem);
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes menu-in {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes menu-in {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes menu-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(200%);
  }
}
@keyframes menu-out {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(200%);
  }
}
/* Header
========================================== */
.sectionHead {
  text-align: center;
}
.sectionHead h2 {
  font-size: min(6.4vw, 5.8rem);
  margin: 0 0 1em;
  filter: drop-shadow(0 0 0.2em rgba(255, 255, 255, 0.5)) drop-shadow(0 0 0.3em rgba(255, 255, 255, 0.5));
}
.sectionHead h2 img {
  height: 1em;
}
.sectionHead h2 .-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 2em;
  letter-spacing: 0.22em;
  padding-left: 0.22em;
}

/* ========================================
サイトごとの全体設定
======================================== */
.c-inlineBlockWrap > span {
  display: inline-block;
}

.c-customMarkerList > li::before {
  content: attr(data-listmarker);
}

/*
  Header
========================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.6rem 0 6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.3s;
  z-index: 900;
}
body:not(.menu-open) .header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10%);
}
.header a {
  color: inherit;
  text-decoration: inherit;
}
.header__container {
  position: relative;
  z-index: 1;
}
.header__brand {
  width: min(35%, 25.6rem);
  margin: auto auto 0 clamp(2rem, 6vw, 7.7rem);
}

.globalNavi {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  filter: drop-shadow(0 0 0.4rem rgba(0, 244, 255, 0.6)) drop-shadow(0 0 0.6rem rgba(0, 244, 255, 0.5));
}
.globalNavi__link.-crt {
  color: #38d8d8;
}

.navioverlay {
  position: fixed;
  z-index: 850;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #000 25%, transparent), linear-gradient(to top, rgba(0, 187, 187, 0.5), transparent);
  background-position: top center, bottom center;
  background-size: cover, 100% min(20vh, 30rem);
  background-repeat: no-repeat;
  background-color: #001313;
  transition: 0.3s;
}
.navioverlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/common/bg_marvel.jpg);
  background-position: center center;
  opacity: 0.1;
}
.navioverlay::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  margin: auto;
  -webkit-mask-image: url(../img/common/circle.png);
          mask-image: url(../img/common/circle.png);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-image: linear-gradient(135deg, #010303, #31cdb0);
  opacity: 0.15;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
body:not(.menu-open) .navioverlay {
  opacity: 0;
  pointer-events: none;
}

/*
  Drawr Button
========================================== */
.menuButton {
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 950;
  background-image: url(../img/common/menu_bt.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 7.2rem;
  aspect-ratio: 1/1;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .menuButton {
    top: 1rem;
    right: 1rem;
    width: 6.4rem;
  }
}

.menuIcon {
  display: block;
  position: relative;
  width: 3rem;
  aspect-ratio: 2/1;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .menuIcon {
    width: 2.4rem;
  }
}
.menuIcon__line {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  transition: 0.3s;
  --menuIcon-delay: 0s;
}
.menuIcon__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: var(--menuIcon-delay);
          animation-delay: var(--menuIcon-delay);
}
.menuIcon__line:nth-child(1) {
  top: 0;
  transform: translateX(0.4rem);
}
.menuIcon__line:nth-child(2) {
  --menuIcon-delay: 0.06s;
}
.menuIcon__line:nth-child(3) {
  --menuIcon-delay: 0.12s;
  bottom: 0;
  transform: translateX(-0.4rem);
}
.menuIcon__line:nth-child(2), .menuIcon__line:nth-child(4), .menuIcon__line:nth-child(5) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.menuIcon__line:nth-child(4) {
  transform: rotate(45deg);
}
.menuIcon__line:nth-child(5) {
  transform: rotate(-45deg);
}
.menuIcon__line:nth-child(1)::before, .menuIcon__line:nth-child(2)::before, .menuIcon__line:nth-child(3)::before {
  transform: translateX(-200%);
  -webkit-animation-name: menu-in;
          animation-name: menu-in;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
.menuIcon__line:nth-child(4)::before, .menuIcon__line:nth-child(5)::before {
  transform: translateX(0%);
  -webkit-animation-name: menu-out;
          animation-name: menu-out;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
body.menu-open .menuIcon__line:nth-child(1)::before, body.menu-open .menuIcon__line:nth-child(2)::before, body.menu-open .menuIcon__line:nth-child(3)::before {
  transform: translateX(0%);
  -webkit-animation-name: menu-out;
          animation-name: menu-out;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
body.menu-open .menuIcon__line:nth-child(4)::before, body.menu-open .menuIcon__line:nth-child(5)::before {
  transform: translateX(-200%);
  -webkit-animation-name: menu-in;
          animation-name: menu-in;
}
body.menu-open .menuIcon__line:nth-child(2) {
  --menuIcon-delay: 0.06s;
}
body.menu-open .menuIcon__line:nth-child(3) {
  --menuIcon-delay: 0.12s;
}
body.menu-open .menuIcon__line:nth-child(4) {
  --menuIcon-delay: 0.3s;
}
body.menu-open .menuIcon__line:nth-child(5) {
  --menuIcon-delay: .36s;
}

.footer {
  position: relative;
  padding: 0 2rem 16rem;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30rem;
  opacity: 0.5;
  background-image: linear-gradient(to top, #00bbbb, transparent);
  background-position: bottom center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.footer__container {
  position: relative;
  z-index: 10;
  width: 120rem;
  max-width: 100%;
  margin: auto;
}
.footer__scrollToTop {
  width: 10rem;
  margin: auto;
}
.footer__brand {
  margin: 10rem auto 0;
  width: 29rem;
}
.footer__info {
  margin-top: 8.5rem;
}

.footer-info {
  display: grid;
}
.footer-info__legal {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.footer-info__legal .-caut {
  opacity: 0.6;
}
.footer-info__legal .-copy {
  margin: 2em 0 0;
}
@media screen and (min-width: 601px) {
  .footer-info {
    grid-template-columns: 1fr auto;
    align-items: flex-end;
  }
  .footer-info__share {
    grid-area: 1/2/2/3;
  }
  .footer-info__help {
    grid-area: 2/2/3/3;
  }
  .footer-info__legal {
    grid-area: 1/1/3/2;
  }
}
@media screen and (max-width: 600px) {
  .footer-info {
    grid-template-columns: 100%;
    text-align: center;
    gap: 2em;
  }
}

.socialList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.5rem;
  gap: 1em;
}
.socialList__cap {
  display: flex;
  align-items: center;
  gap: 1em;
}
.socialList__cap::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.1rem;
  background: #fff;
}
.socialList__list {
  display: flex;
  gap: 1em;
  margin: 0;
}
.socialList__list-item {
  width: 2em;
}
.socialList.-v {
  flex-direction: column;
  align-items: center;
}
.socialList.-v .socialList__cap {
  flex-direction: column;
}
.socialList.-v .socialList__cap::after {
  height: 1em;
  width: 0.1rem;
}
@media screen and (max-width: 600px) {
  .socialList {
    flex-direction: column;
    align-items: center;
  }
  .socialList__cap {
    flex-direction: column;
  }
  .socialList__cap::after {
    height: 1em;
    width: 0.1rem;
  }
}

.footer_helplist {
  display: flex;
  justify-content: flex-end;
  font-size: 1.2rem;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .footer_helplist {
    justify-content: center;
  }
}
.footer_helplist__item:not(:first-child)::before {
  content: "|";
  margin: 0 1em;
}
.footer_helplist__item a {
  color: inherit;
  text-decoration: inherit;
}

.scrollButton {
  position: relative;
  width: 10rem;
  aspect-ratio: 1/1;
}
.scrollButton::before, .scrollButton::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.scrollButton::before {
  background-image: url(../img/common/btn_pagetop.png);
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scrollButton::after {
  background-image: url(../img/common/btn_pagetop_arrow.png);
}
.scrollButton:hover::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* NewsList
========================================== */
.newsList {
  display: grid;
  grid-template-columns: auto 1fr auto;
  font-size: 2rem;
  gap: 0 1.5em;
}
.newsList a {
  color: inherit;
  text-decoration: none;
}
.newsList__item {
  grid-column: 3 span;
  display: grid;
  grid-template-columns: subgrid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.newsList__link {
  grid-column: 3 span;
  display: grid;
  grid-template-columns: subgrid;
  padding: 1.5em 1.5em 1.5em 0;
}
.newsList__link::after {
  content: "";
  display: block;
  background-image: url(../img/cont/news/arrow.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1em;
  aspect-ratio: 13/20;
  margin: auto 0;
}
.newsList__date {
  padding-left: 2.4em;
}
@media screen and (max-width: 600px) {
  .newsList {
    grid-template-columns: 1fr auto;
    font-size: 1.6rem;
  }
  .newsList__item {
    grid-column: 2 span;
    grid-row: 2 span;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
  }
  .newsList__link {
    grid-column: 2 span;
    grid-row: 2 span;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    gap: 0.5em 1em;
    padding: 1em;
  }
  .newsList__link::after {
    grid-area: 1/2/3/3;
  }
  .newsList__date {
    padding-left: 0;
  }
}

.date {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}
.date__text {
  display: inline-block;
  letter-spacing: 0.02em;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.8) 25%, rgba(0, 0, 0, 0.8) 75%), linear-gradient(#ffefa4, #ffefa4);
  background-blend-mode: soft-light;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.date__text.-y {
  font-size: 0.5em;
  margin-right: 0em;
}
/*# sourceMappingURL=common.css.map */