@charset "UTF-8";
/*  CSS (main.css) */
@font-face {
  font-family: "Muro";
  src: url("../fonts/Muro.woff") format("woff"), url("../fonts/Muro.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  text-decoration: none !important;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

ul, ol {
  list-style: none;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 0.5px;
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

#content_area a:hover {
  text-decoration: underline;
}

/* ============================================
 base
============================================ */
.no_pc {
  display: inline;
}

.no_sp {
  display: none;
}

html {
  overflow-y: scroll;
}

.civane {
  font-family: civane-condensed, sans-serif;
  font-weight: 900;
  font-style: normal;
}

html {
  background: #000;
}

html, body {
  width: 100%;
  height: auto;
  color: #fff;
  min-width: 320px;
  letter-spacing: -0.1px;
  font-size: 12px;
  line-height: 1.65;
  font-family: "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body.compensate-for-scrollbar {
  overflow: visible;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

#exterior_wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}

.wrapper {
  position: relative;
  width: 84%;
  max-width: 1000px;
  margin: 0 auto;
}
.wrapper:before, .wrapper:after {
  content: "";
  display: table;
}
.wrapper:after {
  clear: both;
}

.lity {
  z-index: 100010 !important;
}

/* ============================================
 header
============================================ */
header {
  position: fixed;
  webkit-transform: translateZ;
  top: 0;
  height: 55px;
  z-index: 100;
}

header a :hover {
  text-decoration: none !important;
}

header .head_left {
  float: left;
  width: 47%;
  max-width: 160px;
}

header .logo {
  margin-left: -7px;
  margin-right: 0;
}

header .logo a :hover {
  text-decoration: none !important;
}

header .head_right {
  padding-top: 5px;
  padding-right: 30px;
}

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.menu_button {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  padding: 10px 9px;
  cursor: pointer;
  background: rgba(242, 146, 0, 0.81);
}
.menu_button > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu_button:hover {
  text-decoration: none;
}

.menu_button span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu_button span:nth-of-type(1) {
  top: 0;
}

.menu_button span:nth-of-type(2) {
  top: 8px;
}

.menu_button span:nth-of-type(3) {
  bottom: 0;
}

/*-----------  active  ------------*/
.menu_button.active span:nth-of-type(1) {
  -webkit-transform: translateY(6.5px) rotate(-45deg);
  transform: translateY(6.5px) rotate(-45deg);
}

.menu_button.active span:nth-of-type(2) {
  opacity: 0;
}

.menu_button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

.sns {
  z-index: 100;
  top: 13px;
  right: 20px;
  position: fixed;
}
.sns ul {
  display: flex;
  margin-right: -7px;
  justify-content: center;
  align-items: center;
}
.sns ul li {
  font-size: 15px;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 7px;
}
.sns ul li.tiktok {
  width: 13px;
  margin-top: -3px;
  margin-left: 6px;
}

/*-----------------------------------------------------------------
  dropdown nav
------------------------------------------------------------------*/
nav.left_nav {
  z-index: 101;
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-250px);
  transition: all 0.5s;
}

nav.left_nav.open {
  transform: translateZ(0);
}

nav.left_nav li {
  text-align: center;
  padding: 4px 10px;
  font-size: 24px;
  font-size: 2rem;
  letter-spacing: 1px;
  font-family: "Muro", Helvetica, sans-serif;
  color: #fff;
}
nav.left_nav li img {
  width: 77%;
}

nav.left_nav.open {
  transform: translateZ(0);
}

nav.right_nav {
  width: 105px;
  height: 100%;
  padding-top: 70px;
  text-align: right;
  padding-right: 18px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translate(110px);
  transition: all 0.5s;
}
nav.right_nav li {
  margin: 10px auto;
}

nav.right_nav.open {
  transform: translateZ(0);
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.nav_close {
  position: absolute;
  top: 10px;
  right: 24px;
  width: 30px;
}

/*-----------------------------------------------------------------
  SNS
------------------------------------------------------------------*/
/* ============================================
 contents
============================================ */
#content_area {
  width: 100%;
}

#top {
  position: relative;
  height: auto;
  width: 100%;
  background: #000;
  transform: scale(1);
}
#top .bg-container {
  width: 100%;
  z-index: -1;
}
#top .bg-container .main_visual {
  width: 100%;
}
#top .top_txt_left {
  position: absolute;
  top: 6.5%;
  left: 10%;
  width: 22%;
}
#top .top_txt_right {
  position: absolute;
  top: 6.5%;
  right: 8%;
  width: 28%;
}
#top .catchy {
  position: absolute;
  top: 21%;
  left: 15%;
  width: 58%;
}
#top .container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#top #tit {
  z-index: 2;
  position: absolute;
  top: 31%;
  width: 100%;
  padding: 0px 0;
  left: auto;
}
#top #tit .logo {
  text-align: center;
  margin-bottom: 0;
}
#top #tit .logo .reflection-img {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 73%;
  max-width: 900px;
}
#top #tit .logo img {
  width: 100%;
}
#top #tit .logo_base, #top #tit .logo_reflection {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
#top #tit .logo_reflection {
  background-size: cover;
  overflow: hidden;
  height: 0;
  animation: reflection 2s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
