@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ol,
ul,
li {
  list-style: none;
}

button {
  border: none;
  outline: none;
  background-color: inherit;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: pretendard;
  color: #222;
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  margin: 0 auto;
  width: 1100px;
}

.cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 70%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}

#header {
  position: fixed;
  z-index: 1000;
  height: 100px;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.3s;
  background: #fff;
}
#header.scroll::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100px;
  backdrop-filter: blur(10px);
}
#header.hidden {
  transform: translateY(-100%);
}
#header .header_wrap {
  margin: 0 60px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_wrap .header_left {
  display: flex;
  align-items: center;
  gap: 50px;
}
#header .header_wrap .header_left .header_logo a {
  display: block;
  font-size: 0;
}
#header .header_wrap .header_left .header_logo a img {
  width: 197px;
  object-fit: cover;
}
#header .header_wrap .header_left .header_logo a img:nth-child(2) {
  display: none;
}
#header .header_wrap .header_left #gnb {
  display: flex;
  align-items: center;
  gap: 40px;
}
#header .header_wrap .header_left #gnb li a {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  transition: color 0.3s;
}
#header .header_wrap .header_left #gnb li:hover a {
  color: #03d8c5;
}
#header .header_wrap .header_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
#header .header_wrap .header_right .search_bar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
#header .header_wrap .header_right .search_bar .search_btn {
  border: none;
  background: none;
  font-size: 0;
  cursor: pointer;
}
#header .header_wrap .header_right .search_bar .search_btn img {
  width: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}
#header .header_wrap .header_right .search_bar .search_txt {
  width: 180px;
  padding-bottom: 3px;
  font-size: 1.4rem;
  border: none;
  font-family: pretendard;
  background: none;
}
#header .header_wrap .header_right .search_bar .search_txt:focus {
  outline: none;
}
#header .header_wrap .header_right .search_bar .search_txt::placeholder {
  color: #dedede;
}
#header .header_wrap .header_right .search_bar .search_txt {
  border-bottom: 1px solid #999;
}
#header .header_wrap .header_right .search_bar .search_btn img {
  width: 16px;
}
#header .header_wrap .header_right .search_bar .search_btn img:nth-child(1) {
  display: block;
}
#header .header_wrap .header_right .search_bar .search_btn img:nth-child(2) {
  display: none;
}
#header .header_wrap .header_right .signup_btn {
  padding: 7px 15px 10px;
  border: 1px solid #03d8c5;
  border-radius: 5px;
  font-size: 0;
  text-align: center;
  color: #03d8c5;
  transition: all 0.4s;
}
#header .header_wrap .header_right .signup_btn span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
}
#header .header_wrap .header_right .signup_btn i {
  display: none;
}
#header .header_wrap .header_right .signup_btn:hover {
  background-color: #03d8c5;
  color: #fff;
}
#header .header_wrap .header_right .mypage_btn {
  display: none;
}
#header .header_wrap .header_right .mypage_btn img {
  width: 20px;
}
#header .header_wrap .header_right .mypage_btn img:nth-child(1) {
  display: block;
}
#header .header_wrap .header_right .mypage_btn img:nth-child(2) {
  display: none;
}
#header .header_wrap .header_right .mypage_btn #hiUser {
  font-size: 1.5rem;
  color: #999;
  margin-left: 10px;
}
#header .header_wrap .header_right .mypage_btn #hiUser b {
  color: #666;
  margin-right: 3px;
}
#header .header_wrap .header_right_m {
  display: none;
}
#header .header_wrap #header_menu_m {
  display: none;
}
#header .header_wrap #search_area_m {
  display: none;
}
#header .header_wrap #search_area_m .search_bar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
#header .header_wrap #search_area_m .search_bar .search_btn {
  border: none;
  background: none;
  font-size: 0;
  cursor: pointer;
}
#header .header_wrap #search_area_m .search_bar .search_btn img {
  width: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}
