<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400&amp;display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
menu, nav, section, audio, video, canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, figure, figcaption, footer,
header, menu, nav, section, main {
  display: block;
}

body {
  color: #333;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  position: relative;
}

body,
input,
textarea {
  color: #fff;
  line-height: 1.6;
}

a:link,
a:visited {
  color: #fff;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {
  list-style: square;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

blockquote:before, blockquote:after {
  content: "";
}

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: #fff;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@keyframes spring {
  0% {
    transform: scale(0.2);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* X方向スケールアップ */
@keyframes scale-up-x {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@keyframes scale-up-y {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@keyframes scale-down-y {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@keyframes scale-y-fade-in {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@keyframes scale-fade-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@keyframes scale-fade-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

html {
  background: #000;
}

html img {
  vertical-align: bottom;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
}

/* Components style
-----------------------------------*/
.column {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 10px;
}

.column.is-narrow {
  flex: none;
}

.column.is-full {
  flex: none;
  width: 100%;
}

.column.is-three-quarters {
  flex: none;
  width: 75%;
}

.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

.column.is-half {
  flex: none;
  width: 50%;
}

.column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.column.is-one-quarter {
  flex: none;
  width: 25%;
}

.column.is-offset-three-quarters {
  margin-left: 75%;
}

.column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.column.is-offset-half {
  margin-left: 50%;
}

.column.is-offset-one-third {
  margin-left: 33.3333%;
}

.column.is-offset-one-quarter {
  margin-left: 25%;
}

.column.is-1 {
  flex: none;
  width: 8.33333%;
}

.column.is-offset-1 {
  margin-left: 8.33333%;
}

.column.is-2 {
  flex: none;
  width: 16.66667%;
}

.column.is-offset-2 {
  margin-left: 16.66667%;
}

.column.is-3 {
  flex: none;
  width: 25%;
}

.column.is-offset-3 {
  margin-left: 25%;
}

.column.is-4 {
  flex: none;
  width: 33.33333%;
}

.column.is-offset-4 {
  margin-left: 33.33333%;
}

.column.is-5 {
  flex: none;
  width: 41.66667%;
}

.column.is-offset-5 {
  margin-left: 41.66667%;
}

.column.is-6 {
  flex: none;
  width: 50%;
}

.column.is-offset-6 {
  margin-left: 50%;
}

.column.is-7 {
  flex: none;
  width: 58.33333%;
}

.column.is-offset-7 {
  margin-left: 58.33333%;
}

.column.is-8 {
  flex: none;
  width: 66.66667%;
}

.column.is-offset-8 {
  margin-left: 66.66667%;
}

.column.is-9 {
  flex: none;
  width: 75%;
}

.column.is-offset-9 {
  margin-left: 75%;
}

.column.is-10 {
  flex: none;
  width: 83.33333%;
}

.column.is-offset-10 {
  margin-left: 83.33333%;
}

.column.is-11 {
  flex: none;
  width: 91.66667%;
}

.column.is-offset-11 {
  margin-left: 91.66667%;
}

.column.is-12 {
  flex: none;
  width: 100%;
}

.column.is-offset-12 {
  margin-left: 100%;
}

.column.is-order1 {
  order: 1;
}

.column.is-order2 {
  order: 2;
}

.column.is-order3 {
  order: 3;
}

.column.is-order4 {
  order: 4;
}

.column.is-order5 {
  order: 5;
}

.column.is-order6 {
  order: 6;
}

.column.is-order7 {
  order: 7;
}

.column.is-order8 {
  order: 8;
}

.column.is-order9 {
  order: 9;
}

.column.is-order10 {
  order: 10;
}

.column.is-order11 {
  order: 11;
}

.column.is-order12 {
  order: 12;
}

.columns {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

.columns:last-child {
  margin-bottom: -10px;
}

.columns:not(:last-child) {
  margin-bottom: 10px;
}

.columns.is-centered {
  justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 20px;
}

.columns.is-gapless &gt; .column {
  margin: 0;
  padding: 0;
}

.columns.is-multiline {
  flex-wrap: wrap;
}

.tile {
  align-items: stretch;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: min-content;
}

.tile.is-ancestor {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}

.tile.is-ancestor:last-child {
  margin-bottom: -10px;
}

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 10px;
}

.tile.is-child {
  margin: 0 !important;
}

.tile.is-parent {
  padding: 10px;
}

.tile.is-vertical {
  flex-direction: column;
}

.tile.is-vertical &gt; .tile.is-child:not(:last-child) {
  margin-bottom: 20px !important;
}

.tile:not(.is-child) {
  display: flex;
}

.tile.is-1 {
  flex: none;
  width: 8.33333%;
}

.tile.is-2 {
  flex: none;
  width: 16.66667%;
}

.tile.is-3 {
  flex: none;
  width: 25%;
}

.tile.is-4 {
  flex: none;
  width: 33.33333%;
}

.tile.is-5 {
  flex: none;
  width: 41.66667%;
}

.tile.is-6 {
  flex: none;
  width: 50%;
}

.tile.is-7 {
  flex: none;
  width: 58.33333%;
}

.tile.is-8 {
  flex: none;
  width: 66.66667%;
}

.tile.is-9 {
  flex: none;
  width: 75%;
}

.tile.is-10 {
  flex: none;
  width: 83.33333%;
}

.tile.is-11 {
  flex: none;
  width: 91.66667%;
}

.tile.is-12 {
  flex: none;
  width: 100%;
}

/* @ breadcrumbs
// ------------------------------------------------------------ */
.breadcrumbs {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.breadcrumbs + .pageMainTitle {
  margin-top: -40px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumbs ul li {
  display: inline-flex;
  align-items: center;
  height: 30px;
  list-style: none;
  font-size: 12px;
  line-height: 1.2;
}

.breadcrumbs ul li a {
  text-decoration: none;
}

.breadcrumbs ul li .fa-home {
  margin-right: .5em;
}

.breadcrumbs ul li:not(:first-child):before {
  display: inline-block;
  content: '&gt;';
  margin: 0 .7em;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs ul {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
  .breadcrumbs + .pageMainTitle {
    margin-top: -25px;
  }
}

.modal {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 5.867%;
  /**
	 * Movieモーダル
	 */
}

.modal.is-active {
  display: flex;
}

.modal .delete {
  position: absolute;
  right: -22px;
  top: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: top;
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 100;
}

.modal .delete:before, .modal .delete:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}

.modal .delete:before {
  transform: rotate(45deg);
}

.modal .delete:after {
  transform: rotate(-45deg);
}

.modal-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(17, 17, 17, .75);
}

.modal-container {
  width: 100%;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

.modal-content .message {
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content .message-body {
  padding: 30px;
}

.modal-content .message-body &gt; *:last-child {
  margin-bottom: 0 !important;
}

.modal-content .message-header {
  padding: 20px 30px 0;
}

.modal.modalMovie .modal-content .message-body {
  padding: 0;
  border: 1px solid #fff;
}

.modal.modalComment {
  color: #311b00;
}

.modal.modalComment p:last-child {
  margin-bottom: 0 !important;
}

.modal.modalComment hr {
  margin-bottom: 25px;
}

.modal.modalComment .message-body {
  padding: 10px 30px 30px;
}

.modal.modalComment .message-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.modal.modalComment h5 {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  color: #fff;
  background: #311b00;
}

.modal.modalComment .prev,
.modal.modalComment .next {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 25px;
  line-height: 1;
  color: #311b00;
  background: #fff;
  border: 2px solid #311b00;
  border-radius: 22px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalComment .prev {
  left: -1em;
}

.modal.modalComment .next {
  right: -1em;
}

.modalMovie .modal-content {
  max-width: 900px;
}

.modalMovie .modal-content .message-body {
  padding: 0;
}

.modalMovie .modal-content .message-body .video-container {
  border: none;
  padding-bottom: 55.25%;
  margin: 0;
}

@media screen and (max-width: 667px) {
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  margin: 0 0 50px;
  padding-top: 10px;
  text-align: center;
}

.pagination ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.pagination ul li {
  display: inline-block;
  list-style: none;
  padding: 0 4px;
  font-size: 15px;
}

.pagination ul li span,
.pagination ul li a {
  display: inline-block;
  min-width: 2.2em;
  height: 2.2em;
  line-height: 2.1;
  outline: none;
  padding: 0;
  text-align: center;
  border: solid 1px #000;
  color: #000;
  background: #fff;
  text-decoration: none;
}

.pagination ul li span.is-current,
.pagination ul li a.is-current {
  color: #fff !important;
  background: #000;
}

.pagination ul li span.is-current:hover,
.pagination ul li a.is-current:hover {
  opacity: 1;
}

.pagination ul li.prev a,
.pagination ul li.next a {
  padding: 0 1em;
}

.pagination.single ul {
  width: 100%;
  justify-content: space-between;
}

.pagination.single ul .list a {
  padding: 0 1em;
  color: #fff;
  background: #000;
}

@media screen and (max-width: 768px -1px) {
  .pagination ul li {
    padding: 0 2px;
  }
}

@media screen and (max-width: 414px) {
  .pagination {
    margin: 0 0 30px;
  }
  .pagination ul li {
    font-size: 13px;
  }
  .pagination.single ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pagination.single ul li {
    width: 49%;
  }
  .pagination.single ul li a {
    width: 100%;
  }
  .pagination.single ul .prev {
    order: 1;
  }
  .pagination.single ul .next {
    order: 2;
  }
  .pagination.single ul .list {
    order: 3;
    width: 100%;
    padding-top: 2%;
  }
}

@media screen and (max-width: 374px) {
  .pagination ul li {
    padding: 0 1px;
  }
  .pagination ul li.prev a,
  .pagination ul li.next a {
    padding: 0 .7em;
  }
}

.touchlink {
  cursor: pointer;
}

/* View style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
.bg-youtube {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-youtube:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  background: rgba(0, 0, 0, .4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 2;
}

#fv {
  padding-top: 17.33333vw;
  margin-bottom: 18.66667vw;
}

#fv figure {
  margin-bottom: -15vw;
  transform: translate(0, -8%);
}

#fv h1 .tag {
  margin-bottom: 2vw;
}

#fv p {
  margin-bottom: 0;
}

#media {
  margin-bottom: 10vw;
}

#media .video-container {
  margin-bottom: 6vw;
}

#media .streaming h3 {
  margin-bottom: -4vw;
}

#media .streaming ul {
  width: 100%;
  list-style: none;
  margin: 0;
  text-align: center;
}

#media .streaming li + li:before {
  display: block;
  content: '';
  width: 5%;
  height: 3px;
  margin: 0 auto;
  background: rgba(255, 198, 0, .9);
  box-shadow: 0 0 2.66667vw #ffc682;
}

#media .streaming a {
  display: block;
  text-align: center;
  padding: 7vw 0;
}

#media .streaming a img {
  width: 45%;
}

#profile figure img {
  box-shadow: 0 0 2vw black, 0 0 13.33333vw #ffc682;
}

#profile .body {
  padding: 8vw 5vw 20vw;
  font-size: 3.2vw;
  font-feature-settings: 'palt' on;
  letter-spacing: 0.04em;
  text-align: justify;
  line-height: 1.8;
  text-shadow: 0 0 1.06667vw #000, 0 0 2.13333vw #000;
}

#profile .body p {
  margin-bottom: 2em;
}

#trailer {
  margin-bottom: 30vw;
}

#trailer .video-container {
  margin-bottom: 0;
}

#vfx .body {
  padding: 8vw 5vw;
  font-size: 3.2vw;
  font-feature-settings: 'palt' on;
  letter-spacing: 0.04em;
  text-align: justify;
  line-height: 1.8;
  text-shadow: 0 0 1.06667vw #000, 0 0 2.13333vw #000;
}

#vfx .body p {
  margin-bottom: 2em;
}

#vfx .body small {
  font-size: 2.66667vw;
}

#vfx a {
  color: #fb7818;
  text-decoration: underline;
}

#footer {
  text-align: center;
  padding: 30vw 0 3vw;
}

#footer img {
  max-width: 60vw;
}

#footer p {
  margin-bottom: 0;
}

.video-container {
  box-shadow: 0 0 2vw black, 0 0 13.33333vw #ffc682;
}

@media screen and (min-width: 767px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
  #fv {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    padding-top: 0;
    height: 44.5vw;
    max-height: 623px;
    max-width: 1400px;
    margin: 10vw auto 20vw;
  }
  #fv figure {
    order: 1;
    width: 50%;
    margin-bottom: 0;
    transform: translate(0) scale(1.2);
  }
  #fv h2 {
    width: 50%;
    order: 2;
    transform: translate(-5%, 0) scale(1.2);
    margin-bottom: 4%;
  }
  #fv h1 {
    order: 3;
    display: flex;
    flex-flow: column nowrap;
    align-content: center;
    align-items: center;
    justify-items: center;
  }
  #fv h1 .tag {
    margin-bottom: 3%;
  }
  #fv p {
    order: 4;
  }
  #fv h1,
  #fv p {
    width: 50%;
    transform: translate(-5%, 0);
  }
  #media {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    padding: 0 30px;
    margin: 0 auto 20vw;
  }
  #media .video-container {
    margin-bottom: 0;
  }
  #media .mv {
    width: 70%;
  }
  #media .streaming {
    width: 30%;
  }
  #media .streaming h3 {
    text-align: center;
    margin-bottom: 0;
  }
  #media .streaming h3 img {
    pointer-events: none;
    transform: scale(1.2);
  }
  #media .streaming li + li:before {
    box-shadow: 0 0 10px #ffc682;
  }
  #media .streaming a {
    display: block;
    text-align: center;
    padding: 6.3% 0;
  }
  #media .streaming a:hover {
    opacity: .6;
  }
  #media .streaming a img {
    width: 50%;
  }
  #profile {
    margin-bottom: 15vw;
  }
  #profile figure {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
  }
  #profile figure img {
    box-shadow: 0 0 7px black, 0 0 50px #ffc682;
  }
  #profile .body {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 25px 0;
    font-size: 14px;
    text-shadow: 0 0 4px #000,  0 0 8px #000;
  }
  #profile .body p {
    margin-bottom: 2em;
  }
  #trailer {
    width: 100%;
    max-width: 1020px;
    padding: 0 30px;
    margin: 0 auto 10vw;
  }
  #trailer .video-container {
    margin-bottom: 0;
  }
  #trailer h3 {
    text-align: center;
    margin-bottom: 50px;
  }
  #trailer h3 img {
    max-width: 600px;
  }
  #vfx h3 {
    text-align: center;
    margin-bottom: 50px;
  }
  #vfx h3 img {
    max-width: 600px;
  }
  #vfx .body {
    width: 50%;
    padding: 30px 0 30px 25px;
    font-size: 14px;
    text-shadow: 0 0 4px #000,  0 0 8px #000;
  }
  #vfx .body small {
    font-size: 10px;
  }
  #vfx .inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    padding: 0 30px;
    margin: 0 auto;
  }
  #vfx .inner figure {
    width: 50%;
  }
  #vfx .inner figure .video-container {
    padding-top: 56%;
  }
  .video-container {
    box-shadow: 0 0 7px black, 0 0 50px #ffc682;
  }
  #footer {
    text-align: center;
    padding: 200px 0 10px;
  }
  #footer img {
    width: 200px;
  }
}

body.is-eventNone * {
  pointer-events: none !important;
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 10000;
  transition: all linear .8s;
}

.openLoader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  animation: load8 2s infinite linear;
  transition: all ease-in-out .3s;
}

@keyframes load8 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

.inview {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate(0, 30px);
}

.inview.is-view {
  opacity: 1;
  transform: translate(0, 0);
}

body {
  background: #000;
  font-feature-settings: 'palt' on;
}

body img {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .loader {
    width: 250px !important;
  }
}

/* extension style
-----------------------------------*/
.white {
  color: #fff !important;
}

.black {
  color: #111 !important;
}

.blue {
  color: #3f78c6 !important;
}

.green {
  color: #78bc1e !important;
}

.orange {
  color: #fb7818 !important;
}

.red {
  color: #e94709 !important;
}

.yellow {
  color: #fad00d !important;
}

.purple {
  color: #847bb9 !important;
}

.pink {
  color: #ff82a1 !important;
}

.grey {
  color: #acadad !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #111 !important;
}

.bg-blue {
  background-color: #3f78c6 !important;
}

.bg-blue-light {
  background-color: #73cbef !important;
}

.bg-green-light {
  background-color: #a0d264 !important;
}

.bg-orange {
  background-color: #fb7818 !important;
}

.bg-red {
  background-color: #e94709 !important;
}

.bg-yellow {
  background-color: #fad00d !important;
}

.bg-purple {
  background-color: #847bb9 !important;
}

.bg-pink {
  background-color: #ff82a1 !important;
}

.bg-sec-sub {
  background-color: #f4f4f4 !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

.w9em {
  width: 9em !important;
}

.w10em {
  width: 10em !important;
}

.flr {
  float: right !important;
}

.fll {
  float: left !important;
}

.fln {
  float: none !important;
}

.clb {
  clear: both !important;
}

.cln {
  clear: none !important;
}

.is-left {
  text-align: left !important;
}

.is-center {
  text-align: center !important;
}

.is-right {
  text-align: right !important;
}

.is-bold {
  font-weight: bold !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* 文字サイズ */
.fs08 {
  font-size: .8em !important;
}

.fs0875 {
  font-size: .875em !important;
}

.fs09 {
  font-size: .9em !important;
}

.fs0937 {
  font-size: .9375em !important;
}

.fs11 {
  font-size: 1.1em !important;
}

.fs12 {
  font-size: 1.2em !important;
}

.fs1125 {
  font-size: 1.125em !important;
}

.fs125 {
  font-size: 1.25em !important;
}

.fs13 {
  font-size: 1.3em !important;
}

.fs14 {
  font-size: 1.4em !important;
}

.fs15 {
  font-size: 1.5em !important;
}

.fs16 {
  font-size: 1.6em !important;
}

.fs17 {
  font-size: 1.7em !important;
}

.fs18 {
  font-size: 1.8em !important;
}

.fs19 {
  font-size: 1.9em !important;
}

.fs20 {
  font-size: 2.0em !important;
}

.lh1 {
  line-height: 1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mlr5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mlr10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb80 {
  padding-bottom: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.ofx {
  width: 100% !important;
  overflow-x: auto;
}

.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  border: none;
}

hr.dot {
  background: transparent;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 1.5em;
}

hr.clearHr {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px;
}

.op01 {
  opacity: .1;
}

.op02 {
  opacity: .2;
}

.op03 {
  opacity: .3;
}

.op04 {
  opacity: .4;
}

.op05 {
  opacity: .5;
}

.op06 {
  opacity: .6;
}

.op07 {
  opacity: .7;
}

.op08 {
  opacity: .8;
}

.op09 {
  opacity: .9;
}

.op10 {
  opacity: 10;
}

.cf:after {
  display: table;
  content: '';
  width: 100%;
}
</pre></body></html>