
div#top_name {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.2em;
  text-decoration: underline;
}


#modal-menu {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: calc(100vh - 62px); /* 62px はフッターメニューの高さを指定*/
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  z-index: 2222;
}
#modal-menu #modal-menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
}
#modal-menu #menu_outer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#modal-menu #menu_outer.topFix {
  align-items: flex-start;
  padding: 10px 0px;
}
#modal-menu #menu_outer #menu_inner {
  text-align: left;
  color: rgb(241, 241, 241);
  max-width: 85%;
  overflow: hidden;
  padding-top: 50px;
}
#modal-menu #menu_outer #menu_inner h2 {
  margin-bottom: 40px;
  font-size: 28px;
  /*長すぎる名前は省略*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#modal-menu #menu_outer #menu_inner h3 {
  color: #ff008d;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}
#modal-menu #menu_outer #menu_inner a {
  color: inherit;
  margin-bottom: 16px;
  display: block;
  margin-left: 1em;
}
#modal-menu #menu_outer #menu_inner a img {
  max-width: 100%;
}
#modal-menu #menu_outer #menu_inner .btn {
  margin-top: 42px;
  flex-basis: 47%;
  text-align: center;
  padding: 5px 0px;
  border-radius: 20px;
  text-decoration: none;
  background-color: #E2007E;
  color: white;
}




.display_none{
	display: none !important;
}

div#modal_logout, div#modal_login{
  z-index: 9999999;
	position:fixed; 
	inset: 0 0 0 0; 
	width:100%; 
	height:100%; 
	background-color:rgba(0,0,0,0.25); 
	display:flex; 
	justify-content:center; 
	align-items:center;
}

div#modal_logout > div, div#modal_login > div{
	background-color:rgba(240,240,240); 
	padding:1rem;
}

div#modal_logout > div > div, div#modal_login > div > div{
	margin-top:1rem;
       	display:flex;
}

div#modal_logout > div > div > button, div#modal_login > div > div > button{
	margin-left: auto;
}



.hidden{
    display: none;
}





