header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 18px;
    background: #FFF;
}

header >div {
    display: flex;
    width: 900px;
    max-width: 100%;
    justify-content: space-between;
    align-items: end;
}

.hed-logo img{
    width: 290px;
}

.header-contact img{
    width: 190px;
    max-width: 100%;
    /* margin-right: 20px;
    margin-left: 20px; */
}

.header-contact {
    /*margin-left: 30px;*/
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}

.header_nav img{
    width: 37px;
	vertical-align: baseline;
}

/*.nav-icon__box a {
    width: 37px;
}*/

.header_nav {
    text-align: right;
}

.nav-icon__box{
    margin-bottom: 20px;
}

.nav-icon__box a:nth-of-type(1) img{
    margin-right: 10px;
}

.header-nav__container{
    /* width: 410px;
    max-width: 100%; */
}


.header-nav__container ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    width: max-content;
    max-width: 100%;
}

.header-nav__container li {
    padding: 0 14px;
    border-right: 1px solid #383838;
    line-height: 1;
    letter-spacing: -0.15em;
}

.header-nav__container li:last-of-type{
    border-right: none;
    padding-right: 0;
}

.header-nav__container li a{
    font-size: .18rem;
    font-weight: bold;
    color: #515151;    
}

.hamburger{
    display: none;
}

#toggle {
	position: fixed;
	top: 29px;
	right: 23px;
}

#toggle-box {
	position: relative;
	width: 36px;
	height: 32px;
	cursor: pointer;
}

#toggle-box > span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #000;
	position: absolute;
	transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
	top: 0;
}

#toggle-box > span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
	bottom: 0;
}

#toggle {
	z-index: 1000;
}

/* #main {
	position: relative;
	z-index: 990;
} */

#nav-content {
	z-index: 900;
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: #F6DCC4;
	color: #000;
	position: fixed;
	top: 0;
	right: 0;
	text-align: center;
	transform: translateX(100%);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
	list-style: none;
}

#nav-content a {
	display: block;
	color: #515151;
	text-decoration: none;
	padding: 17px 0;
	transition: opacity .6s ease;
    font-size: .20rem;
    font-weight: 700;
}

#nav-content a:hover {
	opacity: 0.6;
}

.is-open {
	overflow: hidden;
}

.is-open #toggle-box > span {
	background: #000;
}

.is-open #toggle-box > span:nth-child(1) {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
	width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
	top: 50%;
	transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
	z-index: 999;
	transform: translateX(0);
}

.hamburger {
	display: none;
}

#nav-content ul li:nth-child(1) {
	margin-top: 50px;
}


@media screen and (min-width:769px) and ( max-width:1300px) {
    header >div {
        justify-content: end;
    }

    .header-contact {
        position: absolute;
        margin: auto;
        top: 22px;
        right: 147px;
        justify-content: space-between;
        align-items: flex-end;
        width: 325px;
    }

    .header-contact a{
        width: 48%;
    }

}
@media screen and (max-width: 768px){
    header {
        flex-wrap: wrap;
        padding: 17px 20px 14px;
    }
    .hamburger{
        display: block;}

        .sns-icon_f,
        .sns-icon_x{
            width: 37px;
			vertical-align: middle;
        }

        .hamburger_icon{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            width: 100px;
            margin: 0 auto;
        }


.hed-logo img{
    max-width: calc(100% - 80px);
}

.header-nav__container,
header >div{
    display: none;
}
}