/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  touch-action: manipulation;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
} 
/* end normalize */
/*@font-face {
   font-family: 'Noto Sans';
   font-style: normal;
   font-weight: 400;
   src: url(fonts/NotoSansKR-Regular.woff) format('woff');
}
*/
* {
  box-sizing: border-box;
}

img {
  width: 100%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: underline;
}

button {
  border: none;
  outline: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  padding: 17px var(--side-padding-s) 17px 15px;
  background-color: white;
  z-index: 10;
  box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
@media (max-width: 700px) {
  header {
    padding: 12px var(--side-padding-s) 12px 15px;
    font-size: 14px;
  }
}
header .logo img {
  max-width: 115px;
}
@media (max-width: 700px) {
  header .logo img {
    max-width: 88px;
  }
}
header .menu ul {
  display: flex;
  gap: 55px;
}
@media (max-width: 900px) {
  header .menu ul {
    gap: 30px;
  }
}
@media (max-width: 700px) {
  header .menu ul {
    gap: 22px;
  }
}
header .menu ul li a.active {
  opacity: 0.6;
}

footer {
  padding: 80px var(--side-padding-m) 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ececec;
}
@media (max-width: 900px) {
  footer {
    padding: 60px var(--side-padding-m) 30px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 50px 30px 30px;
  }
}
footer .inner {
  position: relative;
  width: 100%;
  display: flex;
}
@media (max-width: 900px) {
  footer .inner {
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media (max-width: 600px) {
  footer .inner {
    gap: 30px;
  }
}
footer .inner .column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 40px;
}
@media (max-width: 900px) {
  footer .inner .column {
    width: calc(50% - 25px);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  footer .inner .column {
    width: 100%;
    gap: 30px;
  }
  footer .inner .column.column-jams {
    margin-bottom: 10px;
  }
}
footer .inner .column .footer-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  footer .inner .column .footer-item {
    font-size: 14px;
  }
}
footer .inner .column .footer-item img {
  width: 35px;
  height: auto;
  margin-top: 0px;
}
@media (max-width: 600px) {
  footer .inner .column .footer-item img {
    width: 26px;
  }
}
footer .inner .column .footer-item img.offset {
  transform: translateY(-5px);
}
footer .inner .column .footer-item .item-text {
  display: flex;
  flex-direction: column;
}
footer .inner .column .footer-item .item-text .strong {
  font-weight: 600;
}
footer .inner .column .footer-item .social-icons {
  display: flex;
  gap: 10px;
}
footer .inner .column .footer-item .song-list {
  padding-left: 4px;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
}
footer .inner .column .footer-item .song-list li {
  list-style: inside;
  color: #7a7a7a;
}
footer .inner .column .footer-item .song-list li.locked {
  opacity: 0.5;
}
footer .inner .column .footer-item .song-list li.locked .locked-img {
  width: 15px;
  margin-right: 5px;
  opacity: 0.5;
}
footer .inner .column .footer-item .song-list li a {
  text-decoration: none;
}
footer .copyright {
  display: block;
  padding: 100px 0 0;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 600px) {
  footer .copyright {
    padding: 50px 0 0;
    font-size: 13px;
  }
}

button {
  font-family: inherit;
}/*# sourceMappingURL=base.css.map */