/* バナー */

.banner{
  background: #80273F;
  position:fixed;
  top:0;
  right: 0;
  z-index: 9;
  width: 40%;
  height: 69px;

  border: none;
  /* 24/03/14追記：画像横並びにするため */
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.banner img{
  /* position:fixed; */
  /* top:5px; */
  /* right: 5px; */
  height: 64px;
  width: auto;
}

/* 展開前のボタン */

.btn-menu {
  background: #80273F;
  position:fixed;
  top:0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 69px;

  border: none;
  /* background: rgba(0, 255, 255, 0.6);
  color: #000; */
  /* padding: .5em .5em; */
  /* font-size: 1rem; */
  
  /* font-size: 36px;
  cursor: pointer;
  line-height: 1; */
}

.btn-menu img{
  position:fixed;
  top:5px;
  left: 0;
  height: 64px;
}
.button a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.button li{
  margin: 1em 0;
  text-align: left;
  list-style-type: disc;
  line-height: 2em;
  border-bottom: 1px solid #ccc;
  list-style: none;
}
.button li a{
  font-size: 28px;
  font-weight: bolder;
}
.button li a:hover,#menu_line3 li a:hover{
  color: #fc6;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
  font-style: italic;
  font-size: 28px;
}

.button li img{
  height: 72px;
  position: relative;
  top: 24px;
}
 
 
/* 展開後のメニュー */
nav {
  background: rgba(128,39,63,0.9);
  position: fixed;
  z-index: 1;
  top: 64px;
  left:0;
  overflow-x: hidden;
  text-align: center;
  width: 0; /* ←100%から 0 に変更 */
  transition: .5s; /* ← 追加 */
}
 
/* メニューを開いた時 */
nav.open-menu {
  width: 840px;
  /* height: 80vh; */
}

