@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Double:wght@100..900&family=Shippori+Mincho&family=WindSong&display=swap');

/* CSS Document */

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

	root

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

:root {
	--main-color: #467F80;
	--sub-color: #3e3a39;
	--text-color: #000;
}

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

    .sr_only

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

.sr_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

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

	body

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

body {
	-webkit-text-size-adjust: 100%;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75em;
	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: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	display: grid;
	place-items: center;
}
.spinner {
	width: 100px;
	height: 100px;
	background: var(--main-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;
    background: rgba(255, 255, 255, .9);
    padding-bottom: 20px;
}
header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}
header nav .logo {
    width: 280px;
    position: fixed;
    top: 20px;
    left: 20px;
}
header nav .menu-left {
}
header nav .menu-left .transparent {
    display: none;
}
header nav .menu-left .sp_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    padding: 30px 30px 0 0;
}
header nav .menu-left .sp_nav li {
    margin-left: 1em;
}
header nav .menu-left .sp_nav li a {
    display: block;
    color: #000;
    line-height: 1em;
    text-decoration: none;
    font-size: 110%;
}
header nav .menu-left .sp_nav li a span {
    display: block;
    font-size: 60%;
    line-height: 1em;
    color: #467f80;
    padding: .5em 0 0 0;
}
header nav .nav-toggle {
    display: none;
}

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

	#app_intro

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

#app_intro {
	width: 100%;
	max-width: 1800px;
	height: 100vh;
	margin: 0 auto;
}

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

	#app_top

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

#app_top {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 80px 0 0 0;
}






