*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

body {
	font-family: 'Roboto', Avenir,  Helvetica, 'Noto Sans Japanese', 'メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
	color: #909090;
	background: #111;
}

a {
	text-decoration: none;
	color: #909090;
	outline: none;
	word-break: break-all;
}

a:hover,
a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
}


/* Icons */

.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}


/* Page Loader */

.js body::before {
	content: 'Loading...';
	font-family: 'Montserrat';
	letter-spacing: 0.2em;
	text-indent: -0.2em;
	text-transform: uppercase;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #facb7a;
	z-index: 1000;
	transition: transform 0.5s;
}

.js .loading::before {
	transform: translate3d(0,100%,0);
}

/* Header */

.head {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	padding: 1em;
	z-index: 100;
}

.title {
	font-size: 1.1em;
	font-weight: 600;
	margin: 0;
	padding: 0 1em 0 0.25em;
}

/* Demo links */

.demos {
	margin: 0 1em 0 auto;
}

.demo {
	margin: 0 1em 0.5em 0;
	padding: 0 0 0.25em;
	border-bottom: 2px solid transparent;
}

.demos .demo--current {
	border-color: currentColor;
}

/* Content */

.content {
	text-align: center;
}

.content--full {
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.flexy {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.flexy--center {
	justify-content: center;
}

.flexy--row {
	flex-direction: row;
}


/* Slideshow */

.slideshow {
	position: relative;
	width: 100%;
	height: calc(100vh - 5.5em);
}

.slide {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 0 1em 0;
}

.js .slide {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	margin: 0;
	opacity: 0;
}

.js .slide--current {
	opacity: 1;
}

.slide__title {
	font-weight: normal;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 10;
	font-size: 10vw;
	line-height: 0.8;
	font-family:'Arapey'
}

h2.slide__title {
	height: 10vw;
}

.click{
	display: block;
	position: absolute;
	top: 60%;
	width: 100%;
	z-index: 2000;
}

a.showf_1:hover {
	color: #d06690;
	font-weight: bold;
}

a.showf_2:hover {
	color: #9ccc65;
	font-weight: bold;
}

a.showf_3:hover {
	color: #4DBCE9;
	font-weight: bold;
}

.slide .mirror {
	position: absolute;
	top: 50%;
	width: 100%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}

.slideshow__nav {
	position: absolute;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:space-around;
	bottom: 0;
	width:100%;
	padding: 0 2em 0;
	overflow: hidden;
}

.slideshow__nav--inline {
	display: block;
	top: 30vh;
	left: 0;
	width: 100%;
}

.slideshow__nav--inline .btn {
	display: inline-block;
	margin: 0 1em;
}

.slideshow__nav--nopad {
	padding: 0;
}

.btn {
	position: relative;
	display: inline-block;
	padding: 0.7em 1.5em;
	border: 3px solid #333333;
	background: 0;
	background-color: #1a1a1a;
	text-align: center;
	text-decoration: none;
	outline: none;
	transition: all .2s;
	font-size: 1.2em;
	overflow: visible;
}

.btn::before,
.btn::after {
	position: absolute;
	z-index: 2;
	content: '';
	width: 0;
	height: 0;
	border: 3px solid transparent;
}
.btn::before {
	top: -3px;
	left: -3px;
	box-sizing: content-box;
}
.btn::after {
	bottom: -3px;
	right: -3px;
	box-sizing: content-box;
}

.btn:hover::before,
.btn:hover::after {
	width: 100%;
	height: 100%;
}

.btn:first-child:hover::before {
	border-bottom-color: #facb7a;
	border-left-color: #facb7a;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(2):hover::before {
	border-bottom-color: #d06690;
	border-left-color: #d06690;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(3):hover::before {
	border-bottom-color:#9ccc65;
	border-left-color: #9ccc65;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(4):hover::before {
	border-bottom-color:#4DBCE9;
	border-left-color: #4DBCE9;
	transition: height .3s, width .3s .3s;
}

.btn:first-child:hover::after {
	border-top-color: #facb7a;
	border-right-color: #facb7a;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(2):hover::after {
	border-top-color: #d06690;
	border-right-color: #d06690;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(3):hover::after {
	border-top-color:#9ccc65;
	border-right-color: #9ccc65;
	transition: height .3s, width .3s .3s;
}

.btn:nth-child(4):hover::after {
	border-top-color:#4DBCE9;
	border-right-color: #4DBCE9;
	transition: height .3s, width .3s .3s;
}

.link--sponsor {
	position: absolute;
	left: 0;
	margin: 0 0 2em 2em;
	bottom: 0;
}

.news{
	position: absolute;
	display: flex;
	z-index: 100;
	text-align: left;
	width: 45%;
	margin-left: 1em;
	background: rgba(255,255,255,0.1);
	text-transform: none;
	font-size: 1.000em;

}

.new_list{
	list-style-type: circle; 
	padding: 0.5 0 0 0.5em;
	opacity: 1;
	color:#b3b3b3;
}

.newest{
	text-align: left;
}

.page-title {
	position: absolute;
	text-align: center;
	width: 100%;
	padding: 0 1em;
	margin: 0;
	text-transform: none;
	color: #fff;
	z-index: 10;
	font-size: 1.1em;
	font-weight: bold;
    font-family: 'Montserrat';
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    top: 38vh;
}

.overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #A8A9C8 url(../img/bg.jpg);
	background-size: cover;
}

/* Themes */

.demo-1 .slide:first-child .slide__title,
.demo-1 .slideshow__nav  .btn:first-child  {
	color: #facb7a;
}

.demo-1 .slide:nth-child(2) .slide__title,
.demo-1 .slideshow__nav .btn:nth-child(2) {
	color: #d06690;
}

.demo-1 .slide:nth-child(3) .slide__title,
.demo-1 .slideshow__nav  .btn:nth-child(3) {
	color: #9ccc65;
}

.demo-1 .slide:nth-child(4) .slide__title,
.demo-1 .slideshow__nav .btn:nth-child(4){
	color: #4DBCE9;
}

@media screen and (max-width: 50em) {

	.demos {
		width: 100%;
		margin: 1em 0 0;		
	}
	
	.demo {
		border-bottom: none;
}

	.slideshow__nav {
		width: 100%;
		padding: 0;
		bottom: auto;
		top: 0;
		display: block;
	}

	.page-title {
		font-size: 0.5em;
	}
	
	.btn {
		width: 80%;
		padding: 0;
		display: inline-block;
		margin: 0.15em;
	}
	
	.btn--line::before {
		display: none;
	}
	
	
	.btn--current.btn--line::before {
		transform: none;
		display: block;
		top: auto;
		bottom: -0.5em;
		width: 100%;
	}
	
	.news{
		width: 90%;
		bottom: 1em;
		
	}
	
}