@charset "UTF-8";

/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  line-height: 1;
  min-width: 320px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
address {
  font-style: normal;
}

/* font */
body,
input,
button,
select {
  font-family: 'Pretendard', sans-serif;
  color: #202020;
  font-weight: 400;
}

/* 최대폭 */
.inner-wrap {
  padding: 0 29px;
}

@media (min-width: 1024px) {
  .inner-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 110px;
  }
}

/* header ========== */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  text-align: right;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 500;
  border-bottom: solid 1px transparent;
}
header .wrap-header {
  position: relative;
  max-width: 1180px;
  height: 100px;
  margin: 0 auto;
  padding: 0 110px;
  box-sizing: content-box;
}
header .logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
header .logo a {
  display: block;
  padding: 20px 0;
  line-height: 35px;
}
header .logo img:nth-child(2) {
  display: none;
}
header .btn-menu {
  display: none;
}
header nav {
  display: inline-block;
  color: #fff;
  margin-right: -50px;
}
header nav > ul {
  display: inline-block;
}
header nav > ul > li {
  display: inline-block;
  font-size: 18px;
  letter-spacing: -0.39px;
  margin-right: 15px;
  padding: 40px 0;
}
header nav > ul > li:last-child {
  margin-right: 0;
}
header nav > ul > li > a {
  padding: 10px;
}
header nav .depth2 {
  position: relative;
}
header nav .depth2 > a::after {
  display: inline-block;
  content: '';
  width: 11px;
  height: 6px;
  background: url('/FlyBookSitePublishing/assets/img/ic-arrow-menu-down.svg') no-repeat center;
  background-size: 100%;
  vertical-align: middle;
  margin-left: 8px;
  margin-top: -5px;
}
header nav .depth2 > a.open::after {
  transform: rotate(180deg);
}
header nav .depth2-menu {
  position: absolute;
  left: 0;
  top: 101px;
  min-width: 220px;
  background: #fff;
  padding: 24px 20px;
  color: #000;
  text-align: left;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 500;
}
header nav .depth2-menu li {
  margin-bottom: 24px;
}
header nav .depth2-menu li:last-child {
  margin-bottom: 0;
}
header nav .depth2-menu a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.3px;
}
header .store-btn-m {
  display: block;
  width: calc(100% - 32px);
  position: fixed;
  z-index: 999;
  bottom: 16px;
  left: 16px;
}
header .store-btn-m a {
  width: 100%;
  display: block;
  background-color: #2157e4;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  line-height: 56px;
  color: #fff;
}
header .store-btn-m svg {
  vertical-align: middle;
  margin-top: -2px;
  margin-left: -3px;
}
header .store-btn-m svg path {
  stroke: #fff;
}
header .store-btn-m span {
  display: inline-block;
  line-height: 56px;
  vertical-align: top;
}
header .store-btn {
  display: none;
  margin-left: 56px;
}
header .store-btn a {
  display: flex;
  background: #fff;
  color: #131720;
  align-items: center;
  border-radius: 8px;
  padding: 16px 24px;
  transition: ease background 0.3s;
}
header .store-btn span {
  font-size: 18px;
  font-weight: 600;
  margin-right: 4px;
}
header.scroll .store-btn svg path {
  stroke: #fff;
}
header.scroll .store-btn a {
  background: #2157e4;
}
header.scroll .store-btn a {
  color: #fff;
}
@media (min-width: 1024px) {
  header .store-btn-m {
    display: none;
  }
  header .store-btn {
    display: inline-block;
  }
}
/* header scroll */
header.scroll {
  background: #fff;
  border-color: #f9f9f9;
}
header.scroll .logo img:nth-child(1) {
  display: none;
}
header.scroll .logo img:nth-child(2) {
  display: block;
}
header.scroll nav > ul > li > a {
  color: #000;
}
header.scroll .btn-menu span {
  background: #202020;
}
/* header partnership */
header.partnership {
  background: #fff;
}
header.partnership .sub-logo {
  position: absolute;
  display: block;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  letter-spacing: -1.14px;
}
header .info {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
header .user-name {
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  vertical-align: top;
  letter-spacing: -0.3px;
  color: #666;
  margin-right: 32px;
}
header .btn-logout {
  border: none;
  background: #f6f6f6;
  border-radius: 8px;
  display: inline-block;
  padding: 7px 20px;
  font-size: 18px;
  letter-spacing: -0.39px;
  color: #000;
  cursor: pointer;
}
/* header white */
header.white {
  background: #fff;
}
header.white .logo img:nth-child(1) {
  display: none;
}
header.white .logo img:nth-child(2) {
  display: block;
}
header.white nav > ul > li > a {
  color: #202020;
}
header.white .btn-menu span {
  background: #202020;
}
header.white .store-btn a {
  background: #2157e4;
  color: #fff;
}
header.white .store-btn svg path {
  stroke: #fff;
}

@media (min-width: 1024px) {
  header nav,
  header nav .depth2-menu {
    display: block !important;
  }
  header nav > ul > li:hover > a {
    font-weight: bold;
  }
  header nav .depth2:hover .depth2-menu {
    opacity: 1;
    visibility: visible;
  }
  header nav .depth2-menu li:hover a {
    font-weight: bold;
  }
  header nav .depth2 > a::after {
    display: none;
  }
  header.partnership {
    border-bottom: 1px solid #f6f6f6;
  }
  header.partnership .wrap-header {
    height: 80px;
  }
  header.partnership .sub-logo {
    font-size: 24px;
    letter-spacing: -1.71px;
    right: -88px;
  }
}

@media (max-width: 1023px) {
  header .wrap-header {
    height: 50px;
    padding: 0 1px 0 0;
  }
  header .logo {
    width: 154px;
    left: 13px;
  }
  header .logo a {
    padding: 16px;
  }
  header .info {
    display: none;
  }
  header .btn-menu {
    display: inline-block;
    padding: 16px;
  }
  header .btn-menu .inner {
    position: relative;
    width: 20px;
    height: 18px;
  }
  header .btn-menu span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 1px;
    left: 0;
    background: #fff;
    transition: 0.3s ease;
  }
  header .btn-menu span:nth-child(1) {
    top: 0;
  }
  header .btn-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .btn-menu span:nth-child(3) {
    bottom: 0;
  }
  header nav {
    display: none;
    position: absolute;
    width: 100%;
    max-height: calc(100vh - 50px);
    left: 0;
    top: 50px;
    margin: 0;
    padding: 36px 24px;
    overflow-y: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
  }
  header nav.active {
    display: block;
  }
  header nav > ul > li {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 17px;
    letter-spacing: -0.37px;
    color: #202020;
  }
  header nav > ul > li > a {
    display: block;
    padding: 12px 10px;
  }
  header nav .depth2-menu {
    display: none;
    position: static;
    padding: 0;
    color: #202020;
    opacity: 1;
    visibility: visible;
    background: none;
    text-align: center;
    border: none;
    transition: none;
    margin-bottom: 12px;
  }
  header nav .depth2-menu li {
    margin: 0;
  }
  header nav .depth2-menu a {
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.32px;
    padding: 12px 0;
  }
  /* 메뉴버튼 토글 */
  header .btn-menu.active span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
  header .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  header .btn-menu.active span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
}