@keyframes reflection {
  0% {
    height: 0;
    opacity: 0;
  }
  6% {
    height: 50%;
    opacity: 1;
  }
  12% {
    height: 100%;
    opacity: 0;
  }
  13% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
#top #tit .info {
  text-align: center;
  margin-bottom: 5px;
}
#top #tit .info img {
  width: 69%;
  max-width: 900px;
}

#top #tit .info a:hover {
   opacity: 0.7;
   transition: opacity 0.5s;
}


#top #tit .bnr {
  text-align: center;
  margin-top: 20px;
  width: 80%;
  margin: 15px auto;
}
#top #tit .bnr a {
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}
#top #tit .bnr a:hover {
  opacity: 0.7;
}
#top #tit .bnr img {
  width: 49%;
  max-width: 250px;
  padding: 2% 1%;
}

.scrollmagic-pin-spacer {
  background: #000;
}

section {
  position: relative;
  padding: 55px 0;
}
section h2 {
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-family: "Muro", Helvetica, sans-serif;
  font-size: 14px;
  font-size: 3.7333333333vw;
  color: #f29200;
  letter-spacing: 2px;
}
section h2 img {
  width: 26%;
  max-width: 180px;
}

.bnr_area {
  position: relative;
  margin: 0 auto 0;
  width: 80%;
}
.bnr_area ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -2% -2%;
  justify-content: center;
  align-items: center;
}
.bnr_area ul li {
  width: 31.33%;
  margin: 0 0 2% 2%;
}

#trailer {
  position: relative;
  margin-top: calc(50% - 50px);
  padding-bottom: 12%;
  padding-top: 100px;
}
#trailer .trailer_wrap {
  max-width: 850px;
  width: 87%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#trailer .trailer_wrap .trailer {
  width: 43%;
  margin: 2%;
  position: relative;
}
#trailer .trailer_wrap .trailer div {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#trailer .trailer_wrap .trailer iframe, #trailer .trailer_wrap .trailer span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#intro {
  padding: 0;
}
#intro h2 {
  text-align: left;
}
#intro h2 img {
  width: 40%;
}
#intro h3 {
  margin: 3% 0 12px 0;
  text-align: left;
  max-width: 260px;
}
#intro .story_detail {
  margin-top: 116%;
  margin-left: 14%;
  width: 70%;
}
#intro .intro_bg {
  position: relative;
}
#intro .intro_bg img {
  width: 100%;
}
#intro .intro_bg .intro_pc {
  display: none;
}
#intro .intro_inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 13% 0 0 0;
}
#intro p {
  font-size: 10px;
  font-size: 2.6666666667vw;
  letter-spacing: -0.9px;
  text-align: justify;
}
#intro p small {
  font-size: 70%;
  display: inline-block;
  margin-top: -0.7em;
  letter-spacing: -0.6px;
}

#section01 {
  position: relative;
  min-height: 260px;
}
#section01 .diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#section01 #section01_video-area {
  position: fixed;
  z-index: -2;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#section01 #video_section01 {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  height: 62.25vw;
  min-height: 270%;
  min-width: 430%;
}

#story {
  padding: 35px 0 0px;
}
#story h2 {
  margin-bottom: 0;
}
#story h2 img {
  width: 38%;
}
#story .wrapper {
  max-width: 800px;
}
#story #story_video-area {
  position: fixed;
  z-index: -3;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#story #video_story {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  height: 65.25vw;
  min-height: 270%;
  min-width: 430%;
}
#story .video_mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/mesh.png") repeat;
}
#story h3 {
  margin: 10px auto 20px;
}
#story p {
  margin: 20px auto;
  font-style: normal;
  font-size: 10px;
  font-size: 2.6666666667vw;
  font-weight: bold;
  letter-spacing: 0.7px;
  text-align: center;
  line-height: 1.7;
}
#story h4 {
  margin: 20px auto;
}

