@charset "utf-8";
@import url("font.css");
:root {
  --text-color: #111;
  --accenct-color: #1769ff;
  --red-color: #ef3e43;
  --white: #fff;
  --gray-color: #f8f8fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-style: none;
}
ul {
  list-style: none;
}
a {
  color: var(--text-color);
  text-decoration: none;
}
b {
  font-weight: bold;
}
img {
  vertical-align: middle;
  border: 0;
}
html {
  font-size: 10px;
}
body {
  font-family: "Pretendard", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-color);
  letter-spacing: -0.64px;
  word-break: keep-all;
}
/* 공통클래스 */
.inner {
  display: block;
  position: relative;
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  section {
    max-width: 102.4rem;
    margin: 0 auto;
  }
}

/* swiper 버튼 */
.sw-bt {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  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: 0;
  transform: translate(50%, -50%);
  z-index: 99;
}
.sw-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.sw-bt::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/slider_arrow.svg") no-repeat center;
}
.sw-prev::before {
  transform: scaleX(-100%);
}

/* section 내용 구조 */
.wrap > section {
  padding: 3rem 0;
}

.section-top {
  text-align: center;
}
.section-top > h2 {
  font-size: 2.8rem;
  line-height: 3.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-top > p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: rgba(0, 0, 0, 0.5);
}
.section-top .btns {
  margin: 2.5rem 0;
  /* inline-block 은 html 코드의 Enter 도 글자로 인식 */
  /* 그래서 공백글자가 들어간다. */
  font-size: 0;
}
.section-top .btns a {
  display: inline-block;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 2rem;
  line-height: 4.2rem;
  font-size: 1.4rem;
  color: var(--text-color);
  background: var(--white);
  margin-right: 6px;
}
.btns-active {
  background: var(--text-color) !important;
  color: var(--white) !important;
}

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

/* 플라잉 배너 */
.fix-banner {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
  text-align: center;
}
.fix-banner a {
  display: block;
}
.gotop {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--white) url("../images/btn_topArrow.svg") no-repeat center;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.16);
  font-size: 0;
  margin-top: 10px;
}

/* 퀵메뉴 */
.quick-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 99;
}
.quick-menu .inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 1rem;
  max-width: inherit;
}

/* 플라잉 마이페이지 */
.fix-mypage {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
}

