@charset "utf-8";

/* html, body */
html,
body {
  font-family: "Noto Sans KR", sans-serif;
  overflow-x: hidden;
}

html.disabledScroll,
body.disabledScroll {
  overflow: hidden;
}

* {
  font-family: "Noto Sans KR", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans KR", sans-serif;
}

html,
body {
  scrollbar-arrow-color: #efefef;
  scrollbar-track-color: #efefef;
  scrollbar-base-color: #dfdfdf;
  scrollbar-face-color: #dfdfdf;
  scrollbar-3dlight-color: #dfdfdf;
  scrollbar-darkshadow-color: #dfdfdf;
  scrollbar-highlight-color: #dfdfdf;
  scrollbar-shadow-color: #dfdfdf;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

/* wrap */
#wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  box-sizing: content-box;
  background: transparent;
  z-index: 500;
  transition: border-color 0.3s, background-color 0.3s;
}

#header.white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}

#header.black {
  border-bottom: 1px solid rgba(13, 28, 51, 0.2);
}

#header .wrap {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
}

#header .container {
  position: relative;
  height: 100%;
  margin: 0 40px;
}

/* header left */
.left-box {
  position: relative;
  float: left;
  height: 100%;
}

h1.logo {
  position: relative;
  float: left;
  display: block;
  width: 197px;
  height: 64px;
  margin-right: 100px;
  margin-top: -10px;
  top: 50%;
  transform: translateY(-50%);
  /* transition: width .3s, height .3s; */
}

/*.bangtancare h1.logo {*/
/*  margin-top: 7px;*/
/*}*/

.home-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.logo-white,
.logo-black {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

.home-btn .active {
  z-index: 2;
  opacity: 1;
}

#nav {
  float: left;
  display: block;
  height: 100%;
}

#header.hover #nav {
  display: none;
}

.gnb-menu {
  height: 100%;
}

.gnb-menu li {
  float: left;
  height: 100%;
  margin-right: 100px;
  font-size: 18px;
  transition: color 0.3s;
}

#header.white .gnb-menu li,
#header.white .gnb-menu li a {
  color: #fff;
}

#header.black .gnb-menu li,
#header.black .gnb-menu li a {
  color: #0d1c33;
}

.gnb-menu li:last-of-type {
  margin-right: 0;
}

.gnb-btn {
  position: relative;
  display: inline-block;
  height: 100%;
  font-weight: 500;
  font-family: "IBM Plex Sans KR", sans-serif;
}

.gnb-btn::after {
  display: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #fff;
}

.gnb-btn.active::after {
  display: block;
}

#header.white .gnb-btn::after {
  background: #fff;
}

#header.black .gnb-btn::after {
  background: #0d1c33;
}

/* header right */
.right-box {
  float: right;
  height: 100%;
}

.header-aside {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#header.hover .header-aside {
  display: none;
}

.info-menu {
  float: left;
  height: 30px;
  padding: 5px 0;
}

.info-menu li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s;
  vertical-align: top;
}

.info-menu a {
  display: inline-block;
  vertical-align: top;
}

#header.white .info-menu li,
#header.white .info-menu li .info-btn {
  color: #fff;
}

#header.black .info-menu li,
#header.black .info-menu li .info-btn {
  color: #0d1c33;
}

.info-menu li::after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  right: -26px;
  transition: background-color 0.3s;
}

#header.white .info-menu li::after {
  background: #fff;
}

#header.black .info-menu li::after {
  background: #0d1c33;
}

.info-menu li:last-of-type::after {
  display: none;
}

.sns-menu {
  float: left;
}

.sns-menu li {
  display: inline-block;
  width: 50px;
  margin-right: 13px;
}

.sns-menu li:last-of-type {
  margin-right: 0;
}

#header.white .sns-menu .sns-img {
  /*filter: invert(100%) sepia(14%) saturate(7482%) hue-rotate(182deg) brightness(200%) contrast(94%);*/
}

.mobile-nav {
  position: relative;
  height: 100%;
  display: none;
  z-index: 3;
}

#header.hover .mobile-nav {
  display: block;
}