#story.video-switch.visible #story_video-area {
  position: fixed;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

footer {
  margin-top: 0px;
  padding: 0px 0 10px;
  position: relative;
  color: #fff;
  background: url("../images/footer_sp.png") no-repeat 60% bottom;
  background-size: cover;
}
footer .footer_bg {
  display: none;
}
footer .footer_bg img {
  width: 100%;
}
footer .footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76%;
  padding-top: 27%;
  margin-left: 12%;
  min-width: auto;
}
footer .footer_logo {
  text-align: center;
  margin: 0 auto 17px;
  width: 85%;
  max-width: 400px;
}
footer .credit p {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  color: #fff;
  font-size: 5px;
  font-size: 1.3333333333vw;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(150, 75, 21, 0.8);
  margin-bottom: 14px;
}
footer .icon ul {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
footer .icon ul li {
  display: inline-block;
  text-align: center;
  width: 30%;
}
footer .copyrights {
  margin-top: 40px;
  text-align: center;
}
footer .copyrights .ico_sony {
  color: #fff;
  margin-right: 0;
  margin-bottom: 10px;
}
footer .copyrights .ico_sony img {
  max-width: 24px;
}
footer .copyrights .copy {
  color: #fff;
  margin-right: 0;
  margin-bottom: 0px;
}
footer .copyrights p {
  color: #fff;
  font-size: 5px;
  font-size: 1.3333333333vw;
  padding-bottom: 5px;
}
footer .copyrights p a {
  color: #fff;
  text-decoration: underline;
}

#loading {
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-position: center center;
  background-size: cover;
}
#loading #loading_container {
  z-index: 10;
  width: 70px;
  height: 70px;
  position: fixed;
  margin: auto;
  display: block;
  top: 50%;
  font-size: 16px;
  left: 50%;
  margin-top: -55px;
  margin-left: -35px;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8), 0px 0px 7px rgba(0, 0, 0, 0.8), 0px 0px 3px rgba(0, 0, 0, 0.8);
}
#loading .L {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-animation: L 2s infinite;
}
#loading .O {
  position: absolute;
  left: 18%;
  top: 50%;
  -webkit-animation: O 2s infinite;
  -webkit-animation-delay: 100ms;
}
#loading .A {
  position: absolute;
  left: 35%;
  top: 50%;
  -webkit-animation: A 2s infinite;
  -webkit-animation-delay: 200ms;
}
#loading .D {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-animation: D 2s infinite;
  -webkit-animation-delay: 300ms;
}
#loading .I {
  position: absolute;
  left: 65%;
  top: 50%;
  -webkit-animation: I 2s infinite;
  -webkit-animation-delay: 400ms;
}
#loading .N {
  position: absolute;
  left: 75%;
  top: 50%;
  -webkit-animation: N 2s infinite;
  -webkit-animation-delay: 500ms;
}
#loading .G {
  position: absolute;
  left: 90%;
  top: 50%;
  -webkit-animation: G 2s infinite;
  -webkit-animation-delay: 600ms;
}
@-webkit-keyframes L {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes O {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes A {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes D {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes I {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes N {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes G {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
#loading #op_video-area {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#loading #video_op {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  height: 65.25vw;
  min-height: 270%;
  min-width: 430%;
}
#loading #loading_video-area {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#loading #video_loading {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  height: 65.25vw;
  min-height: 270%;
  min-width: 430%;
}

@media (orientation: landscape) {
  /*-----------------------------------------------------------------
    dropdown nav
  ------------------------------------------------------------------*/
  nav.left_nav {
    width: 250px;
    height: 100%;
    padding-top: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-250px);
    transition: all 0.5s;
  }

  nav.left_nav.open {
    transform: translateZ(0);
  }

  nav.left_nav li {
    text-align: center;
    padding: 2px 10px;
    font-size: 18px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-family: "Muro", Helvetica, sans-serif;
    color: #fff;
  }

  nav.right_nav {
    width: 125px;
    height: 100%;
    padding-top: 70px;
    text-align: right;
    padding-right: 34px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(125px);
    transition: all 0.5s;
  }
  nav.right_nav li {
    margin: 15px auto;
  }
}
.anim-target {
  opacity: 0;
}

@-webkit-keyframes anim-text1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes anim-text1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.anim-target.visible {
  -webkit-animation: anim-text1 1.6s;
  animation: anim-text1 1.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes anim-text2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes anim-text2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.anim-text2 {
  -webkit-animation: anim-text2 1.5s;
  animation: anim-text2 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* ============================================
 Media Queries
============================================ */
@media screen and (min-width: 900px) {
  .no_pc {
    display: none;
  }

  .no_sp {
    display: inline;
  }

  html, body {
    width: 100%;
    height: auto;
    color: #fff;
    min-width: 320px;
    letter-spacing: -0.1px;
    font-size: 12px;
    line-height: 1.65;
    font-family: "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    -webkit-text-size-adjust: 100%;
  }

  .clearfix:before, .clearfix:after {
    content: "";
    display: table;
  }
  .clearfix:after {
    clear: both;
  }

  #exterior_wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .wrapper {
    position: relative;
    width: 84%;
    max-width: 950px;
    margin: 0 auto;
  }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table;
  }
  .wrapper:after {
    clear: both;
  }

  .lity {
    z-index: 100010 !important;
  }

  /* ============================================
   header
  ============================================ */
  header {
    position: fixed;
    webkit-transform: translateZ;
    top: 0;
    height: 55px;
    z-index: 100;
  }

  header a :hover {
    text-decoration: none !important;
  }

  header .head_left {
    float: left;
    width: 47%;
    max-width: 160px;
  }

  header .logo {
    margin-left: -7px;
    margin-right: 0;
  }

  header .logo a :hover {
    text-decoration: none !important;
  }

  header .head_right {
    padding-top: 5px;
    padding-right: 30px;
  }

  /*-----------------------------------------------------------------
    ハンバーガーメニュー
  ------------------------------------------------------------------*/
  .menu_button, .menu_button span {
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }

  .menu_button {
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    padding: 18px 16px;
    cursor: pointer;
  }
  .menu_button > div {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .menu_button:hover {
    text-decoration: none;
  }

  .menu_button span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .menu_button span:nth-of-type(1) {
    top: 0;
  }

  .menu_button span:nth-of-type(2) {
    top: 10px;
  }

  .menu_button span:nth-of-type(3) {
    bottom: 0;
  }

  /*-----------  active  ------------*/
  .menu_button.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .menu_button.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu_button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  .sns {
    top: 13px;
    right: 35px;
    position: fixed;
  }
  .sns ul {
    display: flex;
    margin-right: -7px;
    justify-content: center;
    align-items: center;
  }
  .sns ul li {
    font-size: 20px;
    font-size: 1.6666666667rem;
    margin: 0 9px;
  }
  .sns ul li.tiktok {
    width: 18px;
    margin-top: -5px;
    margin-left: 10px;
  }
  .sns ul li a {
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  }
  .sns ul li a:hover {
    opacity: 0.7;
  }

  /*-----------------------------------------------------------------
    dropdown nav
  ------------------------------------------------------------------*/
  nav.left_nav {
    width: 300px;
    height: 100%;
    padding-top: 130px;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate(-300px);
    transition: all 0.5s;
  }

  nav.left_nav.open {
    transform: translateZ(0);
  }

  nav.left_nav li {
    text-align: center;
    padding: 4px 10px;
    font-size: 26px;
    font-size: 2.1666666667rem;
    font-family: "Muro", Helvetica, sans-serif;
    color: #fff;
  }
  nav.left_nav li img {
    width: 77%;
  }

  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s;
  }

  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .nav_close {
    position: absolute;
    top: 10px;
    right: 24px;
    width: 30px;
  }

  /* ============================================
   contents
  ============================================ */
  #content_area {
    width: 100%;
  }

  #top {
    position: relative;
    height: auto;
    width: 100%;
  }
  #top .catchy {
    position: absolute;
    top: 12%;
    left: 23%;
    width: 26%;
  }
  #top .container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  #top .top_txt_left {
    position: absolute;
    top: 5.5%;
    left: 21%;
    width: 15%;
  }
  #top .top_txt_right {
    position: absolute;
    top: 5.5%;
    right: 21%;
    width: 19%;
  }
  #top #tit {
    position: absolute;
    top: 40%;
    width: 100%;
    padding: 0px 0;
    left: auto;
  }
  #top #tit .logo {
    text-align: center;
    margin-bottom: 0;
  }
  #top #tit .logo .reflection-img {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 49%;
    max-width: 900px;
  }
  #top #tit .logo img {
    width: 100%;
  }
  #top #tit .logo_base, #top #tit .logo_reflection {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  #top #tit .logo_reflection {
    background-size: cover;
    overflow: hidden;
    height: 0;
  }
  #top #tit .info {
    text-align: center;
    margin-bottom: 5px;
  }
  #top #tit .info img {
    width: 46.5%;
    max-width: 900px;
  }
  #top #tit .bnr {
    text-align: center;
    margin-top: 30px;
  }
  #top #tit .bnr img {
    width: 26.5%;
    max-width: 250px;
    padding: 2% 1% ;
  }

  section {
    position: relative;
    padding: 155px 0;
  }
  section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-family: "Muro", Helvetica, sans-serif;
    font-size: 30px;
    font-size: 2.5rem;
    color: #f29200;
  }
  section h2 img {
    width: 13%;
    max-width: 180px;
  }

  .bnr_area {
    width: 80%;
    max-width: 1000px;
  }
  #trailer {
    position: relative;
    margin-top: calc(-2% - 50px);
    padding-bottom: 8%;
    /*padding-top: 40px;*/
  }
  #trailer .trailer_wrap {
    max-width: 850px;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  #trailer .trailer_wrap .trailer {
    /*width: 26%;
    margin: 0 2% 0 2%;*/
    width: 44%;
    margin: 2% 2% 0 2%;
    position: relative;
  }
  #trailer .trailer_wrap .trailer div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  #trailer .trailer_wrap .trailer iframe, #trailer .trailer_wrap .trailer span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #intro {
    padding: 0;
  }
  #intro h2 {
    text-align: left;
  }
  #intro h2 img {
    width: 40%;
  }
  #intro h3 {
    margin: 3% 0 15px 0;
    text-align: left;
    max-width: 360px;
  }
  #intro .story_detail {
    margin-left: 46%;
    width: 42%;
    margin-top: auto;
  }
  #intro .intro_bg {
    position: relative;
  }
  #intro .intro_bg .intro_pc {
    display: inline;
  }
  #intro .intro_bg .intro_sp {
    display: none;
  }
  #intro .intro_inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 13% 0 0 0;
  }
  #intro p {
    font-size: 4px;
    font-size: 1.0666666667vw;
    letter-spacing: -0.9px;
    text-align: justify;
  }
  #intro p small {
    font-size: 70%;
    display: inline-block;
    margin-top: -0.7em;
    letter-spacing: -0.6px;
  }

  #section01 {
    position: relative;
    min-height: 700px;
  }
  #section01 .diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #section01 #section01_video-area {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #section01 #video_section01 {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    height: 59.25vw;
    min-height: 155%;
    min-width: 155%;
  }

  #story {
    padding: 65px 0 50px;
  }
  #story h2 {
    margin-bottom: 0;
  }
  #story h2 img {
    width: 22%;
  }
  #story .wrapper {
    max-width: 800px;
  }
  #story #story_video-area {
    position: fixed;
    z-index: -3;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #story #video_story {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    height: 59.25vw;
    min-height: 155%;
    min-width: 155%;
  }
  #story .video_mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/mesh.png") repeat;
  }
  #story h3 {
    margin: 10px auto 20px;
  }
  #story p {
    margin: 20px auto;
    font-style: normal;
    font-size: 17px;
    font-size: 1.4166666667rem;
    font-weight: bold;
    letter-spacing: 0.7px;
    text-align: center;
    line-height: 1.8;
  }
  #story h4 {
    margin: 20px auto;
  }

  footer {
    margin-top: 0px;
    padding: 0px 0 0px;
    position: relative;
    background-size: cover;
    background: transparent;
    color: #fff;
  }
  footer .footer_bg {
    display: block;
  }
  footer .footer_inner {
    position: absolute;
    top: 0;
    width: 100%;
  }
  footer .footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 53%;
    padding-top: 11%;
    margin-left: 34%;
    min-width: 450px;
  }
  footer .footer_logo {
    text-align: center;
    margin: 0 auto 8px;
    width: 68%;
    max-width: 380px;
  }
  footer .credit p {
    color: #fff;
    font-size: 3px;
    font-size: 0.8vw;
    text-align: center;
    margin: 2% auto 2%;
    letter-spacing: -1px;
    text-shadow: none;
  }
  footer .credit p small {
    letter-spacing: -0.2px;
    font-size: 11px;
    font-size: 0.9166666667rem;
  }
  footer .icon ul {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  footer .icon ul li {
    display: inline-block;
    text-align: center;
    width: 29%;
  }
  footer .copyrights {
    position: absolute;
    bottom: 0px;
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: 15px;
    margin-bottom: 5px;
  }
  footer .copyrights .copy_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  footer .copyrights .ico_sony {
    margin-right: 30px;
    margin-bottom: 10px;
  }
  footer .copyrights .ico_sony img {
    max-width: 35px;
  }
  footer .copyrights .copy {
    color: #fff;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  footer .copyrights p {
    color: #fff;
    font-size: 10px;
    font-size: 0.8333333333rem;
    margin-bottom: 10px;
  }
  footer .copyrights p a {
    color: #fff;
    text-decoration: underline;
  }

  #loading {
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-position: center center;
    background-size: cover;
  }
  #loading .loading-txt {
    position: absolute;
    top: 22%;
    left: 14%;
    width: 80px;
  }
  #loading #op_video-area {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #loading #video_op {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    height: 59.25vw;
    min-height: 160%;
    min-width: 160%;
  }
  #loading #loading_video-area {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #loading #video_loading {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    height: 59.25vw;
    min-height: 100%;
    min-width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  footer {
    margin-top: 0px;
    padding: 0px 0 0px;
    position: relative;
    background-size: cover;
    color: #fff;
  }
  footer .footer_inner {
    position: absolute;
    top: 0;
    width: 100%;
  }
  footer .footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44%;
    padding-top: 12%;
    margin-left: 36%;
    min-width: 470px;
  }
  footer .footer_logo {
    text-align: center;
    margin-bottom: 8px;
    width: 90%;
    max-width: 500px;
  }
  footer .credit p {
    color: #fff;
    font-size: 3px;
    font-size: 0.8vw;
    text-align: center;
    margin: 3% auto 2.5%;
    letter-spacing: -1px;
  }
  footer .credit p small {
    letter-spacing: -0.2px;
    font-size: 11px;
    font-size: 0.9166666667rem;
  }
  footer .icon ul {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  footer .icon ul li {
    display: inline-block;
    text-align: center;
    width: 33%;
  }
  footer .copyrights {
    position: absolute;
    bottom: 0px;
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-left: 20px;
    margin-bottom: 10px;
  }
  footer .copyrights .copy_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  footer .copyrights .ico_sony {
    margin-right: 30px;
    margin-bottom: 10px;
  }
  footer .copyrights .ico_sony img {
    max-width: 35px;
  }
  footer .copyrights .copy {
    color: #fff;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  footer .copyrights p {
    color: #fff;
    font-size: 10px;
    font-size: 0.8333333333rem;
    margin-bottom: 10px;
  }
  footer .copyrights p a {
    color: #fff;
    text-decoration: underline;
  }
}


