@charset "UTF-8";
* {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html {
  overflow: hidden;
  font-size: 16px;
  font-family: "Pretendard", sans-serif;
  height: 100vh;
}

body {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

ul, li {
  list-style: none;
}

html, body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.mobile-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
}

.btn-s {
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-s a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-m {
  height: 3.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-m a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-l {
  height: 4rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-l a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-p1 {
  background: #1e1e1e;
  color: #fff;
}

.btn-p2 {
  background: #000;
  color: #fff;
}

.btn-p3 {
  background: #aab0b4;
  color: #fff;
}

.btn-s1 {
  background: #e6e9eb;
  color: #4a4d4f;
}

.btn-s2 {
  background: #dbdee1;
  color: #4a4d4f;
}

.btn-s3 {
  background: #f0f3f5;
  color: #aab0b4;
}

.btn-t1 {
  background: #fff;
  border: 1px solid #dbdee1;
  color: #4a4d4f;
}

.btn-t2 {
  background: #aab0b4;
  border: 1px solid #dbdee1;
  color: #4a4d4f;
}

.btn-t3 {
  background: #fff;
  border: 1px solid #dbdee1;
  color: #aab0b4;
}

.w100 {
  width: 100% !important;
}

/*LOADING*/
#box-container {
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
}

.boxes {
  width: 1.5rem;
  height: 1.5rem;
  background: #ffab1c;
  position: relative;
}

.box-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box1 {
  position: relative;
  animation: moveBox1 1.5s ease-in-out infinite;
  left: 0;
}

@keyframes moveBox1 {
  0% {
    left: 0;
  }
  25% {
    top: 0;
    left: 3rem;
  }
  50% {
    left: 3rem;
    top: 3rem;
  }
  75% {
    top: 3rem;
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}
.box2 {
  background: #f2f6f8;
  left: 1.5rem;
}

.box3 {
  animation: moveBox3 1.5s ease-in-out infinite;
}

@keyframes moveBox3 {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: -3rem;
    left: 0;
  }
  50% {
    top: -3rem;
    left: 3rem;
  }
  75% {
    top: 0;
    left: 3rem;
  }
  100% {
    top: 0;
    left: 0;
  }
}
/*LOADING*/
.check-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.5rem;
}
.check-wrap .checkbox-label {
  display: flex;
  align-items: center;
  font-weight: 500;
  /* 기본 체크박스 숨기기 */
  /* 체크박스 스타일 */
  /* 체크 시 박스 색상 변경 */
  /* 체크 시 체크 아이콘 표시 */
}
.check-wrap .checkbox-label input[type=checkbox] {
  appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.check-wrap .checkbox-label .custom-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* 기본 SVG 스타일 */
}
.check-wrap .checkbox-label .custom-checkbox svg {
  width: 2.5rem;
  height: 2.5rem;
  /* 체크되지 않은 상태 (테두리만 존재) */
  /* 체크되지 않은 상태에서 체크 아이콘 숨김 */
}
.check-wrap .checkbox-label .custom-checkbox svg rect {
  fill: none;
  stroke: #C7CCD0;
  stroke-width: 1.5;
  transition: fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
}
.check-wrap .checkbox-label .custom-checkbox svg path {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.check-wrap .checkbox-label input[type=checkbox]:checked + .custom-checkbox svg rect {
  fill: #1E1E1E; /* 검은색 박스 */
  stroke: none; /* 테두리 제거 */
}
.check-wrap .checkbox-label input[type=checkbox]:checked + .custom-checkbox svg path {
  opacity: 1;
  stroke: white;
}

body {
  height: 100vh;
}

.image-wrap {
  width: 9.25rem;
  height: 9.25rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.image-wrap .thumbnail {
  width: 9.25rem;
  height: 9.25rem;
}
.image-wrap .thumbnail img {
  width: 100%;
}
.image-wrap .new {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: #F04343;
  color: #fff;
  font-size: 0.75rem;
  width: 2.25rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.image-wrap .title-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image-wrap .title-box .title {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.25rem;
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.image-wrap .title-box .bg {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
}
.image-wrap .title-box .bg img {
  width: 100%;
  height: 100%;
}
.image-wrap .title-box .bg.small img {
  width: 130%;
}
.image-wrap .btn-wrap {
  position: absolute;
  right: 0.5rem;
  top: 0.75rem;
  z-index: 3;
  display: flex;
}
.image-wrap .btn-wrap img {
  width: 1.5rem;
}
.image-wrap .btn-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
}
.image-wrap .btn-wrap a img {
  width: 1.5rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding-top: env(safe-area-inset-top);
}
.header .header-wrap {
  width: 100%;
  max-width: 64rem;
  height: 3.5rem;
  padding: 0 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header .header-wrap {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
.header .header-wrap .logo img {
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .logo {
    display: none;
  }
}
.header .header-wrap .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .header .header-wrap .nav {
    position: inherit;
    left: 0;
    transform: inherit;
  }
}
.header .header-wrap .nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.header .header-wrap .nav ul li {
  width: 5rem;
  height: 3rem;
  font-weight: 400;
  color: #aab0b4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .nav ul li {
    font-size: 1.25rem;
    line-height: 2rem;
    padding: 0.5rem 0.75rem;
    width: auto;
  }
}
.header .header-wrap .nav ul li.on {
  color: #1e1e1e;
  font-weight: 700;
}
.header .header-wrap .nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-wrap .menu {
  display: flex;
  align-items: center;
}
.header .header-wrap .menu .sch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .header-wrap .menu .sch-wrap img {
  width: 3rem;
  height: 3rem;
}
.header .header-wrap .menu .sch-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-wrap .menu .sch-wrap a img {
  width: 3rem;
  height: 3rem;
}
.header .header-wrap .menu .user-wrap {
  margin-left: 1.25rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .menu .user-wrap {
    display: none;
  }
}
.header .header-wrap .menu .user-wrap .user-box {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header .header-wrap .menu .user-wrap .user-box .user-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.header .header-wrap .menu .user-wrap .user-box .user-type {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  color: #1e1e1e;
  opacity: 0.6;
}
.header .header-wrap .menu .user-wrap .user-image {
  margin-left: 0.5rem;
}
.header .header-wrap .menu .user-wrap .user-image span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #dbdee1;
}
.header .header-wrap .menu .user-wrap .user-image span img {
  width: 100%;
}
.header .header-wrap .menu .icon-menu {
  width: 3rem;
  height: 3rem;
  display: flex;
  cursor: pointer;
}
.header .header-wrap .menu .icon-menu img {
  width: 100%;
}
.header .header-wrap .menu .icon-menu a {
  width: 100%;
  height: 100%;
  display: flex;
}
.header .header-wrap .menu .icon-menu a img {
  width: 100%;
}

.sidebar {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}
.sidebar .menu-bg {
  background: rgba(30, 30, 30, 0.3);
  width: 100%;
  height: 100%;
}
.sidebar .menu-box {
  position: absolute;
  z-index: 9;
  width: 19rem;
  top: 0;
  right: 0;
  height: calc(100% - 4.75rem);
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .sidebar .menu-box {
    height: calc(100% - 3.5rem);
  }
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box {
    width: 100%;
    height: calc(100% - 4rem);
    overflow-y: auto;
  }
}
.sidebar .menu-box .close-wrap {
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .close-wrap {
    right: 0.5rem;
    height: 3.5rem;
    top: 0;
  }
}
.sidebar .menu-box .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.sidebar .menu-box .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .menu-box .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.sidebar .menu-box .top-user {
  padding: 3.25rem 0 1.5rem 0;
  margin-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .top-user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding: 3rem 0 1.5rem;
    border-bottom: none;
  }
}
.sidebar .menu-box .top-user .profile-image span {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #dbdee1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sidebar .menu-box .top-user .profile-image span img {
  width: 100%;
}
.sidebar .menu-box .top-user .nick {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  height: 1.5rem;
  margin-top: 0.5rem;
}
.sidebar .menu-box .top-user .business_type {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #1e1e1e;
  font-weight: 400;
  height: 1.5rem;
  opacity: 0.6;
}
.sidebar .menu-box .m-mypage {
  display: none;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .m-mypage {
    display: flex;
    padding: 0 1rem;
    gap: 0.5rem;
  }
}
.sidebar .menu-box .m-mypage .mytype {
  width: calc(50% - 0.25rem);
  height: 8rem;
  border: 1px solid #e6e9eb;
  border-radius: 0.5rem;
}
.sidebar .menu-box .m-mypage .mytype h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.25rem;
  padding: 0.75rem 0.75rem 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.sidebar .menu-box .m-mypage .mytype h4 span {
  cursor: pointer;
}
.sidebar .menu-box .m-mypage .mytype h4 span img {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item {
  width: 2.5rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .m-mypage .mytype .type-wrap .item {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item .icon img {
  width: 100%;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item .name {
  color: #1e1e1e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5rem;
  flex-direction: column;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item .name span {
  display: block;
}
.sidebar .menu-box .m-mypage .mytype .type-wrap .item .name {
  color: #1e1e1e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
}
.sidebar .menu-box .sidebar-menu {
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .sidebar-menu {
    padding: 0 1.125rem;
    margin-top: 1.5rem;
  }
}
.sidebar .menu-box .sidebar-menu ul {
  display: flex;
  flex-direction: column;
}
.sidebar .menu-box .sidebar-menu ul li {
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sidebar .menu-box .sidebar-menu ul li {
    font-size: 1rem;
    font-weight: 400;
  }
  .sidebar .menu-box .sidebar-menu ul li:first-of-type, .sidebar .menu-box .sidebar-menu ul li:last-of-type {
    display: none;
  }
}
.sidebar .menu-box .sidebar-menu ul li span {
  width: 1rem;
  height: 1rem;
  background: #f04343;
  color: #fff;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.25rem;
}
.sidebar .menu-box .sidebar-menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sidebar .menu-box .sidebar-menu ul li a span {
  width: 1rem;
  height: 1rem;
  background: #f04343;
  color: #fff;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.25rem;
}
.sidebar .menu-box .mobile-customer {
  margin-top: 1.5rem;
  padding: 0 1.125rem;
}
.sidebar .menu-box .mobile-customer h2 {
  font-size: 1.25rem;
  font-weight: 700;
  height: 2rem;
  display: flex;
  align-items: center;
}
.sidebar .menu-box .mobile-customer .item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-top: 0.75rem;
}
.sidebar .menu-box .mobile-customer .item .box {
  width: calc(50% - 0.25rem);
  height: 8rem;
  border-radius: 0.5rem;
  background: #f0f3f5;
  padding: 1rem 0.75rem 0.75rem 1.25rem;
  position: relative;
}
.sidebar .menu-box .mobile-customer .item .box h3 {
  line-height: 1.5rem;
  font-weight: 600;
  color: #4a4d4f;
}
.sidebar .menu-box .mobile-customer .item .box.box2 {
  width: 100% !important;
  left: 0;
}
.sidebar .menu-box .mobile-customer .item .box.box2 p {
  color: #6f7376;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.sidebar .menu-box .mobile-customer .item .box img {
  position: absolute;
  width: 2.75rem;
  bottom: 0.75rem;
  right: 0.75rem;
}
.sidebar .menu-box .mobile-customer .link-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 1.5rem 0;
}
.sidebar .menu-box .mobile-customer .link-logout a {
  width: 100%;
  padding: 0.5rem 0;
  line-height: 1.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 600;
}

.myinfo {
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  position: fixed;
  right: -100%; /* 처음에 오른쪽 밖으로 */
  background: #fff;
  transition: right 0.4s ease;
}
.myinfo.active {
  right: 0;
}
.myinfo .menu-bg {
  background: rgba(30, 30, 30, 0.3);
  width: 100%;
  height: 100%;
}
.myinfo .mypage-cont {
  position: absolute;
  width: 100%;
  height: calc(100% - 4.25rem);
  background: #f6f8f9;
  top: 0;
  left: 0;
}
.myinfo .mypage-cont h2 {
  font-size: 1.25rem;
  padding: 0 0.5rem;
  height: 3.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.myinfo .mypage-cont h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.myinfo .mypage-cont h2 .back-wrap img {
  width: 1.5rem;
}
.myinfo .mypage-cont h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myinfo .mypage-cont h2 .close-wrap {
  position: absolute;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.myinfo .mypage-cont h2 .close-wrap img {
  width: 1.5rem;
}
.myinfo .mypage-cont .mypage-info {
  padding: 1rem;
  background: #fff;
}
.myinfo .mypage-cont .mypage-info dl {
  display: flex;
  padding: 1rem 0 1rem 0.125rem;
  flex-direction: column;
}
.myinfo .mypage-cont .mypage-info dl dt {
  width: 100%;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 600;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.myinfo .mypage-cont .mypage-info dl dd {
  width: 100%;
  margin-top: 0.5rem;
  color: #1e1e1e;
  font-weight: 500;
  min-height: 1.5rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.myinfo .mypage-cont .mypage-link-wrap {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem 0;
  font-weight: 500;
  color: #6f7376;
  line-height: 1.5rem;
}
.myinfo .mypage-cont .mypage-link-wrap .btn-link {
  display: flex;
  align-items: center;
  height: 3rem;
  margin-top: 0.5rem;
  color: #4a4d4f;
}
.myinfo .mypage-cont .mypage-link-wrap .btn-link a {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.myinfo .mypage-cont .mypage-link-wrap .btn-link img {
  width: 1.5rem;
}

.mobile-mypage-popup {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .mobile-mypage-popup {
    display: block;
    position: fixed;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
}
.mobile-mypage-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .mobile-mypage-popup.active .popup-mypage {
    transform: translateY(0) !important;
  }
}
.mobile-mypage-popup.is-closing {
  opacity: 0; /* 서서히 사라지게 */
}
@media screen and (max-width: 767px) {
  .mobile-mypage-popup.is-closing .popup-mypage {
    transform: translateY(100%) !important;
  }
}

.popup {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 12;
}
.popup .popup-bg {
  background: rgba(30, 30, 30, 0.3);
  width: 100%;
  height: 100%;
}
.popup .popup-layout {
  position: absolute;
  z-index: 9;
  width: 40rem;
  height: 27.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout {
    bottom: 0;
    transform: none;
    left: 0;
    top: auto;
    border-radius: 1rem 1rem 0 0;
    width: 100%;
    height: 100%;
  }
}
.popup .popup-layout h2 {
  height: 4.5rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding: 1.5rem 1.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout h2 {
    padding: 1rem 1rem 0 1.5rem;
    height: 4.75rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-layout h2 .text {
    display: none;
  }
}
.popup .popup-layout h2 .close-wrap {
  position: absolute;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout h2 .close-wrap {
    top: 1rem;
  }
}
.popup .popup-layout h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-layout h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-layout h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-layout .popup-content {
  padding: 1rem 2rem 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content {
    flex-direction: column;
    align-items: center;
  }
}
.popup .popup-layout .popup-content .album {
  width: 12.25rem;
  height: 16.75rem;
  border-radius: 1rem;
  background: #ad4d5e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album {
    height: 12.25rem;
  }
}
.popup .popup-layout .popup-content .album .image-wrap {
  width: 12.25rem;
  height: 12.25rem;
  margin-left: 0;
}
.popup .popup-layout .popup-content .album .image-wrap .thumbnail {
  width: 100%;
  height: 100%;
}
.popup .popup-layout .popup-content .album .image-wrap .title-box .title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 1rem;
  height: 3.25rem;
}
.popup .popup-layout .popup-content .album .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap {
    position: absolute;
    bottom: 1rem;
    left: 0;
    padding: 0 1rem;
    width: 100%;
    gap: 0.5rem;
  }
}
.popup .popup-layout .popup-content .album .btn-wrap .btn-m {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}
.popup .popup-layout .popup-content .album .btn-wrap .btn-m.btn-s1 {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m.btn-s1 {
    background: #e6e9eb;
  }
}
.popup .popup-layout .popup-content .album .btn-wrap .btn-m.btn-p1 {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m.btn-p1 {
    background: #1e1e1e;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m {
    width: 50%;
    height: 3.5rem;
  }
}
.popup .popup-layout .popup-content .album .btn-wrap .btn-m span {
  display: none;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m span {
    display: flex;
    align-items: center;
  }
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m span img {
    display: flex;
    width: 1.5rem;
    margin-right: 0.5rem;
  }
}
.popup .popup-layout .popup-content .album .btn-wrap .btn-m img {
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album .btn-wrap .btn-m img {
    display: none;
  }
}
.popup .popup-layout .popup-content .album-text {
  width: calc(100% - 14rem);
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.popup .popup-layout .popup-content .album-text h3 {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  height: 1.25rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text h3 {
    margin-top: 1.5rem;
  }
}
.popup .popup-layout .popup-content .album-text .hashtag {
  display: flex;
  margin-top: 0.875rem;
}
.popup .popup-layout .popup-content .album-text .hashtag .item {
  height: 2rem;
  border: 1px solid #dbdee1;
  border-radius: 2.5rem;
  padding: 0.5rem 0.75rem;
  color: #6f7376;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-layout .popup-content .album-text .hashtag .item:not(:last-of-type) {
  margin-right: 0.5rem;
}
.popup .popup-layout .popup-content .album-text .hashtag .item span {
  margin-right: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: #ce7181;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-layout .popup-content .album-text .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #4a4d4f;
  padding: 1rem 0;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .popup .popup-layout .popup-content .album-text .text {
    border-bottom: 1px solid #f0f3f5;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text .text {
    text-align: center;
    width: 100%;
  }
}
.popup .popup-layout .popup-content .album-text h4 {
  font-size: 0.875rem;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.popup .popup-layout .popup-content .album-text .recommend {
  display: flex;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .popup .popup-layout .popup-content .album-text .recommend {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text .recommend {
    justify-content: center;
    margin-top: 0.75rem;
  }
}
.popup .popup-layout .popup-content .album-text .recommend .item {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #e6e9eb;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6f7376;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text .recommend .item {
    width: 5rem;
    height: 5rem;
  }
}
.popup .popup-layout .popup-content .album-text .recommend .item img {
  width: 1.75rem;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-layout .popup-content .album-text .recommend .item img {
    width: 2.25rem;
  }
}
.popup .popup-filter {
  position: absolute;
  z-index: 9;
  width: 45rem;
  height: 24rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 1023px) {
  .popup .popup-filter {
    width: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-filter {
    padding: 0;
    width: 100%;
    height: 31.5rem;
    top: auto;
    bottom: 0;
    left: 0;
    transform: inherit;
    border-radius: 1rem 1rem 0 0;
  }
}
.popup .popup-filter h2 {
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup .popup-filter h2 {
    height: 4rem;
    padding: 1rem 1rem 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-filter h2 span {
    padding-top: 0.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
  }
}
.popup .popup-filter h2 .close-wrap {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .popup .popup-filter h2 .close-wrap {
    right: 1rem;
  }
}
.popup .popup-filter h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-filter h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-filter h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-filter .popup-content {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .popup .popup-filter .popup-content {
    padding: 1.5rem 1rem 4.5rem 1rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 1023px) {
  .popup .popup-filter .popup-content .theme {
    padding: 0;
  }
}
.popup .popup-filter .popup-content .theme .list {
  width: calc(100% - 2rem);
}
.popup .popup-filter .popup-content .theme .list .item {
  color: #888d90;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.popup .popup-filter .popup-content .theme .list .item.on {
  color: #1e1e1e;
  font-weight: 600;
}
.popup .popup-filter .popup-btn-wrap {
  position: absolute;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: calc(100% - 4rem);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-filter .popup-btn-wrap {
    width: 100%;
    height: 4.5rem;
    align-items: baseline;
    padding: 0 1rem;
    bottom: 0;
  }
}
.popup .popup-filter .popup-btn-wrap span:first-of-type {
  width: 5.625rem;
}
.popup .popup-filter .popup-btn-wrap span:last-of-type {
  width: calc(100% - 5.625rem);
}
.popup .popup-broad {
  position: absolute;
  z-index: 9;
  width: 40rem;
  height: 27.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-broad {
    width: 100%;
    height: 35rem;
    bottom: 0;
    top: auto;
    left: 0;
    transform: inherit;
    border-radius: 1rem 1rem 0 0;
  }
}
.popup .popup-broad h2 {
  height: 4.5rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding: 1.5rem 1.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-broad h2 {
    padding: 1rem 1rem 0 1.5rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-broad h2 .text {
    display: none;
  }
}
.popup .popup-broad h2 .close-wrap {
  position: absolute;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .popup .popup-broad h2 .close-wrap {
    top: 1rem;
  }
}
.popup .popup-broad h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-broad h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-broad h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-broad .popup-content {
  padding: 1rem 2rem 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 4.5rem);
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content {
    padding: 1rem 1.5rem 0;
  }
}
.popup .popup-broad .popup-content .item {
  width: 100%;
  height: 3.75rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f3f5;
}
@media screen and (max-width: 1023px) {
  .popup .popup-broad .popup-content .item {
    height: 3.75rem;
    border-bottom: 1px solid #f0f3f5;
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content .item {
    height: 4rem;
    padding-bottom: 0.5rem;
  }
}
.popup .popup-broad .popup-content .item .title {
  display: flex;
  align-items: center;
  height: 3rem;
  font-weight: 500;
  width: calc(100% - 6.5rem);
}
@media screen and (max-width: 1023px) {
  .popup .popup-broad .popup-content .item .title {
    flex-direction: inherit;
    width: calc(100% - 7.5rem);
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content .item .title {
    flex-direction: column;
    align-items: start;
    width: calc(100% - 6.75rem);
  }
}
.popup .popup-broad .popup-content .item .title span {
  color: #ec9508;
  background: rgba(255, 171, 28, 0.2);
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  width: 3.5rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .popup .popup-broad .popup-content .item .title span {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}
.popup .popup-broad .popup-content .item .title p {
  height: 1.5rem;
  line-height: 1.5rem;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  overflow: hidden;
  width: calc(100% - 4.25rem);
  margin-left: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .popup .popup-broad .popup-content .item .title p {
    width: calc(100% - 4.25rem);
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content .item .title p {
    width: 100%;
    margin-left: 0;
  }
}
.popup .popup-broad .popup-content .item .time {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 400;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: end;
}
.popup .popup-broad .popup-content .item .btn-wrap {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}
.popup .popup-broad .popup-content .item .btn-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content .item .btn-wrap a {
    padding: 0.75rem 0.5rem 0.75rem 1rem;
  }
}
.popup .popup-broad .popup-content .item .btn-wrap a img {
  width: 1.25rem;
}
.popup .popup-broad .popup-content .item .btn-wrap a a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-broad .popup-content .item .btn-wrap a a img {
  width: 1.5rem;
}
.popup .popup-broad .popup-content .text {
  margin-top: 1.5rem;
  line-height: 1.5rem;
  color: #1e1e1e;
  font-size: 0.875rem;
  font-weight: 400;
  height: calc(100% - 3.75rem);
  overflow-y: auto;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-broad .popup-content .text {
    height: calc(100% - 4rem);
  }
}
.popup .popup-broad .popup-content .text::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.popup .popup-mypage {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  bottom: auto !important;
  width: 43.5rem !important;
  height: 32rem !important;
  box-shadow: -0.25rem 0.625rem rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.5s ease;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage {
    top: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 38.125rem !important;
    border-radius: 1rem 1rem 0 0 !important;
    transform: translateY(100%) !important;
  }
}
.popup .popup-mypage h2 {
  height: 4.75rem;
  padding: 1rem 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage h2 {
    padding: 1rem 1rem;
    flex-direction: column;
    align-items: baseline;
    height: 3.75rem;
    padding-top: 1.5rem;
    line-height: 2rem;
  }
}
.popup .popup-mypage h2 span {
  font-size: 0.75rem;
  color: #1e1e1e;
  opacity: 0.5;
  margin-left: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage h2 span {
    line-height: 1rem;
    margin-top: 0.25rem;
  }
}
.popup .popup-mypage h2 .close-wrap {
  position: absolute;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-mypage h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-mypage h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-mypage h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-mypage .popup-content {
  margin-top: 0;
  padding: 2rem 2rem 0rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage .popup-content {
    padding: 2rem 1rem 0 1rem;
  }
}
.popup .popup-mypage .popup-content .item.on {
  background: #ffab1c;
}
.popup .popup-mypage .popup-content .item.on .name {
  color: #1e1e1e;
  font-weight: 600;
}
.popup .popup-mypage .popup-content .text {
  margin-top: 1.5rem;
  line-height: 1.5rem;
  color: #1e1e1e;
  font-size: 0.875rem;
  font-weight: 400;
  height: 38.125rem;
  overflow-y: auto;
}
.popup .popup-mypage .popup-content .text::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.popup .popup-mypage .popup-content .recommend-type {
  padding: 0 !important;
}
.popup .popup-mypage .popup-btn-wrap {
  position: absolute;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: calc(100% - 4rem);
  font-size: 1rem;
  padding: 0 2rem;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage .popup-btn-wrap {
    padding: 1.5rem 1rem;
    bottom: 0;
  }
}
.popup .popup-mypage .popup-btn-wrap button:first-of-type {
  width: 4.75rem !important;
}
.popup .popup-mypage .popup-btn-wrap button:last-of-type {
  width: 6.5rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .popup .popup-mypage .popup-btn-wrap button:last-of-type {
    width: calc(100% - 5.25rem) !important;
  }
}
.popup .popup-mypage .popup-btn-wrap {
  width: 100% !important;
}
.popup .popup-history {
  position: absolute;
  z-index: 9;
  width: 40rem;
  height: 34rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .popup .popup-history {
    width: 100%;
    height: 100%;
    border-radius: 1rem 1rem 0 0;
  }
}
.popup .popup-history h2 {
  height: 4.75rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding: 1.5rem 1.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-history h2 {
    padding: 1rem 1rem 0 1.5rem;
  }
}
.popup .popup-history h2 span {
  font-size: 0.75rem;
  color: #1e1e1e;
  opacity: 0.5;
  margin-left: 0.5rem;
  font-weight: 500;
}
.popup .popup-history h2 .close-wrap {
  position: absolute;
  right: 1.5rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-history h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-history h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-history h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-history .popup-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 4.75rem);
}
.popup .popup-history .popup-content .history-wrap {
  height: 100%;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 2rem;
}
.popup .popup-history .popup-content .history-wrap::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.popup .popup-history .popup-content .history-wrap .item {
  width: 100%;
  display: flex;
  align-items: center;
  height: 4.5rem;
}
.popup .popup-history .popup-content .history-wrap .item:not(:last-of-type) {
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .popup .popup-history .popup-content .history-wrap .item {
    border-bottom: 1px solid #f0f3f5;
  }
}
.popup .popup-history .popup-content .history-wrap .item .thumbnail {
  width: 3rem;
  height: 3rem;
  position: relative;
}
.popup .popup-history .popup-content .history-wrap .item .thumbnail .eq {
  position: absolute;
  display: flex;
  margin-left: 0;
}
.popup .popup-history .popup-content .history-wrap .item .thumbnail img {
  width: 100%;
}
.popup .popup-history .popup-content .history-wrap .item .title-wrap {
  margin-left: 0.75rem;
  width: calc(100% - 9rem);
}
.popup .popup-history .popup-content .history-wrap .item .title-wrap .title {
  font-size: 0.875rem;
  height: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.popup .popup-history .popup-content .history-wrap .item .title-wrap .title span.current {
  color: #ec9508;
  background: rgba(255, 171, 28, 0.2);
  padding: 0.125rem 0.25rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  margin-right: 0.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .popup .popup-history .popup-content .history-wrap .item .title-wrap .title span.current {
    display: none;
  }
}
.popup .popup-history .popup-content .history-wrap .item .title-wrap .artist {
  font-size: 0.75rem;
  height: 1rem;
  opacity: 0.6;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.popup .popup-history .popup-content .history-wrap .item .like-wrap {
  width: 4.125rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.popup .popup-history .popup-content .history-wrap .item .like-wrap span {
  width: 4.125rem;
  height: 1.5rem;
  background: #f0f3f5;
  color: #6f7376;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}
.popup .popup-history .popup-content .history-wrap .item .like-wrap span.on {
  background: #ffab1c;
  color: #1e1e1e;
}
.popup .popup-history .popup-content .history-wrap .item .like-wrap span img {
  width: 0.875rem;
  margin-right: 0.125rem;
}
.popup .popup-history .popup-content .history-wrap .item .icon-play span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  cursor: pointer;
}
.popup .popup-history .popup-content .history-wrap .item .icon-play span img {
  width: 2.5rem;
}
.popup .popup-history .popup-content .history-wrap .item .music-info {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.popup .popup-schedule {
  position: absolute;
  z-index: 10000;
  width: 100vh;
  height: 86.458vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
.popup .popup-schedule h2 {
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 700;
  position: relative;
  margin: 1.5rem 2rem 0.5rem;
}
.popup .popup-schedule h2 span {
  font-size: 0.75rem;
  color: #1e1e1e;
  opacity: 0.5;
  margin-left: 0.5rem;
  font-weight: 500;
}
.popup .popup-schedule h2 .close-wrap {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-schedule h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-schedule h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-schedule h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-schedule .popup-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 23.438vh);
}
.popup .popup-schedule .popup-content .search-box {
  width: 100%;
  height: 7.292vh;
  padding: 0 2rem 1.5rem;
}
.popup .popup-schedule .popup-content .search-box .input-wrap {
  display: flex;
  height: 3.5rem;
  background: #f0f3f5;
  border-radius: 3.5rem;
  padding: 1rem 1.75rem;
  position: relative;
  font-size: 0.875rem;
  width: 100%;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .sch-text {
  height: 1.5rem;
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  font-weight: 500;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .sch-text .sch-result-text {
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 500;
  margin-left: 0.75rem;
}
.popup .popup-schedule .popup-content .search-box .input-wrap input {
  border: none;
  background: none;
  width: 100.138vh;
}
.popup .popup-schedule .popup-content .search-box .input-wrap input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.popup .popup-schedule .popup-content .search-box .input-wrap input:focus {
  outline: none;
}
.popup .popup-schedule .popup-content .search-box .input-wrap input.input-w1 {
  width: 109.63vh;
}
.popup .popup-schedule .popup-content .search-box .input-wrap input::placeholder {
  color: #888d90;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch img {
  width: 1.5rem;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch2 {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch2 a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-schedule .popup-content .search-box .input-wrap .btn-sch2 img {
  width: 1.5rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap {
  height: calc(100% - 7.292vh);
  overflow-y: auto;
  padding: 1rem 1rem 2rem 2rem;
  overflow-y: auto;
  scrollbar-arrow-color: #dbdee1;
  scrollbar-face-color: #dbdee1;
  scrollbar-shadow-color: #dbdee1;
  scrollbar-track-color: #dbdee1;
  /* scrollbar */
}
.popup .popup-schedule .popup-content .schedule-list-wrap::-webkit-scrollbar {
  width: 1rem;
  height: 5px;
}
.popup .popup-schedule .popup-content .schedule-list-wrap::-webkit-scrollbar-track {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
  background: #dbdee1;
  border: 5px solid #fff;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list-box:not(:first-of-type) {
  margin-top: 2rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .no-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #aab0b4;
  font-weight: 500;
  line-height: 1.5rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #4a4d4f;
  line-height: 1.5rem;
  padding: 0.5rem 0;
}
.popup .popup-schedule .popup-content .schedule-list-wrap h3 span {
  margin-left: 0.25rem;
  color: #aab0b4;
}
.popup .popup-schedule .popup-content .schedule-list-wrap h3 img {
  width: 1rem;
  margin-right: 0.25rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item {
  gap: 0.5rem;
  border: 1px solid #e6e9eb;
  border-radius: 0.5rem;
  background: #f6f8f9;
  width: 22.135vh;
  height: 22.135vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  cursor: pointer;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item.on h4 {
  color: #fff;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item.on .image-wrap .select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.8);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item.on .image-wrap .select img {
  width: 1.5rem;
  margin-bottom: 0.25rem;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #6f7376;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item .image-wrap {
  width: 14.583vh;
  height: 14.583vh;
  cursor: default;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item .image-wrap .select {
  display: none;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item .image-wrap .thumbnail {
  width: 14.583vh;
  height: 14.583vh;
}
.popup .popup-schedule .popup-content .schedule-list-wrap .schedule-list .item .image-wrap .title-box .title {
  font-size: 0.75rem;
  line-height: 1rem;
  bottom: 0.625rem;
  font-weight: 500;
  padding: 0 0.625rem;
}
.popup .popup-schedule .popup-content .btn-all {
  padding: 0.75rem 0;
  color: #4a4d4f;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 3rem;
  margin-top: 0.25rem;
}
.popup .popup-schedule .popup-footer-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 13.021vh;
  background: #fff;
  padding: 1.25rem 2rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  box-shadow: -0.25rem 0.5rem 0 rgba(0, 0, 0, 0.08);
  border-top: 1px solid #dbdee1;
  width: 100%;
  justify-content: space-between;
}
.popup .popup-schedule .popup-footer-wrap .channel-wrap {
  display: flex;
  align-items: center;
}
.popup .popup-schedule .popup-footer-wrap .channel-wrap .image-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
}
.popup .popup-schedule .popup-footer-wrap .channel-wrap .image-wrap .thumbnail {
  width: 3.5rem;
  height: 3.5rem;
}
.popup .popup-schedule .popup-footer-wrap .channel-wrap .image-wrap .title-box .title {
  font-size: 9px;
  font-weight: 400;
  line-height: 0.6875rem;
  transform: scale(0.8);
}
.popup .popup-schedule .popup-footer-wrap .channel-wrap .title-wrap {
  font-size: 1rem;
  padding-left: 1rem;
  color: #4a4d4f;
  font-weight: 500;
}
.popup .popup-schedule .popup-footer-wrap .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popup .popup-schedule .popup-footer-wrap .btn-wrap span:first-of-type {
  width: 9.896vh;
}
.popup .popup-schedule .popup-footer-wrap .btn-wrap span:last-of-type {
  width: 13.411vh;
}
.popup .popup-schedule-alert {
  position: absolute;
  z-index: 10000;
  width: 55.99vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem 2rem 2rem;
}
.popup .popup-schedule-alert.repeat-schedule {
  width: 48.438vh;
}
.popup .popup-schedule-alert h2 {
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 700;
  position: relative;
  padding-left: 0.25rem;
}
.popup .popup-schedule-alert h2 img {
  width: 2rem;
  margin-right: 0.5rem;
}
.popup .popup-schedule-alert h2 span {
  font-size: 0.75rem;
  color: #1e1e1e;
  opacity: 0.5;
  margin-left: 0.5rem;
  font-weight: 500;
}
.popup .popup-schedule-alert h2 .close-wrap {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .popup-schedule-alert h2 .close-wrap img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-schedule-alert h2 .close-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-schedule-alert h2 .close-wrap a img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup .popup-schedule-alert .popup-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}
.popup .popup-schedule-alert .popup-content .text {
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 400;
  line-height: 1.5rem;
  padding: 0 0.25rem 1rem;
}
.popup .popup-schedule-alert .popup-content .time {
  background: #f0f3f5;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: #6f7376;
  font-weight: 400;
  line-height: 1rem;
  margin-top: 1rem;
}
.popup .popup-schedule-alert .popup-content .time dl dd {
  position: relative;
  text-indent: 0.5rem;
}
.popup .popup-schedule-alert .popup-content .time dl dd:before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6f7376;
  top: 50%;
  transform: translateY(-50%);
}
.popup .popup-schedule-alert .popup-content .schedule-info .item {
  display: flex;
  font-size: 0.875rem;
  color: #4a4d4f;
  line-height: 1.5rem;
  font-weight: 400;
}
.popup .popup-schedule-alert .popup-content .schedule-info .item:not(:last-of-type) {
  margin-bottom: 0.75rem;
}
.popup .popup-schedule-alert .popup-content .schedule-info .item span {
  font-size: 0.75rem;
  color: #6f7376;
  height: 1.5rem;
  line-height: 1rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border: 1px solid #dbdee1;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.popup .popup-schedule-alert .popup-content h3 {
  height: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #4a4d4f;
  padding-left: 0.75rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .month {
  height: 2.5rem;
  margin-top: 0.5rem;
  padding: 0 0.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #4a4d4f;
  justify-content: space-between;
}
.popup .popup-schedule-alert .popup-content .calendar-box .month .btn-today {
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: #e6e9eb;
  font-size: 0.75rem;
  color: #4a4d4f;
  font-weight: 500;
  line-height: 1rem;
  cursor: pointer;
}
.popup .popup-schedule-alert .popup-content .calendar-box .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
  padding: 0 0.25rem 0.5rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .weekdays div {
  width: 2.25rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  coloR: #888d90;
  font-size: 0.875rem;
  font-weight: 600;
}
.popup .popup-schedule-alert .popup-content .calendar-box .weekdays div.holiday {
  color: #f04343;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
  padding: 0 0.25rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day {
  width: 2.25rem;
  height: 6.51vh;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item {
  width: 2.25rem;
  padding: 0.375rem 0.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition-duration: 0.2s;
  border: none;
  background: none;
  color: #4a4d4f;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item .reservation {
  width: 0.875rem;
  height: 0.875rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item .reservation img {
  width: 100%;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item.between {
  background: #f0f3f5;
  border-radius: 5.5rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item.focus {
  font-weight: 600;
  box-shadow: inset 0px 0px 0px 0.125rem #1e1e1e;
  border-radius: 5.5rem;
  background: none;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item .num {
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4d4f;
  cursor: pointer;
  transition-duration: 0.2s;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day .day-item .num.disabled {
  color: #c7ccd0;
  cursor: default;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day.current {
  box-shadow: inset 0 0 0 0.125rem #1e1e1e;
  border-radius: 5.5rem;
}
.popup .popup-schedule-alert .popup-content .calendar-box .days .day.current .num {
  color: #1e1e1e;
}
.popup .popup-schedule-alert .popup-content .month-move {
  display: flex;
  align-items: center;
  border: 1px solid #e6e9eb;
  border-radius: 0.5rem;
  height: 2.5rem;
  justify-content: center;
}
.popup .popup-schedule-alert .popup-content .month-move div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0.5rem 0;
  cursor: pointer;
}
.popup .popup-schedule-alert .popup-content .month-move div img {
  width: 1.5rem;
}
.popup .popup-schedule-alert .popup-content .month-move div:first-of-type {
  position: relative;
}
.popup .popup-schedule-alert .popup-content .month-move div:first-of-type:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: #e6e9eb;
}
.popup .popup-schedule-alert .popup-content .popup-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  color: #4a4d4f;
  font-size: 0.875rem;
  font-weight: 500;
}
.popup .popup-schedule-alert .popup-content .popup-btn-wrap .popup-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popup .popup-schedule-alert .popup-content .popup-btn-wrap .popup-btn .btn-s {
  width: 8.854vh;
}
.popup .popup-schedule-alert .popup-content .popup-btn-wrap .popup-btn2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
}
.popup .popup-schedule-alert .popup-content .popup-btn-wrap .popup-btn2 .btn-s {
  padding: 0.75rem 1.25rem;
}

.popup-confirm {
  /* DEFAULT */
}
.popup-confirm .popup-confirm-bg {
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.popup-confirm .credits {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.625rem 20px;
  border-radius: 5px;
  z-index: 100;
}
.popup-confirm .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55.99vh;
  height: auto;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 2rem;
  z-index: 11;
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.popup-confirm .popup h2 {
  height: 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
}
.popup-confirm .popup h2 span {
  display: flex;
  align-items: center;
}
.popup-confirm .popup h2 span img {
  margin-right: 0.5rem;
  width: 2rem;
}
.popup-confirm .popup h3 {
  height: 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
  padding-left: 0.25rem;
}
.popup-confirm .popup .popup-text {
  margin-top: 1rem;
  padding: 0 0.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #4a4d4f;
}
.popup-confirm .popup .popup-btn-wrap {
  display: flex;
  justify-content: end;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.popup-confirm .popup .popup-btn-wrap .btn-s {
  padding: 0.75rem 1.25rem;
  display: inline-flex;
}
.popup-confirm .popup .popup-btn-wrap .btn-s:first-of-type {
  margin-right: 0.5rem;
}
.popup-confirm .popup .popup-btn-wrap .error {
  background: #f04343;
  color: #fff;
}
.popup-confirm .popup.active {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.5, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.5, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.5, 1);
}
.popup-confirm .button {
  display: inline-block;
  padding: 0.625rem 30px;
  border-radius: 3px;
  color: #ffffff;
  position: relative;
  cursor: pointer;
}

.volume {
  background: #1e1e1e;
  width: 22.5rem;
  height: 17.5rem;
  position: absolute;
  border-radius: 1rem;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.25);
  right: 1rem;
  bottom: 6rem;
  z-index: 12;
}
@media screen and (max-width: 1023px) {
  .volume {
    display: none;
  }
}
.volume .volume-wrap {
  padding: 1rem 1rem 1rem 1.5rem;
}
.volume .volume-wrap h2 {
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.volume .volume-wrap h2 span {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  cursor: pointer;
}
.volume .volume-wrap h2 span img {
  width: 100%;
}
.volume .volume-wrap .item {
  padding: 1rem 0;
}
.volume .volume-wrap .item:not(:last-of-type) {
  border-bottom: 1px solid #4a4d4f;
}
.volume .volume-wrap .item h3 {
  color: #e6e9eb;
  font-size: 0.75rem;
  height: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.volume .volume-wrap .item h4 {
  color: #aab0b4;
  font-size: 0.6875rem;
  height: 1rem;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.controller-wrap {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.controller-wrap .volume-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.controller-wrap .volume-icon img {
  width: 1.5rem;
}
.controller-wrap .slider-container {
  width: 13.75rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  border-radius: 0.75rem;
  margin-left: 1rem;
}
.controller-wrap .slider-container.min-vol:before {
  content: "";
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 0.125rem;
  height: 0.875rem;
  background: #ec9508;
  border-radius: 1px;
  z-index: 1;
}
.controller-wrap .slider-container .slider-fill {
  width: 0;
  height: 100%;
  background: #ffab1c;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.controller-wrap .slider-container .slider-fill.full-width {
  border-radius: 0.75rem;
}
.controller-wrap .slider-container .slider-thumb {
  width: 13px;
  height: 30px;
  background: #ffab1c;
  border: 5px solid #fff;
  position: absolute;
  top: -3px;
  left: -3px;
  border-radius: 0.5rem;
  z-index: 2;
  cursor: pointer;
}
.controller-wrap .volume-num {
  font-size: 1.125rem;
  color: #fff;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  margin-left: 0.5rem;
}

.player-toggle {
  background: #1e1e1e;
  width: 100%;
  height: 27.5rem;
  position: absolute;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.25);
  left: 0;
  bottom: 0;
  z-index: 12;
  display: none;
}
@media screen and (max-width: 1023px) {
  .player-toggle {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .player-toggle {
    height: 35.75rem;
  }
}
.player-toggle .btn-toggle {
  width: 100%;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player-toggle .btn-toggle img {
  width: 1.25rem;
}
.player-toggle .nowplay {
  display: flex;
  align-items: center;
  height: 14rem;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .player-toggle .nowplay {
    height: calc(100% - 14rem);
  }
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay {
    height: calc(100% - 8.5rem);
    flex-direction: column;
    margin-top: 0;
    padding: 0 0.75rem;
  }
}
.player-toggle .nowplay .image-wrap {
  width: 50%;
  height: auto;
  border-radius: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .image-wrap {
    width: 11rem;
    margin-top: 6.25rem;
  }
}
.player-toggle .nowplay .image-wrap span {
  width: 14rem;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .image-wrap span {
    width: 11rem;
    height: 11rem;
  }
}
.player-toggle .nowplay .image-wrap span img {
  width: 100%;
}
.player-toggle .nowplay .song-info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info {
    width: 100%;
  }
}
.player-toggle .nowplay .song-info .channel-info {
  width: 21.25rem;
  height: 100%;
  background: #2f3132;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem 0.75rem 1.5rem;
  color: #fff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .channel-info {
    width: calc(100% - 1.5rem);
    height: 4.25rem;
    padding: 0.5rem 0.5rem 0.75rem 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 16.25rem;
  height: 3rem;
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap .channel-text {
  font-size: 0.75rem;
  height: 1rem;
  color: #c7ccd0;
  display: flex;
  align-items: center;
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap .channel-title {
  font-size: 1rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap .channel-title > img {
  width: 1.5rem;
  margin-right: 0.375rem;
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap .channel-title span {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  cursor: pointer;
}
.player-toggle .nowplay .song-info .channel-info .channel-title-wrap .channel-title span img {
  width: 0.875rem;
}
.player-toggle .nowplay .song-info .channel-info .channel-like-icon {
  position: relative;
  z-index: 4;
}
.player-toggle .nowplay .song-info .channel-info .channel-like-icon span {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-toggle .nowplay .song-info .channel-info .channel-like-icon span img {
  width: 1.5rem;
}
.player-toggle .nowplay .song-info .control-wrap {
  width: calc(100% - 28rem);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1rem 0.75rem;
}
@media screen and (max-width: 1023px) {
  .player-toggle .nowplay .song-info .control-wrap {
    width: calc(100% - 4.5rem);
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .control-wrap {
    width: 100%;
  }
}
.player-toggle .nowplay .song-info .control-wrap .title-wrap {
  padding: 1.5rem 0.5rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .player-toggle .nowplay .song-info .control-wrap .title-wrap {
    width: 20.125rem;
  }
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .control-wrap .title-wrap {
    margin-top: 1.5rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.player-toggle .nowplay .song-info .control-wrap .title-wrap .title {
  font-size: 1.25rem;
  height: 1.5rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player-toggle .nowplay .song-info .control-wrap .title-wrap .artist {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  height: 1.5rem;
  color: #fff;
  opacity: 0.6;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player-toggle .nowplay .song-info .control-wrap .control-btn-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .control-wrap .control-btn-wrap {
    height: 3.5rem;
    margin-top: 1rem;
  }
}
.player-toggle .nowplay .song-info .control-wrap .control-btn-wrap .icon-playlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.player-toggle .nowplay .song-info .control-wrap .control-btn-wrap .icon-playlist img {
  width: 1.5rem;
}
.player-toggle .nowplay .song-info .control-wrap .like-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.player-toggle .nowplay .song-info .control-wrap .like-wrap span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.player-toggle .nowplay .song-info .control-wrap .like-wrap span img {
  width: 1.5rem;
  margin-right: 0.125rem;
}
.player-toggle .nowplay .song-info .control-wrap .play-time {
  width: 5.5rem;
  margin-left: 0.75rem;
  color: #aab0b4;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .control-wrap .play-time {
    margin-left: 0;
  }
}
.player-toggle .nowplay .song-info .control-wrap .icon-play {
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .player-toggle .nowplay .song-info .control-wrap .icon-play {
    margin-left: 0;
  }
}
.player-toggle .nowplay .song-info .control-wrap .icon-play span {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player-toggle .nowplay .song-info .control-wrap .icon-play span img {
  width: 2.5rem;
}
.player-toggle .nowplay .song-info .control-wrap .music-info {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.player-toggle .toggle-volume {
  height: 4rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .player-toggle .toggle-volume {
    margin-top: 0;
  }
}
.player-toggle .toggle-volume .time {
  position: relative;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 0.5rem 1.5rem;
}
.player-toggle .toggle-volume .time span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #aab0b4;
  line-height: 1rem;
}
.player-toggle .toggle-volume .player-state {
  height: 0.25rem;
  position: relative;
  background: #383a3c;
  width: 100%;
}
.player-toggle .toggle-volume .player-state .loading-bar {
  position: absolute;
  z-index: 1;
  height: 100%;
  background: #6f7376;
}
.player-toggle .toggle-volume .player-state .progress-bar {
  position: absolute;
  z-index: 2;
  height: 100%;
  background: #ffab1c;
}
.player-toggle .toggle-volume .controller-wrap {
  padding: 0.25rem 1.25rem 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .player-toggle .toggle-volume .controller-wrap {
    height: 4.25rem;
    padding: 0.25rem 1.25rem 0.75rem 0.5rem;
    margin-top: 0;
  }
}
.player-toggle .toggle-volume .controller-wrap .volume-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.75rem 0.5rem 0.75rem 1rem;
}
.player-toggle .toggle-volume .controller-wrap .volume-icon img {
  width: 1.5rem;
}
.player-toggle .toggle-volume .controller-wrap .slider-container {
  width: 100%;
  max-width: 39.25rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  border-radius: 0.75rem;
}
.player-toggle .toggle-volume .controller-wrap .slider-container.min-vol:before {
  content: "";
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 0.125rem;
  height: 0.875rem;
  background: #ec9508;
  border-radius: 1px;
  z-index: 1;
}
.player-toggle .toggle-volume .controller-wrap .slider-container .slider-fill {
  width: 0;
  height: 100%;
  background: #ffab1c;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.75rem 0 0 0.75rem;
}
.player-toggle .toggle-volume .controller-wrap .slider-container .slider-fill.full-width {
  border-radius: 0.75rem;
}
.player-toggle .toggle-volume .controller-wrap .slider-container .slider-thumb {
  width: 0.85rem;
  height: 2rem;
  background: #ffab1c;
  border: 5px solid #fff;
  position: absolute;
  top: -0.25rem;
  left: -3px;
  border-radius: 0.5rem;
  z-index: 2;
  cursor: pointer;
}
.player-toggle .toggle-volume .controller-wrap .volume-num {
  font-size: 1.125rem;
  color: #888d90;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  margin-left: 0.5rem;
}
.player-toggle .toggle-volume .controller-wrap p {
  position: absolute;
  bottom: 0;
  height: 1rem;
  color: #aab0b4;
  font-size: 0.6875rem;
  left: 50%;
  transform: translateX(-50%);
}
.player-toggle .volume-wrap {
  padding: 1rem 1rem 1rem 1.5rem;
}
.player-toggle .volume-wrap h2 {
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.player-toggle .volume-wrap h2 span {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  cursor: pointer;
}
.player-toggle .volume-wrap h2 span img {
  width: 100%;
}
.player-toggle .volume-wrap .item {
  padding: 1rem 0;
}
.player-toggle .volume-wrap .item:not(:last-of-type) {
  border-bottom: 1px solid #4a4d4f;
}
.player-toggle .volume-wrap .item h3 {
  color: #e6e9eb;
  font-size: 0.75rem;
  height: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.player-toggle .volume-wrap .item h4 {
  color: #aab0b4;
  font-size: 0.6875rem;
  height: 1rem;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.player-toggle .volume-wrap .item .controller-wrap {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.player-toggle .volume-wrap .item .controller-wrap .volume-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player-toggle .volume-wrap .item .controller-wrap .volume-icon img {
  width: 1.5rem;
}
.player-toggle .volume-wrap .item .controller-wrap .volume-num {
  font-size: 1.125rem;
  color: #fff;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  margin-left: 0.5rem;
}

.tab-slider--nav {
  padding: 0.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3f5;
  border-radius: 0.625rem;
}
.tab-slider--nav .tab-slider--tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 2.75rem;
}
.tab-slider--nav .tab-slider--tabs:after {
  content: "";
  width: 7.625rem;
  height: 2.75rem;
  background: #fff;
  color: #1e1e1e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 250ms ease-in-out;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 0.125rem 0px rgba(0, 0, 0, 0.16);
}
.tab-slider--nav .tab-slider--tabs.slide:after {
  left: 50%;
}
.tab-slider--nav .tab-slider--tabs .tab-slider--trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.625rem;
  height: 2rem;
  gap: 0.5rem;
  color: #aab0b4;
  font-weight: 500;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: color 250ms ease-in-out;
  user-select: none;
}
.tab-slider--nav .tab-slider--tabs .tab-slider--trigger.active {
  color: #4a4d4f;
  font-weight: 600;
}

.tab-slider--container {
  height: calc(100% - 5.5rem);
  overflow-y: auto;
}
.tab-slider--container::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.contents {
  position: relative;
  display: flex;
  justify-content: center;
  height: calc(100% - 8.25rem);
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .contents {
    flex-direction: column;
    height: calc(100% - 7.5rem);
    overflow-y: auto;
    justify-content: inherit;
  }
}
@media screen and (max-width: 1023px) {
  .contents.broadcast {
    flex-direction: initial;
    overflow: hidden;
  }
  .contents.broadcast .left {
    width: 20rem;
    height: auto;
  }
  .contents.broadcast .left .schedule {
    display: initial;
  }
  .contents.broadcast .right {
    padding: 0 0 0 1.5rem;
    width: calc(100% - 20rem);
  }
}
@media screen and (max-width: 767px) {
  .contents.broadcast {
    width: 100%;
    flex-direction: column;
  }
  .contents.broadcast .left {
    width: 100%;
    border-bottom: 0;
    padding: 0 1rem;
  }
  .contents.broadcast .left .schedule {
    height: 5.5rem;
    position: relative;
    transition: border-radius 0.3s ease;
  }
  .contents.broadcast .left .schedule.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .contents.broadcast .left .schedule .title-wrap {
    height: 5.5rem;
    padding: 1.25rem 1.5rem;
    position: relative;
  }
  .contents.broadcast .left .schedule .title-wrap .icon-arrow {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
  }
  .contents.broadcast .left .schedule .title-wrap .icon-arrow img {
    width: 1.25rem;
    height: 1.25rem;
  }
  .contents.broadcast .left .schedule .title-wrap .icon-arrow.rotate {
    transform: translateY(-50%) rotate(180deg);
  }
  .contents.broadcast .left .schedule .schedule-list {
    display: none;
    position: absolute;
    transition: max-height 0.3s ease;
    height: auto;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 25rem;
    background: #1e1e1e;
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 1;
  }
  .contents.broadcast .right {
    width: 100%;
    padding: 0 1rem;
    height: calc(100% - 5.5rem);
  }
}
.contents .left {
  width: 21.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .contents .left {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    height: 15.75rem;
  }
}
@media screen and (max-width: 767px) {
  .contents .left {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 0 1rem 1.5rem 1rem;
    border-bottom: 0.5rem solid #f0f3f5;
  }
}
.contents .left .mobile-wrap {
  display: initial;
}
@media screen and (max-width: 1023px) {
  .contents .left .mobile-wrap {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .contents .left .mobile-wrap {
    width: 100%;
  }
}
.contents .left .mobile-wrap .img-wrap {
  border-radius: 0.75rem 0.75rem 0 0;
  height: calc(100% - 19rem);
  background: url("../images/main-img.png") no-repeat center center;
  width: 100%;
  background-size: cover;
  position: relative;
  box-shadow: 0 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 1023px) {
  .contents .left .mobile-wrap .img-wrap {
    width: 20rem;
    height: 12.5rem;
    background: url("../images/main-img.png") no-repeat top center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .contents .left .mobile-wrap .img-wrap {
    width: 100%;
  }
}
.contents .left .mobile-wrap .img-wrap .text {
  position: absolute;
  color: #fff;
  top: 1.75rem;
  left: 1.75rem;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "NanumSquareNeo";
}
.contents .left .mobile-wrap .img-wrap .text span {
  color: #ffab1c;
}
.contents .left .mobile-wrap .main-menu {
  height: 3rem;
  background: #241613;
  display: flex;
  width: 100%;
  box-shadow: 0 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 1023px) {
  .contents .left .mobile-wrap .main-menu {
    border-radius: 0 0 0.75rem 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .contents .left .mobile-wrap .main-menu {
    border-radius: 0;
    box-shadow: 0 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.24);
  }
}
.contents .left .mobile-wrap .main-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contents .left .mobile-wrap .main-menu ul li {
  width: 50%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #FAD000;
  cursor: pointer;
}
.contents .left .mobile-wrap .main-menu ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents .left .mobile-wrap .main-menu ul li img {
  width: 1.25rem;
  margin-right: 0.375rem;
}
.contents .left .mobile-wrap .main-menu ul li:first-of-type {
  position: relative;
}
.contents .left .mobile-wrap .main-menu ul li:first-of-type:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.5rem;
  background: #ffab1c;
  opacity: 0.3;
}
@media screen and (max-width: 1023px) {
  .contents .left .grid {
    width: calc(100% - 23rem);
  }
}
@media screen and (max-width: 767px) {
  .contents .left .grid {
    width: 100%;
  }
}
.contents .left .notice {
  align-items: center;
  width: auto;
  position: relative;
  flex-direction: column;
  height: 4.5rem;
  display: block;
  background: #eceeef;
  box-shadow: 0 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  border-radius: 0 0 0.75rem 0.75rem;
}
@media screen and (max-width: 1023px) {
  .contents .left .notice {
    box-shadow: none;
    border-radius: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .contents .left .notice {
    width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.24);
  }
}
.contents .left .notice .notice-icon {
  margin-left: 1.25rem;
  position: relative;
  width: 2rem;
  height: 1.75rem;
  display: flex;
  align-items: end;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contents .left .notice .notice-icon {
    min-width: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
.contents .left .notice .notice-icon img {
  width: 1.5rem;
}
.contents .left .notice .notice-icon span.notice-new {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #f04343;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
}
.contents .left .notice .item {
  display: flex;
  width: 100%;
  height: 4.5rem;
  align-items: center;
  display: flex;
}
.contents .left .notice .item a {
  display: flex;
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
  align-items: center;
  width: 100%;
  height: 100%;
}
.contents .left .notice .item .notice-wrap {
  font-size: 0.875rem;
  width: 15.5rem;
  margin-left: 3rem;
}
.contents .left .notice .item .notice-wrap .title {
  font-weight: 700;
  line-height: 1.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contents .left .notice .item .notice-wrap .date {
  color: #858585;
  font-weight: 400;
  line-height: 1.25rem;
  font-size: 0.875rem;
}
.contents .left .main-wrap {
  width: 20rem;
  height: calc(100% - 11.5rem);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eceeef;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1411764706);
}
.contents .left .pdpick {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 9.25rem;
  margin-top: 1.5rem;
  overflow: hidden;
}
.contents .left .pdpick h2 {
  width: 4.125rem;
  height: 1.75rem;
  background: #1e1e1e;
  border-radius: 1rem;
  color: #FAD000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
.contents .left .pdpick .pdpick-wrap {
  overflow: hidden;
}
.contents .left .pdpick .pdpick-wrap .box {
  display: flex;
  display: -ms-flexbox;
}
@media screen and (max-width: 767px) {
  .contents .left .pdpick .pdpick-wrap .box {
    width: 100%;
    overflow: hidden;
  }
}
.contents .left .pdpick .pdpick-wrap .box .item {
  position: relative;
  width: 20rem;
  display: flex;
  min-width: 20rem;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .contents .left .pdpick .pdpick-wrap .box .item {
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .contents .left .pdpick .pdpick-wrap .box .item {
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.contents .left .pdpick .pdpick-wrap .box .item .title-wrap {
  width: 10rem;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
}
.contents .left .pdpick .pdpick-wrap .box .item .title-wrap .title {
  font-size: 0.875rem;
  font-weight: 700;
  word-break: keep-all;
  line-height: 1.25rem;
  padding: 0 0.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.contents .left .pdpick .pdpick-wrap .box .item .image-wrap {
  border-radius: 0.5rem;
}
.contents .left .pdpick .pdpick-wrap .box .item .image-wrap .title-box .title {
  margin: 0.75rem;
}
.contents .left .pdpick .rolling-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.25rem;
  margin-top: 1rem;
}
.contents .left .pdpick .rolling-wrap .dot ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.125rem;
}
.contents .left .pdpick .rolling-wrap .dot ul li {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(136, 141, 144, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contents .left .pdpick .rolling-wrap .dot ul li a {
  width: 100%;
  height: 100%;
  display: flex;
}
.contents .left .pdpick .rolling-wrap .dot ul li.on {
  background: #1e1e1e;
}
.contents .left .pdpick .rolling-wrap .arrow {
  margin-left: 2.5rem;
}
.contents .left .pdpick .rolling-wrap .arrow ul {
  display: flex;
  align-items: center;
}
.contents .left .pdpick .rolling-wrap .arrow ul li {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  cursor: pointer;
}
.contents .left .pdpick .rolling-wrap .arrow ul li img {
  width: 2.5rem;
}
.contents .left .pdpick .rolling-wrap .arrow ul li a {
  display: flex;
}
.contents .left .pdpick .rolling-wrap .arrow ul li a img {
  width: 2.5rem;
}
.contents .left .schedule {
  width: 100%;
  height: calc(100% - 1rem);
  background: #1e1e1e;
  border-radius: 0.75rem;
  display: inherit;
}
@media screen and (max-width: 1023px) {
  .contents .left .schedule {
    height: calc(100% - 1.5rem);
  }
}
.contents .left .schedule .title-wrap {
  height: 6rem;
  padding: 1.75rem 0 1.25rem 1.5rem;
}
.contents .left .schedule .title-wrap h2 {
  height: 1.5rem;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.contents .left .schedule .title-wrap h3 {
  height: 1.5rem;
  font-size: 0.875rem;
  color: #fff;
  opacity: 0.5;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.contents .left .schedule .schedule-list {
  overflow-y: auto;
  height: calc(100% - 6rem);
  scrollbar-arrow-color: #1e1e1e;
  scrollbar-face-color: #4a4d4f;
  scrollbar-shadow-color: #1e1e1e;
  scrollbar-track-color: #1e1e1e;
  /* scrollbar */
}
.contents .left .schedule .schedule-list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.contents .left .schedule .schedule-list::-webkit-scrollbar {
  width: 1rem;
  height: 5px;
}
.contents .left .schedule .schedule-list::-webkit-scrollbar-track {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
}
.contents .left .schedule .schedule-list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
  background: #4a4d4f;
  border: 5px solid #1e1e1e;
}
.contents .left .schedule .schedule-list .section {
  padding: 0 1rem;
}
.contents .left .schedule .schedule-list .section:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.contents .left .schedule .schedule-list .section:last-of-type {
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}
.contents .left .schedule .schedule-list .section h4 {
  font-size: 0.875rem;
  font-weight: 500;
  height: 1.5rem;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
.contents .left .schedule .schedule-list .section h4.am {
  color: #f04343;
}
.contents .left .schedule .schedule-list .section h4.pm {
  color: #6088ff;
}
.contents .left .schedule .schedule-list .section ul li {
  background: #2b2c2d;
  color: #fff;
  border-radius: 0.5rem;
  height: 3rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.contents .left .schedule .schedule-list .section ul li span.time {
  opacity: 0.5;
  margin-right: 0.5rem;
  width: 2.5rem;
}
.contents .left .schedule .schedule-list .section ul li span.title {
  width: calc(100% - 3rem);
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contents .left .schedule .schedule-list .section ul li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.contents .right {
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  padding: 0 1.5rem;
  width: 42.5rem;
}
@media screen and (max-width: 1023px) {
  .contents .right {
    width: 100%;
    overflow: visible;
    padding: 0;
  }
}
.contents .right::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.section {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .section {
    margin-bottom: 3rem;
  }
}
.section.section2 {
  margin-bottom: 2rem;
}
.section.section3 {
  margin-bottom: 2rem;
}
.section.section4 {
  margin-bottom: 1.5rem;
}
.section h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-left: 0.125rem;
  color: rgba(30, 30, 30, 0.7);
  display: flex;
  align-items: center;
  height: 1.5rem;
  line-height: 1.5rem;
  gap: 0.24rem;
}
.section h2 span {
  color: #1e1e1e;
  font-weight: 700;
}
.section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e1e;
  display: flex;
  align-items: center;
}
.section h3 span {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: rgba(30, 30, 30, 0.5);
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .section h3 span {
    display: none;
  }
}
.section h3 span img {
  margin-right: 0.25rem;
  width: 1rem;
}

.section2 {
  margin-bottom: 1.75rem;
}

.mychannel {
  height: calc(100% - 7.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mychannel {
    height: calc(100% - 7.75rem);
  }
}
.mychannel h2 {
  width: 100%;
  height: 3.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0.25rem 1.5rem 0.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .mychannel h2 {
    height: 3.5rem;
    padding: 0 1rem 0 0.5rem;
  }
}
.mychannel h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mychannel h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mychannel h2 .back-wrap img {
  width: 1.5rem;
}
.mychannel .mychannel-wrap {
  width: 100%;
  height: calc(100% - 3.5rem);
  overflow-y: auto;
  padding: 1rem 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap {
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mychannel .mychannel-wrap {
    padding: 0 1rem;
  }
}
.mychannel .mychannel-wrap::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.mychannel .mychannel-wrap .result-item {
  width: 29rem;
  height: 8.25rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 0 1.5rem 0;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item {
    width: 22rem;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .mychannel .mychannel-wrap .result-item {
    width: 100%;
    height: 8rem;
  }
}
.mychannel .mychannel-wrap .result-item:nth-of-type(2n) {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .mychannel .mychannel-wrap .result-item:nth-of-type(2n) {
    margin-left: 0;
  }
}
.mychannel .mychannel-wrap .result-item .image-wrap {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
}
.mychannel .mychannel-wrap .result-item .image-wrap .new {
  top: 0.5rem;
  left: 0.5rem;
  width: 1.75rem;
  height: 1.125rem;
  font-size: 0.75rem !important;
  background: #F04343;
}
.mychannel .mychannel-wrap .result-item .image-wrap .title-box .title {
  font-size: 0.625rem;
  line-height: 0.875rem;
  margin: 0.5rem;
}
.mychannel .mychannel-wrap .result-item .image-wrap .thumbnail {
  width: 6rem;
  height: 6rem;
}
.mychannel .mychannel-wrap .result-item .text-wrap {
  width: calc(100% - 7rem);
  height: 100%;
  padding: 0.875rem 0;
  margin-left: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item .text-wrap {
    border-bottom: 1px solid #f0f3f5;
    padding: 0.75rem 0 1.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .mychannel .mychannel-wrap .result-item .text-wrap {
    height: 8rem;
    width: calc(100% - 6.75rem);
    padding: 0.75rem 0 1.25rem 0;
  }
}
.mychannel .mychannel-wrap .result-item .text-wrap .title {
  position: relative;
  height: 3rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item .text-wrap .title {
    height: 4rem;
    padding: 0.75rem 0;
  }
}
.mychannel .mychannel-wrap .result-item .text-wrap .title .title-wrap {
  width: calc(100% - 5.5rem);
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item .text-wrap .title .title-wrap {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 20px;
    height: 40px;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span img {
    width: 1.25rem;
  }
}
.mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span img {
  width: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span img {
    width: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .mychannel .mychannel-wrap .result-item .text-wrap .title .btn-wrap span {
    padding: 0.75rem 0.5rem 0.75rem 1rem;
  }
}
.mychannel .mychannel-wrap .result-item .text-wrap .hashtag {
  display: flex;
}
.mychannel .mychannel-wrap .result-item .text-wrap .hashtag .item {
  height: 2rem;
  border: 1px solid #dbdee1;
  border-radius: 2.5rem;
  padding: 0.5rem 0.75rem;
  color: #6f7376;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mychannel .mychannel-wrap .result-item .text-wrap .hashtag .item:not(:last-of-type) {
  margin-right: 0.5rem;
}
.mychannel .mychannel-wrap .result-item .text-wrap .hashtag .item span {
  margin-right: 0.25rem;
  margin-left: -0.25rem;
  width: 1rem;
  height: 1rem;
  background: #ce7181;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mychannel .mychannel-wrap .result-item .text-wrap .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #4a4d4f;
  padding: 1rem 0;
  border-bottom: 1px solid #e6e9eb;
}

.search-wrap {
  height: calc(100% - 7.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .search-wrap.mobile-search {
    height: calc(100% - 4.25rem);
    position: absolute;
    background: #fff;
    width: 100%;
  }
}
.search-wrap .search-box {
  width: 100%;
  height: 5rem;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box {
    height: 3.5rem;
    padding: 0 1.5rem 0 1rem;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box {
    padding: 0 1rem 0 0.5rem;
  }
}
.search-wrap .search-box h1 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
}
.search-wrap .search-box h1 .back-wrap {
  width: 2.5rem;
  height: 2.5rem;
}
.search-wrap .search-box h1 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box h1 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box h2 {
  font-size: 1.25rem;
  height: 2.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.search-wrap .search-box h2 .back-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-wrap .search-box h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box .search-bar {
  height: 3.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-wrap .search-box .search-bar .back-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-wrap .search-box .search-bar .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box .search-bar .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box .search-bar .input-wrap {
  display: flex;
  height: 3.5rem;
  background: #f0f3f5;
  border-radius: 3.5rem;
  padding: 1rem 1.75rem;
  position: relative;
  font-size: 0.875rem;
  width: calc(100% - 3.5rem);
  margin-left: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box .search-bar .input-wrap {
    height: 2.5rem;
    padding: 0.5rem 0.75rem 0.5rem 1.25rem;
  }
}
.search-wrap .search-box .search-bar .input-wrap .sch-text {
  height: 1.5rem;
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  font-weight: 500;
}
.search-wrap .search-box .search-bar .input-wrap .sch-text .sch-result-text {
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 500;
  margin-left: 0.75rem;
}
.search-wrap .search-box .search-bar .input-wrap input {
  border: none;
  background: none;
  width: calc(100% - 3.5rem);
}
.search-wrap .search-box .search-bar .input-wrap input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.search-wrap .search-box .search-bar .input-wrap input:focus {
  outline: none;
}
.search-wrap .search-box .search-bar .input-wrap input::placeholder {
  color: #888d90;
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box .search-bar .input-wrap .btn-sch {
    width: 2.25rem;
    height: 2.25rem;
    right: 0.75rem;
  }
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch img {
  width: 1.25rem;
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch2 {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box .search-bar .input-wrap .btn-sch2 {
    width: 2.25rem;
    height: 2.25rem;
    right: 3rem;
  }
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch2 a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box .search-bar .input-wrap .btn-sch2 img {
  width: 1.5rem;
}
.search-wrap .search-box .search-bar .recommend-type2 {
  padding-left: 0.75rem;
}
.search-wrap .search-box .search-bar .recommend-type2 .list {
  flex-wrap: nowrap;
}
.search-wrap .search-box2 {
  width: 100%;
  height: 10.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-wrap .search-box2 h2 {
  width: 100%;
  height: 3.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0.25rem 1.5rem 0.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box2 h2 {
    height: 3.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box2 h2 {
    padding: 0 0.5rem;
  }
}
.search-wrap .search-box2 h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box2 h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box2 h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box2 .search-bar {
  height: 3.75rem;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 0 2rem 1rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box2 .search-bar {
    padding: 0.5rem 1.5rem 0.75rem 1.5rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box2 .search-bar {
    padding: 0.5rem 1.5rem 0.75rem 0;
    height: 4rem;
  }
}
.search-wrap .search-box2 .search-bar .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-wrap .search-box2 .search-bar .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box2 .search-bar .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box2 .search-bar .recommend-type2 {
  width: 100%;
}
.search-wrap .search-box2 .search-bar .recommend-type2 .list {
  flex-wrap: inherit;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box2 .search-bar .recommend-type2 .list {
    padding: 0 1rem;
  }
}
.search-wrap .search-box2 .search-bar .recommend-type2 .list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-box2 .search-bar .recommend-type2 .list .item {
  color: #888d90;
  padding: 0.625rem 1rem;
  cursor: pointer;
}
.search-wrap .search-box2 .search-bar .recommend-type2 .list .item.on {
  box-shadow: 0 0 0 0.125rem #1e1e1e inset;
  border: none;
  color: #1e1e1e;
}
.search-wrap .search-box2 .search-bar .theme {
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.search-wrap .search-box2 .search-bar .theme .filter {
  border-left: 1px solid #dbdee1;
  padding-left: 1rem;
  margin-left: 1rem;
}
.search-wrap .search-box2 .search-bar .theme .filter .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #f0f3f5;
  color: #6f7376;
  font-weight: 500;
  border-radius: 2rem;
  height: 2.5rem;
  font-size: 0.875rem;
}
.search-wrap .search-box2 .search-bar .theme .filter .item img {
  width: 1rem;
}
.search-wrap .search-box2 .search-bar .btn-reset {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: end;
  text-decoration: underline;
  color: #6f7376;
  font-size: 0.875rem;
  width: 3.5rem;
  height: 2.5rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 30%);
}
.search-wrap .search-box2 .search-bar .btn-reset a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.search-wrap .search-box2 .search-bar2 {
  width: 100%;
  height: 3rem;
  background: #f0f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box2 .search-bar2 .genre {
  width: 100%;
  padding: 0 1.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box2 .search-bar2 .genre {
    padding: 0 1.25rem;
  }
}
.search-wrap .search-box2 .search-bar2 .genre .list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: inherit;
  position: relative;
}
.search-wrap .search-box2 .search-bar2 .genre .list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-box2 .search-bar2 .genre .list .item {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888d90;
  background: none;
  margin: 0;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
}
.search-wrap .search-box2 .search-bar2 .genre .list .item.on {
  color: #1e1e1e;
  font-weight: 600;
}
.search-wrap .search-box2 .search-bar2 .genre .list .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box3 {
  width: 100%;
  height: 7.5rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 {
    height: 6.5rem;
  }
}
.search-wrap .search-box3 h2 {
  width: 100%;
  height: 4rem;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 h2 {
    height: 3.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box3 h2 {
    padding: 0 1rem 0 0.5rem;
  }
}
.search-wrap .search-box3 h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-wrap .search-box3 h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box3 h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box3 h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box3 .search-bar {
  height: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.search-wrap .search-box3 .search-bar .recommend-type2 {
  padding: 0 2rem;
}
.search-wrap .search-box3 .search-bar .recommend-type2 .list .item.on {
  box-shadow: 0 0 0 0.125rem #1e1e1e inset;
}
.search-wrap .search-box3 .search-bar .recommend-type2 .list .item.on .name {
  color: #1e1e1e;
}
.search-wrap .search-box3 .search-bar .recommend-type2 .list .item .name {
  color: #888d90;
}
.search-wrap .search-box3 .search-bar .theme {
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .theme {
    padding: 0 1.5rem;
  }
}
.search-wrap .search-box3 .search-bar .theme .all_item {
  cursor: pointer;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  border: 1px solid #dbdee1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .theme .all_item {
    display: none;
  }
}
.search-wrap .search-box3 .search-bar .theme .filter {
  border-left: 1px solid #dbdee1;
  padding-left: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .theme .filter {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    flex: none;
  }
}
.search-wrap .search-box3 .search-bar .theme .filter .item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 0.125rem solid #1e1e1e;
  color: #1e1e1e;
  font-weight: 600;
  border-radius: 2rem;
  height: 2.5rem;
  font-size: 0.875rem;
}
.search-wrap .search-box3 .search-bar .theme .filter .item a {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.search-wrap .search-box3 .search-bar .theme .filter .item img {
  width: 1.25rem;
  padding: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .theme .filter .item img {
    display: none;
  }
}
.search-wrap .search-box3 .search-bar .theme .list {
  margin-left: 0.5rem;
  list-style: none;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  width: calc(100% - 190px);
  flex-wrap: inherit;
  position: relative;
  gap: inherit;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .theme .list {
    width: calc(100% - 90px);
  }
}
.search-wrap .search-box3 .search-bar .theme .list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-box3 .search-bar .theme .list .item {
  margin-right: 0.25rem;
  padding: 0.5rem;
  margin-bottom: 0;
  cursor: inherit;
  border: none;
}
.search-wrap .search-box3 .search-bar .theme .list .item span.btn-del {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  cursor: pointer;
}
.search-wrap .search-box3 .search-bar .theme .list .item span.btn-del img {
  width: 0.75rem;
}
.search-wrap .search-box3 .search-bar .theme .list .item:last-of-type {
  margin-right: 1.75rem;
}
.search-wrap .search-box3 .search-bar .theme .list .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
}
.search-wrap .search-box3 .search-bar .theme .list .item a img {
  width: 1rem;
}
.search-wrap .search-box3 .search-bar .btn-reset {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: end;
  text-decoration: underline;
  color: #6f7376;
  font-size: 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 30%);
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar .btn-reset {
    right: 1.5rem;
  }
}
.search-wrap .search-box3 .search-bar .btn-reset a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.search-wrap .search-box3 .search-bar2 {
  width: 100%;
  height: 3rem;
  background: #f0f3f5;
  display: flex;
  align-items: center;
}
.search-wrap .search-box3 .search-bar2 .genre {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box3 .search-bar2 .genre {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box3 .search-bar2 .genre {
    padding: 0 0.75rem;
  }
}
.search-wrap .search-box3 .search-bar2 .genre .list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: inherit;
  position: relative;
}
.search-wrap .search-box3 .search-bar2 .genre .list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-box3 .search-bar2 .genre .list .item {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888d90;
  background: none;
  margin: 0;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.search-wrap .search-box3 .search-bar2 .genre .list .item.on {
  color: #1e1e1e;
  font-weight: 600;
}
.search-wrap .search-box3 .search-bar2 .genre .list .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box4 {
  width: 100%;
  height: 7rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box4 {
    height: 6.5rem;
  }
}
.search-wrap .search-box4 h2 {
  width: 100%;
  height: 4rem;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box4 h2 {
    height: 3.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box4 h2 {
    padding: 0 1rem 0 0.5rem;
  }
}
.search-wrap .search-box4 h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-wrap .search-box4 h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box4 h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-box4 h2 .back-wrap img {
  width: 1.5rem;
}
.search-wrap .search-box4 .search-bar {
  height: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.search-wrap .search-box4 .search-bar .recommend-type2 {
  padding: 0 2rem;
}
.search-wrap .search-box4 .search-bar .recommend-type2 .list .item.on {
  box-shadow: 0 0 0 0.125rem #1e1e1e inset;
}
.search-wrap .search-box4 .search-bar .recommend-type2 .list .item.on .name {
  color: #1e1e1e;
}
.search-wrap .search-box4 .search-bar .recommend-type2 .list .item .name {
  color: #888d90;
}
.search-wrap .search-box4 .search-bar .btn-reset {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: end;
  text-decoration: underline;
  color: #6f7376;
  font-size: 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 30%);
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box4 .search-bar .btn-reset {
    right: 1.5rem;
  }
}
.search-wrap .search-box4 .search-bar .btn-reset a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.search-wrap .search-box4 .search-bar2 {
  width: 100%;
  height: 3rem;
  background: #f0f3f5;
  display: flex;
  align-items: center;
}
.search-wrap .search-box4 .search-bar2 .genre {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-box4 .search-bar2 .genre {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-box4 .search-bar2 .genre {
    padding: 0 0.75rem;
  }
}
.search-wrap .search-box4 .search-bar2 .genre .list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: inherit;
  position: relative;
}
.search-wrap .search-box4 .search-bar2 .genre .list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-box4 .search-bar2 .genre .list .item {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888d90;
  background: none;
  margin: 0;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.search-wrap .search-box4 .search-bar2 .genre .list .item.on {
  color: #1e1e1e;
  font-weight: 600;
}
.search-wrap .search-box4 .search-bar2 .genre .list .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-filter {
  background: #f6f8f9;
  height: calc(100% - 5rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-filter {
    padding: 1.5rem;
    height: calc(100% - 3.5rem);
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-filter {
    padding: 1rem;
  }
}
.search-wrap .search-filter .theme {
  width: 87%;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-filter .theme {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-filter .genre {
    width: 100%;
    padding: 0;
  }
}
.search-wrap .search-filter .genre .list {
  width: 87%;
}
.search-wrap .search-filter .genre .list .item {
  background: #e6e9eb;
}
.search-wrap .search-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-wrap .search-result {
  width: 100%;
  height: calc(100% - 5rem);
  overflow-y: auto;
  padding: 1rem 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result {
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-result {
    padding: 0 1rem;
  }
}
.search-wrap .search-result::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.search-wrap .search-result .result-item {
  width: 29.5rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item {
    width: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-result .result-item {
    width: 100%;
  }
}
.search-wrap .search-result .result-item:nth-of-type(2n) {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .search-wrap .search-result .result-item:nth-of-type(2n) {
    margin-left: 0;
  }
}
.search-wrap .search-result .result-item .image-wrap {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
}
.search-wrap .search-result .result-item .image-wrap .new {
  top: 0.5rem;
  left: 0.5rem;
  width: 1.75rem;
  height: 1.125rem;
  font-size: 0.75rem !important;
}
.search-wrap .search-result .result-item .image-wrap .title-box .title {
  font-size: 0.625rem;
  line-height: 0.875rem;
  margin: 0.5rem;
}
.search-wrap .search-result .result-item .image-wrap .thumbnail {
  width: 6rem;
  height: 6rem;
}
.search-wrap .search-result .result-item .text-wrap {
  width: calc(100% - 6.75rem);
  height: 100%;
  padding: 0.875rem 0;
  margin-left: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item .text-wrap {
    border-bottom: 1px solid #f0f3f5;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-result .result-item .text-wrap {
    height: 8rem;
    width: calc(100% - 6.75rem);
  }
}
.search-wrap .search-result .result-item .text-wrap .title {
  position: relative;
  height: 3rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item .text-wrap .title {
    height: 4rem;
    padding: 0.75rem 0;
  }
}
.search-wrap .search-result .result-item .text-wrap .title .title-wrap {
  width: calc(100% - 5.5rem);
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item .text-wrap .title .title-wrap {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 20px;
    height: 40px;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
.search-wrap .search-result .result-item .text-wrap .title .btn-wrap {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.search-wrap .search-result .result-item .text-wrap .title .btn-wrap span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item .text-wrap .title .btn-wrap span {
    width: 2.75rem;
    height: 2.75rem;
  }
  .search-wrap .search-result .result-item .text-wrap .title .btn-wrap span img {
    width: 1.25rem;
  }
}
.search-wrap .search-result .result-item .text-wrap .title .btn-wrap span img {
  width: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-item .text-wrap .title .btn-wrap span img {
    width: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap .search-result .result-item .text-wrap .title .btn-wrap span {
    padding: 0.75rem 0.5rem 0.75rem 1rem;
  }
}
.search-wrap .search-result .result-item .text-wrap .hashtag {
  display: flex;
}
.search-wrap .search-result .result-item .text-wrap .hashtag .item {
  height: 2rem;
  border: 1px solid #dbdee1;
  border-radius: 2.5rem;
  padding: 0.5rem 0.75rem;
  color: #6f7376;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-result .result-item .text-wrap .hashtag .item:not(:last-of-type) {
  margin-right: 0.5rem;
}
.search-wrap .search-result .result-item .text-wrap .hashtag .item span {
  margin-right: 0.25rem;
  margin-left: -0.25rem;
  width: 1rem;
  height: 1rem;
  background: #ce7181;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-result .result-item .text-wrap .text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #4a4d4f;
  padding: 1rem 0;
  border-bottom: 1px solid #e6e9eb;
}
.search-wrap .search-result .result-ment {
  width: 100%;
}
.search-wrap .search-result .result-ment .schedule-list .item {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #e6e9eb;
}
.search-wrap .search-result .result-ment .schedule-list .item:not(:first-of-type) {
  border-bottom: 1px solid #e6e9eb;
}
.search-wrap .search-result .result-ment .schedule-list .item .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 3rem;
  font-weight: 600;
  width: calc(100% - 10.5rem);
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-ment .schedule-list .item .title {
    width: calc(100% - 6.5rem);
  }
}
.search-wrap .search-result .result-ment .schedule-list .item .title span {
  color: #ec9508;
  background: rgba(255, 171, 28, 0.2);
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  width: auto;
  margin-bottom: 0.25rem;
}
.search-wrap .search-result .result-ment .schedule-list .item .title p {
  height: 1.5rem;
  line-height: 1.5rem;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.search-wrap .search-result .result-ment .schedule-list .item .time {
  width: 2.5rem;
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-ment .schedule-list .item .time {
    display: none;
  }
}
.search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul li {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul li {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.75rem 0.5rem 0.75rem 1rem;
  }
}
.search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul li img {
  width: 1.25rem;
}
.search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-wrap .search-result .result-ment .schedule-list .item .btn-wrap ul li a img {
  width: 1.5rem;
}
.search-wrap .search-result2 {
  height: calc(100% - 10.5rem);
}
.search-wrap .search-result3 {
  height: calc(100% - 7.5rem);
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result3 {
    height: calc(100% - 6.5rem);
  }
}
.search-wrap .search-result4 {
  height: calc(100% - 7rem);
}
@media screen and (max-width: 1023px) {
  .search-wrap .search-result4 {
    height: calc(100% - 6.5rem);
  }
}

.recent {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .recent {
    padding-left: 1.5rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recent {
    padding-left: 1rem;
  }
}
.recent .recent-wrap {
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.recent .recent-wrap .mask-wrap {
  display: -ms-flexbox;
  display: inline-flex;
  position: absolute;
  top: 0px;
  left: 0px;
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .recent .recent-wrap .mask-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .recent .recent-wrap .mask-wrap::-webkit-scrollbar {
    width: 0 !important;
    display: none;
  }
}
.recent .recent-wrap .mask-wrap .box {
  display: -ms-flexbox;
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  height: 3.5rem;
  flex: 0 0 100%;
}
@media screen and (max-width: 1023px) {
  .recent .recent-wrap .mask-wrap .box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: none;
    width: auto;
    height: 3.5rem;
    margin-right: 0.5rem;
  }
}
.recent .recent-wrap .mask-wrap .box .item {
  width: 19.375rem;
  display: flex;
  align-items: center;
  height: 3rem;
  border: 1px solid #dbdee1;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .recent .recent-wrap .mask-wrap .box .item {
    height: 3.5rem;
    width: 16rem;
  }
}
.recent .recent-wrap .mask-wrap .box .item .image-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0 !important;
  position: relative;
  margin-left: 0;
}
@media screen and (max-width: 1023px) {
  .recent .recent-wrap .mask-wrap .box .item .image-wrap {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.recent .recent-wrap .mask-wrap .box .item .image-wrap .thumbnail {
  width: 100%;
  height: 100%;
}
.recent .recent-wrap .mask-wrap .box .item .image-wrap .btn-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent .recent-wrap .mask-wrap .box .item .image-wrap .btn-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent .recent-wrap .mask-wrap .box .item .image-wrap .btn-wrap a img {
  width: 1.5rem;
}
.recent .recent-wrap .mask-wrap .box .item .title {
  width: calc(100% - 3.5rem);
  line-height: 100%;
  align-items: center;
  padding: 0.875rem;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .recent .recent-wrap .mask-wrap .box .item .title {
    font-size: 1rem;
  }
}
.recent .rolling-wrap {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .recent .rolling-wrap {
    display: none;
  }
}
.recent .rolling-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent .rolling-wrap ul li.dot {
  padding: 0 1rem;
}
.recent .rolling-wrap ul li.dot ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.recent .rolling-wrap ul li.dot ul li {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(136, 141, 144, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.recent .rolling-wrap ul li.dot ul li a {
  width: 100%;
  height: 100%;
  display: flex;
}
.recent .rolling-wrap ul li.dot ul li.on {
  background: #1e1e1e;
}
.recent .rolling-wrap ul li.arrow {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.recent .rolling-wrap ul li.arrow img {
  width: 1.25rem;
  height: 1.25rem;
}
.recent .rolling-wrap ul li.arrow a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent .rolling-wrap ul li.arrow a img {
  width: 1.25rem;
  height: 1.25rem;
}

.recommend {
  margin-top: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .recommend {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recommend {
    padding: 0;
    padding-left: 1rem;
    width: 100%;
    overflow-x: hidden;
  }
}
.recommend .box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .recommend .box {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .recommend .box::-webkit-scrollbar {
    width: 0 !important;
    display: none;
  }
}
.recommend .box .item {
  position: relative;
  width: 12.625rem;
}
@media screen and (max-width: 1023px) {
  .recommend .box .item {
    width: 14.5rem;
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .recommend .box .item {
    width: 13.5rem;
  }
}
.recommend .box .item .bg-wrap {
  width: 12.625rem;
  height: 14.75rem;
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .recommend .box .item .bg-wrap {
    width: 14.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recommend .box .item .bg-wrap {
    width: 13.5rem;
    height: 15.5rem;
  }
}
.recommend .box .item .bg-wrap .bg {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  content: "";
  /* IE10,11 */
}
.recommend .box .item .bg-wrap .bg img {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.recommend .box .item .bg-wrap .bg .overlay {
  align-items: center;
  background-color: rgba(74, 77, 79, 0.3);
  box-sizing: border-box;
  color: white;
  display: flex;
  font-size: 20px;
  height: 100%;
  padding: 20px 120px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.recommend .box .item .bg-wrap .text-box {
  width: 100%;
  position: absolute;
  top: 1.5rem;
  line-height: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.recommend .box .item .bg-wrap .text-box .text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.recommend .box .item .bg-wrap .text-box .text span {
  color: #ffab1c;
  margin-right: 0.25rem;
}
.recommend .box .item .bg-wrap .text-box .btn-wrap {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
  justify-content: center;
  gap: 0.25rem;
}
.recommend .box .item .bg-wrap .text-box .btn-wrap span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.recommend .box .item .bg-wrap .text-box .btn-wrap span img {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.recommend .box .item .thumbnail-wrap {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.recommend .box .item .thumbnail-wrap .image-wrap {
  box-shadow: 0 0.25rem 0.75rem rgba(79, 79, 79, 0.32);
  border-radius: 0.5rem;
}
.recommend .box .item .thumbnail-wrap .image-wrap .title-box .title {
  margin: 0.75rem;
}
.recommend .box .item .thumbnail-wrap .new {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: #f04343;
  color: #fff;
  font-size: 0.75rem;
  width: 1.625rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .chart {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .chart {
    padding: 0;
    padding-left: 1rem;
  }
}
.chart .list-wrap .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #4a4d4f;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .chart .list-wrap .list {
    padding: 0.5rem 0.75rem 0.5rem 1rem;
  }
}
.chart .list-wrap .list .list-box {
  width: 100%;
  cursor: pointer;
  height: 4.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .chart .list-wrap .list .list-box {
    height: 3.5rem;
  }
}
.chart .list-wrap .list .list-box .image-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  position: relative;
}
.chart .list-wrap .list .list-box .image-wrap .num {
  z-index: 2;
  position: absolute;
  bottom: 0.375rem;
  left: 0.375rem;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart .list-wrap .list .list-box .image-wrap .thumbnail {
  width: 100%;
  height: 100%;
}
.chart .list-wrap .list .item {
  width: calc(100% - 3.75rem);
  height: 4.5rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .chart .list-wrap .list .item {
    height: 3.5rem;
  }
}
.chart .list-wrap .list .item .title {
  width: calc(100% - 3.5rem);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.chart .list-wrap .list .item.bd-none {
  border-bottom: none !important;
}
.chart .list-wrap .list .btn-wrap {
  width: 3rem;
  height: 3rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart .list-wrap .list .btn-wrap img {
  width: 1.5rem;
}
.chart .list-wrap .list .btn-wrap a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart .list-wrap .list .btn-wrap a img {
  width: 1.5rem;
}

.chart2 h2 {
  margin-bottom: 0.75rem;
}
.chart2 .list-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .chart2 .list-wrap {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .chart2 .list-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .chart2 .list-wrap::-webkit-scrollbar {
    width: 0 !important;
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .chart2 .list-wrap .list-box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .chart2 .list-wrap .list-box {
    width: auto;
  }
}
.chart2 .list-wrap .list-box h3 {
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-left: 0.125rem;
  font-size: 1rem;
}
.chart2 .list-wrap .list-box h3 img {
  height: 1.5rem;
  margin-right: 0.25rem;
}
.chart2 .list-wrap .list-box .list {
  background: #4a4d4f;
  width: 19.375rem;
}
@media screen and (max-width: 1023px) {
  .chart2 .list-wrap .list-box .list {
    width: 22.125rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .chart2 .list-wrap .list-box .list {
    width: 17.5rem;
  }
}
.chart2 .list-wrap .list-box .list.custom {
  background: #FAD000;
}
.chart2 .list-wrap .list-box .list.custom .item {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.chart2 .list-wrap .list-box .list.custom .item .title {
  color: initial;
}
.chart2 .list-wrap .list-box .list .item .title {
  line-height: 1.125rem;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 0rem;
  white-space: normal;
}

@media screen and (max-width: 1023px) {
  .recommend-type {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recommend-type {
    padding: 0 1rem;
  }
}
.recommend-type .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.recommend-type .list .item {
  width: calc(20% - 0.4rem);
  height: 8rem;
  border-radius: 0.5rem;
  background: #f0f3f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .recommend-type .list .item {
    width: calc(33.33% - 0.375rem);
  }
}
.recommend-type .list .item.on {
  background: #ffab1c;
}
.recommend-type .list .item.on .name {
  color: #1e1e1e;
}
.recommend-type .list .item .mytype {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  color: #ffab1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  width: 3.125rem;
  height: 2rem;
  background: url("../images/icon-speech.png") no-repeat;
  background-size: contain;
}
.recommend-type .list .item .mytype span {
  width: 100%;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend-type .list .item .icon span {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend-type .list .item .icon span img {
  width: 2.25rem;
}
.recommend-type .list .item .name {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4d4f;
}

@media screen and (max-width: 1023px) {
  .recommend-type2 {
    padding: 0;
  }
}
.recommend-type2 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.recommend-type2 .list .item {
  height: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  border: 1px solid #dbdee1;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #4a4d4f;
}
@media screen and (max-width: 1023px) {
  .recommend-type2 .list .item {
    border: 1px solid #e6e9eb;
  }
}
.recommend-type2 .list .item a {
  width: 100%;
  height: 100%;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
}
.recommend-type2 .list .item .icon {
  margin-right: 0.25rem;
  margin-left: -0.25rem;
}
.recommend-type2 .list .item .icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend-type2 .list .item .icon span img {
  width: 1.5rem;
}
.recommend-type2 .list .item .name {
  font-size: 0.875rem;
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .theme {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .theme {
    padding: 0 1rem;
  }
}
.theme .list {
  display: flex;
  flex-wrap: wrap;
}
.theme .list .item {
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
  height: 2.5rem;
  border: 1px solid #dbdee1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .theme .list .item {
    border: 1px solid #e6e9eb;
  }
}
.theme .list .item.on {
  box-shadow: 0 0 0 0.125rem #1e1e1e inset;
  border: none;
  color: #1e1e1e;
  font-weight: 600;
}
.theme .list .item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
}
.theme .list .item img {
  width: 4.75rem;
}
.theme .list .item span.bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-left: -0.25rem;
}
.theme .list .item span.yellow {
  background: #ffab1c;
  box-shadow: 0px 0px 0.5rem rgba(255, 171, 28, 0.5);
}
.theme .list .item span.orange {
  background: #fb754c;
  box-shadow: 0px 0px 0.5rem rgba(251, 117, 76, 0.5);
}
.theme .list .item span.redbeen {
  background: #ce7181;
  box-shadow: 0px 0px 0.5rem rgba(206, 113, 129, 0.5);
}
.theme .list .item span.red {
  background: #f04343;
  box-shadow: 0px 0px 0.5rem rgba(240, 67, 67, 0.5);
}
.theme .list .item span.pink {
  background: #e05296;
  box-shadow: 0px 0px 0.5rem rgba(224, 82, 150, 0.5);
}
.theme .list .item span.blue {
  background: #5c64ff;
  box-shadow: 0px 0px 0.5rem rgba(92, 100, 255, 0.5);
}
.theme .list .item span.purple {
  background: #7f5bcc;
  box-shadow: 0px 0px 0.5rem rgba(127, 91, 204, 0.5);
}
.theme .list .item span.livid {
  background: #77969f;
  box-shadow: 0px 0px 0.5rem rgba(119, 150, 159, 0.5);
}
.theme .list .item span.latte {
  background: #b79375;
  box-shadow: 0px 0px 0.5rem rgba(183, 147, 117, 0.5);
}
.theme .list .item span.sky {
  background: #26c5f1;
  box-shadow: 0px 0px 0.5rem rgba(38, 197, 241, 0.5);
}
.theme .list .item span.green {
  background: #5acb73;
  box-shadow: 0px 0px 0.5rem rgba(90, 203, 115, 0.5);
}
.theme .list .item span.name {
  width: auto;
}

@media screen and (max-width: 1023px) {
  .genre {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .genre {
    padding: 0 1rem;
  }
}
.genre .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.genre .list .item {
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
  height: 2.75rem;
  background: #e6e9eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7376;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .genre .list .item {
    background: #f0f3f5;
  }
}
.genre .list .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.broad-list {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .broad-list {
    height: 100%;
    margin-top: 0;
  }
}
.broad-list h1 {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 1rem 0 1rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .broad-list h1 {
    padding: 2rem 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .broad-list .schedule-tab {
    margin-top: 0.75rem;
  }
}
.broad-list .schedule-tab ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: inherit;
  position: relative;
}
.broad-list .schedule-tab ul::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.broad-list .schedule-tab ul li {
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #f0f3f5;
  color: #6f7376;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.broad-list .schedule-tab ul li:not(:last-of-type) {
  margin-right: 0.5rem;
}
.broad-list .schedule-tab ul li.on {
  background: #4a4d4f;
  color: #fff;
}
.broad-list .schedule-tab ul li a {
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.broad-list .schedule-list {
  margin-top: 1.5rem;
  height: calc(100% - 7.125rem);
  overflow-y: auto;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list {
    width: calc(100% - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .broad-list .schedule-list {
    margin-top: 0.75rem;
    width: 100%;
  }
}
.broad-list .schedule-list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.broad-list .schedule-list .item {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list .item {
    border-top: 1px solid #f0f3f5;
  }
}
.broad-list .schedule-list .item .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 3rem;
  font-weight: 600;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list .item .title {
    width: calc(100% - 7rem);
  }
}
.broad-list .schedule-list .item .title span {
  color: #ec9508;
  background: rgba(255, 171, 28, 0.2);
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  width: auto;
  margin-bottom: 0.25rem;
}
.broad-list .schedule-list .item .title p {
  height: 1.5rem;
  line-height: 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list .item .title p {
    width: 100%;
  }
}
.broad-list .schedule-list .item .time {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 400;
  width: 2rem;
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list .item .time {
    display: none;
  }
}
.broad-list .schedule-list .item .btn-wrap {
  width: 7rem;
}
.broad-list .schedule-list .item .btn-wrap ul {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.broad-list .schedule-list .item .btn-wrap ul li {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .broad-list .schedule-list .item .btn-wrap ul li {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.broad-list .schedule-list .item .btn-wrap ul li img {
  width: 1.25rem;
}
.broad-list .schedule-list .item .btn-wrap ul li button {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}
.broad-list .schedule-list .item .btn-wrap ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.broad-list .schedule-list .item .btn-wrap ul li a img {
  width: 1.25rem;
}

.player {
  z-index: 11;
  width: 100%;
  height: 4.75rem;
  background: #1e1e1e;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom);
}
@media screen and (max-width: 1023px) {
  .player {
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .player {
    height: 4.25rem;
  }
}
.player .player-state {
  height: 0.25rem;
  position: relative;
  background: #383a3c;
  width: 100%;
}
.player .player-state .loading-bar {
  position: absolute;
  z-index: 1;
  height: 100%;
  background: #6f7376;
}
.player .player-state .progress-bar {
  position: absolute;
  z-index: 2;
  height: 100%;
  background: #ffab1c;
}
.player .player-wrap {
  width: 100%;
  display: flex;
  height: calc(100% - 0.25rem);
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .player .player-wrap {
    padding: 0 1.5rem 0 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .player .player-wrap {
    padding: 0.5rem;
  }
}
.player .player-wrap .channel-info {
  width: 20rem;
  height: 100%;
  background: #2f3132;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem 0.75rem 1.5rem;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .player .player-wrap .channel-info {
    display: none;
  }
}
.player .player-wrap .channel-info .channel-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 14.625rem;
  height: 3rem;
}
.player .player-wrap .channel-info .channel-title-wrap .channel-text {
  font-size: 0.75rem;
  height: 1rem;
  color: #c7ccd0;
  display: flex;
  align-items: center;
}
.player .player-wrap .channel-info .channel-title-wrap .channel-title {
  font-size: 1rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player .player-wrap .channel-info .channel-title-wrap .channel-title > img {
  width: 1.5rem;
  margin-right: 0.375rem;
}
.player .player-wrap .channel-info .channel-title-wrap .channel-title span {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  cursor: pointer;
}
.player .player-wrap .channel-info .channel-title-wrap .channel-title span img {
  width: 0.875rem;
}
.player .player-wrap .channel-info .channel-like-icon {
  position: relative;
  z-index: 4;
}
.player .player-wrap .channel-info .channel-like-icon span {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player .player-wrap .channel-info .channel-like-icon span img {
  width: 1.5rem;
}
.player .player-wrap .channel-info2 {
  width: 20rem;
  height: 100%;
  background: #2f3132;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem 0.75rem 1.5rem;
  color: #fff;
}
.player .player-wrap .channel-info2 .channel-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 3rem;
  width: 36.717vh;
}
.player .player-wrap .channel-info2 .channel-title-wrap .channel-title {
  width: 100%;
  font-size: 1rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: space-between;
}
.player .player-wrap .channel-info2 .channel-title-wrap .channel-title span {
  margin-right: 0.5rem;
  width: 14.625rem;
  height: 1.5rem;
  background: #4a4d4f;
  color: #dbdee1;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
}
.player .player-wrap .channel-info2 .channel-title-wrap .channel-title span img {
  width: 1rem;
  margin-right: 0.25rem;
}
.player .player-wrap .channel-info2 .channel-like-icon {
  position: relative;
  z-index: 4;
}
.player .player-wrap .channel-info2 .channel-like-icon span {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player .player-wrap .channel-info2 .channel-like-icon span img {
  width: 1.5rem;
}
.player .player-wrap .control-wrap {
  width: calc(100% - 28rem);
  display: flex;
  align-items: center;
  padding: 0 1.5rem 0 0.5rem;
}
@media screen and (max-width: 1023px) {
  .player .player-wrap .control-wrap {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .player .player-wrap .control-wrap {
    width: 100%;
  }
}
.player .player-wrap .control-wrap .icon-playlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.player .player-wrap .control-wrap .icon-playlist img {
  width: 1.5rem;
}
.player .player-wrap .control-wrap .thumbnail {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
}
.player .player-wrap .control-wrap .thumbnail img {
  width: 100%;
}
.player .player-wrap .control-wrap .thumbnail-logo {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
  background: #2c2f31;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player .player-wrap .control-wrap .thumbnail-logo img {
  width: 1.25rem;
}
.player .player-wrap .control-wrap .title-wrap {
  margin-left: 0.5rem;
  width: 12.375rem;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .player .player-wrap .control-wrap .title-wrap {
    width: calc(100% - 20.875rem);
  }
}
@media screen and (max-width: 767px) {
  .player .player-wrap .control-wrap .title-wrap {
    width: calc(100% - 6rem);
  }
}
.player .player-wrap .control-wrap .title-wrap.title-wrap2 {
  width: 17.25rem;
}
.player .player-wrap .control-wrap .title-wrap .title {
  font-size: 0.875rem;
  height: 1.25rem;
  line-height: 1.25rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player .player-wrap .control-wrap .title-wrap .artist {
  font-size: 0.75rem;
  height: 1rem;
  line-height: 1rem;
  color: #fff;
  opacity: 0.6;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.player .player-wrap .control-wrap .like-wrap {
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .player .player-wrap .control-wrap .like-wrap {
    display: none;
  }
}
.player .player-wrap .control-wrap .like-wrap span {
  width: 4.125rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}
.player .player-wrap .control-wrap .like-wrap span img {
  width: 0.875rem;
  margin-right: 0.125rem;
}
.player .player-wrap .control-wrap .play-time {
  width: 5.5rem;
  margin-left: 0.75rem;
  color: #aab0b4;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .player .player-wrap .control-wrap .play-time {
    display: none;
  }
}
.player .player-wrap .control-wrap .icon-play {
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .player .player-wrap .control-wrap .icon-play {
    display: none;
  }
}
.player .player-wrap .control-wrap .icon-play span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player .player-wrap .control-wrap .icon-play span img {
  width: 2.5rem;
}
.player .player-wrap .control-wrap .music-info {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.player .player-wrap .volume-wrap {
  width: 8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .player .player-wrap .volume-wrap {
    display: none;
  }
}
.player .player-wrap .volume-wrap a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.player .player-wrap .volume-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 2.5rem;
  background: #4a4d4f;
}
.player .player-wrap .volume-wrap img {
  width: 1.5rem;
  margin-right: 0.5rem;
}

.eq {
  display: none;
}
@media screen and (max-width: 1023px) {
  .eq {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    gap: 0.125rem;
  }
  .eq span {
    width: 0.125rem;
    border-radius: 0.125rem;
    background: white;
    height: 0.5rem;
    transition: height 0.2s ease-in-out;
  }
  .eq span:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 0.8s;
  }
  .eq span:nth-child(2) {
    animation-delay: 0.1s;
    animation-duration: 1.2s;
  }
  .eq span:nth-child(3) {
    animation-delay: 0.3s;
    animation-duration: 0.9s;
  }
  .eq span:nth-child(4) {
    animation-delay: 0.2s;
    animation-duration: 1.3s;
  }
  .eq span:nth-child(5) {
    animation-delay: 0.05s;
    animation-duration: 1s;
  }
  @keyframes bounce {
    0% {
      transform: scaleY(0.3);
    }
    25% {
      transform: scaleY(1.5);
    }
    50% {
      transform: scaleY(0.8);
    }
    75% {
      transform: scaleY(1.8);
    }
    100% {
      transform: scaleY(0.4);
    }
  }
}
@media screen and (max-width: 767px) {
  .eq {
    margin-left: 0;
  }
}

.mypage-sidebar {
  display: none;
}
@media screen and (max-width: 767px) {
  .mypage-sidebar {
    display: block;
  }
}

.mypage {
  height: calc(100vh - 8.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mypage .mypage-wrap {
  width: 100%;
  max-width: 64rem;
  height: 100%;
}
.mypage .mypage-wrap h2 {
  font-size: 1.25rem;
  height: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
}
.mypage .mypage-wrap h2 .back-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mypage .mypage-wrap h2 .back-wrap img {
  width: 1.5rem;
}
.mypage .mypage-wrap h2 .back-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mypage-wrap .mypage-cont {
  display: flex;
  justify-content: center;
  height: calc(100% - 4rem);
}
.mypage .mypage-wrap .mypage-cont .mypage-left {
  width: 15.875rem;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box {
  height: 25.25rem;
  border-radius: 0.5rem;
  border: 1px solid #dbdee1;
  overflow: hidden;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytop {
  background: #1e1e1e;
  height: 15.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytop .image span {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid #4a4d4f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytop .image span img {
  width: 100%;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytop .title1 {
  height: 2rem;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 600;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytop .title2 {
  height: 1.5rem;
  font-size: 1rem;
  color: #aab0b4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
  height: 3.25rem;
  padding-left: 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid #e6e9eb;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype h4 span {
  cursor: pointer;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype h4 img {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype .type-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype .type-wrap .item {
  width: 2.5rem;
  height: 4rem;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype .type-wrap .item .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype .type-wrap .item .icon img {
  width: 100%;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .mypage-box .mytype .type-wrap .item .name {
  color: #1e1e1e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
}
.mypage .mypage-wrap .mypage-cont .mypage-left .btn-logout {
  margin-top: 0.75rem;
  cursor: pointer;
}
.mypage .mypage-wrap .mypage-cont .mypage-right {
  width: 41.625rem;
  margin-left: 2.25rem;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right {
    margin-left: 1.5rem;
    width: 27.625rem;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info {
  padding: 1rem 0 3rem;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info {
    border-bottom: 1px solid #f0f3f5;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl {
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 0.125rem;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl {
    flex-direction: column;
    align-items: inherit;
    padding: 0 0 0 0.125rem;
  }
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl dt {
  width: 5.5rem;
  font-size: 0.875rem;
  color: #6f7376;
  font-weight: 600;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl dt {
    width: 100%;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl dd {
  width: calc(100% - 6.5rem);
  margin-left: 1rem;
  color: #1e1e1e;
  font-weight: 500;
  min-height: 1.5rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-info dl dd {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f7376;
  padding: 2.25rem 0 2.25rem 0.125rem;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-link-wrap {
    flex-direction: column;
    align-items: inherit;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-link-wrap span {
  display: flex;
  align-items: center;
  color: #4a4d4f;
  font-weight: 500;
  height: 3rem;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .mypage .mypage-wrap .mypage-cont .mypage-right .mypage-link-wrap span {
    margin-top: 0.5rem;
    width: 8.875rem;
    white-space: nowrap;
  }
}
.mypage .mypage-wrap .mypage-cont .mypage-right .mypage-link-wrap span img {
  width: 1.5rem;
  margin-left: 0.25rem;
}

.notice {
  width: 100%;
  max-width: 64rem;
  height: calc(100% - 8.25rem);
  margin: 0 auto;
  display: flex;
  border-top: 1px solid #e6e9eb;
}
@media screen and (max-width: 767px) {
  .notice {
    height: calc(100% - 4.25rem);
    position: absolute;
    background: #fff;
    top: 0;
  }
}
.notice.open .notice-left {
  width: 18.5rem;
}
.notice.open .notice-left .notice-list {
  padding: 0 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .notice.open .notice-left {
    width: 100%;
  }
}
.notice.open .notice-right {
  width: calc(100% - 18.5rem);
  display: block;
}
@media screen and (max-width: 767px) {
  .notice.open .notice-right {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    height: calc(100% - 3.5rem);
  }
}
.notice .notice-left {
  width: 18.5rem;
}
@media screen and (max-width: 1023px) {
  .notice .notice-left {
    width: 100%;
    transition: width 0.3s ease;
  }
}
.notice .notice-left h2 {
  padding: 0.75rem 1.5rem 0.5rem;
  display: flex;
  align-items: center;
  height: 3.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .notice .notice-left h2 {
    position: absolute;
    height: 3.5rem;
    width: 100%;
    border-bottom: 1px solid #e6e9eb;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .notice .notice-left h2 {
    padding: 0 0.5rem;
    border-bottom: none;
  }
}
.notice .notice-left h2 span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice .notice-left h2 span a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice .notice-left h2 span.new-num {
  margin-left: 0.25rem;
  color: #f04343;
  font-weight: 600;
  width: auto;
  font-weight: 700;
}
.notice .notice-left h2 span img {
  width: 1.5rem;
}
.notice .notice-left h2 .close-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .notice .notice-left h2 .close-wrap {
    display: block;
    position: absolute;
    right: 0.5rem;
  }
  .notice .notice-left h2 .close-wrap a {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .notice .notice-left h2 .close-wrap a img {
    width: 1.5rem;
  }
}
.notice .notice-left .notice-list {
  height: 100%;
  overflow-y: auto;
  padding-left: 2rem;
  -ms-overflow-style: none;
}
@media screen and (max-width: 1023px) {
  .notice .notice-left .notice-list {
    padding: 0 1.5rem;
    height: calc(100% - 3.5rem);
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .notice .notice-left .notice-list {
    padding: 0 1rem;
  }
}
.notice .notice-left .notice-list::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.notice .notice-left .notice-list .item {
  padding: 1.25rem 1.5rem 1.25rem 0.5rem;
  border-bottom: 1px solid #e6e9eb;
  height: 5.25rem;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .notice .notice-left .notice-list .item {
    border-bottom: 1px solid #f0f3f5;
  }
}
@media screen and (max-width: 767px) {
  .notice .notice-left .notice-list .item {
    padding: 1.25rem 0;
  }
}
.notice .notice-left .notice-list .item.new .title {
  font-weight: 600;
  color: #1e1e1e;
}
.notice .notice-left .notice-list .item .title {
  height: 1.5rem;
  line-height: 1.5rem;
  color: #6f7376;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice .notice-left .notice-list .item .title span.current {
  color: #ffab1c;
  margin-right: 0.125rem;
}
.notice .notice-left .notice-list .item .date {
  height: 1.25rem;
  color: #888d90;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.notice .notice-right {
  width: calc(100% - 18.5rem);
  display: flex;
}
@media screen and (max-width: 1023px) {
  .notice .notice-right {
    display: none;
    height: calc(100% - 3.5rem);
    margin-top: 3.5rem;
    transition: all 0.3s ease;
  }
}
.notice .notice-right .no-data {
  width: 100%;
  height: 100%;
  display: flex;
  background: #f6f8f9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.notice .notice-right .no-data img {
  width: 12.5rem;
}
.notice .notice-right .no-data span {
  text-align: center;
  height: 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #888d90;
  line-height: 1.5rem;
}
.notice .notice-right .notice-view {
  width: 100%;
  height: 100%;
  border-left: 1px solid #e6e9eb;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem 3rem 3.5rem 2.5rem;
}
@media screen and (max-width: 1023px) {
  .notice .notice-right .notice-view {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .notice .notice-right .notice-view {
    padding: 0 1rem;
  }
}
.notice .notice-right .notice-view::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.notice .notice-right .notice-view .title {
  width: 100%;
  height: 9.25rem;
  padding: 1rem 0 1.5rem 0;
}
@media screen and (max-width: 1023px) {
  .notice .notice-right .notice-view .title {
    padding: 0;
    padding-top: 1rem;
    margin-left: 0;
    height: 11.25rem;
  }
}
.notice .notice-right .notice-view .title h2 {
  display: flex;
  align-items: center;
  height: 2rem;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .notice .notice-right .notice-view .title h2 {
    height: 4rem;
    font-size: 1.25rem;
    line-height: 2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
  }
}
.notice .notice-right .notice-view .title .date {
  margin-top: 0.5rem;
  height: 1.25rem;
  font-size: 0.875rem;
  color: #888d90;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.notice .notice-right .notice-view .title .name {
  margin-top: 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 500;
}
.notice .notice-right .notice-view .title .name span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e6e9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.notice .notice-right .notice-view .title .name span img {
  width: 100%;
}
.notice .notice-right .notice-view .file {
  width: 100%;
  padding-bottom: 2rem;
}
.notice .notice-right .notice-view .file .item {
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  background: #f0f3f5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4a4d4f;
  position: relative;
}
.notice .notice-right .notice-view .file .item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .notice .notice-right .notice-view .file .item {
    height: 4.25rem;
    padding: 0.75rem;
  }
}
.notice .notice-right .notice-view .file .item img {
  width: 1.5rem;
}
.notice .notice-right .notice-view .file .item .text {
  display: flex;
  align-items: center;
  padding-bottom: 0;
  width: calc(100% - 3.5rem);
}
@media screen and (max-width: 1023px) {
  .notice .notice-right .notice-view .file .item .text {
    flex-direction: column;
    align-items: baseline;
  }
}
.notice .notice-right .notice-view .file .item span.file-name {
  font-size: 0.875rem;
  color: #4a4d4f;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.notice .notice-right .notice-view .file .item span.size {
  color: #888d90;
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.25rem;
}
.notice .notice-right .notice-view .file .item .download {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.notice .notice-right .notice-view .file .item .download a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}
.notice .notice-right .notice-view .file .item .download a img {
  width: 1.5rem;
}
.notice .notice-right .notice-view .text {
  width: 100%;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 400;
  padding-bottom: 1rem;
}

.setup {
  width: 100%;
  margin: 0 auto;
  display: flex;
  max-width: 64rem;
}
@media screen and (max-width: 1023px) {
  .setup {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .setup {
    height: calc(100% - 4.25rem);
    position: absolute;
    background: #fff;
    flex-direction: column;
  }
}
.setup h2 {
  width: 16rem;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .setup h2 {
    height: 3.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .setup h2 {
    padding: 0 0.5rem;
  }
}
.setup h2 span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.setup h2 span.new-num {
  margin-left: 0.25rem;
  color: #f04343;
  font-weight: 600;
  width: auto;
  font-weight: 700;
}
.setup h2 span img {
  width: 1.5rem;
}
.setup h2 .close-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .setup h2 .close-wrap {
    display: block;
    position: absolute;
    right: 0.5rem;
  }
  .setup h2 .close-wrap a {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .setup h2 .close-wrap a img {
    width: 1.5rem;
  }
}
.setup .setup-wrap {
  width: calc(100% - 16rem);
  padding: 0 1.5rem 0 0.75rem;
}
@media screen and (max-width: 1023px) {
  .setup .setup-wrap {
    width: 100%;
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .setup .setup-wrap {
    padding: 0 1rem;
  }
}
.setup .setup-wrap .item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e6e9eb;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .setup .setup-wrap .item {
    border-bottom: 1px solid #f0f3f5;
  }
}
.setup .setup-wrap .item .text-wrap {
  width: 100%;
}
.setup .setup-wrap .item .text-wrap .text1 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e1e1e;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.setup .setup-wrap .item .text-wrap .text2 {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  height: 1rem;
  color: #6f7376;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.setup .setup-wrap .item .toggle {
  position: absolute;
  right: 0;
}
.setup .setup-wrap .item .toggle input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.setup .setup-wrap .item .toggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 2.5rem;
  height: 1.5rem;
  background: #e6e9eb;
  display: block;
  border-radius: 100px;
  position: relative;
}
.setup .setup-wrap .item .toggle label:after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border-radius: 90px;
}
.setup .setup-wrap .item .toggle input:checked + label {
  background: #ffab1c;
}
.setup .setup-wrap .item .toggle input:checked + label:after {
  left: calc(100% - 0.125rem);
  transform: translateX(-100%);
}
.setup .setup-wrap .item .toggle label:active:after {
  width: 1.25rem;
}
.setup .setup-wrap .item .volume-icon {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem 0.5rem 0.75rem 1rem;
}
.setup .setup-wrap .item .controller-wrap {
  width: 100%;
  height: 3rem;
}
.setup .setup-wrap .item .controller-wrap .slider-container {
  width: calc(100% - 8rem);
  background: #f0f3f5;
  margin-left: 1rem;
}
.setup .setup-wrap .item .controller-wrap .slider-container .slider-thumb {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.setup .setup-wrap .item .controller-wrap .volume-num {
  color: #1e1e1e;
  margin-left: 1rem;
}
.setup .setup-wrap .link-player {
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
.setup .setup-wrap .link-player span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 3rem;
}
.setup .setup-wrap .link-player span img {
  width: 1.5rem;
  margin-left: 0.25rem;
}

.log {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: calc(100% - 8.25rem);
}
@media screen and (max-width: 1023px) {
  .log {
    height: calc(100% - 7.75rem);
  }
}
@media screen and (max-width: 767px) {
  .log {
    height: calc(100% - 4.25rem);
    position: absolute;
    background: #fff;
  }
}
.log h2 {
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  height: 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .log h2 {
    height: 3.5rem;
    padding: 0 0.5rem;
  }
}
.log h2 span {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.log h2 span.new-num {
  margin-left: 0.25rem;
  color: #f04343;
  font-weight: 600;
  width: auto;
  font-weight: 700;
}
.log h2 span img {
  width: 1.5rem;
}
.log h2 .close-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .log h2 .close-wrap {
    display: block;
    position: absolute;
    right: 0.5rem;
  }
  .log h2 .close-wrap a {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .log h2 .close-wrap a img {
    width: 1.5rem;
  }
}
.log .log-wrap {
  width: 100%;
  height: calc(100% - 4rem);
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .log .log-wrap {
    height: calc(100% - 3.5rem);
  }
}
@media screen and (max-width: 767px) {
  .log .log-wrap {
    flex-direction: column;
  }
}
.log .log-wrap .m-log-tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .m-log-tab {
    display: flex;
    height: 4.75rem;
    justify-content: center;
    padding: 0.5rem 0 1rem 0;
  }
}
.log .log-wrap .log-list-wrap {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap {
    height: calc(100% - 4.75rem);
  }
}
.log .log-wrap .log-list-wrap .box {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box {
    width: 100%;
  }
}
.log .log-wrap .log-list-wrap .box:first-of-type .title {
  position: relative;
}
.log .log-wrap .log-list-wrap .box:first-of-type .title:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 3.75rem;
  right: 0;
  bottom: 1rem;
  background: #e6e9eb;
}
.log .log-wrap .log-list-wrap .box:first-of-type .list {
  border-right: 1px solid #dbdee1;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box:first-of-type .list {
    height: calc(100% - 2.5rem);
  }
}
.log .log-wrap .log-list-wrap .box .title {
  background: #fff;
  height: 5.75rem;
  padding: 1.25rem 2rem 0.75rem;
  border-bottom: 1px solid #e6e9eb;
}
@media screen and (max-width: 1023px) {
  .log .log-wrap .log-list-wrap .box .title {
    padding: 1rem 1.5rem 0.75rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box .title {
    height: 2.5rem;
    padding: 0.5rem 1rem;
    border-top: 1px solid #e6e9eb;
    display: flex;
    align-items: center;
  }
}
.log .log-wrap .log-list-wrap .box .title h4 {
  font-size: 1rem;
  font-weight: 600;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box .title h4 {
    display: none;
  }
}
.log .log-wrap .log-list-wrap .box .title .title-list {
  margin-top: 1rem;
  height: 1.5rem;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box .title .title-list {
    margin-top: 0;
    width: 100%;
  }
}
.log .log-wrap .log-list-wrap .box .title .title-list li {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4d4f;
  display: flex;
  align-items: center;
}
.log .log-wrap .log-list-wrap .box .title .title-list li .time {
  width: 4.5rem;
}
.log .log-wrap .log-list-wrap .box .title .title-list li .name {
  width: calc(100% - 5.5rem);
  margin-left: 1rem;
}
.log .log-wrap .log-list-wrap .box .list {
  background: #f6f8f9;
  height: calc(100% - 5.75rem);
  overflow-y: auto;
  /* scrollbar */
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box .list {
    height: calc(100% - 2.5rem);
  }
}
.log .log-wrap .log-list-wrap .box .list::-webkit-scrollbar {
  width: 1rem;
  height: 5px;
}
.log .log-wrap .log-list-wrap .box .list::-webkit-scrollbar-track {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
}
.log .log-wrap .log-list-wrap .box .list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0.625rem;
  border-radius: 0.625rem;
  background: #dbdee1;
  border: 0.25rem solid #f6f8f9;
}
.log .log-wrap .log-list-wrap .box .list .no-data {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #aab0b4;
}
.log .log-wrap .log-list-wrap .box .list ul {
  padding: 0.75rem 1.5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .log .log-wrap .log-list-wrap .box .list ul {
    padding: 0.75rem 1rem;
  }
}
.log .log-wrap .log-list-wrap .box .list ul li {
  height: 3.75rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.log .log-wrap .log-list-wrap .box .list ul li .time {
  color: #6f7376;
  width: 4.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
.log .log-wrap .log-list-wrap .box .list ul li .name {
  margin-left: 1rem;
  width: calc(100% - 5.5rem);
  color: #1e1e1e;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
}

.customer {
  width: 100%;
  max-width: 64rem;
  height: calc(100% - 7.75rem);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.customer h2 {
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  height: 4rem;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .customer h2 {
    padding: 0 1rem;
    height: 3.5rem;
  }
}
.customer h2 span {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.customer h2 span.new-num {
  margin-left: 0.25rem;
  color: #f04343;
  font-weight: 600;
  width: auto;
  font-weight: 700;
}
.customer h2 span img {
  width: 1.5rem;
}
.customer .customer-wrap {
  width: 100%;
  height: calc(100% - 3.5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.customer .customer-wrap h3 {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.customer .customer-wrap .box {
  width: 32.5rem;
  height: 10.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1.5rem;
  background: #f6f8f9;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem 2.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .customer .customer-wrap .box {
    max-width: 20rem;
  }
}
.customer .customer-wrap .box .text1 {
  font-size: 1rem;
  font-weight: 500;
  color: #1e1e1e;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.customer .customer-wrap .box .text2 {
  margin-top: 1rem;
  font-size: 2rem;
  height: 2.5rem;
  color: #1e1e1e;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.customer .customer-wrap .box .text3 {
  font-size: 1rem;
  height: 1.5rem;
  color: #6f7376;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.customer .customer-wrap .link-wrap {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
.customer .customer-wrap .link-wrap .list {
  width: 18.25rem;
  justify-content: space-between;
  display: flex;
}
.customer .customer-wrap .link-wrap .item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4d4f;
  height: 3rem;
}
.customer .customer-wrap .link-wrap .item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer .customer-wrap .link-wrap .item:first-of-type {
  padding-right: 3rem;
  position: relative;
}
.customer .customer-wrap .link-wrap .item:first-of-type:after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 1rem;
  background: #c7ccd0;
}
.customer .customer-wrap .link-wrap img {
  width: 1.5rem;
  margin-left: 0.25rem;
}

.login {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.login h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  width: 100%;
}
.login h2 img {
  width: 18.75rem;
}
.login .login-wrap {
  width: 20rem;
  margin-top: 3.5rem;
}
.login .login-wrap h3 {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.login .login-wrap .box {
  width: 20rem;
}
.login .login-wrap .box .item:not(:first-of-type) {
  margin-top: 1rem;
}
.login .login-wrap .box .item label {
  height: 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.login .login-wrap .box .item input {
  width: 100%;
  height: 3rem;
  border: 1px solid #dbdee1;
  border-radius: 0.5rem;
  margin-top: 0.25rem;
  box-sizing: border-box;
}
.login .login-wrap .box .btn-wrap {
  margin-top: 2rem;
}
.login .login-wrap .box .btn-wrap .btn {
  margin-top: 1.5rem;
}
.login .cust-text {
  margin-top: 1.25rem;
  color: #6f7376;
  font-size: 0.875rem;
  height: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.channel h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #1e1e1e;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .channel h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.channel h2 span {
  color: #ffab1c;
}
.channel h4 {
  color: #1e1e1e;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.5;
  margin-top: 0.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
.channel .channel-wrap {
  margin-top: 2rem;
}
.channel .channel-wrap h3 {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.channel .channel-wrap .recommend-type {
  width: 23.5rem;
}
.channel .channel-wrap .recommend-type .list .item:nth-of-type(3n) {
  margin-right: 0;
}
.channel .channel-wrap .btn-wrap {
  margin-top: 2rem;
}
.channel .channel-wrap .btn-wrap .btn {
  margin-top: 1.5rem;
}
.channel .cust-text {
  margin-top: 1.25rem;
  color: #6f7376;
  font-size: 0.875rem;
  height: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*********
 * Bar 3 * 
 *********/
.splash-screen {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.splash-screen .splash-img {
  width: 40rem;
  height: 15.625rem;
}
@media screen and (max-width: 767px) {
  .splash-screen .splash-img {
    width: 20rem;
    height: auto;
  }
}

.progress-container {
  width: 45rem;
  height: 1.5rem;
  background-color: #f0f3f5;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .progress-container {
    width: 20rem;
    height: 1rem;
  }
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #dbdee1;
  transition: width 0.1s ease-in-out;
}

#progress-text {
  font-size: 1rem;
  color: #6f7376;
  font-weight: 600;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  #progress-text {
    font-size: 0.875rem;
  }
}

/*스케쥴*/
.schedule {
  width: 100%;
  height: calc(100% - 18.75vh);
  margin: 0 auto;
  display: flex;
  border-top: 1px solid #e6e9eb;
}
.schedule .left {
  width: 41.667vh;
  background: #f6f8f9;
  border-right: 1px solid #e6e9eb;
  padding: 0.75rem 1.5rem 1.5rem;
  position: relative;
}
.schedule .left .title-wrap h2 {
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.schedule .left .title-wrap h2 span {
  cursor: pointer;
  width: 5.208vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule .left .title-wrap h2 span img {
  width: 1.5rem;
}
.schedule .left .title-wrap h2 .btn-schedule {
  display: flex;
  align-items: center;
  color: #4a4d4f;
  font-weight: 600;
  height: 2.5rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  cursor: pointer;
}
.schedule .left .title-wrap h2 .btn-schedule img {
  width: 3.125vh;
  margin-left: 0.25rem;
}
.schedule .left .calendar {
  margin-top: 1.5rem;
}
.schedule .left .calendar h1 {
  height: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 0.75rem;
}
.schedule .left .calendar .calendar-box .monthly {
  height: 2.5rem;
  margin-top: 0.5rem;
  padding: 0 0.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #4a4d4f;
  justify-content: space-between;
}
.schedule .left .calendar .calendar-box .monthly .btn-today {
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: #e6e9eb;
  font-size: 0.75rem;
  color: #4a4d4f;
  font-weight: 500;
  line-height: 1rem;
  cursor: pointer;
}
.schedule .left .calendar .calendar-box .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
  padding: 0 0.25rem;
}
.schedule .left .calendar .calendar-box .weekdays div {
  width: 2.25rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  coloR: #888d90;
  font-size: 0.875rem;
  font-weight: 600;
}
.schedule .left .calendar .calendar-box .days {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
  padding: 0 0.25rem;
}
.schedule .left .calendar .calendar-box .days .day {
  width: 2.25rem;
  height: 6.51vh;
}
.schedule .left .calendar .calendar-box .days .day .day-item {
  width: 2.25rem;
  padding: 0.375rem 0.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition-duration: 0.2s;
  border: none;
  background: none;
}
.schedule .left .calendar .calendar-box .days .day .day-item .reservation {
  width: 0.875rem;
  height: 0.875rem;
}
.schedule .left .calendar .calendar-box .days .day .day-item .reservation img {
  width: 100%;
}
.schedule .left .calendar .calendar-box .days .day .day-item.today {
  box-shadow: inset 0px 0px 0px 1px #c7ccd0;
  border-radius: 5.5rem;
}
.schedule .left .calendar .calendar-box .days .day .day-item.focus {
  font-weight: 600;
  box-shadow: inset 0px 0px 0px 0.125rem #1e1e1e;
  border-radius: 5.5rem;
  background: none;
}
.schedule .left .calendar .calendar-box .days .day .day-item .num {
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4d4f;
  cursor: pointer;
  transition-duration: 0.2s;
}
.schedule .left .calendar .calendar-box .days .day .day-item .num.disabled {
  color: #c7ccd0;
  cursor: default;
}
.schedule .left .calendar .calendar-box .days .day.current {
  box-shadow: inset 0 0 0 0.125rem #1e1e1e;
  border-radius: 5.5rem;
}
.schedule .left .calendar .calendar-box .days .day.current .num {
  color: #1e1e1e;
}
.schedule .left .month {
  display: flex;
  align-items: center;
  height: 2.5rem;
  background: #fff;
  position: absolute;
  bottom: 1.5rem;
  width: calc(100% - 3rem);
  border-radius: 0.5rem;
}
.schedule .left .month .arrow {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}
.schedule .left .month .arrow img {
  width: 1.5rem;
}
.schedule .right {
  width: calc(100% - 41.667vh);
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f0f3f5;
  /*스케줄*/
  /*스케줄 추가*/
}
.schedule .right .schedule-header {
  width: 100%;
  padding: 0.75rem 2rem 0.75rem 1.5rem;
  height: 5.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f3f5;
}
.schedule .right .schedule-header .schedule-date .date {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #4a4d4f;
}
.schedule .right .schedule-header .schedule-date .date span {
  color: #ffab1c;
  font-weight: 700;
  margin-right: 0.5rem;
}
.schedule .right .schedule-header .schedule-date .time {
  font-size: 1rem;
  font-weight: 400;
  color: #6f7376;
  line-height: 1.5rem;
  margin-top: 0.25rem;
}
.schedule .right .tab-slider--container .no-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab0b4;
  font-weight: 500;
  height: 57.813vh;
}
.schedule .right .tab-slider--container .schedule-wrap {
  background: #fff;
  padding: 1.25rem 2rem 0.5rem 1.5rem;
  margin-top: 0.75rem;
}
.schedule .right .tab-slider--container .schedule-wrap h2 {
  font-weight: 600;
  color: #4a4d4f;
  line-height: 1.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap h2 span {
  color: #ffab1c;
  margin-left: 0.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap h2 span.last {
  color: #aab0b4;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box {
  padding-left: 1rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item {
  padding: 1rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item:not(:last-of-type) {
  border-bottom: 1px solid #e6e9eb;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  color: #4a4d4f;
  letter-spacing: -0.108px;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time .time {
  font-size: 1.75rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 2.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time .hyphen {
  color: #aab0b4;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time .info div {
  line-height: 140%;
  font-size: 0.875rem;
  color: #6f7376;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time .info div.reservation-time {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  background: #e6e9eb;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4a4d4f;
  margin-top: 0.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-time .info div.reservation-time img {
  width: 0.875rem;
  margin-right: 0.375rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control {
  display: flex;
  flex-direction: column;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap {
  display: flex;
  align-items: center;
  height: 2.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .state {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .state .playing {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 171, 28, 0.2);
  color: #ec9508;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  height: 1.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .state .skip {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #6f7376;
  border: 1px solid #dbdee1;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  height: 1.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .state img {
  width: 1rem;
  margin-right: 0.25rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch {
  display: flex;
  align-items: center;
  height: 2.5rem;
  justify-content: center;
  margin-left: 0.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch input {
  display: none;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch input:checked ~ label {
  border-color: #fff;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch input:checked ~ label::after {
  transform: translate(1rem, -50%);
  background: #fff;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch input:disabled ~ label {
  opacity: 0.5;
  cursor: not-allowed;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch label {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  padding: 0.125rem;
  border-radius: 2rem;
  background: #ffab1c;
  cursor: pointer;
  transition: 0.3s;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-wrap .switch label::after {
  content: "";
  display: inherit;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-error {
  display: flex;
  justify-content: end;
  position: relative;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-error .tooltip-wrap span.tooltip {
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-error .tooltip-wrap span.tooltip img {
  width: 1.25rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-error .tooltip-wrap:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transition: 0.25s all ease;
  transition-delay: 0s;
  top: 2.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .control .control-error .tooltip-wrap .tooltip-content {
  width: 35.417vh;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: rgba(30, 30, 30, 0.8);
  top: 2.5rem;
  right: 0;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  transition: 0.25s all ease;
  transition-delay: 0.25s;
  z-index: 2;
  color: #FFFFFF;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 0.5rem;
  position: relative;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more span {
  display: flex;
  padding: 0.5rem;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more img {
  width: 1.5rem;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more .more-content {
  width: 20.313vh;
  position: absolute;
  background: #fff;
  top: 2.5rem;
  right: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  z-index: 2;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.12);
  border: 1px solid #dbdee1;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more .more-content ul li {
  padding: 0.5rem;
  height: 2.5rem;
  color: #4a4d4f;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
}
.schedule .right .tab-slider--container .schedule-wrap .schedule-box .schedule-item .schedule-more .more-content ul li.del {
  color: #f04343;
}
.schedule .right .tab-slider--container .schedule-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #888d90;
  font-weight: 500;
  line-height: 1.25rem;
}
.schedule .right .tab-slider--container .schedule-footer b {
  color: #6f7376;
}
.schedule .right .tab-slider--container .schedule-footer span {
  margin-right: 0.375rem;
  background: rgba(255, 171, 28, 0.2);
  color: #ec9508;
  padding: 0.125rem 0.25rem 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 600;
  line-height: 1rem;
}
.schedule .right .tab-slider--container .week-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0.25rem 0;
  margin-top: 0.5rem;
}
.schedule .right .tab-slider--container .week-type .week-tab {
  display: flex;
  align-items: center;
  border: 1px solid #dbdee1;
  height: 2.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.schedule .right .tab-slider--container .week-type .week-tab .item {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  color: #aab0b4;
  cursor: pointer;
}
.schedule .right .tab-slider--container .week-type .week-tab .item:not(:last-of-type) {
  border-right: 1px solid #dbdee1;
}
.schedule .right .tab-slider--container .week-type .week-tab .item.on {
  background: #f0f3f5;
  color: #4a4d4f;
  font-weight: 700;
}
.schedule .right .tab-slider--container .week-type .day-item {
  display: flex;
  align-items: center;
}
.schedule .right .tab-slider--container .week-type .day-item div {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0.5rem;
  border: 1px solid #dbdee1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab0b4;
  cursor: pointer;
}
.schedule .right .tab-slider--container .week-type .day-item div:not(:last-of-type) {
  margin-right: 0.75rem;
}
.schedule .right .tab-slider--container .week-type .day-item div.on {
  border: none;
  box-shadow: 0px 0px 0px 0.125rem #1e1e1e inset;
  color: #1e1e1e;
}
.schedule .right .tab-slider--container .period {
  display: flex;
  align-items: center;
  justify-content: end;
  line-height: 1.5rem;
  padding: 1.75rem 0 1.25rem 0;
  color: #4a4d4f;
  margin-top: 0.5rem;
  cursor: pointer;
}
.schedule .right .tab-slider--container .period span {
  font-weight: 700;
  margin-left: 0.5rem;
}
.schedule .right .tab-slider--container .period img {
  width: 1.5rem;
  margin-left: 0.5rem;
}
.schedule .right .schedule-write {
  background: #fff;
  height: 100%;
}
.schedule .right .schedule-write h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem 0.75rem 1.5rem;
  height: 9.375vh;
  font-weight: 700;
  color: #1e1e1e;
}
.schedule .right .schedule-write h2 .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.schedule .right .schedule-write h2 .btn-s {
  padding: 0.75rem 1.25rem;
}
.schedule .right .schedule-write .schedule-write-wrap {
  height: calc(100% - 9.375vh);
  overflow-y: auto;
  padding: 0 2rem 2rem 1.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.schedule .right .schedule-write .schedule-write-wrap h3 {
  color: #4a4d4f;
  font-weight: 600;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
}
.schedule .right .schedule-write .schedule-write-wrap .tab-slider--container {
  height: auto;
  overflow-y: inherit;
}
.schedule .right .schedule-write .schedule-write-wrap .channel-choice {
  border-bottom: 1px solid #e6e9eb;
  padding: 1.5rem 0 1.5rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule .right .schedule-write .schedule-write-wrap .channel-choice .title {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.5rem;
  color: #4a4d4f;
}
.schedule .right .schedule-write .schedule-write-wrap .channel-choice .title img {
  width: 1.5rem;
  margin-left: 0.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat {
  padding: 1.5rem 0 1.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab-slider--nav .tab-slider--tabs {
  position: relative;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab-slider--nav .tab-slider--tabs:after {
  content: "";
  width: 13.542vh;
  height: 2rem;
  background: #fff;
  color: #4a4d4f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 250ms ease-in-out;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 0.125rem 0px rgba(0, 0, 0, 0.16);
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab-slider--nav .tab-slider--tabs.slide-tab2:after {
  left: 33.33%;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab-slider--nav .tab-slider--tabs.slide-tab3:after {
  left: 66.66%;
}
.schedule .right .schedule-write .schedule-write-wrap .repeat .tab-slider--nav .tab-slider--trigger {
  width: 13.542vh;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add {
  padding: 1.5rem 0 1.5rem 0.25rem;
  border-top: 1px solid #e6e9eb;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add h3 span {
  font-size: 0.75rem;
  color: #1e1e1e;
  opacity: 0.5;
  line-height: 1rem;
  margin-left: 0.5rem;
  font-weight: 500;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: #f6f8f9;
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap.on {
  border: 1px solid #f04343;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap h4 {
  width: 3rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 0.875rem;
  color: #4a4d4f;
  font-weight: 600;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box {
  width: calc(100% - 4.5rem);
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time {
  display: flex;
  align-items: center;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item {
  padding: 0.75rem 0 1rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item:first-of-type {
  margin-right: 2rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item h5 {
  font-size: 0.75rem;
  color: #6f7376;
  font-weight: 500;
  line-heighT: 1rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.25rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input {
  position: relative;
  padding: 0.5rem;
  border: 1px solid #dbdee1;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 400;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input .dropdown {
  position: absolute;
  top: 3.5rem;
  left: 0;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.12);
  border-radius: 0 0 0.5rem 0.5rem;
  height: 30vh;
  overflow-y: auto;
  -ms-overflow-style: none; /* IE 10+ */
  scrollbar-width: none; /* Firefox 대응 */
  overflow: hidden; /* 스크롤 자체 제거 */
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input .dropdown::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input .dropdown span {
  font-size: 0.875rem;
  padding: 1rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input.on {
  position: relative;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .input.on:after {
  position: absolute;
  content: "";
  box-shadow: inset 0px 0px 0px 0.125rem #1e1e1e;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.5rem 0.5rem 0 0;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .dayshift {
  padding: 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid #dbdee1;
  background: #fff;
  margin-left: 0.25rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .dayshift div {
  border-radius: 0.25rem;
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 0 0.5rem;
  color: #aab0b4;
  font-weight: 400;
  cursor: pointer;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time .item .timepicker .dayshift div.on {
  background: #f0f3f5;
  color: #4a4d4f;
  font-weight: 500;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .alert-text {
  color: #d42323;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-list .item {
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background: #e6e9eb;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6f7376;
  cursor: pointer;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-list .item:not(:last-of-type) {
  margin-right: 0.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-list .item.on {
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  font-weight: 600;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-list .item img {
  width: 1rem;
  margin-right: 0.25rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  padding: 0.75rem 0;
  line-height: 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-btn span.cancel {
  color: #6f7376;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-box .time-list-wrap .time-btn span.save {
  color: #0092f2;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1.5rem;
  width: calc(100% - 4.5rem);
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box .time {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e1e1e;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box .time2 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #aab0b4;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box .icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box .icon-wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-box-wrap .time-add-box .icon-wrap span img {
  width: 1.5rem;
}
.schedule .right .schedule-write .schedule-write-wrap .time-add .time-notice {
  padding: 0 0.5rem;
  color: #d42323;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 1rem;
}

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