.mobile-nav .nav-btn {
  display: block;
  position: relative;
  width: 25px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mobile-nav .nav-btn .line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

#header.white .line,
#header.black .nav-btn.close-btn .line {
  background: #fff;
}

.bangtancare #header.black .nav-btn.close-btn .line {
  background: #0d1c33;
}

#header.black .line {
  background: #0d1c33;
}

.mobile-nav .nav-btn .line:nth-of-type(1) {
  top: 0;
}

.mobile-nav .nav-btn .line:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}

.mobile-nav .nav-btn .line:nth-of-type(3) {
  bottom: 0;
}

.mobile-nav .nav-btn.close-btn .line:nth-of-type(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(135deg);
}

.mobile-nav .nav-btn.close-btn .line:nth-of-type(2) {
  right: -10px;
  opacity: 0;
}

.mobile-nav .nav-btn.close-btn .line:nth-of-type(3) {
  bottom: 50%;
  margin-bottom: -1px;
  transform: rotate(-315deg);
}

#mobNav {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #ededed;
  z-index: 1;
}

#mobNav .nav-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#mobNav .user-info {
  width: 100%;
  border-bottom: 3px solid #fff;
  /* background: url(../img/mob_nav_bg.png) no-repeat center/cover; */
  background: linear-gradient(83deg, #004f92 -18%, #3dbaa5 116%);
  -pie-background: linear-gradient(83deg, #004f92 -18%, #3dbaa5 116%);
  behavior: url(/pie/PIE.htc);
  color: #fff;
}

.bangtancare #mobNav .user-info {
  background: linear-gradient(79deg, #ffcd29 4%, #ffe659 69%, #fff16e 98%);
  -pie-background: linear-gradient(79deg, #ffcd29 4%, #ffe659 69%, #fff16e 98%);
  behavior: url(/pie/PIE.htc);
  color: #181504;
}

#mobNav .user-info .my-info {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bangtancare #mobNav .user-info .my-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

#mobNav .user-info .my-info .logo-img {
  width: 114px;
  margin-top: -10px;
}

.bangtancare #mobNav .user-info .my-info .logo-img {
  margin-top: 0;
}

#mobNav .user-info .my-info .profile,
#mobNav .user-info .my-info .user,
#mobNav .user-info .my-info .member {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: top;
}

#mobNav .user-info .my-info .user .login-btn {
  vertical-align: top;
}

#mobNav .user-info .my-info .member {
  border: 1px solid #fff;
}

#mobNav .user-info .info-box {
  height: 50%;
}

#mobNav .user-info .info-box .my-page,
#mobNav .user-info .info-box .join-us,
#mobNav .user-info .info-box .service {
  position: relative;
  float: left;
  width: calc(50% - 0.5px);
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bangtancare #mobNav .user-info .info-box .my-page,
.bangtancare #mobNav .user-info .info-box .join-us,
.bangtancare #mobNav .user-info .info-box .service {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

#mobNav .user-info .info-box .mypage-btn,
#mobNav .user-info .info-box .join-btn,
#mobNav .user-info .info-box .contact-btn,
#mobNav .user-info .info-box .service-btn {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#mobNav .user-info .info-box .my-page img,
#mobNav .user-info .info-box .join-us img,
#mobNav .user-info .info-box .service img {
  height: auto;
}

#mobNav .user-info .info-box span.bold {
  vertical-align: middle;
}

#mobNav .user-info .info-box .contact {
  position: relative;
  float: left;
  width: calc(50% - 0.5px);
  width: 100%;
  height: 100%;
}
#mobNav .user-info .info-box .contact.half {
  width: calc(50% - 0.5px);
}

#mobNav .user-info .info-box .contact-btn {
  width: 100%;
  height: 100%;
  padding: 21px;
  text-align: center;
}

#mobNav .nav-list {
  position: relative;
  top: 0;
  right: -20px;
  width: 100%;
  padding: 20px;
  color: #000;
  opacity: 0;
}

#mobNav .nav-list ul {
  width: 100%;
  height: 100%;
  padding: 15px;
  overflow: auto;
}