/* footer ========== */
footer {
  padding: 60px 0 100px;
}
footer address {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: -0.29px;
  color: #666;
  margin-bottom: 24px;
}
footer address p:first-child {
  font-size: 17px;
  letter-spacing: -0.37px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #202020;
}
footer .etc-menu {
  margin-bottom: 24px;
}
footer .etc-menu li {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.26px;
  font-weight: bold;
  margin-right: 5px;
  vertical-align: top;
}
footer .etc-menu li:last-child {
  margin-right: 0;
  color: #666;
}
footer .etc-menu li a {
  display: block;
}
footer .sns-menu {
  margin-bottom: 24px;
}
footer .sns-menu::after {
  content: '';
  display: block;
  clear: both;
}
footer .sns-menu li {
  float: left;
  border-radius: 8px;
  margin-right: 12px;
  margin-bottom: 12px;
}
footer .sns-menu li:last-child {
  margin-right: 0;
}
footer .sns-menu li a {
  display: block;
  width: 30px;
  height: 30px;
}
footer .copy {
  display: block;
  font-size: 14px;
  letter-spacing: -0.3px;
  color: #999;
}

@media (min-width: 1024px) {
  footer {
    padding: 100px 0 118px;
  }
  footer address {
    font-size: 14px;
    letter-spacing: -0.3px;
  }
  footer address p:first-child {
    font-size: 18px;
    letter-spacing: -0.39px;
    margin-bottom: 24px;
  }
  footer .etc-menu li {
    font-size: 14px;
    letter-spacing: -0.3px;
    margin-right: 32px;
  }
  footer .sns-menu {
    margin-bottom: 24px;
  }
  footer .sns-menu li {
    margin-right: 17px;
  }
}

