@charset "UTF-8";

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

	body

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

body {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.85em;
}

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

	loading

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

#loading img {
	width: 400px;
}

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

    #logo

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

#logo {
    width: 100px;
    position: fixed;
    top: 20px;
    left: 20px;
}

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

	header

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

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    z-index: 3;
    left: calc(50% + 250px); /* 中央から右に300px = 中央エリアの右端 */
    top: 0;
}
header nav .nav_container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
header nav {
    height: 100vh;
    display: flex;
    justify-content: left;
    align-items: center;
}
header nav .menu-left {
    padding-left: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    float: right;
    max-height: none;
}
header nav .menu-left li {
    margin-bottom: 10px;
}
header nav .menu-left a {
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    transition: color .35s ease;
    display: block;
    text-decoration: none;
    color: #fff;
    line-height: 1em;
    font-size: 300%;
}
header nav .menu-left a:hover {
    background: var(--main-color);
}
header nav .nav-toggle {
	display: none;
}
@media screen and (max-width : 1100px) {
    header nav .menu-left a {
        font-size: 250%;
    }
}
@media screen and (max-width : 1000px) {
    header nav .menu-left a {
        font-size: 200%;
    }
}

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

	#app_top

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

#app_top {
	max-width: 1800px;
	width: 100%;
	margin: 0 auto;
}

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

	footer

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

footer {
}
footer img {
    width: 100%;
}
footer small {
    background: #000;
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 60%;
	display: block;
    padding: 10px 0;
}




