/* スクロールバーcss ここから */
::-webkit-scrollbar{
	width: 5px;
}
::-webkit-scrollbar-track{
	background-color: #000;
}
::-webkit-scrollbar-thumb{
	background-color: #FFF;
	border-radius: 10px;
}
/* スクロールバーcss ここまで */

/* ドラッグ時背景 ここから */
::-moz-selection {
	background-color: #31f2ffe0;
}

::selection {
	background-color: #31f2ffe0;
}
/* ドラッグ時背景 ここまで */

html {
	font-size: 62.5%;
	height: 100%;
	min-height: 100vh;
	scroll-padding-top: 100px;
}
/* loading中はスクロール禁止 */
.body_loading {
	overflow: hidden;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #fff;
	font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	min-width: 320px;
	overflow: auto;
	height: 100%;
}

body.top-bg::before{
	background-image: url("../images/img_topbg.webp");
	background-size: cover;
	background-position: center;
	position: fixed;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
body.top-bg::after{
	background-color: rgba(0,0,0, .3);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
body.article-bg::before{
	background-image: url("../images/img_articlebg.webp");
	background-size: cover;
	background-position: center;
	position: fixed;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
body.article-bg::after{
	background-color: rgba(0,0,0, .6);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
/* ハンバーガーメニュー展開後 背景固定 ここから */
body.active {
	height: 100%;
	overflow: hidden;
}
body.noactive {
	height: 100%;
	overflow: auto;
}
/* ハンバーガーメニュー展開後 背景固定 ここまで */
* {
	box-sizing: border-box
}
:after, :before {
	box-sizing: inherit
}
ul {
	list-style: none
}
img {
	height: auto;
	vertical-align: bottom
}
.img-border{
	border: 1px solid #7e9094;
}
iframe, img {
	border: 0;
	max-width: 100%
}
video{
	width: 100%;
	max-width: 700px;
}
/* ローディング画面 ここから */
#loading {
	width: 100vw;
	height: 100vh;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2147483647;
}

#loading_barWrap {
	width: 100vw;
	height: calc(1rem + 5px);
	position: fixed;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%)
}
p.image{
	text-align: center;
}
#loading_barWrap img{
	width: 100%;
	max-width: 250px;
}

#loading_bar {
	width: 0;
	height: 1px;
	background: #fff;
	transition-duration: 1s;
}

.loadingNone {
	animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
	0% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		display: none;
	}
}

/* ローディング画面 ここまで */

/* グローバルナビ ここから */
#g-nav{
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
	/*ナビの位置と形状*/
	top:0;
	width:100%;
	height: 100vh;/*ナビの高さ*/
	background:#000;
	/*動き*/
	transition: opacity;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 0.9;
	z-index:999999;
}

#g-nav.panelactive #g-nav-list{
	z-index: 995; 
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* ナビゲーション内文字サイズ PC */
.g-nav-main{
	display: none;
	flex-direction: column;
	max-width: 365px;
	width: 100%;
}

/*ナビゲーション*/
/*#g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:35%;
    left:50%;
    transform: translate(-50%,-50%);
}*/

#g-nav.panelactive ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#g-nav.panelactive ul.sns-wrap{
	width: 290px;
	justify-content: space-around;
}

#g-nav.panelactive ul.c-lang{
	flex-wrap: nowrap;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
	text-align: center; 
}

#g-nav li a{
	text-decoration: none;
	padding:10px;
	display: inline-block;
	font-weight: bold;
	font-size: 50px;
	margin-bottom: 10px;
}

#g-nav li a.gnavi-sns-icon{
	font-size: 50px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
	position:fixed;
	z-index: 998;/*ボタンを最前面に*/
	right: 10px;
	cursor: pointer;
	width: 50px;
	height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #FFFFFF;
	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px; 
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

.openbtn1.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}



/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 99999;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
	opacity: 0;
	transform: translateY(100px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
	opacity: 1;
	transform: translateY(0);
  }
  to {
	opacity: 1;
	transform: translateY(100px);
  }
}
/* グローバルナビ ここまで */

/* マニュアル・DLCリンク ここから */
.l-contents > .DLC_Manual_link_container{
	padding: 0 8px;
}
.DLC_Manual_link_container h2{
	margin-bottom: 50px;
	text-shadow: 0 0 15px #4cf4ff;
	font-size: 30px;
}
.DLC_Manual_link_wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
/* マニュアル・DLCリンク ここまで */

/* キャッチコピー ここから */
span.top-catchcopy{
	position: absolute;
	top: 0;
	bottom: 35%;
	left: 1%;
	margin: auto;
	height: 100px;
	width: 375px;
}
/* キャッチコピー ここまで */

.introduction{
	max-width: 1920px;
	width: 100%;
	font-size: 16px;
	color: #FFF;
	margin: 100px auto 60px auto;
	background-image: url("../images/battle02.png");
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 600px;
	position: relative;
}
.introduction::before{
	display: block;
	content: '';
	background-color: rgba(0,0,0,.5);
	position: absolute;
	max-width: 1920px;
	width: 100%;
	min-height: 670px;
	top: 0;
	left: 0;
}
.introduction_txt{
	max-width: 700px;
	line-height: 2;
	margin: 0 auto;
	font-size: 15px;
	color: #FFF;
	padding: 0 20px;
}
.introduction_txt p{
	margin: 0 auto;
	color: #FFF;
}

.head-wrap{
	margin: 100px auto;
}

p.top-txt{
	max-width: 700px;
	font-size: 15px;
	margin: 0 auto;
	line-height: 2;
}

/* 見出しアニメーション ここから */
.game_about_title_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 150px;
	margin-bottom: 50px;
	padding: 0 20px;
}
.line{
	height: 2px;
	width: 300px;
	background-color: #FFF;
	transition: width 1s;
}

.game_about_title{
	margin: 0 20px;
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}
/* 見出しアニメーション ここまで */
.game_stage_inner{
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px auto;
	gap: 0 50px;
}
.game_stage{
	width: 100%;
	max-width: 550px;
}
.game_about_image{
	width: 100%;
	max-width: 550px;
}
div.game_about_image > .game_about_pilot_stage img{
	width: 100%;
	max-width: 800px;
}
.game_about_single{
	width: 100%;
	max-width: 800px;
}
.fadein-bottom{
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(30px);
  opacity: 0;
}
.fadein-bottom.active{
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  translateY(0) translate(0%, 0%);
  opacity: 1;
}
.absolute-margin{
	margin-top: 150px;
}

.image-wrap {
    position: relative;
    box-sizing: border-box;
	width: 100%;
	max-width: 1100px;
}
.image-wrap img{
	width: 100%;
}

.right-image-wrap {
    position: relative;
    box-sizing: border-box;
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	min-height: 700px;
}
.right-image-wrap img{
	width: 100%;
}
.game_stage_wrap{
	padding: 0 20px;
}
.game_about{
	width: 100%;
	max-width: 1800px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	font-size: 15px;
	padding: 0 20px;
}
.game_about_image img{
	width: 100%;
	max-width: 550px;
}
.game_about_dlc{
	width: 100%;
	max-width: 400px;
}
.game_about_image img.game_about_dlc_image{
	width: 100%;
	max-width: 350px;
}
.image-wrap-right {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1600px;

	margin: 0 auto;
}
.image-wrap-right img{
	width: 100%;
}

.two-image-wrap{
	margin-bottom: 150px;
}

