@charset "utf-8";


/*=======================================
Common
=======================================*/

html {}

body {
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 24px;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

body#ja {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
}

body#zh {
  font-family: "Noto Serif TC", serif;
}

.wrapper {
	min-width: 1200px;
	overflow: hidden;
}

/*=======================================
init
=======================================*/


.pc-none { display: none !important; }
.sp-none { display: block !important; }


.scroll-fade {
	margin: 50px 0;
	font-size: 40px;
	font-weight: bold;
	color: #ff0000;
	opacity: 0;
}

.fadeInDown {
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
	0% { opacity: 0; -webkit-transform: translateY(-20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
	0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
	100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


.slick-disabled {
	display: none !important;
}

.slick-dots {
  bottom: -30px;
}

.slick-dots li, .slick-dots li button {
  width: 30px;
  height: 10px;
}

.slick-dots li button:before {
  color: #ccc;
  width: 100%;
  height: 10px;
  background: #fff;
  content: '';
  opacity: 0.6;
}

.slick-dots li.slick-active button:before {
  color: #900;
  background: #016;
  opacity: 1;
}

.slick-dots li button:focus, .slick-dots li button:hover {
	background: #016;
}

.slick-arrow {
  height: 200px;
  width: 60px;
}


.slick-arrow:before {
  height: 200px;
  width: 60px;
  background: url(../img/common/arrow001.png);
  display: block;
  text-indent: -9999px;

  /*position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/common/arrow001.png);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-left: none;
  border-bottom: none;
  display: block;
  z-index: 10;
  transition: border-color .3s;
  outline: none;
  text-indent: -9999px;*/
}
.slick-next {
  right: 5px;
}
.slick-prev {
  left: 5px;
  z-index: 1;
}
.slick-prev:before {
  left: 20px;
  margin-top: -25px;
  transform: rotate(-180deg);
}
.slick-next:before {
  right: 20px;
  margin-top: -25px;
  /*transform:rotate(45deg);*/
}
.slick-arrow:hover:before {
  border-color: #999;
}



/*=======================================
Links
=======================================*/

a ,a:link ,a:visited {
  color: #013;
}


/*=======================================
HoverSet
=======================================*/

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

  .registerStore a:hover {
    opacity: 0.7;
  }

  .btn-SNS a:hover:before {
    transform: translateX(6px);
  }

	.sns a:hover {
    opacity: 0.7;
	}

	.btn-SNS:hover {
    opacity: 0.7;
	}

	.topRegister a:hover {
    opacity: 0.7;
	}

	.reportLinks a:hover {
    opacity: 0.7;
	}

  .storyVideo a.video:hover {
    opacity: 0.7;
  }

  #nav-content nav ul li a:hover {
    opacity: 0.7;
  }

  #nav-open:hover {
    opacity: 0.7;
  }

  .bannersArea a:hover {
    opacity: 0.7;
  }

}

/*=======================================
nav
=======================================*/


header {
}

#nav-drawer {
  position: fixed;
  background: #fff;
  border-radius: 100%;
  padding: 18px 20px 22px;
  top: 10px;
  left: 10px;
}

.nav-unshown {
  display:none;
}

#nav-open {
  display: inline-block;
  width: 40px;
  height: 32px;
  vertical-align: middle;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 4px;
    width: 40px;
    border-radius: 4px;
    background: #000;
    display: block;
    content: '';
    cursor: pointer;
    transition: .3s ease-in-out;
}
#nav-open span:before {
    bottom: -14px;
}
#nav-open span:after {
    bottom: -28px;
}



#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #fff;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}

#nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-input:checked ~ #nav-content nav ul li a label {
    display: block;
}

/*nav {
  position: absolute;
  width: 400px;
  background: #fff;
  z-index: 1000;
  height: 100%;
}
nav ul {
  position: fixed;
  line-height: 1;
  width: 400px;
  z-index: 1;
}

nav ul li {
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  height: 60px;
  margin: 0 22px;
  position: relative;
}
*/

#nav-open {
  z-index: 10000;
  position: relative;
  transition: .3s;
}

#nav-content {
  background: url(../img/renew/bg004.jpg);
}

#nav-content nav {
  margin-top: 20px;
}

#nav-content nav ul li a {
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
  font-weight: bold;
  transition: .3s;
}


#nav-content .topRegisterWrap {
  width: 100%;
  padding: 20px 0;
  background: none;
}

#zh #nav-content .topRegisterWrap {
  width: 100%;
  padding: 20px 0;
  background: none;
  display: flex;
  flex-wrap: wrap;
}

#zh #nav-content .topRegister:last-child a {
  margin-left: 0;
  margin-top: 20px;
}

