@charset "UTF-8";


/* ======== 共通部分 ======== */

html {
	font-size: 62.5%;/*1em=10px*/
}

body {
	/*font-size: 1.4em;基本14px*/
	font-family: "Noto Sans JP";
	color: #eee;
	background: #000;
}

p, td, th, dt, dd {
	font-family: "Noto Sans JP";
	line-height: 1.8em;
}

img {
	width: 100%;
	height: auto;
}

a {
	color: #eee;
	text-decoration: none;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

br.brA {/*Spのみ改行*/
	display: block;
}

br.brB {/*Pcのみ改行*/
	display: none;
}

@media screen and (min-width: 768px) {
	br.brA {
		display: none;
	}
	br.brB {
		display: block;
	}
}


/* ======== 背景 ======== */

#loadBody:before {
	content:"";
  	display:block;
  	position:fixed;
  	top:0;
  	left:0;
  	z-index:-200;
  	width:100%;
  	height:100vh;
	background: url(../images/bg_sp.jpg) center top no-repeat;
	background-size:cover;
}

@media screen and (min-width: 768px) {
	#loadBody:before {
		background: url(../images/bg_pc.jpg) center top no-repeat;
		background-size:cover;
	}
}


/* ======== ローディング ======== */

#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000;
	z-index: 1000;
}
#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-align: center;
	z-index: 2000;
}

.loadIcon {
	animation-name: scale;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
}

@keyframes scale {
	0% { transform: scale(1.0, 1.0); }
    50% { transform: scale(0.9, 0.9); }
    100% { transform: scale(1.0, 1.0); }
}


/* ======== 背景共通 ======== */

#bg {
    width: 100%;
	height: 100vh;
    position: relative;
}

.pattern {
	width: 100%;
	height: 100vh;
	background: url(../images/bg_pattern.png) repeat;
	background-size: 1px 4px;
	position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -50;
}


/* ======== 基本のボックス ======== */

.container {
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 980px;
}


/* ======== ヘッダー ======== */

#navPc {
	display: none;
	visibility: none;
}

#navSp {
	position: relative;
	z-index: 700;
}

#navSp header ul {
	text-align: center;
	margin-bottom: 60px;
}

#navSp header li {
	margin-top: 0.8em; 
	width: 100%;
}

#navSp header li img {
	height: 18px;
	width: auto;
}

#navSp header li.cs img {
	opacity: 0.2;
}

#navSp header li.logo {
	margin-top: 2em; 
}

#navSp header li.logo img {
	width: 50vw;
	height: auto;
}

#navSp header li.lang {
	margin-top: 2em;
}

#navSp header li.lang img {
	height: 21px;
	width: auto;
}

#navSp header li.langSl {
	margin-top: 1em; 
	color: #fff;
	font-size: 14px;
}

@media screen and (min-width: 768px) {
	#navSp {
		display: none;
		visibility: none;
	}
	#navPc {
		display: block;
		visibility: visible;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 500;
	}
	#navPc header {
		height: 45px;
		background: #000;
	}
	#navPc header ul {
		display: flex;
		justify-content: center;
	}
	#navPc header li {
		margin-top: 10px;
	}
	#navPc header li img {
		height: 25px;
		width: auto;
	}
	#navPc header li.cs img {
		opacity: 0.2;
	}
	#navPc header li.lang {
		margin-left: 30px;
	}
	#navPc header li.lang ul {
		display: block;
	}
	#navPc header li.lang li {
		margin-top: 0;
	}
}

/*言語アコーディオンメニュー*/
.langMenu {
    z-index: 500
}

.langMenu label {
    display: block;
}

.langMenu input {
    display: none;
}

.langMenu ul {
    margin: 8px 0 0;
    padding: 0;
    font-size: 1.4em;
    text-align: center;
    position: relative;
    right: 40px;
}

.langMenu li {
	padding: 0 18px;
    height: 0;
    overflow: hidden;
    line-height: 40px;
    transition: all 0.5s;
    background: #000;
}