p.and_more{
	max-width: 260px;
	margin: 25px auto 0 auto;
}

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0
}
[hidden] {
    display: none!important
}
[disabled] {
    cursor: not-allowed
}
:focus:not(.focus-visible), :focus:not(:focus-visible) {
    outline: none
}
@-webkit-keyframes slideDown {
	0% {
		visibility:visible;
		transform:translate3d(0, -100%, 0)
	}
	to {
		transform:translateZ(0)
	}
}
@keyframes slideDown {
	0% {
		visibility:visible;
		transform:translate3d(0, -100%, 0)
	}
	to {
		transform:translateZ(0)
	}
}
@-webkit-keyframes slideUp {
	0% {
		visibility:visible;
		transform:translateZ(0)
	}
	to {
		transform:translate3d(0, -100%, 0)
	}
}
@keyframes slideUp {
	0% {
		visibility:visible;
		transform:translateZ(0)
	}
	to {
		transform:translate3d(0, -100%, 0)
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
@keyframes fadeIn {
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
@-webkit-keyframes loading {
0%, to {
box-shadow:0 -3em 0 .2em, 2em -2em 0 0, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0
}
12.5% {
box-shadow:0 -3em 0 0, 2em -2em 0 .2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
25% {
box-shadow:0 -3em 0 -.5em, 2em -2em 0 0, 3em 0 0 .2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
37.5% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 0, 2em 2em 0 .2em, 0 3em 0 0, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
50% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0, 0 3em 0 .2em, -2em 2em 0 0, -3em 0 0 -1em, -2em -2em 0 -1em
}
62.5% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 .2em, -3em 0 0 0, -2em -2em 0 -1em
}
75% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 .2em, -2em -2em 0 0
}
87.5% {
box-shadow:0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 0, -2em -2em 0 .2em
}
}
@keyframes loading {
0%, to {
box-shadow:0 -3em 0 .2em, 2em -2em 0 0, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0
}
12.5% {
box-shadow:0 -3em 0 0, 2em -2em 0 .2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
25% {
box-shadow:0 -3em 0 -.5em, 2em -2em 0 0, 3em 0 0 .2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
37.5% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 0, 2em 2em 0 .2em, 0 3em 0 0, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em
}
50% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0, 0 3em 0 .2em, -2em 2em 0 0, -3em 0 0 -1em, -2em -2em 0 -1em
}
62.5% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 .2em, -3em 0 0 0, -2em -2em 0 -1em
}
75% {
box-shadow:0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 .2em, -2em -2em 0 0
}
87.5% {
box-shadow:0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 0, -2em -2em 0 .2em
}
}

p {
    margin: 1.5em 0
}
a {
    color: currentColor;
    transition: opacity .2s;
	word-break: break-all;
}
a:hover {
    opacity: .7;
    text-decoration: none
}
@font-face {
    font-family: "snsicon";
    src: url(../fonts/snsicon.ttf) format("truetype"), url(../fonts/snsicon.woff) format("woff"), url(../fonts/snsicon.svg) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.icon {
    font-family: "snsicon"!important;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.icon-hatena:before {
    content: ""
}
.icon-instagram:before {
    content: ""
}
.icon-facebook:before {
    content: ""
}
.icon-line:before {
    content: ""
}
.icon-youtube:before {
    content: ""
}
.icon-twitter:before {
    content: ""
}

.flex {
    display: flex
}
.flex-wrap {
    flex-wrap: wrap
}
.flex-inline {
    display: inline-flex
}
.flex-inline.justify-center, .flex.justify-center {
    justify-content: center
}
.flex-inline.justify-end, .flex.justify-end {
    justify-content: flex-end
}
.flex-inline.justify-space-between, .flex.justify-space-between {
    justify-content: space-between
}
.flex-inline.align-center, .flex.align-center {
    align-items: center
}
.flex-inline.align-baseline, .flex.align-baseline {
    align-items: baseline
}
.flex-inline .flex-col, .flex .flex-col {
    padding: 1.2rem
}
.flex-inline .col-12, .flex .col-12 {
    width: 100%
}
.flex-inline .col-10, .flex .col-10 {
    width: 83.33%
}
.flex-inline .col-9, .flex .col-9 {
    width: 75%
}
.flex-inline .col-8, .flex .col-8 {
    width: 66.66%
}
.flex-inline .col-7, .flex .col-7 {
    width: 58.33%
}
.flex-inline .col-6, .flex .col-6 {
    width: 50%
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}
.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    outline: none;
    padding: .5em 1.5em;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
    vertical-align: top
}
.button.is-square {
    border-radius: 0
}
.button.is-round {
    border-radius: 8px
}
.button.is-circle {
    border-radius: 50px
}
.button.is-small {
    font-size: .75em
}
.button.is-medium {
    font-size: 1.25em
}
.button.is-large {
    font-size: 1.5em
}
.button.is-fullwidth {
    display: flex;
    width: 100%
}
.button-icon:first-child {
    margin-left: -.25em;
    margin-right: .25em
}
.button-icon:last-child {
    margin-left: .25em;
    margin-right: -.25em
}
.button-icon:not(:first-child):not(:last-child) {
    margin-left: .25em;
    margin-right: .25em
}
.button-icon:first-child:last-child {
    margin-left: -.25em;
    margin-right: -.25em
}
.button-primary {
    border: none;
    border-right: 2px solid #bad6db;
    border-left: 2px solid #7e9094;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1
}
.button-primary:after, .button-primary:before {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    width: 100%;
}
.button-primary:before {
    background: linear-gradient(90deg, #bad6db 60%, #7e9094);
    top: 0
}
.button-primary:after {
    background: linear-gradient(90deg, #bad6db, #7e9094 30%);
    bottom: 0;
}
.button-primary-inner {
    background: linear-gradient(150deg, #bad6db 30%, #7e9094 60%);
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .3s ease-out;
    width: 100%;
    z-index: -1;
}
.button-primary:hover:not(:disabled):not(.is-disabled) {
    border-left: 2px solid #bad6db;
    border-right: 2px solid #7e9094;
    opacity: 1;
	color: #000000;
}
.button-primary:hover:not(:disabled):not(.is-disabled) .button-primary-inner {
    opacity: 1;
}
.button-primary.is-disabled {
    border: none
}
.button-primary.is-disabled:after, .button-primary.is-disabled:before {
    content: none
}
.button-secondary {
    border: none;
    box-sizing: content-box;
    color: #fff;
    display: inline-block;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 4px;
    position: relative
}
.button-secondary:after, .button-secondary:before {
    border: 2px solid transparent;
    content: "";
    display: block;
    position: absolute;
    transition: all .4s ease
}
.button-secondary:before {
    border-left-color: #0082f0;
    border-top-color: #0082f0;
    bottom: 50%;
    left: 0;
    right: 80%;
    top: 0
}
.button-secondary:after {
    border-bottom-color: #0082f0;
    border-right-color: #0082f0;
    bottom: 0;
    left: 80%;
    right: 0;
    top: 50%
}
.button-secondary:hover .button-secondary-inner {
    background-color: #0082f0
}
.button-secondary:hover:after, .button-secondary:hover:before {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0
}
.button-secondary-inner {
    background-color: hsla(0,0%,100%,.1);
    border: 2px solid #0082f0;
    display: block;
    height: 100%;
    padding: 16px 32px;
    transition: border-radius .3s ease
}
.button-general {
    background-color: #002d52;
    border-color: #0082f0;
    color: #fff;
    font-weight: 700;
    padding: 8px 32px;
    transition: border .3s ease-in, box-shadow .4s ease-out
}
.button-general:hover:not(:disabled):not(.is-disabled) {
    background-color: #002d52;
    border-color: #15c9f6;
    box-shadow: 0 0 20px 5px #0082f0
}

.c-card-inner {
    display: block;
    text-decoration: none
}
.c-card-thumbnail {
    text-align: center
}
.c-card-body {
    padding: 8px
}
.c-content {
    white-space: pre-line;
    max-width: 752px
}
.c-content, .c-datalist {
    margin: auto;
    padding: 0 16px
}
.c-datalist {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}
.c-datalist dd, .c-datalist dt {
    padding: 8px;
    width: 100%
}
.c-datalist dt {
    background: rgba(126,144,148,.5)
}
.c-datalist dd {
    white-space: pre-line
}

.heading, .nuxt-content h2, .nuxt-content h3, .nuxt-content h4, .nuxt-content h5, .nuxt-content h6 {
    color: inherit;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.5;
	margin-bottom: 2.4rem;
}
.heading span, .nuxt-content h2 span, .nuxt-content h3 span, .nuxt-content h4 span, .nuxt-content h5 span, .nuxt-content h6 span {
    display: inline-block;
    font-weight: inherit
}
.heading.is-small, .nuxt-content h2.is-small, .nuxt-content h3.is-small, .nuxt-content h4.is-small, .nuxt-content h5.is-small, .nuxt-content h6.is-small {
    font-size: 18px;
    font-size: 1.8rem
}
.heading.is-medium, .nuxt-content h2.is-medium, .nuxt-content h3.is-medium, .nuxt-content h4.is-medium, .nuxt-content h5.is-medium, .nuxt-content h6.is-medium {
    font-size: 24px;
    font-size: 2.4rem
}
.heading.is-large, .nuxt-content h2.is-large, .nuxt-content h3.is-large, .nuxt-content h4.is-large, .nuxt-content h5.is-large, .nuxt-content h6.is-large {
    font-size: 32px;
    font-size: 3.2rem
}
.heading.is-xlarge, .nuxt-content h2.is-xlarge, .nuxt-content h3.is-xlarge, .nuxt-content h4.is-xlarge, .nuxt-content h5.is-xlarge, .nuxt-content h6.is-xlarge {
    font-size: 40px;
    font-size: 4rem
}
.heading.is-2xlarge, .nuxt-content h2.is-2xlarge, .nuxt-content h3.is-2xlarge, .nuxt-content h4.is-2xlarge, .nuxt-content h5.is-2xlarge, .nuxt-content h6.is-2xlarge {
    font-size: 56px;
    font-size: 5.6rem
}
.heading.is-nospace, .nuxt-content h2.is-nospace, .nuxt-content h3.is-nospace, .nuxt-content h4.is-nospace, .nuxt-content h5.is-nospace, .nuxt-content h6.is-nospace {
    margin-bottom: 0
}
.heading-primary {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px #002d52, 0 0 10px #fff, 0 0 15px #0082f0, 0 0 20px #0082f0, 0 0 25px #0082f0, 0 0 30px #0082f0, 0 0 35px #0082f0
}
.heading-image {
    position: relative;
    text-align: center;
	padding: 20px 0;
}

.c-list>li {
    line-height: 1.5;
    margin-bottom: .5em
}
.c-list>li:last-child {
    margin-bottom: 0
}
.c-list-square {
    padding-left: 2em
}
.c-list-square>li {
    line-height: 1.5;
    list-style-type: square;
    margin-bottom: .5em
}
.c-list-square>li:last-child {
    margin-bottom: 0
}
.c-list-decimal, .nuxt-content ol {
    padding-left: 2em
}
.c-list-decimal>li, .nuxt-content ol>li {
    line-height: 1.5;
    list-style-type: decimal;
    margin-bottom: .5em
}
.c-list-decimal>li:last-child, .nuxt-content ol>li:last-child {
    margin-bottom: 0
}
.c-list-dots, .nuxt-content ul {
    padding-left: 2em
}
.c-list-dots>li, .nuxt-content ul>li {
    line-height: 1.5;
    list-style-type: disc;
    margin-bottom: .5em
}
.c-list-dots>li:last-child, .nuxt-content ul>li:last-child {
    margin-bottom: 0
}
.c-list-bracket {
    padding-left: 2em
}
.c-list-bracket>li {
    counter-increment: count_bracket;
    line-height: 1.5;
    margin-bottom: .5em;
    text-indent: -1.8em
}
.c-list-bracket>li:last-child {
    margin-bottom: 0
}
.c-list-bracket>li:before {
    display: marker;
    content: counter(count_bracket) " ) "
}

.c-media {
    padding: 16px 0;
    position: relative
}
.c-media-inner {
    display: flex;
    text-decoration: none
}
.c-media-thumbnail {
    text-align: center;
    width: 40%
}
.c-media-body {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    width: 60%
}
.c-media-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 72px;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis
}
.c-media-tag {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px 0
}
.c-media-meta {
    font-size: 11px;
    font-size: 1.1rem
}

.c-movie {
    margin: auto;
    max-width: 752px
}
.c-movie-content {
    padding-bottom: 56.25%;
    position: relative
}
.c-movie-content>iframe {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}
.c-movie-contents {
    padding-bottom: 56.25%;
    position: relative
}
.c-movie-contents>iframe {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}

.c-share {
    display: flex;
    justify-content: space-between
}
.c-share-button {
    border-radius: 8px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 7px 8px 8px;
    text-align: center;
    text-decoration: none;
    transition: opacity .3s;
    width: 32%
}
.c-share-button:hover {
    opacity: .7
}
.c-share-button-facebook {
    background: #1778f2
}
.c-share-button-twitter {
    background: #1da1f2
}
.c-share-button-line {
    background: #00b900
}
.c-lang {
    display: flex;
    justify-content: center;
	/*margin-right: 70px;*/
	border-left: 3px solid;
	padding-left: 10px;
}
.c-lang-item {
    margin: 0 4px
}
.c-lang-text {
    color: #f0f0f0;
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 4px 16px;
    text-align: center;
    text-decoration: none
}
.c-lang-text.is-active {
    cursor: pointer
}
.c-lang-text.is-current {
    background-color: #bad6db;
    color: #000;
}

.input, .select select, .textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 4px;
    box-shadow: none;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    padding: .5em .75em;
    max-width: 100%
}
.input::-moz-placeholder, .select select::-moz-placeholder, .textarea::-moz-placeholder {
color:#999
}
.input:-ms-input-placeholder, .select select:-ms-input-placeholder, .textarea:-ms-input-placeholder {
color:#999
}
.input::placeholder, .select select::placeholder, .textarea::placeholder {
color:#999
}
.input:focus, .select select:focus, .textarea:focus {
    border-color: rgba(0,130,240,.5);
    box-shadow: inset 0 0 4px rgba(0,130,240,.5);
    outline: none
}

.select select[readonly], [readonly].input, [readonly].textarea {
    border: 1px solid #999;
    box-shadow: none
}
.is-error.input, .is-error.textarea, .select select.is-error {
    border-color: rgba(255,113,113,.5);
    box-shadow: inset 0 0 4px rgba(255,113,113,.5)
}

.checkbox-container.is-standard .checkbox+.checkbox-label, .radio-container.is-standard .radio+.radio-label {
    padding-left: 1.4em;
    position: relative
}
.checkbox-container.is-standard .checkbox+.checkbox-label:before, .radio-container.is-standard .radio+.radio-label:before {
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 4px;
    box-shadow: none;
    content: "";
    display: block;
    height: 1.2em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-54%);
    width: 1.2em
}
.checkbox-container.is-standard .checkbox+.checkbox-label:after, .radio-container.is-standard .radio+.radio-label:after {
    content: "";
    display: block;
    position: absolute
}
.checkbox-container.is-standard .checkbox:focus+.checkbox-label:before, .radio-container.is-standard .radio:focus+.radio-label:before {
    border-color: rgba(0,130,240,.5);
    box-shadow: 0 0 4px rgba(0,130,240,.5)
}

.form-field:not(:last-child) {
    margin-bottom: 3.2rem
}
.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: .8rem
}
.form-body {
    display: flex
}
.form-body.is-center {
    justify-content: center
}
.form-body.is-right {
    justify-content: flex-end
}
.form-body.is-multiline {
    flex-wrap: wrap
}
.form-guide {
    display: block;
    font-size: 1.2rem
}
.form-guide.is-error {
    color: #ff7171;
    font-weight: 700
}

.input {
    width: 100%;
    max-width: 100%
}
.input.is-round {
    border-radius: 50px;
    padding: .5em 1.125em
}
.input.is-small {
    font-size: .75em
}
.input.is-medium {
    font-size: 1.25em
}
.input.is-large {
    font-size: 1.5em
}

.textarea {
    display: block;
    min-height: 8em;
    resize: vertical;
    width: 100%;
    max-width: 100%
}
.textarea.is-small {
    font-size: .75em
}
.textarea.is-medium {
    font-size: 1.25em
}
.textarea.is-large {
    font-size: 1.5em
}

.checkbox {
    margin-right: .5em;
    cursor: pointer;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox
}
.checkbox-label {
    display: inline-block;
    line-height: 1.5
}
.checkbox-container {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1em;
    margin-right: 1em;
    position: relative
}
.checkbox-container.is-standard .checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute
}
.checkbox-container.is-standard .checkbox+.checkbox-label:after {
    border: 2.4px solid transparent;
    border-radius: 2px;
    height: .8em;
    left: .3em;
    top: .2em;
    transform: rotate(45deg);
    width: .6em
}
.checkbox-container.is-standard .checkbox:checked+.checkbox-label:before {
    border-color: #0082f0
}
.checkbox-container.is-standard .checkbox:checked+.checkbox-label:after {
    border-bottom-color: #0082f0;
    border-right-color: #0082f0
}
.checkbox-container.is-standard .checkbox:disabled+.checkbox-label:before {
    background-color: #b0b0b0;
    box-shadow: none
}