#nav-content .topRegister img {
  height: 40px;
}



#nav-content h2 {
  border-bottom: #000 solid 1px;
  height: 40px;
  line-height: 40px;
  background: #000327 url(../img/renew/bg002.jpg) top center;
  color: #ff9;
  padding: 29px 0;
}


#nav-content h2:after ,#nav-content h2:before {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255,255,120,0), rgba(255,255,120,1) 50%, rgba(255,255,120,0));
  width: 60%;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
}

#nav-content .language a {
  margin-bottom: 0;
}

#nav-input:checked ~ #nav-open span {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
  background: #fff;
}
#nav-input:checked ~ #nav-open span:before {
  opacity: 0;
  background: #fff;
}
#nav-input:checked ~ #nav-open span:after {
  -webkit-transform: translateY(-28px) rotate(90deg);
  transform: translateY(-28px) rotate(90deg);
  background: #fff;
}


/*=======================================
Layout
=======================================*/


main {
	background-image: url(../img/top/bg001.jpg);
	background-position: top center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	min-width: 1200px;
	width: 100%;
	display: block;
}

/*main:before {
	content: '';
	display: block;
	position: relative;
	height: 4px;
	background: #ff9;
	top: 0;
	width: 100%;
	box-shadow: 0 0 10px #000;
	z-index: 1;
}

main:after {
	content: '';
	display: block;
	position: relative;
	height: 4px;
	background: #ff9;
	bottom: 0;
	width: 100%;
	box-shadow: 0 0 10px #000;
	margin-top: 300px;
}*/


header {
	position: absolute;
	z-index: 10;
}

footer {
	background: #eee;
	padding-bottom: 20px;
	overflow: hidden;
	position: relative;
	color: #013;
}



/*=======================================
Section Main
=======================================*/

.secMain {
	background: #449bf5 url(../img/top/bg001.jpg) no-repeat top center;
	min-height: 880px;
	left: 0;
	right: 0;
	margin: 0 auto;
	overflow: hidden;
/*  -webkit-animation-name: bgBlur;
  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-name: bgBlur;
  animation-duration: 2s;
  animation-fill-mode: both;*/
	z-index: 1;
	position: relative;
}

.mainBgWrap {
	position: relative;
}

@-webkit-keyframes bgBlur {
    0% { -webkit-filter: blur(40px); }
    100% { -webkit-filter: blur(0px); }
}
@keyframes bgBlur {
    0% { filter: blur(40px); }
    100% { filter: blur(0px); }
}

.mainBgShip {
	position: absolute;
	height: 960px;
	overflow: hidden;
  left: 50%;
  margin-left: -1000px;
}

.mainBgHuman {
	position: absolute;
	height: 960px;
	overflow: hidden;
  left: 50%;
  margin-left: -1000px;
  margin-top: -60px;
}

.mainLogoAreaWrap {
	position: relative;
	margin: 0 auto;
}

.mainLogoArea {
	position: absolute;
	width: 900px;
	left: 50%;
	margin-left: -600px;
	top: 50px;
	position: relative;
}

.topDate {
  margin-top: -20px;
}

.topDate img {
  width: 100%;
}

.mainOS {
	color: #fff;
	text-shadow: 0 0 5px #000;
	font-weight: bold;
	text-align: left;
	padding-left: 10px;
	line-height: 1;
}


.mainLogo {
	width: 100%;
  filter: drop-shadow(0 0 5px rgba(0,0,0,1));
}

.mainDate {
	display: block;
	color: #fff;
	text-shadow: 0 0 10px #000,0 0 10px #000,0 0 10px #000;
	letter-spacing: 0.9em;
	margin: 0 auto 0;
	padding-top: 26px;
	font-size: 28px;
  font-weight: bold;
}

.mainDate img {
	width: 100%;
}

.mainDate.js-scroll.done .motion-txt .motion-inner {
	padding: 10px;
}

.mainRegister {
	position: relative;
	width: 100%;
}

.mainRegister a {
	margin-top: 20px;
	color: #ff9;
	background: #013;
	text-shadow: none;
	font-size: 30px;
	line-height: 30px;
	display: block;
	height: 70px;
	line-height: 70px;
	width: 800px;
	text-decoration: none;
	letter-spacing: 0.4em;
	border-radius: 35px;
	transition: all .3s;
}

.mainRegister .motion-txt:after {
	background-color: #ffc;
}

.mainBgShip span {
	display: block;
	animation: horizontal 1.6s ease-in-out infinite alternate;
}

.mainBgShip span img {
	animation: vertical 2s ease-in-out infinite alternate;
}


/* mainShip */

