@charset "UTF-8";

/* CSS Document */

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

	body

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

body {
	font-size: 14px;
    line-height: 1.85em;
}

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

    loading

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

#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    transition: opacity .7s ease;
}
#loading.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading__phrases {
    position: relative;
    width: 100%;
    height: 1.4em;
    margin-bottom: 24px;
}
.loading__phrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(16px);
    opacity: 0;
    font-size: 9vw;
    letter-spacing: .05em;
    white-space: nowrap;
    color: var(--text-color);
    transition: opacity .6s ease, transform .6s ease;
}
.loading__phrase.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}
.loading__phrase.is-exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-16px);
}
.loading__phrase.is-final {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.loading__counter {
    position: absolute;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
    color: var(--text-color);
}
.loading__num {
    font-size: 200%;
    letter-spacing: .1em;
    transition: opacity .3s ease;
}
.loading__num::after {
    content: '%';
    font-size: 50%;
}

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

    #bg

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

#bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(/common/images/bg.webp);
    background-size: cover;
}
#bg .inner {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
#bg .inner img {
    width: 200px;
    opacity: .05;
}

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

	header

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

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px;
}
header nav .logo {
	width: 200px;
}
header nav .menu-left {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	z-index: var(--z-nav);
}
header nav .menu-left.collapse {
	max-height: 50em;
}
header nav .menu-left a {
	position: relative;
	text-decoration: none;
	display: block;
	color: #000;
	padding: 16px 20px;
    font-size: 150%;
    background: #fff;
    border-bottom: 1px solid var(--main-color);
}
header nav .menu-left li:last-child a {
    background: url(/common/images/icon_window_w.svg) var(--main-color) top 50% right 10px no-repeat;
    background-size: 20px;
    color: #fff;
}
header nav .nav-toggle {
	display: block;
	border-radius: 5px;
	height: 38px;
	width: 38px;
	padding: 8px;
	position: relative;
	z-index: 100;
    background: var(--main-color);
}
header nav .nav-toggle span {
	position: relative;
	display: block;
	height: 2px;
	width: 100%;
	margin-top: 4px;
	background-color: #fff;
	transition: all .25s;
}
header nav .nav-toggle.open span:first-child {
	transform: rotate(45deg) translate(4.4px, 4.4px);
}
header nav .nav-toggle.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}
header nav .nav-toggle.open span:last-child {
	transform: rotate(-45deg) translate(4.4px, -4.4px);
}

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

    icon_inst

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

#icon_inst {
    position: fixed;
    top: 14px;
    right: 64px;
    width: 38px;
    z-index: 100;
}

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

	#app_top

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

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

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

	footer

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

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
















































