@import "./rows.css";
/* Globals */
.plink:before {
  display: inline-block;
  content: "\f0c1";
  font-family: "FontAwesome";
  margin-right: 3px;
}

[data-title] {
  position: relative;
  cursor: help;
}

.mt-1 {
  margin-top: 5px;
}
.mt-2 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 15px;
}
.mt-4 {
  margin-top: 20px;
}
.mt-5 {
  margin-top: 25px;
}

.mb-1 {
  margin-bottom: 5px;
}
.mb-2 {
  margin-bottom: 10px;
}
.mb-3 {
  margin-bottom: 15px;
}
.mb-4 {
  margin-bottom: 20px;
}
.mb-5 {
  margin-bottom: 25px;
}

.text-center {
  text-align: center;
}

[data-title]:hover::before {
  content: attr(data-title);
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 80%;
  margin-left: 10%;
  margin-right: auto;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-family: sans-serif;
}

dh-alert {
  display: block;
  padding: 10px;
  font-size: 15px;
  border-radius: 8px;
  letter-spacing: -0.3px;
}
dh-alert.box-info {
  background: #d9edf7;
}
dh-alert.box-warning {
  background: #ffe2e4;
}

/* Main */
#top_banner {
  padding: 12px 5px;
  background: #712cf9;
  color: #fff;
}
#top_banner > div {
  display: flex;
  font-size: 13px;
  font-weight: 500;
}
#top_banner > div > .content {
  text-align: center;
  width: 100%;
}
#top_banner > div > .close {
  position: absolute;
  display: block;
  color: #fff;
  right: 40px;
}
@media (max-width: 768px) {
  #top_banner > div > .close {
    right: 10px;
  }
}

@keyframes mobile_menu_bounce {
  0% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
  50% {
    top: -3px;
    -webkit-animation-timing-function: ease-out;
  }
  55% {
    top: -5px;
    -webkit-animation-timing-function: ease-in;
  }
  65% {
    top: -3px;
    -webkit-animation-timing-function: ease-out;
  }
  95% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    top: 0;
    -webkit-animation-timing-function: ease-in;
  }
}
#header_content {
  background: #fff;
  z-index: 15000;
  width: 100%;
  top: 0px;
  left: 0px;
  position: relative;
  box-shadow: 0 0 13px 3px rgba(0, 0, 0, 0.3);
}
#header_content > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}
#header_content > div > div.nav_left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header_content > div > div.mobile_menu {
  display: none;
}
@media (max-width: 768px) {
  #header_content > div > div.mobile_menu {
    right: 30px;
    display: block;
    font-size: 23px;
    line-height: 62px;
    animation: mobile_menu_bounce 1s;
    transform: translateY(0px);
    animation-iteration-count: infinite;
    position: absolute;
  }
  #header_content > div > div.mobile_menu a {
    color: #333;
  }
}
#header_content > div > div.nav_right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header_content > div > div.nav_right ul {
  display: flex;
}
#header_content > div > div.nav_right ul li {
  margin: 0px 3px;
}
#header_content > div > div.nav_right ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: block;
  padding: 8px 12px;
  border-radius: 5px;
}
#header_content > div > div.nav_right ul li a.login {
  background-color: rgba(0, 0, 0, 0.1);
}
#header_content > div > div.nav_right ul li a.register {
  background-color: #712cf9;
  color: #fff;
}
@media (max-width: 768px) {
  #header_content > div > div.nav_right {
    display: block;
    top: 62px;
    height: calc(100vh - 60px);
    background: #ffffff;
    transition: 1s ease all;
    position: absolute;
    right: -320px;
    width: 320px;
    overflow: hidden;
  }
  #header_content > div > div.nav_right.on {
    right: 0px;
    box-shadow: -21px 46px 31px 5px rgba(0, 0, 0, 0.3);
  }
  #header_content > div > div.nav_right ul {
    display: block !important;
  }
  #header_content > div > div.nav_right ul li {
    margin: 0 !important;
  }
  #header_content > div > div.nav_right ul li a {
    padding: 15px 20px !important;
    border-radius: 0 !important;
  }
  #header_content > div > div.nav_right #header_gnb {
    margin-left: 0 !important;
  }
  #header_content > div > div.nav_right #header_gnb ul {
    display: block !important;
  }
  #header_content > div > div.nav_right #header_gnb li {
    margin: 0 !important;
  }
  #header_content > div > div.nav_right #header_gnb li a {
    border-radius: 0 !important;
    padding: 15px 20px !important;
    opacity: 0.6;
  }
  #header_content > div > div.nav_right #header_gnb li a.active, #header_content > div > div.nav_right #header_gnb li a:hover {
    opacity: 1;
  }
}

