/*element styles */
@import url("/design/fonts.css");
body {
  background: #fff;
  overflow: hidden auto;
}
body.light-bg {
  background: var(--MCL2);
}
header {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background: var(--MCL1);
}
header .logo {
  width: 130px;
  height: 70px;
  border-left: var(--BW) solid var(--MCL0);
  margin-left: 2rem;
}
header .logo img {
  width: 70px;
  height: auto;
  animation:
    logo-animation backwards 2s,
    repaetable-logo-animation 16s 4s infinite;
}
header .text h1,
.wrapper > h1,
.about-music h1 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 900;
}
header .text h2 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.6;
}
nav {
  position: fixed;
  left: 4rem;
  right: 4rem;
  top: 1rem;
  height: 70px;
  padding: 0 1rem;
  border-radius: var(--BR2);
  box-shadow: var(--BSN) #0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: var(--BL2);
  z-index: 7;
  flex-wrap: wrap;
}
.light-bg nav {
  position: sticky;
  margin: 1rem 4rem;
  background: #fffd;
}
.light-bg nav.scrolled {
  margin: 1rem;
}
nav.scrolled {
  left: 1rem;
  right: 1rem;
  box-shadow: var(--BSN) #0001;
  background: #fffd;
}
nav .text {
  margin-right: 1rem;
}
nav .text h1 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}
nav .text span {
  line-height: 1.3;
  opacity: 0.6;
}
nav img {
  width: 30px;
  height: auto;
  margin: 0 0.5rem;
}
svg {
  vertical-align: middle;
  margin-left: 0.3rem;
  fill: none;
  width: 24px;
  min-width: 24px;
  aspect-ratio: 1/1;
  stroke-linejoin: round;
  fill: currentColor;
  stroke-linecap: round;
}
a:active,
.user:active {
  transform: scale(0.95);
}
a {
  display: inline-block;
}