@keyframes horizontal {
    0% { transform:translateX( -3px); }
  100% { transform:translateX(  0px); }
}
@keyframes vertical {
    0% { transform:translateY(-10px); }
  100% { transform:translateY(  0px); }
}


main {
	position: relative;
	overflow: hidden;
	background: none;
}


main:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255,255,120,0.4), rgba(255,255,120,1) 50%, rgba(255,255,120,0.4));
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 10px #000;
  z-index: 1;
}

/*main .mainBgShip {
	position: fixed;
	top: 0;
}
*/


/*h2 {
	font-size: 17vw;
	position: absolute;
	opacity: 0.1;
	top: 0;
	line-height: 1;
	font-weight: bold;
}*/




.twArea {
	background: #000327 url(../img/renew/bg002.jpg) top center;
/*	height: 600px;*/
	position: relative;
	z-index: 1;
/*	display: flex;*/
	padding-top: 40px;
  padding-bottom: 20px;
}


.twArea:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	background-image: linear-gradient(to right, rgba(255,255,120,0.4), rgba(255,255,120,1) 50%, rgba(255,255,120,0.4));
	top: 0;
	width: 100%;
	box-shadow: 0 0 10px #000;
}

.bannersArea {
  display: flex;
  justify-content: space-around;
  width: 1160px;
  margin: 60px auto;
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 4px;
}

.bannersArea a {
  width: 560px;
  display: block;
  transition: all .3s;
}

.bannersArea a img {
  width: 100%;
  clear: both;
  display: block;
}


.storyArea {
  background: url(../img/renew/bg005.jpg) top center fixed;
  background-size: cover;
}

.videoArea {
}

.systemArea {
	background: url(../img/renew/bg001.jpg) top center fixed;
  background-size: cover;
}

.charaArea {
  background: url(../img/renew/bg003.jpg) top center fixed;
  background-size: cover;
}

.shipArea {
  background: url(../img/renew/bg006.jpg) top center fixed;
  background-size: cover;
}

.reportArea {
}


.systemArea .secTitle, .charaArea .secTitle, .shipArea .secTitle, .reportArea .secTitle {
	padding-top: 140px;
	margin-top: 0;
}

.storyArea:before, .videoArea:before, .systemArea:before, .charaArea:before, .shipArea:before, .reportArea:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	background-image: linear-gradient(to right, rgba(255,255,120,0.4), rgba(255,255,120,1) 50%, rgba(255,255,120,0.4));
	top: 0;
	width: 100%;
	box-shadow: 0 0 10px #000;
}


.topRegisterWrap {
	width: 600px;
	display: flex;
	justify-content: center;
  background: url(../img/renew/register-bg001.png) top center no-repeat;
  padding: 40px 0;
}

#zh .topRegisterWrap {
  width: 840px;
  background: url(../img/renew/register-bg002.png) top center no-repeat;
}

.topRegister a {
	margin-left: 20px;
	display: block;
	transition: opacity .3s;
}

.topRegister:first-child a {
	margin-left: 0;
}

.topRegister img {
	height: 80px;
	display: block;
}

.twAreaInner {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.topRegisterBanner {
  text-align: center;
  margin-top: 30px;
  width: 600px;
}

#zh .topRegisterBanner {
  width: 840px;
}


.topRegisterBanner img {
}

.twAreaLeft {
	width: 600px;
}


.twAreaVideo {
	margin-top: 140px;
}

.twAreaVideo iframe {
	display: block;
	width: 576px;
	height: 324px;
}


.tw-widjet {
	text-align: center;
	width: 576px;
}

#zh .tw-widjet {
  width: 360px;
}

.tw-widjet-ttl {
	width: 440px;
}












.systemBox {
	display: flex;
	margin: 0 8% 0;
	align-items: center;
  padding-top: 100px;
  padding-bottom: 140px;
}


