@charset "utf-8";
@import url("font.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-style: none;
}
ul {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
img {
  vertical-align: middle;
  border: 0;
}
html {
  font-size: 10px;
}
body {
  font-family: "Pretendard", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: #000;
  letter-spacing: -0.64px;
  word-break: keep-all;
}


/* 공통클래스 */
.inner {
  display: block;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  .wrap > section {
  }
  .inner {
    max-width: 1024px;
  }
}

@media screen and (max-width: 1024px) {
  .wrap > section {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .inner {
    padding: 0 20px;
    padding-bottom: 20px;
    max-width: 760px;
  }
  .sw-bt {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .inner {
    max-width: 100%;
    border-bottom: 8px solid #f0f4f4;
  }
}

/* float 해제 */
.clearfix::after {
  display: block;
  position: relative;
  content: "";
  width: 100%;
  clear: both;
}

/* swiper 버튼 */
.sw-bt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
  font-size: 0;
  cursor: pointer;
}

.sw-bt.swiper-button-disabled {
  display: none;
}
.sw-next {
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 99;
  transform: translateY(50%, 50%);
}
.sw-prev {
  position: absolute;
  top: 50%;
  left: -25px;
  z-index: 99;
  transform: translateY(-50%, -50%);
}
.sw-bt::before {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 4px);
  content: "";
  width: 8px;
  height: 16px;
  background: url("../images/slider_arrow.svg") no-repeat center;
}
.sw-prev::before {
  transform: scaleX(-100%);
}

/* section 내용 구조 */

.wrap > section {
  padding-top: 30px;
  padding-bottom: 90px;
}
.section-top {
  margin-bottom: 20px;
  text-align: center;
}
.section-top > h2 {
  font-size: 28px;
  line-height: 33px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-top > p {
  font-size: 18px;
  line-height: 2.4px;
  color: rgba(0, 0, 0, 0.5);
}
.section-top .btns {
  margin: 25px 0;
  /* inline-block 은 html 코드의 Enter 도 글자로 인식 */
  /* 그래서 공백글자가 들어간다. */
  font-size: 0;
}
.section-top .btns a {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 20px;
  line-height: 42px;
  font-size: 14px;
  color: #111;
  background: #fff;
  margin-right: 6px;
}
.btns-active {
  background: #111 !important;
  color: #fff !important;
}

.section-slide {
  position: relative;
  margin-bottom: 20px;
}
.section-bottom {
  text-align: center;
}
.bt-link-shop {
  /* 만약 block 이면 width 를 주고, margin: 0 auto; */
  /* inline-block 이므로 글자처럼 text-align:center  */
  display: inline-block;
  font-size: 16px;
  line-height: 56px;
  padding: 0 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  color: #333;
  font-weight: 700;
}
.bt-link-shop::after {
  display: inline-block;
  position: relative;
  content: "";
  margin-left: 3px;
  width: 7px;
  height: 11px;
  background: url("../images/icon_linkArrow.svg") no-repeat center;
}

@media screen and (max-width: 1024px) {
  .wrap > section {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .section-top {
  }
  .section-top > h2 {
  }
  .section-top > p {
  }
}

@media screen and (max-width: 1280px) {
  .section-top {
  }
  .section-top > h2 {
  }
  .section-top > p {
  }
}

@media screen and (max-width: 1024px) {
  .section-top {
  }
  .section-top > h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .section-top > p {
    font-size: 15px;
    line-height: 18px;
    margin-top: 2px;
  }
  .bt-link-shop {
    display: block;
    margin: 0 auto;
    border-radius: 3px;
    line-height: 48px;
    font-size: 1.5rem;
  }
  .section-top .btns {
    margin: 15px 0;
    white-space: nowrap;
    overflow: hidden;
  }
  .section-top .btns a {
    margin-right: 5px;
    line-height: 34px;
    padding: 0 14px;
  }
}

@media screen and (max-width: 760px) {
  .seciton-top {
  }
  .seciton-top > h2 {
  }
  .section-top > p {
  }
}

/* 기본레이아웃 */
.wrap {
}
/* 상단 */
.header {
  z-index: 999999;
  /* border-bottom: 1px solid #ebebeb; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header .inner {
  padding-top: 30px;
  height: 160px;
}
.header-up {
}

.header-left {
  position: relative;
  /* 자식들이 모두.. absoluter 라서. */
  /*  width, height 준다 */
  width: calc(118px + 455px + 20px);
  height: 50px;

  float: left;
}

.logo {
  /* a 태그는 inline 이므로 width, height 안됨 */
  /* a 태그는 inline 이므로 maring, padding 일부 안됨 */
  /* a 태그는 inline 이므로 최소 inline-block 으로 */
  display: inline;
  display: inline-block;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 118px;
  height: 50px;
  background: url("../images/logo.svg") no-repeat center;
  background-size: contain;
}

.search {
  position: absolute;
  top: 0;
  right: 0;

  width: 455px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  overflow: hidden;
  padding: 0px 15px;
}
.search-text {
  width: calc(100% - 25px);
  height: 50px;
  border: 0;
  padding-right: 30px;
  font-size: 16px;
  font-weight: 400;
}
.search-text::placeholder {
  color: #a2a2a2;
  font-size: 15px;
  font-weight: 700;
}
.search-bt {
  border: 0;
  width: 17px;
  height: 17px;
  background: url("../images/btn_search.svg") no-repeat center;
  cursor: pointer;
  /* 조건 : inline 또는 inline-block */
  vertical-align: -3px;
}
.search-reset {
  position: absolute;
  top: calc(50% - 8px);
  right: 50px;
  border: 0;
  font-size: 0;
  cursor: pointer;

  width: 16px;
  height: 16px;
  background: url("../images/btn_searchDelete.svg") no-repeat center;
}

.header-right {
  float: right;
}
.member-list {
  margin-top: 17px;
  /* padding-top: 17px; */
  /* line-height: 50px; */
}
.member-list > li {
  position: relative;
  float: left;
  margin-right: 20px;
}
.member-list > li:last-child {
  margin-right: 0;
}

.member-list > li > a {
  font-size: 15px;
  color: #111;
  font-weight: 500;
}
.icon-arrow::after {
  display: inline-block;
  position: relative;
  content: "";
  width: 8px;
  height: 5px;
  background: url("../images/arrow_pc.svg") no-repeat center;
  vertical-align: 3px;
  margin-left: 5px;
}

.mypage-bt:hover .mypage {
  display: block;
}

.mypage {
  display: none;
  position: absolute;
  top: 25px;
  right: 0;
  background: #fff;
  padding: 20px;
  border-radius: 13px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

/* 
.mypage-bt {
  padding-bottom: 140px;
}
.mypage-bt:hover .mypage {
  opacity: 1;
  visibility: visible;
}

.mypage {
  display: block;
  visibility: hidden;
  position: absolute;
  top: 25px;
  right: 0;
  padding: 20px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s 0s ease-in, visibility 0.5s 0s ease-in;
} */

.mypage-list {
}
.mypage-list li {
  margin: 10px 0;
}
.member-list li:first-child {
  margin-top: 0;
}
.member-list li:last-child {
  margin-bottom: 0;
}

.mypage-list li a {
  /* 글자 줄내림 없다. */
  /* inline 은 한줄로 배치 */
  white-space: nowrap;
  font-size: 14px;
}
.mypage-list li a b {
  font-weight: 500;
}

.header-down {
}

.service-list {
  display: block;
  float: left;
  margin-top: 30px;
}
.service-list li {
  float: left;
  padding-right: 23px;
}
.service-list li:last-child {
  padding-right: 0;
  margin-right: 15px;
}

.service-list li a {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  line-height: 30px;
}
.service-list li a img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.service-menu {
  display: block;
  float: left;
  margin-top: 30px;
}
.service-menu li {
  float: left;
}
.service-menu li a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  line-height: 30px;
  padding: 0 12px;
}
.service-menu li a::before {
  display: block;
  position: absolute;
  top: calc(50% - 16px / 2);
  left: 0;
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.2);
}

/* 추천이벤트 */
.promotion {
}
/* //추천이벤트 */

/* 쇼핑추천 */
.shopping {
}
.shopping .section-slide {
  height: 405px;
}

.sw-shopping {
  height: 100%;
}

.good {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #eeeeee;
  text-align: center;
  overflow: hidden;
}
.good > img {
  width: 100%;
  /* 배경색이 mix blend 되므로 색상이 섞인다. */
  /* multiply 는 흰색을 투명하게 한다. */
  /* 자주 사용하지는 않습니다. */
  /* 포토샵 처럼 이미지 블랜드가 가능하다. */
  mix-blend-mode: multiply;
}
.good-info {
  background: #fff;
  text-align: left;
  padding: 20px;
}

.good-info-list {
}
.good-info-list li {
}
.good-info-list li b {
  font-size: 20px;
  line-height: 24px;
  color: #111;
  font-weight: 700;
}
.good-info-list li b span {
  color: #ef3e43;
}
.good-info-list li p {
  /* 3. display: -webkit-box */
  display: -webkit-box;
  font-size: 15px;
  line-height: 18px;
  color: #111;
  margin-top: 10px;

  /* 내용이 1줄일 수도 있고 최대 2줄이다 */
  /* 높이값을 지정해서 레이아웃을 지킨다. */
  /* 내용이 넘치는 경우 ... 처리 */
  /* 카페에 적어둘께요. 2줄 말줄임 */
  /* 1. 높이가 있어야 합니다. */
  height: 36px;
  /* 2. 넘치는 영역을 가린다. */
  overflow: hidden;
  /* 4. text-overflow: elipsis */
  text-overflow: ellipsis;
  /* 5. 아래 코드를 입력한다. */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* 투어특가 */
.tour {
}

.tour .section-slide {
  height: 355px;
}
.sw-tour {
  height: 100%;
}
.tour-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.tour-img {
  position: relative;
  width: 100%;
  height: 245px;
  overflow: hidden;
}
.tour-img img {
  /* absolute 를 영역 중앙에 배치 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* 좌표, 영역말고 내용 즉, 보이는 부분만 이동 */
  transform: translate(-50%, -50%);

  width: 100%;
}

.tour-info {
  padding: 20px;
  background: #fff;
}
.tour-info-list {
}
.tour-info-list li {
  position: relative;
  margin-bottom: 3px;
}

.tour-cate {
  display: inline-block;
  position: absolute;
  top: -39px;
  left: 0;
  background: #4a95ff;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  border-radius: 3px;
}
.tour-title {
  display: block;
  font-size: 15px;
  line-height: 18px;
  color: #4a95ff;
  /* 1줄 말줄임 ...  */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tour-place {
}
.tour-price {
  color: #111;
  font-size: 16px;
  line-height: 24px;
}
.tour-price b {
  font-weight: 700;
  font-size: 20px;
}

/* 티켓랭킹 */
.ticket {
}

/* 티켓은 버튼을 이상하니 우선순위로 둔다 */
.ticket > .inner > .section-slide > .sw-bt {
  top: 35%;
}

.sw-ticket {
  height: 100%;
}

.ticket-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ticket-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;

  border-radius: 10px;
}

.ticket-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
}
.ticket-rank {
  position: absolute;
  bottom: 30px;
  left: 25px;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}
.ticket-img::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    linear-gradient(180deg, transparent 68.5%, rgba(0, 0, 0, 0.6));
}

.ticket-info {
  padding: 20px 10px;
  background: #fff;
}
.ticket-info-list {
}
.ticket-info-list li {
  margin-bottom: 5px;
}
.ticket-info-list li:first-child {
  margin-bottom: 0px;
}
.ticket-title {
  /* 2줄 ... 처리 */
  display: -webkit-box;
  color: #111;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ticket-hall {
  display: block;
  font-size: 15px;
  line-height: 18px;
  color: #666;
  /* 1줄 ... 처리 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ticket-date {
  display: block;
  font-size: 14px;
  line-height: 17px;
  color: #999;
}
.ticket-sale {
  display: inline-block;
  line-height: 24px;
  font-size: 11px;
  padding: 0 8px;
  color: #ef3e43;
  border: 1px solid rgba(239, 62, 67, 0.3);
  border-radius: 3px;
}

/* 인터파크 라이브 */
.live {
}
/* 오늘의 도서 */
.books {
}
/* 이벤트 */
.event {
}
/* 하단 */
.footer {
}