.radio {
    margin-right: .5em;
    cursor: pointer
}
.radio-label {
    display: inline-block;
    line-height: 1.5
}
.radio-container {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1em;
    margin-right: 1em;
    position: relative
}
.radio-container.is-standard .radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    position: absolute
}
.radio-container.is-standard .radio+.radio-label:before {
    border-radius: 50%
}
.radio-container.is-standard .radio+.radio-label:after {
    background-color: transparent;
    border-radius: 50%;
    height: .6em;
    left: .3em;
    top: .38em;
    width: .6em
}
.radio-container.is-standard .radio:checked+.radio-label:before {
    border-color: #0082f0
}
.radio-container.is-standard .radio:checked+.radio-label:after {
    background-color: #0082f0
}
.radio-container.is-standard .radio:disabled+.radio-label:before {
    background-color: #b0b0b0;
    box-shadow: none
}

.select {
    display: inline-block;
    position: relative;
    vertical-align: top;
    max-width: 100%
}
.select:after {
    border: 6px solid transparent;
    border-top-color: #0082f0;
    content: "";
    pointer-events: none;
    position: absolute;
    right: .5em;
    top: 58%;
    transform: translateY(-50%)
}
.select select {
    cursor: pointer;
    padding-right: 2em
}
.select select::-ms-expand {
display:none
}
.select select option:disabled {
    background-color: #b0b0b0
}
.select.is-fullwidth, .select.is-fullwidth>select {
    width: 100%
}

.l-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 320px
}

.l-header {
    position: fixed;
    z-index: 99999999;
	width: 100%;
}
.l-header-inner {
    background: #000;
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 8px;
	border-bottom: 2px solid #7e9094
}
.innner_header{
	display: flex;
	gap: 20px;
	font-size: 20px;
	font-weight: bold;
}
.innner_header li a{
	text-decoration: none;
}
.l-header-logo {
    display: inline-block;
    margin-right: auto;
    width: 188px
}
.l-header-storebutton {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px
}

/* PC クラウドファンディングバナー ここから */
.PC_crowdfunding_wrap{
	position: absolute;
	right: 0;
	top: 25%;
}
.PC_crowdfunding_wrap img{
	width: 100%;
	max-width: 350px;
}
/* PC クラウドファンディングバナー ここまで */

/* スマホ用言語切替 表示設定
.l-header-lang {
    display: none;
}
*/
.l-header-drawer{
    position: absolute;
    top: 54px;
    z-index: -1
}
.l-header-drawer {
    background: #060d15;
    padding: 56px 8px 8px;
    left: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform .3s;
    width: 100%
}
.l-header-drawer.is-active {
    transform: translateZ(0)
}
.l-header-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    align-items: center;
    height: 40px;
    outline: none;
    position: fixed;
    right: 8px;
    top: 8px;
    width: 40px
}
.l-header-drawer-close:after, .l-header-drawer-close:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    transition: .3s ease-out;
    width: 18px
}
.l-header-drawer-close:before {
    transform: rotate(-135deg)
}
.l-header-drawer-close:after {
    transform: rotate(135deg)
}

.l-nav {
    width: 100%
}
.l-nav-drawer {
    background: rgba(0,0,0,.8);
    opacity: 0;
    padding: 64px 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    visibility: hidden;
    z-index: -1
}
.l-nav.is-active .l-nav-drawer {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
    z-index: 99
}
.l-nav-list {
    display: flex;
    flex-wrap: wrap
}
.l-nav-item {
    text-align: center;
    width: 100%
}
.l-nav-text {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 8px 32px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, color .2s
}
.l-nav-text:hover {
    opacity: 1
}
.l-nav-dropdown {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .6s, visibility 0s ease .6s;
    width: 100%;
    visibility: hidden
}
.l-nav-item.is-dropdown-opened .l-nav-dropdown {
    height: auto;
    opacity: 1;
    transition-delay: 0s;
    visibility: visible
}
.l-nav-dropdown-item {
    width: 100%
}
.l-nav-dropdown-text {
    color: #fff;
    display: block;
    font-weight: 700;
    padding: 8px 32px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s, text-shadow .3s
}
.l-nav-dropdown-text:hover {
    background-color: #15c9f6;
    text-shadow: 0 0 1px #060d15, 0 0 2px #060d15;
    opacity: 1
}
.l-nav-dropdown-trigger {
    padding-right: 32px;
    position: relative
}
.l-nav-dropdown-trigger .icon {
    background-color: #f0f0f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #0082f0;
    display: block;
    height: 8px;
    position: absolute;
    right: 12px;
    top: 54%;
    transform: translateY(-50%);
    transition: background-color .2s;
    width: 8px
}
.l-nav-item.is-dropdown-opened .l-nav-dropdown-trigger .icon {
    background-color: #15c9f6
}

.l-nav-sns {
    text-align: center;
}
.l-nav-humberger{
	display: none;
}

.l-nav-humberger .line {
    background-color: #fff;
    display: block;
    height: 2px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    transition: .3s ease-out;
    width: 18px
}
.l-nav-humberger .line:first-child {
    transform: translateY(-5px)
}
.l-nav-humberger .line:last-child {
    transform: translateY(5px)
}
.l-nav.is-active .l-nav-humberger {
    top: 8px
}
.l-nav.is-active .l-nav-humberger .line:not(:first-child):not(:last-child) {
    opacity: 0
}
.l-nav.is-active .l-nav-humberger .line:first-child {
    transform: rotate(-135deg)
}
.l-nav.is-active .l-nav-humberger .line:last-child {
    transform: rotate(135deg)
}
.is-fixed{
	top: 8px;
}

.l-contents {
    margin: 0 auto auto;
    width: 100%;
	padding-bottom: 80px;
}
.l-contents-main, .l-contents-sub, .l-footer {
    width: 100%
}

.l-footer {
    background: #000;
    color: #f0f0f0;
}
.l-footer-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px 16px
}
.l-footer-logo {
    text-align: center;
    width: 100%
}
.l-footer-logo a {
    display: inline-block
}
.l-footer-contents {
    width: 100%
}
.l-footer-sns {
	margin-top: 32px;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.l-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-size: 1.2rem
}
.l-footer-nav-item {
    margin: 16px 8px 0
}
.l-footer-nav-text {
    text-decoration: none
}
.l-footer-copy {
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 16px
}
.footer_logo_play{
	width: 100%;
	max-width: 16px;
	vertical-align: middle;
}
.footer_logo_ps5{
	width: 100%;
	max-width: 40px;
	vertical-align: baseline;
}
.ps_credit{
	line-height: 2;
}

