@charset "utf-8";
/* CSS Document */

/* PC */

/* ────────────────────────────
	Default Clear
──────────────────────────── */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, input, textarea, legend, article, aside, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: inherit;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
a {
	text-decoration: none;
	outline: none;
}
ul {
	list-style: none;
}
.clear {
	overflow: hidden;
	zoom: 1;
}

/* ────────────────────────────
	Page Config
──────────────────────────── */

html {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
	background-repeat: no-repeat;
	background-size: cover;
	overflow-x: hidden;	/* ★ワッペン用 */
}
div.wrapper {
	width: 100%;
	position: relative;
}
img {
	max-width: 100%; 
	height: auto;
}
a:hover {
	text-decoration: none;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

/* ────────────────────────────
	Header
──────────────────────────── */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	border-bottom: solid 1px rgba(255,255,255,0.8);
	z-index: 10;
}
header > .top-line {
	padding: 5px 10px 0 10px;
	background-color: #fff;
	border-bottom: solid 1px rgba(0,0,0,0.8);
}
header > .top-line:after {
	content: "";
	display: block;
	clear: both;
}
/* ticker */
header > .top-line > div.ticker {
	float: left;
	font-size: 0.8em;
}
/* sns */
header > .top-line > div.sns {
	float: right;
}
header > .top-line > div.sns > div {
	display: inline-block;
}
header > .top-line > div.sns span img {
	vertical-align: baseline;
}
header .fb_iframe_widget > span {
	vertical-align: baseline !important;
}
/* top-logo */
header > .top-logo {
	text-align: center;
	border-bottom: solid 1px rgba(255,255,255,0.8);
}

/* inner */
header > .inner {
	position: relative;
	margin: 0 auto;
	width: 1000px;
}
header > .inner > nav {
	display: table;
	table-layout: fixed;
	width: 100%;
	text-align:center;
}
header > .inner > nav > a {
	position: relative;
	display: table-cell;
	padding: 5px;
	max-width: 100%;
	vertical-align:middle;
	border-right: solid 1px rgba(255,255,255,0.8);
	border-top: none;
	transition: .3s;
}
header > .inner > nav > a:first-child {
	border-left: solid 1px rgba(255,255,255,0.8);
}
header > .inner > nav > a.close {
	cursor: default;
}
header > .inner > nav > a.close img {
	opacity: 0.5;
}
header > .inner > nav > a.open::before {
	position: absolute;
	top: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 5px;
	background-color: #ff6600;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
header > .inner > nav > a.open:hover::before {
	width: 100%;
}
header > .inner > nav > a.drop::after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: '';
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-right: 5px solid rgba(255,255,255,0.8);
	border-bottom: 5px solid rgba(255,255,255,0.8);
}
header > .inner > nav > a > img {
	transition: .3s;
}
header > #drop-nav {
	position: absolute;
	width: 100%;
	border-top: solid 1px rgba(255,255,255,0.8);
	background-color: rgba(0,0,0,0.8);
	display: block;
}
header > #drop-nav > div {
	width: 1000px;
	margin: 0 auto;
	padding: 20px 10px;
}
header > #drop-nav > div {
	display: none;
}
header > #drop-nav > div > h5 {
	display: inline-block;
	padding: 0 10px;
	border: solid 1px #eee;
	border-radius: 10px;
	font-weight: normal;
	color: #eee;
	font-size: 0.7em;
}
header > #drop-nav > div > ul {
	padding: 0 10px;
	margin-bottom: 10px;
}
header > #drop-nav > div > ul:last-child {
	margin-bottom: 0;
}
header > #drop-nav > div>  ul:after {
	display: block;
	clear: both;
	content: "";
}
header > #drop-nav > div > ul > li {
	display: block;
	float: left;
	margin: 0 10px 5px 0;
}
header > #drop-nav > div > ul li a {
	font-size: 0.8em;
	color: #eee;
	transition: .5s;
}
header > #drop-nav > div > ul li a > i {
	margin-right: 3px;
	color: #222;
	vertical-align: middle;
	transition: .3s;
}
header > #drop-nav > div > ul li a:hover {
	border-bottom: solid 1px #ff6600;
}
header > #drop-nav > div > ul li a:hover > i {
	color: #ff6600;
}

/* ────────────────────────────
	Footer
──────────────────────────── */
footer {
	width: 100%;
	background-color: #000;
}
footer > .outer {
	width: 100%;
	padding: 10px 0;
	border-top: solid 1px rgba(255,255,255,0.8);
}
footer > .outer > .inner {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}
footer p {
	margin: 5px 0;
	color: #ccc;
	font-size: 0.6em;
	text-align: center;
}
footer .foot-logo {
	position: relative;
}
footer .foot-logo .page-top {
	transition: .3s;
}
footer .foot-logo .page-top:hover {
	opacity: 0.7;
}
footer .foot-logo img.logo-ps4-cero {
	position: absolute;
	left: 0;
}
footer .foot-logo img.future-badge {
	position: absolute;
	left: 300px;
	width: 80px;
}
footer .foot-logo > a {
	display: inline-block;
}
footer .foot-logo > a.logo-falcom {
	position: absolute;
	right: 0;
	transition: .3s;
}
footer .foot-logo > a.logo-falcom:hover {
	opacity: 0.7;
}
footer .foot-logo:after {
	display: block;
	content: "";
	clear: both;
}

/* ────────────────────────────
	Page Config
──────────────────────────── */
div.container > .inner {
	width: 1000px;
	margin: 0 auto;
}
div.container > div.top-contents > .inner {
	width: 1000px;
	margin: 0 auto;
}

/* ────────────────────────────
	Top Page
──────────────────────────── */
body#top-page {
	background-image: url(../img/top/background3.jpg);
	background-color: #000;
/* 	background-position: bottom;	ver.5 */
}
body#top-page .top-img {
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
/*	box-shadow: 0 0 20px rgba(0,0,0,0.3);		 旧VII ver	*/
}
body#top-page .top-img > img {
	vertical-align: bottom;
}
body#top-page .top-img > img.top-visual {
	z-index: 1;
}
body#top-page .top-img > img.top-fire {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
body#top-page .top-img > img.top-cover {
	position: absolute;
	top: 0;
	opacity: 0;
	z-index: 2;
}
body#top-page .top-img > img.top-badge{
	position: absolute;
	top: 200px;
	right: 120px;
	z-index: 4;
}

/* GIF */
body#top-page .top-img .gif-movie {
	position: absolute;
	bottom: 30px;
	right: 120px;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	z-index: 5;
}
body#top-page .top-img .gif-movie a {
	position: relative;
	display: block;
	outline: none;
	transition: .3s;
}
body#top-page .top-img .gif-movie a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,1);
}
body#top-page .top-img .gif-movie a img {
	vertical-align: bottom;
}
body#top-page .top-img .gif-movie a img.play {
	position: absolute;
	top: 0;
	left:0;
	opacity: 0;
	z-index: 2;
	transition: .3s;
}
body#top-page .top-img .gif-movie a:hover img.play {
	opacity: 1;
}
body#top-page .top-img .gif-movie p {
	color: #fff;
	padding: 1px 0;
	background-color: #000;
	font-size: 0.7em;
	text-align: center;
}

/* other area */
body#top-page .other-area {
	position: absolute;
	top: 640px;
	right: 0;
	width: 450px;
	height: 120px;
	font-size: 0;
	background-color: rgba(255,255,255,0.8);
	box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
	border-radius: 20px 0 0 20px;
	z-index: 5;
}
body#top-page .other-area img {
	vertical-align: bottom;
}
body#top-page .other-area .inner{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
body#top-page .other-area .text {
	position: absolute;
	left: 20px;
}
body#top-page .other-area .faltsu {
	position: absolute;
	bottom: 10px;
	left: 30px;
	width: 220px;
}
body#top-page .other-area .faltsu img {
	border-radius: 5px;
}
body#top-page .other-area .patch {
	position: absolute;
	top: -20px;
	right: 30px;
	z-index: 5;
	outline: none;
/*	animation: korokoro 2.5s linear infinite;	*/
}
body#top-page .other-area .dlc {
	position: absolute;
	bottom: 0;
	right: 30px;
	z-index: 5;
	outline: none;
}
@keyframes korokoro { 
	0%   { transform: translate(0%, 0%); } 
	50%  { transform: translate(5%, 0%) rotate(5deg); } 
	100% { transform: translate(0%, 0%) rotate(0deg); } 
} 

body#top-page .container {
	border-top: solid 1px rgba(255,255,255,0.8);
}
div.container > div.top-contents {
	background-color: #000;
}
body#top-page .top-arrow {
	position: fixed;
	left: 45%;
	bottom: 3%;
}

/* NEWS */
body#top-page section#news {
	padding: 30px 0 20px 0;
	box-sizing: border-box;
}
body#top-page section#news > h2 {
	font-size: 1.8em;
	color: #f3f3f3;
}
body#top-page section#news > h2 span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	font-size: 0.5em;
	font-weight: normal;
}
body#top-page section#news div.news-more {
	margin-right: 10px;
	text-align: right;
}
body#top-page section#news div.news-more a {
	font-size: 0.8em;
	color: #ccc;
}
body#top-page section#news div.news-more a i {
	margin-right: 5px;
	color: #ccc;
	transition: .3s;
}
body#top-page section#news div.news-more a:hover i {
	color: #ff6600;
}
body#top-page div.news-area {
	width: 100%;
	margin: 20px 0 10px 0;
	text-align: center;
}
body#top-page div.news-area:after {
	content: "";
	clear: both;
	display: block;
}
body#top-page div.news-area > .box {
	display: block;
	float: left;
	margin: 0 9px;
	height: 250px;
	width: 230px;
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	color: #eee;
	transition: .3s;
	box-sizing: border-box;
	overflow: hidden;
}
body#top-page div.news-area > .box:hover {
	border: solid 3px #ff6600;
}
body#top-page div.news-area > .box > img {
	transition: .3s;
}
body#top-page div.news-area > .box:hover > img {
	opacity: 0.8;
}
body#top-page div.news-area > .box > h3 {
	padding: 5px 3px;
	text-align: left;
	display: block;
	font-weight: normal;
	font-size: 0.8em;
}
body#top-page div.news-area > .box > h3 > span {
	display: inline-block;
}
body#top-page div.news-area > .box > p {
	padding: 0 3px;
	text-align: left;
	font-size: 0.8em;
}
body#top-page div.news-area > .box > time {
	margin: 1px 0;
	padding: 0 3px;
	display: block;
	text-align: left;
	font-size: 0.7em;
}
body#top-page div.news-area > .box > time > img {
	margin-right: 5px;
	vertical-align: bottom;
}

