@charset "UTF-8";

/* reset */
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, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
a {
	text-decoration: none;
}
article, aside, details, figcaption, figure, footer, header, menu, nav, section, summary {
	display: block;
}
img{
	vertical-align: middle;
}
/*-- common --*/
html {
	height:100%;
}
body {
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, arial, "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size:16px;
	line-height: 20px;
	color: #393939;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap : break-word;
	background: #fff;
	position:relative;
}
a {
	color:#959595;
}
#wrapper {
	position: relative;
	width:100%;
	overflow: hidden;
}
#container {
	width:100%;
	height: 100%;
}
@media screen and (max-width:767px){
	.pc-view{display:none;}
}
@media screen and (min-width:768px){
	.sp-view{display:none;}
}
/*-- header --*/
header {
	position: relative;
	background:#fff;
	z-index: 100;
}
header .konami-logo a{
	display:inline-block;
}
header .konami-logo img {
	width: 130px;
}
/* common navi */
nav{
	width:100%;
	background:#ff7800;
	background: -webkit-linear-gradient(top,  rgba(255, 139, 0, 0.85) 0%,rgba(255, 120, 0, 0.85) 100%);
	background: linear-gradient(to bottom, rgba(255, 139, 0, 0.85) 0%,rgba(255, 120, 0, 0.85) 100%);
	color:#ccc;
	position: relative;
	z-index: 100;
	height: 50px;
}
nav .headNav {
	display: none;
}
nav .headNav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	font-family: 'Hammersmith One', sans-serif;
	font-size:112.5%;
}
nav .headNav ul a,
nav .headNav ul span{
	color:#fff;
	padding: 15px 10px 13px;
	display: inline-block;
}
nav .headNav ul span{
	color: rgba(255, 255, 255, 0.5);
}
nav.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.5s;
}
nav .headNav li {
	animation: menuAnime 0.8s ease 1;
	-webkit-animation: menuAnime 0.8s ease 1;
	position: relative;
}
@keyframes menuAnime {
	0% {
		transform:translateY(-100px);
	}
	100% {
		transform:translateY(0);
	}
}
@-webkit-keyframes menuAnime {
	0% {
		transform:translateY(-100px);
	}
	100% {
		transform:translateY(0);
	}
}
nav #slide-line {
	position: absolute;
	bottom: 0;
	height: 3px;
	background-color: #fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	animation: menuAnimeBar 1.5s ease .1s;
	-webkit-animation: menuAnimeBar 1.5s ease .1s;
}
@keyframes menuAnimeBar {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes menuAnimeBar {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
nav .navi-ttl {
	position: absolute;
	left: 5px;
	top: 0;
	padding: 5px 0 0 0;
	z-index: 2;
	width: 60%;
	max-width: 200px;
	transition: all 0.5s;
}
nav .navi-ttl h1 a{
	display: block;
	background:url(../img/logo_sp.png) center top no-repeat;
	background-size:100% auto;
	height: 0;
	padding: 34.179% 0 0 0;
	overflow: hidden;
	white-space: nowrap;
	text-indent:-100%;
	transition: all 0.5s;
}
nav.fixed .navi-ttl h1{
	width: 118px;
}
@media only screen and (min-width: 768px){
	nav {
		height: 48px;
	}
	nav .navi-inner{
		max-width: 980px;
		margin: 0 auto;
		position: relative;
	}
	nav .headNav {
		display: block;
		position: relative;
		z-index: 1;
	}
}
@media only screen and (min-width: 1000px){
	nav .navi-ttl{
		max-width: 280px;
		top: -35px;
	}
	.index nav .navi-ttl{
		top: -35px;
		padding: 0;
		max-width: 400px;
	}
	nav.fixed .navi-ttl{
		top: 0;
	}
}

.globalNav {
	position: relative;
	display: block;
	z-index: 999;
	top: 0;
	width: 100%;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.globalNav input {
	display: none;
}
.globalNav .gnav-btn {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	-webkit-transition: background .3s;
	transition: background .3s;
}
.globalNav .gnav-btn label {
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: #ff7800;
	display: block;
}
.globalNav .gnav-btn label span {
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 50%;
	width: 24px;
	height: 2px;
	margin: 0 auto;
	background: #fff;
}
.globalNav .gnav-btn label span::before, .globalNav .gnav-btn label span::after {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	width: 24px;
	height: 2px;
	background: #fff;
	transform: translateY(-8px);
	-webkit-transition: transform .3s;
	transition: transform .3s;
}
.globalNav .gnav-btn label span::after {
	transform: translateY(8px);
}
.globalNav .gnav-btn label:hover {
	background: #ffb341;
}
.globalNav .gnav-cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	opacity: 0;
	transition: .3s ease-in-out;
}
.globalNav .gnav-modal {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	max-width: 320px;
	margin: 0 0 0 auto;
	transform: translate(100%, 0);
	-webkit-transition: transform .3s;
	transition: transform .3s;
	height: 100vh;
	font-size: 1rem;
	font-family: 'Hammersmith One', sans-serif;
	overflow: hidden;
	box-sizing: border-box;
	background: url(../img/bg-note-w.png),linear-gradient(to bottom,#8dc7e8 0%,#8dc7e8 80%,#fff 100%);
	background-size: 180% auto,auto;
}
.globalNav .gnav-modal ul {
	margin-top: 80px;
	border-top: 1px solid #fff;
}
.globalNav .gnav-modal ul li{
	border-bottom: 1px solid #fff;
}
.globalNav .gnav-modal a {
	display: block;
	padding: 15px 25px;
	color: #ffffff;
	background: rgba(59, 176, 239, 0.5);
	-webkit-transition: background .3s;
	transition: background .3s;
}
.globalNav .gnav-modal .active a {
	color: #fcff3a;
}
.globalNav .gnav-modal a:hover {
	background: #67caff;
}
.globalNav .gnav-modal li.current a {
	color: #ff7800;
}
.globalNav input:checked ~ .gnav-cover {
	display: block;
	opacity: .5;
}
.globalNav input:checked ~ .gnav-btn label span {
	height: 0;
}
.globalNav input:checked ~ .gnav-btn label span::before, .globalNav input:checked ~ .gnav-btn label span::after {
	transform: translateY(0) rotate(-45deg);
}
.globalNav input:checked ~ .gnav-btn label span::after {
	transform: translateY(0) rotate(45deg);
}
.globalNav input:checked ~ .gnav-modal {
	transform: translate(0, 0);
}
.globalNav input:checked ~ .gnav-modal {
	height: 100vh;
}

@media only screen and (min-width: 768px){
	.globalNav {
		display: none;
	}
}

/*-- index --*/

/* main-visual */

/*メイン画像設定*/
.index .main-visual .mvslide .mv_img {
	max-width: 1480px;
	margin: 0 auto;
}
.index .main-visual .mvslide .mv_img span{
	display: block;
	width: 100%;
	padding: 100% 0 0 0;
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
}
.index .main-visual .mvslide .mv_img1 span{
	background-image: url(../img/top_mv_linestamp_sp.jpg?v1)
}
.index .main-visual .mvslide .mv_img2 span{
	background-image: url(../img/top_tokidolparadise_2020winter_sp.jpg)
}
.index .main-visual .mvslide .mv_img3 span{
	background-image: url(../img/top_mv_11th_sp.jpg)
}
.index .main-visual .mvslide .mv_img4 span{
	background-image: url(../img/top_cd_sc03_sp_onsale.jpg)
}
.index .main-visual .mvslide .mv_img5 span{
	background-image: url(../img/top_live2020_sp.jpg)
}
@media screen and (min-width: 768px) {
	.index .main-visual .mvslide .mv_img span{
		padding: 40.54% 0 0 0;
	}
	.index .main-visual .mvslide .mv_img1 span{
		background-image: url(../img/top_mv_linestamp.jpg?v1)
	}
	.index .main-visual .mvslide .mv_img2 span{
		background-image: url(../img/top_tokidolparadise_2020winter.jpg)
	}
	.index .main-visual .mvslide .mv_img3 span{
		background-image: url(../img/top_mv_11th.jpg)
	}
	.index .main-visual .mvslide .mv_img4 span{
		background-image: url(../img/top_cd_sc03_pc_onsale.jpg)
	}
	.index .main-visual .mvslide .mv_img5 span{
		background-image: url(../img/top_live2020_pc.jpg)
	}
}

@media only screen and (max-width: 767px){
	.index .main-visual{
		width:100%;
		position: relative;
	}
	.index .main-visual .vr-mark{
		position: absolute;
		left: 0;
		bottom: 23%;
		width: 100%;
		z-index: 2;
		text-align: center;
	}
	.index .main-visual .vr-mark img{
		width: 68%;
		padding: 3px;
		background: rgba(255, 255, 255, 0.6);
		box-sizing: initial;
		border-radius: 5px;
	}
}
@media only screen and (min-width: 768px){
	.index .main-visual{
		width:100%;
		position: relative;
	}
	.index .main-visual .main-ttl{
		position: relative;
		width:980px;
		margin:0 auto;
	}
	.index .main-visual p.chara-top:after{
		position: absolute;
		display: block;
		width:100%;
		height:100%;
		content:'';
		background:url(../img/index-twinkle.png),url(../img/index-twinkle.png),url(../img/index-twinkle.png);
		background-repeat:no-repeat,no-repeat,no-repeat;
		background-position: left 5% top 50%,right 35% top 5%,right 5% top 45%;
	}
	.index .main-visual .vr-mark{
		position: absolute;
		left: 0;
		top: 487px;
		width: 100%;
		z-index: 2;
	}
	.index .main-visual .vr-mark p{
		width: 980px;
		margin:0 auto;
		padding-top:60px;
		text-align: right;
	}
	.index .main-visual .vr-mark img{
		padding: 6px;
		background: rgba(255, 255, 255, 0.6);
		box-sizing: initial;
		border-radius: 5px;
	}
}
@keyframes topLogoAnime {
	0% {
		opacity: 0;
		transform:translate(0,-60px);
	}
	15% {
		opacity: 0;
		transform:translate(0,-60px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
@-webkit-keyframes topLogoAnime {
	0% {
		opacity: 0;
		transform:translate(0,-60px);
	}
	15% {
		opacity: 0;
		transform:translate(0,-60px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
@keyframes topCharaAnime {
	0% {
		opacity: 0;
		transform:translate(0,150px);
	}
	15% {
		opacity: 0;
		transform:translate(0,150px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
@-webkit-keyframes topCharaAnime {
	0% {
		opacity: 0;
		transform:translate(0,150px);
	}
	15% {
		opacity: 0;
		transform:translate(0,150px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
@media only screen and (max-width: 767px){
	.index .main-visual .top-info{
		width:980px;
		margin:0 auto;
	}
	.index .main-visual .top-info{
		padding:0 10px;
		position: absolute;
		bottom: 10px;
		width: 100%;
	}
	.index .main-visual .top-info .dl-site{
		text-align: center;
		padding: 20px 0;
		font-size: 93.75%;
		font-weight: bold;
	}
	.index .top-info .bnr-area{
		margin:0 0 10px;
		text-align: center;
	}
	.index .topics-wrap .top-info .bnr-area li + li{
		margin-top:10px;
	}
	.index .top-info .bnr-area img{
		width:100%;
	}
}

/* slick setting */
.mvslide .slick-prev,
.mvslide .slick-next{
	z-index: 99;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.7);
	padding: 30px;
	border-radius: 30px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.mvslide .slick-prev:before,
.mvslide .slick-next:before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.mvslide .slick-prev:before{
	left: 37px;
	width: 12px;
	height: 12px;
	border-bottom: 4px solid #05a0f3;
	border-left: 4px solid #05a0f3;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mvslide .slick-next:before{
	left: 8px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #05a0f3;
	border-right: 4px solid #05a0f3;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mvslide .slick-prev:hover,
.mvslide .slick-next:hover,
.mvslide .slick-prev:focus,
.mvslide .slick-next:focus{
	opacity: .5;
}
.mvslide .slick-prev{
	left: -30px;
}
.mvslide .slick-next{
	right: -30px;
}
@media screen and (min-width: 768px) {
	.mvslide .slick-prev,
	.mvslide .slick-next{
		padding: 25px;
		border-radius: 30px;
	}
	.mvslide .slick-prev:before{
		left: 20px;
		width: 16px;
		height: 16px;
		border-width: 4px;
	}
	.mvslide .slick-next:before{
		left: 12px;
		width: 16px;
		height: 16px;
		border-width: 4px;
	}
	.mvslide .slick-prev{
		left: 20px;
	}
	.mvslide .slick-next{
		right: 20px;
	}
}
@media screen and (min-width: 1100px) {
	.mvslide .slick-prev,
	.mvslide .slick-next{
		padding: 30px;
		border-radius: 30px;
	}
	.mvslide .slick-prev:before{
		left: 22px;
		width: 20px;
		height: 20px;
		border-width: 4px;
	}
	.mvslide .slick-next:before{
		left: 14px;
		width: 20px;
		height: 20px;
		border-width: 4px;
	}
	.mvslide .slick-prev{
		left: 30px;
	}
	.mvslide .slick-next{
		right: 30px;
	}
}

/* index topics */
.index .topics-wrap{
	background:url(../img/bg-note-blue.png),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-s-b.svg);
	background-size:590px auto,320px auto,290px auto,390px auto;
	background-repeat:repeat,no-repeat,no-repeat,no-repeat;
	background-position:left top,left 50px bottom -150px,right 50px bottom 50px,left -50px top -100px;
	position: relative;
	overflow: hidden;
	padding:10px;
	z-index: 1;
}
.index .topics-wrap .twitter-area{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 100%;
	background:#fff;
	border:2px solid #ff810b;
	margin-bottom: 10px;
}
.index .topics-wrap .twitter-area .twitter-ttl{
	width:97%;
	padding: 0;
	font-size: 87.5%;
	font-weight: bold;
	position: relative;
	border: 1px solid #ff810b;
	margin: 5px;
	position: relative;
	display: table;
}
.index .topics-wrap .twitter-area .twitter-ttl p{
	display: table-cell;
}
.index .topics-wrap .twitter-area .twitter-ttl p:first-child{
	width:30px;
}
.index .topics-wrap .twitter-area .twitter-ttl span{
	background:#ff810b;
	display: block;
}
.index .topics-wrap .twitter-area .twitter-ttl a{
	color:#ff7e00;
	margin-left:10px;
	display: block;
	width: 100%;
}
.index .topics-wrap .twitter-area .twitter-ttl a:hover{
	color:#ffae00;
}
.index .topics-wrap .twitter-area .twitter-area-inner {
	width: 100%;
}
.pc .index .topics-wrap .twitter-area .twitter-area-inner iframe {
	width:100% !important;
	height:100% !important;
}
.index .topics-wrap .news-area{
	background: #fff;
	border: 2px solid #ff810b;
	font-size:81.25%;
	padding:5px 10px;
	margin-bottom:10px;
}
.index .topics-wrap .news-area li{
	margin-bottom:5px;
}
.index .topics-wrap .news-area li.v2_info{
	border-bottom: 1px solid #c7c7c7;
}
.index .topics-wrap .news-area a{
	color: #393939;
	position: relative;
	display: block;
	padding-right: 17px;
	width: 100%;
}
.index .topics-wrap .news-area a + a{
	margin-top:5px;
}
.index .topics-wrap .news-area .hot a{
	font-weight: bold;
	color: #d80e5c;
}
.index .topics-wrap .news-area a:after {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 12px;
	top: 50%;
	right: 0;
	margin: -7px 0 0 0;
	background: url(../img/link_arrow_orange.svg) no-repeat;
	background-size: 8px 12px;
}
.index .topics-wrap .news-area a:hover{
	color:#ff810b;
}
.index .topics-wrap .news-area dl{
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
}
.index .topics-wrap .news-area dl dt{
	background: #ff7e00;
	color: #fff;
	padding: 2px 3px;
	line-height: 1.5;
	font-size: 68.75%;
	white-space: nowrap;
	text-align: center;
	flex: 0 0 5.7em;
}
.index .topics-wrap .news-area dl dt.important{
	background: #ff5730;
}
.index .topics-wrap .news-area dl dd{
	padding-left: 6px;
	margin-bottom:2px;
	flex: 1 1 auto;
	position: relative;
}
.index .topics-wrap .news-area dl dd .new_icon{
	display: inline-block;
	background: #3594fe;
	color: #ffffff;
	font-size: 9px;
	line-height: 1.5;
	padding: 0 3px;
	margin: 0 0 0 5px;
	border-radius: 4px;
}

.index .topics-wrap .dl-area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin:0 auto 20px;
	max-width:500px;
}
.index .topics-wrap .dl-area ul li{
	width:49%;
}
.index .topics-wrap .dl-area ul li img{
	width:100%;
	padding:3px;
}
.index .topics-wrap .info-area{
	margin:0 0 10px 0;
}
.index .topics-wrap .info-area li {
	transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
}
.index .topics-wrap .info-area li + li {
	margin-top: 10px;
}
.index .topics-wrap .info-area .service_bn a {
	display: block;
	width: 100%;
	padding-top: 15%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: relative;
}
.index .topics-wrap .info-area .service_bn a::after {
	content: "";
	display: none;
	background: rgba(255,255,255,0.3);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.index .topics-wrap .info-area li:hover {
	opacity: 0.7;
}

.index .topics-wrap .info-area img{
	width:100%;
	transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
	backface-visibility: hidden;
}
.index .topics-wrap .info-area a:hover img{
	opacity: 0.7;
}
.index .topics-wrap .bn-area-news_btm {
	margin: 5px 0;
}
.index .topics-wrap .bn-area-news_btm li + li {
	margin-top: 10px;
}
.index .topics-wrap .bn-area-news_btm img {
	width: 100%;
}
@media only screen and (min-width: 768px){
	.index .topics-wrap {
		padding: 15px 10px 15px;
	}
	.index .topics-wrap .inner{
		max-width:980px;
		height: auto;
		margin:0 auto;
		display: -webkit-flex;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		position: relative;
		padding-left: 435px;
	}
	.index .topics-wrap .twitter-area {
		width: 425px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.index .topics-wrap .twitter-area .twitter-area-inner {
		width: 100%;
		height: 580px;
	}
	.index .topics-wrap .info-area{
		-webkit-box-ordinal-group: 1;
		order: 1;
		flex: 0 0 auto;
		width: auto;
	}
	.index .topics-wrap .news-area{
		-webkit-box-ordinal-group: 2;
		order: 2;
		margin:0 0 10px;
		background: rgba(255,255,255,0.7);
	}
	.index .topics-wrap #scrollable{
		height: 290px;
		position: relative;
		flex: 0 0 105px;
	}
	.index .topics-wrap .dl-area{
		-webkit-box-ordinal-group: 3;
		order: 3;
		flex: 1;
	}
	.index .topics-wrap .dl-area{
		-webkit-box-ordinal-group: 4;
		order: 4;
		flex: 1;
	}
	.index .topics-wrap .bn-area-news_btm{
		-webkit-box-ordinal-group: 3;
		order: 3;
		flex: 0 0 auto;
		width: auto;
		margin: 5px 0 10px;
	}
}
@media only screen and (min-width: 880px) {
	.index .topics-wrap .inner {
		padding-left: 526px;
	}
	.index .topics-wrap .twitter-area {
		width: 510px;
	}
}

@media only screen and (min-width: 1000px) {
	.index .topics-wrap .inner {
		padding-left: 590px;
	}
	.index .topics-wrap .twitter-area {
		width: 575px;
	}
}
/* index movie */
.index .movie-wrap{
	background:#000;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.index .movie-wrap:before{
	content:'';
	background:url(../img/movie-thumb-pv1.jpg) left top 50% no-repeat;
	background-size:cover;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.4;
}
.index .movie-wrap .inner{
	background:url(../img/overlay-gl.png) repeat;
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	padding:10% 0;
}
@media only screen and (max-width: 767px){
	.index .movie-wrap a{
		position: relative;
		overflow: hidden;
		display:block;
	}
	.index .movie-wrap a img{
		max-width: 80%;
		border: 2px solid #fff;
		display: inline-block;
	}
	.index .movie-wrap a:after{
		content: "";
		position: absolute;
		display: block;
		width: 16%;
		top: 36%;
		left: 43%;
		background: url(../img/movie-play-btn.svg) no-repeat;
		background-size: 100% auto;
		padding-top: 17%;
		opacity: 0.8;
	}
}
@media only screen and (min-width: 768px){
	.index .movie-wrap .inner{
		padding:0;
	}
	.index .movie-wrap #bgVideo{
		height: 420px;
	}
	.index .movie-wrap #bgVideo:after{
		content:"";
		position: absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background: url(../img/overlay-gl.png) repeat;
		z-index: 2;
	}
	.index .movie-wrap #bgVideo:before{
		content:'';
		background: url(../img/loader.gif) center top no-repeat;
		width:32px;
		height:32px;
		display: block;
		position: absolute;
		top:145px;
		left:50%;
		z-index: 0;
	}
	.index .movie-wrap .movie-link{
		position: absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		z-index: 3;
	}
	.index .movie-wrap .movie-link a{
		display: block;
		width:100%;
		height:100%;
	}
}
/* index about */
.index .about-wrap{
	background:url(../img/bg-note-blue.png),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-s-b.svg),url(../img/bg-hex-s-b.svg);
	background-size:590px auto,320px auto,290px auto,390px auto,450px auto;
	background-repeat:repeat,no-repeat,no-repeat,no-repeat,no-repeat;
	background-position:left top,left 150px top 150px,right 180px bottom 80px,left -50px top -100px,right -80px bottom -80px;
	font-size:81.25%;
	padding:25px 10px 10px;
}
.index .about-wrap h3{
	background:url(../img/index-catch.png) no-repeat;
	background-size:100% auto;
	width:90%;
	max-width:480px;
	padding-top:9.17%;
	margin:0 auto 20px;
}
.index .about-wrap h3 span{
	display: none;
}
.index .about-wrap p{
	margin-bottom:5px;
}
.index .about-wrap .index-ss{
	margin-top:15px;
}
.index .about-wrap .index-ss li{
	padding:5px;
}
.index .about-wrap .index-ss img{
	width:100%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #ff810b;
	-webkit-box-shadow: 0 0 0 2px #ff810b;
	overflow: hidden;
	border-radius: 5px;
}
@media only screen and (min-width: 768px){
	.index .about-wrap{
		padding: 40px 10px 40px;
		font-size:93.75%;
		line-height: 1.8;
	}
	.index .about-wrap h3{
		width:480px;
		height:44px;
		padding:0;
	}
	.index .about-wrap p{
		text-align: center;
	}
	.index .about-wrap .index-ss{
		width:980px;
		margin: 25px auto 0;
	}
	.index .about-wrap .index-ss ul{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.index .about-wrap .index-ss li{
		padding:8px;
	}
	.index .about-wrap .index-ss img{
		width:100%;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		border:none;
		box-shadow:none;
		-webkit-box-shadow: none;
	}
	.index .about-wrap .index-ss a:hover img{
		transform: scale(1.2);
	}
	.index .about-wrap .index-ss a{
		display: block;
		border: 2px solid #fff;
		box-shadow: 0 0 0 2px #ff810b;
		-webkit-box-shadow: 0 0 0 2px #ff810b;
		overflow: hidden;
		border-radius: 5px;
		position: relative;
	}
	.index .about-wrap .index-ss li a:after {
		content: "";
		position: absolute;
		right: 5px;
		bottom: 5px;
		display: block;
		width: 25px;
		height: 25px;
		background: url(../img/app_ss_expansion_icon.png) no-repeat;
		background-size: 100% auto;
	}
}
/* index chara */
.index .character-wrap {
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),#82ccf8;
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),-webkit-linear-gradient(top,#82ccf8 0%,#fff 100%);
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),linear-gradient(to bottom,#82ccf8 0%,#fff 100%);
	background-size: 590px auto,180px auto,200px auto,300px auto,auto;
	background-position: center bottom,left -20px top -10px,right -50px bottom 40px,left 50px top 30px,center top;
	background-repeat: repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
}
.index .character-wrap .inner{
	padding: 20px 0 30px;
	background:url(../img/school-badge.png) no-repeat center top 50%;
	background-size: auto 60%;
	position: relative;
}
.index .character-wrap a img{
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.index .character-wrap a:hover img{
	transform: scale(0.95);
}
@media only screen and (min-width: 768px){
	.index .character-wrap {
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),#82ccf8;
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),-webkit-linear-gradient(top,#82ccf8 0%,#fff 100%);
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),linear-gradient(to bottom,#82ccf8 0%,#fff 100%);
		background-size: 590px auto,240px auto,240px auto,390px auto,400px auto,auto;
		background-position: center bottom,left -20px top 10px,right bottom 40px,left 50px bottom 90px,right -20px top -40px,center top;
		background-repeat: repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
	}
}
@media only screen and (max-width: 767px){
	.index .character-wrap img{
		height:500px;
	}
}
@media only screen and (max-width: 479px){
	.index .character-wrap img{
		height:380px;
	}
}
/* index app-base-data */
.index .app-base-data{
	background:url(../img/foot-bg.jpg) center top no-repeat;
	background-size:cover;
	color:#fff;
	position: relative;
	z-index: 0;
	padding: 35px 0 20px;
}
.index .app-base-data:after{
	content:'';
	background:url(../img/overlay-gl.png) repeat;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
}
.index .app-base-data .inner{
	position: relative;
	z-index:1;
}
.index .app-base-data .detail > ul{
	margin:25px 0 15px;
}
.index .app-base-data .detail > ul li dl {
	display: table;
	width: 310px;
	margin: 0 auto;
	font-size: 81.25%;
	line-height: 1;
}
.index .app-base-data .detail > ul li dt {
	display: table-cell;
	width: 90px;
	padding: 0 12px 15px 0;
	text-align: right;
	border-right: 1px solid rgba(255,255,255,0.5);
}
.index .app-base-data .detail > ul li:first-child dt {
	padding: 20px 12px 15px 0;
}
.index .app-base-data .detail > ul li:last-child dt {
	padding: 0 12px 20px 0;
}
.index .app-base-data .detail > ul li dd {
	display: table-cell;
	text-align: left;
	padding: 0 0 0 12px;
}
.index .app-base-data .detail > ul a{
	color:#fff;
	text-decoration: underline;
}
.index .app-base-data .detail > ul a:hover{
	text-decoration: none;
}
.index .app-base-data .vr-mark {
	max-width: 980px;
	margin:10px auto 20px;
	font-size:68.75%;
	line-height: 1.5;
}
.index .app-base-data .vr-mark dl{
	width:75%;
	min-width: 275px;
	display: table;
	margin:0 auto;
}
.index .app-base-data .vr-mark dl dt,
.index .app-base-data .vr-mark dl dd{
	display: table-cell;
	vertical-align: top;
}
.index .app-base-data .vr-mark dl dt{
	width: 80px;
}
.index .app-base-data .vr-mark dl dt img{
	width: 70px;
}
.index .app-base-data .vr-mark dl dd ul li{
	position: relative;
	padding:0 0 0 1.5em;
}
.index .app-base-data .vr-mark dl dd ul li:before{
	content:'※';
	display: inline-block;
	position: absolute;
	left:0;
	width:1.5em;
}
.index .app-base-data .vr-mark dl dd ul li span{
	display: inline-block;
}
.index .app-base-data .pre-btn,
.index .topics-wrap .pre-btn,
.page-footer .pre-btn{
	text-align: center;
	margin-top:10px;
}
.index .topics-wrap .pre-btn{
	margin:15px auto 5px;
}
.index .app-base-data .pre-btn img,
.index .topics-wrap .pre-btn img,
.page-footer .pre-btn img{
	width: 90%;
	max-width: 420px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.index .app-base-data .pre-btn a:hover img,
.index .topics-wrap a:hover .pre-btn img,
.page-footer .pre-btn a:hover img{
	transform: scale(1.05);
}
.index .app-base-data .dl-area,
.page-footer .dl-area{
	padding:10px;
}
.index .app-base-data .dl-area ul,
.page-footer .dl-area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 auto;
	max-width: 390px;
}
.page-footer .dl-area ul{
	max-width: 400px;
	width:70%;
}
.index .app-base-data .dl-area ul li{
	width: 49%;
}
.page-footer .dl-area ul li{
	width: 100%;
}
.index .app-base-data .dl-area ul li img,
.page-footer .dl-area ul li img{
	width: 100%;
	padding: 3px;
}
.page-footer .dl-area ul li a:after{
	display: none;
}
.index .app-base-data .qr-area{
	display: none;
}
@media only screen and (min-width: 768px){
	.index .app-base-data .vr-mark dl dt,
	.index .app-base-data .vr-mark dl dd{
		vertical-align: middle;
	}
	.index .app-base-data .vr-mark dl{
		width:45%;
		min-width:450px;
	}
	.index .app-base-data .pre-btn,
	.index .topics-wrap .pre-btn,
	.page-footer .pre-btn{
		text-align: center;
		margin-top:20px;
	}
	.index .app-base-data .qr-area{
		display: block;
		text-align: center;
		margin: 10px;
	}
	.index .app-base-data .dl-area ul,
	.page-footer .dl-area ul{
		-webkit-justify-content:space-between;
		justify-content:space-between;
	}
	.page-footer .dl-area ul{
		max-width: 300px;
	}
}
/* 事前登録ボタンtop */
.index .pre-btn-top {
	z-index: 3;
	position: relative;
	text-align: center;
	margin: 10px auto 15px;
}
.index .pre-btn-top img{
	width: 90%;
	max-width: 470px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.index .pre-btn-top a:hover img{
	transform: scale(1.1);
}
@media only screen and (min-width: 768px){
	.index .pre-btn-top {
		margin: 0 auto 30px;
	}
}
/*-- contents common --*/
.contents .ttl-header{
	padding-top:22%;
	position: relative;
	min-height: 110px;
}
.contents .ttl-header h2{
	color:#fff;
	font-family: 'Hammersmith One', sans-serif;
	font-size:143.75%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content:center;
	-webkit-align-items:center;
	align-items:center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 21px;
}
.contents .topic-wrap{
	position: relative;
	overflow: hidden;
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),#8dc7e8;
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),-webkit-linear-gradient(top,#8dc7e8 0%,#8dc7e8 80%,#fff 100%);
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),linear-gradient(to bottom,#8dc7e8 0%,#8dc7e8 80%,#fff 100%);
	background-size: 100% auto,50% auto,70% auto,90% auto,auto;
	background-position: center top,left 10% top 70%,left -50% top,right -50% bottom -30%,center top;
	background-repeat: repeat,no-repeat,no-repeat,no-repeat,repeat;
}
@media only screen and (min-width: 768px){
	.contents .ttl-header{
		padding-top:10%;
		min-height: 145px;
	}
	.contents .ttl-header h2{
		font-size:245%;
	}
	.contents .topic-wrap{
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),#8dc7e8;
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),-webkit-linear-gradient(top,#8dc7e8 0%,#8dc7e8 80%,#fff 100%);
		background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),linear-gradient(to bottom,#8dc7e8 0%,#8dc7e8 80%,#fff 100%);
		background-size: auto,300px auto,430px auto,540px auto,300px auto,auto;
		background-position: center top,left 50px top -50px,left -70px top 120px,right -90px bottom -50px,right -70px bottom 320px,center top;
		background-repeat: repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
	}
}
/*-- chara --*/
.chara .contents{
	padding-bottom: 190px;
}
.chara .contents .ttl-header{
	background:url(../img/bg-head-chara_sp.jpg) no-repeat;
	background-size:cover;
}
@media only screen and (min-width: 480px){
	.chara .contents{
		padding-bottom: 95px;
	}
}
@media only screen and (min-width: 768px){
	.chara .contents .ttl-header{
		background:url(../img/bg-head-chara_pc.jpg) no-repeat;
		background-size:cover;
	}
}
/* chara-select */
@media only screen and (max-width: 767px){
	.chara .chara-select{
		padding:3% 0 25%;
		position: relative;
		background:url(../img/bg-hex-d-b.svg),url(../img/bg-hex-s-b.svg),url(../img/bg-hex-s-b.svg),url(../img/bg-hex-b.svg),url(../img/bg-hex-b.svg),url(../img/bg-hex-b.svg);
		background-size: 60% auto,70% auto,40% auto,auto,60% auto,30% auto;
		background-position: left 2% bottom 8%,right -20% bottom 8%,right -30% bottom 10%,left 30% bottom 20%,right -20% bottom -10%,left -10% bottom 5%;
		background-repeat: no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;
	}
	.chara .chara-select ul{
		padding: 0 10px 30px;
		text-align: center;
		margin-left: -4%;
	}
	.chara .chara-select ul li {
		display: inline-block;
		width: 18%;
		padding: 3px;
	}
	.chara .chara-select ul li:nth-child(2n){
		margin: 0 -4%;
	}
	.chara .chara-select ul li:nth-child(2n) img{
		margin-bottom: -90%;
	}
	.chara .chara-select ul li:last-child{
		margin-right: 40%;
	}
	.chara .chara-select ul li a {
		display: block;
		cursor: pointer;
	}
	.chara .chara-select ul li a img{
		width: 100%;
	}
	.chara .chara-select ul li a:hover {
		opacity: .7;
	}
	.chara .chara-select:after {
		content: '';
		display: block;
		background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,#fff 100%);
		background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,#fff 100%);
		height: 40px;
		width: 100%;
		position: absolute;
		bottom: 0;
	}
}
@media only screen and (max-width: 479px){
	.chara .chara-select ul{
		padding: 0 10px 0px;
		text-align: center;
		margin-left: -7%;
	}
	.chara .chara-select ul li {
		display: inline-block;
		width: 28%;
		padding: 3px;
	}
	.chara .chara-select ul li:nth-child(2n){
		margin: 0 -7%;
	}
	.chara .chara-select ul li:nth-child(2n) img{
		margin-bottom: -90%;
	}
	.chara .chara-select ul li:last-child{
		margin-right: 15%;
	}
}
@media only screen and (min-width: 768px){
	.chara .chara-select{
		padding:60px 0;
		position: relative;
		background:url(../img/bg-hex-d-b.svg),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-s-b.svg),url(../img/bg-hex-b.svg),url(../img/bg-hex-b.svg),url(../img/bg-hex-s-b.svg);
		background-size: 250px auto,250px auto,300px auto,200px auto,125px auto,250px auto;
		background-position: left top 10px, right top 10px,right 100px top -90px,right -100px bottom -30px,left 130px top -20px,left -90px bottom -90px;
		background-repeat: no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;
	}
	.chara .chara-select ul{
		width:980px;
		margin:0 auto;
		text-align: right;
		z-index: 3;
		position: relative;
	}
	.chara .chara-select ul li {
		display: inline-block;
		width: 80px;
		margin: 0 -10px;
	}
	.chara .chara-select ul li:nth-child(3n+2) img{
		margin-top: -72px;
	}
	.chara .chara-select ul li:nth-child(3n+3){
		margin-left: -74px;
	}
	.chara .chara-select ul li:nth-child(3n+3) img{
		margin-bottom: -72px;
	}
	.chara .chara-select ul li a {
		display: block;
		cursor: pointer;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	}
	.chara .chara-select ul li a img{
		width: 80px;
	}
	.chara .chara-select ul li a:hover {
		opacity: .7;
	}
}

@media only screen and (max-width: 767px){
	.chara .chara-data{
		position: relative;
	}
	.chara .chara-data .chara-base-info{
		position: relative;
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),#8dc7e8;
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),-webkit-linear-gradient(top,#8dc7e8 0%,#8dc7e8 50%,#fff 100%);
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),linear-gradient(to bottom,#8dc7e8 0%,#8dc7e8 50%,#fff 100%);
		background-size: 100% auto,50% auto,70% auto,90% auto,auto;
		background-position: center top,left 10% top 70%,left -50% top,right -50% bottom -30%,center top;
		background-repeat: repeat,no-repeat,no-repeat,no-repeat,repeat;
	}
	.chara .chara-data .chara-img{
		z-index: 1;
		position: relative;
		padding: 5px;
		width: 50%;
	}
	.chara .chara-data .chara-img img{
		height: 780px;
		width:auto;
	}
	.chara #chara-izumi .chara-img img{
		margin-left:-35px;
	}
	.chara .chara-data .chara-base-info .chara-base-inner{
		position: absolute;
		width: 100%;
		top: 0;
		z-index: 0;
	}
	.chara .chara-data .chara-name{
		background: url(../img/bg-chara-name_sp.png) right top no-repeat #3ca5e0;
		background-size: auto 100%;
		text-align: right;
		position: relative;
	}
	.chara .chara-data .chara-name h3{
		padding: 20px 10px;
		position: relative;
	}
	.chara .chara-data .chara-name h3 img{
		height: 50px;
	}
	.chara .chara-data .chara-name h3:after{
		content: attr(name_en_text)"";
		display: block;
		color: #fff;
		padding: 5px 0 0 0;
		font-size:87.5%;
	}
	.chara .chara-data .chara-name .chara-cv{
		background: rgba(255, 255, 255, 0.7);
		padding: 10px 60px 10px 0;
		position: relative;
		color:#3093da;
		font-weight: bold;
	}
	.chara .chara-data .chara-name .chara-voice{
		position: absolute;
		right:10px;
		bottom:10px;
	}
	.chara .chara-data .chara-name .chara-voice a{
		display: block;
		background:url(../img/btn-voice_sp.svg) no-repeat;
		background-size:100% 100%;
		width:40px;
		height:40px;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		cursor: pointer;
	}
	.chara .chara-data .chara-name .chara-voice.active{
		animation: voiceBtnAnime 0.5s ease infinite alternate;
		-webkit-animation: voiceBtnAnime 0.5s ease infinite alternate;
	}
	.chara .chara-data .chara-name .chara-voice.active a{
		background:url(../img/btn-voice_pc.svg) right top no-repeat;
		background-size: 100% 100%;
	}
	@keyframes voiceBtnAnime {
		0% {
			transform:scale(1);
		}
		100% {
			transform:scale(1.2);
		}
	}
	@-webkit-keyframes pvoiceBtnAnime {
		0% {
			transform:scale(1);
		}
		100% {
			transform:scale(1.2);
		}
	}
	.chara .chara-data .chara-name .chara-voice a:hover{
		transform: scale(1.3);
	}
	.chara .chara-data .chara-name .chara-voice a span{
		display: none;
	}
	.chara .chara-data .chara-ss{
		padding: 15px 10px;
		position: relative;
	}
	.chara .chara-data .chara-ss ul{
		padding-left:55%;
		position: relative;
	}
	.chara .chara-data .chara-ss ul li{
		padding:0 0 15px 0;
	}
	.chara .chara-data .chara-ss ul li a{
		position: relative;
		display: block;
	}
	.chara .chara-data .chara-ss ul li a:after {
		content: "";
		position: absolute;
		right: 5px;
		bottom: 5px;
		display: block;
		width: 25px;
		height: 25px;
		background: url(../img/app_ss_expansion_icon.png) no-repeat;
		background-size: 100% auto;
	}
	.chara .chara-data .chara-ss ul li a img{
		width:100%;
		border: 2px solid #fff;
		box-shadow: 0 0 0 2px #ff810b;
		-webkit-box-shadow: 0 0 0 2px #ff810b;
		border-radius: 5px;
	}
	.chara .chara-data .chara-sd-img{
		position: absolute;
		bottom:0;
		right:0;
		padding:0 20px 15px 0;
		width:100%;
		text-align: right;
		z-index: 1;
	}
	.chara .chara-data .chara-sd-img img{
		width:160px;
		margin-right: 50px;
	}
	.chara .chara-data .chara-detail{
		background:#e6e6e6;
		font-size:87.5%;
	}
	.chara .chara-data .chara-detail .chara-profile{
		border-bottom:2px solid #ff810b;
		padding: 0 0 15px;
	}
	.chara .chara-data .chara-detail .chara-profile .catch{
		background:url(../img/bg-chara-catch.png) repeat;
		padding:15px 10px;
		position: relative;
		font-weight: bold;
		color:#fff;
		font-size:112.5%;
		text-shadow: #a05a00 1px 1px 0px, #a05a00 -1px 1px 0px,#a05a00 1px -1px 0px, #a05a00 -1px -1px 0px;
	}
	.chara .chara-data .chara-detail .chara-profile .catch:before,
	.chara .chara-data .chara-detail .chara-profile .catch:after{
		content:'';
		width:100%;
		height: 1px;
		display: block;
		background:#fff;
		position: absolute;
	}
	.chara .chara-data .chara-detail .chara-profile .catch:before{
		top:3px;
		left: 0;
	}
	.chara .chara-data .chara-detail .chara-profile .catch:after{
		bottom:3px;
		left: 0;
	}
	.chara .chara-data .chara-detail .chara-profile .detail{
		background: #fff;
		border: 2px solid #b0b2cd;
		padding: 10px;
		margin: 10px;
		border-radius: 5px;
	}
	.chara .chara-data .chara-detail .chara-profile .profile{
		padding:0 10px;
	}
	.chara .chara-data .chara-detail .chara-profile .profile dl {
		display: table;
		border-collapse: separate;
		border-spacing: 5px 3px;
		width: 100%;
		margin: 0 auto;
	}
	.chara .chara-data .chara-detail .chara-profile .profile dt {
		display: table-cell;
		width: 72px;
		padding: 2px 5px;
		text-align: center;
		background: #ff810b;
		border-radius: 5px;
		color: #fff;
	}
	.chara .chara-data .chara-detail .chara-profile .profile li dd {
		display: table-cell;
		text-align: left;
		padding: 0 10px 0 10px;
		background: #fff;
		border-radius: 5px;
	}
}
@media only screen and (max-width: 479px){
	.chara .chara-data .chara-img img{
		height: 500px;
	}
	.chara .chara-data .chara-name h3 img{
		height: 40px;
	}
	.chara .chara-data .chara-ss ul{
		padding-left:58%;
		position: relative;
	}
	.chara .chara-data .chara-sd-img img{
		width:105px;
		margin-right: 20px;
	}
}
@media only screen and (max-width: 359px){
	.chara .chara-data .chara-img img{
		height: 480px;
	}
	.chara .chara-data .chara-name h3 img{
		height: 27px;
	}
	.chara .chara-data .chara-name .chara-cv{
		font-size:85%;
	}
	.chara #chara-koyukimura .chara-img img{
		margin-left:-22px;
	}
}
@media only screen and (min-width: 768px){
	.chara .chara-data{
		position: relative;
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),#8dc7e8;
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),-webkit-linear-gradient(top,#8dc7e8 0%,#8dc7e8 50%,#fff 100%);
		background:url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-d.svg),linear-gradient(to bottom,#8dc7e8 0%,#8dc7e8 50%,#fff 100%);
		background-size: auto,300px auto,430px auto,540px auto,300px auto,auto;
		background-position: center top,left 50px top -50px,left -70px top 120px,right -90px bottom -50px,right -70px bottom 320px,center top;
		background-repeat: repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
		min-height: 800px;
		margin-bottom: 200px;
	}
	.chara .chara-data .chara-img{
		position: relative;
		width:980px;
		margin:0 auto;
	}
	.chara .chara-data .chara-img img{
		position: absolute;
		top: -170px;
		left:0;
		z-index: 2;
	}
	.chara #chara-natsumi .chara-img img{
		margin-left: -30px;
	}
	.chara #chara-koyukimura .chara-img img{
		margin-left: -30px;
	}
	.chara #chara-nanana .chara-img img{
		margin-left: -94px;
	}
	.chara #chara-izumi .chara-img img{
		margin-left: -30px;
	}
	.chara .chara-data .chara-name{
		background: url(../img/bg-chara-name_pc.png) right top no-repeat #3ca5e0;
		background-size: auto;
		position: relative;
	}
	.chara .chara-data .chara-name .inner{
		width:980px;
		margin:0 auto;
		position: relative;
		padding: 15px 0 15px 365px;
		display: table;
	}
	.chara #chara-francesca .chara-name .inner{
		padding: 15px 0 15px 310px;
	}
	.chara .chara-data .chara-name h3{
		display: table-cell;
	}
	.chara .chara-data .chara-name img{
		height: 45px;
	}
	.chara .chara-data .chara-name h3:after{
		content: attr(name_en_text)"";
		display: inline-block;
		color: #fff;
		padding: 5px 0 0 15px;
		font-size: 100%;
		vertical-align: bottom;
	}
	.chara .chara-data .chara-name .chara-cv{
		position: relative;
		color: #fff;
		font-weight: bold;
		display: table-cell;
		vertical-align: bottom;
		margin-left: 90px;
		font-size: 118.75%;
		text-align: right;
	}
	.chara .chara-data .chara-name .chara-voice{
		position: relative;
		display: table-cell;
		vertical-align: bottom;
		text-align: right;
		padding-left: 10px;
	}
	.chara .chara-data .chara-name .chara-voice a{
		display: block;
		background:url(../img/btn-voice_pc.svg) right top no-repeat;
		background-size: 100% 100%;
		width:40px;
		height:40px;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		margin-bottom:-5px;
		cursor: pointer;
	}
	.chara .chara-data .chara-name .chara-voice.active{
		animation: voiceBtnAnime 0.5s ease infinite alternate;
		-webkit-animation: voiceBtnAnime 0.5s ease infinite alternate;
	}
	.chara .chara-data .chara-name .chara-voice.active a{
		background:url(../img/btn-voice_sp.svg) right top no-repeat;
		background-size: 100% 100%;
	}
	@keyframes voiceBtnAnime {
		0% {
			transform:scale(1);
		}
		100% {
			transform:scale(1.2);
		}
	}
	@-webkit-keyframes pvoiceBtnAnime {
		0% {
			transform:scale(1);
		}
		100% {
			transform:scale(1.2);
		}
	}
	.chara .chara-data .chara-name .chara-voice a:hover{
		transform: scale(1.3);
	}
	.chara .chara-data .chara-name .chara-voice a span{
		display: none;
	}
	.chara .chara-data .chara-ss{
		width:980px;
		margin:0 auto;
		position: relative;
		min-height: 215px;
	}
	.chara .chara-data .chara-ss ul{
		position: absolute;
		top:20px;
		right:0;
		width:630px;
		display: table;
	}
	.chara .chara-data .chara-ss ul li{
		padding:0 0 0 15px;
		display: table-cell;
	}
	.chara .chara-data .chara-ss ul li a{
		position: relative;
		display: block;
		border: 3px solid #fff;
		box-shadow: 0 0 0 3px #ff810b;
		-webkit-box-shadow: 0 0 0 3px #ff810b;
		border-radius: 5px;
		overflow: hidden;
	}
	.chara .chara-data .chara-ss ul li a:after {
		content: "";
		position: absolute;
		right: 5px;
		bottom: 5px;
		display: block;
		width: 25px;
		height: 25px;
		background: url(../img/app_ss_expansion_icon.png) no-repeat;
		background-size: 100% auto;
	}
	.chara .chara-data .chara-ss ul li a:hover img{
		transform: scale(1.3);
	}
	.chara .chara-data .chara-ss ul li a img{
		width:100%;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	}
	.chara .chara-data .chara-detail{
		width:980px;
		margin:0 auto;
		position: relative;
	}
	.chara .chara-data .chara-detail .chara-profile{
		position: absolute;
		right:0;
		top:0;
		background: url(../img/bg-profile-twinkle.png) right bottom no-repeat #e6e6e6;
		box-shadow: 0 0 0 3px #ff810b;
		-webkit-box-shadow: 0 0 0 3px #ff810b;
		border: 3px solid #fff;
		padding: 0 0 40px;
		font-size: 87.5%;
		width: 615px;
		border-radius: 5px;
	}
	.chara .chara-data .chara-detail .chara-profile .catch{
		background: url(../img/bg-profile-catch.png) repeat;
		background-size: 100% 100%;
		width: 647px;
		padding: 15px 25px 15px 20px;
		position: relative;
		font-weight: bold;
		color: #fff;
		font-size: 143.75%;
		line-height: 1.3;
		text-shadow: #a05a00 1px 1px 0px, #a05a00 -1px 1px 0px, #a05a00 1px -1px 0px, #a05a00 -1px -1px 0px;
		margin: 10px 0 0 -40px;
	}
	.chara .chara-data .chara-detail .chara-profile .detail{
		background: #fff;
		border: 2px solid #b0b2cd;
		padding: 10px;
		margin: 10px;
		border-radius: 5px;
	}
	.chara .chara-data .chara-detail .chara-profile .profile{
		padding:0 10px;
		width: 70%;
	}
	.chara .chara-data .chara-detail .chara-profile .profile dl {
		display: table;
		border-collapse: separate;
		border-spacing: 5px 3px;
		width: 100%;
		margin: 0 auto;
	}
	.chara .chara-data .chara-detail .chara-profile .profile dt {
		display: table-cell;
		width: 72px;
		padding: 2px 5px;
		text-align: center;
		background: #ff810b;
		border-radius: 5px;
		color: #fff;
	}
	.chara .chara-data .chara-detail .chara-profile .profile li dd {
		display: table-cell;
		text-align: left;
		padding: 0 0 0 12px;
		background: #fff;
		border-radius: 5px;
	}
	.chara .chara-data .chara-detail .chara-sd-img{
		position: absolute;
		right:25px;
		bottom:15px;
	}
}
/* chara slide arrow */
.chara .fp-controlArrow{
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	margin-top: 100%;
}
.chara .fp-controlArrow.fp-prev {
	left: 8px;
	background:url(../img/arrow-l.png) no-repeat;
	background-size:100% auto;
	width:30px;
	height:58px;
}
.chara .fp-controlArrow.fp-next {
	right: 8px;
	background:url(../img/arrow-r.png) no-repeat;
	background-size:100% auto;
	width:30px;
	height:58px;
}
.chara .fp-controlArrow.fp-prev:hover {
	transform:translate(-10px,0);
}
.chara .fp-controlArrow.fp-next:hover {
	transform:translate(10px,0);
}
@media only screen and (min-width: 768px){
	.chara .fp-controlArrow{
		margin-top: 150px;
	}
	.chara .fp-controlArrow.fp-prev {
		left: 15px;
		width:39px;
		height:58px;
	}
	.chara .fp-controlArrow.fp-next {
		right: 15px;
		width:39px;
		height:58px;
	}
}
/*-- movie --*/
.movie .contents{
	padding-bottom: 110px;
}
.movie .contents .ttl-header{
	background:url(../img/bg-head-movie_sp.jpg) no-repeat;
	background-size:cover;
	background-position: center center;
}
.movie .contents .movie-list h3 {
	background: url(../img/ttl-bg-ribon.png) no-repeat;
	background-size: 100% 100%;
	font-size: 100%;
	color: #fff;
	padding: 8px 25px 8px 10px;
	font-weight: bold;
	margin-bottom: 15px;
	max-width: 595px;
}
.movie .contents .movie-list{
	padding:10px;
	margin:10px 0;
}
.movie .contents .movie-list li{
	padding-bottom:20px;
	position: relative;
}
.movie .contents .movie-list li.new:before{
	content: 'NEW';
	display: block;
	position: absolute;
	top: -9px;
	left: -7px;
	background: #de0067;
	font-weight: bold;
	font-size: 68.75%;
	text-align: center;
	padding: 12px 10px;
	border-radius: 50px;
	z-index: 2;
	color: #fff;
}
.movie .contents .movie-list a{
	position: relative;
	background:#000;
	border-radius: 5px 5px 0 0;
	display: block;
	border:3px solid #fff;
	box-shadow:0 0 0 3px #ff810b;
	-webkit-box-shadow:0 0 0 3px #ff810b;
	overflow: hidden;
}
.movie .contents .movie-list a img{
	width:100%;
	opacity: 0.7;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.movie .contents .movie-list a:hover img{
	transform: scale(1.2);
}
.movie .contents .movie-list a:after {
	content: "";
	position: absolute;
	display: block;
	width: 20%;
	top: 35%;
	left: 40%;
	background: url(../img/movie-play-btn.svg) no-repeat;
	background-size: 100% auto;
	padding-top: 18%;
	opacity: 0.8;
}
.movie .contents .movie-list .movie-ttl{
	background: #ff810b;
	color: #fff;
	box-shadow: 0 0 0 3px #ff810b;
	-webkit-box-shadow: 0 0 0 3px #ff810b;
	padding: 5px;
	border-radius: 0 0 5px 5px;
	font-size:81.25%;
}
.movie .contents .movie-list .movie-ttl span{
	display: inline-block;
}
@media only screen and (min-width: 768px){
	.movie .contents{
		padding-bottom: 120px;
	}
	.movie .contents .movie-list h3 {
		padding: 14px 25px 13px 18px;
		margin-bottom: 22px;
	}
	.movie .contents .movie-list{
		max-width: 980px;
		margin: 30px auto;
		padding: 0;
	}
	.movie .contents .movie-list ul{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content:space-between;
		justify-content:space-between;
		-webkit-box-lines: multiple;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 974px;
		margin: 0 auto;
	}
	.movie .contents .movie-list ul li{
		width:49%;
	}
	.movie .contents .movie-list .movie-ttl{
		padding: 8px 10px 6px;
	}
}

/*-- device --*/
.device .contents{
	padding-bottom: 110px;
}
.device .contents .ttl-header{
	background:url(../img/bg-head-device_sp.jpg) no-repeat;
	background-size:cover;
}
.device .contents .ttl-header h2{
	font-size:125%;
	font-weight:bold;
}
.device .topic-wrap{
	padding:10px ;
	margin-bottom:30px;
	font-size: 81.25%;
}
.device .topic-wrap > div{
	width:100%;
	max-width:900px;
	margin:0 auto;
	background:rgba(255,255,255,0.7);
	padding: 10px;
	border-radius: 8px;
}
.device .topic-wrap h3{
	font-weight: bold;
	font-size: 112.5%;
	margin-bottom: 10px;
	background: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #3093da;
}
.device .topic-wrap h4 {
	font-weight: bold;
	background: #ddf3ff;
	border-radius: 5px;
	margin-bottom: 5px;
	padding: 5px;
}
.device .topic-inner{
	margin:10px 0 20px;
}
.device .topic-inner dl{
	margin-bottom:1em;
}
.device .topic-inner dl.list dt{
	font-weight: bold;
}
.device .topic-inner dl.list dd{
	padding-left:1.2em;
}
.device .device-tbl{
	margin:20px auto;
	width:100%;
}
.device .device-tbl,
.device .device-tbl th,
.device .device-tbl td{
	border-collapse: collapse;
	border: 1px solid #ccc;
	background: #fff;
}
.device .device-tbl th {
	padding: 5px;
	font-weight: bold;
	vertical-align: top;
	background: #3f3f3f;
	color: #ffffff;
}
.device .device-tbl td {
	padding: 5px;
	vertical-align: top;
}
.device ul.note {
	margin-bottom: 10px;
}
.device ul.note > li{
	position: relative;
	padding-left: 1.2em;
}
.device ul.note > li.em {
	color:#dc0000;
}
.device ul.note > li:after{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.device ul.note.dot > li{
	padding-left: 1em;
}
.device ul.note.dot > li:after{
	content: '･';
}
.device ul.note.note-plus {
	margin-top: 2em;
}
.device ul.note.note-in_repay {
	margin: 0;
}
.device ol > li{
	position: relative;
	padding-left: 1.2em;
	counter-increment: num;
}
.device ol > li:after{
	content: counter(num, decimal) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.device .topic-inner.vr ul{
	padding-left:1.2em;
}
.device .device_info {
	margin: 15px 0;
	border: 1px solid #fff;
	padding: 15px;
	background: rgba(101, 148, 206, 0.2);
}
.device .device_info span{
	font-weight: bold;
    font-size: 106.25%;
}
@media only screen and (min-width: 768px){
	.device .topic-wrap {
		padding: 30px 10px;
	}
	.device .topic-wrap > div{
		padding:20px;
	}
	.device .device-tbl{
		width:80%;
	}
}

/*-- app_info --*/
.app_info .topic-wrap{
	padding-bottom: 90px;
}
.app_info .topic-wrap h5 {
	font-weight: bold;
	border-bottom: 1px solid #6b6b6b;
	padding: 5px;
	margin: 5px;
}
.app_info.device .contents .ttl-header{
	background:url(../img/bg-head-app_info_sp.jpg) no-repeat;
	background-size:cover;
}
.app_info .topic-wrap .topic-content {
	display: flex;
	-webkit-box-orient: vertical;
	flex-direction: column;
}
.app_info .topic-wrap > div {
	/*device clear*/
	background: none;
	padding: 0;
	border-radius: 0;
}
.app_info .topic-wrap .info-wrap {
	margin: 0 0 20px;
	background:#fff;
	padding: 10px;
	border-radius: 8px;
	flex: 1 1 auto;
}
.app_info .topic-wrap .info-wrap .lead {
	margin-bottom: 1em;
}
.app_info .topic-wrap .info-wrap .topic-inner {
	padding-top:60px;
	margin-top: -60px;
}
.app_info .topic-wrap .info-wrap a{
	color: #05a0f3;
	text-decoration: underline;
	transition: color 0.3s;
}
.app_info .topic-wrap .info-wrap a:hover{
	color: #05d2f3;
}
.app_info .topic-wrap .info-wrap h3{
	background: #05a0f3;
	color:#fff;
}
.app_info .topic-wrap .info-wrap h3 dt.topic-icon{
	display: inline-block;
	background: #d6d6d6;
	color: #000;
	padding: 2px 5px;
	font-size: 75%;
	line-height: 1.2;
	margin-right: 3px;
	text-align: center;
}
.app_info .topic-wrap .info-wrap h3 dt.topic-icon.important{
	background: #ff5730;
	color: #fff;
}
.app_info .topic-wrap .info-wrap h3 dd.topic-date{
	display: inline-block;
	font-size: 75%;
	margin-left: 5px;
}
.app_info .topic-wrap .info-wrap h3 dd.topic-title{
	margin-top: 5px;
}
.app_info .topic-wrap .info-wrap p,
.app_info .topic-wrap .info-wrap ul{
	padding: 5px;
}
.app_info .topic-wrap .info-wrap p.sample_img{
	text-align: center;
}
.app_info .topic-wrap .info-wrap p.sample_img img{
	width: 100%;
	border-radius: 10px;
}
.app_info .topic-wrap .info-wrap .cardlist{
	padding: 10px;
}
.app_info .topic-wrap .info-wrap .cardlist span{
	font-weight: bold;
}
.app_info .topic-wrap .info-menu .info-menu-inner {
	background:#fff;
	border-radius: 8px;
}
.app_info .topic-wrap .info-menu .info-menu-ttl {
	padding: 10px;
	background: #05a0f3;
	color: #fff;
	border-radius: 8px 8px 0 0;
	text-align: center;
	font-weight: bold;
}
.app_info .topic-wrap .info-menu .info-tab li + li {
	border-top: 1px solid #ccc;
}
.app_info .topic-wrap .info-menu .info-tab a {
	display: block;
	padding: 10px;
	color:#444;
}
.app_info .topic-wrap .info-menu .info-tab li.current a{
	background: #fff7c1;
}
.app_info .topic-wrap .info-menu .info-tab li:last-child.current a{
	border-radius: 0 0 8px 8px;
}
.app_info .topic-wrap .info-menu .info-tab dt.topic-icon{
	display: inline-block;
	background: #7b7b7b;
	color: #fff;
	padding: 2px 5px;
	font-size: 75%;
	line-height: 1.2;
	margin-right: 3px;
	min-width: 5em;
	text-align: center;
}
.app_info .topic-wrap .info-menu .info-tab .important dt.topic-icon{
	background: #ff5730;
	color:#fff;
}
.app_info .topic-wrap .info-menu .info-tab dd.topic-date{
	display: inline-block;
	font-size: 87.5%;
}
.app_info .topic-wrap .info-menu .info-tab dd .new_icon{
	display: inline-block;
	background: #f3ab05;
	color: #ffffff;
	font-size: 9px;
	line-height: 1.5;
	padding: 0 3px;
	margin: 0 0 0 5px;
	border-radius: 4px;
}
.app_info .topic-wrap .info-menu .info-tab dd.topic-title span{
	font-size: 10px;
}
.app_info .topic-wrap .info-menu .info-tab a:hover dd.topic-title {
	color: #00a6e7;
	transition: all 0.3s;
}
.app_info .info-update {
	margin-bottom: 1em;
	border: 1px solid #ff5730;
}
.app_info .info-update dl{
	margin: 0;
}
.app_info .info-update dt{
	display: inline;
	font-weight: bold;
	color: #ff5730;
	margin-right: 5px;
}
.app_info .info-update dd{
	display: inline;
}
.app_info .info-update dd > ul {
	margin: 0;
	padding: 0;
}
.app_info .app_info-tbl{
	width: 100%;
	margin: 15px auto;
	border-collapse: collapse;
}
.app_info .app_info-tbl,
.app_info .app_info-tbl th,
.app_info .app_info-tbl td{
	border: 1px solid #ccc;
	background: #fff;
}
.app_info .app_info-tbl th {
	padding: 8px;
	font-weight: bold;
	vertical-align: top;
	background: #efefef;
}
.app_info .app_info-tbl .headline {
	text-align: center;
}
.app_info .app_info-tbl td {
	padding: 8px;
	vertical-align: top;
}
.app_info .app_info-tbl.tbl_type1 th{
	text-align: center;
	background: #6b6b6b;
	color: #fff;
}
.app_info .app_info-tbl.tbl_type1 span.bl{
	display: inline-block;
}
.app_info .app_info-tbl.tbl_type1 td:first-child{
	background: #f6ffe9;
	text-align: center;
}
.app_info .app_info-tbl.tbl_type1 td.none{
	text-align: center;
	background: #f3f3f3;
	vertical-align: middle;
}
.app_info .app_info-tbl ul.note {
	margin-bottom: 0;
}
.app_info .app_info-tbl + .note {
	margin-top: -10px;
}
.app_info .topic-wrap .info-dl {
	margin-bottom: 10px;
	padding: 5px;
}
.app_info .topic-wrap .info-dl dt{
	font-weight: bold;
}
.app_info .topic-wrap .info-dl dd {
	padding: 0 0 0 10px;
}
.app_info .topic-wrap .info-dl dd.info-dl-detail{
	margin-top: 1.2em;
}
.app_info .backup_flow > li p{
	font-weight: bold;
}
.app_info .backup_flow > li + li {
	margin-top: 20px;
}
.app_info .backup_flow > li ul li{
	text-align: center;
	position: relative;
}
.app_info .backup_flow > li ul li+li::before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-top: 10px solid #05a0f3;
	border-left: 10px solid transparent;
	margin: 15px auto;
}
.app_info .backup_flow > li ul li img{
	width: 75%;
	border: 1px solid #ccc;
	max-width: 250px;
}
@media screen and (max-width: 767px) {
	.app_info .app_info-tbl{
		border: none;
		border-bottom: 1px solid #ccc;
	}
	.app_info .app_info-tbl tr.headline-tr{
		display: none;
	}
	.app_info .app_info-tbl td,
	.app_info .app_info-tbl th{
		display: block;
		width: 100%;
		border-bottom:none;
	}
	.app_info .app_info-tbl td{
		position: relative;
	}
	.app_info .app_info-tbl.tbl_type1 td:first-child {
		font-weight: bold;
	}
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2),
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3){
		padding: 0;
		display: table;
		font-size: 12px;
	}
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2).none,
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3).none{
		display: none;
	}
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2) span,
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3) span{
		padding: 5px;
		display: table-cell;
	}
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2)::before,
	.app_info .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3)::before{
		display: table-cell;
		width: 5em;
		padding: 5px;
		text-align: center;
		background: #e8e8e8;
	}
	/*「ver.2.0」の機能 table */
	#about2 .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2)::before{
		content: "継続される仕様";
	}
	#about2 .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3)::before{
		content: "変更される仕様";
	}
	#about3 .app_info-tbl.tbl_type1.tbl_sp td:nth-child(2)::before{
		content: "継続されるもの";
	}
	#about3 .app_info-tbl.tbl_type1.tbl_sp td:nth-child(3)::before{
		content: "データ継承時に変換または削除されるもの";
	}
	/*「ver.2.0」の機能 table */
	.tbl_type1.tbl_sp_s td:nth-child(2){
		font-size: 12px;
	}
}
@media screen and (min-width: 768px) {
	.app_info .topic-wrap{
		padding-bottom: 110px;
	}
	.app_info.device .contents .ttl-header{
		background:url(../img/bg-head-app_info_pc.jpg) no-repeat;
		background-size:cover;
		background-position: center top;
	}
	.app_info .topic-wrap .topic-content {
		max-width: 980px;
		margin: 0 auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
		-webkit-box-align: stretch;
		align-items: stretch;
	}
	.app_info .topic-wrap .info-menu{
		order: 1;
		margin: 0 20px 0 0;
		flex:0 0 225px;
	}
	.app_info .topic-wrap .info-wrap {
		order: 2;
		margin: 0;
		padding: 15px;
	}
	.app_info .topic-wrap h4 {
		padding: 5px 10px;
	}
	.app_info .topic-wrap h4:nth-child(n+2) {
		margin-top: 20px;
	}
	.app_info .topic-wrap .info-wrap .cardlist{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
	}
	.app_info .topic-wrap .info-wrap .cardlist p{
		flex: 0 0 50%;
	}
	.app_info .app_info-tbl th.th_shop1 {
		width: 22%;
	}
	.app_info .topic-wrap .info-wrap .info-update > ul{
		padding: 8px;
	}
	.app_info .info-update dl{
		display: -webkit-box;
		display: flex;
	}
	.app_info .info-update dt{
		flex: 0 0 75px;
		text-align: center;
	}
	.app_info .info-update dd {
		border-left: 1px solid #bbbbbb;
		padding-left: 10px;
		flex:1;
	}
	.app_info .info-update dl + dl{
		margin-top: 10px;
	}
	.app_info .backup_flow > li ul{
		display: -webkit-box;
		display: flex;
	}
	.app_info .backup_flow > li ul li {
		flex: 0 0 33%;
	}
	.app_info .backup_flow > li ul li img {
		width: 80%;
	}
	.app_info .backup_flow > li ul li+li::before {
		border-right: 10px solid transparent;
		border-top: 10px solid transparent;
		border-left: 10px solid #05a0f3;
		border-bottom: 10px solid transparent;
		margin: 0;
		position: absolute;
		top: 45%;
		left: -5px;
	}
}

