@charset "UTF-8";
.pc_top_menu,
.pc_menu,
.pc_menu_pulldown,
.full_menu,
.search_input_wrapper input,
.search_pulldown,
.footer_func,
.info_content_large {
  display: none;
}

.header_outer {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.header_middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.125rem;
  position: relative;
  padding: 0.625rem 1rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.header_middle .hamburger_btn {
  color: #00CD3C;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.header_middle .logo {
  width: 7.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header_middle .logo img {
  width: 100%;
}
.header_middle .header_icons {
  display: flex;
  gap: 0.9375rem;
}
.header_middle .header_icons img {
  width: 1.875rem;
  height: 1.875rem;
}

.main_menu {
  min-height: 2.8125rem;
  width: 100%;
  padding: 0.625rem 1rem;
  position: relative;
  display: flex;
}
.main_menu .main_burger {
  display: none;
  background-color: #fff;
  border: none;
  font-size: 1rem;
  margin-right: 1.25rem;
}
.main_menu ul {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  align-items: center;
  flex-wrap: nowrap;
}
.main_menu ul::-webkit-scrollbar {
  display: none;
}
.main_menu ul > li {
  text-align: center;
  flex: 0 0 auto;
  width: 6.25rem;
  font-size: 1rem;
  position: relative;
}
.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.mobile_menu {
  position: fixed;
  top: 3.125rem;
  left: -100%;
  width: 100%;
  height: calc(100vh - 3.125rem);
  background-color: #fff;
  z-index: 300;
  transition: left 0.4s ease;
  padding: 1.25rem 1rem;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.05);
}
.mobile_menu.on {
  left: 0;
}
.mobile_menu .mobile_nav_list li {
  font-size: 1.125rem;
  padding: 0.9375rem 0;
  border-bottom: 1px solid #eee;
  list-style: none;
}

/* ------- Search Page (Deep Diet Version) ------- */
.mobile_search_page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1100;
  display: none;
}
.mobile_search_page.on {
  display: block;
}

.search_header {
  display: flex;
  align-items: center;
  height: 3.125rem;
  padding: 0 1rem;
  border-bottom: 1px solid #eee;
}
.search_header h2 {
  flex: 1;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}
.search_header .btn_back {
  background: none;
  border: none;
}
.search_header .btn_back .material-symbols-rounded {
  font-size: 1.5rem;
  color: #00CD3C;
}

.search_input_area {
  padding: 0.9375rem 1rem;
}
.search_input_area .input_box {
  position: relative;
}
.search_input_area .input_box input {
  width: 100%;
  height: 2.8125rem;
  border: 2px solid #00CD3C;
  border-radius: 1.5625rem;
  padding: 0 3.125rem 0 1.25rem;
  font-size: 1rem;
}
.search_input_area .input_box .btn_search_submit {
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  color: #00CD3C;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
.search_input_area .input_box .btn_search_submit .material-symbols-rounded {
  font-size: 1.75rem;
  font-variation-settings: "wght" 500;
}

.search_content_scroll {
  height: calc(100% - 6.875rem);
  overflow-y: auto;
  padding-bottom: 3.125rem;
}

.search_recommend {
  padding: 1.25rem 1rem;
}
.search_recommend h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
.search_recommend .rec_list {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.625rem;
}
.search_recommend .rec_list::-webkit-scrollbar {
  color: #00CD3C;
}
.search_recommend .rec_list .rec_item {
  width: 7.5rem;
  flex-shrink: 0;
}
.search_recommend .rec_list .rec_item .img_box {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  background: #f5f5f5;
}
.search_recommend .rec_list .rec_item p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: #333;
}

.search_section {
  padding: 1.25rem 1rem;
}
.search_section .sec_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.search_section .sec_tit h3 {
  font-size: 1rem;
  font-weight: 700;
}
.search_section .sec_tit .time {
  font-size: 0.75rem;
  color: #999;
}