#header_gnb {
  margin-left: 30px;
}
#header_gnb ul {
  display: flex;
}
#header_gnb ul li {
  margin: 0px 3px;
}
#header_gnb ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
}
#header_gnb ul li a:hover, #header_gnb ul li a.active {
  background-color: rgba(0, 0, 0, 0.05);
}

#header_content.bonding {
  position: fixed;
}
#header_content.bonding + #header_content_height_override {
  height: 62px;
}

#footer {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 80px 0px;
}
#footer_logo {
  height: 60px;
}
#footer .language_help {
  margin-bottom: 5px;
  text-align: left;
}
#footer #change_language {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 20px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><style>svg{fill:%23aaaaaa}</style><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  content: "";
}
#footer .footer_order_2 > div {
  margin-top: 10px;
  text-align: center;
  align-self: end;
}
#footer .footer_order_2 > div .copyright {
  margin-top: 8px;
  color: #aaa;
  letter-spacing: -0.8px;
}

#main_slider .swiper-button-prev, #main_slider .swiper-button-next {
  color: rgba(255, 255, 255, 0.8) !important;
}
#main_slider .swiper-slide {
  position: relative;
  height: 98vh;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 768px) {
  #main_slider .swiper-slide {
    height: 80vw;
  }
}
#main_slider .swiper-slide .blind {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: table;
}
#main_slider .swiper-slide .blind .content {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}
#main_slider .swiper-slide .blind .content .title {
  font-size: 3em;
}
@media (max-width: 768px) {
  #main_slider .swiper-slide .blind .content .title {
    font-size: 5vw;
  }
}
#main_slider .swiper-slide .blind .content .date {
  margin-top: 20px;
  font-size: 20px;
}
@media (max-width: 768px) {
  #main_slider .swiper-slide .blind .content .date {
    font-size: 15px;
    margin-top: 10px;
  }
}
#main_slider .swiper-slide .blind .content .link {
  margin-top: 20px;
  font-size: 0;
}
@media (max-width: 768px) {
  #main_slider .swiper-slide .blind .content .link {
    margin-top: 10px;
  }
}
#main_slider .swiper-slide .blind .content .link a {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 8px 10px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #main_slider .swiper-slide .blind .content .link a {
    font-size: 12px;
  }
}
#main_slider .swiper-slide .blind .content .link a.youtube {
  background-color: rgba(255, 0, 0, 0.9);
}
#main_slider .swiper-slide .blind .content .link a.link {
  background-color: #712cf9;
}

/* Index - Main */
#main_section_1 {
  background: #712cf9;
  color: #fff;
  padding: 40px 0;
}
#main_section_1 > div {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-flow: row wrap;
}
#main_section_1 > div .icon {
  margin-right: 20px;
  font-size: 0;
}
#main_section_1 > div .icon span {
  line-height: 1;
  display: inline-block;
  background: #fff;
  font-size: 25px;
  color: #712cf9;
  font-weight: 700;
  padding: 10px;
  border-radius: 5px;
}
#main_section_1 > div .text {
  line-height: 1;
  font-size: 28px;
  font-weight: 600;
}
#main_section_1 > div .text a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  #main_section_1 > div {
    flex-direction: column;
  }
  #main_section_1 > div .icon {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  #main_section_1 > div .icon span {
    font-size: 15px;
  }
  #main_section_1 > div .text {
    font-size: 16px;
  }
}

#main_section_2 {
  background: #fff;
  padding: 80px 0px;
}
@media (max-width: 768px) {
  #main_section_2 {
    padding: 40px 0px;
  }
  #main_section_2 h1 {
    font-size: 4.4vw;
  }
}
#main_section_2 .row {
  vertical-align: middle;
  align-items: center;
}
#main_section_2 img {
  width: 100%;
}
#main_section_2 .other_text {
  margin-top: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  #main_section_2 .other_text {
    margin-top: 20px;
    font-size: 4.4vw;
  }
}

