body {
  font-family: "Nanum Gothic", sans-serif;
}

.footer {
  position: fixed; /* 푸터를 화면 하단에 고정 */
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333; /* 푸터 배경색 */
  color: #fff; /* 푸터 텍스트 색상 */
  text-align: center; /* 푸터 텍스트 중앙 정렬 */
  padding: 10px 0; /* 푸터 안쪽 여백 */
}


/* 팝업 */
.board-info {
  display: flex;
  justify-content: space-between; /* 양 끝으로 배치 */
  align-items: center; /* 수직 정렬 */
}

.popup-layer {
    position: absolute;
    z-index: 999999;
    text-align: center;
    background: #ccc;
}

.popup-content {
    font-size: 14px;
}

.popup-footer {

    display: flex;
      background: #fff;
    justify-content: space-between;
    align-items: center;
}

.popup-footer .onedayclose {
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
    color: #333;
}

.popup-footer button {
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}



.popup-layer p{margin: 0px;}
@media screen and (max-width: 550px) {
  .popup-layer{ left: 0px !important; width: 100%; top: 0px !important;}
  .popup-content {        width: 100% !important;}
  .popup-content img{width:100% !important; padding: 0px 20px;;}
  .popup-footer {    margin: 0px 20px;}
}


.swiper {
  width: calc((100vw - 350px)/2);
  height: 100%;
	border-radius: 10px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1399px) and (min-width: 767.98px) {
  .swiper {
    width: calc((100vw - 290px));
  }
}

.mobile_banner {display: none;}

@media (max-width: 767.98px) {
  .main_banner {display: none;}
  .mobile_banner {display: block !important;}
  .swiper-button-next::after, .swiper-button-prev::after {
  	font-size: 24px;   /* 화살표 아이콘 크기 조절 */
  }
  .swiper {
    width: 100% !important;
    border-radius: 0px;
  }
}


.inner-wrap {
  padding: 15px 25px 15px;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  background-color: #ffffff !important;
}

.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);

}

.star {width:15px;}

.w-\[80px\] {
    width: 80px;
}
.h-\[15px\] {
    height: 15px;
}
.grid {
    display: grid;
}

.inner-wrap.review {
    background-color: var(--menu-color) !important;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.font-bold {
    font-weight: 700;
}

.space-y-\[15px\] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(15px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(15px * var(--tw-space-y-reverse));
}
.overflow-y-scroll {
    overflow-y: scroll;
}
.max-h-\[300px\] {
    max-height: 300px;
}

.mb-\[20px\] {
    margin-bottom: 20px;
}


/* 버튼 */
.smBtn {
  padding: 4px 14px;
  font-size: 10px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 6px;
  color: #333333;
  background: #ffffff;
}
.smBtn.filled {
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}
.titleArea > h2 {
    font-size: 18px;
    font-weight: 700;
}


div.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20000;
}

div.modal-container.review > .inner {
  max-width: 80vw;
}

div.modal-container > .inner {
  flex: 0 0 calc(100% - 30px);
  max-width: calc(100vw - 20px);
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 5px 9px #00000029;
  padding: 30px 30px;
}

div.modal-container > .inner > h3.subject {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}

div.modal-container > .inner > div.content {
  border: 1px solid #eeeeee;
  border-radius: 6px;
  background-color: #ffffff;
  min-height: 50px;
  overflow-y: auto;
  max-height: 60vh;
  margin: 0 0 20px;
}

div.modal-container > .inner > div.content > span.img-wrap {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

div.modal-container > .inner > div.content > span.img-wrap > img {
  width: 100%;
}

ul.tab-contents > div.inner-wrap.active {
  display: block;
}

ul.tab-contents .inner-wrap li.tab-content > div.question > h3 {
  height: 50px;
}

ul.tab-contents .inner-wrap li.tab-content > div.question > h3 > div {
  font-size: 13px;
}

li.tab-content > div.descWrapper > p {
  display: none;
}

ul.tab-contents .inner-wrap.open li.tab-content > div.descWrapper > p {
  display: block;
}

ul.tab-contents .inner-wrap svg.plus,
ul.tab-contents .inner-wrap svg.minus {
  width: 15px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}

ul.tab-contents .inner-wrap svg.plus {
  display: block;
}

ul.tab-contents .inner-wrap svg.minus {
  display: none;
}

ul.tab-contents .inner-wrap.open svg.plus {
  display: none;
}

ul.tab-contents .inner-wrap.open svg.minus {
  display: block;
}

ul.tab-contents > div.inner-wrap > li.tab-content > div.descWrapper > p {
  font-size: 12px;
}
svg:not(:root) {
    overflow: hidden;
}
/* 인풋 */
.textInput,
#service_description > div,
#fields .form-group input.form-control {
  appearance: none;
  width: 100%;
  height: auto;
  outline: none;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0em;
  background: rgba(250, 250, 250, 0.2) !important;
  color: #000000 !important;
  box-shadow: inset 0 0 0 0px rgb(235, 235, 235),
    inset 0 0 0 1px rgb(238, 238, 238) !important;
}
.flex-col {
    flex-direction: column;
}
.space-y-\[10px\] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(10px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(10px * var(--tw-space-y-reverse));
}
.space-x-\[10px\] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(10px * var(--tw-space-x-reverse));
    margin-left: calc(10px * calc(1 - var(--tw-space-x-reverse)));
}