.recent_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f9f9f9;
}
.recent_list li .keyword {
  word-break: break-all;
  font-size: 1rem;
  color: #333;
}
.recent_list li .info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.recent_list li .info .date {
  font-size: 0.8125rem;
  color: #bbb;
}
.recent_list li .info .btn_del {
  background: none;
  border: none;
  font-size: 1rem;
  color: #ccc;
}

.rank_list li {
  display: flex;
  align-items: center;
  padding: 0.875rem 0;
  font-size: 1rem;
}
.rank_list li .num {
  width: 1.875rem;
  font-weight: 800;
  color: #00CD3C;
}
.rank_list li .up {
  color: #10AE02;
  font-size: 0.75rem;
  width: 2.1875rem;
}
.rank_list li .down {
  color: #DD3535;
  font-size: 0.75rem;
  width: 2.1875rem;
}
.rank_list li .txt {
  flex: 1;
  color: #333;
}

.nav_container {
  padding: 2.5rem 1.5rem;
  background-color: #fff;
}
.nav_container .nav_category .nav_item {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  cursor: pointer;
}
.nav_container .nav_category .nav_item:last-child {
  margin-bottom: 0;
}
.nav_container .nav_category .nav_item .icon_box {
  width: 1.5rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.nav_container .nav_category .nav_item .icon_box img {
  width: 100%;
  height: auto;
}
.nav_container .nav_category .nav_item .nav_text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  line-height: 1;
}
.nav_container .nav_category .divider {
  height: 1px;
  background-color: #f0f0f0;
  margin: 1.25rem 0 1.875rem 0;
  list-style: none;
}

.footer {
  padding-bottom: 7.1875rem;
}

.footer_top {
  text-align: center;
  padding: 0.625rem 0;
}

.footer_logo {
  width: 10rem;
  margin: 0 auto;
}

.footer_service {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.375rem;
}
.footer_service li {
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
}
.footer_service li:active {
  color: #373737;
}

.footer_middle {
  text-align: center;
  color: #B5B5B5;
  font-size: 0.75rem;
  padding: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer_sns h3 {
  text-align: center;
  color: #666;
  font-size: 0.75rem;
}

.icon_sns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.375rem;
}

.bottom_player {
  height: 4.0625rem;
  z-index: 100;
  background-color: #fff;
  position: fixed;
  flex-direction: column;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
  box-shadow: 0 -0.0625rem 0.625rem #DFDFDF;
}
.bottom_player.show_on_list {
  z-index: 90;
  display: flex !important;
  background-color: #fff;
}
.bottom_player.show_on_list .player_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.25rem;
}
.bottom_player.show_on_list .player_container .unit_info {
  flex: 1;
  justify-content: center;
}
.bottom_player.show_on_list .player_container .unit_info .text_group {
  text-align: center;
  margin: 0 0.625rem;
}
.bottom_player .bottom_player.hidden {
  display: none !important;
}
.bottom_player .player_progress {
  width: 100%;
  height: 0.1875rem;
  background-color: #e0e0e0;
  position: absolute;
  top: 0;
}
.bottom_player .player_progress .progress_bar {
  width: 25%;
  height: 100%;
  background-color: #00cd3c;
}
.bottom_player .player_container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.25rem;
}
.bottom_player .player_container .unit_controls,
.bottom_player .player_container .unit_utils {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
}
.bottom_player .player_container .unit_controls button,
.bottom_player .player_container .unit_utils button {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #1a1a1a;
}
.bottom_player .player_container .unit_info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.bottom_player .player_container .unit_info .album_thumb {
  display: none;
}
.bottom_player .player_container .unit_info .text_group {
  text-align: center;
}
.bottom_player .player_container .unit_info .text_group .title_text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
.bottom_player .player_container .unit_info .text_group .artist_text {
  display: block;
  font-size: 0.8125rem;
  color: #888;
  margin-top: 0.125rem;
}
.bottom_player .player_container .unit_utils {
  justify-content: flex-end;
}
.bottom_player .player_container .unit_utils .btn_utility {
  color: #b0b0b0;
}