/*-- introduction --*/
.introduction .contents{
	padding-bottom: 110px;
}
.introduction .contents .topic-wrap{
	background:url(../img/bg-note-blue.png),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-d-b.svg),url(../img/bg-hex-s-b.svg);
	background-size:590px auto,320px auto,290px auto,390px auto;
	background-repeat:repeat,no-repeat,no-repeat,no-repeat;
	background-position:left top,left 50px bottom -150px,right 50px bottom 50px,left -50px top -100px;
	position: relative;
	overflow: hidden;
	padding:10px 10px 80px;
	z-index: 1;
}
.introduction .contents .topic-wrap::before {
	content: "";
	display: block;
	height: 50px;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);

}
.introduction .contents .ttl-header{
	background:url(../img/bg-head-introduction_sp.jpg) no-repeat;
	background-size:cover;
	background-position: center bottom;
}
.introduction .introduction-img{
	max-width: 980px;
	margin: 0 auto;
}
.introduction .introduction-img span{
	display: block;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}
.introduction .introduction-img .sp-view span:nth-child(1){
	background-image:url(../img/introduction1_sp.png?v1);
	padding-top: 99.218%;
}
.introduction .introduction-img .sp-view span:nth-child(2){
	background-image:url(../img/introduction2_sp.png);
	padding-top: 90.781%;
}
.introduction .introduction-img .sp-view span:nth-child(3){
	background-image:url(../img/introduction3_sp.png);
	padding-top: 84.531%;
}
.introduction .introduction-img .sp-view span:nth-child(4){
	background-image:url(../img/introduction4_sp.png);
	padding-top: 17.031%;
}