/* INFORMATION */
body#top-page .information {
	padding: 30px 0 0 0;
	font-size: 0.9em;
}
body#top-page .information .inner {
	width: 980px;
	margin: 0 auto;
	text-align: center;
}
body#top-page .information .inner a {
	display: block;
	padding: 10px 0;
	color: #ff6600;
	border: solid 1px #ff6600;
	font-size: 1.1em;
	transition: .3s;
}
body#top-page .information .inner a:hover {
	background-color: #ff6600;
	color: #fff;
}
body#top-page .information i {
	margin: 0 5px 0 0;
}

/* topics */
body#top-page .topics {
	padding: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}
/* ys8 */
body#top-page .topics #ys8 {
	overflow: hidden;
	border: solid 1px #ff6600;
	border-radius: 3px;
	color: #eee;
}
body#top-page .topics #ys8 .left {
	float: left;
}
body#top-page .topics #ys8 .left img {
	vertical-align: bottom;
}
body#top-page .topics #ys8 .right {
	width: 520px;
	padding: 15px 10px 10px 10px;
	display: block;
	float: right;
}
body#top-page .topics #ys8 .right p {
	margin:10px 0;
	font-size: 0.9em;
}
body#top-page .topics #ys8 .right p.bold {
	border-bottom: solid 1px #ff6600;
	color: #ff6600;
}
body#top-page .topics #ys8 .right p.bold2 a {
	color: #ff6600;
	font-weight: bold;
	border-bottom: solid 1px #000;
	outline: none;
	transition: .3s;
}
body#top-page .topics #ys8 .right p.bold2 a:hover {
	border-bottom: solid 1px #ff6600;
}
body#top-page .topics #ys8 .right p.bold2 a i {
	margin-right: 5px;
}
body#top-page .topics #ys8 .right .intro p {
	margin:15px 0;
}
body#top-page .topics #ys8 .right .intro img {
	float: right;
	margin-left: 10px;
}
body#top-page .topics #ys8 .right .intro:after {
	display: block;
	content: "";
	clear: both;
}
body#top-page .topics #ys8 .right .faltsu-link {
	display: block;
	margin: 15px 0;
	overflow: hidden;
	border: solid 1px #ff6600;
}
body#top-page .topics #ys8 .right .faltsu-link a {
	float: left;
	margin-right: 10px;
}
body#top-page .topics #ys8 .right .faltsu-link a img {
	vertical-align: bottom;
}
body#top-page .topics #ys8 .right .faltsu-link p {
	margin: 5px 0;
	font-size: 0.8em;
	color: #ff6600;
	font-weight: bold;
}
body#top-page .topics #ys8 .right p.attention {
	padding: 5px;
	font-size: 0.7em;
	border: dashed 1px #ff6600;
	color: #ff6600;
}

/* chusenkai */
body#top-page .topics #chusenkai {
	border: solid 1px #ff6600;
/*	overflow: hidden;	*/
	border-radius: 3px;
	color: #eee;
}
body#top-page .topics #chusenkai .left {
	float: left;
	padding: 20px;
}
body#top-page .topics #chusenkai .left img {
	vertical-align: bottom;
}
body#top-page .topics #chusenkai .left a {
	transition: .3s;
}
body#top-page .topics #chusenkai .left a:hover {
	opacity: 0.8;
}
body#top-page .topics #chusenkai .right {
	width: 560px;
	padding: 15px 10px 10px 10px;
	display: block;
	float: right;
}
body#top-page .topics #chusenkai .right:after {
	display: block;
	content: "";
	clear: both;
}
body#top-page .topics #chusenkai .date {
	position: relative;
	margin-bottom: 10px;
}
body#top-page .topics #chusenkai .date img.now {
	position: absolute;
	width: 130px;
	animation: pikapika 2s ease infinite;
}
body#top-page .topics #chusenkai .date img.now.tokyo {
	top: 41px;
	left: 340px;
}
body#top-page .topics #chusenkai .date img.now.oosaka {
	top: 115px;
	left: 340px;
}
@keyframes pikapika {
	0% { transform:scale(1) }
	50% { transform:scale(1.15) }
	100% { transform:scale(1) }
}
body#top-page .topics #chusenkai .date img.sd {
	position: absolute;
	width: 180px;
	top: 25px;
	right: -120px;
	animation: fwafwa 3s ease infinite;
}
@keyframes fwafwa {
	0% { transform:translateY(0) }
	5% { transform:translateY(0) }
	10% { transform:translateY(0) }
	20% { transform:translateY(-15px) }
	25% { transform:translateY(0) }
	30% { transform:translateY(-15px) }
	50% { transform:translateY(0) }
	100% { transform:translateY(0) }
}
body#top-page .topics #chusenkai .requirement {
	margin: 20px 0 15px 0;
	padding: 10px 20px;
	border: solid 1px #fff;
	border-radius: 20px;
}
body#top-page .topics #chusenkai .requirement h3 {
	margin: 0 0 5px 0;
}
body#top-page .topics #chusenkai .bottom:before {
	clear: both;
	display: block;
	content: "";
}
body#top-page .topics #chusenkai .bottom {
	padding: 20px;
}
body#top-page .topics #chusenkai .bottom .inner {
	width: 600px;
}
body#top-page .topics #chusenkai p {
	padding: 7px 5px;
	font-size: 0.9em;
	color: #ddd;
}
body#top-page .topics #chusenkai p > a {
	color: #ff6600;
	border-bottom: solid 1px #ff6600;
	outline: none;
	font-size: 1.2em;
}
body#top-page .topics #chusenkai .attention {
	padding: 5px;
	margin-top: 10px;
	font-size: 0.7em;
	color: #ff6600;
	border: dashed 1px #ff6600;
}
body#top-page .topics #chusenkai .catch {
	position: relative;
	display: block;
	width: 100%;
	height: 180px;
	clear: both;
}
body#top-page .topics #chusenkai .catch img {
	z-index: 1;
	position: absolute;
	bottom: 20px;
}
body#top-page .topics #chusenkai .catch .juna-img {
	position: absolute;
	bottom: 10px;
	right: 40px;
	z-index: 0;
}

/* webcampaign */
body#top-page .topics #webcampaign {
	position: relative;
	border: solid 1px #ff6600;
	border-radius: 3px;
	color: #eee;
}
body#top-page .topics #webcampaign img {
	vertical-align: bottom;
}
body#top-page .topics #webcampaign a {
	position: absolute;
	padding: 15px 40px;
	bottom: 40px;
	left: 80px;
	font-size: 1.2em;
	color: #fff;
	border: solid 1px #fff;
	transition: .3s;
}
body#top-page .topics #webcampaign a:hover {
	color: #ff6600;
	border: solid 1px #ff6600;
}
body#top-page .topics #webcampaign a i {
	margin: 0 10px 0 0;
}

/* shokai */
body#top-page .topics #shokai {
	border: solid 1px #ff6600;
	overflow: hidden;
	border-radius: 3px;
	color: #eee;
}
body#top-page .topics #shokai:after {
	display: block;
	content: "";
	clear: both;
}
body#top-page .topics #shokai .left {
	display: block;
	padding: 40px 20px;
	float: left;
	width: 470px;
	box-sizing: border-box;
}
body#top-page .topics #shokai .left p {
	padding: 10px 0;
	font-size: 0.9em;
	color: #ddd;
}
body#top-page .topics #shokai .left p.attention {
	margin-top: 15px;
	padding: 5px;
	font-size: 0.7em;
	color: #ff6600;
	border: dashed 1px #ff6600;
}

/* KISEKI BOX */
body#top-page .topics #kiseki-box {
	position: relative;
	border: solid 1px #ff6600;
	overflow: hidden;
	border-radius: 3px;
	color: #eee;
}
body#top-page .topics #kiseki-box .info-more {
	position: absolute;
	display: block;
	left: 500px;
	top: 330px;
}
body#top-page .topics #kiseki-box .info-more > a {
	display: inline-block;
	margin-right: 10px;
	color: #ff6600;
	font-size: 1.2em;
	border-bottom: solid 1px #ff6600;
	transition: .3s;
	outline: none;
}
body#top-page .topics #kiseki-box .info-more > a:hover {
	color: #fff;
	border-bottom: solid 1px #fff;
}
body#top-page .topics #kiseki-box .info-more > a i {
	margin-right: 7px;
}

body#top-page .topics #kiseki-box .info-more .faltsu-link {
	width: 460px;
	margin-top: 20px;
	border: solid 1px #ff6600;
	overflow: hidden;
}
body#top-page .topics #kiseki-box .info-more .faltsu-link:after {
	content: "";
	clear: both;
	display: block;
}
body#top-page .topics #kiseki-box .info-more .faltsu-link p {
	color: #ff6600;
	padding: 5px;
	font-weight: bold;
	font-size: 0.9em;
}
body#top-page .topics #kiseki-box .info-more .faltsu-link img {
	display: block;
	margin-right: 10px;
	vertical-align: bottom;
	float: left;
}

/* ──────────────────────────── */

body#top-page .orange {
	position: relative;
	margin: 50px 0;
	padding: 10px 0 30px 0;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
	overflow: hidden;
	z-index: 2;
}
body#top-page .orange .inner {
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	z-index: 3;
}
body#top-page .orange .inner h2 {
	margin: 10px 0;
	text-align: center;
}
body#top-page .orange .inner h2 span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	font-size: 0.5em;
	font-weight: normal;
}
body#top-page .orange .inner .intro {
	margin: 15px 0;
	padding: 10px 20px;
}
body#top-page .orange .inner .intro p {
	margin: 0 0 10px 0;
	font-size: 0.9em;
}

body#top-page .orange .inner .btn-block:after {
	display: block;
	clear: both;
	content: "";
}
body#top-page .orange .inner .btn-block a {
	display: block;
	float: left;
	width: 450px;
	height: 400px;
	margin: 0 25px;
	background-color: #000;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