#mobNav .nav-list li {
  margin-bottom: 22px;
}

#mobNav .nav-list li:last-of-type {
  margin-bottom: 0;
}

#mobNav .menu-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#mobNav .login,
#mobNav .logout {
  width: 100%;
  height: 100%;
  border-top: 3px solid #fff;
  box-sizing: content-box;
}

#mobNav .login .login-btn,
#mobNav .logout .logout-btn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

#mobNav .login .login-btn {
  justify-content: flex-start;
}

#mobNav .logout .logout-btn {
  justify-content: space-between;
}

#mobNav .login span.bold {
  text-decoration: underline;
  margin-right: 5px;
}

#mobNav .logout span.bold {
  vertical-align: middle;
}

/* main */
#main {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 100;
}

/* goTop */
#goTop,
#membership {
  position: fixed;
  width: 4.2969vw;
  height: 4.2969vw;
  min-width: 44px;
  min-height: 44px;
  max-width: 60px;
  max-height: 60px;
  bottom: 40px;
  right: 50%;
  z-index: 400;
  margin-right: -920px;
}

#goTop .top-btn {
  display: block;
  margin-top: 80px;
  opacity: 0;
}

#goTop .top-btn.show {
  margin-top: 0;
  opacity: 1;
  transition: opacity 1s, margin-top 0.3s;
}

#goTop .top-btn.hide {
  margin-top: 80px;
  opacity: 0;
  transition: opacity 0.3s, margin-top 1s;
}

/* membership */
#membership {
  position: fixed;
  bottom: 110px;
  z-index: 400;
}

#membership .membership-btn {
  display: block;
  width: 100%;
  height: 100%;
}

.membership-text {
  display: block;
  position: absolute;
  width: 0;
  height: calc(4.2969vw - 2px);
  min-height: 42px;
  max-height: 58px;
  top: 1px;
  right: 0.5px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 40px;
  opacity: 0;
  padding: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
  z-index: -1;
  transition: all 0.3s;
}

#membership:hover .membership-text {
  width: 185px;
  opacity: 1;
  padding: 0 82px 0 22px;
  color: #004f92;
  background-color: #fff;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  transition-delay: 0.2s;
}

.membership-text span {
  position: relative;
  display: block;
  width: 185px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

#membership:hover .membership-text span {
  opacity: 1;
  transition: opacity 0.3s;
  transition-delay: 0.2s;
  font-family: "IBM Plex Sans KR", sans-serif;
}
/* footer */
#footer {
  position: relative;
  width: 100%;
  height: auto;
  background: #24262f;
  z-index: 200;
}

#footer .footer-aside {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .corp-wrap {
  width: 100%;
  max-width: 1520px;
  padding: 40px 40px 14px 309px;
  margin: 0 auto;
}

#footer .corp-wrap li {
  display: inline-block;
  margin-right: 48px;
}

#footer .corp-wrap li:last-of-type {
  margin-right: 0;
}

#footer .footer-info {
  width: 100%;
  max-width: 1520px;
  padding: 10px 40px 54px 40px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

#footer .logo-wrap,
#footer .info-wrap {
  float: left;
}

#footer .footer-logo {
  float: left;
  width: 125px;
  margin-right: 144px;
  margin-top: 25px;
}

#footer .sns-menu {
  display: none;
  float: right;
}

#footer #address {
  line-height: 1.5;
}

#footer .address {
  margin-bottom: 5px;
}

#footer .address br {
  display: none;
}

#footer .contact {
  margin-bottom: 25px;
}
/* check-label */
.check-label{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 600;
}