.submitBtn {
  appearance: none;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  background: var(--main-color) !important;
  color: #ffffff;
  z-index: 1;
  box-shadow: none;
}


@media (min-width: 768px) {
    div.modal-container > .inner, div.modal-container.review > .inner {
        max-width: 330px;
    }
}
.overflow-y-scroll {
    overflow-y: scroll;
}








.container.blog .subjectWrapper {
  padding-top: 70px;
  padding-bottom: 40px;
}

.container.blog .postContainer {
  padding-top: 20px;
}

.container.blog .postContainer .postWrapper > div > h4 {
  margin-top: 20px;
  margin-bottom: 12px;
}

.container.blog .postContainer .postWrapper > div > h4 > a {
  font-style: normal;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color:#333;
}

.container.blog .postContainer .postWrapper > div > a {
}

.container.blog .postContainer .postWrapper > div > a > img {
  border-radius: 12px;
}

.container.blog .postContainer .postWrapper > div > time {
  color: #cecece;
  font-size: 13px;
}

.container.blog .blogTagContainer {
  padding-top: 15px;
  padding-bottom: 18px;
  margin-bottom: 10px;
}

.container.blog .blogTagContainer .blogTagWrapper ul {
  text-align: center;
}

.container.blog .blogTagContainer .blogTagWrapper ul .blogTag {
  display: inline-block;
  border-radius: 6px;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 5px;
  padding: 5px 15px;
  font-weight: 400;
  background: #eee;
  color: #333333;
  cursor: pointer;
}
.container.blog .blogTagContainer .blogTagWrapper ul .blogTag:hover,
.container.blog .blogTagContainer .blogTagWrapper ul .blogTag.active {
  background: #f5f0fd;
  color: var(--main-color);
  font-weight: 700;
}

.leading-\[25px\] {
    line-height: 25px;
}
.font-normal {
    font-weight: 400;
}
.text-\[18px\] {
    font-size: 18px;
}
.mb-\[20px\] {
    margin-bottom: 20px;
}
.text-\[var\(--main-color\)\] {
    color: var(--main-color);
}
.gap-y-\[35px\] {
    row-gap: 35px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
@media (min-width: 1280px) {
    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .container.blog .blogTagContainer .blogTagWrapper ul {
        text-align: left;
    }
    .md\:text-\[40px\] {
    font-size: 40px;
  }
}
@media (min-width: 640px) {
    .sm\:gap-x-\[45px\] {
        column-gap: 45px;
    }
    .sm\:text-left {
            text-align: left;
        }
}

@media (min-width: 1280px) {
    .xl\:px-\[170px\] {
        padding-left: 170px;
    }

}






/* 블로그 포스트 시작 */

.blogPostContainer .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
}

.blogPostContainer .top .category {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blogPostContainer .top h1 {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 27px;
  text-align: center;
}

.blogPostContainer .top img {
  border-radius: 24px;
  width: 100%;
}

article.blogPost {
  padding-top: 32px;
}

article.blogPost div.blogPostBody h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 27px;
}

article.blogPost div.blogPostBody h3 {
  font-size: 25px;
}

article.blogPost div.blogPostBody h4 {
  font-size: 25px;
}