#main_section_3 {
  background: #111;
  padding: 80px 0px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #main_section_3 {
    padding: 40px 0px;
  }
}
#main_section_3 h1 {
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #main_section_3 h1 {
    font-size: 4vw;
  }
}
#main_section_3 h2 {
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
  color: #fff;
}
#main_section_3 .list_wrapper {
  margin-top: 30px;
}
#main_section_3 .list_wrapper .list_box {
  display: flex;
  width: 100%;
  border: 5px solid #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #main_section_3 .list_wrapper .list_box {
    padding: 8px 15px;
  }
}
#main_section_3 .list_wrapper .list_box .content {
  color: #fff;
  font-size: 23px;
  width: 100%;
  transform: translate(0, -80px);
}
@media (max-width: 768px) {
  #main_section_3 .list_wrapper .list_box .content {
    font-size: 3.5vw;
  }
}
#main_section_3 .list_wrapper .list_box .content .js-marquee-wrapper {
  animation-duration: 15s !important;
  width: 100%;
}
#main_section_3 .list_wrapper .list_box .content .js-marquee-wrapper p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

#main_section_4 {
  padding: 80px 0px;
}
@media (max-width: 768px) {
  #main_section_4 {
    padding: 40px 0px;
  }
}
#main_section_4 h1, #main_section_4 h1 > a {
  color: #333;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  #main_section_4 h1, #main_section_4 h1 > a {
    font-size: 4vw;
  }
}
#main_section_4 .new_list {
  font-size: 18px;
}
@media (max-width: 768px) {
  #main_section_4 .new_list {
    font-size: 3.5vw;
  }
}
#main_section_4 .new_list li {
  display: flex;
  flex: 2 1;
  padding: 15px 0px;
  border-bottom: 1px solid #333;
}
@media (max-width: 608px) {
  #main_section_4 .new_list li {
    display: block;
  }
}
#main_section_4 .new_list li > div {
  width: 100%;
}
#main_section_4 .new_list li > div:last-child {
  width: 170px;
  text-align: right;
}
@media (max-width: 608px) {
  #main_section_4 .new_list li > div:last-child {
    width: 100%;
  }
}
#main_section_4 .new_list li > div > a {
  text-decoration: none;
  color: #333;
}

#main_section_5 {
  padding: 80px 0px;
  background: #eee;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #main_section_5 {
    padding: 40px 0px;
  }
}
#main_section_5 h1, #main_section_5 h1 > a, #main_section_5 h2, #main_section_5 h2 > a {
  font-size: 28px;
  color: #333;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  #main_section_5 h1, #main_section_5 h1 > a, #main_section_5 h2, #main_section_5 h2 > a {
    font-size: 4vw;
  }
}
#main_section_5:after {
  content: "";
  display: block;
  float: none;
  clear: both;
}
#main_section_5 .albums_list {
  margin-top: 30px;
  font-size: 0;
}
#main_section_5 .albums_list .album_items {
  float: left;
  width: 25%;
  overflow: hidden;
  position: relative;
}
#main_section_5 .albums_list .album_items img {
  width: 100%;
  height: 100%;
}
#main_section_5 .albums_list .album_items img.takedown {
  filter: blur(30px);
}
@media (max-width: 768px) {
  #main_section_5 .albums_list .album_items {
    width: 50%;
  }
}
#main_section_5 .albums_list .album_items div.takedown {
  position: absolute;
  z-index: 1000;
  top: 10px;
  left: 10px;
  background: rgba(255, 0, 0, 0.5);
  font-size: 13px;
  letter-spacing: -0.5px;
  color: #fff;
  padding: 7px;
}
#main_section_5 .albums_list .album_items .information {
  display: none;
}
#main_section_5 .albums_list .album_items:hover .information, #main_section_5 .albums_list .album_items:focus .information, #main_section_5 .albums_list .album_items .album_popup:hover .information, #main_section_5 .albums_list .album_items .album_popup:focus .information {
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  font-size: 20px;
}
#main_section_5 .albums_list .album_items:hover .information a, #main_section_5 .albums_list .album_items:focus .information a, #main_section_5 .albums_list .album_items .album_popup:hover .information a, #main_section_5 .albums_list .album_items .album_popup:focus .information a {
  display: block;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  #main_section_5 .albums_list .album_items:hover .information, #main_section_5 .albums_list .album_items:focus .information, #main_section_5 .albums_list .album_items .album_popup:hover .information, #main_section_5 .albums_list .album_items .album_popup:focus .information {
    font-size: 3.4vw;
  }
}
#main_section_5 .albums_list .album_items:hover .information .title, #main_section_5 .albums_list .album_items:focus .information .title, #main_section_5 .albums_list .album_items .album_popup:hover .information .title, #main_section_5 .albums_list .album_items .album_popup:focus .information .title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
#main_section_5 .albums_list .album_items:hover .information .artists, #main_section_5 .albums_list .album_items:focus .information .artists, #main_section_5 .albums_list .album_items .album_popup:hover .information .artists, #main_section_5 .albums_list .album_items .album_popup:focus .information .artists {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 5px;
  font-size: 0.95em;
}

