.header {
  position: fixed; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  
  /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);*/
  z-index:50;

}
.header__inner {
	display: flex;
	/*justify-content: space-between;*/
	justify-content: flex-end;
	align-items: center;
	/*padding: 0.5rem 1rem;*/
	}

.logo {
	font-size: 1.25em;
	font-weight: bold;
	}

/* ハンバーガーボタンのデザインや位置*/
.drawer__button {
  position: relative;
  width: 80px;
  height: 80px;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  top:0px; 
	right:0px;  
 background-color:#c89c3c;

 
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 35%;
  left: 50%;
  width: 45px;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.6rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button > span:nth-child(2)::after { /* MENUの文字 */
  content: "MENU";
	font-size:14px;
	font-weight:500;
	font-family: "Cinzel", serif;
	  color: #fff;
      position:  relative;  
	top:16px;
	left:-1px;
  }

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.6rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-top:13px;
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-top:13px;
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  max-width:500px;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
  font-size:1.05em;
}

.drawer__nav__link_LAST{border-bottom: solid 0px ; }


/* 英字 */
.drawer__nav__link span{ 
	color:#c89c3c;
	margin-left:10px;
	font-weight:500;
	font-family: "Cinzel", serif;
	font-size:0.9em;
	}



/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/* ドロワー内「インスタこちら」 */


/* インスタこちら */
.btn_arrow_drawer {
width:300px;
    display: table;
    position: relative;
    padding: 1em 2.5em;
    min-width: 15em;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
	background-color: #222;
	margin:0 auto;
	margin-top:3em;

}
.btn_arrow_drawer::after {
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}
.btn_arrow_drawer:hover {
    background-color: #c89c3c;
	
    color: #fff;
}

.btn_arrow_drawer i{ margin-right:5px; }

.btn_arrow_drawer-2 {margin-top:2em;}

@media screen and (max-width:840px) {  

.btn_arrow_drawer {width:100%;} }
