html, body {
  width: 100%;
  min-height: 100%;
}

#wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.container {
  width: 100%;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

#header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  max-width: 800px;
  width: 100%;
  height: 120px;
  z-index: 201;
  background-color: #f43a3a;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
}

.logo {
  display: inline-block;
  width: 219px;
  height: 65px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header__right .bookmark {
  padding-right: 40px;
  position: relative;
}

.header__right .bookmark::after {
  content: '';
  display: inline-block;
  width: 49px;
  height: 53px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/new/icon_bookmark.png) no-repeat center center / contain;
}

.header__right .bookmark .bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 62px;
  transform: translateY(8px);
  background: url(../img/new/bookmark_bubble.png) no-repeat center center / contain;
}

.header__right .bookmark .bubble span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 13px;
}

.header__right .btn_header_menu {
  position: relative;
  width: 32px;
  height: 30px;
}

.header__right .btn_header_menu span {
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.35s;
}

.header__right .btn_header_menu span:nth-child(1) {
  top: 0;
}

.header__right .btn_header_menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__right .btn_header_menu span:nth-child(3) {
  top: calc(100% - 4px);
}

.header__right .btn_header_menu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.header__right .btn_header_menu.open span:nth-child(2) {
  opacity: 0;
}

.header__right .btn_header_menu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

#sidebar {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  margin: 0 auto;
  z-index: 200;
  background-color: rgb(0, 0, 0, 0.7);
  visibility: hidden;
  transition: 0.35s;
}

.sidebar__inner {
  position: absolute;
  right: -450px;
  top: 0;
  width: 503px;
  background-color: rgb(255, 255, 255, 0.7);
  height: 100%;
  transition: 0.35s;
  opacity: 0;
}

#sidebar.open {
  visibility: visible;
  backdrop-filter: blur(4px)
}

#sidebar.open .sidebar__inner {
  right: 0;
  opacity: 1;
}

.sidebar__content {
  width: 100%;
  height: 100%;
  padding: 0 63px;
  padding-top: calc(103px + 120px);
}

#sidebar nav.gnb {
  position: relative;
  padding-bottom: 75px;
  margin-left: 17px;
}

#sidebar nav.gnb::after {
  content: '';
  display: inline-block;
  width: 148px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}

#sidebar nav.gnb ul li:not(:last-child) {
  margin-bottom: 70px;
}

#sidebar nav.gnb ul li a {
  font-family: "ScoreDream";
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 48px;
  font-weight: 600;
  transition: 0.1s;
}

#sidebar nav.gnb ul li a.active,
#sidebar nav.gnb ul li a:hover {
  color: #f43a3a;
}

#sidebar .chat_customer {
  display: flex;
  align-items: center;
  width: 355px;
  height: 74px;
  border-radius: 38px;
  margin-top: 47px;
  background-color: #707070;
}

#sidebar .chat_customer span {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  padding-left: 85px;
  position: relative;
  font-family: "ScoreDream";
}

#sidebar .chat_customer span:before {
  content: '';
  display: inline-block;
  width: 46px;
  height: 42px;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/new/icon_chat.png) no-repeat center center / contain;
}

#main {
  min-height: calc(100dvh - 272px);
  padding-top: 120px;
}

#main .contents {
  padding: 46px 37px;
}

#quick-menu {

}

.quick-menu__box {
  position: fixed;
  width: 100%;
  max-width: 800px;
  height: 90px;
  margin: 0 auto;
  left: 50%;
  bottom: 20px;
  z-index: 101;
  transform: translateX(-50%);
  background-color: #848484;
  padding: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-menu__box .quick-menu__item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: "ScoreDream";
}

.quick-menu__box .quick-menu__item.quick--chat span {
  display: inline-block;
  width: 145px;
  height: 51px;
  line-height: 57px;
  background-color: #222222;
  border-radius: 25px;
  padding-left: 40px;
  position: relative;
}

.quick-menu__box .quick-menu__item.quick--chat span::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 30px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/new/icon_chat2.png) no-repeat center / contain;
}

#footer {
  width: 100%;
  height: 355px;
  background-color: #252e3f;
  position: relative;
  z-index: 100;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