.box {
	width: 44%;
	text-align: left;
	color: #fff;
	height: 100%;
	position: relative;
	margin-left: -1%;
	z-index: 1;
	background: url(../img/renew/system-frame002.jpg);
	background-size: 100% auto;
	box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.box:before {
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	background: url(../img/renew/system-frame001.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.box:after {
	content: '';
	display: block;
	position: relative;
	height: 100%;
	width: 100%;
	background: url(../img/renew/system-frame003.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	bottom: 0;
  z-index: 1;
  height: 80px;
  background-position: bottom;
}

.box h4 {
	font-size: 56px;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 80px 10% 0;
	line-height: 1;
	letter-spacing: 0.2em;
	font-weight: bold;
}

.box h5 {
	font-size: 24px;
	text-align: center;
	position: relative;
	z-index: 1;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px 10%;
	position: relative;
	font-weight: bold;
	letter-spacing: 0.1em;
  line-height: 1.6;
}

.box h5:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	background-image: linear-gradient(to right, rgba(255,255,120,0.4), rgba(255,255,120,1) 50%, rgba(255,255,120,0.4));
	top: 0;
	width: 80%;
}

.box h5:after {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	background-image: linear-gradient(to right, rgba(255,255,120,0.4), rgba(255,255,120,1) 50%, rgba(255,255,120,0.4));
	bottom: 0;
	width: 80%;
}


.box p {
	font-size: 18px;
	position: relative;
	z-index: 1;
	padding: 0 10%;
}

img.boxTitle {
	width: 50%;
	display: block;
	position: relative;
	z-index: 0;
}

img.boxText {
	margin-top: 40px;
	box-shadow: 0 0 20px rgba(0,0,0,0.6);
	width: 100%;
	display: block;
}

h3 {
	font-size: 36px;
}

.pic {
	width: 60%;
	box-shadow: 0 0 20px rgba(0,0,0,0.6);
  line-height: 1;
  border: #fff solid 3px;
  box-sizing: border-box;
}

.YTPOverlay.raster, .YTPOverlay.raster.retina {
	background-image: url(../img/renew/raster.png);
}


.pic img {
	width: 100%;
	display: block;
	vertical-align: bottom;
}

.systemBox:nth-child(odd) {
	flex-direction: row-reverse;
}



.systemBox:nth-child(even) .box {
	margin-right: -1%;
	margin-left: auto;
}







.charaSlider {
}

.charaWrap {
}

.chara {
  display: flex;
  align-items: center;
}

.chara img {
  display: block;
  width: 60%;
  margin-left: 5%;
}


.prof {
  text-align: left;
  position: absolute;
  right: 0;
  top: 20%;
  width: 40%;
  color: #fff;
  margin-right: 5%;
  background: rgba(0,17,102,0.6) url(../img/renew/chara-frame002.png);
  background-size: 100% auto;
}

.prof:before {
  content: '';
  display: block;
  position: absolute;
  height: 30px;
  top: -30px;
  width: 100%;
  background: rgba(0,17,102,0.6) url(../img/renew/chara-frame001.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.prof:after {
  content: '';
  display: block;
  position: relative;
  height: 30px;
  bottom: -30px;
  width: 100%;
  background: rgba(0,17,102,0.6) url(../img/renew/chara-frame003.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 1;
  background-position: bottom;
  margin-top: -30px;
}



.chara02 .prof {
  width: 43%;
}


.prof h4 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  padding: 16px 6%;
  line-height: 1;
}

.prof h4:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255,255,120,1), rgba(255,255,120,0));
  bottom: 0;
  width: 80%;
}

.prof p {
  font-size: 18px;
  line-height: 30px;
  padding: 0 6% 10px;
}

.cv {
  font-weight: bold;
  font-size: 11%;
}


.illustrator {
  background-color: rgba(255,255,255,0.4);
  display: inline-block;
  margin: 60px auto 0;
  font-size: 56%;
  padding: 20px;
  border-radius: 6px;
  max-width: 80%;
}

.illustratorTitle {
  font-weight: 700;
}


.charaSlider .slick-slide, .shipList .slick-slide {
  transform: scale(0.9);
  filter: blur(10px);
  transition: all .3s ease;
}


.charaSlider .slick-center, .shipList .slick-center {
  transform: scale(1);
  filter: none;
}

.charaSlider .slick-next, .shipList .slick-next {
  right: 6%;
}

.charaSlider .slick-prev, .shipList .slick-prev {
  left: 6%;
}


.shipList {
  background: rgba(0,10,84,0.6);
}

.shipWrap {
  display: block;
  padding: 20px;
}

.shipImg {
  width: 200px;
  margin: 0 auto;
}

.shipImg img {
  width: 100%;
}


.shipText {
  color: #fff;
  padding: 20px;
}

.shipText h4 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  padding: 10px 0;
  line-height: 1.4;
}

.shipText h4:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255,255,120,0), rgba(255,255,120,1) 50%, rgba(255,255,120,0));
  bottom: 0;
  width: 100%;
}

.shipText p {
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
}




