@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.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: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	display: grid;
	place-items: center;
}
.spinner {
	width: 40px;
	height: 40px;
	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;
}
header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, .9);
}
header nav .logo {
    width: 200px;
    position: fixed;
    top: 14px;
    left: 10px;
    z-index: 20;
}
header nav .menu-left {
    list-style: none;
    padding-left: 0;
    margin: 0;
    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;
    display: block;
    z-index: 10;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
}
header nav .menu-left .transparent {
    height: 60px;
    width: 100%;
    display: block;
    background: #fff;
}
header nav .menu-left .sp_nav {
}
header nav .menu-left .sp_nav li {
    margin-left: 0;
    border-top: 1px solid #ccc;
}
header nav .menu-left .sp_nav li:last-child {
    border-bottom: 1px solid #ccc;
}
header nav .menu-left .sp_nav li a {
    display: block;
    padding: .5em 10px;
    background: #fff;
    text-decoration: none;
    color: #000;
}
header nav .menu-left .sp_nav li a span {
    font-size: 70%;
    color: #467f80;
    padding-left: 1em;
}
header nav .menu-left.collapse {
    max-height: 100em !important;
}
header .nav-toggle {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 8px 8px;
    z-index: 20;
}
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: #467f80;
    transition: all .25s;
}