#header .header_wrap #search_area_m .search_bar .search_txt {
  width: 180px;
  padding-bottom: 3px;
  font-size: 1.4rem;
  border: none;
  font-family: pretendard;
  background: none;
}
#header .header_wrap #search_area_m .search_bar .search_txt:focus {
  outline: none;
}
#header .header_wrap #search_area_m .search_bar .search_txt::placeholder {
  color: #dedede;
}
#header.bg_black {
  background: transparent;
}
#header.bg_black .header_wrap .header_left .header_logo a img:nth-child(1) {
  display: none;
}
#header.bg_black .header_wrap .header_left .header_logo a img:nth-child(2) {
  display: block;
}
#header.bg_black .header_wrap .header_left #gnb li a {
  color: #fff;
}
#header.bg_black .header_wrap .header_left #gnb li:hover a {
  color: #03d8c5;
}
#header.bg_black .header_wrap .header_right .search_bar .search_txt {
  color: #fff;
  border-bottom: 1px solid #fff;
}
#header.bg_black .header_wrap .header_right .search_bar .search_btn img:nth-child(1) {
  display: none;
}
#header.bg_black .header_wrap .header_right .search_bar .search_btn img:nth-child(2) {
  display: block;
}
#header.bg_black .header_wrap .header_right .mypage_btn img:nth-child(1) {
  display: none;
}
#header.bg_black .header_wrap .header_right .mypage_btn img:nth-child(2) {
  display: block;
}
#header.bg_black .header_wrap .header_right .mypage_btn #hiUser {
  color: #fff;
}
#header.bg_black .header_wrap .header_right .mypage_btn #hiUser #hiUsername {
  color: #fff;
}

.sub_visual {
  padding-top: 100px;
  margin: 0 35px;
}
.sub_visual .sub_visual_wrap {
  width: 100%;
  height: 320px;
  border-radius: 40px;
  overflow: hidden;
  background: url("../imgs/sub_visual_bg.jpg") no-repeat center/cover;
}
.sub_visual .sub_visual_wrap .wrapper {
  height: 100%;
  padding-bottom: 55px;
}
.sub_visual .sub_visual_wrap .wrapper .sub_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}
.sub_visual .sub_visual_wrap .wrapper .sub_text h2 {
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.sub_visual .sub_visual_wrap .wrapper .sub_text h2 span {
  color: #03d8c5;
  position: relative;
}
.sub_visual .sub_visual_wrap .wrapper .sub_text h2 span::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #03d8c5;
  opacity: 0.6;
}
.sub_visual .sub_visual_wrap .wrapper .sub_text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  word-break: keep-all;
}

/* footer */
.footer {
  left: 0;
  background: #222;
  width: 100%;
  height: 214px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer .go_artist {
  width: 250px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10vh;
  position: fixed;
  background: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}
.footer .go_artist span {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
}
.footer .go_artist i {
  font-size: 1.5rem;
}
.footer .go_artist.active {
  opacity: 1;
}
.footer .up_btn {
  width: 54px;
  height: 54px;
  right: 7vh;
  bottom: 7vh;
  position: fixed;
  opacity: 0;
  transition: opacity 0.4s;
}
.footer .up_btn a div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #222;
  border-radius: 27px;
}
.footer .up_btn a div i {
  font-size: 2rem;
  color: #222;
}
.footer .up_btn.active {
  opacity: 1;
}
.footer .footer_wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_wrap .footer_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #999;
  font-size: 1.8rem;
  gap: 14px;
}
.footer .footer_wrap .footer_left .footer_leftup {
  display: flex;
  align-items: center;
  gap: 21px;
}
.footer .footer_wrap .footer_left .footer_leftup div {
  width: 1.5px;
  height: 16px;
  background: #999;
}
.footer .footer_wrap .footer_left p {
  font-size: 1.6rem;
}
.footer .footer_wrap .footer_logo {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer_wrap .footer_logo img {
  width: 100%;
}

#detail_page .up_btn div {
  border: 1px solid #fff;
}
#detail_page .up_btn div i {
  color: #fff;
}

.paging_area {
  margin-top: 50px;
  margin-bottom: 120px;
  position: relative;
  height: 36px;
}
.paging_area .paging_wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.paging_area .paging_wrap .paging_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging_area .paging_wrap .paging_list li {
  margin: 0 3.5px;
}
.paging_area .paging_wrap .paging_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 1.9rem;
}
.paging_area .paging_wrap .paging_list li.active a {
  background: #222;
}
.paging_area .paging_wrap .paging_list li.active a span {
  color: #fff;
  font-weight: 300;
}
.paging_area .paging_wrap .paging_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}
.paging_area .paging_wrap .paging_btn span {
  font-size: 2.2rem;
  color: #666;
  transform: translateX(3%);
}
.paging_area .paging_wrap .paging_btn.paging_prev {
  left: 0;
  transform: translate(-100%, -48%);
}
.paging_area .paging_wrap .paging_btn.paging_next {
  right: 0%;
  transform: translate(100%, -48%);
}