.fix-mypage-main {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.fix-mypage-main .inner {
  border-radius: 18px 18px 0 0;
  background: var(--white);
  overflow: hidden;
  padding: 30px 0;
  text-align: center;
}
.fix-mypage-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.fix-mypage-list {
  display: inline-block;
}
.fix-mypage-list li {
  float: left;
  margin-right: 40px;
}
.fix-mypage-list li:last-child {
  margin-right: 0;
}

.fix-mypage-list li a {
  font-size: 1.4rem;
  color: #666;
}
.fix-mypage-list li a img {
  display: block;
  width: 48px;
  margin: 0 auto;
  margin-bottom: 8px;
}

/* 기본레이아웃 */
.wrap {
}
/* 상단 */
.header {
  position: relative;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-left {
  position: relative;
  width: calc(118px + 455px + 2rem);
  height: 5rem;
  display: flex;
  align-items: center;
}

.logo {
  /* a 태그는 inline 이므로 width, height 안됨 */
  /* a 태그는 inline 이므로 maring, padding 일부 안됨 */
  /* a 태그는 inline 이므로 최소 inline-block 으로 */
  display: inline;
  display: inline-block;
  display: block;

  width: 15rem;
  height: 3.8rem;
  background: url("../images/logo.svg") no-repeat center;
  background-size: contain;
  margin-right: 2rem;
}

.search {
  display: flex;
  align-items: center;
  width: 45rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  overflow: hidden;
  padding: 0px 1rem;
  position: relative;
}
.search-text {
  width: calc(100% - 25px);
  height: 100%;
  border: 0;
  padding-right: 3rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.search-text::placeholder {
  font-family: "Pretendard";
  color: #a2a2a2;
  font-size: 1.5rem;
  font-weight: 300;
}
.search-bt {
  border: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/btn_search.svg") no-repeat center;
  cursor: pointer;
}
.search-reset {
  position: absolute;
  right: 5rem;
  border: 0;
  font-size: 0;
  cursor: pointer;

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

.header-right {
  display: flex;
  position: relative;
}
.member-list {
  margin-top: 1.6rem;
  /* padding-top: 1.6rem; */
  /* line-height: 5rem; */
}
.member-list > li {
  position: relative;
  float: left;
  margin-right: 2rem;
}
.member-list > li:last-child {
  margin-right: 0;
}

.member-list > li > a {
  font-size: 15px;
  color: var(--text-color);
  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 {
  padding-bottom: 10px;
}

.mypage-bt:hover .mypage {
  opacity: 1;
  visibility: visible;
}

.mypage {
  display: block;
  visibility: hidden;

  position: absolute;
  top: 25px;
  right: 0;
  background: var(--white);
  padding: 2rem;
  border-radius: 13px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);

  opacity: 0;
  transition: all 0s;
}

.mypage-list {
}
.mypage-list li {
  margin: 1.4rem 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: 1.4rem;
}
.mypage-list li a b {
  font-weight: 500;
}

.mb-mypage {
  display: none;
}

.header-down {
  display: flex;
  align-items: center;
  padding: 3rem 0 2rem;
}

.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: 1.6rem;
  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;
}
.service-menu li {
  float: left;
}
.service-menu li a {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  line-height: 30px;
  padding: 0 12px;
}
.service-menu li a::before {
  display: block;
  position: absolute;
  top: calc(50% - 1rem / 2);
  left: 0;
  content: "";
  width: 1px;
  height: 1rem;
  background: rgba(0, 0, 0, 0.15);
}

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

.promotion .inner {
  height: 345px;
}

.promotion .section-top {
  display: none;
  margin-bottom: 2rem;
}

.promotion-slide {
  height: 100%;
}
.sw-promotion a {
  display: inline-block;
  border-radius: 13px;
  overflow: hidden;
}
.sw-promotion a img {
  width: 100%;
  height: auto;
}
.sw-promotion-control {
  display: none;
  position: relative;
  text-align: center;
}
.sw-promotion-pg {
  display: inline-block;
}

@media screen and (max-width: 1180px) {
  .promotion .inner {
    height: 27.5rem;
  }
}

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

.sw-shopping {
  height: 100%;
}
.shopping-item {
  /* min-width: 15rem; */
  height: fit-content;
}
.good {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--gray-color);
  text-align: center;
  overflow: hidden;
}
.good-img {
  /* 배경색이 mix blend 되므로 색상이 섞인다.
   * multiply 는 흰색을 투명하게 한다.
   * 자주 사용하지는 않습니다.
   * 포토샵 처럼 이미지 블랜드가 가능하다. 
   */
  mix-blend-mode: multiply;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.good-img img {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.good-info {
  background: var(--white);
  height: 10.6rem;
  padding: 2rem;
  text-align: left;
}
.good-info-list li b {
  font-size: 2rem;
  line-height: 2.4rem;
  color: var(--text-color);
  font-weight: 700;
  white-space: nowrap;
}
.good-info-list li b span {
  color: var(--red-color);
  margin-right: 0.4rem;
}
.good-info-list li p {
  /* 3. display: -webkit-box */
  display: -webkit-box;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--text-color);
  margin-top: 0.6rem;

  /* 내용이 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;
}

.shopping-btnMore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.shopping-btnMore a {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.shopping-btnMore i {
  display: block;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.6rem;
  border-radius: 5rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--white) url("../images/btn_topArrow.svg") no-repeat 50%;
  transform: rotate(90deg);
}

/* 투어특가 */
.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.06);
  overflow: hidden;
}
.tour-img {
  position: relative;
  width: 100%;

  /* 1280px 일때 높이가 245 px 이다. */
  /* 1280px 이 100vw 라면  */
  /* 245px 은 몇 vw 일까? */
  /*  245 / 1280 * 100  */
  max-height: 24.5rem;
  height: 19.14vw;

  overflow: hidden;
}
.tour-img img {
  /* absolute 를 영역 중앙에 배치 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* 좌표, 영역말고 내용 즉, 보이는 부분만 이동 */
  transform: translate(-50%, -50%) scale(1.3);

  width: 100%;
}

.tour-info {
  padding: 2.3rem 2rem 1.8rem;
  background: var(--white);
}
.tour-info-list {
}
.tour-info-list li {
  position: relative;
  margin: 0.6rem 0;
}

.tour-cate {
  display: inline-block;
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accenct-color);
  font-size: 1.4rem;
  line-height: 3.2rem;
  color: var(--white);
  font-weight: 700;
  padding: 0 1.2rem;
  border-radius: 0.3rem;
}
.tour-title {
  display: block;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--accenct-color);
  /* 1줄 말줄임 ...  */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tour-place {
  font-size: 1.5rem;
}
.tour-price {
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.tour-price b {
  font-weight: 700;
  font-size: 2rem;
}

/* 티켓랭킹 */
.ticket {
}
.ticket .section-slide {
  /* height: 540px; */
}
.ticket .section-slide .sw-bt {
  top: 35%;
}

.sw-ticket {
  height: 100%;
}

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

.ticket-img {
  position: relative;
  width: 100%;
  max-height: 40rem;
  height: 40rem;
  overflow: hidden;

  border-radius: 1rem;
}

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

  width: 100%;
}
.ticket-rank {
  position: absolute;
  bottom: 30px;
  left: 25px;
  font-size: 70px;
  color: var(--white);
  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: 1.6rem 0.8rem;
  background: var(--white);
}
.ticket-info-list li:not(:last-child) {
  margin-bottom: 0.7rem;
}
.ticket-title {
  /* 2줄 ... 처리 */
  display: -webkit-box;
  color: var(--text-color);
  line-height: 2.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ticket-hall {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #666;
  /* 1줄 ... 처리 */
  /* margin: 0.4rem 0; */
}
.ticket-date {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
}
.ticket-sale {
  display: inline-block;
  line-height: 2.4rem;
  font-size: 1.1rem;
  padding: 0 0.8rem;
  color: var(--red-color);
  border: 1px solid rgba(239, 62, 67, 0.3);
  border-radius: 3px;
}
.ticket-seat {
  display: inline-block;
  line-height: 2.4rem;
  font-size: 1.1rem;
  padding: 0 0.8rem;
  color: var(--accenct-color);
  border: 1px solid rgba(74, 107, 255, 0.3);
  border-radius: 3px;
}

/* 인터파크 라이브 */
.live {
}

.live .section-top {
  margin-bottom: 2.5rem;
}
.live .section-slide {
  height: 45.5rem;
}
.sw-live {
  height: 100%;
}
.sw-live > div > div {
  min-width: 18rem;
}
.live-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.live-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: pink;
}
.live-img img {
  /* 이미지 너비, 높이 상관없이 가운데 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);

  height: 100%;
}
.live-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
}

.live-info-top {
}
.live-info-cate {
  display: inline-block;
  line-height: 32px;
  font-size: 13px;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  padding: 0 12px;
  margin-bottom: 10px;
}

.live-info-title {
  display: -webkit-box;
  font-size: 2rem;
  line-height: 24px;
  /* 2줄 말줄임 출력 */
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  font-weight: 700;
  color: var(--white);
}

.live-info-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  text-align: center;
}
.live-info-date {
  color: var(--white);
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 5px;
}