/*
 * Index - Album Detail
*/
#album_detail {
  overflow: hidden;
  padding: 40px 0px;
}
#album_detail > .container > h2 {
  font-size: 2em;
}
#album_detail_background {
  display: flex;
  position: relative;
  width: 100%;
  height: 40vw;
  min-height: 400px;
  font-size: 30px;
}
#album_detail_background h1 {
  display: flex;
  flex-flow: column;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  align-content: center;
  align-self: center;
  vertical-align: middle;
  justify-content: center;
  padding: 0px 30px;
}
@media (max-width: 768px) {
  #album_detail_background h1 {
    font-size: 8.3vw;
  }
}
#album_detail_background h1 span {
  display: block;
  font-style: italic;
  font-size: 0.7em;
  margin-top: 10px;
}
#album_detail_background .background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}
#album_detail_image {
  margin-top: 10px;
}
#album_detail_image > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
#album_detail_image > .title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
}
#album_detail_image > .title > span {
  font-size: 0.9em;
  display: block;
  margin-top: 5px;
  opacity: 0.3;
}
#album_detail_content {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.2px;
}
#album_detail_content > .artists {
  margin-top: 3px;
  margin-bottom: 15px;
  background: #333;
  padding: 10px;
  border-radius: 3px;
  color: #fff;
}
#album_detail_information {
  width: 100%;
  margin-top: 20px;
}
#album_detail_information table {
  font-size: 14px;
  letter-spacing: -0.5px;
  width: 100%;
  border-collapse: collapse;
}
#album_detail_information table caption {
  position: fixed;
  top: -9999px;
  left: -9999px;
  text-indent: -9999px;
}
#album_detail_information table th {
  width: 120px;
  padding: 10px 0px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#album_detail_information table td {
  padding: 10px 10px;
  color: #333;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#album_detail_information table td .artist_album_image {
  vertical-align: middle;
  width: 1.8em;
  border-radius: 8px;
  border: 1px solid #eee;
}
#album_detail_information table td a {
  text-decoration: none;
  color: inherit;
}
#album_detail_track_list {
  margin-top: 50px;
}
#album_detail_track_list > h2 {
  font-size: 2em;
}
#album_detail_mv {
  margin-top: 35px;
  /*& .video-js{
      margin-top:10px;
      width:100% !important; height:40vw !important;
  }
  & video{
      border:0px; width:100% !important; height:40vw !important;
  }*/
}
#album_detail_mv > h2 {
  font-size: 2em;
}
#album_detail_mv .video-box {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
#album_detail_mv .video-box .video-js, #album_detail_mv .video-box iframe {
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
}
#album_detail .another_album {
  margin-top: 50px;
  margin-bottom: 20px;
}

@keyframes play_layer_rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.real_track_list {
  margin-top: -10px;
  letter-spacing: -0.5px;
}

.track_line {
  border-bottom: 1px solid #ccc;
  padding-top: 12px;
  padding-bottom: 12px;
}
.track_line > .track {
  display: flex;
  align-items: center;
  justify-items: center;
}
.track_line:after {
  clear: both;
  display: block;
  float: none;
  content: "";
}
.track_line .number {
  float: left;
  width: 40px;
  text-align: center;
}
.track_line .image {
  position: relative;
  float: left;
  padding: 0px 5px;
  width: 45px;
  height: 35px;
  overflow: hidden;
  text-align: left;
}
.track_line .image .overlay {
  line-height: 35px;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 5px;
  width: 35px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}