.l-section {
    margin: 80px auto;
    padding: 40px 0;
    position: relative;
    z-index: 1
}
.l-section.is-bordered:after, .l-section.is-bordered:before {
    background: linear-gradient(90deg, #7e9094 0, #bad6db 30%, #7e9094);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    width: 100%
}
.l-section.is-bordered:before {
    top: 0
}
.l-section.is-bordered:after {
    bottom: 0
}
.l-section-background {
    background-color: #060d15;
    background: repeating-linear-gradient(hsla(0,0%,100%,.1), hsla(0,0%,100%,.1) 3px, rgba(0,0,0,.1) 0, rgba(0,0,0,.1) 6px), linear-gradient(90deg, #111111  0, #272727);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1
}
.l-section-inner {
	margin: auto;
	max-width: 900px;
}

.world-txt_bg{
	background-image: url("../images/introduction_bg.webp");
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}

/* 2022.08.16 add start */

.home-overview-text h2{
	font-size: 25px;
	font-weight: bold;
	background: linear-gradient(transparent 60%, #1342b8 40%);
}
.home-overview-text h2:first-letter{
	font-size: 35px;
	color: #FFFFFF;
}

div.home-overview-text{
	width: 100%;
	max-width: 400px;
}

div.home-overview-stage{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
}

div.home-overview-stage p{
	margin-right: 20px;
}

div.home-overview-stage p img{
	max-width: 380px;
}

p.game-overview-txt{
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 50%;
	padding: 30px;
}

div.home-overview-custom{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;

}

div.home-overview-stage-image{
	margin-top: 40px;
}

.annotation{
	font-size: 11px;
}

/* 2022.08.16 add end */

.twitter-box {
    background: rgb(39 39 39 / 40%);
    border: 1px solid #7e9094;
    padding: 8px;
}
.twitter-box-heading {
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 4px
}

.banner {
    background: rgba(39,39,39,.8);
    padding: 32px 16px 16px
}

.info-card {
    max-width: 640px
}
.info-card-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 16px
}
.info-card-container .info-card {
    margin: 0 8px 16px;
    width: 100%
}
.info-card-inner {
    background: rgba(39,39,39,.6);
    border: 1px solid #7e9094;
    box-shadow: 0 0 20px 0 transparent;
    transition: border .3s ease-in, box-shadow .5s ease-out
}
.info-card-inner:hover {
    border-color: #bad6db;
    box-shadow: 0 0 20px 5px #4cf4ff;
    opacity: 1
}
.info-card-date {
    color: #15c9f6;
    display: block;
    margin-bottom: 4px
}
.info-card-title {
    font-size: 15px;
    font-size: 1.5rem;
    height: 42px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 42px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

.hero {
    background-color: #000;
    position: relative;
    width: 100%;
	border-bottom: 2px solid #7e9094;
}
.hero-inner {
    background: url("../images/rtf3E_topbanner_smartphone.webp") no-repeat 50%/cover;
    margin: 0 auto;
    position: relative;
}
.hero-inner:before {
    content: "";
    display: block;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABjCAYAAABt56XsAAABI0lEQVR4nO3d0QnDMBAFwbOt/ms2AhUxoB1IA1ne2eQnz8zsTxCrIJaCYHaQ9/YvQdJCMAXBdLIwLQRTEEwnC9NCMC0EUxBMQTAFwfRQx7QQTEEwBcEUBFMQTEEwBcEUBLODfLd/CZIWgikIpiCYgmB6qGNaCKaFYFoIpiCYThamhWBaCKaFYAqC6WRhWgimhWBaCKYgmHU+QbQQTEEwvWVhWgimhWAKgulkYVoIpoVgCoLppxNMC8EUBNNbFqaFYFoIpoVgCoLpZGFaCKaFYFoIpiCYThamhWBaCKaFYAqCKQimIJge6pgWgikIpiCYgmAKgikIpiCYgmD6UzBMC8EUBFMQTEEwPdQxLQTTQjAFwXSyMC0EUxBMJwvTQjAFkczMD8GzAlXtctPVAAAAAElFTkSuQmCC) 50%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 99px
}
.hero-inner:after {
    content: "";
    display: block;
    padding-top: 135%
}
.hero-logo {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    width: 90%;
    max-width: 570px
}
.hero-logo.pc {
    display: none
}
.hero-logo.sp {
    display: inline
}
.hero-platform {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    position: absolute;
    bottom: 0;
    width: 100%
}
.hero-platform img {
    height: 30px;
    margin: 0 4px;
    width: auto
}


.hero-information {
    display: block;
    position: absolute;
    bottom: 386px;
    left: 4%;
    width: 320px;
    height: 60px;
    max-width: calc(100% - 15rem)
}
.hero-information a:hover {
    opacity: unset
}
.hero-information img {
    position: absolute;
    bottom: 0;
    left: 0
}
.hero-information img.hover {
    opacity: 0;
    transition: .25s;
    transition-timing-function: ease-in-out
}
.hero-information img.hover:hover {
    opacity: 1
}
.hero-twitter {
    display: none
}

.home-info {
    background: linear-gradient(180deg, #272727 0, transparent 70%, transparent);
    margin-bottom: 0;
    padding: 40px 16px;
    position: relative;
}
.home-info:before {
    background: linear-gradient(90deg, #7e9094 0, #bad6db 30%, #7e9094);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}
.home-info-slider {
    margin: auto
}
.home-info-slider.swiper-container {
    overflow: visible;
}
.home-info-slider .swiper-button-next, .home-info-slider .swiper-button-prev {
    display: none;
    height: 100%;
    margin-top: 0;
    top: 0;
    width: 100%;
}
.home-info-slider .swiper-button-next:after, .home-info-slider .swiper-button-prev:after {
    content: "";
    display: block;
    height: 82px;
    transition: transform .3s ease-in-out;
    width: 35px;
}
.home-info-slider .swiper-button-next:hover:after, .home-info-slider .swiper-button-prev:hover:after {
    transform: scale(1.2)
}
.home-info-slider .swiper-button-prev {
    justify-content: flex-end;
    right: 50%;
    margin-right: 50%;
    left: inherit;
}
.home-info-slider .swiper-button-prev:after {
    background: url("../images/button_arrow_L.png") no-repeat;
    background-size: 35px 82px
}
.home-info-slider .swiper-button-next {
    justify-content: flex-start;
    left: 50%;
    margin-left: 50%;
}
.home-info-slider .swiper-button-next:after {
    background: url("../images/button_arrow_R.png") no-repeat;
    background-size: 35px 82px;
}

.home-banner {
    margin-bottom: 40px;
	margin-top: 40px;
    padding-bottom: 32px;
}
.home-banner-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 960px;
	justify-content: center;
}
.home-banner-list-wide {
    max-width: 100%;
}
.home-banner-item {
    margin: 8px;
    max-width: calc(33.33333% - 16px);
}
.home-banner-item[disabled] {
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.home-twitter-box {
    margin: 50px auto;
    width: calc(100% - 32px);
    max-width: 400px;
}
.home-overview-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 32px auto;
	align-items: center;
	max-width: 848px;
	padding: 0 12px;
}
.home-cfbanner {
    margin: 100px auto;
    padding: 0 16px;
    text-align: center;
}

.spec-data {
    max-width: 724px;
	font-size: 15px;
}
.spec-data dd {
    display: flex;
    align-items: center;
    white-space: normal;
}
.spec-data dd span {
    display: inline-block;
}
.spec-data dd img {
    height: 40px;
    width: auto;
}
.spec-data dd img.spec-data-img-pcgame {
    height: 30px;
}
.spec-data-stack {
    font-size: .75em;
    line-height: 1em;
}
.spec-data-stack img {
    display: block;
    height: 15px;
}
.spec-data-sellingType {
    font-size: .9em;
    margin-right: 8px;
}
.u-mt40 {
    margin-top: 40px
}

/* DLCコンテンツここから */
section.dlc-container{
	width: 100%;
	margin: 0 auto;
}
.dlc-wrap{
	max-width: 1200px;
	margin: 70px auto 0 auto;
	padding: 0 20px;
	font-size: 15px;
}
.dlc-wrap h2.dlc_title{
	max-width: 560px;
}
.dlc-wrap h2.dlc_title,
.FAQ_new{
	text-shadow: 0 0 15px #4cf4ff;
	margin: 30px auto;
	line-height: 1.8;
	letter-spacing: 1px;
	font-size: 26px;
}
.dlc-wrap h2.dlc_title,
.FAQ_new > span.dlc_title_caption{
	line-height: 1.5;
	display: block;
}
.dlc_top_txt{
	line-height: 1.8;
}
.dlc_top_txt_center{
	width: 100%;
	max-width: 900px;
	margin: 50px auto;
}
.dlc_content_wrap{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}
.trailer_link{
	font-weight: bold;
}
.dlc_content_image{
	width: 100%;
	max-width: 600px;
}
.dlc_content_caption{
	width: 100%;
	max-width: 520px;
}
.resource_dlc_container{
	display: flex;
	justify-content: space-around;
	margin-top: 50px;
}
.br_pc{
	display: inline-block;
}
.resource_dlc_image{
	width: 100%;
	max-width: 400px;
}
.DLC-set-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 40px 0;
}
.DLC-set{
	width: 100%;
	max-width: 350px;
}
.stage_pass_container{
	margin: 50px auto 0 auto;
}
.set-title{
	font-size: 16px;
	font-weight: bold;
}
.stage_pass_title{
	font-size: 27px;
	border-left: 5px solid #FFF;
	padding-left: 10px;
}
/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 2s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.animation_active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
span.dlc_title_caption{
	font-size: 17px;
	display: block;
	margin-top: 14px;
	line-height: 1.7;
}
/* DLCコンテンツここまで */

.aboutRTF{
	margin-top: 40px;
}

.br_sp{
	display: none;
}
.br_tab{
	display: none;
}

.spec-wrap{
	margin-bottom: 0;
}

/* faq.html style */

.FAQ_link {
	display: flex;
	margin: 0 auto 50px auto;
	padding: 0;
	list-style-type: none;
	width: 100%;
	max-width: 900px;
	border-bottom: 1px solid #FFF;
}
.FAQ_link li {
    width: 100%;
    max-width: 100px;
    margin-left: 2px;
    color: #FFFFFF;
    position: relative;
    padding: 20px 6px 20px;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}
.FAQ_link li:first-child {
	margin-left: 0;
}
.FAQ_link li.active {
    color: #FFF;
    font-weight: bold;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
}
.FAQ_link li:hover:after {
	display: block;
}
.tags {
	margin-right: 20px;
	background: #c3d4dc;
	min-width: 110px;
	font-size: 14px;
	text-align: center;
	padding: 0 6px;
	height: 35px;
	line-height: 35px;
	color: #000000;
}

section.faq-container{
	width: 100%;
	margin: 0 auto;
}

h1.faq-title{
	background-image: url(../images/bg_planet.png);
	padding: 50px;
	font-size: 35px;
	border-bottom: 2px solid #7e9094;
	line-height: 1.2;
	letter-spacing: 1px;
}

.faq-wrap{
	max-width: 1200px;
	margin: 70px auto 0 auto;
	padding: 0 20px;
}
.question{
	color: #5B7EFF;
	font-size: 20px;
	font-weight: bold;
	margin-right: 8px;
}
.answer{
	color: #FF5B5B;
	font-size: 20px;
	font-weight: bold;
	margin-right: 8px;
}
.answer_box{
	display: flex;
	align-items: baseline;
	line-height: 1.8;
}
.question_txt,
.answer_txt{
	margin: 0;
	margin-right: 10px;
}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
	margin: auto;
}

.accordion-area li{
    margin: 30px 0;
}

/*.accordion-area section {
	border: 1px solid #ccc;
}*/

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:15px;
    font-weight: bold;
    padding: 3%;
    transition: all .5s ease;
	background: rgb(42 42 42 / 88%);
	margin: 0;
}
.title:hover{
	background: #8d8d8d69;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #FFF;
    
}
.title::before{
    top:48%;
    right: 25px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 25px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
	display: none;/*はじめは非表示*/
	padding: 3% 8% 9% 3%;
	background: rgb(62 62 62 / 88%);
}
.box p{
	font-size: 15px;
	margin-top: 0;
	margin-bottom: 0;
}

/* タブメニュー+アコーディオン用 ここから */
.cp_qa *, .cp_qa *:before, .cp_qa *:after {
	font-family: 'FontAwesome', sans-serif;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_qa {
	margin: 100px auto 0 auto;
	padding: 0 20px;
	width: 100%;
	max-width: 900px;
}
.cp_qa input {
	display: none;
}
/* カテゴリー */
.cp_qa #cp_content1,
.cp_qa #cp_content2,
.cp_qa #cp_content3,
.cp_qa #cp_content4 {
	display: none;
	padding: 20px 0 0;
}
.cp_qa label.cp_tabitem {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 15px 25px;
	text-align: center;
	border: 1px solid transparent;
	font-weight: bold;
}
.cp_qa label.cp_tabitem:before {
	margin-right: 10px;
}
.cp_qa label.cp_tabitem:hover {
	cursor: pointer;
	color: #888888;
}
.cp_qa input:checked + label {
	border: 1px solid #dddddd;
	border-bottom: 1px solid #ffffff;
}
/* --ブロックのバーの色 */
@media screen and (max-width: 650px) {
	label:before {
		font-size: 18px;
		margin: 0;
	}
}
@media screen and (max-width: 400px) {
	.cp_qa label.cp_tabitem {
		padding: 15px;
	}
	.cp_qa label.cp_tabitem:before {
		margin-right: 0px;
	}
}
/* QAブロック */
.cp_qa #cp_conttab1:checked ~ #cp_content1,
.cp_qa #cp_conttab2:checked ~ #cp_content2,
.cp_qa #cp_conttab3:checked ~ #cp_content3,
.cp_qa #cp_conttab4:checked ~ #cp_content4 {
  display: block;
}
.cp_qa .cp_qain {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_qain .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
/* 質問 */
.cp_qa .cp_qain label {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
/* ＋アイコン */
.cp_qa .cp_qain .cp_plus {
	font-size: 2em;
	line-height: 100%;
	position: absolute;
	right: 25px;
	z-index: 5;
	margin-top: 3px;
	margin-left: 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}

/* 答え */
.cp_qa .cp_qain .cp_actab-content {
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 10px 0 48px;
	padding: 14px 0;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
/* 質問を開いた時の仕様 */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	opacity: 1;
}
/* 質問をクリックした時の▼アイコンの動き */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

/* タブメニュー+アコーディオン用 ここまで */
.faq_mainContent{
	margin-bottom: 40px;
}
.faq_tag{
	display: inline-block;
	margin: 0;
	background: #40838F;
	padding: 4px 7px;
	font-size: 13px;
}
.FAQ_title_ja{
	font-size: 20px;
}
.faq_top_txt{
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px auto;
	font-size: 15px;
	line-height: 2;
}
.faq_kousei{
	margin-top: 30px;
}
/* faq.html style end */

/* news.html style */

section.pagenathing{
	width: 100%;
	margin: 0 auto;
}

section.pagenathing > div.heading-image{
	background-image: url(../images/bg_planet.png);
	background-size: cover;
	padding: 50px;
	border-bottom: 2px solid #7e9094;
}

section.pagenathing > div.heading-image h1{
	font-size: 35px;
}

.news-container{
	display: flex;
	flex-wrap: wrap;
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	justify-content: flex-start;
	gap: 10px 60px;
}

ul {
    list-style: none;
}
main > div {
    width: 98%;
    max-width: 500px;
    margin: 0 auto;
}
h2 {
    text-align: center;
}
.news-container dl {
    margin-top: 15px;
    padding-top: 15px;
	max-width: 317px;
	width: 100%;
}
.news-container dl dt {
    font-size: 1.4rem;
}
.items{
	width: 230px;
	margin: 0 auto;
}
.pagewrap{
	display: flex;
	max-width: 550px;
	width: 100%;
	justify-content: space-between;
	margin: 50px auto 0 auto;
	align-items: center;
}
ul.pageinner{
	list-style: none;
	display: flex;
	padding: 0;
	max-width: 280px;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin: 0 50px;
}
ul.pageinner li{
	border: 1px solid #FFF;
	margin: 0 5px;
}
ul.pageinner li a{
	display: block;
	padding: 10px;
	text-decoration: none;
}
ul.pageinner li a:hover{
	background-color: #646464;
}
ul.pageinner li.ellipsis{
	border: none;
}
li.current{
	background-color: #646464;
	color: #FFF;
}
.pagewrap .prev-page button,
.pagewrap .next-page button{
	padding: 10px;
	background: none;
	border: 1px solid #FFF;
	color: #FFF;
	cursor: pointer;
	margin: 0 10px;
}
.pagewrap .first-page button,
.pagewrap .end-page button{
	padding: 10px;
	background: none;
	border: 1px solid #FFF;
	color: #FFF;
	cursor: pointer;
}
/* news.html style end */

/* news記事 style */

.news-single-container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px 70px 20px;
	background-color: #111;
	line-height: 1.9;
}
h2.news-single-image{
	margin-bottom: 20px;
}
p.news-single-image img{
	max-width: 1200px;
	width: 100%;
}

.news-single-date{
	font-size: 16px;
}

.news-single-container h1{
	font-size: 25px;
	font-weight: bold;
	border-left: 5px solid #FFF;
	padding-left: 10px;
	margin: 5px 0 50px 0;
	line-height: 1.7;
}

.news-content{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
.news-content p{
	font-size: 15px;
}
h3.news_subtitle{
	margin-top: 50px;
}
.news-content h3{
	margin: 30px 0;
}
.news-center{
	text-align: center;
}
.news-content-2image{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px auto 0 auto;
	gap: 30px 0;
}
.news-content-2image p{
	width: 100%;
	max-width: 480px;
	margin: 0;
}
p.caption{
	margin: 0;
	max-width: none;
}
.news-content-1image-wrap{
	max-width: 1000px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	margin: 50px 0;
	gap: 40px;
}
.news-content-1image-txt{
	max-width: 470px;
	margin: 30px 0;
}
.news-content-1image-txt h2{
	text-align: left;
}
.news-content-1image{
	max-width: 450px;
}
p.news-list{
	margin: 100px auto 0 auto;
	text-align: center;
	font-size: 18px;
	max-width: 160px;
	width: 100%;
}
.news-content-2image_sub{
	display: flex;
}
p.news-list a{
	text-decoration: none;
}
.news-spec-title{
	text-align: left;
	margin-bottom: 20px;
}
.news-spec{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1000px;
}
.news-spec-head{
	padding: 10px;
	width: 100%;
	max-width: 200px;
	font-weight: bold;
	background: rgba(126,144,148,.5);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.news-spec-content{
	padding: 10px;
	width: 100%;
	max-width: 750px;
	margin-bottom: 20px;
}
.news-image-container{
	width: 100%;
	max-width: 1000px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 60px;
	align-items: flex-start;
}
.news-image-wrap{
	width: 100%;
	max-width: 440px;
	text-align: center;
	background: repeating-linear-gradient(hsla(0,0%,100%,.1), hsla(0,0%,100%,.1) 3px, rgba(0,0,0,.1) 0, rgba(0,0,0,.1) 6px), linear-gradient(90deg, #111111  0, #272727);
	padding: 30px;
}
.news-image-wrap p{
	margin: 0;
}
.news-image-wrap p img{
	max-height: 270px;
}
.news-image-wrap > .news-content-2image{
	margin-top: 0;
}
.news-content-2image > .benefits-img{
	margin-bottom: 10px;
}
.benefits-title{
	text-align: center;
}
.benefits-title h1{
	border: none;
	margin-bottom: 10px;
	font-size: 19px;
}
.benefits-title h3{
	display: inline-block;
	margin: 25px 0;
}
.benefits-title p{
	font-size: 15px;
	margin-bottom: 20px;
}
.benefits-button{
	padding: 8px 32px;
	border: 1px solid #FFF;
	text-decoration: none;
}
/* news記事 style end */

/* 2024/02/05 テンプレート用css ここから */
.news_2image{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
.news_2image p{
	width: 100%;
	max-width: 480px;
}
.news_2image_2caption{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
.news_2image_wrap{
	width: 100%;
	max-width: 480px;
}
.news_2image_wrap p{
	margin: 0;
}
.news_2image_1caption{
	margin-bottom: 100px;
}
.news_2image_1caption > .news_2image{
	margin-bottom: 0;
}
.news_2image_1caption p{
	margin: 0;
}
.news_side_image{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news_side_ImageContent{
	width: 100%;
	max-width: 450px;
}
.news_side_TxtContent{
	width: 100%;
	max-width: 500px;
}
.side_content_wrap{
	margin: 100px auto;
}
.news_subtitle{
	text-align: left;
	font-size: 20px;
}
/* 2024/02/05 テンプレート用css ここまで */

/* オンラインマニュアル style start */

/* 繁体文字用フォント */
.font_Chi{
	font-family: 微軟正黑體;
}

/* 簡体字用フォント */
.font_kan{
	font-family : "微软雅黑","宋体";
}

.manual-container{
    display: flex;
	min-height: 100vh;
}
section{
    margin-bottom:50px;
}
main{
    width:100%;
	padding:4%;
	color: #FFF;
}
img{
    max-width: 100%;
}
.banner{
    text-align: center;
    margin-bottom:10px;
}
.manual-bottom{
	padding: 0;
}
.manual-content{
	background: url("../manual/images/img_topbg_03.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
	z-index: 99999;
}
.manual-content:before{
	content: '';
	position: absolute;
	background: rgb(0,0,0,.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.manual-wrapper{
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	min-height: 100vh;
}
.manual-index-wrap{
	width: 100%;
	max-width: 1000px;
	height: 100%;
	max-height: 370px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.manual-index-wrap h1{
	text-align: center;
}
.manual-index-section{
	margin-top: 30px;
}
.manual-index-section h1{
	text-align: center;
	font-size: 30px;
}
.manual-index-section h2{
	width: 100%;
	margin-bottom: 60px;
	text-align: center;
	margin: 0 auto 30px auto;
	font-size: 30px;
}
.manual-index-section p{
	width: 100%;
    max-width: 700px;
    margin: 60px auto;
	line-height: 1.8;
	font-size: 17px;
}
.manual-section{
	width: 100%;
	max-width: 1000px;
	margin: 90px auto;
}
.manual-section h1{
	text-align: center;
	font-size: 30px;
	margin-bottom: 40px;
	letter-spacing: 1px;
}
.manual-section span.manual_title_ja{
	font-size: 24px;
}
.manual-section h2{
	width: 100%;
	max-width: 700px;
	margin-bottom: 60px;
	text-align: center;
	margin: 50px auto 30px auto;
	font-size: 20px;
}
.manual-section p{
	width: 100%;
    max-width: 700px;
    margin: 0 auto;
	line-height: 1.8;
	font-size: 16px;
}
p.manual-head-txt{
	margin-bottom: 40px;
}
.manual-logo{
	width: 100%;
	max-width: 600px;
}
.manual-lang-wrap{
	display: flex;
	width: 100%;
	max-width: 800px;
	margin: 80px auto 0 auto;
	justify-content: space-between;
	flex-wrap: wrap;
}
.manual-lang-wrap li{
	border: 2px solid #FFF;
	border-image: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%) 1;
	background: #000;
	font-size: 18px;
}
.manual-lang-wrap li a{
	text-decoration: none;
	padding: 10px 50px;
	display: block;
}
.manual_index_wrap {
    background: repeating-linear-gradient(hsla(0,0%,100%,.1), hsla(0,0%,100%,.1) 3px, rgba(0,0,0,.1) 0, rgba(0,0,0,.1) 6px), linear-gradient(90deg, #111111  0, #272727);
    padding: 40px 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.manual_index_wrap p{
	margin: 0px auto 15px auto;
	width: 100%;
	max-width: 430px;
}
.manual_index_wrap a{
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.detail_list li a{
	display: inline-block;
}
.detail ul li a{
	display: inline-block;
}
.dott_position{
	vertical-align: middle;
}
.head-title-middle-wrap{
	padding: 5px 40px;
	font-size: 16px;
	border-bottom: 1px solid #878787;
}
.manual_index_wrap ul{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	font-size: 17px;
	position: relative;
	list-style: initial;
}
.manual_index_wrap h3{
	line-height: 1.7;
	background: #000;
	padding: 20px 70px;
}
.manual_index_Num{
	margin-right: 10px;
}
.manual-index-box{
	width: 100%;
	max-width: 645px;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.manual-index-box p{
	margin: 0;
}
.main-content-title h2{
	text-align: left;
	margin-bottom: 15px;
}
.main-content-title p{
	margin: 0 auto;
}
.small-txt{
	font-size: 13px;
}
/* 目次 ここから */
.manual_list_wrap{
	display: flex;
	margin-bottom: 30px;
}
.manual_content{
	border-left: 4px solid #FFF;
	padding-left: 20px;
}
.manual_content h3{
	background: none;
	padding: 0;
	margin-bottom: 30px;
	font-size: 17px;
}
.manual_content p{
	font-size: 17px;
	margin: 0;
	margin-bottom: 10px;
}
.manual_content_txt{
	font-size: 15px;
	display: block;
	padding-left: 30px;
}
.manual_content ul{
	font-size: 15px;
	margin: 0 50px;
}
.manual_content ul li{
	margin-bottom: 10px;
}
.manual_content_child{
	margin-bottom: 20px;
}
.manual_list_2way_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.manual_list_2way{
	width: 100%;
	max-width: 500px;
}
/* 目次 ここまで */
.manual_more{
	text-decoration: none;
	font-size: 13px;
	color: #4cf4ff;
}
.manual-story p,
.manual-introduction p{
	margin: 40px auto;
}
.manual-operation p,
.manual-menu p,
.manual-power p,
.manual-wave p,
.manual-force p{
	margin: 20px auto;
}
.manual-operation h2,
.manual-power h2,
.manual-wave h2,
.manual-force h2{
	text-align: left;
	border-bottom: 2px solid #FFF;
	padding-bottom: 5px;
}
.operation-container{
	margin-bottom: 60px;
}
.operation-container p{
	margin: 40px auto;
}
.operation-container h2{
	text-align: left;
	border-bottom: 2px solid #FFF;
	padding-bottom: 10px;
}
.manual-pager{
	list-style: none;
	width: 100%;
	max-width: 700px;
	display: flex;
	justify-content: space-between;
	font-size: 30px;
	font-weight: bold;
	align-items: center;
	margin: 60px auto;
}
.manual-prev a{
	position: relative;
}
.manual-pager a{
	text-decoration: none;
}
.manual-pager-last{
	justify-content: space-between;
}
.manual-pager-last:after{
	content: '';
	display: block;
	width: 16%;
}
.manual-prev{
	display: flex;
	align-items: center;
}
.manual-prev a::before {
	background-image: url(../manual/images/manual_prev.png);
	background-repeat: no-repeat;
	content: ' ';
	display: inline-block;
	width: 25px;
	height: 36px;
	background-size: contain;
	vertical-align: middle;
	margin-right: 10px;
}
.manual-next{
	display: flex;
	align-items: center;
}
.manual-next a::after {
	background-image: url("../manual/images/manual_next.png");
	background-repeat: no-repeat;
	content: ' ';
	display: inline-block;
	width: 25px;
	height: 36px;
	background-size: contain;
	vertical-align: middle;
	margin-left: 10px;
}
/* スマホ・タブレット用ヘッダーを非表示 */
/*	.manual-header-sp{
		display: none;
	}
*/

.manual-navi-active a{
	color: #4cf4ff;
}
.caption_wrap{
	max-width: 700px;
	margin: 30px auto 0 auto;
}
.manual_caption{
	font-size: 14px;
	line-height: 1.9;
}
.movie_wrap{
	max-width: 700px;
	margin: 0 auto;
}
.movie_caption{
	font-size: 16px;
	display: block;
	margin: 10px auto;
	width: 100%;
	max-width: 700px;
}
.movie_margin{
	margin: 60px auto;
}
p.movie_container{
	margin: 40px auto;
}
.manual_dlc_link{
	text-decoration: none;
	color: #4cf4ff;
}
.manual_page_index{
	margin: 50px auto;
}
.manual_page_index ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	font-weight: bold;
	font-size: 15px;
	gap: 10px 20px;
}
.manual_page_index ul li a{
	text-decoration: none;
}

.container {
  display: flex;
  min-height: 100vh;
  background: rgb(0, 0, 0, 0.6);
  color: #fff;
}
main {
  width: 100%;
}
.section {
  width: 100%;
  max-width: 455px;
  overflow: auto;
  height: 100vh;
  position: relative;
  background: #1c1c1c;
  z-index: 999999;
  border-right: 1px solid #FFF;
  border-image: linear-gradient(to bottom, #7e9094 100%, #bad6db 100%, #7e9094 100%) 1;
}
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}
.section h2 img{
	width: 100%;
	max-width: 300px;
	margin: 50px auto;
}
.manual-container {
  display: flex;
  min-height: 100vh;
  background: rgb(0, 0, 0, 0.6);
  color: #fff;
}

.s_07 {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 455px;
  overflow: auto;
  /*height: calc(100vh - 50px);*/
  background: #1c1c1c;
}
.content-wrap{
	position: relative;
}

/* nav-toggle */
#nav-toggle {
	display: none;
	position: fixed;
	top: 18px;
	right: 15px;
	height: 32px;
}
#nav-toggle > div {
	position: relative;
	width: 32px;
}
#nav-toggle span {
	width: 100%;
	height: 4px;
	left: 0;
	display: block;
	background: #FFF;
	position: absolute;
	border-radius: 2px;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
.content-wrap:before{
    content: '';
    position: absolute;
    background: rgb(0,0,0,.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
#ac-menu .label::before,
#ac-menu .label::after {
    content: '';
    width: 10px;
    height: 2px;
    background: #FFF;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}
#ac-menu .label::after {
    transform: translateY(-50%) rotate(90deg);
    transition: .5s;
}
#ac-menu .label.open {
  background-color: #999;
}
#ac-menu .label.open::before {
  opacity: 0;
}
#ac-menu .label.open::after {
  transform: rotate(180deg);
}
.s_07 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}
.accordion_one a{
	text-decoration: none;
	display: block;
}
.accordion_large{
	padding: 20px 60px 20px 20px;
}
.accordion_medium{
	padding: 20px 20px 20px 40px;
}
.accordion_small{
	padding: 20px 20px 20px 60px;
}
.s_07 .accordion_one .accordion_header {
	background-color: #000;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-property: background-color;
	transition-duration: 0.5s;
}
.s_07 .accordion_one .accordion_header:hover {
	background-color: #999;
	transition-duration: 0.5s;
}

.s_07 .accordion_one .accordion_header:not(:hover) {
	background-color: #000;
	transition-duration: 0.5s;
}
.s_07 .accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 2%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.s_07 .accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.s_07 .accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.s_07 .accordion_one .accordion_header .i_box .one_i:before, .s_07 .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.s_07 .accordion_one .accordion_header .i_box .one_i:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.s_07 .accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.s_07 .accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.s_07 .accordion_one .accordion_inner {
	display: none;
	padding: 0;
	box-sizing: border-box;
}
.s_07 .accordion_one .accordion_inner .box_one {
	height: 300px;
}
.s_07 .accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}

/* stayクラス付与 ここから */
.s_07 .accordion_one .accordion_header.stay .i_box {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.s_07 .accordion_one .accordion_header.stay .i_box .one_i {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.s_07 .accordion_one .accordion_header.stay.open .i_box .one_i {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.s_07 .accordion_one .accordion_header.stay.open .i_box {
	-webkit-transform: rotate(315eg);
	transform: rotate(315deg);
}
.s_07 .accordion_one .accordion_header.stay .i_box .one_i:before {
	content: none;
}
.s_07 .accordion_one .accordion_header.stay.open .i_box .one_i:before {
	content: "";
}
.s_07 .accordion_one .accordion_header.stay.open .i_box .one_i:after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.s_07 .accordion_one .accordion_inner.stay {
	display: block;
}
/* stayクラス付与 ここまで */

.s_07 .accordion_one .accordion_header.active-page{
	background: #31f2ffe0;
}

.sticky{
	position: fixed;
	top: 0;
	left: 0;
}
p.manual_menu_logo{
	text-align: center;
	margin: 110px auto 30px auto;
}
p.manual_menu_logo img{
	width: 100%;
	max-width: 300px;
}

ul.manual_gnavi_sp{
	display: none;
}
.manual_gnavi_pc{
	margin: 0;
}
/* オンラインマニュアル style end */

/* エラーページ style start */
.error-page-inner{
	text-align: center;
	margin-top: 115px;
}
.error-page-inner p{
	margin: 60px 0;
	line-height: 2;
}
h2.error-title-en{
	font-size: 35px;
	margin-bottom: 10px;
}
h2.error-title-ja{
	font-size: 16px;
}
.error-page-link{
	display: flex;
	justify-content: space-between;
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
}
.error-page-link p{
	border: 1px solid #FFF;
	max-width: 300px;
	width: 100%;
	margin: 35px 0 0 0;
}
.error-page-link a{
	text-decoration: none;
	padding: 10px;
}
.hover_button{
  display: block;
  padding: .5em 4em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .3s;
}
.hover_button:hover{
	box-shadow: 0 0 50px rgba(255, 255, 255, .6) inset;
}
/* エラーページ style end */

/* スマホ用バナー 非表示 */
.SP_crowdfunding_wrap{
	display: none;
}

@media screen and (min-width:320px) {
	.u-mb8{
		margin: 0 8px 8px 0;
	}
	.spec-data dd {
	    flex-wrap: wrap
	}
	.spec-data-stack {
	    min-width: 90px;
	    margin-bottom: 4px
	}
	.u-align-s-left {
	    text-align: left
	}
	.u-align-s-center {
	    text-align: center
	}
	.u-align-s-right {
	    text-align: right
	}
}

@media screen and (min-width:600px) {
	.l-footer-copy {
 	   text-align: center
	}
	.hero-text.en-horizontal {
 	   max-width: 570px
	}
	.home-cfbanner__link {
 	   width: auto
	}
	.spec-data dd {
 	   flex-wrap: wrap
	}
}

@media screen and (min-width:1025px) {
	.flex-inline .col-l-12, .flex .col-l-12 {
		width: 100%
	}
	.flex-inline .col-l-10, .flex .col-l-10 {
		width: 83.33%
	}
	.flex-inline .col-l-9, .flex .col-l-9 {
		width: 75%
	}
	.flex-inline .col-l-8, .flex .col-l-8 {
		width: 66.66%
	}
	.flex-inline .col-l-7, .flex .col-l-7 {
		width: 58.33%
	}
	.flex-inline .col-l-6, .flex .col-l-6 {
		width: 50%
	}
	.flex-inline .col-l-5, .flex .col-l-5 {
		width: 41.66%
	}
	.flex-inline .col-l-4, .flex .col-l-4 {
		width: 33.33%
	}
	.flex-inline .col-l-3, .flex .col-l-3 {
		width: 25%
	}
	.flex-inline .col-l-2, .flex .col-l-2 {
		width: 16.66%
	}
	.flex-inline .col-l-1, .flex .col-l-1 {
		width: 8.33%
	}
	.c-datalist dd, .c-datalist dt {
		margin-top: 16px
	}
	.c-datalist dt {
		width: 240px
	}
	.c-datalist dd {
		padding-left: 16px;
		width: calc(100% - 240px)
	}
	.l-header-inner {
		padding: 0 14px
	}
	.l-header-logo {
		width: auto
	}
	.l-header-sns {
		display: flex;
		gap: 0 13px;
		margin: 0 30px;
	}
	.l-nav-sns{
		display: none;
	}
	.l-nav-drawer {
		background:repeating-linear-gradient(hsla(0,0%,100%,.1), hsla(0,0%,100%,.1) 2px, transparent 0, transparent 4px), linear-gradient(90deg, #0f0f0f 0, #535f63 35%, #535f63 65%, #0f0f0f);
		display: block;
		opacity: 1;
		padding: 8px;
		position: relative;
		transition: none;
		visibility: visible;
		z-index: 99
	}
	.l-nav-drawer.is-fixed {
		-webkit-animation: slideDown .4s ease-in forwards;
		animation: slideDown .4s ease-in forwards;
		position: fixed;
		bottom: auto;
		top: 0
	}
	.l-nav-list {
		margin: auto;
		justify-content: center;
		max-width: 1080px
	}
	.l-nav-item {
		width: auto
	}
	.l-nav-text {
		display: block
	}
	.l-nav-text:after, .l-nav-text:before {
		content: "";
		display: block;
		height: 0;
		position: absolute;
		transition: all .2s ease-in;
		width: 0
	}
	.l-nav-text:before {
		border-left: 0 solid #fff;
		border-top: 0 solid #fff;
		left: 0;
		top: 0
	}
	.l-nav-text:after {
		border-bottom: 0 solid #fff;
		border-right: 0 solid #fff;
		bottom: 0;
		right: 0
	}
	.l-nav-text:hover:after, .l-nav-text:hover:before {
		height: 100%;
		width: 100%
	}
	.l-nav-text:hover:before {
		border-left: 1px solid #fff;
		border-top: 1px solid #fff
	}
	.l-nav-text:hover:after {
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff
	}
	.l-nav-dropdown {
		background: rgba(0,0,0,.8);
		display: flex;
		justify-content: center;
		padding: 8px;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		width: 100%
	}
	.l-nav-dropdown-item {
		width: auto
	}
	.l-nav-dropdown-trigger .icon, .l-nav-sns {
		display: none
	}
	.l-contents-main {
	    width: 754px
	}
	.l-contents-sub {
	    margin-left: 32px;
	    width: 294px
	}
	.l-footer-inner {
	    flex-wrap: nowrap
	}
	.l-footer-logo {
	    margin-right: auto;
	    text-align: left;
	    width: 200px
	}
	.l-footer-contents {
		width: auto
	}
	.l-footer-sns {
		margin-top: 0;
		text-align: right
	}
	.l-footer-nav {
		font-size: 14px;
		font-size: 1.4rem
	}
	.backtotop-button {
		z-index: 99
	}
	.info-card-container .info-card {
		width: calc(25% - 16px)
	}
	.hero-inner {
		background: url("../images/rtf3E_topbanner.webp") no-repeat 50%/cover;
		max-height: 790px;
		overflow: hidden;
		box-shadow: 0 -120px 60px -70px #000 inset;
	}
	.hero-inner:after {
		padding-top: 64%
	}
	.hero-logo {
		bottom: auto;
		top: 66%;
		left: 0;
		right: 0;
		margin: auto;
		width: 706px;
		max-width: 100%;
	}
	.hero-logo.pc {
		display: inline
	}
	.hero-logo.sp {
		display: none
	}
	.hero-text.en-horizontal {
		bottom: auto;
		top: 112px
	}
	.hero-text.ja-horizontal {
		display: none;
		transform: none
	}
	.hero-text.ja-vertical {
		display: block;
		height: 50%;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		width: auto;
		right: 32px
	}
	.hero-platform {
		bottom: 12px
	}
	.hero-platform img {
		height: 41px
	}
	.hero-twitter {
		display: block;
		position: absolute;
		bottom: 5%;
		left: 4%;
		width: 238px
	}
	.home-info-slider {
		width: calc(100% - 35px);
		max-width: 1010px
	}
	.home-info-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) {
		opacity: .4
	}
	.home-info-slider .swiper-slide.swiper-slide-next+.swiper-slide {
		opacity: 1
	}
	.home-info-slider .swiper-button-next, .home-info-slider .swiper-button-prev {
		display: flex
	}
	.home-twitter-box {
		display: none
	}
	.home-overview-block:nth-child(odd) .home-overview-text {
		text-align: left
	}
	.home-overview-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 50%
	}
	.home-overview-thumbnail {
		width: calc(50% - 16px)
	}
	.home-overview-block:nth-child(odd) .home-overview-thumbnail {
		border-left: 2px solid #fff;
		padding-left: 16px
	}
	.home-overview-block:nth-child(2n) .home-overview-thumbnail {
		border-right: 2px solid #fff;
		padding-right: 16px
	}
	.spec-data dt {
		width: 160px
	}
	.spec-data dd {
		width: calc(100% - 160px)
	}
	.player-list-item {
		margin-top: 1.33%;
		padding-top: 24%;
		width: 24%
	}
	.player-list-item, .player-list-item:hover {
		background: url(../images/rtf2_img_thum_frame_light.b057a67.png) no-repeat 50%;
		background-size: contain
	}
	.player-list-item:hover:after {
		opacity: 0
	}
	.player-list-text {
		padding: 75% 12px 8px
	}
	.presskit-list-item {
		width: 25%
	}
	.cf2-reward-block {
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start
	}
	.cf2-reward-image {
		flex-basis: 66%
	}
	.cf2-reward-body {
		flex-basis: 34%
	}
	.u-align-l-left {
		text-align: left
	}
	.u-align-l-center {
		text-align: center
	}
	.u-align-l-right {
		text-align: right
	}
	.ps5_logo_SP{
		position: absolute;
		left: 0;
	}
	.ps5_logo_PC{
		display: none;
	}
	.ps_store_image{
		position: absolute;
		right: 3%;
		bottom: 5%;
		width: 100%;
		max-width: 380px;
	}
}

@media screen and (min-width:1000px) and (max-width:1280px) {
	.hero-information {
		left: 0;
		right: 0;
		margin: auto;
		bottom: 100px
	}
	.DLC-set{
		margin-right: 15px;
	}
	.playerships-image-wrap img{
		width: 60%;
	}
}

/* タブレット用css ここから */
@media screen and (min-width:768px) and (max-width:1024px) {
	.home-banner-list{
		justify-content: initial;
	}
	div.home-overview-stage p img{
		width: 100%;
		max-width: 348px;
	}
	div.home-overview-text{
		max-width: 330px;
	}
	div.hero{
		padding-bottom: 150px;
	}
	span.top-catchcopy{
		right: 0;
		left: 0;
		bottom: 17%;
		margin: auto;
		margin-bottom: 0;
		text-align: center;
	}
	.ps5_logo_PC{
		display: none;
	}
	.ps5_logo_SP{
		position: absolute;
	}
	.ps_store_image{
		position: absolute;
		left: 50%;
		bottom: -10%;
		transform: translate(-50%, 0);
	}
	/* 見出しアニメーション ここから */
	.line{
		width: 130px;
	}
	.game_about_title{
		font-size: 20px;
	}
	.br_tab{
		display: inline-block;
	}
	.game_stage_inner{
		gap: 60px 60px;
	}
	/* 見出しアニメーション ここまで */
	.right-image-wrap{
		min-height: auto;
	}
	.news-container{
		justify-content: space-between;
		width: 100%;
		max-width: 700px;
	}
	p.and_more{
		border: 1px solid;
		text-align: center;
	}
	p.and_more a{
		display: block;
	}
	.news-content-2image{
		justify-content: center;
	}
	.news-content-2image p{
		max-width: 600px;
		width: 100%;
	}
	.news-content-1image{
		max-width: 600px;
	}
	.news-content-1image-txt{
		max-width: 600px;
	}
	.news-list{
		border: 1px solid #FFF;
	}
	.news-list a{
		display: block;
	}
	.playerships-image-wrap img{
		width: 100%;
	}
	/* PC用バナー 非表示 */
	.PC_crowdfunding_wrap{
		display: none;
	}
	.SP_crowdfunding_wrap{
		display: block;
		text-align: center;
		margin-top: 80px;
	}
	.SP_crowdfunding_wrap img{
		width: 100%;
		max-width: 600px;
	}
	.news-spec-title{
		text-align: center;
	}
	.news-spec-head{
		max-width: none;
	}
	/* ヘッダーメニュー ここから */
	.l-nav-humberger {
		z-index: 99999999;
		background: url("../images/button_menu.png") no-repeat 50%;
		background-size: contain;
		border: none;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		height: 48px;
		outline: none;
		position: fixed;
		right: 8px;
		top: 8px;
		transition: top .2s;
		vertical-align: top;
		width: 48px;
		min-width: 18px;
	}
	.innner_header{
		display: none;
	}
	.c-lang{
		display: none;
	}
	#g-nav.panelactive ul.c-lang{
		border: none;
		padding: 0;
		margin-top: 20px;
	}
	.c-lang-item{
		width: 100%;
		max-width: 80px;
	}
	#g-nav li.c-lang-item a{
		padding: 0;
		font-size: 30px;
		display: block;
	}
	.l-header-sns{
		display: none;
	}
	.l-nav-sns{
		margin: 20px auto 50px auto;
		text-align: center;
		font-size: 2rem;
		display: flex;
		justify-content: center;
		gap: 0 20px;
		color: #FFF;
	}
	/* ヘッダーメニュー ここまで */

	/* マニュアルページ ここから */
	p.manual_menu_logo{
		margin: 30px auto;
	}
	.manual-index-wrap{
		padding: 0 70px;
	}
	.manual-lang-wrap{
		gap: 40px;
		width: 600px;
		text-align: center;
	}
	.manual-lang-wrap li{
		width: 100%;
		max-width: 280px;
	}
	.manual-lang-wrap li a{
		padding: 20px 50px;
	}
	.manual-content{
		padding: 70px;
	}
	.main-content-title{
		margin-bottom: 50px;
	}
	.manual-pager{
		list-style: none;
		width: 100%;
		max-width: 770px;
		display: flex;
		justify-content: space-between;
		margin: 60px auto;
		font-size: 30px;
		font-weight: bold;
		align-items: center;
	}
	.manual-prev a{
		position: relative;
	}
	.manual-pager a{
		text-decoration: none;
	}
	.manual-pager-last{
		justify-content: space-between;
	}
	.manual-pager-last:after{
		content: '';
		display: block;
		width: 16%;
	}
	.manual-prev{
		display: flex;
		align-items: center;
	}
	.manual-prev a::before {
		background-image: url(../manual/images/manual_prev.png);
		background-repeat: no-repeat;
		content: ' ';
		display: inline-block;
		width: 41px;
		height: 41px;
		background-size: contain;
		vertical-align: middle;
		margin-right: 10px;
	}
	.manual-next{
		display: flex;
		align-items: center;
	}
	.manual-next a::after {
		background-image: url("../manual/images/manual_next.png");
		background-repeat: no-repeat;
		content: ' ';
		display: inline-block;
		width: 41px;
		height: 41px;
		background-size: contain;
		vertical-align: middle;
		margin-left: 10px;
	}
	.inner {
			position:relative;
			padding:1.5em;
			-webkit-box-sizing:border-box;
			-moz-box-sizing:border-box;
			box-sizing:border-box;
			background: #000;
			border-bottom: 2px solid #7e9094
	}
	.sp_menu{
		display: none;
	}
	.sticky{
		display: none;
	}
	#nav-toggle{
		display: block;
		z-index: 9999999;
	}
	.s_07 {
		/*display: none;*/
		position: fixed;
		right: -900px;
		top: 0;
		height: 100%;
		width: 100%;
		max-width: 900px;
		color: #333;
		background: #1c1c1c;
		-webkit-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		padding-bottom: 70px;
	}

	/* nav open */
	.open {
		overflow: hidden;
	}
	.open #overlay {
		display: block;
	}
	.open .s_07  {
		-webkit-transform: translate3d(-900px,0,0);
		transform: translate3d(-900px,0,0);
		background: #1c1c1c;
	}

	/* #nav-toggle close */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	header.manual-header-sp {
		position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
		z-index: 99999999;
	}
	.section{
		border: none;
		top: 70px;
	}
	.manual_gnavi_sp_wrap{
		background: #333;
		padding: 10px 0;
	}
	ul.manual_gnavi_sp{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 455px;
		justify-content: space-around;
		color: #FFF;
		margin: 10px auto;
		font-size: 17px;
		font-weight: bold;
	}
	ul.manual_gnavi_sp li{
		margin: 10px auto;
	}
	ul.manual_gnavi_sp li a{
		text-decoration: none;
	}
	.manual_gnavi_pc{
		display: none;
	}
	/* マニュアルページ ここまで */

	/* dlc ここから */
	.resource_dlc_container{
		gap: 50px;
	}
	.dlc_content_wrap{
		gap: 0;
		margin-bottom: 60px;
	}
	.dlc_content_image{
		max-width: none;
	}
	/* dlc ここまで */

	/* FAQ ここから */
	.title{
		padding: 3% 10% 4% 3%;
	}
	/* FAQ ここまで */

	/* 2024/02/05 テンプレート用css ここから */
	.news_2image{
		justify-content: center;
	}
	.news_2image p{
		max-width: 600px;
		height: auto;
	}
	.news_2image_2caption{
		justify-content: center;
		gap: 50px 0;
	}
	.news_2image_1caption > .news_2image{
		gap: 50px 0;
		margin-bottom: 30px;
	}
	.news_side_image{
		justify-content: center;
		max-width: 480px;
		margin: auto;
	}
	.news_side_ImageContent{
		max-width: 480px;
	}
	/* 2024/02/05 テンプレート用css ここまで */
}
/* タブレット用css ここまで */

@media screen and (max-width:700px) {
.information-table-header-region {
    width: 12rem
	}
}

@media screen and (max-width:620px) {
.home-banner-item {
    max-width: calc(50% - 16px)
	}
}

/* add 20220818 */
.flex-reverse{
	display: flex;
	justify-content: center;
}

.flex-reverse-image{
	max-width: 400px;
}

.flex-reverse-padding{
	padding: 20px;
}
/* add 20220818 */

.anchor{
    display: block;
    padding-top: 70px;
	margin-top: -70px;
}

/* スマホ用css start */
@media screen and (max-width:540px) {
	.c-lang{
		display: none;
	}
	#g-nav.panelactive ul.c-lang{
		padding: 0;
	}
	#g-nav li a{
		font-size: 25px;
	}
	#g-nav li a.gnavi-sns-icon{
		font-size: 35px;
	}
	#g-nav.panelactive ul.sns-wrap{
		width: 210px;
		justify-content: space-between;
	}
	.l-nav-sns,
	.l-nav-lang{
		margin: 20px auto;
	}
	.l-header-sns{
		display: none;
	}
	.l-nav-sns{
		margin: 20px auto 30px auto;
		text-align: center;
		font-size: 1.5rem;
		display: flex;
		justify-content: center;
		gap: 0 12px;
		color: #FFF;
	}
	.l-nav-humberger {
		background: url("../images/button_menu.png") no-repeat 50%;
		background-size: contain;
		border: none;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		height: 48px;
		outline: none;
		position: fixed;
		right: 8px;
		top: 8px;
		transition: top .2s;
		vertical-align: top;
		width: 48px;
		min-width: 18px;
		z-index: 996;
	}
	.hero {
		padding-bottom: 12rem
	}
	/* キャッチコピー ここから */
	span.top-catchcopy{
		right: 0;
		left: 0;
		bottom: 22%;
		margin: auto;
		margin-bottom: 0;
		text-align: center;
		width: initial;
	}
	/* キャッチコピー ここまで */
	.DLC_Manual_link_container h2{
		font-size: 25px;
		line-height: 1.6;
	}
	.none_dotted{
		display: none;
	}
	.ps5_logo_PC{
		display: none;
	}
	.ps5_logo_SP {
		position: absolute;
		max-width: 130px;
	}
	.ps_store_image{
		position: absolute;
		bottom: -15%;
		left: 50%;
		transform: translate(-50%, 0);
		width: 100%;
		max-width: 300px;
	}
	.home-banner-list{
		justify-content: initial;
	}
	/* 見出しアニメーション ここから */
	.line{
		width: 0px;
	}
	/* 見出しアニメーション ここまで */
	.game_about_title{
		margin: 0;
		text-align: left;
	}
	.game_about_title_wrap{
		margin-bottom: 20px;
	}
	.right-image-wrap{
		min-height: auto;
	}
	.playerships-image-wrap img{
		width: 100%;
	}
	.DLC-set p.DLC-img img{
		max-width: 100%;
	}
	.DLC-set {
		margin:0;
		width: 100%;
	}
	.DLC_h2 img{
		width: 62%;
	}
	.aboutRTF img{
		width: 60%;
	}
	div.stage-pass-container h2.DLC-title{
		font-size: 20px;
	}
	p.game-overview-txt{
		margin: 0;
		width: 100%;
		padding: 0;
	}
	div.home-overview-stage p{
		margin-bottom: 5px;
		margin-right: 0;

	}
	.br_sp{
		display: inline-block;
	}
	.br_pc{
		display: none;
	}
	.home-overview-block h2{
		display: inline;
		font-size: 18px;
		font-weight: bold;
		background:linear-gradient(transparent 60%, #1342b8 40%);
		line-height: 2;
	}
	.head-wrap{
		padding: 0 20px;
	}
	.head-img img{
		width: 33%;
	}

	/* add 20220818 */
	.flex-reverse{
		flex-wrap: wrap-reverse;
	}
	.flex-reverse-padding{
		padding: 0;
	}
	/* add 20220818 */
	.home-overview-block{
		padding: 0 12px;
	}
	.flex-inline .col-6, .flex .col-6{
		width: 100%;
	}
	.flex-inline .flex-col, .flex .flex-col{
		padding: 0;
	}
	.pagewrap{
		max-width: 380px;
		margin: 50px auto;
	}
	ul.pageinner{
		margin: 0;
	}
	.news-container{
		justify-content: center;
	}
	.news-single-container h1{
		font-size: 20px;
	}
	.hover-item-container{
		margin: 10px auto;
	}
	p.and_more{
		border: 1px solid;
		text-align: center;
	}
	p.and_more a{
		display: block;
	}
	.news-list{
		border: 1px solid #FFF;
	}
	.news-list a{
		display: block;
	}
	.error-page-link{
		justify-content: center;
	}
	/* PC用バナー 非表示 */
	.PC_crowdfunding_wrap{
		display: none;
	}
	.SP_crowdfunding_wrap{
		display: block;
		text-align: center;
		margin: 80px 10px;
	}
	.SP_crowdfunding_wrap img{
		width: 100%;
		max-width: 600px;
	}
	.playerships-bg{
		padding: 15px;
	}
	/* News内table ここから */
	.manual-section{
		padding: 0 20px;
	}
	.news-spec-title{
		text-align: center;
	}
	.news-spec{
		justify-content: center;
	}
	.news-spec-head{
		text-align: center;
		max-width: none;
		background: rgba(126,144,148,.5);
		margin: 0;
		justify-content: center;
	}
	.news-spec-content{
		text-align: center;
		margin: 0;
	}
	/* News内table ここまで */

	/* FAQ ここから */
	.innner_header{
		display: none;
	}
	.l-nav-humberger{
		z-index: 99999999;
	}
	.question_txt,
	.answer_txt{
		font-size: 15px;
	}
	.title{
		padding: 3% 10% 5% 3%;
	}
	.title::before{
		right: 15px;
	}

	.title::after{
		right: 15px;
	}
	#g-nav > #g-nav-list ul.l-nav-lang li.c-lang-item a.c-lang-text{
		font-size: 17px;
		padding: 5px 0;
		display: block;
	}
	.c-lang-item{
		width: 100%;
		max-width: 50px;
	}
	.FAQ_title_ja{
		margin-top: 10px;
		line-height: 1.6;
	}
	/* FAQ ここまで */

	p.manual_menu_logo{
		margin: 30px auto;
	}
	p.manual_menu_logo img{
		max-width: 230px;
	}
	.manual-index-wrap{
		max-height: 600px;
		padding: 0 20px;
		position: initial;
	}
	.manual-lang-wrap{
		max-width: 250px;
		gap: 40px;
	}
	.manual-lang-wrap li{
		width: 100%;
		text-align: center;
	}
	.manual-lang-wrap li a{
		text-decoration: none;
		padding: 20px 50px;
		display: block;
	}
	.manual_content ul{
		width: auto;
	}
	.main-content-title{
		margin-bottom: 50px;
	}
	.manual-content{
		padding: 0;
		height: initial;
		padding: 70px 10px;
	}
	.manual-content article{
		height: initial;
	}
	.manual-pager{
		font-size: 20px;
	}
	.manual-prev a::before{
		width: 30px;
		height: 30px;
		margin-right: 5px;
	}
	.manual-next a::after{
		width: 30px;
		height: 30px;
		margin-left: 5px;
	}
	.manual-pager{
		list-style: none;
		width: 100%;
		max-width: 770px;
		display: flex;
		justify-content: space-between;
		margin: 60px auto;
		padding: 0 20px;
		font-size: 20px;
		font-weight: bold;
		align-items: center;
	}
	.manual-pager-last{
		justify-content: space-between;
	}
	.manual-pager-last:after{
		content: '';
		display: block;
		width: 30%;
	}
	.manual-prev a{
		position: relative;
	}
	.manual-pager a{
		text-decoration: none;
	}
	.manual-prev{
		display: flex;
		align-items: center;
	}
	.manual-prev a::before {
		background-image: url(../manual/images/manual_prev.png);
		background-repeat: no-repeat;
		content: ' ';
		display: inline-block;
		width: 20px;
		height: 25px;
		background-size: contain;
		vertical-align: middle;
		margin-right: 10px;
	}
	.manual-next{
		display: flex;
		align-items: center;
	}
	.manual-next a::after {
		background-image: url("../manual/images/manual_next.png");
		background-repeat: no-repeat;
		content: ' ';
		display: inline-block;
		width: 20px;
		height: 25px;
		background-size: contain;
		vertical-align: middle;
		margin-left: 10px;
	}
	.manual-section h1{
		font-size: 20px;
	}
	.manual-section span.manual_title_ja{
		font-size: 18px;
	}
	.manual-section p{
		line-height: 1.9;
	}
	.manual_page_index ul{
		max-width: 300px;
	}
	.manual_page_index ul li{
		margin-bottom: 5px;
	}
	.inner {
		position:relative;
		padding:1.5em;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		box-sizing:border-box;
		background: #000;
		border-bottom: 2px solid #7e9094
	}
	.open{
		overflow: hidden;
	}
	#nav-toggle {
		display: block;
		z-index: 9999999;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.s_07 {
		/* display: none; */
		position: fixed;
		right: -900px;
		top: 0;
		height: 100%;
		width: 100%;
		max-width: 900px;
		color: #333;
		background: #1c1c1c;
		-webkit-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		padding-bottom: 70px;
	}
	.open .s_07 {
		-webkit-transform: translate3d(-900px,0,0);
		transform: translate3d(-900px,0,0);
		background: #1c1c1c;
	}
	header.manual-header-sp {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 99999999;
	}
	.c-lang{
		/* ハンバーガーメニュー実装時 表示
		display: none;
		border: none;
		*/
		border: none;
		width: 100%;
		max-width: 130px;
	}
	.section{
		border: none;
		top: 70px;
	}
	.manual_gnavi_sp_wrap{
		background: #333;
	}
	.manual_gnavi_sp_wrap ul li:first-child {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #666;
		position: relative;
	}
	.manual_gnavi_sp_wrap ul li:after{
		content: '';
		width: 1px;
		height: 100%;
		background: #666;
		position: absolute;
		top: 0;
		left: 0;
	}
	.manual_gnavi_sp_wrap ul li:nth-child(n+2){
		width: 50%;
		text-align: center;
		border-bottom: 1px solid #666;
		position: relative;
	}
	ul.manual_gnavi_sp{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 455px;
		justify-content: space-around;
		color: #FFF;
		font-size: 17px;
		font-weight: bold;
	}
	ul.manual_gnavi_sp li a{
		text-decoration: none;
		display: block;
		padding: 20px 0;
	}
	.manual_gnavi_pc{
		display: none;
	}
	/* dlc ここから */
	.dlc_content_wrap{
		gap: 0;
		margin-bottom: 50px;
	}
	.resource_dlc_container{
		flex-wrap: wrap;
	}
	.resource_dlc_wrap{
		margin-bottom: 50px;
	}
	.stage_pass_title{
		font-size: 20px;
	}
	/* dlc ここまで */
}
/* スマホ用css ここまで */

/* iPhone5/SE用css */
@media screen and (max-width:320px) {
	.ps5_logo_SP{
		position: absolute;
		max-width: 120px;
	}
	.ps_store_image{
		position: absolute;
		bottom: -21%;
		max-width: 250px;
	}
	.hero-logo{
		position: absolute;
		bottom: 4%;
		left: 50%;
		transform: translate(-50%, 15%);
		width: 100%;
		max-width: 300px;
	}
	#g-nav.panelactive ul.c-lang{
		padding: 0;
	}
	/* news.html ここから */
	.news-container dl{
		padding: 5%;
	}
	.pagewrap{
		padding: 0 5%;
		margin: 10px auto;
	}

	.pagewrap .first-page button, .pagewrap .end-page button{
		padding: 4px;
	}

	.pagewrap .prev-page button, .pagewrap .next-page button{
		padding: 4px;
	}

	ul.pageinner li a{
		padding: 4px;
	}
	/* news.html ここまで */
	
	/* グローバルナビ ここから */
	#g-nav > #g-nav-list > ul.g-nav-main li.l-nav-item a{
		font-size: 20px;
	}
	#g-nav.panelactive #g-nav-list{
		top: 60%;
	}
	/* グローバルナビ ここまで */

	h1.faq-title{
		line-height: 1.5;
		padding: 10%;
	}
	.question{
		margin: 0 5px;
	}
	.answer{
		margin: 0 5px;
	}
	.question_txt_sp{
		margin-right: 30px;
	}
	.dlc_title_caption{
		font-size: 17px;
		display: block;
		line-height: 1.7;
	}

	/* webマニュアル ここから */
	.manual_gnavi_sp_wrap{
		background: #333;
	}
	ul.manual_gnavi_sp{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 455px;
		justify-content: space-around;
		color: #FFF;
		font-size: 17px;
		font-weight: bold;
	}
	ul.manual_gnavi_sp li a{
		text-decoration: none;
	}
	.manual_gnavi_pc{
		display: none;
	}
	.manual_gnavi_sp_wrap ul li:first-child {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #666;
		position: relative;
	}
	.manual_gnavi_sp_wrap ul li:after{
		content: '';
		width: 1px;
		height: 100%;
		background: #666;
		position: absolute;
		top: 0;
		left: 0;
	}
	.manual_gnavi_sp_wrap ul li:nth-child(n+2){
		width: 50%;
		text-align: center;
		border-bottom: 1px solid #666;
		position: relative;
	}
	/* webマニュアル ここまで */
}