.modal-wrap {
  position: relative;
  width: 100%;
  max-width: 1170px;
  height: calc(100vh - 200px);
  height: calc((var(--vh, 1vh) * 100) - 200px);
  margin: 100px auto;
  padding: 25px;
  background: #fff;
}
.bangtancare-modal-wrap {
  width: 500px;
  /* height: 252px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border-radius: 20px;
  text-align: center;
  background-color: #ffffff;
}
.bangtancare-modal-wrap .modal-contents {
  height: 100%;
}
.bangtancare-modal-wrap .modal-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.9px;
  color: #0d1c33;
}
.bangtancare-modal-wrap .modal-text {
  font-size: 16px;
  letter-spacing: -0.8px;
  color: #181504;
  line-height: 1.5;
}
.bangtancare-modal-wrap .modal__btn-wrap {
  margin-top: 30px;
}
.bangtancare-modal-wrap .modal__btn-wrap button,
.bangtancare-modal-wrap .modal__btn-wrap a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  /*padding: 0 29px;*/
  border: 1px solid #ffcd29;
  border-radius: 20px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  color: #0d1c33;
  letter-spacing: -0.8px;
  vertical-align: middle;
}
.bangtancare-modal-wrap .modal__btn-wrap .yellow {
  background-color: #ffcd29;
}
.bangtancare-modal-wrap .modal__btn-wrap button:nth-of-type(2),
.bangtancare-modal-wrap .modal__btn-wrap a:nth-of-type(2) {
  margin-left: 10px;
}
.bangtancare-modal-wrap .modal-text.confirm {
  font-weight: bold;
  margin-top: 10px;
}

.modal-wrap .mob-title {
  display: none;
  font-size: 20px;
  font-weight: 500;
  color: #0d1c33;
  text-align: center;
}

.modal-wrap .modal-close {
  text-align: right;
}

.modal-wrap .modal-close .close-btn {
  width: 25px;
  height: 25px;
  margin-bottom: 25px;
}

.modal-wrap .scroll-area {
  position: relative;
  width: 100%;
  overflow: auto;
}

.modal-wrap .modal-container {
  position: relative;
  width: 100%;
  height: auto;
}

.modal-wrap .modal-title {
  text-align: center;
  color: #0d1c33;
  margin-bottom: 100px;
}

.modal-wrap .modal-title h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 22px;
}

.modal-wrap .modal-title h3 {
  font-size: 30px;
}

.modal-wrap .modal-content {
  position: relative;
  width: 100%;
  height: auto;
}

.modal-wrap .modal-content .scroll-area {
  width: 100%;
  height: auto;
  overflow: auto;
}

.modal-wrap .modal-content .article {
  margin-bottom: 100px;
}

.modal-wrap .modal-content .article:last-of-type {
  margin-bottom: 0;
}

.modal ul.bullet-list li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
}

.modal ul.bullet-list li:before {
  position: absolute;
  content: "ㆍ";
  left: 0;
  display: inline-block;
}

/* 모달 안 체크박스 */
.modal-check-box .modal-check {
  display: inline-block;
  position: relative;
}
.modal-check-box .check-box {
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  position: absolute;
  top: 50%;
  left: 0;
}
.modal-check-box .check-label {
  padding-left: 25px;
  font-size: 14px;
  color: #181504;
  font-weight: 500;
  letter-spacing: -0.35px;
  vertical-align: top;
}
.check-label::before {
  position: absolute;
  top: 46%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #181504;
  background-image: url("../img/bangtancare/checkbox.png");
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.check-box:checked + .check-label::before {
  background-image: url("../img/bangtancare/checkbox_checked.png");
}
/* common */
.bold {
  vertical-align: top;
  font-weight: bold;
}

.view-btn,
.more-btn,
.again-btn,
.care-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 40px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  /*vertical-align: top;*/
}

.view-btn {
  background: #3bb6a4;
}
.view-btn.white {
  padding: 11px 38px;
  background: #FFFFFF;
  border: 2px solid #3DBAA5;
  color: #3DBAA5;
}

