@charset "UTF-8";
* {
  margin: 0;
  box-sizing: border-box;
}
main {
  display: block;
}
@font-face {
  font-family: DroidSans;
  src: local("Droid Sans"), local("DroidSans"), url(DroidSans.ttf);
}
.lyricspage {
  font-family: DroidSans, "DejaVu Sans";
}
.lyricspage a {
  color: #005a9c;
}
.lyricspage a:visited {
  color: purple;
}
.lyricsnav {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  background-color: #333333;
  font-size: 94%;
  padding-top: 0.3em;
  padding-left: 1.0em;
  padding-bottom: 0.2em;
}
.lyricsnav a,
.lyricsnav a:visited {
  color: white;
  text-decoration: none;
}
.lyricsnav a:hover {
  text-decoration: underline;
}
.lyricspagetitle {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  background-color: #004a8c;
  color: white;
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: center;
}
.lyricscomments {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.3em;
  padding-left: 2em;
  padding-right: 4em;
  padding-bottom: 0.4em;
  border: 3px solid #e2e2e2;
  border-top: 0;
  background-color: #f9f9ff;
  color: #505050;
}
.lyrics-cont {
  display: flex;
  margin: 1rem 1rem 0 1rem;
}
.lyrics-table {
  font-size: 95%;
  height: 100%;
}
.lyrics-title {
  text-align: center;
  background-color: #004a8c;
  color: white;
  border-left: 1px solid #909090;
  border-right: 1px solid #909090;
  font-family: sans-serif;
  font-size: 1.13rem;
}
#jpnTitle,
#rmjTitle {
  display: inline-block;
  background-color: inherit;
  width: 50%;
}
.jpnrmj {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-decoration: underline;
}
.lyrics {
  line-height: 2;
  padding: 0.5rem;
  white-space: pre;
  background-color: #fcfcfc;
  border-left: 1px solid #909090;
  border-right: 1px solid #909090;
  border-bottom: 1px solid #909090;
}
.english-lyrics {
  line-height: initial !important;
}
.lyrics-footer {
  text-align: center;
  color: gray;
  font-size: smaller;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}
.hidden {
  display: none;
}
.deselected {
  color: #a0a0a0;
  background-color: #31475b !important;
}
.deselected:hover {
  background-color: #0065bf !important;
}
@media only screen and (max-width: 768px) {
  .lyrics-cont {
    flex-direction: column-reverse;
  }
  .lyrics-cont .lyrics-table:nth-child(1) {
    margin-top: 5px;
  }
  .lyrics {
    white-space: pre-wrap;
    line-height: initial;
  }
  .song-title {
    display: block;
  }
  .artist {
    display: block;
  }
  .separator {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .lyrics-cont {
    justify-content: center;
  }
}
