@charset "utf-8";

body {
	padding-top: 60px;
}

.ih-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 60px;
    background: #f7f6f0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.ih-header-logo {
    width: 350px;
}
.ih-header-logo-sp {
	display: none !important;
}
.ih-header-nav {
    margin-left: auto;
}
.ih-header-nav__list {
    display: flex;
    align-items: center;
}
.ih-header-nav__list >li {
    font-size: 15px;
    margin-left: 40px;
}
.ih-header-nav__list >li a {
	display: block;
    color: #59331b;
}
.ih-header-nav__list >li a:before {
    content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent #59331b;
	border-width: 6px 0px 6px 10px;
	vertical-align: -1px;
	margin-right: 5px;
}

@media (max-width: 815px) {

	body {
		padding-top: 50px;
	}
	.ih-header {
		height: 50px;
		z-index: 99999;
	}
	.ih-header-logo-pc {
		display: none !important;
	}
	.ih-header-logo-sp {
		display: block !important;
		width: 100%;
		position: relative;
	}
	.ih-header-logo:after {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		border-top: solid 1px #59331b;
		border-right: solid 1px #59331b;
		transform: rotate(45deg);
		position: absolute;
		right: 0;
        top: calc(50% - 6px);
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	.ih-header-logo img {
		width: 280px;
	}
	.ih-header-nav {
		display: none;
		width: 100%;
		padding: 20px;
		border-top: solid 1px #ccc;
		background: #f7f6f0;
		position: absolute;
		top: 50px;
		left: 0;
	}
	.ih-header-nav__list {
		display: block;
	}
	.ih-header-nav__list >li {
		font-size: 12px;
		margin-left: 0;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: solid 1px #ccc;
	}
	
	.ih-header.active .ih-header-logo:after {
		transform: rotate(135deg);
	}
	.ih-header.active .ih-header-nav {
		display: block;
	}
}


/* ------------------

custom

上部固定で必要な設定

--------------------*/

#global-header {
	top:60px;
}
.menu-btn {
	top: 80px;
}

@media (max-width: 815px) {

	#global-header {
		top:50px;
	}

}