/* 서비스소개 공통 스타일 ========== */
.main-service-info {
  padding: 48px 0;
  text-align: center;
}
.main-service-info .inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-service-info .txt-box .sub {
  font-size: 12px;
  letter-spacing: -0.26px;
  margin-bottom: 12px;
}
.main-service-info .txt-box .tit {
  font-size: 21px;
  letter-spacing: -0.45px;
  margin-bottom: 36px;
}
.main-service-info .txt-box .desc {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 24px;
}
.main-service-info .img-box {
  max-width: 580px;
}

@media (min-width: 1024px) {
  .main-service-info {
    height: 650px;
    padding: 0;
    box-sizing: border-box;
  }
  .main-service-info .inner-wrap {
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .main-service-info .txt-box {
    width: 45%;
    text-align: left;
  }
  .main-service-info .txt-box .sub {
    font-size: 16px;
    letter-spacing: -0.35px;
  }
  .main-service-info .txt-box .tit {
    font-size: 40px;
    letter-spacing: -0.87px;
  }
  .main-service-info .txt-box .desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.35px;
    margin-bottom: 72px;
  }
  .main-service-info .img-box {
    width: 55%;
  }
  .main-service-info:nth-child(even) .img-box {
    order: 1;
    margin-right: 20px;
  }
  .main-service-info:nth-child(even) .txt-box {
    order: 2;
    margin-left: 0;
  }
  .main-service-info:nth-child(odd) .img-box {
    margin-left: 20px;
  }
  .main-service-info:nth-child(odd) .txt-box {
    margin-right: 0;
  }
}

/* 버튼 공통 스타일 ========== */
.main-btn {
  display: inline-block;
  background: #2157e4;
  border-radius: 8px;
  margin-bottom: 36px;
}
.main-btn a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  letter-spacing: -0.32px;
  color: #fff;
}
.main-btn a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url('/FlyBookSitePublishing/assets/img/ic-arrow-btn-white.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 4px;
  margin-bottom: -1px;
}
.main-btn.black {
  background: #202020;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .main-btn {
    box-shadow: 0 3px 6px 0 rgba(33, 87, 228, 0.3);
    transition: 0.3s ease;
    margin-bottom: 0;
  }
  .main-btn:hover {
    transform: translateY(3px);
  }
  .main-service-info .main-btn:hover {
    background: #1947bf;
  }
  .main-btn a {
    padding: 21px 36px;
    font-size: 18px;
    letter-spacing: -0.39px;
  }
  .main-btn a::after {
    margin-left: 7px;
    margin-bottom: 0;
  }
  .main-btn.black:hover {
    background: #424242;
  }
}

/* 하단배너 공통 스타일 ========== */
.main-bottom-banner {
  height: 400px;
  padding: 48px 0;
  box-sizing: border-box;
}
.main-bottom-banner .txt {
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.37px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}
.main-bottom-banner .main-btn {
  background: #fff;
}
.main-bottom-banner .main-btn a {
  color: #202020;
}
.main-bottom-banner .main-btn a::after {
  background-image: url('/FlyBookSitePublishing/assets/img/ic-arrow-btn-black.svg');
}

@media (min-width: 1024px) {
  .main-bottom-banner {
    padding: 93px 0 0 0;
  }
  .main-bottom-banner .txt {
    font-size: 40px;
    line-height: 59px;
    letter-spacing: -0.87px;
    margin-bottom: 36px;
  }
  .main-bottom-banner .main-btn {
    box-shadow: none;
  }
  .main-bottom-banner .main-btn:hover {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #e0ecff;
  }
}

/* show/hide 공통 스타일 */
.show {
  display: block !important;
}
.hide {
  display: none !important;
}