/*=======================================
topWrap
=======================================*/
/*
.topWrap {
	background:url(../img/top/bg008.jpg) no-repeat top center;
	height: 900px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.topBgWrap {
	min-width: 1200px;
	position: relative;
}


.topLogoAreaWrap {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.topLogoArea {
	position: absolute;
	width: 800px;
	left: 50%;
	margin-left: -600px;
	top: 20px;
	position: relative;
}

.topOS {
	padding-left: 8px;
	width: 200px;
	margin-bottom: -10px;
}

.topOS img {
	width: 100%;
}

.topLogo {
	width: 100%;
	filter: drop-shadow(0 0 5px rgba(0,0,0,1));
}

.topDate {
	display: block;
	width: 800px;
	margin: 0 auto -20px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

.topDate img {
	width: 100%;
}


#ja .topRegisterWrap {
	background: url(../img/top/bg-dl_pc_ja.png);
	background-size: 800px auto;
}

#zh .topRegisterWrap {
	background: url(../img/top/bg-dl_pc_zh.png);
	background-size: 800px auto;
}

.topRegisterWrap {
	display: flex;
	height: 120px;
}

.topRegister {
	margin-top: 34px;
	margin-left: 10px;
}

#zh .topRegister:first-child {
	margin-left: 220px;
}

#ja .topRegister:first-child {
	margin-left: 380px;
}

.topRegister a {
	height: 60px;
	display: block;
	transition: all .3s;
}

.topRegister a img {
	height: 100%;
	display: block;
}
*/

/*=======================================
Section common
=======================================*/

section {
	min-width: 1200px;
	margin: 0 auto;
	position: relative;
  padding-top: 10px;
  padding-bottom: 200px;
}


.secTitle {
	text-align: center;
	margin: 140px auto 60px;
  color: #fff;
  font-size: 48px;
  text-shadow: 0 0 10px #000, 0 0 20px #000;
  line-height: 1;
}

.secTitle:after {
  content: '';
  background: url(../img/renew/title-bg001.png) top center no-repeat;
  height: 67px;
  display: block;
  margin: 0 auto;
}


.secTitle span {
  font-size: 140px;
  position: absolute;
  opacity: 0.1;
  text-shadow: none;
  left: 0;
  right: 0;
  top: 50px;
  font-weight: bold;
}


/*=======================================
Section Story
=======================================*/

.secStory {
}


.storyPrologueWrap {
}

.storyPrologue {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 80px 0 1px;
	background-image: url(../img/top/sec-story-head.png);
	background-position: top center;
}

.storyPrologueInner {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

.storyPrologue:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -80px;
	height: 180px;
	width: 1200px;
	background-image: url(../img/top/sec-story-foot.png);
	background-size: 1200px 180px;
	background-repeat: no-repeat;
	background-position: bottom center;
}


.storyPrologue .slider {
	z-index: 1;
	position: relative;
}




/*=======================================
Section Video
=======================================*/

/*.secVideo {
	background: #fff;
	margin: 0 auto;
}*/



/*
Video
*/

.storyVideoWrap {
	margin: 0 auto;
}


.storyVideo span {
	display: block;
	box-shadow: 0 0 20px #000;
	background-color: #000;
	z-index: 1;
	width: 720px;
	height: 405px;
	margin: 0 auto;
	position: relative;
}

.storyVideo span iframe {
	display: block;
	width: 720px;
	height: 405px;
}


.storyVideo span:before {
	content: '';
	width: 90px;
	height: 405px;
	background: url(../img/top/img-ornaments003.png);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	margin-left: -90px;
}


.storyVideo span:after {
	content: '';
	width: 90px;
	height: 405px;
	background: url(../img/top/img-ornaments003.png);
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	margin-right: -90px;
	transform: rotateY(180deg);
}

.storyVideo a.video {
  width: 720px;
  display: block;
  transition: opacity .3s;
}

.storyVideo a.video img {
  width: 100%;
}

/*=======================================
Section Register
=======================================*/


#ja .registerArea {
	background-image: url(../img/top/sec-register2_ja.png);
}

#zh .registerArea {
	background-image: url(../img/top/sec-register2_zh.png);
}


.secRegister {
}

.registerGift {
	display: block;
	margin: 40px auto 100px;
	overflow: hidden;
}

.registerGift img {
	display: block;
}


.registerGift.js-scroll.done .motion-txt:after {
	transition-delay: 0.2s;
}


.registerGift .motion-txt:after {
	background-color: #ffc;
}



.registerArea {
	margin: 0 auto;
	height: 520px;
}

.registerArea {
	padding-top: 180px;
}




.registerStore, .registerSNS {
	display: flex;
	margin: 0 auto 50px;
	text-align: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
}

.registerStore h4, .registerSNS h4 {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 26px;
	color: #111;
}

.registerStore a {
	display: block;
	transition: all .3s;
	margin-left: 20px;
}

.registerStore a:first-of-type {
	margin-left: 0;
}

.registerStore a img {
	height: 80px;
	display: block;
}



/* reports */

.reportLinksWrap {
  background-image: url(../img/top/sec-story-head.png);
	width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 80px 0 1px;
	background-position: top center;
}