body#top-page .orange .inner .btn-block a:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
body#top-page .orange .bk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
}

/* ──────────────────────────── */
body#top-page .tgs {
	display: block;
}
body#top-page .tgs a {
	display: block;
	margin: 10px auto 20px auto;
	width: 980px;
	border: solid 1px rgba(255,255,255,0.5);
	transition: .3s;
	border-radius: 5px;
}
body#top-page .tgs a:hover {
	box-shadow: 0 0 30px rgba(255,255,255,1.00);
}
body#top-page .tgs a img {
	vertical-align: bottom;
	border-radius: 5px;
}

/* ──────────────────────────── */
body#top-page .music {
	display: block;
}
body#top-page .music a {
	display: block;
	margin: 10px auto;
	width: 980px;
	border: solid 1px rgba(255,255,255,0.5);
	transition: .3s;
	border-radius: 5px;
}
body#top-page .music a:hover {
	box-shadow: 0 0 30px rgba(255,97,15,1.00);
}
body#top-page .music a img {
	vertical-align: bottom;
	border-radius: 5px;
}

/* ──────────────────────────── */

body#top-page div.pro-tw {
	margin: 40px auto 30px auto;
}
body#top-page div.pro-tw:after {
	display: block;
	clear: both;
	content: "";
}
/* product-info */
body#top-page div.pro-tw div.product-info {
	float: left;
	width: 530px;
	border-radius: 3px;
	color: #fff;
}
body#top-page div.pro-tw div.product-info > h2 {
	padding-left: 5px;
	margin-bottom: 10px;
	font-size: 1.7em;
}
body#top-page div.pro-tw div.product-info > h2 span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	font-size: 0.5em;
	font-weight: normal;
}
body#top-page div.pro-tw div.product-info .tr {
	display: table;
	width: 100%;
	padding: 12px 5px;
	font-size: 0.8em;
	color: #ccc;
	border-bottom: solid 1px #666;
	box-sizing: border-box;
}
body#top-page div.pro-tw div.product-info .tr .th,.hd {
	display: table-cell;
}
body#top-page div.pro-tw div.product-info .tr .th {
	width: 120px;
}

/* twitter */
body#top-page div.pro-tw div.twitter {
	width: 420px;
	float: right;
	padding: 10px;
	border-radius: 3px;
	color: #f3f3f3;
}
body#top-page div.pro-tw div.twitter > h2 {
	margin-bottom: 10px;
	font-size: 1.7em;
}
body#top-page div.pro-tw div.twitter > h2 i {
	margin-right: 10px;
}

/* banner */
body#top-page div.banner {
	padding-bottom: 30px;
	text-align: center;
}
body#top-page div.banner div {
	margin: 6px 0;
}
body#top-page div.banner a {
	display: inline-block;
	margin: 0 2px;
}
body#top-page div.banner a:first-child {
	margin-left: 0;
}
body#top-page div.banner a:last-child {
	margin-right: 0;
}
body#top-page div.banner div.large {
	padding: 0 5px;
	box-sizing: border-box;
}
body#top-page div.banner div.large img {
	width: 100%;
}

/* ────────────────────────────
	Common
──────────────────────────── */

h1.head {
	margin-bottom: 40px;
	padding-bottom: 3px;
	font-size: 2.8em;
	font-weight: bold;
	vertical-align: middle;
	border-bottom: solid 1px #000;
}
h1.head span {
	margin-left: 30px;
	font-size: 0.4em;
	font-weight: normal;
	vertical-align: middle;
}

div.head {
	border-bottom: solid 1px #000;	
	margin-bottom: 40px;
}
.head > h1 {
	width: 1000px;
	margin: 0 auto;
	font-size: 2.8em;
	font-weight: bold;
	vertical-align: middle;
}
.head > h1 span {
	margin-left: 30px;
	font-size: 0.4em;
	font-weight: normal;
	vertical-align: middle;
}

/* ────────────────────────────
	About
──────────────────────────── */
body#about {
	background-image: url(../img/common/bg/bg_01.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#about .container {
	margin-top: 200px;
}
body#about section {
	padding-top: 20px;
}
body#about section > .inner {
	width: 1000px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
/* prologue */
body#about section#prologue {
	padding: 20px;
	box-sizing: border-box;
}
body#about section#prologue .area {
	position: relative;
	padding-bottom: 200px;
}
body#about section#prologue .area > img.newspaper {
	position: absolute;
	top: 1130px;
	left: -240px;
	z-index: -1;
}
body#about section#prologue p {
	margin: 20px 0;
}


/* keywords */
body#about section#keyword {
	background-image: url(../img/common/bg/texture_02.jpg);
	box-shadow: 0 -3px 5px rgba(0,0,0,0.1);
}
body#about section#keyword div.block:after {
	content: "";
	clear: both;
	display: block;
}
body#about section#keyword div.block {
	margin-bottom: 40px;
}
body#about section#keyword div.block > div.box {
	width: 460px;
}
body#about section#keyword div.block > div.box:first-child {
	float: left;
}
body#about section#keyword div.block > div.box:last-child {
	float: right;
}
body#about section#keyword div.block > div.box > img {
	border-radius: 3px;
}
body#about section#keyword div.block > div.box > h2 {
	margin: 10px 0;
	font-size: 1.4em;
	border-bottom: solid 1px #bbb;
	color: #444;
}
body#about section#keyword div.block > div.box > p {
	padding: 5px 0;
	font-size: 0.9em;
	color: #444;
}

/* world */
body#about section#world {
	background-image: url(../img/common/bg/bg_03.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3) inset;
}
body#about section#world .block {
	position: relative;
	padding: 10px;
	margin: 30px 0;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.6);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
body#about section#world .block:after {
	display: block;
	content: "";
	clear: both;
}
body#about section#world .img-box {
	padding: 10px;
	width: 450px;
	background-image: url(../img/about/world/world_bg.png);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	box-sizing: border-box;
}
body#about section#world .img-box a {
	position: relative;
	display: block;
	outline: none;
	overflow: hidden;
}
body#about section#world .img-box a img {
	width: 450px;
	height: 250px;
	vertical-align: bottom;
	transform: scale(1);
	transition: .5s;
}
body#about section#world .img-box a:hover img {
	transform: scale(1.1);
}
body#about section#world .img-box a i {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #fff;
}
body#about section#world .right .img-box {
	float: left;
}
body#about section#world .left .img-box {
	float: right;
}
body#about section#world .text-box {
	width: 470px;
}
body#about section#world .right .text-box {
	float: right;
}
body#about section#world .left .text-box {
	float: left;
}
body#about section#world .text-box h2 {
	position: relative;
	padding: 7px;
	margin: 0 0 15px 5px;
	font-size: 1.7em;
	font-weight: bold;
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
	border-bottom: solid 1px #666;
	box-sizing: border-box;
}
body#about section#world .left .text-box h2 {
	border-left: solid 1px #666;
}
body#about section#world .left .text-box h2::before {
	position: absolute;
	bottom: -8px;
	left: -8px;
	width: 7px;
	height: 7px;
	content: '';
	border-top: solid 1px #666;
	border-right: solid 1px #666;
}
body#about section#world .right .text-box h2 {
	text-align: right;
	border-right: solid 1px #666;
}
body#about section#world .right .text-box h2::before {
	position: absolute;
	bottom: -8px;
	right: -8px;
	width: 7px;
	height: 7px;
	content: '';
	border-top: solid 1px #666;
	border-left: solid 1px #666;
}
body#about section#world .text-box p {
	padding: 5px;
	font-size: 0.9em;
	color: #222;
}


body#about #digest {
	position: relative;
	padding: 10px 0 30px 0;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5) inset;
	overflow: hidden;
	z-index: 2;
	background-image: url(../img/common/bg/texture_02.jpg);
}
body#about #digest .inner {
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	z-index: 3;
}
body#about #digest .inner h1 {
	margin: 10px 0;
	text-align: center;
}
body#about #digest .inner h1 span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	font-size: 0.5em;
	font-weight: normal;
}
body#about #digest .inner .intro {
	margin: 15px 0;
	padding: 10px 20px;
}
body#about #digest .inner .intro p {
	margin: 0 0 10px 0;
	font-size: 0.9em;
}

body#about #digest .inner .btn-block:after {
	display: block;
	clear: both;
	content: "";
}
body#about #digest .inner .btn-block a {
	display: block;
	float: left;
	width: 450px;
	height: 400px;
	margin: 0 25px;
	background-color: #000;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
body#about #digest .inner .btn-block a:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.8);
}



/* ────────────────────────────
	Character
──────────────────────────── */
body#character {
	background-image: url(../img/common/bg/bg_02.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#character .container {
	position: relative;
	padding-top: 180px;
}
body#character .container h1.head {
	margin-bottom: 20px;
}
/* chara nav */
body#character nav.chara-nav {
	margin-bottom: 10px;
}
body#character nav.chara-nav ul.tab > li {
	position: relative;
	display: inline-block;
	height: 25px;
	padding: 0 10px;
	margin-right: 25px;
	vertical-align: middle;
	background-color: rgba(0,0,0,0.3);
	border-radius: 3px 0 0 0;
	line-height: 1.5;
	font-size: 0.9em;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}
body#character nav.chara-nav ul.tab > li::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	bottom: 0;
	right: -25px;
	border: 25px solid transparent;
	border-bottom: 25px solid rgba(0,0,0,0.3);
	border-left: none;
	transition: 0.3s;
}
body#character nav.chara-nav ul.tab > li.on {
	background-color: rgba(0,0,0,0.5);
}
body#character nav.chara-nav ul.tab > li.on::after {
	border-bottom: 25px solid rgba(0,0,0,0.5);
}
body#character nav.chara-nav ul.tab a.link-correlation {
	margin-left: 10px;
	padding: 0 15px;
	background-color: rgba(0,0,0,0.5);
	font-size: 0.9em;
	color: #fff;
	border-radius: 10px;
	transition: 0.3s;
}
body#character nav.chara-nav ul.tab a.link-correlation:hover {
	background-color: rgba(255,130,0,0.8)	
}
body#character nav.chara-nav div.tab-body {
	min-height: 170px;
	padding: 10px;
	background-color: rgba(0,0,0,0.5);
	border-radius: 0 3px 3px 3px;
}
body#character nav.chara-nav div.tab-body div.wp {
	display: none;
	transition: 0.3s;
}
body#character nav.chara-nav div.tab-body div.wp div {
	margin-right: 5px;
	display: inline-block;
}
body#character nav.chara-nav div.tab-body div.on {
	display: block;
}
body#character nav.chara-nav div.tab-body strong {
	display: block;
	margin: 7px 0;
	color: #eee;
	font-size: 0.8em;
	font-weight: normal;
	border-bottom: solid 1px #bbb;
}
body#character nav.chara-nav div.tab-body div.long {
	display: block;
	width: 100%;
}
body#character nav.chara-nav div.tab-body div a {
	display: inline-block;
	margin-right: 1px;
	background-color: rgba(0,0,0,0.1);
	transition: 0.3s;
}
body#character nav.chara-nav div.tab-body div a:hover {
	background-color: rgba(255,150,0,0.8)
}
body#character nav.chara-nav div.tab-body div a img {
	vertical-align: bottom;
}