@media screen and (min-width: 768px) {
	.introduction .contents .ttl-header{
		background:url(../img/bg-head-introduction_pc.jpg) no-repeat;
		background-position: center top;
		background-size: 100% auto;
	}
	.introduction .introduction-img .pc-view span:nth-child(1){
		background-image:url(../img/introduction1_pc.png);
		padding-top: 69.693%;
	}
	.introduction .introduction-img .pc-view span:nth-child(2){
		background-image:url(../img/introduction2_pc.png);
		padding-top: 79.897%;
	}
}

/*-- share --*/
.sns-area ol{
	margin: 20px 0;
	text-align: center;
}
.sns-area ol li{
	display: inline-block;
}
.sns-area ol li a{
	display: inline-block;
	margin: 0 7px;
}
.sns-area ol li a:hover{
	opacity: 0.6;
}
.sns-area ol li a img{
	width: 33px;
	height: 33px;
}
@media screen and (min-width: 768px) {
	.sns-area li.line{
		display: none;
	}
}
/*-- footer --*/
footer{
	position: relative;
	overflow: hidden;
}
footer.page-footer{
	margin-top: -130px;
}
.chara footer.page-footer{
	position: absolute;
	z-index: 10;
	bottom: 0;
	width: 100%;
}
footer ul{
	text-align: center;
	font-size: 62.5%;
}
footer ul li{
	display: inline-block;
}
footer ul li a:hover{
	text-decoration: underline;
}
footer ul li a:after{
	content: "|";
	display: inline-block;
	padding: 0 10px;
}
footer ul li:last-child a:after{
	content: "";
}
footer p{
	margin: 5px 0 25px;
	font-size: 62.5%;
	line-height: 1.4;
	color: #959595;
	text-align: center;
}
footer p span{
	display: inline-block;
}
.index footer p,
.index footer a{
	color:#fff;
}
.footer-note{
	font-size: 68.75%;
	text-align: center;
	margin-bottom:15px;
}
/*-- popup fullpanel --*/
#page-cover{
	display:none;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	background-color:rgba(0,0,0,0.9);
	z-index: 9998;
}
#popup{
	display:none;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	z-index: 9999;
}
#popup .youtube-popup {
	box-sizing: border-box;
	padding: 10px 10px 20px;
}
#popup .youtube-popup .close {
	padding: 7px 0;
	text-align: right;
}
#popup .youtube-popup .close a {
	font-size: 87.5%;
	color: #fff;
}
#popup .youtube-popup .close a span {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 24px;
	height: 24px;
	margin: 0 0 0 4px;
	border-radius: 3px;
	background: #fff;
	vertical-align: middle;
}
#popup .youtube-popup .close a span:after,
#popup .youtube-popup .close a span:before {
	display:inline-block;
	position: absolute;
	left: 0;
	right:0;
	top:0;
	bottom:0;
	width:20px;
	height:1px;
	content:"";
	margin: auto;
	background: #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#popup .youtube-popup .close a span:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#popup .youtube-popup .inner {
	position: relative;
	overflow: hidden;
	padding-top: 55.6%;
	height: 0;
	background: #000;
}
#popup .youtube-popup iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media only screen and (min-width: 768px) {
	#popup {
		left:50%;
		max-width:700px;
		margin-left:-350px;
	}
}
@media only screen and (min-width: 980px) {
	#popup {
		max-width:940px;
		margin-left:-470px;
	}
}
#fullpanel{
	display:none;
	background:#fff;
	z-index:100;
}
/* Popup、Fullpanel common */
#popup .detail-inner{
}
#popup .detail-inner .ttl,
#fullpanel .detail-inner .ttl{
	padding:15px;
	background:#13408c;
	color:#fff;
}
#popup .detail-inner .ttl{
	display:block;
}
@media only screen and (min-width: 768px) {
	#popup .detail-inner .ttl{
		display:none;
	}
}
#fullpanel .detail-inner .ttl{
	position:relative;
	font-size: 87.5%;
}
#fullpanel .detail-inner p.close{
	position: absolute;
	width: 25px;
	height: 25px;
	top: 15px;
	right: 15px;
}
#fullpanel .detail-inner .close a {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
}
#fullpanel .detail-inner .close a:after,
#fullpanel .detail-inner .close a:before {
	margin: -5px 0 0 0;
	display:block;
	position: absolute;
	right:0;
	top:50%;
	width:24px;
	height:3px;
	content:"";
	background: #FFF;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#fullpanel .detail-inner .close a:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#popup .detail-inner .main,