.live-info-time {
  color: var(--white);
  font-size: 5rem;
  line-height: 60px;
  font-weight: 700;
}

.live-info-bottom {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  padding: 0 2rem;
}

.live-info-thumb {
  position: relative;
  float: left;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 0.3rem;
  overflow: hidden;
  /* background: pink; */
}
.live-info-thumb img {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
}

.live-info-desc {
  float: right;
  width: calc(100% - 65px - 10px);
}
.live-info-desc-title {
  font-size: 15px;
  line-height: 18px;
  color: var(--white);
  /* 1줄 말줄임 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 10px;
}
.live-info-desc-price {
  font-size: 1rem;
  color: var(--white);
  margin-top: 5px;
}

.live-info-desc-price em {
  color: var(--red-color);
  font-size: 2rem;
  line-height: 24px;
  font-weight: 700;
  font-style: normal;
}

.live-info-desc-price b {
  color: var(--white);
  font-size: 2rem;
  line-height: 24px;
  font-weight: 700;
}

/* 오늘의 도서 */
.books {
}
.books .section-slide {
  height: 40rem;
}

.books .section-slide .sw-bt {
  top: 43%;
}

.sw-books {
  height: 100%;
}
.books-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.books-img {
  position: relative;
  width: 100%;
  height: 33.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.books-img img {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
}
.books-img i {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 1.54rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  background-color: rgba(250, 59, 29, 0.6);
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 3rem;
}

.books-info {
  text-align: center;
}
.books-info-title {
  font-size: 1.5rem;
  line-height: 1.8rem;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: nowrap;
  margin-top: 1rem;
}
.books-info-desc {
  display: -webkit-box;
  color: #999;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8rem;
  margin-top: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.books-info-price {
  margin-top: 0.4rem;
  font-size: 1rem;
  vertical-align: middle;
  font-size: 1.6rem;
}
.books-info-price span {
  color: var(--red-color);
}
.books-info-price em {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 1280px) {
  .books .section-slide .sw-bt {
    top: 44%;
  }
  .books-img {
    height: 45rem;
  }
}

/* 이벤트 */
.event {
}
.event .section-top {
  margin-bottom: 2rem;
}

.event .section-slide {
  height: 35rem;
}

.sw-events {
  height: 100%;
}
.events-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #f7f7f7;
}
.events-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  mix-blend-mode: multiply;
}

/* 하단 */
.footer {
}
.footer-menu {
  position: relative;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 2rem 0;
  z-index: 99;
}
.footer-menu .inner {
}
.footer-menu-list {
  display: flex;
  justify-content: space-between;
}
.footer-menu-list > li {
  position: relative;
}
.footer-menu-list > li::after {
  position: absolute;
  top: 2px;
  right: -36px;
  content: "";
  width: 1px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
}
.footer-menu-list > li:last-child::after {
  content: none;
}

.footer-menu-list > li > a {
  font-size: 13px;
  line-height: 1rem;
  color: #333;
  white-space: nowrap;
}
.footer-menu-list > li > a > strong {
  font-weight: 700;
}
.footer-menu-list > li > a > i::before {
  display: inline-block;
  position: relative;
  content: "";
  width: 8px;
  height: 6px;
  background: url("../images/icon_arrow.svg") no-repeat center;
  margin-left: 4px;
  vertical-align: 2px;
}

.footer-menu-list > li:hover .more-list {
  display: block;
}

.more-list {
  display: none;
  position: absolute;
  top: 2rem;
  right: 0;
  padding: 1.6rem;
  background: var(--white);
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.more-list li {
  margin-bottom: 1rem;
}
.more-list li:last-child {
  margin-bottom: 0;
}

.more-list li a {
  white-space: nowrap;
  font-size: 13px;
  color: #333;
}

.footer-main {
  padding-top: 30px;
  padding-bottom: 55px;
}
.footer-main-left {
  float: left;
  width: 50%;
  padding-right: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-main-right {
  float: right;
  width: 50%;
  padding-left: 30px;
}

.company-name {
  float: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  margin-right: 10px;
}

.company-info {
  float: left;
  width: 80%;
}
.company-info li {
  font-size: 12px;
  line-height: 1.6rem;
  color: #666;
  margin-bottom: 15px;
}
.company-info li:last-child {
  margin-bottom: 0px;
}
.company-info li span {
}
.company-info li span.f-line::after {
  display: inline-block;
  position: relative;
  content: "";
  width: 1px;
  height: 10px;
  background: #b2b2b2;
  vertical-align: -1px;
  margin: 0 3px;
}

.company-info li a {
  color: #666;
}
.company-info li a.line {
  color: var(--accenct-color);
  text-decoration: underline;
}
.company-info li b {
  color: var(--text-color);
  font-weight: 700;
}
.company-info li p {
  font-size: 11px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}
/* caniuse.com 을 통해 확인한다. */
.copy {
  font-size: 11px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.footer-mobile {
  display: none;
}
.footer-mobile .inner {
  background: #fafafa;
  padding: 30px 0;
  text-align: center;
  max-width: initial;
}
.footer-mobile-menu {
}

.footer-mobile-menu a,
.footer-mobile-info a {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  font-size: 11px;
  color: #333;
  margin-bottom: 6px;
}
.footer-mobile-menu a strong,
.footer-mobile-info a strong {
  font-weight: 700;
}

.a-line::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 1px;
  height: 1.4rem;
  background: #afafaf;
}
.a-more::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 2px;

  width: 10px;
  height: 10px;
  background: url("../images/footer_arrow.svg") no-repeat center;
}
.footer-mobile-info .a-line::before {
  right: -2rem;
}

.footer-mobile-info a:first-child {
  margin-right: 2rem;
}

.footer-mobile-info {
  margin: 25px 0;
}
.footer-mobile-desc {
  position: relative;
  display: block;
  padding: 0 18%;

  font-size: 1rem;
  line-height: 1.4rem;
  color: #b2b2b2;
  /* 줄내림 할 때 단어는 잘라서 내리지않기 */
  word-break: keep-all;
  margin-bottom: 8.5rem;
}