/* stand illust */
body#character .container .stand-illust-wp {
	position: absolute;
	width: 100%;
	top: 0;
}
body#character .container .stand-illust-wp .stand-illust-inner {
	position: relative;
	display: block;
	width: 1000px;
	margin: 0 auto;
}
body#character .container .stand-illust-wp .stand-illust-inner.arianrhod {
	width: 1600px;
}
body#character .container .stand-illust-wp .stand-illust-inner.victor {
	width: 1100px;
}
body#character .container .stand-illust-wp .stand-illust-inner img.stand-illust {
	position: absolute;
	top: 0;
	right: -150px;
}
body#character .container .stand-illust-wp .stand-illust-inner.arianrhod img.stand-illust {
	right: 230px;
}
body#character .container .stand-illust-wp .stand-illust-inner.roselia img.stand-illust {
	right: 0px;
}


/* arrow */
body#character .pager-arrow a {
	position: fixed;
	display: block;
	top: 35%;
	z-index: 10;
	opacity: 0.3;
	transition: 0.3s;
}
body#character .pager-arrow a:hover {
	opacity: 0.7;
}
body#character .pager-arrow a.left-arrow {
	left: 20px;
}
body#character .pager-arrow a.right-arrow {
	right: 20px;
}
/* chara body */
body#character .chara-body {
	min-height: 900px;
}
/* chara name */
body#character .chara-name {
	margin: 70px 0 0 30px;
}
/* chara cv */
body#character .chara-cv {
	margin: 0 0 20px 40px;
	padding-top: 20px;
	box-sizing: border-box;
}
body#character .chara-cv h2 {
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
	font-weight: bold;
	font-size: 1.8em;
}
body#character .chara-cv.while h2 {
	text-shadow: 0 0 5px #fff;
}
/* chara info */
body#character .chara-info {
	padding: 20px;
	margin-left: 30px;
	width: 480px;
	background-color: rgba(0,0,0,0.7);
	box-shadow: 0 0 10px rgba(0,0,0,0.7) inset;
	border-radius: 3px;
}
body#character .chara-info .status {
	border-bottom: solid 1px #bbb;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
body#character .chara-info .status span {
	margin-right: 30px;
	color: #eee;
	font-size: 0.9em;
}
body#character .chara-info .status span i {
	display: inline-block;
	margin-right: 10px;
	padding: 0 10px;
	color: #222;
	box-shadow: 0 0 2px rgba(0,0,0,0.5) inset;
	background-color: rgba(255,255,255, 0.9);
}
body#character .chara-info p {
	padding: 8px 0;
	line-height: 1.6;
	color: #eee;
	font-size: 0.9em;
}
body#character .chara-info p ruby rt {
	vertical-align: bottom;
	-webkit-transform: scale(0.8);
	-webkit-transform-origin:0 0;
}

/* chara ss */
body#character .chara-ss {
	background-color: rgba(0,0,0,0.5);
}
body#character .chara-ss > .inner {
	width: 1000px;
	padding: 20px 0;
	margin: 0 auto;
	overflow: hidden;
}
body#character .chara-ss > .inner .box {
	width: 320px;
	margin: 0 6px;
	float: left;
	overflow: hidden;
}
body#character .chara-ss > .inner a {
	position: relative;
	display: block;
	outline: none;
	overflow: hidden;
}
body#character .chara-ss > .inner a img {
	vertical-align: bottom;
	transform: scale(1);
	transition: .5s;
}
body#character .chara-ss > .inner a:hover img {
	transform: scale(1.1);
}
body#character .chara-ss > .inner .box a i {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #fff;
}
body#character .chara-ss > .inner .box p {
	padding: 10px;
	color: #ddd;
	line-height: 1.5;
	font-size: 0.8em;
	background-color: rgba(0,0,0,0.5);
}
/* cast commen */
body#character .cast-comment {
	background-color: rgba(0,0,0,0.7);
	background-image: url(../img/common/bg/texture.png);
}
body#character .cast-comment .inner {
	width: 1000px;
	margin: 0 auto;
	color: #fff;
}
/* chara list */
body#character .chara-list {
	overflow: hidden;
}
body#character .chara-list .block {
	padding: 5px 10px;
	margin: 5px 0;
	background-color: rgba(255,255,255,0.6);
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
	clear: both;
}
body#character .chara-list .block2 {
	display: block;
	width: 495px;
	float: left;
	box-sizing: border-box;
	padding: 5px 10px;
	margin: 5px 0;
	background-color: rgba(255,255,255,0.6);
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
}
body#character .chara-list .block2:nth-child(odd) {
	margin-left: 5px;
}
body#character .chara-list .block h2 {
	margin: 10px 0;
}
body#character .chara-list .box {
	position: relative;
	display: inline-block;
	margin: 5px 0;
	padding: 5px;
	text-align: center;
	color: #222;
}
body#character .chara-list .block2 .box {
	position: relative;
	display: inline-block;
	margin: 2px 0;
	padding: 2px;
	text-align: center;
	color: #222;
}
body#character .chara-list .block img.new-icon {
	position: absolute;
	top: 8px;
	left: 8px;
}
body#character .chara-list .block2 img.new-icon {
	position: absolute;
	top: 8px;
	left: 8px;
}
body#character .chara-list .box div {
	border-radius: 5px;
	transition: .3s;
}
body#character .chara-list a.box:hover div {
	background-color: rgba(0,0,0,0.1);
}
body#character .chara-list .box h4 {
	margin-top: 8px;
	border-bottom: solid 1px #bbb;
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
	color: #000;
}
body#character .chara-list .box h4.small {
	font-size: 0.8em;
}
body#character .chara-list .box h5 {
	margin: 3px 0;
	font-weight: normal;
	font-size: 0.8em;
	color: #000;
}
body#character .chara-list .box img {
	border-radius: 5px;
	vertical-align: bottom;
}

/* back-black */
body#character .back-black {
	padding: 20px 0;
	margin: 20px 0 0 0;
	background-color: #000;
}
body#character .back-black .inner {
	width: 1000px;
	margin: 0 auto;
}
body#character .back-black .chara-list .block {
	padding: 5px 10px;
	margin: 10px 0;
	border-radius: 3px;
	border: solid 1px #666;
	background-color: #000;
	clear: both;
}
body#character .back-black .chara-list a.box:hover div {
	background-color: rgba(255,255,255,0.2);
}
body#character .back-black > .chara-list h5 {
	color: #fff;
}
body#character .back-black > .chara-list h4 {
	color: #fff;
}

/* ────────────────────────────
	System
──────────────────────────── */
body#system {
	background-attachment: fixed;
	background-color: #000;
}
body#system .container {
	position: relative;
	padding-top: 180px;
}
body#system .container .head {
	margin-bottom: 20px;
	color: #fff;
	border-color: #ccc;
}
body#system .container .head h1 {
	display: block;
	margin: 0 auto;
	width: 1000px;
}
body#system div.inner {
	width: 1000px;
	margin: 0 auto;
}

/* arrow */
body#system .pager-arrow a {
	position: fixed;
	display: block;
	top: 35%;
	z-index: 10;
	opacity: 0.8;
	transition: 0.3s;
}
body#system .pager-arrow a:hover {
	opacity: 0.5;
}
body#system .pager-arrow a.left-arrow {
	left: 20px;
}
body#system .pager-arrow a.right-arrow {
	right: 20px;
}

body#system div.head2 {
	padding: 40px 0 40px 0;
	border-bottom: solid 5px #ff6600;
}
body#system div.head2 .inner {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 0 200px;
	box-sizing: border-box;
}
body#system div.head2 .inner:after {
	display: block;
	clear: both;
	content: "";
}
body#system div.head2 .inner img {
	float: left;
	margin: 0 20px 0 0;
}
body#system div.head2 .inner h2 {
	display: block;
	padding: 15px 0 0 0;
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1;
	color: #fff;
}
body#system div.head2 .inner h2 span {
	display: block;
	margin-top: 10px;
	color: #ddd;
	font-size: 0.7em;
}
body#system div.head2 .inner h2 i {
	padding-right: 7px;
}

body#system h2.normal {
	padding: 40px 0 40px 0;
	text-align: center;
	font-size: 1.4em;
	color: #fff;
	font-weight: normal;
	background-color: #000;
	border-bottom: solid 5px #ff6600;
}
body#system h2.normal i {
	padding-right: 7px;
}
body#system h2.normal span {
	display: block;
	margin-top: 10px;
	font-size: 0.7em;
}

body#system .block {
	position: relative;
	padding-bottom: 60px;
}
body#system .block img.juna {
	position: absolute;
	top: -100px;
	right: -100px;
}
body#system .block img.shirley {
	position: absolute;
	top: -160px;
	right: -120px;
}
/*	arcusContainer: */
body#system .arcusContainer {
	position:  relative;
}
body#system .arcusContainer img.arcusimg {
	position: absolute;
	top: -100px;
	right: 30px;
}

/* box */
body#system .box {
	min-height: 250px;
	background-color: #222;
}
body#system .box:after {
	display: block;
	content: "";
	clear: both;
}
body#system .box .text h3 {
	margin-bottom: 20px;
	font-size: 1.2em;
	color: #fff;
	font-weight: normal;
}
body#system .box .text h3 i {
	padding-right: 7px;
}
body#system .box .text p {
	padding: 5px 0;
	color: #ddd;
	font-size: 0.9em;
}
body#system .box .text p strong {
	color: #FF871E;
}
body#system .box .text .border {
	padding:  10px;
	border: solid 1px #777;
	border-radius: 3px;
}
body#system .box .text .border h3 {
	margin-bottom: 5px;
}
body#system .box .text ul {
	padding: 0 0 0 30px;
}
body#system .box .text ul li {
	margin: 2px 0;
	font-size: 0.8em;
	color: #ddd;
	list-style: circle;
}