.track_line .image .overlay:focus {
  opacity: 1;
}
.track_line .image .overlay:hover {
  opacity: 1;
}
.track_line .image img {
  width: 35px;
}
.track_line .title {
  float: left;
  width: calc(100% - 165px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-left: 3px;
}
.track_line .title > div {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.track_line .isrc {
  margin-top: 2px;
  opacity: 0.8;
  font-size: 0.8em;
}
.track_line .time {
  float: right;
  width: 60px;
  margin-left: auto;
  text-align: right;
}
.track_line .isTitle {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 2px;
  vertical-align: middle;
  background: #0a53be;
  border-radius: 100%;
}

#play_layer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
}
#play_layer .disc {
  position: relative;
  width: 100px;
  height: 100px;
  background: #fff;
}
#play_layer .disc .image {
  animation: play_layer_rotating 10s linear infinite;
}
#play_layer .disc .image img {
  width: 100%;
}
#play_layer .disc .center_disc {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  background: #fff;
  opacity: 0.9;
}
#play_layer .disc .overlay {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 30px;
  line-height: 100px;
  text-align: center;
}
#play_layer .disc .overlay i.fa-play {
  padding-left: 5px;
}
#play_layer .disc .overlay:hover {
  opacity: 1;
  transition: 0.1s ease all;
}
#play_layer .disc .overlay:focus {
  opacity: 1;
  transition: 0.1s ease all;
}

/*
 * Introduce Page
 */
#introduce_page {
  overflow: hidden;
  padding-bottom: 75px;
}
#introduce_page > div#header {
  position: relative;
  height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#introduce_page > div#header > .background_guard {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
#introduce_page > div#header > .background_guard > .brand_name {
  position: absolute;
  width: 100%;
  height: 360px;
  text-align: center;
  line-height: 360px;
  font-size: 40px;
  letter-spacing: 1px;
}
#introduce_page > div#header > .background_guard > .profile_container {
  position: relative;
  height: 360px;
}
#introduce_page > div#header > .background_guard > .profile_container > .profile_image {
  position: absolute;
  bottom: -75px;
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 100%;
  box-shadow: 1px 1px 1px 1px #ddd;
  overflow: hidden;
  text-align: center;
  line-height: 150px;
}
#introduce_page > div#header > .background_guard > .profile_container > .profile_image img {
  width: 90%;
}
#introduce_page > .content_container {
  margin-top: 120px;
  font-size: 20px;
}
@media (max-width: 768px) {
  #introduce_page > .content_container {
    font-size: 15px;
  }
}
#introduce_page > .content_container h2 {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  #introduce_page > .content_container h2 {
    font-size: 20px;
  }
}

/*
 * Artists Page
 */
#artists_page {
  overflow: hidden;
  padding-bottom: 75px;
}
#artists_page > div#header {
  position: relative;
  height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#artists_page > div#header > .background_guard {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
#artists_page > div#header > .background_guard > .brand_name {
  position: absolute;
  width: 100%;
  height: 360px;
  text-align: center;
  line-height: 360px;
  font-size: 40px;
  letter-spacing: 1px;
}
#artists_page > div#header > .background_guard > .profile_container {
  position: relative;
  height: 360px;
}
#artists_page > div#header > .background_guard > .profile_container > .profile_image {
  position: absolute;
  bottom: -75px;
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 100%;
  box-shadow: 1px 1px 1px 1px #ddd;
  overflow: hidden;
  text-align: center;
  line-height: 150px;
}
#artists_page > div#header > .background_guard > .profile_container > .profile_image img {
  width: 90%;
}
#artists_page > .content_container {
  margin-top: 120px;
  font-size: 18px;
}
@media (max-width: 768px) {
  #artists_page > .content_container {
    font-size: 14px;
  }
}
#artists_page > .content_container img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  aspect-ratio: 1/1;
}
#artists_page > .content_container .artist_name {
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}
#artists_page > .content_container .artist_name a {
  color: #333;
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