.footer__logo {
  width: 153px;
  height: 45px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

ul.footer__info {
  margin-top: 36px;
}

ul.footer__info li {
  font-size: 14px;
  font-weight: 300;
  color: #5b5f67;
}

ul.footer__info li span {
  color: #fff;
}

.footer__inner .copyright {
  font-size: 14px;
  font-weight: 300;
  color: #5b5f67;
  margin-top: 16px;
}

/* #### Setting #### */
.btn {
  display: inline-block;
  border-radius: 10px;
  text-align: center;
  margin: 0;
}

.btn-md {
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  font-weight: 400;
}

.btn-w100p {
  width: 100%;
}

.btn_primary {
  background-color: #ff6c6c;
  color: #fff;
}

@media screen and (max-width:767px) {
  #header {
    height: 80px;
  }
  .header__inner {
    padding: 0 20px;
  }
  .logo {
    display: inline-block;
    width: 148px;
    height: 40px;
  }
  .header__right {
    gap: 24px;
  }
  .header__right .bookmark {
    padding-right: 24px;
  }
  .header__right .bookmark::after {
    width: 34px;
    height: 48px;
  }
  .header__right .bookmark .bubble {
    width: 140px;
    height: 48px;
    transform: translateY(6px);
  }
  .header__right .bookmark .bubble span {
    font-size: 14px;
  }
  .header__right .btn_header_menu {
    width: 28px;
    height: 27px;
  }
  .header__right .btn_header_menu span {
    height: 2px;
  }
  .sidebar__inner {
    width: 480px;
    max-width: 60vw;
  }
  .sidebar__content {
    padding: 0 30px;
    padding-top: calc(80px + 80px);
  }
  #sidebar nav.gnb {
    margin-left: 12px;
    padding-bottom: 40px;
  }
  #sidebar nav.gnb ul li:not(:last-child) {
    margin-bottom: 24px;
  }
  #sidebar nav.gnb::after {
    width: 56px;
  }
  #sidebar nav.gnb ul li a {
    font-size: 30px;
  }
  #sidebar .chat_customer {
    width: 216px;
    height: 48px;
    margin-top: 20px;
  }
  #sidebar .chat_customer span {
    font-size: 24px;
    padding-left: 57px;
  }
  #sidebar .chat_customer span:before {
    width: 34px;
    height: 30px;
    left: 12px;
  }
  #main {
    min-height: calc(100dvh - 200px);
    padding-top: 80px;
  }
  #main .contents {
    padding: 24px 20px;
  }
  #quick-menu {
  }
  .quick-menu__box {
    height: 50px;
    bottom: 15px;
  }
  .quick-menu__box .quick-menu__item {
    font-size: 14px;
  }
  .quick-menu__box .quick-menu__item.quick--chat span {
    width: 115px;
    height: 34px;
    line-height: 38px;
    padding-left: 22px;
  }
  .quick-menu__box .quick-menu__item.quick--chat span::before {
    width: 24px;
    height: 24px;
    left: 13px;
  }
  #footer {
    height: 270px;
  }
  .footer__inner {
    padding-top: 24px;
  }
  .footer__logo {
    width: 128px;
    height: 34px;
  }
  ul.footer__info {
    margin-top: 20px;
  }
  .footer__inner .copyright {
    font-size: 12px;
  }
  .btn-md {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
  }
}
@media screen and (max-width:500px) {
  #header {
    height: 64px;
  }
  .logo {
    display: inline-block;
    width: 130px;
    height: 36px;
  }
  .header__right {
    gap: 16px;
  }
  .header__right .bookmark {
    padding-right: 16px;
  }

  .header__right .bookmark::after {
    width: 28px;
    height: 40px;
  }

  .header__right .bookmark .bubble {
    width: 100px;
    height: 33px;
    transform: translateY(4px);
  }

  .header__right .bookmark .bubble span {
    font-size: 10px;
    margin-bottom: 1px;
    margin-right: 10px
  }

  .header__right .btn_header_menu {
    width: 21px;
    height: 21px;
  }

  .sidebar__inner {
    width: 300px;
    max-width: 64%;
  }

  .sidebar__content {
    padding: 0 20px;
    padding-top: calc(80px + 40px);
  }

  #sidebar nav.gnb {
    padding-bottom: 40px;
  }

  #sidebar nav.gnb ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  #sidebar nav.gnb::after {
    width: 40px;
  }

  #sidebar nav.gnb ul li a {
    font-size: 22px;
  }

  #sidebar .chat_customer {
    width: 184px;
    height: 44px;
    margin-top: 16px;
  }

  #sidebar .chat_customer span {
    font-size: 20px;
    padding-left: 48px;
  }

  #sidebar .chat_customer span:before {
    width: 30px;
    height: 26px;
    left: 12px;
  }

  #main {
    min-height: calc(100dvh - 200px);
    padding-top: 64px;
  }

  #main .contents {
    padding: 24px 20px 24px;
  }

  #quick-menu {
  }

  .quick-menu__box {
    gap: 8px;
  }

  .quick-menu__box .quick-menu__item {
    font-size: 11px;
  }

  .quick-menu__box .quick-menu__item.quick--chat span {
    /* width: 100px;
    height: 36px;
    line-height: 38px;
    padding-left: 23px; */
    width: 87px;
    height: 29px;
    line-height: 31px;
    padding-left: 23px;
  }

  .quick-menu__box .quick-menu__item.quick--chat span::before {
    /* width: 28px;
    height: 20px;
    left: 9px; */
    width: 25px;
    height: 17px;
    left: 8px;
  }

  #footer {
    height: 240px;
  }
  .footer__logo {
    width: 138px;
    height: 28px;
  }
  ul.footer__info li {
    font-size: 10px;
  }
  .footer__inner .copyright {
    font-size: 10px;
  }
  .btn-md {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }
}

/* 메인 */
.main_contents {
  width: 100%;
}

section.main_banner {
  width: 100%;
  background-color: #dcd7d2;
  padding-left: 51px;
  padding-top: 84px;
  padding-bottom: 56px;
  background: url(../img/new/main_banner_bg.png) no-repeat center / cover;
}

.main-banner__top {
  display: flex;
  gap: 30px;
}

.main-banner__title {
  flex-shrink: 0;
}

.main-banner__title p {
  font-size: 22px;
  font-weight: 300;
  color: #000;
  margin-bottom: 21px;
}

.main-banner__title p em.exclamation {
  display: inline-block;
  font-style: normal;
  transform: rotate(12deg);
}

.main-banner__title h1 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-top: 28px;
}

.main-banner__title h1::before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 4px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.main-banner__title .check__list {
  margin-top: 40px;
}

.main-banner__title .check__list li {
  font-size: 22px;
  font-weight: 300;
  position: relative;
  padding-left: 24px;
}

.main-banner__title .check__list li:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background: url(../img/new/icon_check.png) no-repeat center / contain;
}

.main-banner__title .check__list li b {
  font-weight: 500;
}

.main-banner__img {
  transform: translateY(-18px);
}

.main-banner__cards {
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 51px;
  margin-top: 30px;
}

.main-banner__cards .banner-card__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 218px;
  max-width: 218px;
  min-width: 218px;
  flex-shrink: 0;
  padding-top: 24px;
  padding-left: 16px;
  flex: 1;
  /* height: 215px; */
  height: 171px;
  filter: drop-shadow(4px 2px 7px rgba(0, 0, 0, 0.2));
  /* box-shadow: 0 4px 10px rgb(0, 0, 0, 0.12); */
  background: url(../img/new/home_banner_card.png) no-repeat center / contain;
}