/* box common */
body#system .box .img a {
	outline: none;
	position: relative;
	display: block;
	overflow: hidden;
}
body#system .box .img a img {
	width: 500px;
	transform: scale(1);
	transition: .5s;
	vertical-align: bottom;
}
body#system .box .img a:hover img {
	transform: scale(1.05);
}
body#system .box .img a i {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: #fff;
}
body#system .box .text {
	position: relative;
	display: block;
	padding: 35px;
	width: 500px;
	float: left;
	box-sizing: border-box;
}
body#system .box .text.padding {
	padding: 140px 35px 35px 35px;
}

/* type-1 */
body#system .box.type-1 .img {
	display: block;
	float: left;
	width: 500px;
	overflow: hidden;
}
body#system .box.type-1 .text::after {
	position: absolute;
	border: 15px solid transparent;
	border-right-color: #222;
	border-left-width: 0;
	width: 0;
	left: -15px;
	content: "";
	display: block;
	top: 30px;
}
/* type-2 */
body#system .box.type-2 .img {
	display: block;
	float: right;
	width: 500px;
	overflow: hidden;
}
body#system .box.type-2 .text::after {
	border: 15px solid transparent;
	border-left-color: #222;
	border-right-width: 0;
	width: 0;
	right: -15px;
	content: "";
	display: block;
	top: 30px;
	position: absolute;
}
/* type-3 */
body#system .box.type-3 .img {
	position: relative;
	display: block;
	float: left;
	width: 500px;
	overflow: hidden;
}
body#system .box.type-3 .img::after {
	border: 15px solid transparent;
	border-top-color: #222;
	border-bottom-width: 0;
	width: 0;
	top: 0;
	content: "";
	display: block;
	left: 400px;
	position: absolute;
}

/* ────────────────────────────
	Product
──────────────────────────── */
body#product {
	background-image: url(../img/common/bg/bg_04.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#product .container {
	position: relative;
	padding-top: 180px;
}
body#product .container h1.head {
	margin-bottom: 20px;
}
body#product .container h1.head span {
	font-weight: normal;
}
/* block */
body#product .block {
	padding:20px 30px;
	margin-bottom: 30px;
	border-radius: 3px;
	background-color: rgba(255,255,255, 0.6);
	box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
}
body#product .block:after {
	content: "";
	clear: both;
	display: block;
}
body#product .block h2 {
	margin: 10px 0 20px 0;
	padding: 10px 0 10px 15px;
	font-size: 1.4em;
	border-left: solid 10px #222;
}
body#product .block h2 span {
	display: inline-block;
	padding: 0 20px;
	background-color: #000;
	color: #fff;
	font-weight: normal;
}
body#product .spec h3 {
	margin-bottom: 10px;
	font-size: 1.3em;
	font-weight: normal;
}
body#product .spec h3 > span {
	margin-left: 10px;
	font-size: 0.7em;
}
body#product .spec .inner {
	width: 450px;
	float: left;
	box-sizing: border-box;
}
body#product .spec .inner .tr {
	display: table;
	width: 100%;
	padding: 12px 5px;
	font-size: 0.9em;
	border-bottom: solid 1px #999;
	box-sizing: border-box;
}
body#product .spec .inner .tr .th,.hd {
	display: table-cell;
}
body#product .spec .inner .tr .th {
	width: 120px;
}

body#product .spec .img {
	float: right;
	width: 450px;
	box-sizing: border-box;
}

body#product .store {
	clear: both;
	padding: 10px 0 0 0;
	display: block;
}
body#product .store a {
	display: block;
	border-radius: 5px;
	overflow: hidden;
}
body#product .dlc {
	clear: both;
	padding: 20px 0 0 0;
	display: block;
}
body#product .dlc a {
	display: block;
	overflow: hidden;
}
body#product .strategy {
	clear: both;
	padding: 10px 0 0 0;
	display: block;
}
body#product .strategy a {
	display: block;
	overflow: hidden;
}

/* SOUNDTRACK */
body#product #music:after {
	display: block;
	clear: both;
	content: "";
}
body#product #music .left {
	display: block;
	padding: 5px 5px;
	width: 470px;
	float: left;
	box-sizing: border-box;
}
body#product #music .left p {
	padding: 10px 0;
}
body#product #music .left p.attention {
	margin-top: 3px;
	padding: 5px;
	font-size: 0.7em;
	border: dotted 1px #222;
	background-color: rgba(0,0,0,0.1);
}
body#product #music .right {
	display: block;
	width: 450px;
	float: right;
}

/* KISEKI BOX */
body#product #kiseki-box .outer {
	margin: 10px 0;
}
body#product #kiseki-box .item {
	position: relative;
	padding: 10px;
	margin: 5px;
	width: 460px;
	height: 400px;
	float: left;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	border: solid 1px #666;
}
body#product #kiseki-box:after {
	content: "";
	display: block;
	clear: both;
}
body#product #kiseki-box .item h3 {
	padding: 5px 0;
	margin: 5px 0;
	font-weight: normal;
	font-size: 1.2em;
	border-bottom: solid 1px #999;
}
body#product #kiseki-box .item h3 span {
	display: inline-block;
	font-size: 0.8em;
}
body#product #kiseki-box .item img.image {
	width: 100%;
}
body#product #kiseki-box .item p {
	padding: 5px 0;
	color: #eee;
	font-size: 0.9em;
}
body#product #kiseki-box .item a.btn-listening {
	position: absolute;
	top: 150px;
	right: 80px;
	transition: .3s;
	outline: none;
}
body#product #kiseki-box .item a.btn-listening:hover {
	opacity: 0.8;
}

/* SHOKAI */
body#product #shokai:after {
	display: block;
	clear: both;
	content: "";
}
body#product #shokai .left {
	display: block;
	padding: 30px 5px;
	width: 420px;
	float: left;
	box-sizing: border-box;
}
body#product #shokai .left p {
	padding: 10px 0;
}
body#product #shokai .left p.attention {
	margin-top: 10px;
	padding: 5px;
	font-size: 0.7em;
	border: dotted 1px #222;
	background-color: rgba(0,0,0,0.1);
}
body#product #shokai .right {
	display: block;
	width: 500px;
	float: right;
}

/* DOWNLOAD */
body#product #download h3 {
	margin: 0 0 10px 0;
	padding: 5px 0 5px 10px;
	font-size: 1.2em;
	font-weight: normal;
	background-color: rgba(0,0,0,0.8);
	color: #fff;
}
body#product #download p {
	font-size: 0.9em;
}
body#product #download .link-psstore {
	display: block;
	padding: 20px;
	box-sizing: border-box;
}
body#product #download .block-line {
	display: block;
	margin: 15px 0;
	font-size: 0.8em;
}
body#product #download .block-line .head {
	display: block;
	margin: 0 0 5px 0;
	min-width: 200px;
	border-bottom: solid 1px #444;
	font-size: 1.2em;
}
body#product #download .block-line .head i {
	margin-right: 5px;
}
body#product #download .block-line .min {
	display: block;
	font-size: 0.7em;
	color: #666;
}

/* MODEL */
body#product #model h3 {
	margin: 0 0 10px 0;
	padding: 5px 0 5px 10px;
	font-size: 1.2em;
	font-weight: normal;
	background-color: rgba(0,0,0,0.8);
	color: #fff;
}
body#product #model p {
	font-size: 0.9em;
}
body#product #model .link-psstore {
	display: block;
	padding: 20px;
	box-sizing: border-box;
}
body#product #model .block-line {
	display: block;
	margin: 15px 0;
	font-size: 0.8em;
}
body#product #model .block-line .head {
	display: block;
	margin: 0 0 5px 0;
	min-width: 200px;
	border-bottom: solid 1px #444;
	font-size: 1.2em;
}
body#product #model .block-line .head i {
	margin-right: 5px;
}
body#product #model .block-line .min {
	display: block;
	font-size: 0.7em;
	color: #666;
}

/* OST */
#product #music .left {
	padding: 50px 0 0 0 !important;
	box-sizing: border-box;
}
#product #music .right {
	padding: 30px;
	box-sizing: border-box;
}
#product #music .items:before {
	content: "";
	clear: both;
	display: block;
}
#product #music .items > div {
	display: block;
	padding: 10px 0 5px 0;
	border-top: solid 1px #666;
}
#product #music .items > div:last-child {
	border-bottom: solid 1px #666;
}
#product #music .items .info:after {
	display: block;
	clear: both;
	content: "";
}
#product #music .items .info strong {
	display: block;
}
#product #music .items .info strong small {
	font-weight: normal;
	font-size: 0.8em;
}
#product #music .items .info span {
	display: block;
	font-size: 0.8em;
}
#product #music .items a {
	display: inline-block;
	margin: 5px 2px 5px 0;
}
#product #music .items a img {
	height: 50px;
}

/* series */
body#product #series {
	padding: 30px 0;
	background-color: rgba(0,0,0,0.4);
}
body#product #series section {
	width: 1000px;
	margin: 0 auto;
}
body#product #series .head {
	margin-bottom: 40px;
	font-weight: bold;
	vertical-align: middle;
	color: #fff;
	border-bottom: solid 1px #fff;
}
body#product #series .head h2 {
	width: 1000px;
	margin: 0 auto;
	font-size: 2.8em;
	font-weight: bold;
	vertical-align: middle;
}
body#product #series .head h2 span {
	margin-left: 30px;
	font-size: 0.4em;
	font-weight: normal;
	vertical-align: middle;
}
body#product #series .box {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	border: solid 1px #999;
	background-color: rgba(0,0,0,0.3);
}
body#product #series .box:after {
	content: "";
	display: block;
	clear: both;
}
body#product #series .box .left {
	float: left;
	width: 400px;
	box-sizing: border-box;
}
body#product #series .box .left img {
	vertical-align: bottom;
	box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