/* 제휴 index 페이지 / 관리자 form 페이지 공통스타일 */
.partner-slide li {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  max-width: 380px;
  min-height: 200px;
  padding: 16px 16px 24px 16px;
  margin: 10px 29px 10px 0;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.partner-slide .icon {
  width: 30px;
  margin-bottom: 24px;
}
.partner-slide .tit {
  font-size: 17px;
  letter-spacing: -0.37px;
  font-weight: 500;
  margin-bottom: 12px;
}
.partner-slide .tit .small {
  font-size: 12px;
  line-height: 17px;
  color: #2157e4;
  margin-left: 5px;
  vertical-align: top;
}
.partner-slide .desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.3px;
}

@media (min-width: 1024px) {
  .partner-slide li {
    min-height: 266px;
    padding: 36px 36px 42px 36px;
    margin: 10px 20px 10px 0;
  }
  .partner-slide .icon {
    width: 46px;
    margin-bottom: 29px;
  }
  .partner-slide .tit {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.52px;
    margin-bottom: 17px;
  }
  .partner-slide .tit .small {
    font-size: 14px;
    line-height: 24px;
    margin-left: 6px;
  }
  .partner-slide .desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.35px;
  }
}

/* modal */
/* .modal-container {
    display: none;
    position: fixed;
    width: 400px;
    max-width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1000;
    text-align: center;
    padding: 24px 16px 19px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 12px 44px 0 rgba(0,0,0,0.1);
    border: solid 1px #eaeaea;
    box-sizing: border-box;
}
.modal-container .title {
    font-size: 20px;
    letter-spacing: -0.43px;
    margin-bottom: 24px;
}
.modal-container .text {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.3px;
    margin-bottom: 22px;
}
.modal-container .modal-btn {
    width: 100%;
    height: 44px;
    background: #2157e4;
    border-radius: 8px;
    color: #fff;
    letter-spacing: -0.35px;
    cursor: pointer;
    font-size: 16px;
} */

/* input 경고 텍스트 */
.warning-txt {
  display: none;
  text-align: left;
  font-size: 12px;
  letter-spacing: -0.26px;
  color: #ff2e2e;
}

/* 배경색 class */
.bg-white {
  background: #fff !important;
}
.bg-gray {
  background: #f6f6f6 !important;
}

/* 패딩 class */
.pt56 {
  padding-top: 56px;
}
.pt63 {
  padding-top: 63px;
}
.pt66 {
  padding-top: 66px;
}
.pt122 {
  padding-top: 122px;
}
.pb80 {
  padding-bottom: 80px;
}

/*
    높이가 full인 영역 전용 클래스
    (ios에서만 상하단바를 제외한 높이로 잡아주는 설정)
*/
.full-height {
  min-height: 100vh;
}
@supports (-webkit-touch-callout: none) {
  .full-height {
    min-height: -webkit-fill-available;
  }
}

/* 넓이가 100%인 영역 전용 클래스 */
.full-width {
  width: 100% !important;
}

.height100 {
  height: 100%;
}

/* 스크롤바 영역 밀림 방지 클래스 */
.oy-scroll {
  overflow-y: scroll;
}