.banner-card__item span {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  height: 22px;
}

.banner-card__item h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  height: 42px;
}

.banner-card__item h2 em {
  display: inline-block;
  margin-right: 4px;
  height: 42px;
  line-height: 48px;
  padding: 0 10px;
  border-radius: 178px;
  background: linear-gradient(90deg, #ff7474 0%, #f43a3a 100%);
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.banner-card__item p.max {
  margin-top: 9%;
  font-size: 22px;
  font-weight: 300;
  height: 25px;
}

.banner-card__item p.max b {
  font-weight: 500;
  color: #f43a3a;
}

.banner-card__item p.max b strong {
  font-weight: 700;
}

.banner-card__item p.bottom {
  margin-top: auto;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 14px;
}

section.sub_banner {
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
}

.banner__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.banner__list .sub-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 36px;
  padding-top: 50px;
  padding-bottom: 23px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid #e8e8e8;
  background: url(../img/new/sub_banner_bg.png) no-repeat center / cover;
}

.banner__list .sub-banner .banner_text h3 {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  height: 27px;
}

.banner__list .sub-banner.chat .banner_text h3::after {
  content: '';
  display: inline-block;
  width: 68px;
  height: 50px;
  position: absolute;
  right: -69px;
  top: -35px;
  background: url(../img/new/sub_banner_chat_icon.png) no-repeat center / contain;
}

.banner__list .sub-banner.bookmark .banner_text h3::after {
  content: '';
  display: inline-block;
  width: 68px;
  height: 50px;
  position: absolute;
  right: -69px;
  top: -35px;
  background: url(../img/new/sub_banner_bookmark_icon.png) no-repeat center / contain;
}

.banner__list .sub-banner .banner_text p {
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 18px;
  height: 24px;
}

.banner__list .sub-banner .banner_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  height: 38px;
  width: 233px;
  border: 1px solid #eeeeee;
}

.banner__list .sub-banner .banner_btn span {
  font-size: 20px;
  font-weight: 700;
  background: -webkit-linear-gradient(0deg, #f71341, #dd8455);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__list .sub-banner .banner_btn span:after {
  content: '>';
  font-size: 20px;
  font-weight: 700;
  color: #dd8455;
  display: inline-block;
  margin-left: 14px;
}

.banner__list .sub-banner.chat .banner_img {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 190px;
  height: auto;
}

.banner__list .sub-banner .banner_img img {
  width: 100%;
  object-fit: contain;
}

.banner__list .sub-banner.bookmark .banner_img {
  position: absolute;
  top: 50%;
  right: 100px;
  width: 150px;
  transform: translateY(-50%);
}

.section_recommend {
  width: 100%;
  padding: 36px;
  background: url(../img/new/recommend_bg.png) no-repeat center / cover;
}

.section_recommend .recommend_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
}

.section_recommend .recommend_title img {
  width: 82px;
  height: auto;
}

.section_recommend .recommend_title span {
  font-size: 28px;
  font-weight: 300;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.section_recommend .recommend_title h2 {
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-top: -10px;
}

.section_recommend .recommend_title h2 b {
  color: #eb3c50;
}

.section_recommend .recommend_title h2::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 23px;
  background-color: #ffb8d186;
  position: absolute;
  border-radius: 5px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.recommend__list {
  margin-top: 48px;
  width: 100%;
  height: auto;
}

.recommend__item {
  display: flex;
  align-items: center;
  padding: 32px 40px;
  padding-left: 30px;
  margin-bottom: 20px;
  border-radius: 800px;
  background-color: rgb(243, 243, 243, 0.7);
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.16);
}

.recommend__item p {
  font-size: 29px;
  font-weight: 500;
  padding-left: 100px;
  padding-left: 66px;
  position: relative;
  margin-top: 6px;
}

.recommend__item p:before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 41%;
  transform: translateY(-50%);
  background: url(../img/new/icon_check2.png) no-repeat center / contain;
}

.section_howto {
  width: 100%;
  padding: 96px 36px;
  background: url(../img/new/howto_bg.png) no-repeat center / cover;
}

.howto_title {
  text-align: center;
}

.howto_title h3 {
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: 500;
}

.howto_title h3::after {
  content: '';
  display: inline-block;
  width: 74px;
  height: 68px;
  position: absolute;
  right: -40px;
  top: -20px;
  background: url(../img/new/howto_tit_icon.png) no-repeat center / contain;
}

.howto_title h3 b {
  display: block;
  font-weight: 700;
}

.howto_title h3 strong {
  display: inline-block;
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  background-color: #e10008;
  padding: 0 12px;
  border-radius: 800px;
  height: 52px;
  margin-right: 8px;
  line-height: 64px;
}

.howto_title p {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  color: #2e1a01;
  margin-top: 20px;
}

.howto_title p span {
  font-weight: 500;
  position: relative;
  z-index: 0;
  padding: 4px 4px;
}

.howto_title p span::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2px;
  z-index: -1;
  border-radius: 5px;
  background-color: #fff;
}

.howto__list {
  margin-top: 60px;
}

.howto__list .howto__item {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  align-items: center;
}

.howto_step {
  display: flex;
  align-items: center;
  gap: 15px;
}

.howto_step span.step {
  display: inline-block;
  width: 66px;
  height: 50px;
}

.howto_step span.step img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.howto_step p {
  font-size: 30px;
  font-weight: 300;
  color: #000;
  font-family: "ScoreDream";;
}

.howto__item .howto_img {
  margin: 0 auto;
}

