/* header */
header{
    position: fixed;
    height: 90px;
    background-color:#fff;
    width: 100%;
    z-index: 9999;
    top: 0;
}
.header_top{
    position: relative;
}
.header_top .flex{
    align-items:center;
    padding: 16px 0;
}
.header_logo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.header_logo a{
    display: block;
    line-height: 0;
}
.header_logo a:hover{
    opacity: 0.7;
}
.header_logo img{
    width:140px;
}
.header_langage.flex{
    margin:0;
}
.header_langage a{
    color: #917412;
    font-size: 1.4rem;
    margin-right:7px;
}
.header_langage a:hover{
    color: #cf1225;
}
.nav-wrap{
    margin:0 auto;
}
.nav-wrap .nav li a:hover{
    opacity: 0.7;
}
.nav-wrap .nav li a{
    color: #fff;
    padding: 15px 0;
    letter-spacing: 0.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.8rem;
    display: block;
}

.nav-wrap .nav li:after{
    display:none;
}

.nav-wrap .nav li a:hover {
    background-color: inherit;
    opacity: 0.7;
}

.nav-wrap .nav li {
    width: 100%;
}

.header_nav_button {
    display: block;
    cursor: pointer;
}

.nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: #E0989C;
    width: 22%;
    height: 100%;
    z-index: 99;
    padding: 80px 20px 20px 40px;
}

.nav-wrap.open {
    display: block;
}

.nav-wrap.close {
    display: none;
}

/*メニューボタン*/
.header_nav_button,
.header_nav_button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
}

/* ×　閉メニュー */
.header_nav_button {
    position: relative;
    width: 50px;
    height: 27px;
    left:0;
    top: 5px;
}

.header_nav_button span {
    position: absolute;
    left: 10px;
    width: 40px;
    height: 1px;
    background-color: #917412;
    border-radius: 3px;
    z-index: 999;
}

  /* ×　開メニュー */
.header_nav_button span:nth-of-type(1) {
    top: 0;
}

.header_nav_button span:nth-of-type(2) {
    top: 12px;
}

.header_nav_button span:nth-of-type(3) {
    bottom:0px;
    width: 30px;
}

.header_nav_button.active span:nth-of-type(1) {
    -webkit-transform: translateY(4px) rotate(-26deg);
    transform: translateY(4px) rotate(-26deg);
}

.header_nav_button.active span:nth-of-type(3) {
    opacity: 0;
}

.header_nav_button.active span:nth-of-type(2) {
    -webkit-transform: translateY(-8px) rotate(26deg);
    transform: translateY(-8px) rotate(26deg);
}
@media (max-width: 500px){
.header_logo img {
    width: 110px;
}
header {
    height: 60px;
}
.header_top .flex {
    padding: 8px 0;
}
.nav-wrap {
    width: 80%;
    padding: 50px 20px 20px 50px;
}
.header_top.inner {
    padding: 0 10px;
}
}
@media (max-width: 390px){
.header_langage a {
    font-size: 1.2rem;
    margin-right: 3px;
}
}
@media (max-width: 320px){
.header_logo img {
    width: 80px;
}
}