/* 공통 모달 */
.flybook-modal-box {
  display: none;
}
.flybook-modal-box .inner {
  position: fixed;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 279px;
  padding: 36px 32px 24px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  z-index: 1500;
}
.flybook-modal-box .modal-tit {
  font-size: 17px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.flybook-modal-box .modal-sub {
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.flybook-modal-box .modal-btn span {
  display: block;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.03em;
  font-weight: 500;
  cursor: pointer;
}
.flybook-modal-box .modal-btn span a {
  display: block;
}
.flybook-modal-box .modal-btn .blue {
  color: #2157e4;
}
.flybook-modal-box .modal-btn .w50 {
  float: left;
  width: 45%;
}
.flybook-modal-box .modal-btn .w50:first-child {
  margin-right: 10%;
}
.flybook-modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* sweetalert 커스텀 */
.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.swal2-popup {
  width: 90% !important;
  max-width: 279px !important;
  padding: 36px 32px 24px !important;
  background: #fff !important;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
.swal2-title {
  font-size: 17px !important;
  line-height: 21px !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  color: #202020 !important;
}
.swal2-html-container {
  max-width: none !important;
  font-size: 15px !important;
  line-height: 21px !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 40px 0 !important;
  color: #202020 !important;
  padding: 0 !important;
  text-align: center !important;
}
.swal2-actions {
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}
.swal2-styled {
  width: 50% !important;
  margin: 0 !important;
  color: #202020 !important;
  font-size: 15px !important;
  line-height: 21px !important;
  letter-spacing: -0.03em !important;
  font-weight: 500 !important;
  padding: 0 !important;
}
.swal2-actions:not(.swal2-loading) .swal2-styled:hover,
.swal2-styled.swal2-confirm,
.swal2-styled.swal2-deny,
.swal2-styled.swal2-cancel {
  background: none !important;
}
.blue {
  color: #2157e4 !important;
}
.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-deny:focus,
.swal2-styled.swal2-cancel:focus {
  box-shadow: none !important;
}

/* block 파란 버튼 */
.btn-blue-block {
  display: block;
  font-size: 15px;
  line-height: 56px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.2px;
  background: #2157e4;
  border-radius: 8px;
  margin-top: 16px;
}
.btn-blue-block::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('/FlyBookSitePublishing/assets/img/sub/book/ic-new-download.png') center no-repeat;
  background-size: 100%;
  margin-left: 4px;
  margin-top: -4px;
  vertical-align: middle;
}

.gray-btn {
  background: #d5d7dc !important;
  color: #9499a5 !important;
}

/* 자주묻는질문 */
.qna-common {
  padding: 13.2vw 6.3vw 23.6vw;
  background: #b2c7da4d;
}
.qna-common .title {
  font-size: 7vw;
  line-height: 1.4;
  margin-bottom: 6vw;
  font-weight: bold;
  text-align: center;
}
.qna-common .box li {
  border-radius: 4vw;
  background-color: #ffffff;
  padding: 0 4.3vw;
  margin-bottom: 3.9vw;
}
.qna-common .box li:last-child {
  margin-bottom: 0px;
}
.qna-common .box .ques {
  font-size: 4.2vw;
  line-height: 1.4;
  font-weight: 500;
  padding: 4vw 7.484vw 4vw 0;
  position: relative;
  cursor: pointer;
}
.qna-common .box .ques::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5vw;
  height: 2.2vw;
  background: url('/FlyBookSitePublishing/assets/img/sub/service/flybook-plus/ic-ques-down.svg')
    center no-repeat;
  background-size: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.qna-common .box .open.ques::after {
  transform: rotate(180deg) translateY(50%);
}
.qna-common .box .answ {
  display: none;
  font-size: 3.5vw;
  line-height: 1.4;
  padding: 2vw 0 4vw;
}
.qna-common .box .answ a {
  margin-left: 4px;
  text-decoration: underline;
}

@media (min-width: 641px) {
  .qna-common {
    padding: 84.612px 40.383px 151.276px;
  }
  .qna-common .title {
    font-size: 44.87px;
    margin-bottom: 38.46px;
  }
  .qna-common .box li {
    border-radius: 25.64px;
    padding: 0 27.563px;
    margin-bottom: 24.999px;
  }
  .qna-common .box .ques {
    font-size: 26.922px;
    padding: 25.64px 47.972px 25.64px 0;
  }
  .qna-common .box .ques::after {
    width: 22.435px;
    height: 14.102px;
  }
  .qna-common .box .answ {
    font-size: 22.435px;
    padding: 12.82px 0 25.64px;
  }
}

/* 이벤트 페이지 이용권 구매 버튼 */
.floating-full-btn {
  display: block;
  position: fixed;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1000;
}

.floating-full-btn.top {
  top: 0;
  bottom: auto;
}

/* 멤버십 종류 박스 */
.membership-type-common {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}
.membership-type-common:last-child {
  margin-bottom: 0;
}
.membership-type-common.basic {
  border: 1px solid #5e9eff;
}
.membership-type-common .basic-price {
  border-bottom: 1px solid #f1f6fa;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
}
.membership-type-common .benefit-box {
  margin-bottom: 16px;
}
.membership-type-common .benefit-box:last-child {
  margin-bottom: 0;
}
.membership-type-common .benefit-box .tit {
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: #5e9eff;
  margin-bottom: 8px;
}
.membership-type-common .benefit-box li {
  position: relative;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 18px;
  padding-left: 32px;
  word-break: keep-all;
}
.membership-type-common .benefit-box li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url('/FlyBookSitePublishing/assets/img/sub/plus/ic-check.png') center no-repeat;
  background-size: 100%;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -3px;
}
.membership-type-common .benefit-box li .blue {
  color: #5e9eff !important;
}
.membership-type-common .benefit-box li .gray {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  color: #626776;
  margin-left: 4px;
  vertical-align: top;
}
.membership-type-common .benefit-box ul + .tit {
  margin-top: 16px;
}
.membership-type-common .basic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.membership-type-common .basic-top .badge-logo {
  width: 75px;
}
.membership-type-common .basic-top .txt-logo {
  width: 159px;
}
.membership-type-common .basic-top p {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.membership-type-common .inner-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  vertical-align: top;
  margin-bottom: 8px;
}
.membership-type-common .inner-badge::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('/FlyBookSitePublishing/assets/img/sub/plus/plus-badge.png') center no-repeat;
  background-size: 100%;
  vertical-align: top;
  margin-right: 2px;
}
.membership-type-common .inner-badge span {
  background: linear-gradient(135deg, #59f 0.36%, #247cff 100.02%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.membership-type-common .service-box {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c5d3f5;
}
.membership-type-common .service-box .service {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  padding: 4px;
}
.membership-type-common .service-box .service::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 4px;
}
.membership-type-common .service-box .service.rental::before {
  background-image: url('/FlyBookSitePublishing/assets/img/sub/service/flybook-plus/ic-rental.png');
}
.membership-type-common .service-box .service.monthly::before {
  background-image: url('/FlyBookSitePublishing/assets/img/sub/service/flybook-plus/ic-monthly.png');
}
.membership-type-common .price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #c5d3f5;
}
.membership-type-common .price-box .percent {
  border-radius: 100px;
  background: linear-gradient(135deg, #59f 0.36%, #247cff 100.02%);
  padding: 8px 10px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  margin-right: 8px;
}
.membership-type-common .price-box .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.membership-type-common .price-box .price strong {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
}
.membership-type-common .price-box .origin {
  font-size: 15px;
  line-height: 18px;
  color: #626776;
  text-decoration: line-through;
  margin-right: 8px;
}

@media (min-width: 1024px) {
  .membership-type-common {
    padding: 36px;
    display: flex;
    flex-direction: column;
  }
  .membership-type-common .basic-top {
    margin-bottom: 16px;
  }
  .membership-type-common .basic-top p {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .membership-type-common .basic-top .txt-logo {
    width: 235px;
  }
  .membership-type-common .basic-price {
    font-size: 28px;
    line-height: 33px;
  }
  .membership-type-common .inner-badge {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .membership-type-common .service-box .service {
    font-size: 28px;
  }
  .membership-type-common .service-box {
    padding-bottom: 24px;
    margin-bottom: 24px;
    min-height: 120px;
    box-sizing: border-box;
  }
  .membership-type-common .benefit-box .tit {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .membership-type-common .benefit-box {
    margin-bottom: 24px;
  }
  .membership-type-common .price-box {
    margin-top: auto;
    padding-top: 24px;
  }
  .membership-type-common .price-box .percent {
    font-size: 16px;
    line-height: 1;
  }
  .membership-type-common .price-box .origin {
    font-size: 21px;
    line-height: 1;
  }
  .membership-type-common .price-box .price strong {
    font-size: 28px;
    line-height: 33px;
  }
}

/* header 배너 */
.header-banner {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}
.header-banner + header {
  top: 166px;
}
.header-banner + header + section {
  margin-top: 166px;
}
.header-banner .item {
  height: 83px;
  display: flex;
  align-items: center;
  background: #0c182e;
  padding: 12px 16px;
  box-sizing: border-box;
}
.header-banner .item:last-child {
  border-top: 1px solid #fff;
}
.header-banner .type-icon {
  width: 48px;
  height: auto;
}
.header-banner .arrow {
  width: 12px;
  height: auto;
  transform: rotate(180deg);
  margin-left: 12px;
}
.header-banner .txt-box {
  margin-right: auto;
}
.header-banner .tit {
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  font-weight: bold;
}
.header-banner .sub {
  font-size: 12px;
  line-height: 1.4;
  color: #6bb8ff;
}

@media (min-width: 1024px) {
  .header-banner {
    display: flex;
  }
  .header-banner + header {
    top: 84px;
  }
  .header-banner + header + section {
    margin-top: 84px;
  }
  .header-banner .item {
    flex: 1;
    height: 84px;
    padding: 12px 48px;
  }
  .header-banner .item:first-child {
    flex-direction: row-reverse;
  }
  .header-banner .arrow {
    margin-left: 24px;
  }
  .header-banner .item:first-child .arrow {
    transform: none;
    margin-left: 0;
    margin-right: 24px;
  }
  .header-banner .item:last-child {
    border-top: none;
    border-left: 1px solid #fff;
  }
  .header-banner .type-icon {
    width: 60px;
  }
  .header-banner .tit {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .header-banner .sub {
    font-size: 15px;
    line-height: 1.2;
    word-break: keep-all;
  }
  .header-banner .sub br {
    display: none;
    margin-left: 0;
    margin-right: 12px;
  }
  .header-banner .item:first-child .txt-box {
    margin-left: auto;
    margin-right: unset;
    text-align: right;
  }
}

/* header 배너 이미지용 */
.header-banner-img {
  display: block;
  margin-top: 51px;
  background: #eaf0fc;
}
.header-banner-img .pc {
  display: none;
}
.header-banner-img .mo {
  max-height: 174px;
  width: auto;
  margin: 0 auto;
  display: block;
}

@media (min-width: 1024px) {
  .header-banner-img .pc {
    display: block;
    height: 140px;
    width: auto;
    margin: 0 auto;
    object-fit: cover;
  }
  .header-banner-img .mo {
    display: none;
  }
  .header-banner-img {
    margin-top: 100px;
  }
}

/* flybook 카드 style */
.flybook-card-wrapper {
  position: relative;
  height: 515px;
  border-radius: 16px;
  overflow: hidden;
}
.flybook-card-wrapper .book-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(3);
  filter: blur(12px);
  -webkit-filter: blur(12px);
}
.flybook-card-wrapper .bg01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
}
.flybook-card-wrapper .bg02 {
  position: absolute;
  width: 100%;
  height: 116px;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}
.flybook-card-wrapper .bg03 {
  position: absolute;
  width: 100%;
  height: 88px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}
.flybook-card-wrapper .flybook-txt {
  position: absolute;
  width: calc(100% - 48px);
  top: 24px;
  left: 24px;
}
.flybook-card-wrapper .flybook-txt p {
  width: 255px;
  max-height: 77px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
}
.flybook-card-wrapper .flybook-txt span {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
}
.flybook-card-wrapper .flybook-book-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 116px;
  width: 100%;
  max-width: 343px;
}
.flybook-card-wrapper.no-txt .flybook-book-box {
  top: 60px;
}
.flybook-card-wrapper .flybook-book-box .book-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 269px;
  max-height: 242px;
  border-radius: 0 12px 12px 0;
}
.flybook-card-wrapper .profile-box {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  padding: 0 24px;
  box-sizing: border-box;
}
.flybook-card-wrapper .profile-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flybook-card-wrapper .profile-box .left {
  display: flex;
  align-items: center;
}
.flybook-card-wrapper .profile-box .left img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 8px;
  object-fit: cover;
}
.flybook-card-wrapper .profile-box .left .name {
  font-size: 17px;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.flybook-card-wrapper .profile-box .left .id {
  font-size: 15px;
  line-height: 18px;
  color: #fff;
}
.flybook-card-wrapper .profile-box .right {
  width: 34px;
}

/* pc, mobile 에서만 보이는 클래스 */
.only-mobile {
  display: block;
}
.only-pc {
  display: none;
}
@media (min-width: 1024px) {
  .only-pc {
    display: block;
  }
  .only-mobile {
    display: none;
  }
}

/* 공통 모달 */
.basic-common-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.basic-common-modal-bg {
  background: rgba(19, 23, 32, 0.4);
  width: 100%;
  height: 100%;
}
.basic-common-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 327px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.basic-common-modal-title {
  font-size: 17px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.basic-common-modal-content {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 16px;
}
.basic-common-modal-btn {
  width: 100%;
  display: block;
  background: #2157e4;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  border-radius: 8px;
}
.basic-common-modal-btn-txt {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 8px;
  font-size: 12px;
  line-height: 14px;
  color: #9499a5;
  box-sizing: border-box;
  cursor: pointer;
}