.howto__item .howto_img img {
  width: 100%;
  object-fit: contain;
}

.howto__item.step1 .howto_img {
  max-width: 626px;
}

.howto__item.step2 .howto_img {
  max-width: 400px;
}

.howto_notice {
  display: block;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.howto_notice p {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.howto_notice p::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: -4px;
  background: url(../img/new/howto_check_icon.png) no-repeat center / contain;
}

.howto_notice span {
  font-weight: 700;
  color: #e10008;
}

.section_intro {
  width: 100%;
  padding: 64px 0px;
  background: url(../img/new/intro_bg.png) no-repeat center / cover;
}

.intro_title {
  text-align: center;
}

.intro_title img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.intro_title span {
  display: block;
  font-size: 28px;
  font-weight: 300;
  margin-top: 18px;
  margin-bottom: 3px;
}

.intro_title h2 {
  font-size: 45px;
  font-weight: 700;
  text-shadow: -4px 0 #fff, 0 4px #fff, 4px 0 #fff, 0 -4px #fff;
}

.intro_title h2 b {
  color: #fc3a3a;
}

.intro_title p {
  font-size: 28px;
  font-weight: 500;
  margin-top: 12px;
}

.intro_wrap {
  margin-top: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.intro_wrap .intro_img {
  width: 520px;
  transform: translateX(-50px);
}

.intro_wrap .intro_img img {
  width: 100%;
  object-fit: contain;
}

.intro__list .intro__item {
  position: absolute;
}

.intro__list .intro__item:nth-child(1) {
  top: 40px;
  left: 425px;
}

.intro__list .intro__item:nth-child(2) {
  top: 151px;
  left: 486px;
}

.intro__list .intro__item:nth-child(3) {
  top: 276px;
  left: 485px;
}

.intro__list .intro__item:nth-child(4) {
  top: 395px;
  left: 412px;
}

.intro__list .intro__item h3 {
  font-size: 28px;
  font-weight: 700;
}

.intro__list .intro__item p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
}

.intro__list .intro__item p span {
  color: #fc3a3a;
}

.section_review {
  width: 100%;
  padding: 73px 0px;
  background: url(../img/new/review_bg.png) no-repeat top -50px center / cover;
}

.review_title {
  padding: 0 26px;
  text-align: center;
}

.review_title p {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  height: 57px;
  line-height: 62px;
  padding: 0 60px;
  background: url(../img/new/review_tit_bg.png) no-repeat center / contain;
}

.review_title h2 {
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #111;
  margin-top: 27px;
  position: relative;
  padding: 0 12px;
  z-index: 2;
}

.review_title h2:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ffffff3f;
}

.review_img {
  margin-top: 25px;
  padding-left: 26px;
}

.section_qna {
  width: 100%;
  padding: 100px 27px 60px;
  background: url(../img/new/qna_bg.png) no-repeat center / cover;
}

.qna_title {
  text-align: center;
}

.qna_title p {
  display: block;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 6px;
}

.qna_title h2 {
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #111;
  position: relative;
  padding: 0 12px;
  z-index: 2;
}

.qna_title h2:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ffcedf;
}

.qna_title h2 b {
  color: #eb3e52;
}

.qna__list {
  margin-top: 40px;
}

.qna__item {
  width: 100%;
  height: auto;
  padding: 37px 33px 31px;
  padding-left: 170px;
  margin-bottom: 32px;
  border-radius: 800px;
  border: 2px solid #e0e0e0;
  position: relative;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.174);
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.8) 0%, rgb(231, 231, 231, 0.8) 100%);
}

.qna__item:last-child {
  margin-bottom: 0;
}

.qna__item::before {
  content: '';
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 33px;
  transform: translateY(-50%);
  background: url(../img/new/qna_question.png) no-repeat center / contain;
}

.qna__item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.qna__item p {
  font-size: 20px;
  font-weight: 300;
}

.qna__item p b {
  font-weight: 500;
  color: #eb3e52;
}

