/* CSS Information
---------------------------------------------------------------
Site URL:https://cosmo-music-agency.com/
File name:style.css
Summary:base styles
Created:2026-06-24
--------------------------------------------------------------- */
:root {
  color-scheme: light;
}

.pc {
  display: inherit;
}
@media screen and (max-width: 980px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .sp {
    display: inherit;
  }
}

html {
  background: #fff;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  background: #fff;
}
html body::-webkit-scrollbar {
  display: none;
}
html body section .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(100vw, 1020px);
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  html body section .inner {
    width: 100%;
    border: none;
  }
}
html body section .inner picture {
  width: 100%;
}
html body section#mainvisual .inner {
  width: 100%;
}
html body section#copyright {
  background: #fef0ee;
}/*# sourceMappingURL=style.css.map */