.more-btn {
  background: linear-gradient(70deg, #004f92 -21%, #3dbaa5 110%);
  -pie-background: linear-gradient(70deg, #004f92 -21%, #3dbaa5 110%);
  behavior: url(/pie/PIE.htc);
}

.again-btn {
  background: #fff;
  border: 1px solid #3dbaa5;
  color: #3dbaa5;
}

.care-btn {
  padding: 12px;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  width: 100%;
  background: #ffcd29 !important;
  color: #0d1c33 !important;
  border: 1px solid #ffcd29;
  height: 60px;
  line-height: 36px;
}

.care-btn.border {
  background: #fff !important;
}

.care-btn.disabled,
.care-btn:disabled {
  cursor: default;
  border: 1px solid #cbcbcb;
  background: #cbcbcb !important;
  color: #fff !important;
}

.care-btn.small {
  width: auto;
  min-width: 80px;
  height: 30px;
  font-size: 14px;
  padding: 3px 15px;
}

.view-btn img,
.more-btn img,
.again-btn img {
  width: 8px;
  margin-left: 15px;
}

.again-btn img {
  filter: invert(55%) sepia(92%) saturate(299%) hue-rotate(120deg)
    brightness(97%) contrast(83%);
}

.video-wrap {
  position: relative;
  padding: 56.25% 0 0 0;
}

.video-wrap .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.7);
}

/* popup */
.layer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
}

.layer-popup .popup-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 260px;
  height: auto;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
}

.layer-popup .popup-wrap[data-size="largeSize"] {
  width: 74.3777vw;
  max-width: 1016px;
}

.layer-popup .popup-wrap[data-size="mediumSize"] {
  width: 55.3441vw;
  max-width: 756px;
}

.layer-popup .popup-wrap[data-size="smallSize"] {
  width: 36.3104vw;
  max-width: 496px;
}

.layer-popup .popup-wrap[data-size="autoSize"] {
  max-width: calc(100% - 40px);
}

.layer-popup .popup-wrap[data-size="autoSize"] .popup-contents img {
  width: auto;
  max-width: 100%;
  max-width: -moz-available;
  max-width: -webkit-fill-available;
  max-width: fill-available;
}

.layer-popup .popup-container {
  position: relative;
}

.layer-popup .popup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.layer-popup .popup-top .popup-title {
  width: calc(100% - 30px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
}

.layer-popup .popup-top .close-btn {
  width: 20px;
  height: 20px;
}

.layer-popup .popup-mid {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 200px);
  max-height: calc((var(--vh, 1vh) * 100) - 200px);
  overflow-y: auto;
}

.layer-popup .popup-mid .popup-contents {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.layer-popup .popup-bot {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}

.layer-popup .popup-bot .checkbox {
  position: relative;
  display: flex;
  align-items: center;
}

.layer-popup .popup-bot .checkbox input[type="checkbox"] {
  position: absolute;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  z-index: 2;
  opacity: 0;
}

.layer-popup .popup-bot .checkbox input[type="checkbox"] + .checkbox-custom {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url(../manager/img/checkbox_normal.png) no-repeat center/cover;
  z-index: 1;
}

.layer-popup .popup-bot .checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: url(../manager/img/checkbox_selected.png) no-repeat center/cover;
}

.layer-popup .popup-bot .checkbox label {
  font-size: 14px;
  margin-right: 0;
  color: #333;
}

.layer-popup .popup-btn {
  width: 100%;
}

.layer-popup .popup-btn[href="javascript:void(0);"] {
  cursor: default;
}

.img-common {
  display: block;
}

.img-pc {
  display: block;
}

.img-mob {
  display: none;
}

/* ================================================== */

/* responsive */

@media all and (max-width: 1920px) {
  #header {
    height: 5.2083vw;
    min-height: 59px;
  }

  #header .container {
    margin: 0 2.0833vw;
  }

  h1.logo {
    width: 10.2604vw;
    height: 3.3333vw;
    min-width: 113px;
    min-height: 36px;
    margin-right: 5.2083vw;
  }

  .gnb-menu li {
    margin-right: 5.2083vw;
  }

  #membership {
    bottom: calc(2.0833vw + 60px);
    right: 2.0833vw;
    margin-right: 0;
  }

  #goTop {
    bottom: 2.0833vw;
    right: 2.0833vw;
    margin-right: 0;
  }
}

/* input placeholder */
input::placeholder {
  color: #cccccc;
}

