@charset "UTF-8";
div#top_name {
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: underline;
  width: 100%;
  text-align: right;
  background-color: white;
  margin-right: 10px;
}

#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.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

div#modal_logout > div,
div#modal_login > div {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  margin: 20px;
  box-shadow: 0px 0px 10px gray;
  border-radius: 10px;
}
div#modal_logout > div p:first-child,
div#modal_login > div p:first-child {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}
div#modal_logout > div p:not(:first-child),
div#modal_login > div p:not(:first-child) {
  margin-bottom: 10px;
  font-size: 15px;
}

div#modal_logout > div > div,
div#modal_login > div > div {
  margin-top: 2rem;
  display: flex;
}
div#modal_logout > div > div button,
div#modal_login > div > div button {
  padding: 5px 20px;
}
div#modal_logout > div > div > button,
div#modal_login > div > div > button {
  margin-left: auto;
}

.hidden {
  display: none;
}/*# sourceMappingURL=static.css.map */