.reportLinksWrap:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -80px;
	height: 180px;
	width: 1200px;
	background-image: url(../img/top/sec-story-foot.png);
	background-size: 1200px 180px;
	background-repeat: no-repeat;
	background-position: bottom center;
}


.reportLinksInner {
  display: flex;
	width: 1000px;
	margin: 0 auto;
}

.reportLinks {
  position: relative;
  z-index: 3;
  margin: 20px auto;
  display: flex;
}

.reportLinks a {
  transition: all .3s;
  width: 100%;
  height: auto;
  font-size: 18px;
  transition: all .3s;
}

.reportLinks .reportImg {
  width: 160px;
  margin-bottom: 10px;
  height: auto;
}

.reportLinks .reportImg img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.reportTxt {
	display: block;
}



/*=======================================
Footer
=======================================*/

/* spac */

.spac {
	margin-bottom: 40px;
	padding-bottom: 40px;
	padding-top: 80px;
	display: flex;
	justify-content: center;
	border-bottom: #ccc solid 1px;
	z-index: 1;
  position: relative;
}

.iconApp {
	width: 120px;
	height: 120px;
	border-radius: 20px;
	display: block;
	margin-right: 20px;
}

.spac dl {
	display: flex;
	flex-wrap: wrap;
	width: 400px;
	font-size: 14px;
	text-align: left;
}

.spac dl dt {
	width: 20%;
	border-right: #246 solid 1px;
	padding-right: 4%;
	margin-bottom: 2%;
}

.spac dl dd {
	padding-left: 4%;
	width: 70%;
}

/* language */

.language {
}

.languageTitle {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.1em;
}

.language span {
  text-align: center;
  margin: 0 auto;
}

.language a {
  display: inline-block;
  padding: 10px;
  transition: all 0.3s ease-out;
  letter-spacing: 0.1em;
  margin: 0 0.8em;
  border: #013 solid 2px;
  vertical-align: middle;
  color: #013;
  text-decoration: none;
  outline: none;
  margin-bottom: 60px;
	font-size: 14px;
  line-height: 20px;
  text-align: center;
}




/* sns */

.sns {
  margin: 0 auto;
  padding: 0 0 40px;
  z-index: 1;
  position: relative;
}

.sns a {
  display: inline-block;
  margin: 0 0.8em;
  line-height: 1;
  transition: all .3s;
}

.sns a img {
  padding: 1.6vw;
  width: 50px;
}