@media all and (max-width: 1366px) {
  h1.logo {
    margin-right: 0;
    margin-top: -6px;
  }

  /*.bangtancare h1.logo {*/
  /*  margin-top: 4px;*/
  /*}*/

  #nav {
    display: none;
  }

  #header .header-aside {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  #mobNav {
    width: 29.2969vw;
    min-width: 280px;
  }

  #mobNav .user-info {
    height: 10.9275vw;
    min-height: 123px;
  }

  #mobNav .user-info .my-info {
    padding: 0 2.0833vw;
  }

  #mobNav .user-info .my-info .profile {
    width: 3.2227vw;
    height: 3.2227vw;
    min-width: 33px;
    min-height: 33px;
    margin-right: 1.2695vw;
  }

  #mobNav .user-info .my-info .user {
    font-size: 1.4648vw;
  }

  #mobNav .user-info .my-info .user img {
    width: 0.4883vw;
    min-width: 5px;
    margin-left: 0.9766vw;
  }

  #mobNav .user-info .my-info .member {
    padding: 0.293vw 0.6836vw;
    font-size: 1.2695vw;
    margin-left: 0.9766vw;
    border-radius: 1.1719vw;
  }

  #mobNav .user-info .info-box .my-page,
  #mobNav .user-info .info-box .service,
  #mobNav .user-info .info-box .join-us,
  #mobNav .user-info .info-box .contact,
  #mobNav .user-info .info-box img {
    font-size: 13px;
  }

  #mobNav .user-info .info-box .my-page img,
  #mobNav .user-info .info-box .service img,
  #mobNav .user-info .info-box .join-us img,
  #mobNav .user-info .info-box .contact img,
  #mobNav .user-info .info-box img {
    width: 1.7578vw;
    min-width: 18px;
    margin-right: 0.9766vw;
  }

  #mobNav .nav-list {
    height: calc(100% - 11.1457vw);
    max-height: calc(100% - 124px);
  }

  .bangtancare #mobNav .nav-list {
    height: calc(100% - 16.4264vw);
    max-height: calc(100% - 186px);
  }

  #mobNav .menu-btn span {
    font-size: 18px;
  }

  #mobNav .menu-btn img {
    width: 0.4883vw;
  }

  #mobNav .login,
  #mobNav .logout {
    height: 5.2807vw;
    min-height: 60px;
    font-size: 15px;
  }

  #mobNav .login .login-img,
  #mobNav .logout .logout-img {
    /* width: 1.5625vw; */
    /* min-width: 16px; */
    width: 40px;
    margin-right: 0.9766vw;
  }

  #mobNav .logout .logout-icon {
    width: 24px;
    margin-right: 6px;
  }

  .view-btn,
  .more-btn,
  .again-btn {
    font-size: 18px;
  }

  .view-btn img,
  .more-btn img,
  .again-btn img {
    width: 7.5px;
    margin-left: 13px;
  }

  .modal-wrap .modal-content .article {
    margin-bottom: 80px;
  }

  .modal-wrap .modal-title {
    margin-bottom: 80px;
  }

  .modal-wrap .modal-title h2 {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .modal-wrap .modal-title h3 {
    font-size: 25px;
  }
}

