@charset "utf-8";

#logo {
	display:block;
	margin: auto 0;
}
#logo img {
	width: 100%;
    height: auto;
	padding: 0 0 0 10%;
	filter: brightness(0) saturate(100%) invert(62%) sepia(29%) saturate(145%) hue-rotate(359deg) brightness(92%) contrast(88%);
}
.main-navigation {
	width: 100%;
    position: fixed;
    z-index: 100;
	transition: all 0.5s;
}
.change-color {
	background-color: #000000e3;
	transition: all 0.5s;
}
.drawer{
	display: flex;
	width: 40%;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 4% 0;
}

/*//////////ナビメイン・スマホ表示//////////*/
.menu {
	text-align:center;
	background-color: #000000e3;
	transform: translateX(105%);
	-webkit-transform: translateX(105%);
	transition: all 0.5s ease;
	display: none;
}
.menu ul {
	margin: 0;
	padding: 0;
	border-top: #2b2826e6 1px solid;
}
.menu ul li {
	list-style: none;
	border-bottom: #2b2826e6 1px solid;
}
.menu ul li a {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    color: #9f9789;
    font-size: 3vw;
    text-decoration: none;
    padding: 5% 0;
    display: block;
	transition: 0.5s ease;
}
.menu ul li a:hover {
	background-color:#57514de6;
	color: #e6cb98;
}
.menu ul li.instagram img {
	width: 24px;
    height: auto;
    margin: 0 4px 0 0;
}
.menu ul li.instagram a {
	font-family: 'Cardo', serif;
	letter-spacing: 0.1em;
}
.change-color .menu {
	background-color: unset;
}
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	transition: all 0.8s ease;
	display: block;
	animation: appear 0.5s ease;
}
 @keyframes appear {
	 0% {
		 opacity: 0;
	 }
	 100% {
		 opacity: 1;
	 }
}

/*//////////トグルボタン//////////*/
.Toggle {
	display: block;
    position: fixed; 
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 90;
	right: 3%;
}
 .Toggle span {
    display: block;
    position: absolute;
    width: 80%;
    border-bottom: solid 4px #9f9789;
    -webkit-transition: .35s ease-in-out; 
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
 .Toggle span:nth-child(1) {
    top:8px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 28px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 /* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 1399px) {
	.menu ul li {
		list-style: none;
	}
	.menu ul li a {
		font-size: 2.5vw;
		padding: 3% 0;
	}
}
@media screen and (max-width: 768px) {
	.menu ul li a {
		font-size: 3.5vw;
		padding: 4% 0;
	}
}
/*//////////PC表示//////////*/
@media screen and (min-width: 1400px) {
	header::after {
		display:none;
	}
	#logo img {
		width: 70%;
		height: auto;
		padding: 0 0 0 40px;
	}
	.main-navigation {
		display: flex;
		padding: 40px 0;
	}
	.drawer {
		padding: 0;
	}
	.Toggle {
		display: none;
	}
	.menu {
		width: 100%;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		display: block;
		padding: 0 20px 0 0;
	}
	.menu ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		margin: 0;
		padding: 0;
		border-top: none;
	}
	.menu ul li {
		border-bottom: none;
	}
	.menu ul li a {
		font-size: 1em;
		padding: 0 1em;
		border-bottom: none;
	}
	.menu ul li a:hover {
		background-color:transparent;
	}
}