#acd-menu:checked~.acd-list li {
    height: 40px;
}

.langMenu li a:hover {
	color: #ffaa00;
}


/* ======== 右下固定ボタン ======== */

p.btnDl {
	position: fixed;
	right: 20px;
	bottom: 100px;
	z-index: 500;
	animation-delay: 2.4s;
}

p.btnDl img {
	width: 100px;
	height: auto;
}

@media screen and (min-width: 768px) {
	p.btnDl {
		right: 20px;
		bottom: 40px;
		animation-delay: 3s;
	}
	p.btnDl img {
		width: 120px;
	}
}

p.btnDl img:hover {
	animation-name: scaleBn;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    opacity: 0.7;
}

@keyframes scaleBn {
	0% { transform: scale(1.0, 1.0); }
    100% { transform: scale(1.1, 1.1); }
}


/* ======== メイン ======== */

main {
	display: block;
	margin-top: 10px; 
	margin-bottom: 40px;
	position: relative;
}

main h1 img {
	width: 50%;
}

@media screen and (min-width: 768px) {
	main {
		margin-top: 45px;
		margin-bottom: 80px;
	}
	main h1 {
		display: none;
		visibility: hidden;
	}
}


/* ======== ダウンロード ======== */

#download {
	border-top: 5px solid rgba(255,255,255,0.8);
	border-bottom: 5px solid rgba(255,255,255,0.8);
	background: rgba(34,34,34,0.8);
}

#download .inner {
	padding: 20px;
	border-top: 5px solid rgba(0,0,0,0.8);
	border-bottom: 5px solid rgba(0,0,0,0.8);
}

@media screen and (min-width: 768px) {
	#download .inner {
		padding: 40px;
	}
}

#download h2 {
	text-align: center;
}

#download h2 img {
	width: 254px;
	height: auto;
}

#download ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#download li.first {
	width: 100%;
	text-align: center;
}

#download li img {
	margin: 20px 10px 0;
	width: auto;
	height: 45px;
}

@media screen and (min-width: 768px) {
	#download ul {
	}
	#download li.first {
		width: auto;
		text-align: left;
	}
	#download li img {
		margin: 40px 20px 0;
	}
}

#download li a:hover img {
	animation-name: scaleBn;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes scaleBn {
	0% { transform: scale(1.0, 1.0); }
    100% { transform: scale(1.1, 1.1); }
}


/* ======== フッター ======== */

footer {
}

footer #pagetop {
	border-bottom: 5px solid #2d2d2d;
}

footer #pagetop a {
	display: block;
	margin: 0 auto;
	text-align: center;;
	line-height: 0;
}

footer #pagetop a img {
	width: auto;
	height: 40px;
}

footer #footer {
	background: #000;
}

footer #footer .policy {
	padding: 15px;
	border-bottom: 1px solid #2d2d2d;
}

footer #footer .policy ul {
	margin-left: 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

footer #footer .policy li {
	margin: 0 0.5em;
}

footer #footer .policy li a {
	font-size: 1.2em;
	line-height: 1.8em;
}

footer #footer .policy li a:hover {
	color: #efc040;
}

footer #footer .bottom {
	padding: 15px 15px 20px;
}

footer #footer .inner {
	position: relative;
}

footer #footer .bottom p.logo {
	width: 74px;
	height: auto;
	line-height: 0;
}

@media screen and (min-width: 768px) {
	footer #footer .policy ul {
		margin-left: 0;
		justify-content: center;
}
	footer #footer .bottom {
		padding: 20px 40px;
	}
	footer #footer .bottom p.logo {
		width: 90px;
	}
}

footer #footer .bottom p.txt {
	margin-top: 1.4em; 
	color: #999;
	line-height: 1.4em;
}

footer #footer .share {
	position: absolute;
	right: 0;
	top: 0;
}

footer #footer .share ul {
	display: flex;
	justify-content: center;
}

footer #footer .share li {
	margin-left: 10px;
}

@media screen and (min-width: 768px) {
	footer #footer .share li {
		margin-left: 20px;
	}
}