/* Unique classes*/
.user {
  margin-left: -9px;
  display: flex;
  user-select: none;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 1rem;
  border-radius: var(--BR1);
  cursor: pointer;
  position: relative;
  /* display: none; */
}
a.signin-login {
  padding: 0.5rem 1rem;
  margin: 0 1rem;
  color: #fff;
  background: var(--MC);
  border-radius: var(--BR2);
  display: none;
}
a.signin-login:hover {
  background: var(--MCD1);
}
nav .links a {
  position: relative;
  padding: 0.7rem 1rem;
  margin: 0 0.5rem;
  color: #000;
  border-radius: var(--BR2);
}
.user .user-data {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  max-width: 120px;
  margin-left: 1rem;
}
.user .user-data h1 {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 13px;
  white-space: nowrap;
  line-height: 1.3;
  font-weight: 600;
}
.user .user-data span {
  line-height: 1.3;
  opacity: 0.6;
}
.user .logo {
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: var(--BW) solid var(--MC);
  position: relative;
}
.user .logo::after {
  width: 7px;
  height: 7px;
  border-radius: var(--BR2);
  background: #f66;
  color: #fff;
  content: "";
  position: absolute;
  top: -3px;
  right: -5px;
}
.user .logo img {
  width: 36px;
  border-radius: 36px;
  aspect-ratio: 1/1;
}
.user svg {
  margin: 0;
}
.user-items {
  position: fixed;
  overflow: hidden;
  width: 200px;
  border-radius: var(--BR2);
  z-index: 6;
  box-shadow: var(--BSN) #0001;
  background: #fffd;
  backdrop-filter: var(--BL2);
  left: -250px;
  top: 7rem;
  padding: 0;
  margin: 0;
  visibility: hidden;
}
.show.user-items {
  left: 4rem;
  visibility: visible;
}
.scrolled.show.user-items {
  left: 1rem;
}
.user-items a {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  display: block;
  color: #000;
  border-radius: var(--BR1);
}
.user-items a:hover,
.search-box .results a:hover,
nav .links a:hover,
.user:hover,
.show.user,
.more a:hover {
  background: var(--WT1);
}
.converstion {
  background: #fff;
  display: flex;
  margin: 3rem 0;
  padding: 2rem 0;
  align-items: center;
}
.converstion .photo {
  overflow: hidden;
  min-width: 400px;
  min-height: 400px;
  position: relative;
  overflow: visible;
  margin: 1rem 0;
}
.converstion.type2 {
  margin: 3rem;
  padding: 0 2rem;
  border-radius: var(--BR3);
}
.converstion .photo::after {
  width: 300px;
  height: 300px;
  background: var(--MCL1);
  border-radius: 100px;
  border: 4px #fff solid;
  animation: rotate360 15s linear infinite;
  box-shadow:
    0 0 0 5px var(--MCL1),
    0 0 0 7px var(--MCL1),
    inset 0 0 0 5px #fff;
  content: "";
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  z-index: 0;
}
.converstion .photo img {
  width: 240px;
  border: 4px #fff solid;
  border-radius: var(--BR3);
  box-shadow: 0 0 0 var(--BW) var(--MC);
  transform: rotate(15deg);
  z-index: 1;
}
.converstion .text {
  padding: 2rem;
  margin: 1rem;
  height: fit-content;
}
.converstion .text h1 {
  font-weight: 900;
  font-size: 20px;
  color: var(--MC);
  margin: 0.5rem 0;
}
.converstion .text h1 span {
  padding: 0.3rem 1rem;
  border-radius: var(--BR1);
  margin-right: 0.5rem;
  background: var(--MCL2);
}
.converstion .text p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.data-box {
  padding: 0.5rem 0;
  background: var(--MCL2);
}
.data-box h1,
.musics-box > h1 {
  width: 100%;
  font-size: 18px;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 900;
}
.data-box > h1 {
  font-size: 20px;
  font-weight: 900;
}
.data-box .box {
  width: 250px;
  height: 200px;
  display: flex;
  z-index: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--BR2);
  padding: 1rem 2rem;
  margin: 1rem 0.5rem;
  position: relative;
  overflow: hidden;
}
.data-box .box::after {
  content: "";
  background: linear-gradient(0.5turn, #fff 0%, #fff0 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100px;
  z-index: 0;
}
.data-box .box svg {
  width: 210px;
  color: var(--c);
  opacity: 0.05;
  border-radius: 100px;
  position: absolute;
  top: -2rem;
  right: -2rem;
}
.data-box > .box h1 {
  z-index: 1;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.data-box > .box span {
  font-size: 25px;
  font-weight: 900;
}
.musics-box > h1 {
  margin: 0.5rem 0;
}
.musics-box {
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
}
.musics-box .music {
  width: 300px;
  margin: 0.5rem;
  border: var(--BW) solid var(--MCL1);
  border-radius: var(--BR2);
}
.musics-box .music .thumbnail {
  width: calc(100% - 2rem);
  position: relative;
  margin: 1rem;
  aspect-ratio: 1/1;
  border-radius: var(--BR3);
  background: var(--MCL2);
  overflow: hidden;
}
.thumbnail {
  overflow: hidden;
}
.thumbnail img {
  width: 100%;
  aspect-ratio: 1/1;
}
.musics-box .music .thumbnail time {
  border-radius: var(--BR1);
  padding: 0.1rem 0.5rem;
  box-shadow: var(--WT1) 0 2px 10px;
  background: #fffd;
  backdrop-filter: var(--BL2);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.musics-box .music .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem;
  margin-top: 3rem;
  border-radius: var(--BR1);
  background: var(--MCL2);
}
.musics-box .music h1 {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.musics-box .music h2 {
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.7;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-box {
  height: 70px;
  top: calc(2rem + 70px);
  width: 450px;
  right: calc(50% - 225px);
  z-index: 6;
  transform: scale(0.95);
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  border-radius: var(--BR2);
  opacity: 0;
  box-shadow: var(--BSB) #0001;
  background: #fffd;
  backdrop-filter: var(--BL2);
}
.show.show-result.search-box {
  height: 310px;
}
.search-box .search-input {
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.show.search-box {
  height: 70px;
  visibility: visible;
  transform: scaleX(1);
  opacity: 1;
}
.search-box a {
  width: 40px;
  aspect-ratio: 1/1;
  margin: 0 1rem;
  border-radius: var(--BR2);
}
.search-box a:hover {
  background: var(--WT1);
}
.search-box .input-box {
  padding: 0.3rem 1rem;
  display: flex;
  background: #fff5;
  border-radius: var(--BR2);
  max-width: 324px;
  width: 324px;
  border: var(--BW) solid var(--WT2);
}
.search-box .input-box:has(input:focus) {
  border-color: var(--MC);
}
.search-box .input-box input {
  width: calc(100% - 3rem);
  background: transparent;
  margin-right: 1rem;
}
.search-box p {
  padding: 1rem 0;
  max-width: 100%;
  width: 0;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}
.search-box.show-result p {
  width: 100px;
}
.search-box.show-result .input-box {
  max-width: 250px;
  width: 250px;
}
.search-box svg {
  margin: 0 !important;
  stroke: #000;
}
.loading.search-box .input-box svg {
  margin: 0;
  display: none;
}
.loading.search-box .input-box .loading-svg {
  display: inline-block;
}
.search-box .results {
  max-height: 240px;
  margin: 0 0.5rem;
  border-radius: var(--BR2);
}
.search-box .results a,
.more a {
  height: 60px;
  width: calc(450px - 3rem);
  position: relative;
  color: #000;
  padding: 0 0.5rem;
  margin: 0.5rem 0;
  justify-content: space-between;
}
.search-box .results a .info,
.more a .info {
  width: calc(340px - 4rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
}
.search-box .results a .info h1,
.more a .info h1 {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 13px;
  white-space: nowrap;
  line-height: 1.3;
  font-weight: 600;
}
.search-box .results a .info h2,
.more a .info span {
  line-height: 1.3;
  opacity: 0.5;
}
.search-box .results a .thumbnail,
.more a .thumbnail {
  width: calc(60px - 1rem);
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--BR1);
  background: var(--WT2);
  overflow: hidden;
}
.search-box .results a .thumbnail img {
  width: 100%;
  aspect-ratio: 1/1;
}
.search-box .results a time {
  min-width: 50px;
  max-width: 50px;
  text-align: center;
}
body > footer {
  background: var(--MCL1);
  padding: 1rem;
  text-align: center;
}
body > footer b {
  font-weight: 600;
  border-radius: var(--BR1);
  background: var(--MCL0);
  padding: 0.1rem 0.5rem;
}
.wrapper {
  margin-top: 3rem;
}
.wrapper > h1 {
  text-align: center;
  padding:0 2rem;
}
.wrapper > h1 svg {
  width: 40px;
  margin-left: 1rem;
  stroke-width: 2;
  stroke: var(--MC);
}
/* music */
.wrapper.division {
  display: grid;
  align-items: start;
  margin: 1rem 3.5rem;
  grid-template-columns: calc(100% - 400px) 400px;
}
.wrapper.division > div {
  padding: 1rem;
  margin: 0 0.5rem;
  background: #fff;
  border-radius: var(--BR2);
  box-shadow: var(--BSB) var(--WT1);
}
.about-music {
  display: grid;
  grid-template-columns: 150px calc(100% - 150px - 1rem);
  gap: 1rem;
}
.about-music .thumbnail {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: var(--BR2);
  position: sticky;
  top: calc(2rem + 70px);
}
.about-music .music-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: var(--BR2);
  background: var(--MCL2);
  margin-bottom: 0.5rem;
}
.about-music .music-title h1 {
  font-size: 24px;
  line-height: 1.3;
}
.about-music .music-title h2 {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.6;
}
.about-music .music-title time {
  font-size: 16px;
  opacity: 0.6;
}
.about-music .text .music-data span {
  width: fit-content;
  display: inline-flex;
  height: 24px;
  margin-right: 1rem;
  font-weight: 600;
}
.about-music .text .music-data span .user-profile {
  width: 24px;
  height: 24px;
  border-radius: var(--BR3);
  overflow: hidden;
  margin-left: 0.5rem;
}
.about-music .text .music-data .related {
  display: inline-block;
  width: fit-content;
}
.about-music .text .music-data .related span {
  padding: 0.2rem 0.9rem;
  margin:.4rem 0;
  background: var(--MCL1);
  border-radius: var(--BR1);
  margin-right: 0.5rem;
}
.about-music .text .music-data .user-profile img {
  width: 100%;
}
.about-music .text .music-data .date-and-views {
  margin: 0.5rem 0;
}
.about-music .text .music-data .add-to-favorite,
.about-music .text .music-data .download {
  border-radius: var(--BR1);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0.25rem;
}
.about-music .text .music-data .add-to-favorite {
  background: var(--MCL1);
}
.about-music .text .music-data .download {
  background: var(--MC);
  color: #fff;
}
.about-music .text .lyrics {
  border-radius: var(--BR2);
  background: var(--MCL2);
  overflow: hidden;
  margin-top: 0.5rem;
}

.about-music .text .lyrics h1 {
  padding: 1rem 2rem;
  font-size: 20px;
  cursor: pointer;
}
.about-music .text .active.lyrics h1 {
  background: var(--MCL1);
}
.about-music .text .lyrics h1 svg {
  stroke-width: 1;
  width: 30px;
  margin: 0;
}
.about-music .text .active.lyrics h1 svg {
  transform: scaley(-1);
}
.about-music .text .lyrics .text {
  padding: 0rem 2rem;
  overflow: hidden;
  height: 0;
}
.about-music .text .active.lyrics .text {
  padding: 2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1rem;
}
.grid .box {
  background: #fff;
  box-shadow: var(--WT2) var(--BSB);
  height: 100px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem;
  border-radius: var(--BR2);
}
div.favorite-categories {
  height: 300px;
}
div.favorite-categories .category,
.converstion .category {
  width: 200px;
  background: #fff;
  height: 200px;
  padding: 1rem;
  border-radius: var(--BR2);
  box-shadow: var(--WT2) var(--BSB);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.converstion .category {
  transform: rotate(15deg) scale(1.1);
  z-index: 2;
}
div.favorite-categories .category.r1 {
  z-index: 1;
  margin: 0 -2rem;
}
div.favorite-categories .category.r2 {
  transform: rotate(5deg) scale(0.9) translateY(10px);
}
div.favorite-categories .category.r3 {
  transform: rotate(-5deg) scale(0.9) translateY(10px);
}
.category h1,
.grid .box .text h1 {
  font-size: 24px;
  font-weight: 900;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  line-height: 1.3;
  width: 100%;
}
.category span,
.grid .box .text span {
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  opacity: 0.7;
}
.grid .box .logo {
  width: 70px;
  position: relative;
  margin-left: 1rem;
  aspect-ratio: 1 / 1;
  border-radius: var(--BR1);
  background: var(--MCL2);
  overflow: hidden;
}
.grid .box .text {
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grid .box .logo img {
  width: 100%;
}
.notice {
  padding: 0.5rem 1rem;
  border-radius: var(--BR2);
}
/* notice-class */
.notice.warning {
  background: var(--WRB);
}
.notice svg {
  stroke: var(--WR);
}
.comments-box form.new-comment {
  margin: 1rem 0;
  border-radius: var(--BR2);
  border: var(--BW) solid var(--MCL1);
  padding: 1rem;
}
.comments-box form.new-comment h1 {
  font-size: 18px;
  font-weight: 900;
}
.comments-box .comment-view {
  display: grid;
  grid-template-columns: 40px calc(100% - 40px - 0.5rem);
  gap: 0.5rem;
}
.comments-box .comment-view.type2 {
  align-items: end;
  margin-top: 0.5rem;
}
.comments-box .comment-view .thumbnail {
  border-radius: var(--BR3);
  overflow: hidden;
  position: sticky;
  bottom: 0.5rem;
  aspect-ratio: 1/1;
}
.comments-box .comment-view textarea {
  width: calc(100% - 2rem - 4px);
  transition: none;
  max-width: calc(100% - 2rem - 4px);
  min-width: calc(100% - 2rem - 4px);
  height: 150px;
  border: var(--BW) solid var(--MCL1);
  border-radius: var(--BR2);
  min-height: 150px;
  max-height: 300px;
  padding: 0.5rem 1rem;
}
.comments-box legend {
  font-weight: 600;
  margin: 0.5rem;
  font-size: 16px;
}
form button {
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: #fff;
  background: var(--MC);
  border-radius: var(--BR2);
}
.comments .no-comment {
  height: 200px;
  flex-direction: column;
}
.comments .no-comment img {
  max-width: 300px;
  width: 100%;
  margin: 0 1rem;
}
.comments .no-comment h1 {
  font-weight: 600;
  margin-top: 1rem;
  opacity: 0.4;
}
.comments .comment {
  border: var(--BW) solid var(--MCL1);
  border-radius: var(--BR2);
  padding: 1rem;
}
.comments .comment h1 {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.comments .comment h1 span {
  font-weight: 900;
  font-size: 16px;
}
.comments .comment h1 time {
  margin-right: 1rem;
  opacity: 0.7;
}
.comment .actions a {
  padding: 0.3rem 0.5rem;
  color: #000;
  background: var(--MCL2);
  border-radius: var(--BR2);
}
.comment .actions a:hover {
  background: var(--MCL1);
}
.comment .actions a:active svg {
  transform: scale(0.8);
}
.comment .actions a svg {
  margin: 0;
}
.comment p {
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.comment .replay .actions a:hover {
  background: var(--MCL1);
}
.comment .replay {
  margin-top: 1rem;
  margin-right: 1.5rem;
  position: relative;
  border-right: var(--MCL2) var(--BW) solid;
  padding: 0 2rem;
}
.comment .replay .thumbnail{
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  top:0;
  right:-21px;
}
.more {
  height: fit-content;
  position: sticky;
  top: calc(2rem + 70px);
}
.more > h1 {
  font-weight: 900;
  font-size: 16px;
  margin: 1rem;
}
.more a {
  width: calc(100% - 1rem);
  border-radius: var(--BR2);
  background: var(--MCL2);
}
.more a .info h1 {
  font-size: 16px;
  font-weight: 900;
}
.more a .info span {
  font-size: 14px;
}