/* コンテンツ　ポジション　調節*/

@media screen and (min-width: 900px) {
  #trailer {
    /*border: 1px solid rgb(69, 47, 119);*/
    margin-top: calc(10% - 50px);
  }
}


@media screen and (min-width: 1000px) {
  #trailer {
    /*border: 1px solid rgb(47, 119, 91);*/
  }

  #top #tit {
    top: 43%;
  }
}

@media screen and (min-width: 1440px) {
  #trailer {
    /*border: 1px solid rgb(238, 255, 0);*/
    margin-top: calc(2% - 50px);
  }

  #top #tit {
    top: 45%;
  }
}


@media screen and (min-width: 1920px) {
  #trailer {
    /*border: 1px solid red;*/
    margin-top: calc(2% - 50px);
  }

  #top #tit {
    top: 52%;
  }
}

@media screen and (min-width: 2560px) {
  #trailer {
    /*border: 1px solid rgb(255, 0, 200);*/
    margin-top: calc(1% - 50px);
  }

  #top #tit {
    top: 58%;
  }
}



/*# sourceMappingURL=main.css.map */

.btn_digital{
  width: 80%;
  max-width: 350px;
  margin: 50px auto;
  background: #c68113;
  display: block;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 130%;
  color: white;
 }

 .btn_digital:hover{
   opacity: 0.3;
 }


 @media screen and (min-width: 900px) {


.btn_digital{
 width: 350px; 
 margin:50px auto; 
 background: #c68113; 
 display: block; 
 padding:20px; 
 text-align: center;
 font-size: 18px;
 color:white;
}
}



/**/

@media screen and (max-width: 450px) {
#trailer .trailer_wrap .trailer {
  width: 100%;
  margin: 2%;
  position: relative;
}

#trailer {
  padding-top: 180px;
}
}