#fullpanel .detail-inner .main {
	min-height:160px;
	padding:15px 15px 0;
}
#popup .detail-inner .btn-area,
#fullpanel .detail-inner .btn-area {
	padding:15px;
	text-align:center;
}
#popup .detail-inner .btn-area p.btn,
#fullpanel .detail-inner .btn-area p.btn{
	display:inline-block;
}
#popup .detail-inner .btn-area p.btn a,
#fullpanel .detail-inner .btn-area p.btn a{
	background: #13408c;
	padding: 5px 15px 5px 36px;
	color: #fff;
	position: relative;
	font-size: 85%;
	border-radius: 5px;
}
#popup .detail-inner .btn-area p.btn a:hover,
#fullpanel .detail-inner .btn-area p.btn a:hover{
	background: #779dbc;
}
#popup .detail-inner .btn-area p.btn a:after,
#popup .detail-inner .btn-area p.btn a:before,
#fullpanel .detail-inner .btn-area p.btn a:after,
#fullpanel .detail-inner .btn-area p.btn a:before {
	margin: -5px 0 0 0;
	display:block;
	position: absolute;
	left: 8px;
	top: 16px;
	width: 18px;
	height: 2px;
	content: "";
	background: #FFF;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#popup .detail-inner .btn-area p.btn a:before,