body#product #series .box .right {
	position: relative;
	height: 250px;
	width: 590px;
	float: right;
	padding: 20px 10px;
	box-sizing: border-box;
}
body#product #series .box .right h3 {
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: solid 1px #bbb;
	font-size: 1.3em;
	color: #fff;
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
body#product #series .box .right h3 span {
	display: inline-block;
	float: right;
	padding: 2px 10px;
	font-size: 0.6em;
	border: solid 1px #bbb;
	color: #eee;
	border-radius: 20px;
	font-weight: normal;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}
body#product #series .box .right p {
	padding: 5px 0;
	color: #eee;
	font-size: 0.8em;
	line-height: 1.5;
}
body#product #series .box .right .mark {
	position: absolute;
	bottom: 0;
	right: 10px;
}
body#product #series .box .right .faltsu {
	position: absolute;
	bottom: 20px;
}

/* goods */
body#product #goods {
	padding: 30px 0;
	background-color: rgba(0,0,0,0.6);
	background-image: url(../img/common/bg/texture.png);
	text-align: center;
}
body#product #goods section {
	width: 1000px;
	margin: 0 auto;
}
body#product #goods section .swiper-container, .swiper-slide {
	width: 1000px;
	height: 690px;
}
body#product #goods section .swiper-active-switch {
	background-color: #16AC94;
}
body#product #goods .head {
	margin-bottom: 40px;
	font-weight: bold;
	vertical-align: middle;
	color: #fff;
	border-bottom: solid 1px #fff;
}
body#product #goods .head h2 {
	width: 1000px;
	margin: 0 auto;
	font-size: 2.8em;
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}
body#product #goods .head h2 span {
	margin-left: 30px;
	font-size: 0.4em;
	font-weight: normal;
	vertical-align: middle;
}
body#product #goods .swiper-slide {
	padding: 0 35px;
	box-sizing: border-box;
}
body#product #goods .swiper-slide:after {
	display: block;
	clear: both;
	content: "";
}
body#product #goods .box {
	position: relative;
	display: block;
	float: left;
	height: 320px;
	width: 210px;
	margin: 5px;
	padding: 5px;
	border: solid 1px #777;
	background-color: rgba(0,0,0,0.3);
	box-shadow: 0 0 20px rgba(0,0,0,0.3) inset;
	overflow: hidden;
}
body#product #goods .box h3 {
	margin-bottom: 5px;
	padding: 3px 0 3px 3px;
	color: #fff;
	font-size: 0.8em;
	font-weight: normal;
	border-bottom: solid 1px #999;
	text-align: left;
}
body#product #goods .box h3 > span {
	display: inline-block;
}
body#product #goods .box p {
	color: #ddd;
	line-height: 1.5;
	font-size: 0.6em;
	text-align: left;
}
body#product #goods .box .shop {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}
body#product #goods .box .shop a {
	display: inline-block;
	padding: 0 10px;
	font-size: 0.8em;
	line-height: 1.7;
	color: #fff;
	border-radius: 10px;
	background-color: #ff6600;
	transition: .3s;
}
body#product #goods .box .shop a:hover {
	background-color: #fff;
	color: #ff6600;
}
body#product #goods .box .shop a i {
	margin-right: 5px;
}

.apologize {
	margin: 40px 20px;
	padding: 40px 20px;
	border: double 4px #000;
}
.apologize h4 {
	font-size: 1.4rem;
}
.apologize p {
	margin:  20px 0;
}

/* ────────────────────────────
	Store Bonus
──────────────────────────── */
body#store {
	background-image: url(../img/common/bg/bg_10.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#store .container {
	position: relative;
	padding-top: 180px;
}
body#store .container h1.head {
	margin-bottom: 20px;
}
body#store .container h1.head span {
	font-weight: normal;
}
body#store .store-bonus {
	padding: 0 0 30px 0;
	overflow: hidden;
}
body#store .store-bonus .box {
	position: relative;
	display: block;
	float: left;
	padding: 10px;
	margin: 5px;
	width: 490px;
	height: 450px;
	box-sizing: border-box;
	border: solid 1px #222;
	border-radius: 2px;
	background-color: rgba(0,0,0,0.7);
	box-shadow: 0 0 20px rgba(0,0,0,0.4) inset;
	background-image: url(../img/common/bg/texture.png);
}
body#store .store-bonus .box h2 {
	margin: 0 0 10px 0;
	padding: 5px 0;
	color: #fff;
	font-size: 1.2em;
	font-weight: normal;
	text-align: center;
	border-bottom: solid 1px #fff;
}
body#store .store-bonus .box h2 .min {
	display: block;
	font-size: 0.6em;
}
body#store .store-bonus .box p {
	margin: 15px 0;
	color: #eee;
	text-align: center;
}
body#store .store-bonus .box p.small {
	font-size: 0.9em;
}
body#store .store-bonus .box p.left {
	padding-left: 15px;
	text-align: left;
}
body#store .store-bonus .box p.middle {
	padding: 10px 0 0 0;
}
body#store .store-bonus .box p .small {
	font-size: 0.8em;
}
body#store .store-bonus .box p i {
	margin: 0 5px 0 0;
}
body#store .store-bonus .box p span.dlc {
	display: inline-block;
	padding: 0 10px;
	margin: 0 5px 0 0;
	font-size: 0.9em;
	border: solid 1px #eee;
	border-radius: 30px;
}
body#store .store-bonus .box .img {
	position: absolute;
	width: 470px;
	height: 250px;
	bottom: 75px;
	text-align: center;
	background-image: url(../img/product/store/border.png);
	background-repeat: no-repeat;
	z-index: 2;
}
body#store .store-bonus .box .img a {
	outline: none;
	z-index: 2;
}
body#store .store-bonus .box .img a img {
	transform: scale(1);
	transition: .3s;
}
body#store .store-bonus .box .img a:hover img {
	transform: scale(1.08);
}
body#store .store-bonus .box .img .sample {
	position: absolute;
	top: 0;
	left: 0;
}
body#store .store-bonus .box .img img.zoom {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 0;
}
body#store .store-bonus .box .img .set-number {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
}
body#store .store-bonus .box .img img {
	vertical-align: bottom;
}
body#store .store-bonus .box .buy {
	position: absolute;
	display: table;
	bottom: 10px;
	width: 96%;
	border-collapse: collapse;
}
body#store .store-bonus .box .buy a {
	display: table-cell;
	padding: 10px 0;
	border: solid 1px #ddd;
	transition: .3s;
	font-size: 1.2em;
	text-align: center;
	color: #ddd;
}
body#store .store-bonus .box .buy a:hover {
	color: #fff;
	border: solid 1px #fff;
	background-color: rgba(255,255,255,0.1);
	box-shadow: 0 0 15px rgba(255,255,255,0.5) inset;
}
body#store .store-bonus .box .buy a i {
	margin: 0 8px 0 0;
}
body#store .attention {
	margin: 0 auto 30px auto;
}
body#store .attention p {
	margin: 5px 0;
	font-size: 0.8em;
}

/* ────────────────────────────
	Special
──────────────────────────── */
body#special {
/*	background-image: url(../img/common/bg/bg_06.jpg);	*/
	background-attachment: fixed;
	background-color: #fff;
}
body#special .container {
	position: relative;
	padding-top: 180px;
	min-height: 600px;
}
body#special .container h1.head {
	margin-bottom: 20px;
}
/* menu */
body#special div.menu {
	padding: 30px 0;
}
body#special div.menu .inner {
	width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
body#special div.menu div.table {
	display: table;
	width: 100%;
}
body#special div.menu div.table div.cell {
	display: table-cell;
	min-width: 200px;
	padding: 5px;
	text-align: center;
}
body#special div.menu div.table div.cell a {
	display: block;
	padding: 20px 0;
	border: solid 1px #222;
	color: #222;
	transition: .3s;
}
body#special div.menu div.table div.cell a:hover {
	background-color: #ddd;
}

/* common */
body#special .common {
	margin: 20px auto;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 0 2px rgba(0,0,0,1) inset;
	border-radius: 3px;
}
body#special .common:after {
	content: "";
	clear: both;
	display: block;
}
body#special .common h2 {
	margin: 10px 0;
	padding: 5px 10px;
	font-size: 1.5em;
	font-weight: normal;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	vertical-align: middle;
}
body#special .common h2 span {
	display: inline-block;
	float: right;
	line-height: 2;
	padding-right: 10px;
	font-size: 0.6em;
	font-weight: normal;
}

/* anican */
body#special #anican {
	display: block;
	background-color: #ff6600;
}
body#special #anican .inner {
	padding: 40px 0;
	margin: 0 auto;
	width: 1000px;
}
body#special #anican .inner h2 {
	margin: 0 0 10px 0;
}
body#special #anican .inner:after {
	display: block;
	clear: both;
	content: "";
}
body#special #anican .inner .left {
	width: 420px;
	padding: 20px;
	float: left;
	box-sizing: border-box;
}
body#special #anican .inner .right {
	width: 540px;
	padding-top: 20px;
	float: right;
	color: #fff;
}
body#special #anican .inner .more {
	position: relative;
	padding: 15px 0;
}
body#special #anican .inner .more a {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px 20px;
	border-radius: 20px;
	background-color: #fff;
	color: #ff6600;
	font-weight: bold;
	border: solid 2px #ff6600;
	transition: .3s;
}
body#special #anican .inner .more a:hover {
	color: #fff;
	background-color: #ff6600;
	border: solid 2px #fff;
}
body#special #anican .inner .more a i {
	margin: 0 5px 0 0;
}
body#special #anican .inner p {
	margin: 20px 0;
}
body#special #anican .inner a {
	color: #ff6600;
}
body#special #anican .inner .info {
	position: relative;
	padding: 20px;
	margin: 20px 0 0 0;
	border-radius: 10px;
	font-size: 0.8em;
	background-color: #fff;
	color: #ff6600;
}
body#special #anican .inner .info img.anican-logo {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
body#special #anican .inner .info p {
	margin: 10px 0;
}