/* 공통 UI 컬러 */
.full_player p {
  color: #fff;
  margin: 0;
  z-index: 200;
}

.full_player {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  overflow: hidden;
  transition: top 0.4s;
  background-color: #fff;
}
.full_player.on {
  top: 0;
}
.full_player .top_box,
.full_player .mid_box,
.full_player .info_group,
.full_player .bot_box {
  position: relative;
  z-index: 10;
}

/* 배경 및 상단 */
.bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg_box .bg_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(36px);
  transform: scale(1.1);
}
.bg_box .bg_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 100%);
}

.top_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.75rem;
  padding: 0.625rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
.top_box button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.top_box button .material-symbols-rounded {
  font-size: 1.875rem;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.top_box .btn_down p {
  font-size: 1.875rem;
}

/* 중앙 영역 (가사 넓이 확장) */
.mid_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 2.5rem;
  transition: padding 0.3s;
}
.mid_box.lyric_on {
  padding-top: 1.25rem;
}
.mid_box .img_box {
  width: 16.25rem;
  height: 16.25rem;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.mid_box .img_box img {
  width: 100%;
  border-radius: 0.625rem;
}
.mid_box .lyric_box {
  width: 90%;
  height: 25rem;
  min-width: 16.25rem;
  margin: 0 auto;
  overflow-y: auto;
  padding: 1.25rem 0;
  line-height: 1.6;
  font-size: 1.0625rem;
  color: #fff;
  text-align: center;
}
.mid_box .lyric_box .lyric_notice {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.875rem;
  display: block;
  font-weight: bold;
}
.mid_box .lyric_box::-webkit-scrollbar {
  width: 4px;
}
.mid_box .lyric_box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

/* 제목 영역 */
.info_group {
  margin-top: 2.5rem;
  transition: all 0.3s ease;
}
.info_group .txt_lyric {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  cursor: pointer;
}
.info_group .txt_box {
  margin-top: 0;
}
.info_group .txt_box .txt_tit {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}
.info_group .txt_box .txt_art {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}
.info_group.on {
  margin-top: 0.5rem;
  transform: translateY(0.5rem);
}

.txt_tit {
  font-size: 1.375rem;
  font-weight: 700;
}

.txt_art {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3125rem;
}

.bot_box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 1.5625rem;
  z-index: 11;
}
.bot_box .bar_box .bar_line {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
.bot_box .bar_box .bar_line .bar_now {
  width: 50%;
  height: 100%;
  background: #00cd3c;
}
.bot_box .bar_box .bar_line .bar_dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.bot_box .bar_box .time_box {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}
.bot_box .btn_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.875rem;
}
.bot_box .btn_box button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.bot_box .btn_box .btn_play {
  font-size: 2.8125rem;
}
.bot_box .btn_list {
  position: absolute;
  bottom: 0.9375rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.bot_box .btn_list p {
  font-size: 1.5rem;
}
.bot_box .btn_list.active {
  color: #00cd3c;
}

.top_btn {
  position: fixed;
  left: calc(50% + 535px + 120px);
  width: 3.75rem;
  aspect-ratio: 1/1;
  bottom: 7.5rem;
  border: 2px solid #999;
  color: #666;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 99;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.top_btn span {
  font-size: 2.5rem;
  font-variation-settings: "OPSZ" 40;
  line-height: 1;
}
.top_btn:hover {
  border: none;
  background-color: #00CD3C;
  color: #fff;
}
.top_btn:hover span {
  transform: translateY(-0.125rem);
  transition: transform 0.2s;
}

.play_list_layer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 300;
  padding: 0;
  overflow-y: auto;
  transition: top 0.4s ease;
  /* 헤더: 스크롤 시 상단 고정 및 블러 효과 */
  /* 리스트 목록 */
}
.play_list_layer.on {
  top: 0;
}
.play_list_layer .list_header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5625rem 1.25rem 0.9375rem;
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}
.play_list_layer .list_header h3 {
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.play_list_layer .list_header .btn_list_close {
  display: block !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
}
.play_list_layer .list_header .btn_list_close p {
  color: #000 !important;
  font-size: 1.5rem;
  line-height: 1;
}
.play_list_layer .list_header .btn_list_close:hover {
  opacity: 0.7;
}
.play_list_layer .list_items {
  padding: 0 1.25rem;
}
.play_list_layer .list_items li {
  display: flex;
  align-items: center;
  padding: 0.9375rem 0;
  border-bottom: 1px solid #eee;
}
.play_list_layer .list_items li .btn_drag {
  color: #999;
  margin-right: 0.9375rem;
  font-size: 1.375rem;
  z-index: -1;
}
.play_list_layer .list_items li .img_box {
  width: 3.25rem;
  height: 3.25rem;
  margin-right: 0.9375rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #f5f5f5;
}
.play_list_layer .list_items li .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play_list_layer .list_items li .txt_box {
  flex: 1;
  min-width: 0;
}
.play_list_layer .list_items li .txt_box .tit {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.play_list_layer .list_items li .txt_box .art {
  color: #888;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.play_list_layer .list_items li .btn_more_mini {
  background: none;
  border: none;
  color: #bbb;
  margin-left: 0.625rem;
  cursor: pointer;
}
.play_list_layer .list_items li .btn_more_mini p {
  font-size: 1.25rem;
}
.play_list_layer .list_items li:nth-child(1) .img_box {
  background-image: url("../images/list_rec01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(1) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(2) .img_box {
  background-image: url("../images/list_rec02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(2) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(3) .img_box {
  background-image: url("../images/list_rec03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(3) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(4) .img_box {
  background-image: url("../images/list_rec04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(4) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(5) .img_box {
  background-image: url("../images/list_rec05.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(5) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(6) .img_box {
  background-image: url("../images/list_rec06.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(6) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(7) .img_box {
  background-image: url("../images/list_rec07.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(7) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(8) .img_box {
  background-image: url("../images/list_rec08.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(8) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(9) .img_box {
  background-image: url("../images/list_rec09.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(9) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(10) .img_box {
  background-image: url("../images/list_rec10.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(10) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(11) .img_box {
  background-image: url("../images/list_rec11.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(11) .img_box img {
  display: none;
}
.play_list_layer .list_items li:nth-child(12) .img_box {
  background-image: url("../images/list_rec12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.play_list_layer .list_items li:nth-child(12) .img_box img {
  display: none;
}
.play_list_layer::-webkit-scrollbar {
  width: 0;
}

/* ---------------------- Tablet ----------------------*/
@media (min-width: 768px) and (max-width: 1069px) {
  .header_middle {
    padding: 2.25rem 2.5rem;
  }
  .header_middle .hamburger_btn {
    font-size: 2rem;
  }
  .header_middle .logo {
    width: 10rem;
  }
  .header_middle .header_icons {
    gap: 1.5625rem;
  }
  .header_middle .header_icons img {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .mobile_menu {
    top: 4.5rem;
    height: calc(100vh - 4.5rem);
  }
  .main_menu {
    padding: 1.25rem;
  }
  .main_menu ul {
    gap: 1.875rem;
  }
  .main_menu ul li {
    font-size: 1.25rem;
  }
  .mobile_search_page .search_header {
    height: auto;
    padding: 1.25rem 2.5rem;
  }
  .mobile_search_page .search_header h2 {
    font-size: 1.625rem;
  }
  .mobile_search_page .search_header .btn_back .material-symbols-rounded {
    font-size: 1.75rem;
  }
  .mobile_search_page .search_input_area {
    padding: 1.25rem 2.5rem;
  }
  .mobile_search_page .search_input_area .input_box input {
    height: 3.75rem;
    font-size: 1.25rem;
    padding: 0 3.75rem 0 1.875rem;
    border-radius: 2.1875rem;
  }
  .mobile_search_page .search_input_area .input_box .btn_search_submit .material-symbols-rounded {
    font-size: 2.25rem;
  }
  .mobile_search_page .search_section {
    padding: 1.875rem 2.5rem;
  }
  .mobile_search_page .search_section .sec_tit {
    margin-bottom: 1.5625rem;
  }
  .mobile_search_page .search_section .sec_tit h3 {
    font-size: 1.5rem;
  }
  .mobile_search_page .search_section .sec_tit .time {
    font-size: 1rem;
  }
  .mobile_search_page .recent_list li {
    padding: 1.375rem 0;
  }
  .mobile_search_page .recent_list li .keyword {
    font-size: 1.375rem;
  }
  .mobile_search_page .recent_list li .info {
    gap: 1.25rem;
  }
  .mobile_search_page .recent_list li .info .date {
    font-size: 1.125rem;
  }
  .mobile_search_page .recent_list li .info .btn_del {
    font-size: 1.375rem;
  }
  .mobile_search_page .rank_list li {
    padding: 1.375rem 0;
    font-size: 1.375rem;
  }
  .mobile_search_page .rank_list li .num {
    width: 2.8125rem;
    font-size: 1.5rem;
  }
  .mobile_search_page .rank_list li .up,
  .mobile_search_page .rank_list li .down {
    width: 3.125rem;
    font-size: 1.125rem;
  }
  .mobile_search_page .rank_list li .txt {
    font-size: 1.375rem;
  }
  .footer_top_large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0.625rem;
  }
  .footer_top_large .footer_logo {
    margin: 0;
  }
  .footer_top_large .footer_func {
    display: flex;
    gap: 0.625rem;
    padding-right: 0.625rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .footer_top_large .footer_func a {
    color: #373737;
  }
  .footer_top_large .footer_func a:hover {
    color: #00CD3C;
  }
  .footer_service {
    margin-top: 0.625rem;
    justify-content: start;
  }
  .footer_service li {
    padding-left: 1.25rem;
    font-size: 1.125rem;
  }
  .footer_service li:hover, .footer_service li:active {
    color: #00CD3C;
  }
  .info_toggle {
    display: none;
  }
  .info_content_large {
    display: block;
    text-align: left;
    padding-left: 0.625rem;
    font-size: 1.0625rem;
  }
  .footer_sns {
    padding-left: 1.25rem;
  }
  .footer_sns h3 {
    text-align: start;
    font-size: 1.125rem;
  }
  .footer_sns .icon_sns {
    justify-content: start;
  }
  .footer_sns .icon_sns li {
    width: 2rem;
  }
}
/* ---------------------- Tablet Player ----------------------*/
@media (min-width: 768px) {
  .bottom_player {
    height: 5.625rem;
    z-index: 1000 !important;
    display: flex !important;
  }
  .bottom_player .player_container {
    margin: 0 auto;
    padding: 0 6%;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }
  .bottom_player .player_container .unit_controls {
    order: 1;
    flex: 0 0 30%;
    position: static;
    transform: none;
    display: flex;
    justify-content: flex-start;
    gap: 1.5625rem;
  }
  .bottom_player .player_container .unit_controls button {
    font-size: 1.5rem;
  }
  .bottom_player .player_container .unit_controls .btn_main {
    font-size: 2rem;
  }
  .bottom_player .player_container .unit_info {
    order: 2;
    gap: 0.9375rem;
    min-width: 0;
  }
  .bottom_player .player_container .unit_info .album_thumb {
    display: block;
    flex-shrink: 0;
    width: 3.4375rem;
    height: 3.4375rem;
    overflow: hidden;
    border-radius: 0.25rem;
  }
  .bottom_player .player_container .unit_info .album_thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bottom_player .player_container .unit_info .text_group {
    flex-shrink: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bottom_player .player_container .unit_info .text_group .title_text {
    font-size: 1.125rem;
    display: block;
    font-weight: 500;
  }
  .bottom_player .player_container .unit_info .text_group .artist_text {
    font-size: 0.875rem;
  }
  .bottom_player .player_container .unit_utils {
    order: 3;
    flex: 0 0 30%;
    display: flex;
    justify-content: flex-end;
  }
  .full_player {
    max-width: 100vw;
    display: flex !important;
    flex-direction: row;
    height: calc(100vh - 5.625rem);
    overflow: hidden;
  }
  .full_player.on {
    top: 0;
  }
  .full_player .play_screen_layer {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 2.5rem 2.5rem;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s;
  }
  .full_player .play_screen_layer .bg_box {
    z-index: -1;
  }
  .full_player .play_screen_layer .top_box {
    display: none;
  }
  .full_player .play_screen_layer .mid_box {
    flex: 0 1 auto;
  }
  .full_player .play_screen_layer .mid_box .img_box {
    width: 100%;
    max-width: 40vh;
    max-height: 40vh;
    margin: 0 auto;
    aspect-ratio: 1/1;
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.3);
    border-radius: 0.9375rem;
    overflow: hidden;
  }
  .full_player .play_screen_layer .mid_box .img_box .cover_img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .full_player .play_screen_layer .bot_box {
    margin-bottom: auto;
    width: 100%;
    flex: 0 0 auto;
  }
  .full_player .play_list_layer {
    position: relative;
    top: 0 !important;
    flex: 1 1 60%;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #eee;
  }
  .full_player .play_list_layer .list_header {
    background: #fff;
    height: 5rem;
    padding: 0 1.5625rem;
  }
  .full_player .play_list_layer .list_header h3 {
    color: #000;
    font-size: 1.25rem;
  }
  .full_player .play_list_layer .list_items {
    padding: 0 1.5625rem;
  }
  .full_player .play_list_layer .list_items li {
    padding: 1.125rem 0;
  }
  .full_player .play_list_layer .list_items li .txt_box .tit {
    font-size: 1rem;
    color: #000;
  }
  .full_player .play_list_layer .list_items li .txt_box .art {
    font-size: 0.8125rem;
  }
}
/* ---------------------- PC ----------------------*/
@media (min-width: 1070px) {
  .pc_top_menu,
  .pc_menu,
  .pc_menu_pulldown,
  .search_input_wrapper input,
  .search_pulldown {
    display: block;
  }
  .pc_top_list {
    padding: 0.375rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: end;
  }
  .header_middle .hamburger_btn,
  .user_icon {
    display: none;
  }
  .header_icons .search_box {
    width: 18.75rem;
    border: 2px solid #00CD3C;
    border-radius: 1.25rem;
  }
  .header {
    width: 1070px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    overflow: visible;
  }
  .header_outer {
    position: static;
  }
  .header_middle {
    justify-content: space-between;
    height: 5rem;
    padding: 0;
    border: none;
  }
  .header_middle .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8.75rem;
  }
  .header_middle .header_icons {
    flex: 1;
    justify-content: flex-end;
  }
  .header_middle .header_icons .search_input_wrapper {
    display: flex;
    align-items: center;
    width: 18.75rem;
    height: 2.5rem;
    border: 1px solid #00CD3C;
    border-radius: 1.25rem;
    padding: 0 0.9375rem;
    background: #fff;
    transition: all 0.3s;
  }
  .header_middle .header_icons .search_input_wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    background: transparent;
  }
  .header_middle .header_icons .search_input_wrapper .search_icon {
    width: 1.75rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 0.625rem;
    display: flex;
    align-items: center;
  }
  .header_middle .header_icons .search_input_wrapper .search_icon img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header_middle .header_icons .search_pulldown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 18.75rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0.9375rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
  }
  .header_middle .header_icons .search_pulldown.on {
    display: block;
  }
  .main_menu {
    padding: 0;
    overflow: visible;
  }
  .main_menu .main_burger {
    width: 1rem;
    display: block;
    font-size: 1.25rem;
    margin-right: 1.25rem;
  }
  .main_menu ul {
    width: 1070px;
    margin: 0 auto;
    overflow: visible;
  }
  .main_menu ul > li {
    width: 6.25rem;
    margin-right: 1.875rem;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 600;
  }
  .main_menu ul > li a {
    display: block;
    line-height: 2.8125rem;
    white-space: nowrap;
  }
  .main_menu ul > li:hover .sub_menu {
    display: block;
  }
  .main_menu ul > li:nth-child(1) {
    display: none;
  }
  .main_menu ul > li .sub_menu {
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 6.875rem;
    padding: 0.3125rem 0;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 20;
  }
  .main_menu ul > li .sub_menu li {
    width: 100%;
    display: block;
    margin: 0;
  }
  .main_menu ul > li .sub_menu li a {
    line-height: 2.1875rem;
    font-size: 1.125rem;
    padding: 0.25rem;
    color: #666;
    font-weight: 400;
    text-align: center;
  }
  .main_menu ul > li .sub_menu li a:hover {
    color: #00CD3C;
    background-color: #f9f9f9;
  }
  .pc_menu_fulldown {
    position: absolute;
    display: none;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
  }
  .full_menu {
    display: block;
  }
  .full_menu_inner {
    width: 1070px;
    margin: 0 auto;
    display: flex;
    list-style: none;
    padding-left: 2.5rem;
  }
  .full_menu_inner > li {
    width: 6.25rem;
    padding-bottom: 1.875rem;
    margin-right: 1.75rem;
    text-align: center;
  }
  .full_menu_inner > li ul {
    list-style: none;
  }
  .full_menu_inner > li ul li a {
    display: block;
    padding-bottom: 0.625rem;
    line-height: 1.875rem;
    font-size: 1.125rem;
    color: #666;
    font-weight: 400;
    text-decoration: none;
  }
  .full_menu_inner > li ul li a:hover {
    color: #00CD3C;
  }
  .pc_menu_fulldown.is-active ~ .main_menu .sub_menu {
    display: none !important;
  }
  .footer {
    width: 1070px;
    margin: 0 auto;
    margin-top: 2.5rem;
  }
  .footer_top_large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.625rem;
  }
  .footer_top_large .footer_logo {
    margin: 0;
  }
  .footer_top_large .footer_func {
    display: flex;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .footer_top_large .footer_func a {
    color: #373737;
  }
  .footer_top_large .footer_func a:hover {
    color: #00CD3C;
  }
  .footer_service {
    margin-top: 0.625rem;
    justify-content: start;
  }
  .footer_service li {
    font-size: 1.125rem;
  }
  .footer_service li:hover, .footer_service li:active {
    color: #00CD3C;
  }
  .info_toggle {
    display: none;
  }
  .info_content_large {
    display: block;
    text-align: left;
    font-size: 1.0625rem;
  }
  .footer_sns {
    padding-left: 1.25rem;
  }
  .footer_sns h3 {
    text-align: start;
    font-size: 1.125rem;
  }
  .footer_sns .icon_sns {
    justify-content: start;
  }
  .footer_sns .icon_sns li {
    width: 2rem;
  }
  .full_player .play_screen_layer .mid_box .img_box,
  .full_player .play_screen_layer .mid_box .lyric_box {
    width: 25rem;
    height: 25rem;
    min-width: 25rem;
  }
}/*# sourceMappingURL=layout.css.map */