#fullpanel .detail-inner .btn-area p.btn a:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*-- popup news common --*/
.popup-news {
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),#82ccf8;
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),-webkit-linear-gradient(top,#82ccf8 0%,#e1f3fd 100%);
	background: url(../img/bg-note-w.png),url(../img/bg-hex-d.svg),url(../img/bg-hex-d.svg),url(../img/bg-hex-s.svg),url(../img/bg-hex-s.svg),linear-gradient(to bottom,#82ccf8 0%,#e1f3fd 100%);
	background-size: 590px auto,240px auto,240px auto,390px auto,400px auto,auto;
	background-position: center bottom,left -20px top 10px,right bottom 40px,left 50px bottom 90px,right -20px top -40px,center top;
	background-repeat: repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
	width: 100%;
	margin: 0 auto;
	animation: popupAnime 1s ease 1;
	-webkit-animation: popupAnime 1s ease 1;
}
@keyframes popupAnime {
	0% {
		opacity: 0;
		transform:translate(0,30px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
@-webkit-keyframes popupAnime {
	0% {
		opacity: 0;
		transform:translate(0,30px);
	}
	100% {
		opacity: 1;
		transform:translate(0,0);
	}
}
.popup-news .popup-wrap {
	padding: 8px;
	background: url(../img/school-badge.png) no-repeat center top 50%;
	background-size: auto 60%;
	position: relative;
}
.popup-news .popup-inner{
	border-radius: 10px;
	background:rgba(255,255,255,0.5);
	padding:10px;
}
.popup-news .popup-ttl{
	border-radius: 8px;
	background: #fff;
	padding: 10px;
	border: 2px solid #779dbc;
	box-shadow: 0 0 0 2px #13408c;
	-webkit-box-shadow: 0 0 0 2px #13408c;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}
.popup-news .popup-ttl span{
	display: inline-block;
}
.popup-news .popup-topic {
	margin-bottom:10px;
}
.popup-news .popup-topic .ttl-sub{
	background:#fff;
	padding:5px 10px;
	border:2px solid #a9b9c2;
	font-size:87.5%;
	font-weight: bold;
	border-radius: 8px;
}
.popup-news .popup-topic .popup-topic-inner{
	padding:5px;
	margin-bottom:10px;
}
.popup-news .popup-topic p.lead{
	font-size:87.5%;
	line-height: 1.6;
	margin-bottom:10px;
}
.popup-news .popup-topic p.note{
	margin-top:10px;
	font-size:75%;
}
.popup-news .popup-topic .detail-list{
	font-size:85%;
	line-height: 1.6;
	width:100%;
}
.popup-news .popup-topic .detail-list dt {
	clear: left;
	float: left;
	width: 20%;
	position: relative;
}
.popup-news .popup-topic .detail-list dt:after {
	content:'：';
	position: absolute;
	right: 6px;
}
.popup-news .popup-topic .detail-list dd {
	margin: 0 0 0 20%;
}
@media only screen and (min-width: 768px) {
	.popup-news {
		border-radius: 10px;
		border:3px solid #fff;
	}
	.popup-news .popup-wrap {
		padding:30px 30px 10px 30px;
	}
	.popup-news .popup-inner{
		padding: 15px;
	}
	.popup-news .popup-topic .popup-topic-inner {
		padding: 10px;
	}
	.popup-news .popup-topic .detail{
		display:table;
		width: 100%;
	}
	.popup-news .popup-topic .detail > div{
		display:table-cell;
		vertical-align: top;
	}
	.popup .btn-area {
		padding: 0 0 10px;
	}
}
/* tgs */
#tgs-info .popup-topic .photo-list{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content:		 center;
	margin-top:10px;
}
#tgs-info .popup-topic.stage .photo-list li{
	padding:5px;
}
#tgs-info .popup-topic.stage .photo-list li img{
	width:100%;
}
#tgs-info .popup-topic.cd .detail > div:last-child{
	width:60%;
	margin:0 auto;
	padding:5px;
}
#tgs-info .popup-topic.cd .detail > div:last-child img{
	width:100%;
}
@media only screen and (min-width: 768px) {
	#tgs-info .popup-topic.stage .detail > div:first-child{
		width:48%;
	}
	#tgs-info .popup-topic .photo-list{
		-webkit-justify-content: flex-end;
		justify-content:flex-end;
		margin-top:0;
	}
	#tgs-info .popup-topic.stage .photo-list li{
		padding:0 0 0 10px;
	}
	#tgs-info .popup-topic.cd .detail > div:last-child{
		width:22%;
		padding:0 0 0 10px;
	}
}
/* cd present */
#cdpresent-info .shop-list{
	margin-bottom:15px;
}
#cdpresent-info table.list{
	border-collapse: collapse;
	text-align: left;
	background: #fff;
	font-size: 81.25%;
	margin: 10px auto;
	width:100%;
}
#cdpresent-info table.list th {
	padding: 5px 10px;
	font-weight: bold;
	vertical-align: top;
	border: 1px solid #ccc;
	background: #009bdd;
	color: #fff;
}
#cdpresent-info table.list td {
	padding: 5px 10px;
	vertical-align: top;
	border: 1px solid #ccc;
}
@media only screen and (min-width: 768px) {
	#cdpresent-info .shop-list{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content:center;
	}
	#cdpresent-info table.list{
		margin: 0 10px;
		width: 35%;
	}
}

