@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

* {
    display: none;
}
/* CSS Document */

/*====================================

	root

====================================*/

:root {
	--main-color: #f00;
	--sub-color: #0f0;
	--text-color: #333;
}

/*====================================

	body

====================================*/

body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.85em;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: var(--text-color);
}

/*====================================

	loading

====================================*/

#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background: var(--main-color);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	display: grid;
	place-items: center;
}
.spinner {
	width: 40px;
	height: 40px;
	background: var(--sub-color);
	border-radius: 100%;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	} 100% {
		transform: scale(1.0);
		opacity: 0;
	}
}
.loaded {
	opacity: 0;
	visibility: hidden;
}

/*====================================

	header

====================================*/  

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}
header nav .logo {
    float: left;
    border: 1px solid #f00;
    width: 100px;
}
header .nav_container {
    max-width: 100%;
    margin: 0 auto;
}
header .menu-left a:hover,
header .menu-left a :focus {
    color: black;
}
header .menu-left a {
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    transition: color .35s ease;
    text-decoration: none;
    color: rgba(34, 34, 34, 0.8);
}
header .menu-left a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .35s ease;
}
header .menu-left a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #000;
    transition: width .35s ease;
}
header .menu-left a:hover:before {
    width: 100%;
    background: #000;
    transition: width .35s ease;
}
header .menu-left a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
}
header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    clear: both;
}
header nav ul li {
    float: none;
    margin-left: 0;
    background: #eee;
    border: 1px solid #f00;
}
header nav ul li a {
    display: block;
}
header .menu-left {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
}
header .menu-left.collapse {
    max-height: 15em !important;
}
header .nav-toggle {
    display: block;
    border-radius: 5px;
    background-color: transparent;
    float: right;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 8px 8px;
}
header .nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4.4px, 4.4px);
}
header .nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
header .nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4.4px, -4.4px);
}
header .nav-toggle span {
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
    background-color: #000;
    transition: all .25s;
}

/*====================================

	#app_top

====================================*/

#app_top {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 0 0;
}

/*====================================

	footer

====================================*/

footer {
	background: #333;
	padding: 20px 12px;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
}