article.blogPost div.blogPostBody p {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

article.blogPost div.blogPostBody p.space {
  width: 100%;
}

article.blogPost div.blogPostBody hr {
  margin-bottom: 18px;
}

article.blogPost div.blogPostBody .callout {
  display: flex;
  padding: 16px 16px 16px 12px;
  width: 100%;
  border-radius: 4px;
  background: rgb(241, 241, 239);
  margin-bottom: 18px;
}

article.blogPost div.blogPostBody .callout .emojiWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

article.blogPost div.blogPostBody .callout .emojiWrapper span {
  line-height: 1em;
  white-space: nowrap;
}

article.blogPost div.blogPostBody .callout .contentWrapper {
  display: flex;
  flex-direction: column;
  min-width: 0px;
  margin-left: 8px;
  width: 100%;
}

article.blogPost div.blogPostBody .callout .contentWrapper div.content {
  max-width: 100%;
  width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
  caret-color: rgb(55, 53, 47);
  padding-left: 2px;
  padding-right: 2px;
  min-height: 1em;
  color: rgb(55, 53, 47);
  -webkit-text-fill-color: rgba(55, 53, 47, 0.5);
  font-size: 14px;
}

article.blogPost div.blogPostBody div.imgWrapper {
  padding-top: 12px;
  margin-bottom: 30px;
  border-radius: 24px;
}

article.blogPost div.blogPostBody div.imgWrapper img {
  width: 100%;
  border-radius: 24px;
}

article.blogPost div.blogPostBody .highlighting {
  background: #f5f0fd;
  padding: 0px 5px;
  font-weight: bold;
}

article.blogPost div.blogPostBody div.seoSection {
  margin-top: 100px;
}

article.blogPost
  div.blogPostBody
  div.seoSection
  .hashtagWrapper
  .hashtag::before {
  content: "#";
}

article.blogPost div.blogPostBody div.seoSection .hashtagWrapper .hashtag {
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #f5f0fd;
  display: inline-block;
  margin-bottom: 10px;
}

article.blogPost
  div.blogPostBody
  div.seoSection
  .hashtagWrapper
  .hashtag:hover {
  background: #e8e5fb;
}

article.blogPost div.blogPostBody div.shareSection {
  margin-top: 100px;
  display: flex;
  justify-content: start;
}

article.blogPost div.blogPostBody div.shareSection .shareWrapper {
  display: flex;
  align-items: center;
}

article.blogPost div.blogPostBody div.shareSection .shareWrapper .shareIcon {
  margin-right: 15px;
}

article.blogPost div.blogPostBody div.shareSection .shareWrapper span {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 20px;
  background: rgb(241, 241, 239);
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
}

article.blogPost div.blogPostBody div.shareSection .shareWrapper span:hover {
  background: #e8e5fb;
  color: var(--main-color);
}

div.recommendSection div.recommendContents a.recommendContent .thumbWrapper {
  border-radius: 20px;
  overflow: hidden;
}

div.recommendSection div.recommendContents a.recommendContent .contentTitle {
  font-size: 18px;
}

div.recommendSection div.recommendContents a.recommendContent .contentDesc {
  font-size: 14px;
  margin-bottom: 0;
}

div.recommendSection div.recommendContents a.recommendContent .hashtagWrapper {
  margin-top: 5px;
}

div.recommendSection
  div.recommendContents
  a.recommendContent
  .hashtagWrapper
  .hashtag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
  background: #f5f0fd;
  margin-bottom: 10px;
}

/* 블로그 포스트 끝 */