/*-- light box --*/
/* Preload images */
body:after {
	content: url(../img/ligthbox_close.svg) url(../img/ligthbox_loading.gif) url(../img/ligthbox_prev.png) url(../img/ligthbox_next.png);
	display: none;
}
.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	opacity: 0.8;
	display: none;
}
.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}
.lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	border-radius: 3px;
}
.lightbox a img {
	border: none;
}
.lb-outerContainer {
	position: relative;
	background-color: white;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
}
.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-container {
	padding: 4px;
}
.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../img/ligthbox_loading.gif) no-repeat;
}
.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
.lb-container > .nav {
	left: 0;
}
.lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}
.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../img/ligthbox_prev.png) left 48% no-repeat;
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
	opacity: 1;
}
.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../img/ligthbox_next.png) right 48% no-repeat;
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
	opacity: 1;
}
.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
}
.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}
.lb-data {
	padding: 0 4px;
	color: #ccc;
}
.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}
.lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
}
.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
	opacity: 0;
}
.lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(../img/ligthbox_close.svg) top right no-repeat;
	text-align: right;
	outline: none;
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
	cursor: pointer;
	opacity: 1;
}


/* Arrows */
.slick-prev,
.slick-next
{
	font-size: 0;
	line-height: 0;

	position: absolute;
	top: 50%;

	display: block;

	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);

	cursor: pointer;

	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-prev:before,
.slick-next:before
{
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;

	opacity: .75;
	color: white;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
	left: -25px;
}
[dir='rtl'] .slick-prev
{
	right: -25px;
	left: auto;
}
.slick-prev:before
{
	content: 'â†';
}
[dir='rtl'] .slick-prev:before
{
	content: 'â†’';
}

.slick-next
{
	right: -25px;
}
[dir='rtl'] .slick-next
{
	right: auto;
	left: -25px;
}
.slick-next:before
{
	content: 'â†’';
}
[dir='rtl'] .slick-next:before
{
	content: 'â†';
}

/* Dots */
.slick-dotted.slick-slider
{
	margin-bottom: 30px;
}

.slick-dots
{
	position: absolute;
	bottom: -25px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.slick-dots li
{
	position: relative;

	display: inline-block;

	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;

	cursor: pointer;
}
.slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 20px;
	height: 20px;
	padding: 5px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-dots li button:before
{
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;

	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;

	content: 'â€¢';
	text-align: center;

	opacity: .25;
	color: black;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: .75;
	color: black;
}
