@charset "utf-8";

.headerSpMenu {
	display: none;
}

/* ナビゲーション */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	/*background-color: #efdbbe;*/
	z-index: 999;
}

.headerLinkWrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 70px;
	width: 100%;
	background-image: url("../../assets/img/wood_bk.png");
}

.headerLinkInLogo {
	position: absolute;
	top: -30px;
	padding: 0 50px 15px 50px;
	background-color: #efdbbe;
	border-radius: 50%;
}

.headerLinkInLogo img {
	margin: 0 auto;
	width: 82px;
}


.headerLinkIn {
	flex-basis: 255px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.headerLinkIn a {
	font-family: "Noto Sans JP";
	color: #4d2b07;
	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.headerLinkWrapSp {
	display: none;
}

.adoptHeaderLinkIn {
	flex-basis: 255px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.adoptHeaderLinkWrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 70px;

}

.adoptHeader {
	background-color: #bd9459;
	position: relative;
}

.adoptHeaderLinkIn a {
	font-family: "Noto Sans JP";
	color: #4d2b07;
	font-size: 18px;
	letter-spacing: 0.26em;
	font-weight: bold;
}







.active:after {
	content: '';
	position: absolute;
	bottom: -10px;
	right: 70px;
	width: 122px;
	height: 5px;
	background-color: #361c00;
}

.adoptLogo {
	position: absolute;
	left: 95px;
	top: 0px;
	height: 166px;
	background-color: rgba(255, 245, 234, 0.66);
	width: 137px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	header {
		background-color: #FFF;
	}
	.headerLinkWrap {
		display: none;
	}
	.headerLogo img {
		height: 60px;
		transform: translateX(10px);
	}
	.headerLinkWrapSp {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 70px;
		background-color: #efdbbe;
	}
	.headerSpMenu {
		display: block;
		transform: translateX(100vw);
		background-color: #efdbbe;
		transition: transform .2s;
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
	}
	#headerMenuBtnChk:checked ~ .headerSpMenu {
		transform: translateX(0);
		transition: transform .2s;
	}
	.headerMenuBtn {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-basis: 90px;
		height: 135px;
		/* 		border-radius: 68px 68px 68px 68px / 68px 68px 68px 68px; */
		position: relative;
	}
	.headerMenuBtn>span {
		display: block;
		width: 40px;
		height: 5px;
		background-color: #4d2b07;
		position: relative;
		transition: transform .2s;
	}
	#headerMenuBtnChk:checked ~ .headerLinkWrapSp>.headerMenuBtn>span {
		background-color: #efdbbe;
		transition: background-color .2s;
	}
	#headerMenuBtnChk:checked ~ .headerLinkWrapSp>.headerMenuBtn>.spanBg{
		background-color: #BD9459;
	}
	#headerMenuBtnChk:checked ~ .headerLinkWrapSp>.headerMenuBtn>span:before
		{
		transform: rotate(45deg);
		top: 0px;
		transition: transform .2s, top .2s;
	}
	#headerMenuBtnChk:checked ~ .headerLinkWrapSp>.headerMenuBtn>span:after
		{
		transform: rotate(-45deg);
		top: 0px;
		transition: transform .2s, top .2s;
	}
	.headerMenuBtn>span:after, .headerMenuBtn>span:before {
		content: "";
		display: block;
		width: 40px;
		height: 5px;
		background-color: #4d2b07;
		position: absolute;
		left: 0;
		transition: transform .2s, top .2s;
	}
	.headerMenuBtn>span:after {
		top: 15px;
	}
	.headerMenuBtn>span:before {
		top: -15px;
	}
	.headerLinkIn {
		position: relative;
		height: 60px;
		border-bottom: 1px solid #a9926b;
	}
	.headerLinkIn:last-of-type() {
		border-bottom: none;
	}
	.adoptHeaderLinkWrap {
		display: none;
	}
	.adoptLogo {
		display: none;
	}
	.adoptLogoSp {
		postion: relarive;
	}
	.adoptImgBoxSp {
		position: absolute;
		top: 0px;
		left: 30px;
		background-color: rgba(255, 245, 234, 0.66);
		width: 140px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.spAdoptHeader {
		background-color: #bd9459;
	}
}