.tw { background: #1DA1F2; }
.fb { background: #3b5998; }
.yt { background: #f00; }
.wb { background: #df2029; }
.ln { background: #00b900; }


/* footerlogos */

.footerLogos {
  position: relative;
  display: flex;
  width: 360px;
  justify-content: space-between;
  margin: 0 auto 20px;
}

.footerlogo { display: block; height: 50px; }

.footerlogo img { display: block; height: 50px; }

.copy { display: block; font-size: 12px; margin-top: 40px; }


.footerLinks { margin-bottom: 40px; }

.footerLinks a { font-size: 14px; text-decoration: none; padding: 0 20px; display: inline-block; }

.footerLinks a:after { content: ''; height: 2px; background: #000; display: block; }


.footerRating {
  display: flex;
  padding: 0 20px;
  margin: 20px auto;
  justify-content: center;
}

.footerRating img {
  height: 50px;
}

.footerRating p {
  padding: 0 20px;
  text-align: left;
  font-size: 10px;
  line-height: 1.4;
}

/*=======================================
Buttons
=======================================*/


/* btns-tw */

.btn-SNS.btn-tw {
	background: #00acee;
}

.btn-SNS.btn-ln {
	background: #00b900;
}

.btn-SNS.btn-ml {
	background: #da342c;
}
.btn-SNS.btn-fb {
	background: #3b5998;
}



.btn-SNS {
  margin: 0 10px;
  width: 260px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  position: relative;
  z-index: 10;
  padding: 14px;
  font-size: 18px;
  background: #900;
  transition: all .3s;
}

.btn-SNS a {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.btn-SNS a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 0;
  height: 0;
  margin-top: -8px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  transition: all .3s;
}


.btn-SNS img {
  width: 40px;
  display: inline-block;
}

.btn-SNS span {
  line-height: 40px;
  vertical-align: middle;
  display: inline-block;
}



/*=======================================
Anim
=======================================*/




/*=======================================
Class
=======================================*/

header .sns {
/*	position: absolute;
	top: 8px;
	right: 20px;*/
	margin: 40px 0 0 0;
	padding: 0;
}

header .sns a {
	margin: 0 0 0 10px;
}

header .sns a:first-child {
  margin-left: 0;
}

header .sns a img {
	padding: 12px;
	width: 24px;
}





/*=======================================
Adjust
=======================================*/





/*=======================================
SP
=======================================*/


@media screen and (max-width: 768px) {

  .pc-none { display: block !important; }
  .sp-none { display: none !important; }


	#ja .registerArea {
		background-image: url(../img/top/sec-register2_sp_ja.png);
	}

	#zh .registerArea {
		background-image: url(../img/top/sec-register2_sp_zh.png);
	}


	/* setup */

	header {
		width: 100%;
	}

	main {
		width: 100%;
		min-width: initial;
	}

	main:after {
		margin-top: 180px;
	}

	.wrapper {
		min-width: initial;
	}

	.slick-arrow {
		display: none !important;
	}

	/* mainBG */

	.mainBg-sp {
		position: relative;
		display: block;
		width: 100%;
	}

	.mainBg-sp img {
		width: 100%;
		display: block;
	}


	.mainDate {
		padding-top: 20px;
		font-size: 3vw;
		margin-left: 5%;
		width: 90%;
		margin-bottom: 0;
	}

	.topWrap {
  	height: auto;
  	background: none;
	}

  .topBgWrap {
  	width: 100%;
		min-width: initial;
		height: auto;
  }

  .mainLogo {
  	width: 90%;
  }

  .mainLogoAreaWrap {
  	position: absolute;
  	width: 100%;
  	top: 0;
  }

  .mainLogoArea {
  	width: 100%;
  	left: auto;
  	margin-left: 0;
  	top: 62px;
  }

  .topDate {
  	width: 90%;
  	margin-top: -10px;
  }

  .secMain {
    min-height: 50vw;
  }


/*  .topRegister a {
  	width: 100%;
  	position: fixed;
  	top: auto;
  	left: 0;
  	bottom: 0;
  	z-index: 100;
  	border-radius: 0;
  	height: auto;
  }

  .topRegister a img {
  	height: auto;
  	width: 100%;
  }*/


	/* section */

  section {
  	width: 100%;
    min-width: initial;
    padding-bottom: 100px;
  }



  .storyArea {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background: url(../img/renew/bg005.jpg) top center no-repeat;
    background-size: cover;
  }
  .systemArea {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background: url(../img/renew/bg001.jpg) top center no-repeat;
    background-size: cover;
  }

  .charaArea {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background: url(../img/renew/bg003.jpg) top center no-repeat;
    background-size: cover;
  }

  .shipArea {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background: url(../img/renew/bg006.jpg) top center no-repeat;
    background-size: cover;
  }


  #nav-content .topRegister {
    width: auto;
  }

  #nav-content .language {
    margin-top: 0;
  }


  .secTitle {
  	margin-top: 100px;
  	width: 80vw;
  }

  .secTitle img {
  	width: 100%;
  }


  .twArea {
    padding-top: 20px;
    height: auto;
    padding-bottom: 20px;
  }


  .bannersArea {
    width: 80%;
    display: block;
    padding: 5%;
    margin: 5% auto;
  }

  .bannersArea a {
    width: auto;
  }

  .bannersArea a img {
    width: 100%;
  }


  .twAreaInner {
    width: 90%;
    display: block;
  }

  .twAreaLeft {
    width: 100%;
  }

  .tw-widjet-ttl {
    width: 100%;
  }

  .topRegisterWrap {
    width: 100%;
    background: none;
    padding-top: 10px;
  }

  #zh .topRegisterWrap {
    width: 100%;
    background: none;
    padding-top: 10px;
  }

  .topRegister{
    width: 100%;
  }

  .topRegister img {
    height: 14vw;
  }


  #zh .topRegister img {
    height: 10vw;
  }

  .topRegisterBanner {
    width: 100%;
    margin-top: 0;
    height: auto;
  }

  #zh .topRegisterBanner {
    width: 100%;
  }

  .topRegisterBanner img {
    width: 100%;
  }

  .tw-widjet {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #zh .tw-widjet {
    width: 100%;
  }

  .tw-widjet iframe { width: 740px !important; }


  .secTitle span {
    font-size: 14vw;
  }

  .secTitle {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .secTitle:after {
    width: 80%;
    background-size: 100%;
  }



  .storyVideo a.video {
    width: 100%;
  }


  .systemBox {
    display: block;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .box {
    width: 100%;
    margin-bottom: 20px;
  }

  .box h4 {
    font-size: 30px;
  }

  .box h5 {
    font-size: 18px;
  }

  .box p {
    font-size: 12px;
  }

  .pic {
    width: 100%;
  }

  .systemBox .box, .systemBox .pic{
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .prof {
    margin-top: 0;
  }

  .prof:before {
    height: 16px;
    top: -16px;
  }

  .prof:after {
    height: 16px;
    bottom: -16px;
    margin-top: -16px;
  }

  .chara02 .prof {
    width: 39%;
  }
  .prof h4 {
    padding-top: 0;
    font-size: 16px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }

  .prof p {
    font-size: 10px;
    line-height: 16px;
    padding-bottom: 0;
  }

  .systemArea .secTitle, .charaArea .secTitle, .shipArea .secTitle, .reportArea .secTitle {
    padding-top: 60px;
  }

  .shipText h4 {
    font-size: 24px;
  }

  .shipText p {
    font-size: 16px;
  }

  #nav-drawer {
    padding: 6px 13px;
    height: 44px;
  }

  #nav-open {
    width: 30px;
    height: 26px;
  }

  #nav-open span, #nav-open span:before, #nav-open span:after {
    width: 30px;
  }
  #nav-open span:before {
    bottom: -10px;
  }
  #nav-open span:after {
    bottom: -20px;
  }

  #nav-input:checked ~ #nav-open span:after {
    -webkit-transform: translateY(-20px) rotate(90deg);
    transform: translateY(-20px) rotate(90deg);
  }
	/* story */

	.storyPrologueWrap {
	}

	.storyPrologue {
		width: 100%;
		background-size: 100%;
		padding: 20px 0 1px;
	}

	.storyPrologueInner {
		width: 90%;
	}

	.storyPrologue:after {
		width: 100%;
		background-size: 100vw auto;
	  height: 12vw;
	  bottom: -6vw;
	}


	.storyVideo {
		width: 90vw;
		margin: 0 auto;
	}


	/* video */

	.storyVideo span {
		height: 0;
    position: relative;
  	width: 100%;
    padding-bottom: 56.25%;
    max-width: 720px;
    max-height: 405px;
    display: block;
  }

  .storyVideo span iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 720px;
    max-height: 405px;
  }

  .storyVideo span:before, .storyVideo span:after {
  	display: none;
  }

	/* register */