@media screen and (max-width:767px) {
  section.main_banner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 45px;
  }
  .main-banner__title {
    max-width: 380px;
    margin: 0 auto;
  }
  .main-banner__title p {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .main-banner__title h1 {
    font-size: 30px;
    padding-top: 24px;
  }
  .main-banner__title h1::before {
    width: 40px;
    height: 3px;
  }
  .main-banner__title .check__list {
    margin-top: 20px;
  }
  .main-banner__title .check__list li {
    font-size: 18px;
  }
  .main-banner__title .check__list li:before {
    width: 14px;
    height: 14px;
  }
  .main-banner__img {
    transform: translateY(0px);
    max-width: 450px;
  }
  .main-banner__img img {
    width: 100%;
    object-fit: contain;
  }
  .main-banner__cards {
    justify-content: center;
    gap: 16px;
    padding-right: 0px;
  }
  .main-banner__cards .banner-card__item {
    width: calc((100% / 3) - 16px);
    max-width: calc((100% / 3) - 16px);
    min-width: calc((100% / 3) - 16px);
    height: auto;
    aspect-ratio: 1 / 0.98;
  }
  .banner-card__item span {
    font-size: 16px;
    height: 18px;
  }
  .banner-card__item h2 {
    font-size: 20px;
    height: 36px;
  }
  .banner-card__item h2 em {
    height: 36px;
    line-height: 38px;
    font-size: 24px;
  }
  .banner-card__item p.max {
    font-size: 18px;
    height: 20px;
  }
  .banner-card__item p.bottom {
    font-size: 18px;
  }
  section.sub_banner {
    padding: 6px 0;
  }
  .banner__list {
    row-gap: 7px;
  }
  .banner__list .sub-banner {
    border: 1px solid #dbdbdb;
    padding-top: 32px;
    padding-left: 20px;
    padding-bottom: 12px;
    justify-content: space-around;
    height: 150px;
  }
  .banner__list .sub-banner .banner_text h3 {
    font-size: 20px;
    height: 20px;
  }
  .banner__list .sub-banner.chat .banner_text h3::after {
    width: 58px;
    height: 44px;
    right: -63px;
    top: -29px;
  }
  .banner__list .sub-banner.bookmark .banner_text h3::after {
    width: 58px;
    height: 44px;
    right: -62px;
    top: -25px;
  }
  .banner__list .sub-banner .banner_text p {
    font-size: 16px;
    margin-bottom: 12px;
    height: 16px;
  }
  .banner__list .sub-banner .banner_btn {
    width: 180px;
    height: 34px;
  }
  .banner__list .sub-banner .banner_btn span {
    font-size: 16px;
  }
  .banner__list .sub-banner .banner_btn span:after {
    font-size: 16px;
    margin-left: 8px;
  }
  .banner__list .sub-banner.chat .banner_img {
    right: 30px;
    width: 160px;
  }
  .banner__list .sub-banner.bookmark .banner_img {
    right: 50px;
    width: 130px;
  }
  .section_recommend {
    padding: 20px 16px;
  }
  .section_recommend .recommend_title {
    row-gap: 8px;
  }
  .section_recommend .recommend_title img {
    width: 36px;
  }
  .section_recommend .recommend_title span {
    font-size: 15px;
  }
  .section_recommend .recommend_title h2 {
    font-size: 28px;
    padding: 0 12px;
    margin-top: -7px;
  }
  .section_recommend .recommend_title h2::after {
    height: 12px;
  }
  .recommend__list {
    margin-top: 20px;
  }
  .recommend__item {
    margin-bottom: 16px;
    padding: 20px 24px;
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .recommend__item p {
    font-size: 20px;
    padding-left: 40px;
  }
  .recommend__item p:before {
    width: 30px;
    height: 30px;
  }
  .section_howto {
    padding: 32px 16px;
  }
  .howto_title h3 {
    font-size: 28px;
    line-height: 1.6;
  }
  .howto_title h3::after {
    width: 64px;
    height: 50px;
    right: -44px;
    top: 2px;
  }
  .howto_title h3 strong {
    font-size: 30px;
    height: 40px;
    line-height: 48px;
  }
  .howto_title p {
    font-size: 20px;
    margin-top: 12px;
  }
  .howto__list {
    margin-top: 36px;
  }
  .howto__list .howto__item {
    margin-bottom: 24px;
    row-gap: 18px;
  }
  .howto_step span.step {
    width: 48px;
    height: 36px;
  }
  .howto_step p {
    font-size: 20px;
  }
  .howto__item.step1 .howto_img {
    max-width: 480px;
  }
  .howto__item.step2 .howto_img {
    max-width: 360px;
  }
  .howto_notice {
    font-size: 20px;
  }
  .howto_notice p::before {
    width: 24px;
    height: 24px;
  }
  .section_intro {
    padding: 32px 0;
  }
  .intro_title img {
    width: 36px;
    height: 36px;
  }
  .intro_title span {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .intro_title h2 {
    font-size: 28px;
    text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
  }
  .intro_title p {
    font-size: 18px;
    margin-top: 16px;
  }
  .intro_wrap {
    margin-top: 32px;
  }
  .section_review {
    padding: 36px 0;
  }
  .review_title {
    padding: 0 16px;
  }
  .review_title p {
    font-size: 16px;
    height: 40px;
    line-height: 46px;
    padding: 0 40px;
  }
  .review_title h2 {
    font-size: 24px;
    margin-top: 18px;
    padding: 0 8px;
  }
  .review_title h2:before {
    height: 12px;
  }
  .review_img {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 14px;
  }
  .section_qna {
    padding: 32px 16px;
  }
  .qna_title p {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .qna_title h2 {
    font-size: 28px;
  }
  .qna_title h2:before {
    height: 12px;
  }
  .qna__list {
    margin-top: 20px;
  }
  .qna__item {
    padding: 20px;
    padding-left: 100px;
    margin-bottom: 20px;
  }
  .qna__item::before {
    width: 64px;
    height: 64px;
    left: 20px;
  }
  .qna__item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .qna__item p {
    font-size: 14px;
  }
}
@media screen and (max-width:799px) {
  .intro_wrap .intro_img {
    width: 480px;
  }
  .intro__list .intro__item {
    width: max-content;
    transform: translateX(-37px);
  }
  .intro__list .intro__item h3 {
    font-size: 24px;
  }
  .intro__list .intro__item p {
    font-size: 16px;
  }
  .intro__list .intro__item:nth-child(1) {
    top: 36px;
    left: 415px;
  }
  .intro__list .intro__item:nth-child(2) {
    top: 138px;
    left: 473px;
  }
  .intro__list .intro__item:nth-child(3) {
    top: 256px;
    left: 477px;
  }
  .intro__list .intro__item:nth-child(4) {
    top: 364px;
    left: 407px;
  }
}
@media screen and (max-width:582px) {
  .intro_title span {
    font-size: 14px;
    margin: 6px 0;
  }
  .intro_title h2 {
    font-size: 22px;
  }
  .intro_title p {
    font-size: 14px;
    margin-top: 8px;
  }
  .intro_wrap {
    max-width: 372px;
    margin: 0 auto;
    margin-top: 22px;
  }
  .intro_wrap .intro_img {
    width: 280px;
  }
  .intro__list .intro__item h3 {
    font-size: 14px;
  }
  .intro__list .intro__item p {
    font-size: 9px;
    margin-top: 3px;
  }
  .intro__list .intro__item:nth-child(1) {
    top: 22px;
    left: 237px;
  }
  .intro__list .intro__item:nth-child(2) {
    top: 83px;
    left: 272px;
  }
  .intro__list .intro__item:nth-child(3) {
    top: 148px;
    left: 272px;
  }
  .intro__list .intro__item:nth-child(4) {
    top: 213px;
    left: 232px;
  }
}
@media screen and (max-width:500px) {
  section.main_banner {
    padding-left: 16px;
    padding-right: 6px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .main-banner__top {
    align-items: center;
    gap: 10px;
  }
  .main-banner__title {
    margin: 0;
  }
  .main-banner__title p {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .main-banner__title h1 {
    font-size: 22px;
    padding-top: 20px;
  }
  .main-banner__title .check__list {
    margin-top: 15px;
  }
  .main-banner__title .check__list li {
    font-size: 12px;
    padding-left: 14px;
  }
  .main-banner__title .check__list li:before {
    width: 8px;
    height: 8px;
  }
  .main-banner__cards {
    margin-top: 20px;
    gap: 8px;
    padding-right: 10px;
  }
  .main-banner__cards .banner-card__item {
    width: calc((100% / 3) - 6px);
    max-width: calc((100% / 3) - 6px);
    min-width: calc((100% / 3) - 6px);
    flex: none;
    padding-top: 24px;
    padding-left: 10px;
  }
  .banner-card__item span {
    font-size: 11px;
    height: 14px;
    margin-bottom: 0px;
  }
  .banner-card__item h2 {
    font-size: 14px;
    height: 24px;
  }
  .banner-card__item h2 em {
    height: 24px;
    line-height: 28px;
    font-size: 16px;
    padding: 0 4px;
  }
  .banner-card__item p.max {
    margin-top: 8px;
    font-size: 12px;
  }
  .banner-card__item p.bottom {
    font-size: 11px;
    padding-bottom: 21px;
  }
  .banner__list .sub-banner {
    padding-top: 22px;
    height: 94px;
  }
  .banner__list .sub-banner .banner_text h3 {
    font-size: 13px;
    margin-bottom: -4px;
  }
  .banner__list .sub-banner.chat .banner_text h3::after {
    width: 36px;
    height: 30px;
    right: -38px;
    top: -19px;
  }
  .banner__list .sub-banner.bookmark .banner_text h3::after {
    width: 36px;
    height: 30px;
    right: -38px;
    top: -19px;
  }
  .banner__list .sub-banner .banner_text p {
    font-size: 11px;
    margin-bottom: 0px;
  }
  .banner__list .sub-banner .banner_btn {
    width: 120px;
    height: 20px;
  }
  .banner__list .sub-banner .banner_btn span {
    font-size: 11px;
  }
  .banner__list .sub-banner .banner_btn span:after {
    font-size: 11px;
  }
  .banner__list .sub-banner.chat .banner_img {
    right: 0px;
    text-align: center;
  }
  .banner__list .sub-banner .banner_img img {
    width: 90px;
    height: 100%;
  }
  .banner__list .sub-banner.bookmark .banner_img {
    top: 54%;
    right: -3px;
  }
  .banner__list .sub-banner.bookmark .banner_img img {
    width: 83px;
  }
  .section_recommend .recommend_title h2 {
    font-size: 22px;
  }
  .recommend__item {
    padding: 14px 18px;
  }
  .recommend__item p {
    font-size: 14px;
    padding-left: 36px;
  }
  .section_howto {
    padding: 40px 16px 30px;
  }
  .howto_title h3 {
    font-size: 23x;
  }
  .howto_title h3::after {
    width: 48px;
    height: 40px;
    right: -22px;
    top: -4px;
  }
  .howto_title h3 b {
    font-size: 22px;
  }
  .howto_title h3 strong {
    font-size: 21px;
    padding: 0 9px;
    height: 30px;
    line-height: 34px;
    margin-right: 3px;
  }
  .howto_title p {
    font-size: 13px;
    margin-top: 5px;
  }
  .howto_title p span {
    padding: 2px 4px;
  }
  .howto_step {
    width: 100%;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto;
  }
  .howto_step span.step {
    width: 36px;
    height: 30px;
  }
  .howto_step p {
    font-size: 16px;
  }
  .howto__item.step2 .howto_img {
    max-width: 280px;
  }
  .howto__list {
    margin-top: 23px;
  }
  .howto__list .howto__item {
    row-gap: 10px;
  }
  .howto__item.step1 .howto_img {
    max-width: 360px;
  }
  .howto__item.step2 .howto_img {
    max-width: 245px;
  }
  .howto_notice p {
    font-size: 13.5px;
    padding-left: 20px;
  }
  .howto_notice p::before {
    width: 18px;
    height: 18px;
  }
  .section_review {
    background: url(../img/new/review_bg.png) no-repeat top -30px center / cover;
  }
  .review_title h2 {
    font-size: 23px;
    margin-top: 7px;
  }
  .review_title p {
    font-size: 14px;
    line-height: 44px;
  }
  .review_img {
    margin-top: 13px;
  }
  .section_qna {
    padding: 52px 16px 32px;
  }
  .qna_title p {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .qna_title h2 {
    font-size: 22px;
  }
  .qna__item {
    padding: 15px;
    padding-left: 70px;
  }
  .qna__item::before {
    width: 46px;
    height: 46px;
    left: 12px;
  }
  .qna__item h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .qna__item p {
    font-size: 10.5px;
  }
}
@media screen and (max-width: 410px) {
  .review_title h2 {
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (max-width:368px) {
  .banner__list .sub-banner {
    padding-left: 14px;
  }
  .banner-card__item p.max {
    margin-top: 6px;
    height: 13px;
  }
  .banner__list .sub-banner.chat .banner_img {
    width: 120px;
  }
  .banner__list .sub-banner.bookmark .banner_img {
    right: 12px;
    width: 100px;
  }
}
/* 커뮤니티 */
.page_title h3 {
  font-family: "ScoreDream";
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.contact_banner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 110px;
  border-radius: 20px;
  margin-top: 16px;
  padding: 0 33px;
  position: relative;
  background: url(../img/new/contact_banner_bg.png) no-repeat center / cover;
}

.contact_banner::after {
  content: '>';
  font-size: 36px;
  font-weight: 500;
  color: #000;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_banner .banner_txt {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  position: relative;
  margin-right: 78px;
  word-break: break-all;
}

.contact_banner .banner_txt::after {
  content: '';
  display: inline-block;
  width: 42px;
  height: 38px;
  position: absolute;
  right: -42px;
  top: -21px;
  background: url(../img/new/icon_chat_pink.png) no-repeat center / contain;
}

.tbl_list {
  margin-top: 40px;
}

.tbl_list .tbl--tr {
  width: 100%;
  display: flex;
  align-items: center;
}

.tbl_list .tbl__head .tbl--th {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  height: 48px;
  font-size: 16px;
  font-weight: 400;
  font-family: "ScoreDream";
  color: #000;
  text-align: left;
  border-bottom: 5px solid #f1f1f1;
}

.tbl_list .tbl__body .tbl--td {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 8px 10px;
  min-height: 55px;
  font-size: 16px;
  font-weight: 400;
  font-family: "ScoreDream";
  color: #000;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}

.tbl_list .tbl__body .tbl--td.tar {
  justify-content: end;
}

/* Table TypeA */
/* .tbl--typeA .tbl--td:nth-child(1) {
  width: 50px
}

.tbl--typeA .tbl--td:nth-child(2) {
  width: 50px
}

.tbl--typeA .tbl--td:nth-child(3) {
  width: 100%
}

.tbl--typeA .tbl--td:nth-child(4) {
  width: 120px
}

.tbl--typeB .tbl--td:nth-child(1) {
  width: 50px;
}

.tbl--typeB .tbl--td:nth-child(2) {
  width: 50px;
  justify-content: center;
}

.tbl--typeB .tbl--td:nth-child(3) {
  width: 100%
}

.tbl--typeB .tbl--td:nth-child(4) {
  width: 120px
}

.tbl--typeB .tbl--td:nth-child(5) {
  width: 80px
} */

a.title {
  line-height: 23px;
  height: auto;
}

.title.important,
.title.notice {
  position: relative;
  padding-left: 48px;
}

.title.important:before {
  content: '중요';
  padding: 0px 6px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  font-family: "ScoreDream";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: linear-gradient(180deg, #ff6c6c 0%, #f43a3a 100%);
}

.title.notice:before {
  /*content: '중요';*/
  content: '공지';
  padding: 0px 6px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  font-family: "ScoreDream";
  position: absolute;
  left: 0;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #f1c21f 0%, #be9d2a 100%);;
}

.tbl__body .btn_open {
  display: inline-block;
  width: 27px;
  height: 20px;
  background: url(../img/new/icon_qna_arrow.png) no-repeat center / contain;
}

.tbl__body .btn_open.open {
  transform: scaleY(-1);
}

.tbl--tr__bottom {
  background-color: #f1f1f1;
  padding: 24px;
  display: none;
}

.review_content .admin_btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.review_content .admin_btns > * {
  padding: 0 8px;
  border-right: 1px solid #5a5a5a;
  font-size: 15px;
  color: #111;
}

.review_content .admin_btns>*:last-child {
  padding-right: 0;
  border-right: none;
}

.review_content .title_box  {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.review_content .content h4 {
  font-size: 15px;
  font-family: 'ScoreDream';
  font-weight: 400;
}

.review_content .reply {
  padding-top: 21px;
  border-top: 1px solid #d1d1d1;
  margin-top: 21px;
  position: relative;
}

.review_content .reply .admin_btns {
  position: absolute;
  bottom: 0;
  right: 0;
}

.review_content .reply .reg_info {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.review_content .reply .reply_badge {
  display: inline-block;
  width: auto;
  height: 20px;
  line-height: 20px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 0 5px;
  background-color: #f77a89;
  font-family: "ScoreDream";
}

.review_content .reply .reg_info .reg_nm {
  font-size: 15px;
  font-weight: 400;
  font-family: "ScoreDream";
}

.review_content .reply>p {
  font-size: 15px;
  font-family: "ScoreDream";
}

.form_reg_replay h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: "ScoreDream";
}

.form_reg_replay textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  min-height: 100px;
  margin-top: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.form_reg_replay .reply_reg_btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form_reg_replay .btn_reg {
  background-color: #ff6c6c;
  color: #fff;
  padding: 0 16px;
  border-radius: 8px;
  width: auto;
  height: 30px;
  line-height: 29px;
}

.form_reg_replay .btn_can {
  background-color: #5e5e5e;
  color: #fff;
  padding: 0 16px;
  border-radius: 8px;
  width: auto;
  height: 30px;
  line-height: 29px;
}

.notice-dtl__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 2px solid #000;
}

.notice-dtl__header .title {
  font-family: "ScoreDream";
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.notice-dtl__header .date {
  font-family: "ScoreDream";
}

.notice-dtl__contents p {
  font-family: "ScoreDream";
}

.notice-dtl__contents .img_box {
  margin: 20px 0;
}

.notice-dtl__contents .img_box img {
  max-width: 100%;
  width: 100%;
}
.notice-dtl__contents p img {
  width: 100%;
}

.move_page {
  margin-top: 20px;
  border-top: 1px solid #a8abb1;
}

.move_page .page {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 0 15px;
  gap: 28px;
  font-size: 15px;
  font-family: "ScoreDream";
  color: #737881;
  font-weight: 400;
  border-bottom: 1px solid #a8abb1;
  position: relative;
  padding-left: 60px;
}

.move_page .page.prev::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  left: 14px;
  background: url(../img/new/icon_qna_arrow.png) no-repeat center center / contain;
}

.move_page .page.next::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
  background: url(../img/new/icon_qna_arrow.png) no-repeat center center / contain;
}

.pagination {
  margin-top: 28px;
}

.pagination  {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination li a {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  font-family: "ScoreDream";
}

.pagination li.active {
  color: #f43a3a;
  font-weight: 600;
  border-bottom: 2px solid #f43a3a;
}

/* .pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination ul li a {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  font-family: "ScoreDream";
}

.pagination ul li a.page.active {
  color: #f43a3a;
  font-weight: 600;
  border-bottom: 2px solid #f43a3a;
} */

.btn_area {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 11px;
}

.btn_area.column {
  flex-direction: column;
}

#main .contents.contents--review {
  padding-bottom: 116px;
}

.float_btn {
  position: fixed;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  left: 50%;
  bottom: 130px;
  z-index: 101;
  padding: 0 20px;
  transform: translateX(-50%);
}

.float_btn .btns {
  display: flex;
  justify-content: flex-end;
}

.float_btn .btn_reg_review {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 185px;
  height: 55px;
  border-radius: 30px;
  background-color: #ff6c6c;
}

.float_btn .btn_reg_review span {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  padding-right: 40px;
  position: relative;
}

.float_btn .btn_reg_review span::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/new/icon_pencil.png) no-repeat center / contain;
}

.qna_answer p {
  font-size: 15px;
  font-weight: 400;
  font-family: "ScoreDream";
}

@media screen and (max-width:767px) {
  .page_title h3 {
    font-size: 20px;
  }
  .contact_banner {
    height: 100px;
    padding: 0 20px;
  }
  .contact_banner::after {
    font-size: 20px;
    right: 20px;
  }
  .contact_banner .banner_txt {
    font-size: 18px;
  }
  .contact_banner .banner_txt::after {
    width: 36px;
    height: 30px;
    right: -40px;
  }
  .tbl_list {
    margin-top: 24px;
  }
  .tbl_list .tbl__head .tbl--th {
    height: 40px;
  }
  .tbl_list .tbl__body .tbl--td {
    min-height: 50px;
  }
  a.title {
    line-height: 21px;
  }
  .title.important,
  .title.notice {
    padding-left: 40px;
  }
  .title.important:before,
  .title.notice:before {
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .tbl__body .btn_open {
    width: 20px;
    height: 16px;
  }
  .tbl--tr__bottom {
    padding: 12px;
  }
  .review_content .content {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .review_content .content h4 {
    font-size: 14px;
  }
  .review_content .reply .reg_info .reg_nm {
    font-size: 14px;
  }
  .review_content .reply>p {
    font-size: 14px;
  }
  .notice-dtl__header {
    margin-bottom: 24px;
    padding-top: 16px;
    margin-top: 16px;
    border-top-width: 1px;
  }
  .notice-dtl__header .title {
    font-size: 18px;
  }
  .notice-dtl__header .date {
    font-size: 14px;
  }
  .notice-dtl__contents p {
    font-size: 14px;
  }
  .notice-dtl__contents .img_box {
    margin: 12px 0;
  }
  .move_page {
    margin-top: 16px;
  }
  .move_page .page {
    padding: 22px 0 12px;
    font-size: 14px;
    padding-left: 48px;
    gap: 16px ;
  }
  .move_page .page.prev::before {
    width: 20px;
    height: 20px;
  }
  .move_page .page.next::before {
    width: 20px;
    height: 20px;
  }
  .pagination {
    padding-top: 20px;
  }
  .pagination ul {
    gap: 16px;
  }
  .pagination ul li a {
    font-size: 16px;
  }
  .btn_area {
    margin-top: 30px;
  }
  #main .contents.contents--review {
    padding-bottom: 100px;
  }
  .float_btn {
    bottom: 88px;
    padding: 0 12px;
  }
  .float_btn .btn_reg_review {
    width: 150px;
    height: 38px;
  }
  .float_btn .btn_reg_review span {
    font-size: 20px;
    padding-right: 32px;
    line-height: 25px;
  }
  .float_btn .btn_reg_review span::after {
    width: 20px;
    height: 20px;
  }
  .qna_answer p {
    font-size: 14px;
  }
}

@media screen and (max-width:500px) {
  .contact_banner {
    height: 70px;
  }
  .contact_banner .banner_txt {
    font-size: 14px;
    margin-right: 48px;
  }
  .contact_banner .banner_txt::after {
    width: 31px;
    height: 25px;
    right: -32px;
  }
  .contact_banner::after {
    font-size: 18px;
  }
  .tbl_list .tbl__head .tbl--th {
    font-size: 12px;
  }
  .tbl_list .tbl__body .tbl--td {
    font-size: 12px;
  }
  .tbl--typeA .tbl--th:nth-child(3) {
    width: 100px
  }
  .tbl--typeA .tbl--td:nth-child(3) {
    width: 100px
  }
  .review_content .content h4 {
    font-size: 12px;
  }
  .review_content .reply .reg_info .reg_nm {
    font-size: 12px;
  }
  .review_content .reply>p {
    font-size: 12px;
  }
  .float_btn .btn_reg_review {
    width: 128px;
    height: 38px;
  }
  .float_btn .btn_reg_review span {
    font-size: 16px;
    padding-right: 28px;
  }
  .float_btn .btn_reg_review span::after {
    width: 16px;
    height: 16px;
  }
  .qna_answer p {
    font-size: 12px;
  }
}

@media screen and (max-width:387px) {
  .contact_banner .banner_txt {
    font-size: 13px;
  }
}