/* wallpaper */
body#special #wallpaper .left {
	width: 420px;
	float: left;
}
body#special #wallpaper .right {
	width: 540px;
	padding-top: 0px;
	float: right;
}
body#special #wallpaper .right .aspect {
	width: 100%;
	margin: 0px 0 10px 0;
	overflow: hidden;
	box-sizing: border-box;
}
body#special #wallpaper .right .aspect div {
	display: block;
	float: left;
	width: 150px;
	padding: 10px;
	text-align: center;
}
body#special #wallpaper .right .aspect div a {
	display: block;
	padding: 0 0 0 10px;
	color: #2d6fe4;
	transition: .3s;
	text-align: left;
}
body#special #wallpaper .right .aspect div a:hover {
	color: #969dbd;
}
body#special #wallpaper .right .aspect div a i {
	margin-right: 5px;
}
body#special #wallpaper .right p {
	text-align: center;
}

/* sns */
body#special #sns-set h2 {
	margin-bottom: 15px;
}
body#special #sns-set p {
	margin: 5px 0;
}
body#special #sns-set .block {
	padding: 10px;
	margin-top: 5px;
}
body#special #sns-set .block h3 {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background-color: #999;
	border-radius: 0 20px 20px 0;
	color: #eee;
	font-weight: normal;
}
body#special #sns-set .block h3 i {
	margin-right: 5px;
}
body#special #sns-set .block.twitter h3 {
	background-color: #5fb4f1;
}
body#special #sns-set .block.facebook h3 {
	background-color: #2d7ed4;
}

/* chusenkai */
body#special #chusenkai {
	background-color: #000;
}
body#special #chusenkai > .inner {
	margin: 0 auto;
	padding: 50px 10px 0 10px;
	width: 1000px;
	box-sizing: border-box;
}
body#special #chusenkai .left {
	float: left;
	padding: 20px;
}
body#special #chusenkai .left img {
	vertical-align: bottom;
}
body#special #chusenkai .left a {
	transition: .3s;
}
body#special #chusenkai .left a:hover {
	opacity: 0.8;
}
body#special #chusenkai .right {
	width: 560px;
	padding: 15px 10px 10px 10px;
	display: block;
	float: right;
}
body#special #chusenkai .right:after {
	display: block;
	content: "";
	clear: both;
}
body#special #chusenkai .date {
	position: relative;
	margin-bottom: 10px;
}
body#special #chusenkai .requirement {
	margin: 20px 0 15px 0;
	padding: 10px 20px;
	border: solid 1px #fff;
	border-radius: 20px;
	color: #fff;
}
body#special #chusenkai .requirement h3 {
	margin: 0 0 5px 0;
}
body#special #chusenkai .bottom:before {
	clear: both;
	display: block;
	content: "";
}
body#special #chusenkai .bottom {
	padding: 20px;
}
body#special #chusenkai .bottom .inner {
	width: 600px;
}
body#special #chusenkai p {
	padding: 7px 5px;
	font-size: 0.9em;
	color: #ddd;
}
body#special #chusenkai p > a {
	color: #ff6600;
	border-bottom: solid 1px #ff6600;
	outline: none;
	font-size: 1.2em;
}
body#special #chusenkai .attention {
	padding: 5px;
	margin-top: 10px;
	font-size: 0.7em;
	color: #ff6600;
	border: dashed 1px #ff6600;
}
body#special #chusenkai .catch {
	position: relative;
	display: block;
	width: 100%;
	height: 180px;
	clear: both;
}
body#special #chusenkai .catch img {
	z-index: 1;
	position: absolute;
	bottom: 20px;
}
body#special #chusenkai .catch .juna-img {
	position: absolute;
	bottom: 0;
	right: 40px;
	z-index: 0;
}

/* report */
#special #report {
}
#special #report > .inner {
	margin: 0 auto;
	padding: 30px 0;
	width: 1000px;
	box-sizing: border-box;
}
#special #report a {
	display: block;
	margin: 20px 0;
	transition: .1s;
}
#special #report a:hover {
	opacity: 0.7;
}
#special #report a:after {
	display: block;
	clear: both;
	content: "";
}
#special #report a img {
	float: left;
}
#special #report a .text {
	float: left;
	width: 570px;
	padding: 30px 10px 10px 10px;
	color: #000;
	box-sizing: border-box;
}
#special #report a .text h3 {
	display: block;
	padding: 0 0 5px 0;
	font-size: 1.3em;
	border-bottom: solid 1px #000;
}
#special #report a .text h3 span {
	display: inline-block;
	padding: 0 10px;
	margin: 0 10px 0 0;
	background-color: #000;
	border-radius: 3px;
	color: #fff;
}
#special #report a .text time {
	display: block;
	padding: 5px 0 0 0;
	text-align: right;
	color: #666;
}
#special #report a .text .body {
	padding: 20px 0 0 0;
	color: #666;
}

/* web chusenkai */
body#special #webchusenkai {
	background-color: #000;
}
body#special #webchusenkai > .inner {
	margin: 0 auto;
	padding: 10px 10px 0 10px;
	width: 1000px;
	box-sizing: border-box;
}
body#special #webchusenkai .webcampaign {
	position: relative;
	margin: 40px 0 0 0;
}
body#special #webchusenkai .webcampaign img {
	vertical-align: bottom;

}
body#special #webchusenkai .webcampaign a {
	position: absolute;
	display: block;
	bottom: 60px;
	left: 20px;
	padding: 5px 40px;
	font-size: 1.3em;
	color: #fff;
	border: solid 1px #fff;
	transition: .3s;
}
body#special #webchusenkai .webcampaign a:hover {
	color: #ff6600;
	border: solid 1px  #ff6600;
}
body#special #webchusenkai .webcampaign a i {
	margin: 0 10px 0 0;
}

/* tgs */
body#special #tgs {
	position: relative;
	background-color: #fff;
}
body#special #tgs #canvas {
	position: absolute;
	width: 100%;
	height: 100%;
}
body#special #tgs > .inner {
	position: relative;
	height: 510px;
	margin: 0 auto;
	padding: 50px 10px 0 10px;
	width: 1000px;
	box-sizing: border-box;
}
body#special #tgs h2 img {
	width: 350px;
}
body#special #tgs img.rean {
	position: absolute;
	bottom: 0;
	right: -80px;
	width: 1000px;
	z-index: 0;
}
body#special #tgs a {
	position: absolute;
	display: inline-block;
	bottom: 40px;
	left: 10px;
	padding: 10px 50px;
	color: #000;
	border: solid 1px #000;
	transition: .3s;
	z-index: 2;
}
body#special #tgs a:hover {
	background-color: rgba(0,0,0,0.1);
}
body#special #tgs a i {
	margin: 0 5px 0 0;
}

/* media */
body#special #media {
	background-color: rgba(0,0,0,0.7);
}
body#special #media > .inner {
	margin: 0 auto;
	padding: 30px 10px;
	width: 1000px;
	box-sizing: border-box;
}
body#special #media h2 {
	margin-bottom: 40px;
	padding-bottom: 3px;
	font-size: 2.8em;
	font-weight: bold;
	vertical-align: middle;
	color: #fff;
	text-align: left;
	border-bottom: solid 1px #fff;
}
body#special #media h2 span {
	margin-left: 30px;
	font-size: 0.4em;
	font-weight: normal;
	vertical-align: middle;
}
body#special #media table td {
	border-bottom: solid 1px #ccc;
	border-collapse: collapse;
}
body#special #media .block {
	margin: 0 0 20px 0;
	border: solid 1px #eee;
}
body#special #media .block h3 {
	padding: 10px;
	font-size: 1.1em;
	border-bottom: solid 1px #eee;
	color: #eee;
	font-weight: normal;
}
body#special #media .block p {
	padding: 5px 10px;
	color: #222;
	font-size: 0.9em;
}
body#special #media .block p time {
	display: inline-block;
	width: 100px;
	color: #eee;
}
body#special #media .block p a {
	color: #eee;
}
body#special #media .block p a:hover {
	text-decoration: underline;
}

/* ────────────────────────────
	Campaign
──────────────────────────── */
body#webcampaign {
	background-image: url(../img/special/webcampaign/bg.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#webcampaign .container {
	position: relative;
	padding-top: 180px;
	min-height: 500px;
}
body#webcampaign .container > .head {
	margin-bottom: 20px;
	color: #fff;
	border-bottom: solid 1px #fff;
}
body#webcampaign img {
	vertical-align: bottom;
}

/* top */
body#webcampaign .top {
	position: relative;
	height: 460px;
}
body#webcampaign .top img {
	position: absolute;
	bottom: 0;
	vertical-align: bottom;
}

/* intro */
body#webcampaign .intro {
	padding: 30px 20px 20px 20px;
	margin: 0 0 20px 0;
	background-color: rgba(255,255,255,0.8);
	border-radius: 0 3px 3px 0;
}
body#webcampaign .intro .catch {
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.8;
	text-decoration: underline;
	font-family: "Mplus 1p", sans-serif;
}
body#webcampaign .intro .present {
	margin: 20px 0;
	padding: 10px 10px 10px 0;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.6);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
body#webcampaign .intro .present:after {
	display: block;
	clear: both;
	content: "";
}
body#webcampaign .intro .present p {
	padding: 60px 0 0 20px;
	font-size: 1.3em;
	line-height: 1.8;
	font-family: "Mplus 1p", sans-serif;
	float: left;
}
body#webcampaign .intro .present p strong {
	display: block;
	font-weight: bold;
	font-size: 1.1em;
}
body#webcampaign .intro .present p .small {
	font-size: 0.8em;
}
body#webcampaign .intro .present img {
	float: left;
}
/* question */
body#webcampaign .question {
	margin: 40px 0 40px 0;
	padding: 30px 20px;
	border: solid 2px #fff;
	border-radius: 5px;
}
body#webcampaign .question:after {
	display: block;
	content: "";
	clear: both;
}
body#webcampaign .question .left {
	width: 530px;
	margin: 0 20px 0 0;
	float: left;
}
body#webcampaign .question .left .text {
	color: #fff;
	margin: 30px 0 0 0;
	padding: 20px 30px;
	border: solid 2px #fff;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.2);
}
body#webcampaign .question .left .text p {
	margin: 0 0 20px 0;
	font-size: 1.2em;
	font-family: "Mplus 1p", sans-serif;
}
body#webcampaign .question .left .text small {
}
body#webcampaign .question .right {
	float: left;
	width: 400px;
	padding: 40px 0 0 0;
}
body#webcampaign .question .right a {
	position: relative;
	display: block;
	outline: none;
	overflow: hidden;
}
body#webcampaign .question .right a img {
	vertical-align: bottom;
	transform: scale(1);
	transition: .5s;
}
body#webcampaign .question .right a:hover img {
	transform: scale(1.05);
}
body#webcampaign .question .right a i {
	position: absolute;
	bottom: 7px;
	right: 7px;
	color: #fff;
	font-size: 1.2em;
}