/*	.topRegisterWrap {
		display: none;
	}*/

	.secRegister {
		width: 100%;
	}

	.registerGift {
		width: 80%;
		margin: 0 auto;
		height: auto;
	}

	.registerGift img {
		width: 100%;
	}

	.registerArea {
		width: 90vw;
		height: auto;
		position: relative;
		padding-top: 18vw;
		background-size: 90vw auto;
		background-repeat: no-repeat;
		background-position: top center;
	}

	.registerArea:after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -12vw;
		height: 12vw;
		width: 90vw;
		background-image: url(../img/top/sec-register-foot.png);
		background-size: 90vw auto;
		background-repeat: no-repeat;
		background-position: bottom center;
	}

	.registerStore, .registerSNS {
		margin-bottom: 30px;
	}

	.registerSNS {
		display: block;
	}

	.registerStore a {
    margin-left: 1%;
	}

	.registerStore a img {
		height: 40px;
		margin-top: 10px;
  	margin-bottom: 10px;
	}

	.registerStore h4, .registerSNS h4 {
		font-size: 3vw;
	}


	/* reports */

	.reportLinksWrap {
		width: 90%;
		background-size: 100% auto;
		padding: 20px 0 1px
	}

	.reportLinksWrap:after {
		width: 100%;
		background-size: 100% auto;
		bottom: -10vw;
	}

	.reportLinksInner {
		width: 90%;
		flex-wrap: wrap;
	}

	.reportLinks {
		width: 40%;
		margin: 10px auto;
	}

	.reportLinksCBT {
		width: 100%;
	}

	.reportLinks a {
		font-size: 12px;
	}

	.reportLinks .reportImg {
		width: 100%;
	}





	/* footer */


	.btn-SNS {
		font-size: 12px;
		min-width: 180px;
		height: 20px;
		line-height: 20px;
		margin-bottom: 20px;
		margin: 0 auto 20px;
		width: 60vw;
	}

	.btn-SNS img {
		width: 20px;
	}


	.language {
		font-size: 10px;
		margin-top: 30px;
	}

	.footerLogos {
		width: 60vw;
		max-width: 360px;
	}

	.footerlogo {
		height: 8vw;
	}

	.footerlogo img {
		height: 100%;
	}

	.spac {
		width: 90vw;
		margin: 0 auto;
	}

	.iconApp {
		width: 20vw;
		height: 20vw;
	}

	.spac dl {
		margin: 0 auto;
		width: 70vw;
		font-size: 10px;
	}

	.copy {
		width: 90%;
		font-size: 10px;
		margin: 0 auto;
	}


}



@media screen and (max-width: 360px) {
	.registerStore a img {
		height: 32px;
	}
}