@media screen and (max-width:414px) {
	.home-banner {
		padding: 16px 8px
	}
}

code[class*=language-], pre[class*=language-] {
    color: #000;
    background: none;
    text-shadow: 0 1px #fff;
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 1em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

code[class*=language-]::-moz-selection, code[class*=language-] ::-moz-selection, pre[class*=language-]::-moz-selection, pre[class*=language-] ::-moz-selection {
text-shadow:none;
background:#b3d4fc
}
code[class*=language-]::selection, code[class*=language-] ::selection, pre[class*=language-]::selection, pre[class*=language-] ::selection {
    text-shadow: none;
    background: #b3d4fc
}
pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto
}
:not(pre)>code[class*=language-], pre[class*=language-] {
    background: #f5f2f0
}
:not(pre)>code[class*=language-] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal
}
.token.cdata, .token.comment, .token.doctype, .token.prolog {
    color: #708090
}
.token.punctuation {
    color: #999
}
.token.namespace {
    opacity: .7
}
.token.boolean, .token.constant, .token.deleted, .token.number, .token.property, .token.symbol, .token.tag {
    color: #905
}
.token.attr-name, .token.builtin, .token.char, .token.inserted, .token.selector, .token.string {
    color: #690
}
.language-css .token.string, .style .token.string, .token.entity, .token.operator, .token.url {
    color: #9a6e3a;
    background: hsla(0,0%,100%,.5)
}
.token.atrule, .token.attr-value, .token.keyword {
    color: #07a
}
.token.class-name, .token.function {
    color: #dd4a68
}
.token.important, .token.regex, .token.variable {
    color: #e90
}
.token.bold, .token.important {
    font-weight: 700
}
.token.italic {
    font-style: italic
}
.token.entity {
    cursor: help
}