/* form */
body#webcampaign .form {
	position: relative;
	padding: 30px;
	margin: 40px 0;
	background-color: rgba(255,255,255,0.8);
	border-radius: 3px;
	font-family: "Mplus 1p", sans-serif;
	overflow: hidden;
}
body#webcampaign .form h2 {
	margin: 0 0 30px 0;
	font-size: 1.6em;
	font-weight: normal;
}
body#webcampaign .form .msg {
	display: block;
	margin: 0 10px;
	padding: 0 20px;
	background-color: #fff;
	border-radius: 20px;
	color: #444;
}
body#webcampaign input[type=text],input[type=email] {
	padding: 5px 10px;
	margin: 0 10px;
	border: solid 1px #666;
	border-radius: 5px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2) inset;
}
body#webcampaign select {
	margin: 0 0 0 5px;
	padding: 5px;
}
body#webcampaign .line {
	margin: 10px ;
	padding: 15px 0 20px ;
	border-bottom: solid 1px #999;
}
body#webcampaign .line.sex label {
	display: inline-block;
	margin: 0 30px 0 10px;
}
body#webcampaign .line span.head {
	display: inline-block;
	min-width: 180px;
	color: #444;
}
body#webcampaign span.err {
	color: #ff575a;
	font-weight: bold;
}
body#webcampaign span i {
	margin: 0 5px 0 0;
}
body#webcampaign .info {
	padding: 10px;
	margin: 10px;
	border-bottom: solid 1px #999;
}
body#webcampaign .info p {
	margin: 10px 0 20px 0;
}
body#webcampaign .info span {
	display: block;
	margin: 5px 0;
}

body#webcampaign .form .attention {
	margin: 30px 0;
	padding: 20px;
	border: solid 1px #999;
	color: #444;
	font-size: 0.8em;
	background-color: #eee;
	line-height: 1.5;
}
body#webcampaign .form .control {
	padding: 20px 0 0 0;
	text-align: center;
}
body#webcampaign input[type=submit],input[type=reset],input[type=button],button {
	padding: 20px 50px;
	margin: 0 10px;
	text-decoration: none;
	color: #000;
	background: #ccc;
	border-radius: 4px;
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	border: solid 2px #888;
	cursor: pointer;
}
.square_btn:active {/*押したとき*/
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

/* error */
body#webcampaign .err-msg {
	padding:50px 20px;
	font-size: 1.2em;
}
body#webcampaign .err-msg i {
	margin: 0 5px 0 0;
}

/* thx */
body#webcampaign .thx {
	position: relative;
}
body#webcampaign .thx a {
	position: absolute;
	display: inline-block;
	left: 20px;
	bottom: 200px;
	padding: 10px 30px;
	border: solid 1px #fff;
	font-size: 1.5em;
	color: #fff;
	transition: .3s;
}
body#webcampaign .thx a:hover {
	background-color: rgba(0,0,0,0.6);
}

body#webcampaign .form .canvas {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
}
body#webcampaign .form .canvas p {
	padding: 200px 0 0 0;
	color: #fff;
	font-family: "Mplus 1p", sans-serif;
	font-weight: bold;
	font-size: 3.0em;
	text-align: center;
}

/* ────────────────────────────
	Movie
──────────────────────────── */
body#movie {
	background-image: url(../img/common/bg/bg_11.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#movie .container {
	position: relative;
	padding-top: 180px;
	min-height: 500px;
}
body#movie .container h1.head {
	margin-bottom: 20px;
}
body#movie .container .box {
	display: block;
	float: left;
	margin: 30px 15px;
	width: 470px;
	box-sizing: border-box;
}
body#movie .container .box h2 {
	margin: 15px 0 0 0;
	padding: 2px 0;
	border-bottom: solid 1px rgba(0,0,0,0.5);
}
body#movie .container .box h2 span {
	padding: 0 10px;
	margin: 0 10px 0 0;
	font-weight: normal;
	font-size: 0.9em;
	color: #fff;
	background-color: rgba(0,0,0,0.8);
}
body#movie .container .box a {
	position: relative;
	display: block;
	width: 470px;
	height: 300px;
	outline: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
body#movie .container .box a img {
	position: absolute;
	top: 0;
	left: 0;
}
body#movie .container .box a img.play {
	z-index: 2;
	opacity: 0.3;
	transition: .5s;
}
body#movie .container .box a:hover img.play {
	opacity: 0.95;
}
body#movie .container .box a img.new {
	z-index: 3;
	top: 10px;
	left: 10px;
}
body#movie .under-img {
	width: 100%;
	overflow: hidden;
}
body#movie .under-img:after {
	clear: both;
	display: block;
	content: "";
}
body#movie .under-img .inner {
	width: 30000px;
}
body#movie .under-img .inner > div {
	display: block;
	float: left;
}
body#movie .under-img img {
	width: auto;
	height: 120px;
	vertical-align: bottom;
}

/* ────────────────────────────
	News
──────────────────────────── */
body#news {
	background-image: url(../img/common/bg/bg_05.jpg);
	background-attachment: fixed;
	background-color: #000;
}
body#news .container {
	position: relative;
	padding-top: 180px;
	min-height: 600px;
}
body#news .container h1.head {
	margin-bottom: 20px;
}
body#news .topics {
	margin-bottom: 30px;
}
body#news .topics:after {
	content: "";
	display: block;
	clear: both;
}
body#news .topics > .box {
	display: block;
	float: left;
	margin: 5px;
	height: 200px;
	width: 188px;
	border-radius: 3px;
	background-color: #222;
	color: #fff;
	transition: .3s;
	box-sizing: border-box;
	overflow: hidden;
}
body#news .topics > .box:hover {
	border: solid 2px #ff6600;
}
body#news .topics > .box > img {
	transition: .3s;
}
body#news .topics > .box:hover > img {
	opacity: 0.8;
}
body#news .topics > .box > h3 {
	display: block;
	padding: 5px 3px;
	text-align: left;
	font-weight: normal;
	font-size: 0.7em;
}
body#news .topics > .box > h3 span {
	display: inline-block;
}
body#news .topics > .box > p {
	padding: 0 3px;
	text-align: left;
	font-size: 0.7em;
}
body#news .topics > .box > time {
	margin: 1px 0;
	padding: 0 3px;
	display: block;
	text-align: left;
	font-size: 0.7em;
}
body#news .topics > .box > time > img {
	margin-right: 5px;
	vertical-align: bottom;
}

/* ────────────────────────────
	Support
──────────────────────────── */
body#support {
	background-color: #000;
}
body#support .container {
	position: relative;
	padding-top: 180px;
	min-height: 600px;
}
body#support .container h1.head {
	margin-bottom: 20px;
}
body#support .container .head {
	border-bottom: solid 1px #fff;
}
body#support .container .head h1 {
	color: #fff;
}
body#support #patch {
	padding: 0 0 10px 0;
}
body#support #patch h2 {
	margin: 0 0 30px 0;
	color: #fff;
	font-size: 1.7em;
	border-bottom: solid 1px #fff;
}
body#support #patch .attention {
	margin: 10px 0 20px 0;
	color: #fff;
}
body#support #patch .block {
	margin: 50px 0;
	border: solid 1px #ff6600;
}
body#support #patch .block h3 {
	padding: 5px 20px;
	background-color: #ff6600;
	color: #000;
	font-size: 1.3em;
	font-weight: normal;
}
body#support #patch .block h3 i {
	margin: 0 8px 0 0;
}
body#support #patch .block .inner {
	padding: 25px;
}
body#support #patch .block strong {
	display: block;
	margin: 0 0 10px 0;
	color: #ff6600;
	font-size: 1.2em;
}
body#support #patch .block ul li {
	color: #fff;
}

/* FAQ */
body#support .faq-wrap {
	margin: 20px 0 0 0;
	background-color: #444;
}
body#support .faq-wrap #faq {
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0 10px 0;
}
body#support .faq-wrap #faq h2 {
	margin: 0 0 50px 0;
	color: #fff;
	font-size: 1.7em;
	border-bottom: solid 1px #fff;
}
body#support .faq-wrap #faq h2 span {
	padding: 0 0 0 20px;
	font-weight: normal;
	font-size: 0.7em;
}
body#support #faq .block:after {
	display: block;
	clear: both;
	content: "";
}
body#support #faq .block {
	margin: 40px 0;
	border: solid 1px #eee;
	border-radius: 10px;
	overflow: hidden;
	font-size: 0.9em;
}
body#support #faq .block .q {
	width: 50%;
	float: left;
	padding: 20px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.2em;
}
body#support #faq .block .q i {
	margin: 0 5px 0 0;
}
body#support #faq .block .a {
	width: 50%;
	float: left;
	padding: 20px 20px 20px 10px;
	box-sizing: border-box;
	background-color: #eee;
}
body#support #faq .block .a a.piece2 {
	display: inline-block;
	margin: 10px 5px;
	transition: .3s;
}
body#support #faq .block .a a.piece2:hover {
	opacity: 0.8;
}
body#support #faq .block .a p {
	padding: 0 0 15px 0;
}
body#support #faq .block .a p.small {
	font-size: 0.8em;
}
body#support #faq .block .a p.bold {
	font-weight: bold;
}
body#support #faq .block .a p.under-line {
	text-decoration: underline;
}
body#support #faq .block .a p a {
	color: #3C63CF;
}
body#support #faq .block .a p a:hover {
	color: #8194D0;
}

/* contact */
body#support .contact-wrap {
	background-color: #777;
}
body#support .contact-wrap #contact {
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
}
body#support #contact h2 {
	margin: 0 0 20px 0;
	color: #fff;
	font-size: 1.2em;
	border-bottom: solid 1px #fff;
}
body#support #contact .link {
	border-radius: 5px;
	color: #fff;
	font-size: 0.9em;
}
body#support #contact .link a {
	color: #eee;
}



/* ────────────────────────────
	Effects
──────────────────────────── */
.fade-in {
	transition: 1.2s;
}