@media (min-width: 768px) {
  /* 블로그 페이지 시작 */
  .flex {
      display: flex !important;
  }
  .container.blog .subjectWrapper {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .container.blog .blogTagContainer .blogTagWrapper ul {
    text-align: left;
  }

  /* 블로그 페이지 끝 */

  /* 블로그 포스트 시작 */

  .blogPostContainer {
    max-width: 1080px;
  }

  .blogPostContainer .top .category {
    margin-bottom: 15px;
  }

  article.blogPost div.blogPostBody .callout .contentWrapper div.content {
    font-size: 18px;
  }

  article.blogPost div.blogPostBody div.shareSection {
    justify-content: center;
  }

  .blogPostContainer .top h1 {
    font-size: 40px;
  }

  article.blogPost div.blogPostBody h2 {
    font-size: 30px;
  }

  article.blogPost div.blogPostBody h3 {
    font-size: 28px;
  }

  article.blogPost div.blogPostBody h4 {
    font-size: 26px;
  }

  div.recommendSection div.recommendContents a.recommendContent .contentTitle {
    font-size: 21px;
  }

  div.recommendSection div.recommendContents a.recommendContent .contentDesc {
    font-size: 18px;
    margin-bottom: 0;
  }

  div.recommendSection
    div.recommendContents
    a.recommendContent
    .hashtagWrapper
    .hashtag {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    background: #f5f0fd;
  }

  /* 블로그 포스트 끝 */
  .container.terms section.inner-wrap > ol > li > ol,
  .container.terms section.inner-wrap > ol > li > ul,
  .container.terms section.inner-wrap > div > div > div {
    padding-left: 30px;
  }
  .responsiveHiddenBlock {
    display: block !important;
  }
  mo_hidden {
    display: block;
  }
  .mo_unvisible {
    display: block;
  }
  .pc_unvisible {
    display: none;
  }

  .md\:justify-between {
      justify-content: space-between;
  }


  body.menu_on aside {
    bottom: -100% !important;
  }
  aside div.mo_hidden > a.brand > img.logo {
    margin-top: 10px;
    height: 50px;
  }

  aside div.menu {
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    overflow-y: scroll;
    max-height: 500px;
  }

  body > aside > div > div.menu > div > nav > ul > li.menu {
    font-size: 14px;
  }
  aside div.menu nav ul li.category > a {
    font-size: 12px;
  }

  footer.footerPC {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  footer > div.toggleBtn {
    border-top: 1px solid #eeeeee;
  }

  footer .businessInfos {
    font-size: 12px;
  }

  div.modal-container > .inner,
  div.modal-container.review > .inner {
    max-width: 330px;
  }

  div.modal-container.guide > .inner {
    flex: 0 0 calc(100% - 30px);
    max-width: 730px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 9px #00000029;
    padding: 50px 30px;
  }

  section.popup-wrap {
    background: rgba(0, 0, 0, 0.7);
  }

  .popup-wrap .inner {
    max-width: 650px;
    max-height: 600px;
  }

  div.container {
    padding-top: 0px;
  }
  .container.addfunds section.paymentMethods div .btnBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .container.addfunds
    section.paymentMethods
    div
    .btnBox
    .addfunds-button
    div.button-title {
    font-size: 16px;
  }
  /* 탭 리스트 */
  ul.tab-body > li.tab-list {
    font-size: 14px;
  }
  .event-banner-container {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 30000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .event-banner-wrapper.swiper-container {
    max-width: 400px;
    position: relative;
  }
  .event-banner-wrapper.swiper-container .swiper-wrapper {
    border-radius: 20px;
  }
  .event-banner-wrapper.swiper-container .swiper-wrapper .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
  }
  .event-banner-wrapper.swiper-container .swiper-button-next:after,
  .event-banner-wrapper.swiper-container .swiper-button-prev:after {
    font-size: 18px !important;
  }
  .event-banner-wrapper.swiper-container .swiper-button-next,
  .event-banner-wrapper.swiper-container .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    color: var(--main-color) !important;
    background: #fff !important;
  }
  .event-banner-wrapper.swiper-container .swiper-pagination {
    bottom: 45px;
  }
  .event-banner-wrapper.swiper-container .swiper-button-next {
    right: 6px;
  }
  .event-banner-wrapper.swiper-container .swiper-button-prev {
    left: 6px;
  }
  .event-banner-wrapper.swiper-container .swiper-button-prev:after {
    margin-left: -3px;
  }
  .event-banner-wrapper.swiper-container .swiper-button-next:after {
    margin-right: -3px;
  }
  .event-banner-wrapper.swiper-container .swiper-pagination-bullet-active {
    background: #fff;
  }

  .main_pc_banner .event-banner-wrapper.swiper-container {
    max-width: unset;
  }

  .main_pc_banner .event-banner-wrapper.swiper-container .swiper-pagination {
    bottom: 5px;
  }

  .main_pc_banner
    .event-banner-wrapper.swiper-container
    .swiper-pagination-bullet-active,
  .main_pc_banner
    .event-banner-wrapper.swiper-container
    .swiper-pagination-bullet {
    background: var(--main-color);
  }
}

@media (min-width: 768px) {
    .md\:px-\[50px\] {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (min-width: 768px) {
    .md\:text-\[30px\] {
        font-size: 30px;
    }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:gap-\[20px\] {
        gap: 20px;
    }
}
@media (min-width: 768px) {
    .md\:gap-\[8px\] {
        gap: 8px;
    }
}
@media (min-width: 768px) {
    .md\:mt-\[100px\] {
        margin-top: 100px;
    }
}
@media (min-width: 768px) {
    .md\:text-center {
        text-align: center;
    }
}