@media print {
code[class*=language-], pre[class*=language-] {
    text-shadow: none
}
}
@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
:root {
--swiper-theme-color:#007aff
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}
.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}
.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap
}
.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}
.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}
.swiper-container-pointer-events {
    touch-action: pan-y
}
.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}
.swiper-slide-invisible-blank {
    visibility: hidden
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}
.swiper-container-3d {
    perspective: 1200px
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent)
}
.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}
.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
display:none
}
.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}
.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}
.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}
:root {
--swiper-navigation-size:44px
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
width:calc(var(--swiper-navigation-size)/44*27);
    height: 44px;
    height: var(--swiper-navigation-size);
    margin-top: -22px;
margin-top:calc(var(--swiper-navigation-size)*-1/2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-theme-color);
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-feature-settings: normal,;
    font-variant: normal;
    line-height: 1
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}
.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
--swiper-navigation-color:#fff
}
.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
--swiper-navigation-color:#000
}
.swiper-button-lock {
    display: none
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;

    transform: translateZ(0);
    z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}
.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}
.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}
.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}
.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}
.swiper-pagination-white {
--swiper-pagination-color:#fff
}
.swiper-pagination-black {
--swiper-pagination-color:#000
}
.swiper-pagination-lock {
    display: none
}
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}
.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}
.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}
.swiper-scrollbar-cursor-drag {
    cursor: move
}
.swiper-scrollbar-lock {
    display: none
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}
.swiper-slide-zoomed {
    cursor: move
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite;
    box-sizing: border-box;
    border-left: 4px solid var(--swiper-theme-color);
    border-bottom: 4px solid var(--swiper-theme-color);
    border-right: 4px solid var(--swiper-theme-color);
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent
}
.swiper-lazy-preloader-white {
--swiper-preloader-color:#fff
}
.swiper-lazy-preloader-black {
--swiper-preloader-color:#000
}
@-webkit-keyframes swiper-preloader-spin {
to {
transform:rotate(1turn)
}
}
@keyframes swiper-preloader-spin {
to {
transform:rotate(1turn)
}
}
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-cube {
    overflow: visible
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next+.swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}
.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}
.swiper-container-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}
.swiper-container-flip {
    overflow: visible
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}