@media all and (max-width: 1024px) {
  #header {
    height: 59px;
  }

  #header .container {
    margin: 0 20px;
  }

  h1.logo {
    width: 113px;
    height: 36px;
    margin-top: -5px;
  }

  #mobNav .user-info .my-info {
    padding: 0 20px;
  }

  #mobNav .user-info .my-info .profile {
    margin-right: 13px;
  }

  #mobNav .user-info .my-info .user {
    font-size: 15px;
  }

  #mobNav .user-info .my-info .user img {
    margin-left: 10px;
  }

  #mobNav .user-info .my-info .member {
    padding: 3px 7px;
    font-size: 13px;
    margin-left: 10px;
    border-radius: 12px;
  }

  #mobNav .user-info .info-box .my-page img,
  #mobNav .user-info .info-box .service img,
  #mobNav .user-info .info-box .join-us img,
  #mobNav .user-info .info-box .contact img,
  #mobNav .user-info .info-box img {
    margin-right: 10px;
  }

  #mobNav .menu-btn img {
    width: 5px;
  }

  #mobNav .login img,
  #mobNav .logout img {
    margin-right: 10px;
  }

  #membership {
    bottom: 74px;
    right: 20px;
  }

  #goTop {
    bottom: 20px;
    right: 20px;
  }

  .view-btn,
  .more-btn,
  .again-btn {
    font-size: 16px;
    border-radius: 22px;
  }
  .view-btn img,
  .more-btn img,
  .again-btn img {
    width: 7px;
    margin-left: 10px;
  }

  #footer .corp-wrap {
    max-width: 650px;
    padding: 25px 25px;
  }

  #footer .footer-info {
    max-width: 650px;
    padding: 35px 25px;
  }

  #footer .logo-wrap {
    margin-bottom: 35px;
  }

  #footer .sns-menu {
    display: block;
  }

  #footer .logo-wrap,
  #footer .info-wrap {
    float: none;
  }

  #footer .footer-logo {
    margin: 0;
  }

  .modal-wrap {
    width: 100vw;
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    padding: 0;
  }
  .modal-wrap .modal-close {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .modal-wrap .mob-title {
    display: block;
  }

  .modal-wrap .modal-close .close-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }

  .modal-wrap .scroll-area {
    height: calc(100vh - 68px) !important;
    height: calc((var(--vh, 1vh) * 100) - 68px) !important;
  }

  .modal-wrap .modal-content .article {
    margin-bottom: 65px;
  }

  .modal-wrap .modal-title {
    margin-bottom: 50px;
  }

  .modal-wrap .modal-title h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .modal-wrap .modal-title h3 {
    font-size: 20px;
  }

  .img-pc {
    display: none;
  }

  .img-mob {
    display: block;
  }

  .care-btn.small {
    font-size: 12px;
    height: 20px;
  }
}

@media all and (max-width: 720px) {
  .care-btn {
    font-size: 16px;
  }
  .bangtancare-modal-wrap {
    width: 320px;
    height: 245.5px;
    border-radius: 10px;
  }
  .modal__btn-wrap {
    margin-top: 25px;
  }
  .bangtancare-modal-wrap .modal__btn-wrap button,
  .bangtancare-modal-wrap .modal__btn-wrap a {
    width: 125px;
    height: 60px;
    border-radius: 30px;
    /* padding: 18.5px 41px; */
    border: 1.5px solid #ffcd29;
  }
}

@media all and (max-width: 640px) {
  #mobNav {
    width: 100vw;
  }

  .view-btn,
  .more-btn,
  .again-btn {
    display: flex;
    width: 100%;
    padding: 12px;
  }

  #footer .corp-wrap {
    text-align: center;
    padding: 18px 20px;
  }

  #footer .corp-wrap li {
    margin-right: 24px;
  }

  #footer .footer-info {
    padding: 30px 20px;
  }

  #footer .logo-wrap {
    margin-bottom: 30px;
  }

  #footer .info,
  #footer .address,
  #footer .contact {
    margin-bottom: 10px;
  }

  #footer .address br {
    display: block;
  }

  .modal-wrap .modal-content .article {
    margin-bottom: 50px;
  }

  .modal-wrap .modal-title {
    margin-bottom: 20px;
  }

  .modal-wrap .modal-title h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .modal-wrap .modal-title h3 {
    font-size: 15px;
  }
}
@media all and (max-width: 340px) {
  .bangtancare-modal-wrap {
    width: 265px;
    height: 203px;
  }
  .bangtancare-modal-wrap .modal-text {
    font-size: 13px;
  }
  .bangtancare-modal-wrap .modal-title {
    font-size: 13px;
  }
  .bangtancare-modal-wrap .modal__btn-wrap button,
  .bangtancare-modal-wrap .modal__btn-wrap a {
    width: 95px;
    height: 50px;
    /* padding: 12.5px 22px; */
    padding: 0 22px;
  }
}
@media all and (max-width: 310px) {
  .view-btn.white {
    padding: 11px 25px;
  }
}
@media all and (max-width: 300px) {
  #reserveSection .view-btn{
    font-size: 14px;
  }
}
@media all and (max-width: 280px){
  .view-btn img{
    margin-left: 8px;
  }
}
