/* CSS Document */




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

	header

============================================================================*/
#header {
	position: fixed;
	top: 20px; bottom: 20px;
	left: 0;
	width: 20%;
	max-width: 300px;
	min-width: 260px;
	border-radius: 0 20px 20px 0;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-left: none;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
#header .inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}
#header h1 {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}



#header_logo {
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}



#header nav {
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}
#header nav ul {
	width: 105px;
}
#header nav ul li {
	margin: 10px 0;
}
#header nav ul li a {
	display: block;
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #111;
	transition: 0.2s ease-out;
}
#header nav ul li a:hover {
	color: var(--color-blue);
	padding-left: 10px;
}






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

	▼▽▼▽▼▽▼▽▼▽ここからSP用▼▽▼▽▼▽▼▽▼▽

============================================================================*/
@media screen and (max-width:640px) {
	
	
	
	


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

	header

============================================================================*/
header {
	display:none;
}

/*------------------------------ h1 ------------------------------*/
.ham_nav h1{
	position:relative;
	top: 0;
	width:100%;
	box-sizing: border-box;
	font-size: 10px;
	color: #000;
	line-height: 25px;
	height: 25px;
	background: rgba(255, 255, 255, 0.4);
	text-align: center;
	letter-spacing: 0;
}


/*------------------------------ ロゴ ------------------------------*/
#sp_header_logo {
	position: absolute;
	width:50%;
	max-width: 250px;
	padding-top: 13px;
	margin-left: 4%;
}
#sp_header_logo img {
	position: relative;
	width: 162px;
	z-index: 999;
}



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

	navi

============================================================================*/
nav{
	display:none;
}
.ham_nav {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:85px;
	background: #FFF;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	z-index: 9998;
}
.ham_nav dl{
}
.ham_nav dl dt {
	cursor:pointer;
}
.ham_nav dl dd {
	position: fixed;
	right: -100%;
	width: 100%;
	height: 100vh;
	min-height: 1500px;
	background: rgba(42, 177, 197, 0.3);
	transition: all 0.5s ease-in-out;
	z-index: 9999;
}
.ham_nav dl dd.active {
	right: 0%;
}
.ham_nav ul{
	position: fixed;
	right: -100%;
	width: 60%;
	min-width: 200px;
	height: 100vh;
	min-height: 1500px;
	padding-top: 70px;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.5s ease-in-out;
	z-index: 99999;
}
.ham_nav ul.active {
	right: 0%;
}
.ham_nav ul li {
	position: relative;
	line-height:3.0;
}
.ham_nav ul li a {
	position: relative;
	color:#222;
    font-size: 14px;
	letter-spacing: 1px;
	padding-left: 55px;
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
	display: flex;
    align-items: center;
    gap: 10px;
}
.ham_nav ul li a::before {
	position: sticky; content: "";
	background: url("../images/icon01.png");
	background-size: cover;
	width: 14px; height: 14px;
	top: 0; left: 0;
	display: block;
}
	
.ham_nav figure {
	width: 90px;
	margin: 0 auto 30px;
}
	
	

/*------------------------------ ハンバーガー ------------------------------*/
.ham_nav dt a {
    position: absolute;
    display: block;
    top:35px;
    right: 10px;
    width: 42px;
    height:42px;
    z-index: 9999999;
}
.ham_nav dt a span {
    position: absolute;
    display: block;
    left: 15px;
    width: 18px;
    height: 1px;
    background: #333;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
.ham_nav dt a span:first-child {
    top: 15px;
	width: 24px;
    left: 9px;
}
.ham_nav dt a span:nth-child(2) {
    top: 50%;
}
.ham_nav dt a span:last-child {
    bottom: 14px;
	transition-delay: .15s;
}
.ham_nav dt a.active span:first-child {
	top: 13px;
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
.ham_nav dt a.active span:nth-child(2) {
	left: -40px;
    opacity: 0;
}
.ham_nav dt a.active span:last-child {
	width: 24px;
	bottom: 12px;
    left: 9px;
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}
.ham_nav dt:hover a span {
    width: 24px;
    left: 9px;
}
	


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

	▲△▲△▲△▲△▲△ここまでSP用▲△▲△▲△▲△▲△

============================================================================*/
}






