@charset "utf-8";
/*한국어*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,200,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500&display=swap');
/*일본어*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&family=Noto+Serif+KR&display=swap');
/*roboto 숫자, 영문*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*반응형 사이즈*/
/*데스크탑1024이상, 태블릿1024이하, 모바일 768이하*/

/* common */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-overflow-scrolling: touch;
  -ms-content-zooming: none;
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
  font-size: 16px;
  letter-spacing: -0.02rem;
  line-height: 1;
  font-weight: normal;
  color: #222;
  word-break: keep-all;
  background-color: #fff;
  font-family: 'Roboto', 'Noto Sans KR', 'Noto Sans JP', Arial, sans-serif !important;
}

/* @media (max-width: 768px) {
  html {
    font-size: 4.27vw;
  }
} */

/*common*/
.wrap {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.wrap>header {
  display: table-row;
  height: 0;
}

.wrap>section>* {
  display: block;
}

.wrap>footer {
  display: table-row;
  height: 0;
}

.wrap>footer>* {
  display: block;
}

section {
  height: 100%;
  /* position: relative; */
}

button,
input,
textarea,
table,
select {
  font-family: 'Roboto', 'Noto Sans KR', 'Noto Sans JP', Arial, sans-serif !important;
  /* line-height: 1.3; */
}

a {
  color: #222;
}

/*scroll-hidden */
.scroll-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-hidden::-webkit-scrollbar {
  display: none;
}

/*Back to top*/
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  z-index: 96;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .15);
  -o-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .15);
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  opacity: 0;
  visibility: hidden;
  transition: background-color .3s, opacity .5s, visibility .5s;
}

#back-to-top:before {
  content: '';
  position: absolute;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/ic_arrow_top.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/*container*/
.container {
  width: 100%;
  padding: 0 0.9375rem;
  /* position: relative; */
  margin: 0 auto;
}

.container.x-lg {
  max-width: 1470px;
}

.container.lg {
  max-width: 1160px;
}

.container.x-md {
  max-width: 930px;
}

.container.md {
  max-width: 730px;
}

.container.sm {
  max-width: 430px;
}

/*input*/
input,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  font-size: 0.9375rem;
  background-color: #fff;
  padding: 0.875rem;
}

input {
  height: 2.625rem;
}

textarea {
  min-height: 2.5rem;
  display: block;
}

input:focus,
textarea:focus {
  border-color: #45499C;
  transition: all .3s;
}

input[readonly],
input[disabled] {
  color: rgb(0, 0, 0, .6);
  cursor: default;
}

input[readonly]:focus,
input[disabled]:focus {
  border-color: #ddd;
}

input[disabled] {
  background-color: rgba(0, 0, 0, .03);
  opacity: 1;
  -webkit-text-fill-color: inherit
}

.input-area>div:nth-child(n+2) {
  padding-top: 1.25rem;
}

.input-area.label-none>div:nth-child(n+2) {
  padding-top: 1rem;
}

.label-set {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.label-set>label {
  font-size: 0.9375rem;
  color: #555;
  width: 10rem;
  padding-top: 0.8125rem;
}

.label-set label span {
  color: #FF1D53;
}

.label-set .input-wrap {
  width: calc(100% - 10rem);
}

.input-set {
  width: 100%;
}

.input-info {
  font-size: 0.875rem;
  padding-top: 0.375rem;
  display: none;
  color: #666;
  line-height: 1.3;
}

.input-info.info {
  display: block;
}

.input-info.error {
  color: #FF1D53;
}

.input-info.success {
  color: #396F20;
}

.input-info.error.active,
.input-info.success.active {
  display: block;
}

.input-info.error:before,
.input-info.success:before {
  content: '';
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: -0.06rem 0.25rem 0 0;
}

.input-info.error:before {
  background-image: url("../img/ic_error.svg");
}

.input-info.success:before {
  background-image: url("../img/ic_success.svg");
}

.input-info.block {
  display: block !important;
  padding-top: 0;
}

.input-info.ic-none:before {
  display: none !important;
}

.input-area .btn-set {
  display: flex;
  align-items: center;
}

.input-area .btn-set .input-btn {
  padding-left: 0.375rem;
}

.input-area .btn-set .input-btn button {
  height: 2.625rem;
  min-width: 5.25rem;
}

.input-area .input-m-t {
  margin-top: 0.375rem;
}

.input-ic-set input {
  padding-right: 1.5rem;
}

.label-set .radiobox-label,
.checkbox-label {
  font-size: 0.9375rem;
  padding-bottom: 0;
}

.input-vaule {
  height: 2.625rem;
  display: flex;
  align-items: center;
}

/*input-file*/
.input-file {
  width: 100%;
  position: relative;
}

.input-file .input-btn {
  position: absolute;
  padding-left: 0;
  top: 0;
  right: 0;
}

.btn.ic-upload {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn.ic-upload:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/ic_upload.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-right: 0.3125rem;
  display: inline-block;
}

/*color, weight*/
.text-primary {
  color: #45499C !important;
}

.text-pink {
  color: #FF1D53 !important;
}

.text-green {
  color: #32a61d !important;
}

.text-bk {
  color: #222 !important;
}

.text-wh {
  color: #fff !important;
}

.text-normal {
  font-weight: normal !important;
}

.text-bold {
  font-weight: 700 !important;
}

/*button*/
.btn {
  border: 1px solid transparent;
  white-space: nowrap;
  /* line-height: 1; */
}

.btn-lg {
  font-size: 1rem;
  min-height: 3.5rem;
  font-weight: 500;
  padding: 0.1875rem 1.5rem;
  min-width: 12.5rem;
}

.btn-md {
  font-size: 0.9375rem;
  min-height: 2.8125rem;
  padding: 0.1875rem 1.5rem;
}

.btn-sm {
  font-size: 0.8125rem;
  min-height: 2.25rem;
  padding: 0.1875rem 0.875rem;
}

.btn-x-sm {
  font-size: 0.75rem;
  /* height: 2.25rem; */
  padding: 0.25rem 0.35rem;
}

.btn-primary {
  color: #fff;
  background-color: #45499C;
}

.btn-primary-outline {
  color: #45499C;
  border-color: #45499C;
  background-color: transparent;
}

.btn-bk {
  color: #fff;
  background-color: #333;
}

.btn-bk-outline {
  color: #222;
  border-color: #222;
  background-color: #fff;
}

.btn-pink-outline {
  color: #FF1D53;
  border-color: #FF1D53;
  background-color: #fff;
}

.btn-wh-outline {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-gray-outline {
  color: #555;
  border-color: #bbb;
  background-color: #fff;
}

.btn-gr-outline {
  color: #28A49C;
  border-color: #28A49C;
  background-color: transparent;
}

.btn-disabled {
  color: rgba(0, 0, 0, .2);
  background-color: rgba(0, 0, 0, .07);
  cursor: default;
}

.btn-area {
  width: 100%;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  margin-top: 0 !important;
}

.btn-area.btn-h {
  flex-wrap: wrap;
}

.btn-area.btn-h>*:nth-child(n+2) {
  margin-top: 0.625rem;
}

.btn.radius {
  /* border-radius: 100px; */
}

.btn-flex {
  display: flex;
}

.btn-flex>button:nth-child(n+2) {
  margin-left: 0.5rem;
}

.btn-more {
  text-decoration: underline !important;
}

.btn.ic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn.ic:before,
.btn.ic-after:after {
  content: '';
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

/*28px*/
.btn.ic-md:before {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
}

.btn.ic-sm:before {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.25rem;
}


.btn.ic-edit-wh:before {
  background-image: url("../img/ic_edit_wh.svg");
}

/*width height*/
.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100%;
}

/*checkbox, radio*/
.checkbox,
.radiobox {
  position: relative;
  margin-left: 1.375rem;
}


.radiobox-label,
.checkbox-label {
  cursor: pointer;
  color: #666;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1.3;
  padding-left: 0.5rem;
}

.radiobox input[type="radio"],
.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: auto;
  z-index: -1;
  padding: 0;
}

.radiobox input[type="radio"]+.radiobox-label:before {
  content: '';
  display: inline-block;
  top: 50%;
  left: -1.25rem;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: translateY(-50%) scale(0, 0);
  -moz-transform: translateY(-50%) scale(0, 0);
  -ms-transform: translateY(-50%) scale(0, 0);
  -o-transform: translateY(-50%) scale(0, 0);
  transform: translateY(-50%) scale(0, 0);
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  border-radius: 50%;
  margin-left: 3px;
}

.radiobox input[type="radio"]+.radiobox-label:after {
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  margin-left: -1.375rem;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
}

.radiobox input[type="radio"]:checked+.radiobox-label:before {
  background-color: #45499C;
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: translateY(-50%) scale(1, 1);
  -moz-transform: translateY(-50%) scale(1, 1);
  -ms-transform: translateY(-50%) scale(1, 1);
  -o-transform: translateY(-50%) scale(1, 1);
  transform: translateY(-50%) scale(1, 1);
}

.radiobox input[type="radio"]:checked+.radiobox-label:after {
  border-color: #45499C;
}

.checkbox input[type="checkbox"]+.checkbox-label:before {
  content: '';
  display: inline-block;
  top: 50%;
  left: -1rem;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: translateY(-50%) rotate(-45deg) scale(0, 0);
  -moz-transform: translateY(-50%)rotate(-45deg) scale(0, 0);
  -ms-transform: translateY(-50%) rotate(-45deg) scale(0, 0);
  -o-transform: translateY(-50%) rotate(-45deg) scale(0, 0);
  transform: translateY(-50%) rotate(-45deg) scale(0, 0);
  z-index: 1;
  width: 0.65rem;
  height: 0.35rem;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  border-right-style: none;
  position: absolute;
  margin-top: -0.08rem;
}

.checkbox input[type="checkbox"]+.checkbox-label:after {
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  margin-left: -1.375rem;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 2px;
}

.checkbox input[type="checkbox"]:checked+.checkbox-label:before {
  -webkit-transform: translateY(-50%) rotate(-45deg) scale(1, 1);
  -moz-transform: translateY(-50%) rotate(-45deg) scale(1, 1);
  -ms-transform: translateY(-50%) rotate(-45deg) scale(1, 1);
  -o-transform: translateY(-50%) rotate(-45deg) scale(1, 1);
  transform: translateY(-50%) rotate(-45deg) scale(1, 1);
  border-color: #fff;
}

.checkbox input[type="checkbox"]:checked+.checkbox-label:after {
  border-color: #45499C;
  background-color: #45499C;
}

input[type="radio"],
input[type="checkbox"] {
  border-bottom: 0;
}


/*radio-box*/
.radio-box .radiobox {
  margin-left: 0;
}

.radio-box .radiobox input[type="radio"]+.radiobox-label:before,
.radio-box .radiobox input[type="radio"]+.radiobox-label:after {
  display: none;
}

.radio-box .radiobox-label {
  width: 100%;
  font-size: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  padding: 0.5rem 0.75rem;
  background-color: #f1f1f1;
}

.radio-box .radiobox input[type="radio"]:checked+.radiobox-label {
  color: #fff !important;
  background-color: #45499C;
}


/*modal*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, .7);
  z-index: 99999;
  overflow: auto;
}

.layer {
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.layer .layer-content {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: 0;
  padding: 2rem 1rem;
  width: 100%;
}

.modal-inner {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  max-width: 750px;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
  z-index: 9999;
  background-image: url("../img/ic_close.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/*350px*/
.modal-sm {
  max-width: 21.875rem;
}

/*450px*/
.modal-md {
  max-width: 28.125rem;
}

/*600px*/
.modal-lg {
  max-width: 37.5rem;
}

.modal-content {
  height: 100%;
  padding: 1.875rem;
}

.modal.block {
  display: block;
}

.modal-header {
  padding-bottom: 1.25rem;

}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: 700;
  word-break: break-all;
  padding-right: 1.75rem;
}

.modal-body {
  font-size: 1rem;
  line-height: 1.4;
}

.modal-body p:nth-child(n+2) {
  padding-top: 0.625rem;
}

.modal-footer {
  padding-top: 2rem;
}


/*padding margin*/
.p-0 {
  padding: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-t-1 {
  padding-top: 1rem !important;
}

.p-t-2 {
  padding-top: 2rem !important;
}

.p-t-3 {
  padding-top: 3rem !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-1 {
  padding-bottom: 1rem !important;
}

.p-b-2 {
  padding-bottom: 2rem !important;
}

.m-t-1 {
  margin-top: 1rem !important;
}

.m-t-2 {
  margin-top: 2rem !important;
}

/*text-align*/
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/*border*/
.b-0 {
  border: 0 !important;
}

/*ui모음*/
.ui .item:nth-child(n+2) {
  padding-top: 3rem;
}

.ui .item .title {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.btn-ui>*:nth-child(n+2) {
  margin-top: .5rem;
}

.btn-ui .flex {
  display: flex;
  flex-wrap: wrap;
}

.btn-ui .flex>button:nth-child(n+2) {
  margin-left: .5rem;
}

.btn-ui .flex>button:nth-child(4) {
  margin-left: 0;
}

.btn-ui .flex>button:nth-child(n+4) {
  margin-top: .5rem;
}

/*icon*/
/*32px*/
.ic-x-lg {
  width: 2rem;
  height: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*28px*/
.ic-lg {
  width: 1.75rem;
  height: 1.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*24px*/
.ic-lg-s {
  width: 1.5rem;
  height: 1.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*22px*/
.ic-md {
  width: 1.375rem;
  height: 1.375rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*18px*/
.ic-ml {
  width: 1.125rem;
  height: 1.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*16px*/
.ic-sm {
  width: 1rem;
  height: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ic-search {
  background-image: url("../img/ic_search_wh.svg");
}

.ic-lang {
  background-image: url("../img/ic_lang_wh.svg");
}

.ic-menu {
  background-image: url("../img/ic_menu_wh.svg");
}

.ic-close-wh {
  background-image: url("../img/ic_close_wh.svg");
}

.ic-close {
  background-image: url("../img/ic_close.svg");
}

.ic-search-primary {
  background-image: url("../img/ic_search_primary.svg");
}

.ic-arrow-right-wh {
  background-image: url("../img/ic_arrow_right_wh.svg");
}

.ic-arrow-down {
  background-image: url("../img/ic_arrow_down.svg");
}

.ic-comment {
  background-image: url("../img/ic_comment.svg");
}

.ic-like {
  background-image: url("../img/ic_like.svg");
}

.ic-circle-plus {
  background-image: url("../img/ic_circle_plus.svg");
}

.ic-home {
  background-image: url("../img/ic_home.svg");
}

.ic-circle-close {
  background-image: url("../img/ic_circle_close.svg");
}

.ic-star {
  background-image: url("../img/ic_star.svg");
}

.ic-direct {
  background-image: url("../img/ic_direct.svg");
}

.ic-books {
  background-image: url("../img/ic_books.svg");
}

/*header*/
header {
  position: relative;
}

.header-wrap {
  background-color: transparent;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.header-wrap .nav {
  width: 100%;
  max-width: 1760px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 1rem;
  height: 5.25rem;
}

.header-wrap .nav>* {
  height: 100%;
}

.header-wrap .logo-wrap {
  display: flex;
  align-items: center;
}

.header-wrap .logo {
  width: 9.75rem;
  height: 1.875rem;
  background-image: url("../img/logo_wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*gnb*/
.header-wrap .gnb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.header-wrap .dropbtn {
  color: #fff;
  padding: 0 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  height: 100%;
}

.header-wrap .dropdown {
  position: relative;
  display: inline-block;
}

.header-wrap .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 10rem;
  z-index: 1;
  /* border-radius: 0.5rem; */
  -moz-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  -webkit-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  overflow: hidden;
  padding: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  /* margin-top: 1px; */
  line-height: 1.3;
}

.header-wrap .dropdown-content a {
  color: #666;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  white-space: nowrap;
}

.header-wrap .dropdown-content a:hover {
  color: #45499C;
  background-color: rgba(69, 73, 156, .05);
  transition: all .3s;
  border-radius: 0.25rem;
}

.header-wrap .dropdown:hover .dropdown-content {
  display: block;
}

/*right*/
.header-wrap .right {
  display: flex;
  align-items: center;
}

.header-wrap .right>div {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .right .login-wrap a {
  opacity: .8;
  color: #fff;
  font-size: 0.875rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.header-wrap .right .login-wrap a:hover {
  opacity: 1;
}

.header-wrap .right>div>*:nth-child(n+2) {
  margin-left: 1rem;
}

.header-wrap .right>div:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 1rem;
  background-color: rgba(255, 255, 255, .2);
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
}

.header-wrap .right .ic-wrap>* {
  height: 100%;
  display: flex;
  align-items: center;
}

/*lang*/
.header-wrap .right .ic-wrap .lang {
  position: relative;
}

/*
.dropdown-btn {
  cursor: pointer;
}

.header-wrap .right .ic-wrap .lang .dropdown-btn {
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-container {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  -moz-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  -webkit-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0 0 0 / 6%);
  box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0 0 0 / 6%);
  overflow: hidden;
  padding: 0.625rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-container a {
  color: #666;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  white-space: nowrap;
}
.dropdown-container a:hover {
  color: #45499C;
  background-color: rgba(69, 73, 156, .05);
  transition: all .3s;
  border-radius: 0.25rem;
}
*/

/*click-dropdown-wrap*/
.header-wrap .click-dropdown-wrap {
  height: 100%;
}

.header-wrap .dropdown-toggle {
  height: 100%;
  display: flex;
  align-items: center;
}

.click-dropdown-wrap {
  position: relative;
}

.click-dropdown-wrap .dropdown-toggle {
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.3s;
}

.click-dropdown-wrap .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 7.5rem;
  z-index: 1;
  -moz-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  -webkit-box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0, 0, 0, .06);
  /* overflow: hidden; */
  padding: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

.click-dropdown-wrap .dropdown-menu a {
  color: #666;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  white-space: nowrap;
}

.click-dropdown-wrap .dropdown-menu a:hover {
  color: #45499C;
  background-color: rgba(69, 73, 156, .05);
  transition: all .3s;
  border-radius: 0.25rem;
}

.dropdown-menu,
.dropdown-toggle {
  position: relative;
}

.dropdown-menu {
  z-index: 10;
  position: relative;
}

.dropdown-open .dropdown-menu.dropdown-active {
  display: block;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  border: 5px solid;
  margin-top: -2.5px;
  background-color: rgba(0, 0, 0, 0);
  transition: all ease-in-out 0.2s;
  z-index: -1;
  transform: rotate(-135deg);
  top: -2px;
  border-color: #ffffff;
  box-shadow: 0 0.625rem 3.125rem 0.3125rem rgb(0 0 0 / 6%);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}


/*pc-user*/
.pc-user {
  position: relative;
}

.pc-user .user-wrap {
  display: flex;
  align-items: center;
  max-width: 7.5rem;
  min-width: 5.4rem;
}

.pc-user .user-info {
  width: auto;
  padding-right: 0;
}

.header-wrap .right>.pc-user>*:nth-child(n+2) {
  margin-left: 0;
}

.pc-user .profile {
  width: 2rem;
  height: 2rem;
}

.pc-user .profile:before {
  width: 1.15rem;
  height: 1.15rem;
}

.pc-user .user-info {
  color: #fff;
  width: calc(100% - 2.5rem);
}

.pc-user .user-info .name {
  font-size: 0.875rem;
  padding-left: 0.5rem;
}

.pc-user .info-wrap {
  padding: .5rem 1rem;
  white-space: nowrap;
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  color: #fff;
  margin-bottom: 0.5rem;
}

/*header-wrap show*/
.header-wrap.show,
.sub-header {
  background-color: #fff;
  border-color: #eee;
  transition: all .3s;
}

.header-wrap.show .logo,
.sub-header .logo {
  background-image: url(../img/logo.svg);
  /* transition: all .3s; */
}

.header-wrap.show .dropbtn,
.sub-header .dropbtn {
  color: #222;
  /* transition: all .3s; */
}

.header-wrap.show .dropbtn:hover,
.sub-header .dropbtn:hover {
  color: #45499C;
  transition: all .3s;
}

.header-wrap.show .right .login-wrap a,
.sub-header .right .login-wrap a {
  color: #222;
  transition: all .3s;
}

.header-wrap.show .ic-search,
.sub-header .ic-search {
  background-image: url("../img/ic_search.svg");
  transition: all .3s;
}

.header-wrap.show .ic-lang,
.sub-header .ic-lang {
  background-image: url("../img/ic_lang.svg");
  transition: all .3s;
}

.header-wrap.show .ic-menu,
.sub-header .ic-menu {
  background-image: url("../img/ic_menu.svg");
  transition: all .3s;
}

.header-wrap.show .right>div:nth-child(n+2):before,
.sub-header .right>div:nth-child(n+2):before {
  background-color: rgba(0, 0, 0, .2);
}

.header-wrap.show .pc-user .user-info,
.sub-header .pc-user .user-info {
  color: #222;
}

.header-wrap .dropbtn.active {
  color: #45499C;
}

/*header-search*/
.header-search {
  position: relative;
}

.header-search .search-box {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  z-index: 98;
  overflow: hidden;
  /* transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1), width 800ms cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform, height, width; */
  /* backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.55); */
  background-color: #fff;
  width: 100%;
  height: 50%;
  transition: .3s cubic-bezier(0.6, 0, 1, 0.3);
  transition: all .3s;
}

.header-search .search-box.show {
  top: 0;
}

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 97;
  background-color: rgba(0, 0, 0, 0.7);
}

.search-close-wrap {
  position: absolute;
  width: 100%;
  max-width: 1760px;
  display: flex;
  align-items: center;
  padding: 0 3.75rem 0 1rem;
  height: 5.25rem;
  top: 0;
  justify-content: flex-end;
  left: 50%;
  transform: translateX(-50%);
}

.header-search .search-inner {
  width: 100%;
  max-width: 800px;
  padding: 0 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

.header-search form {
  width: 100%;
}

.header-search form>div:nth-child(n+2) {
  padding-top: 2rem;
}

.search-type .radio-box {
  display: flex;
  flex-wrap: wrap;
}

.search-type .radio-box>div {
  margin: 0.2rem;
}

.header-search .search-input {
  position: relative;
}

.header-search input {
  padding: 0.625rem 2.75rem 0.625rem 1rem;
  border: 5px solid transparent;
  border-image: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  border-image-slice: 1;
  width: 100%;
  height: auto;
  font-size: 1.875rem;
  color: #45499C;
  font-weight: 300;
}

.header-search input:focus {
  border-color: #45499C;
}

.header-search .search-input button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.header-search .search-box .search-inner input::placeholder {
  color: #45499C !important;
}

.header-search .search-box .search-inner input:-ms-input-placeholder {
  color: #45499C !important;
}

.header-search .search-box .search-inner input::-ms-input-placeholder {
  color: #45499C !important;
}

/*m-menu-content*/
.m-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 98;
  overflow: hidden;
  background-color: #fff;
  width: 25rem;
  height: 100%;
  transition: .3s cubic-bezier(0.6, 0, 1, 0.3);
  transition: all .3s;
}

.m-menu-content.show {
  right: 0;
}

/*m-header*/
.m-header {
  width: 100%;
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  position: relative;
  height: 9.75rem;
}

.m-menu-close-wrap {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 99;
}

/*m-lang*/
.m-lang {
  display: flex;
  align-items: center;
}

.m-lang .radio-box .radiobox-label {
  font-size: 0.75rem;
  border-radius: 0;
  background-color: transparent;
  color: rgba(255, 255, 255, .5);
  padding: 0;
}

.m-lang>div {
  display: flex;
  align-items: center;
}

.m-lang>div:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: .5rem;
  background-color: rgba(255, 255, 255, .15);
  vertical-align: middle;
  margin: .05rem .5rem 0;
}

/*m-login*/
.m-login {
  padding-top: 1.5rem;
}

.m-login a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.m-login>*:nth-child(n+2) {
  padding-top: 1.25rem;
}

/*m-body*/
.m-body {
  height: calc(100% - 9.75rem);
  overflow-y: auto;
  padding: 1rem 1rem 2rem;
}

/*m-menu-list*/
.m-menu-list .item {
  border-bottom: 1px solid #eee;
}

.m-menu-list .accordion {
  transition: 0.4s;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  width: 100%;
  padding: 1.25rem 0;
}

.m-menu-list .accordion {
  position: relative;
}

.m-menu-list .accordion.active {
  color: #45499C;
}

.m-menu-list .accordion:after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/ic_arrow_down.svg);
  opacity: .5;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.m-menu-list .accordion.active:after {
  transform: rotate(180deg);
  margin-top: -0.5rem
}

.m-menu-list .panel {
  display: none;
  overflow: hidden;
  padding-bottom: 1rem;
}

.m-menu-list .panel a {
  display: block;
  padding: 0.5rem 0;
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.3;
}

/*opacity*/
.opa-50 {
  opacity: .5;
}

/*m-user*/
.m-user {
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  color: #fff;
}

.profile {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid #fff;
  background-color: #f5f5f5;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile:before {
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../img/ic_user.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}

.m-user .profile:before {
  width: 1.75rem;
  height: 1.75rem;
}

.profile img {
  width: 100%;
}

.user-info {
  width: calc(100% - 3.125rem);
  padding-right: 1rem;
}

.user-info>div {
  display: flex;
  align-items: center;
}

.user-info>div:nth-child(n+2) {
  padding: 0.5rem 0 0.05rem;
}

.user-info ul {
  width: 100%;
}

.user-info .name {
  font-size: 1.25rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-wrap ul {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}

.info-wrap li {
  display: flex;
  align-items: center;
}

.info-wrap li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, .15);
  vertical-align: middle;
  margin: 0.05rem 0.5rem 0;
}

.m-menu .user-btn .btn-x-sm {
  width: 4.25rem;
}

.m-menu .user-btn .btn-wh-outline {
  border-color: rgba(255, 255, 255, .3);
}

.m-menu .btn-flex>button:nth-child(n+2) {
  margin-left: 0.25rem;
}

/*swiper*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}

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

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 3.125rem !important;
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #fff) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #888 !important;
}

/*swiper 버튼 변경*/
.swiper-button-next,
.swiper-button-prev {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background-color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transform: translateY(-50%);
  margin-top: .5rem !important;
}

.swiper-button-next {
  background: url(../img/ic_swiper_next.svg) no-repeat;
  background-size: cover;
  background-position: center;
  right: -0.75rem !important;
}

.swiper-button-prev {
  background: url(../img/ic_swiper_prev.svg) no-repeat;
  left: -0.75rem !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}


/*main-press*/
.main-press .swiper-button-prev,
.main-press .swiper-button-next {
  margin-top: -.75rem !important;
}



/*visaul effect*/
@keyframes visual_ac {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes visual_ac {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slogon_ac {
  0% {
    opacity: 0;
    -webkit-opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes slogon_ac {
  0% {
    opacity: 0;
    -webkit-opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-opacity: 1;
    transform: translateY(0px);
  }
}

/*main-visual*/
.main-visual {
  width: 100%;
  height: 37.5rem;
}

.main-visual .swiper-slide {
  background-color: #eee;
}

.main-visual .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.main-visual .swiper-slide-active .img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 100%;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  -webkit-animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-name: visual_ac;
  -webkit-animation-name: visual_ac;
}

/*main title*/
.main-visual .title {
  position: absolute;
  z-index: 1;
}

.main-visual .swiper-slide-active .title .title-wrap {
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  color: #fff;
  font-family: 'Noto Serif KR', 'Noto Serif JP', Arial, sans-serif !important;
  font-size: 2.5rem;
}

@keyframes scale {
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.main-visual .title .title-wrap li {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  line-height: 1.7;
}

.main-visual .swiper-slide-active .title .title-wrap ul:nth-child(1) li:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-visual .swiper-slide-active .title .title-wrap ul:nth-child(1) li:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-visual .swiper-slide-active .title .title-wrap ul:nth-child(2) li:nth-child(1) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-visual .swiper-slide-active .title .title-wrap ul:nth-child(2) li:nth-child(2) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

/*footer*/
footer {
  background-color: #3C3C3C;
  color: #fff;
}

footer a {
  color: #fff;
}

.footer-wrap {
  padding: 3.75rem 0;
  line-height: 1.3;
}

.footer-wrap>div:nth-child(n+2) {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

footer .menu {
  display: flex;
  flex-wrap: wrap;
}

footer .menu>div {
  width: 16.666666%;
}

footer .menu .title {
  font-weight: 500;
}

footer .menu .sub {
  padding-top: 0.75rem;
}

footer .menu .sub a {
  font-size: 0.875rem;
  opacity: .5;
  padding: 0.25rem 0;
  display: block;
}

footer .info {
  display: flex;
  flex-wrap: wrap;
}

footer .info>div {
  width: 50%;
}

footer .info>div:nth-child(2) {
  padding-left: 3.75rem;
}

footer .logo {
  width: 9.75rem;
  height: 1.875rem;
  background-image: url(../img/logo_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

footer .copylight {
  font-size: 0.75rem;
  opacity: .5;
  padding-top: 1rem;
}

footer .copylight ul {
  display: flex;
  flex-wrap: wrap;
}

footer .copylight ul li {
  padding-right: 1rem;
  line-height: 1.8;
}

footer .copylight ul li:last-child {
  padding-right: 0;
}

footer .copylight ul:last-child {
  padding-top: 0.75rem;
}

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

footer .customer .title {
  font-weight: 500;
}

footer .customer .tel {
  font-size: 1.875rem;
  padding: 0.75rem 0 0.5rem;
  line-height: 1;
}

footer .customer .time {
  font-size: 0.875rem;
  opacity: .5;
  line-height: 1.5;
}

/*section*/
.section {
  padding: 5rem 0;
}

.section .h1 {
  font-size: 2rem;
  padding-bottom: 1rem;
  font-weight: 700;
}

.section.sub {
  padding: 11.5rem 0 5rem;
}

.section.sub .h1 {
  padding-bottom: 0;
}

.section.sub .h2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.section.sub .container>*:nth-child(n+2) {
  margin-top: 1.875rem;
}

/*tabs*/

.tabs {
  position: relative;
}

.tabs-nav {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-nav ul {
  display: flex;
  white-space: nowrap;
}

.tabs-nav a {
  display: block;
  border: none;
}

.tabs-content .tabs-panel {
  position: relative;
  display: none;
}

.tabs-content .tabs-panel.active {
  display: block;
}

.style-line .tabs-nav.h-fixed a {
  padding: 0.75rem 0 0.75rem;
}

/*style-line*/
.style-line .tabs-nav li {
  position: relative;
}

.style-line .tabs-nav li:after {
  content: '';
  background: #45499C;
  width: 0;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: .1s;
  /*margin-bottom: -1px;*/
}

.style-line .tabs-nav li.active:after {
  width: calc(100% - 0px);
  transition: .3s;
}

.style-line .tabs-nav li+li {
  margin-left: 2rem;
}

.style-line .tabs-nav a {
  font-size: 1.125rem;
  color: #aaa;
  font-weight: 500;
  padding: 0.75rem 0;
  /* height: 1.8rem; */
  vertical-align: middle;
  display: flex;
}

.style-line .tabs-nav .active a {
  color: #45499C;
}

.style-line .tabs-nav {
  border-bottom: 1px solid #ddd;
}

/*img-item*/
.flex-w {
  display: flex;
}

.flex-h {
  display: flex;
  flex-direction: column;
}

.flex-start {
  justify-content: left !important;
}

.flex-between {
  justify-content: space-between !important;
}

.img-item .item {
  overflow: hidden;
  width: 100%;
}

.img-item a {
  position: relative;
}

.img-item .badge {
  position: absolute;
  top: 0;
  /* left: 0; */
  z-index: 1;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  background: #45499C;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-item .img {
  width: 100%;
  padding-top: 140.6%;
  overflow: hidden;
  position: relative;
  background-color: #F5F5F5;
  background-image: url("../img/img_no.svg");
  background-position: center;
  /* background-size: contain; */
  background-size: 50%;
  background-repeat: no-repeat;
}

.img-item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .35s;
  -o-transition: .35s;
  -moz-transition: .35s;
  -webkit-transition: .35s;
}

.img-item .content {
  padding-top: 1rem;
}

.img-item.flex-w .title {
  width: 100%;
}

.img-item .title-wrap ul {
  display: flex;
  align-items: center;
}

.img-item .from {
  font-size: 0.9375rem;
  color: #45499C;
  padding-right: 0.3125rem;
}

.img-item .title {
  font-size: 1.125rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.img-item .info {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  padding-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2rem;
}

.img-item .state-date {
  padding-top: 0.75rem;
}

.img-item .date {
  padding-top: 0.375rem;
}

.img-item .date ul {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #888;
}

.img-item .date li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

/*state-date*/
.state-date {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}

.state-date ul {
  display: flex;
  align-items: center;
  min-width: 3.125rem;
}

.state-date ul:nth-child(n+2) {
  margin-left: 1rem;
}

.state-date ul li:nth-child(2) {
  padding-left: 0.25rem;
  padding-top: 0.1875rem;
}

/*main-forecast*/
.main-forecast {
  padding: 2rem 0 1rem;
}

.main-forecast>.item:nth-child(n+2) {
  margin-left: 3.4%;
}

/*main-board*/
.main-board {
  background-color: #FAFAFA;
}

.main-board .board-wrap {
  display: flex;
  flex-wrap: wrap;
}

.main-board .board-wrap>div {
  width: 50%;
}

.main-board .board-wrap>div:nth-child(n+2) {
  padding-left: 5rem;
}

.main-board .board-wrap .title-wrap {
  width: 100%;
  position: relative;
}

.main-board .board-wrap .title-wrap button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-board .list {
  padding-top: 1rem;
  line-height: 1.3;
}

.main-board .list a ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.main-board .list .title {
  list-style-position: inside;
  text-indent: -0.75rem;
  padding-left: 0.75rem;
  width: calc(100% - 5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-board .list .title:before {
  content: '';
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  background: rgba(0, 0, 0, .3);
  vertical-align: middle;
  margin-right: 0.5rem;
  border-radius: 50%;
}

.main-board .list .date {
  font-size: 0.875rem;
  color: #888;
  width: 5rem;
  text-align: right;
}

/*main-quick*/
.main-quick {
  display: flex;
}

.main-quick .item {
  width: 33.333333%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 13.889%;
}

.main-quick .item:nth-child(n+2) {
  margin-left: 3%;
}

.main-quick .item.cineditor {
  background-image: url("../img/img_quick_cineditor.jpg");
}

.main-quick .item.anticipation {
  background-image: url("../img/img_quick_anticipation.jpg");
}

.main-quick .item.academy {
  background-image: url("../img/img_quick_academy.jpg");
}

.main-quick .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.main-quick .title-wrap {
  padding-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.main-quick .title-wrap .title {
  font-size: 1.25rem;
  font-weight: 500;
}

.main-quick .title-wrap li:nth-child(n+2) {
  padding-top: 0.375rem;
}

/*main-press*/
.main-press {
  padding-top: 1rem !important;
}

.main-press.img-item .img {
  padding-top: 150%;
}

/* s
/*togo-banner*/
.togo-banner {
  margin-top: 5rem;
  position: relative;
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  width: 100%;
  padding: 2rem 1rem;
  overflow: hidden;
}

.togo-banner .content {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.375rem;
}

.togo-banner button {
  margin-left: 1rem;
}

.togo-banner:before,
.togo-banner:after {
  content: '';
  width: 21.438rem;
  height: 16.563rem;
  display: block;
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  mix-blend-mode: color-dodge;
}

.togo-banner:before {
  background-image: url("../img/ic_banner_simbol_left.svg");
  left: 0;
  top: -30%;
}

.togo-banner:after {
  background-image: url("../img/ic_banner_simbol_right.svg");
  right: 0;
  bottom: -30%;
}

/*sub-title-wrap*/
.sub-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sub-title-wrap.text-center {
  justify-content: center;
}

/*bread*/
.bread ul {
  display: flex;
  align-items: center;
}

.bread li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #666;
  font-family: 'Noto Sans KR', 'Noto Sans JP', Arial, sans-serif !important;
}

.bread li a {
  color: #666;
}

.bread li:last-child {
  color: #222;
}

.bread li:after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/ic_bread.svg");
  display: inline-block;
  margin: 0 0.1875rem;
}

.bread li:last-child:after {
  display: none;
}

/*page-search*/
.page-search {
  display: flex;
  width: 100%;
}

.page-search .select-datepicker {
  display: flex;
}

.page-search .select-datepicker>div,
.page-search .search-input {
  margin: 0 0.3125rem;
}

.page-search .select-datepicker>div:first-child {
  margin-left: 0;
}

/*pages-search search-input*/

.page-search .search-input {
  position: relative;
  width: 100%;
  margin-right: 0;
}

.page-search .search-input input {
  padding-right: 3rem;
}

.page-search .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.625rem;
  height: 2.625rem;
  background: #45499C;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*v-right page-search 오른쪽에 검색있을 경우*/
.v-right .page-search {
  padding: 0;
  background: #fff;
}

.v-right .page-search {
  padding: 0;
  background: #fff;
}

.v-right .page-search .search-input {
  margin: 0;
}

/*select*/
.custom-select {
  position: relative;
  height: 2.625rem;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #fff;
}

.select-selected:after {
  content: "";
  position: absolute;
  background-image: url("../img/ic_select_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;

}

.select-selected.select-arrow-active:after {
  top: 20%;
  transform: rotate(180deg) translateY(-50%);

}

.select-selected {
  color: #222;
  padding: 0.7rem 2rem 0.7rem 0.875rem;
  border: 1px solid transparent;
  border-color: #ddd;
  cursor: pointer;
  user-select: none;
  max-height: 5rem;
  /* display:flex;
  align-items: center; */
  position: relative;
  min-width: 10rem;
  height: 2.625rem;
  font-size: 0.9375rem;
  line-height: 1.3;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.select-items div {
  color: #666;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 1.4;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 0.3125rem 0;
  max-height: 20rem;
  overflow: auto;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  color: #45499C !important;
  background-color: rgba(69, 73, 156, .05);
  transition: all .3s;
}

/*datepicker-wrap*/
.datepicker-wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.datepicker-wrap .from {
  padding: 0 .5rem;
}

.datepiker-set {
  display: flex;
  align-items: center;
}

.datepicker-input {
  width: 10rem;
  position: relative;
}

.datepicker-input input {
  cursor: pointer;
  background-image: url("../img/ic_calendar.svg");
  background-position-x: calc(100% - 0.5rem);
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}

.datepicker-input .ui-datepicker-trigger {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.datepicker-wrap .btn-search {
  position: relative;
}

.datepicker-input input[readonly],
input[disabled] {
  color: #222;
}

/*datepicker*/
.ui-datepicker-trigger,
.hasDatepicker,
.hasMonthpicker {
  cursor: pointer;
}

.ui-widget {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif !important;
}

.datepicker input {
  border: 0;
  font-size: 1.125rem;
  text-align: center;
  margin-top: -0.2rem;
  width: auto !important;
  height: auto;
  color: #222 !important;
  cursor: pointer !important;
}

.ui-datepicker {
  -webkit-box-shadow: 0 0.1rem 1.333rem 1px rgb(0, 0, 0, .08);
  box-shadow: 0 0.1rem 1.333rem 1px rgb(0, 0, 0, .08);
  padding: 1.5rem 1rem 1rem !important;
}

.ui-widget.ui-widget-content {
  border: 0 !important;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0 !important;
}

.ui-widget-header {
  border: 0 !important;
  background: #fff !important;
  color: rgba(0, 0, 0, 1) !important;
  font-weight: 700 !important;
}

.ui-datepicker table {
  margin: 0 !important;
  font-size: 0.875rem !important;
}

.ui-widget-content {
  color: rgba(0, 0, 0, 1) !important;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  padding: 0 !important;
}

.ui-datepicker th {
  padding: 0 0.3em !important;
  font-weight: normal !important;
}

.ui-datepicker td {
  background: #fff !important;
  position: relative;
  padding: 0 !important;
  padding-bottom: 14.28% !important;
}

.ui-datepicker-calendar th:first-child,
.ui-datepicker-calendar td:first-child a {
  color: #ff3434 !important;
}

.ui-datepicker-calendar th:last-child,
.ui-datepicker-calendar td:last-child a {
  color: #0152cc !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0 !important;
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0 !important;
  text-align: center !important;
}

.ui-datepicker-next .ui-icon {
  background-image: url(../img/ic_arrow_right.svg) !important;
  background-position: center;
  width: 1.75rem;
  height: 1.75rem;
  background-size: contain;
}

.ui-datepicker-prev .ui-icon {
  background-image: url(../img/ic_arrow_left.svg) !important;
  background-position: center;
  width: 1.75rem;
  height: 1.75rem;
  background-size: contain;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  /* border: 0 !important; */
  background: #fff !important;
}

.ui-state-hover,
.ui-button:hover,
.ui-button:focus {
  border: 0 !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 0 !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 0 !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0 !important;
}

.ui-datepicker .ui-datepicker-title {
  padding-bottom: 0.75rem;
}

body .ui-state-default,
body .ui-widget-content .ui-state-default,
body .ui-widget-header .ui-state-default,
.ui-button,
html body .ui-button.ui-state-disabled:hover,
html body .ui-button.ui-state-disabled:active {
  border: 0;
  background: transparent;
  font-weight: normal;
  color: #454545;
}

body .ui-state-default.ui-state-highlight,
body .ui-state-default.ui-state-highlight.ui-state-hover {
  background: rgba(69, 73, 156, .08) !important;
  border-radius: 50%;
}

body .ui-state-default.ui-state-active,
body .ui-state-default.ui-state-active.ui-state-hover,
body .ui-datepicker-calendar td:last-child a.ui-state-default.ui-state-active,
body .ui-datepicker-calendar td:last-child a.ui-state-default.ui-state-active.ui-state-hover,
body .ui-datepicker-calendar td:first-child a.ui-state-default.ui-state-active,
body .ui-datepicker-calendar td:first-child a.ui-state-default.ui-state-active.ui-state-hover {
  background-color: #45499C !important;
  color: #fff !important;
  border-radius: 50%;
}

/*sub-board*/
.sub-board>.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #222;
  padding-bottom: 0.9375rem;
}

.sub-board>.title-wrap>.title {
  font-size: 1.25rem;
  line-height: 1.3;
}

.sub-board>.title-wrap>.title>.date {
  color: #888;
  font-size: 0.875rem;
  display: inline-block;
}

.sub-board>.title-wrap>.title>.text-bold.text-primary {
  padding-left: 0.3125rem;
}


/*fillter*/
.fillter .radio-box {
  display: flex;
  align-items: center;
}

.fillter .radio-box .radiobox-label {
  color: #aaa;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
}

.fillter .radio-box .radiobox input[type="radio"]:checked+.radiobox-label {
  color: #222 !important;
  background-color: transparent;
}

.fillter .radio-box .radiobox {
  display: flex;
  align-items: center;
}

.fillter .radio-box .radiobox:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

/*fillter select*/
.fillter .custom-select {
  height: auto;
}

.fillter .select-selected {
  color: #222;
  padding: 0;
  border: 0;
  border-color: transparent;
  cursor: pointer;
  min-width: 4.5rem;
  height: auto;
  font-size: 0.875rem;
  justify-content: space-between;
}

.fillter .select-selected:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  display: inline-block;
  right: 0;
  top: auto;
  transform: inherit;
}

.fillter .select-selected.select-arrow-active:after {
  top: auto;
  transform: rotate(180deg);
  margin-top: 0.15rem;
}

.fillter .select-items {
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  border: 1px solid #ddd !important;
  padding: 0.3125rem 0;
  margin-top: 0.5rem;
}

.fillter .select-items div {
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
}

/*sub-board list*/

.sub-board .list a {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  position: relative;
}

.sub-board .list .img {
  width: 7.1875rem;
  height: 4rem;
  overflow: hidden;
  position: relative;
  background-color: #F5F5F5;
  background-image: url("../img/img_no.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sub-board .list .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sub-board .list .content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sub-board>.title-wrap>*:nth-child(n+2) {
  padding-top: 0.5rem;
}

.sub-board>.title-wrap {
  width: 100%;
}

.sub-board .list .content-wrap>.title-wrap>*:nth-child(n+2) {
  padding-top: 0.5rem;
}

.sub-board .list .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-board .list .date ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.3;
  font-size: 0.8125rem;
  color: #888;
}

.sub-board .list .date ul li {
  display: flex;
  align-items: center;
}

.sub-board .list .date li:before {
  content: '';
  width: 1px;
  height: 0.6rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0 0.5rem 0;
  display: inline-block;
}

.sub-board .list .date li:first-child:before {
  display: none;
}

.sub-board .list .date li.text-primary {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40%;
  display: block;
}

.sub-board .btn-area {
  padding-top: 3rem;
}

/*img-set*/
.sub-board .list .img-set .content-wrap {
  width: calc(100% - 7.1875rem);
  padding-left: 1rem;
}

/*state-date-set*/
.sub-board .list .content-wrap.state-date-set .title-wrap {
  width: calc(100% - 9.375rem);
  padding-right: 1rem;
}

/*search-result*/
.sub-board .list.search-result .info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
  color: #666;
}

/*login*/
.login .input-area>div:nth-child(n+2) {
  padding-top: 0.625rem;
}

.login-bottom {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pw-find a {
  color: #666;
  font-size: 0.875rem;
}

.pw-find a:hover {
  text-decoration: underline !important;
}

/*social-login*/
.social-btn-wrap {
  padding-top: 3rem;
}

.social-btn-wrap .title {
  position: relative;
}

.social-btn-wrap .title span {
  font-size: 0.875rem;
  color: #888;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  padding: 0 0.46875rem;
  white-space: nowrap;
  background-color: #fff;
}

.social-btn-wrap .title:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, .08);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

.social-btn button {
  width: 2.8125rem;
  height: 2.8125rem;
  border: 1px solid #eee;
  border-radius: 50%;
  position: relative;
}

.social-ic {
  width: 1.25rem;
  height: 1.25rem;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.social-btn>div:nth-child(n+2) {
  margin-left: 0.9375rem;
}

.social-ic.kakao {
  background-image: url(../img/ic_kakao.svg);
}

.social-ic.naver {
  background-image: url(../img/ic_naver.svg);
}

.social-ic.facebook {
  background-image: url(../img/ic_facebook.svg);
}

.social-ic.twitter {
  background-image: url(../img/ic_twitter.svg);
}

.social-ic.google {
  background-image: url(../img/ic_google.svg);
}

.social-ic.copy {
  background-image: url(../img/ic_copy.svg);
}

/*join-memeber*/
.join-memeber {
  display: flex;
}

.join-memeber .item {
  width: 100%;
  padding: 3.75rem 1.875rem;
  border: 1px solid #eee;
  text-align: center;
  position: relative;

}

.join-memeber .item:nth-child(n+2) {
  margin-left: 1.875rem;
}

.join-memeber .item .img img {
  margin: 0 auto;
}

.join-memeber .item .title-wrap {
  padding-top: 1.25rem;
}

.join-memeber .item .title-wrap .title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.join-memeber .item .title-wrap .info {
  font-size: 0.9375rem;
  color: #666;
  padding-top: 0.75rem;
  line-height: 1.8;
}

/*join-step*/
.join-step .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.join-step .content:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  border: 1px dashed #ddd;
  z-index: -1;
}

.join-step .step {
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #f5f5f5;
  padding: 1.375rem;
  min-width: 11.25rem;
  line-height: 1;
  position: relative;
}


.join-step .step:last-child:after {
  display: none;
}

.join-step .step span {
  padding-left: 0.5rem;
}

.join-step .step.active {
  color: #fff;
  background-color: #45499C;
}

/*join-wrap*/
.join-wrap {
  margin-top: 3.125rem !important;
}

/*agree*/

.agree .item .title {
  font-size: 1.25rem;
  font-weight: 700;
}

.agree .item:nth-child(n+2) {
  padding-top: 3.125rem;
}

.agree .agree-check {
  padding-top: 1.25rem;
}

.agree-check.center {
  display: flex;
  justify-content: center;
}

.agree-check .radiobox-label,
.agree-check .checkbox-label {
  font-size: 0.9375rem;
}

.agree-check.center.checkbox-circle .checkbox input[type="checkbox"]+.checkbox-label:before {
  left: -1.57rem;
}

/*article*/
.article {
  padding: 1.25rem;
  border: 1px solid #eee;
  max-height: 12.5rem;
  overflow-y: auto;
}

.article>div:nth-child(n+2) {
  padding-top: 0.9375rem;
}

.article-h1 {
  font-size: 1rem;
  font-weight: 700;
}

.article-h2 {
  font-size: 0.875rem;
  padding-top: 0.9375rem;
  line-height: 160%; /* 2023-11-16 김남우 추가 */
}

.article-p {
  font-size: 0.75rem;
  padding-top: 0.375rem;
  line-height: 1.6;
  color: #666;
}

.article-p li:nth-child(n+2) {
  padding-top: 0.375rem;
}

/*box*/
.box {
  border: 1px solid #eee;
  width: 100%;
  padding: 2rem;
}

.agree.p-t-0 {
  padding-top: 0 !important;
}

/*edit-box*/
.edit-box {
  padding: 1.125rem 0;
}

.input-wrap.input-another {
  min-height: 2.8125rem;
  padding-top: 0.8125rem;
}

.input-wrap.input-another .flex-w>div {
  padding-right: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.input-wrap.input-another .flex-w {
  flex-wrap: wrap;
}

.input-wrap.input-another {
  padding-top: 0.15rem;
}


/*file-list*/
.file-list {
  padding-top: 1rem;
}

.file-list .content {
  position: relative;
}

.file-list .content button {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
}

/*profile-edit*/
.profile-edit {
  display: flex;
}

.avatar-upload {
  position: relative;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: -0.5rem;
  z-index: 1;
  bottom: 0;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0.1rem 0.5rem 0 rgb(0, 0, 0, .13);
  box-shadow: 0 0.1rem 0.5rem 0 rgb(0, 0, 0, .13);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.avatar-upload .avatar-edit input+label:after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("../img/ic_camera.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: auto;
}

.avatar-upload .avatar-preview {
  width: 5rem;
  height: 5rem;
  position: relative;
  border-radius: 100%;
  background-color: #f5f5f5;
  background-image: url("../img/ic_user.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.5rem 2.5rem;
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*content-box*/
.content-box .box-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #eee;
}

.content-box .box-wrap.only {
  padding: 1.875rem 1.875rem 3.75rem 1.875rem;
}

.content-box .view-wrap {
  width: 100%;

}

.content-box .v-left {
  width: calc(100% - 18.75rem);
  padding: 1.875rem 1.875rem 3.75rem 1.875rem;
  border-right: 1px solid #eee;
}

.content-box .v-right {
  width: 18.75rem;
  padding: 1.875rem 1.25rem;
}

/*.v-left*/
.v-left .tabs-panel>*:nth-child(1) {
  margin-top: 1.25rem;
}

.v-left .tabs-panel>*:nth-child(n+2) {
  margin-top: 1.875rem;
}

/*pagenateion*/
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.875rem;
}

.pagenation a:nth-child(n+2) {
  margin-left: 0.3125rem;
}

.pagenation a {
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  color: #888;
  border-radius: 50px;
  border: 1px solid transparent;
  padding: 0.66rem;
}

.pagenation a.active {
  color: #45499C;
  border-color: #45499C;
}

.pagenation .ic {
  width: 1.875rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenation .ic:before {
  content: '';
  width: 1.875rem;
  height: 1.875rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}

.pagenation .ic.double-prev:before {
  background-image: url("../img/ic_page_left_double.svg");
}

.pagenation .ic.prev:before {
  background-image: url("../img/ic_page_left.svg");
}

.pagenation .ic.next:before {
  background-image: url("../img/ic_page_right.svg");
}

.pagenation .ic.double-next:before {
  background-image: url("../img/ic_page_right_double.svg");
}

/*num-set*/
.sub-board .list.num-set .num {
  width: 2.5rem;
  color: #666;
  word-break: break-all;
}

.sub-board .list.num-set .content-wrap {
  width: calc(100% - 2.5rem);
  padding-left: 0.5rem;
  position: relative;
}

/* .sub-board .list.num-set .content-wrap .title-wrap {
  width: 100%;
} */

/*badge-set*/
.sub-board .list .content-wrap.badge-set .title-wrap {
  width: calc(100% - 3.75rem);
}


/*v-right list img-set*/
.v-right>div {
  padding-bottom: 1.875rem;
}

.v-right>div:nth-child(n+2) {
  padding-top: 1.875rem;
  border-top: 1px solid #eee;
}


.v-right>.content>.title {
  font-weight: 500;
  padding-bottom: 1rem;
}

.v-right .img-item .item a {
  display: flex;
}

.v-right .img-item .img {
  width: 4.375rem;
  height: 6.1875rem;
  padding-top: 0;
  overflow: hidden;
  position: relative;
}

.v-right .img-item .content {
  width: calc(100% - 4.375rem);
  padding-left: 1rem;
  padding-top: 0;
}

.v-right .img-item .from {
  font-size: 0.8125rem;
}

.v-right .img-item .title {
  font-size: 1rem;
}

.v-right .img-item .info {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-top: 0.1875rem;
  height: 2.7rem;
}

.v-right .img-item>div:nth-child(n+2) {
  padding-top: 0.75rem;
}

/*interest-list*/
.interest-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.interest-list a:first-child {
  padding-top: 0;
}


.interest-list .title {
  font-size: 0.875rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 1rem;
}

/*topic-eidt*/
.topic-eidt .input-area>div:nth-child(n+2) {
  padding-top: 0.625rem;
}

.topic-eidt .agree {
  padding-top: 0.625rem;
}

.topic-eidt textarea {
  height: 18.75rem;
}

/*view-wrap*/
/*post-navi*/
.post-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-navi>div {
  display: flex;
  align-items: center;
}

.post-navi>div>*:nth-child(n+2) {
  margin-left: 0.375rem;
}

.post-navi .btn {
  font-size: 0.875rem;
  padding: 0.5rem .875rem;
  color: #222;
  border-color: #ddd;
  background-image: none;
}

.post-navi .btn .text-primary {
  padding-left: 0.1875rem;
  padding-top: 0.125rem;
  font-weight: 700;
}

.post-navi .ic:before {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}

.post-navi .ic-after:after {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
  margin-right: 0;
}

.post-navi .ic.ic-after:before {
  display: none;
}


.ic.ic-list:before {
  background-image: url("../img/ic_list.svg");
}

.ic.ic-trash:before {
  background-image: url("../img/ic_trash.svg");
}

.ic.ic-report:before {
  background-image: url("../img/ic_report.svg");
}

.ic.ic-like:before {
  background-image: url("../img/ic_like.svg");
}

.ic.ic-share:before {
  background-image: url("../img/ic_share.svg");
}

.ic.ic-edit:before {
  background-image: url("../img/ic_edit.svg");
}

.ic.ic-arrow-left:before {
  background-image: url("../img/ic_arrow_left.svg");
  margin-right: 0 !important;
}

.ic-after.ic-arrow-right:after {
  background-image: url("../img/ic_arrow_right.svg");
  margin-left: 0 !important;
}

/*post*/
.post {
  padding: 1.875rem 0 3.75rem;
}

.post-header {
  border-bottom: 1px solid #222;
  padding-bottom: 0.9375rem;
}

.post-header>div:nth-child(n+2) {
  padding-top: 0.75rem;
}

.post-header .title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}

.post-header .date ul {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #888;
}

.post-header .date li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

.post-body {
  color: #555;
  padding-top: 1.25rem;
  word-break: break-word;
  min-height: 12.5rem;
  line-height: 1.3;
}

.post-body p {
  line-height: 1.6;
  font-size: 0.9375rem;
}

.post-body>*:nth-child(n+2) {
  padding-top: 1rem;
}

.post-body img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  font-weight: 700;
  color: #222 !important;
}

.post-body h1 {
  font-size: 1.625rem;
}

.post-body h2 {
  font-size: 1.5rem;
}

.post-body h3 {
  font-size: 1.375rem;
}

.post-body h4 {
  font-size: 1.25rem;
}

.post-body h5 {
  font-size: 1.125rem;
}

.post-body h6 {
  font-size: 1rem;
}

/*table*/
.table {
  overflow-x: auto;

}

.table.fixed table {
  table-layout: fixed;
  word-wrap: break-word;
  word-break: break-all;
}

.table table {
  width: 100%;
}

.table th,
.table td {
  text-align: center;
  font-size: 0.9375rem;
  padding: 0.625rem;
}

.table thead {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.table th {
  color: #222;
  font-weight: 700;
}

.table tbody td,
.table tfoot td {
  border-bottom: 1px solid #eee;
}

.table tbody tr:hover {
  background: #F9F9F9;
  transition: all .3s;
}

.table tfoot td {
  color: #45499C;
  /* font-weight: 700; */
  background-color: rgba(69, 73, 156, .03);

}


/*comment-wrap*/
.comment-wrap {
  padding-top: 3.75rem;
}

.comment-wrap>.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.9375rem;
}

.comment-wrap>.title-wrap>.title {
  font-size: 1.125rem;
}

.comment-wrap>.title-wrap>.title>.text-bold.text-primary {
  padding-left: 0.3125rem;
}

/*comment-content*/
.comment-content .profile {
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.25rem;
}

.comment-content .profile:before {
  width: 1.25rem;
  height: 1.25rem;
}

.comment-content .content {
  width: calc(100% - 2.5rem);
  padding-left: 1rem;
}

.comment-content .list {
  display: flex;
  padding: 1.625rem 0;
  border-bottom: 1px solid #eee;

}

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

.comment-content .date ul {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #888;
}

.comment-content .date li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

.comment-content .name {
  color: #555;
}

.comment-content .title {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 0.25rem;
}




/*comment-edit*/
.comment-textarea {
  position: relative;
}

.comment-edit textarea {
  min-height: 7.5rem;
  padding-bottom: 3.375rem;
}

.textarea-btn {
  width: calc(100% - 2px);
  background: #fff;
  position: absolute;
  left: 1px;
  bottom: 1px;
  display: flex;
  justify-content: end;
  padding: 0.5rem;
  z-index: 1;
}

.comment-edit button {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}




/*post-navi only 댓글에 아이콘 단독사용시*/
.post-navi.only {
  /* width: 3.75rem; */
  justify-content: flex-start;
}

.post-navi.only button {
  padding: 0 0.5rem;
  border: 0;
}

.post-navi.only .ic:before {
  margin-right: 0;
}

/*btn-like*/
.ic.ic-like.btn-like.active:before {
  background-image: url(../img/ic_like_fill.svg);
}

.comment-like.active:before {
  background-image: url(../img/ic_like_bk_fill.svg);
}

.comment-like span {
  padding-left: 0.1875rem;
  padding-top: 0.1875rem;
}

canvas {
  position: absolute;
}

/*share-btn*/
.share-btn {
  padding-top: 0;
  padding: .5rem;
}

.share-btn .title {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  padding-top: .5rem;
}

/*report-edit*/
.report-edit .title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F9F9F9;
  padding: 1.25rem;
}

.report-edit .title {
  font-size: 1.375rem;
  font-weight: 700;
  padding: 0.25rem 0;
  text-align: center;
}

.report-edit .reporter {
  font-size: 0.875rem;
  color: #45499C;
}

.report-edit .content {
  padding-top: 1.625rem;
}

.input-area.v-area>*>* {
  width: 100%;
}

.input-area.v-area .label-set>label {
  padding-top: 0;
  padding-bottom: 0.375rem;
}

/*radio-wrap*/
.radio-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.radio-wrap>div {
  width: 50%;
  padding: 0.75rem 0;
}

/*textarea-count*/
.textarea-count {
  position: relative;
}

.textarea-count textarea {
  height: 6.25rem;
  padding-bottom: 2rem;
}

#the-count {
  font-size: 0.75rem;
  width: calc(100% - 2px);
  position: absolute;
  left: 1px;
  bottom: 1px;
  display: flex;
  justify-content: end;
  padding: 0.5rem;
  z-index: 1;
  color: #888;
}

#current {
  color: #222;
}

/*event*/
.event {
  padding: 1.875rem 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.4385%;
}

.event .item {
  width: 20%;
  padding: 0 1.4385%;
}

.event .item:nth-child(n+6) {
  padding-top: 3.125rem;
}

.event .circle-badge {
  margin-bottom: 0.625rem;
}

.content-box .circle-badge {
  margin-bottom: 0.25rem;
}

/*circle-badge*/
.circle-badge-wrap {
  display: flex;
  align-items: center;
}

.circle-badge-wrap>div:nth-child(n+2) {
  margin-left: 0.1875rem;
}


.circle-badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.5rem;
  border: 1px solid transparent;
  /* border-radius: 100px; */
  display: inline-block;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.badge-pink-outline {
  color: #FF1D53;
  border-color: #FF1D53;
}

.badge-primary-outline {
  color: #45499C;
  border-color: #45499C;
}

.badge-light-primary {
  color: #fff;
  background-color: #5D64F5;
}

.badge-gray-outline {
  color: #666;
  border-color: #ddd;
}

.badge-gray {
  color: #888;
  background-color: #F1F1F1;
}

/*video-content*/
.video-content {
  padding: 1.875rem 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.1%;
}

.video-content .item {
  width: 33.333333%;
  padding: 0 1.1%;
}

.video-content .item:nth-child(n+4) {
  padding-top: 3.125rem;
}


.video-content.img-item .img {
  padding-top: 56.25%;
}

/*youtube*/
.youtube {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/*manual-list*/

.manual-list .title {
  font-weight: 700;
  font-size: 1.125rem;
}

.manual-list .list {
  padding-top: 1rem;
}

.manual-list .list ul a {
  padding: 0.25rem 0;
  display: block;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.3;
}

.manual-list .list ul li:first-child a {
  font-size: 1rem;
  color: #222;
  padding: 0.5rem 0;
}

.manual-list .list ul:nth-child(n+2) {
  padding-top: 0.5rem;
}

.manual-list .list ul:first-child li:first-child {
  padding-bottom: 0.5rem;
}

.manual-list .list ul:first-child li:nth-child(n+2) {
  padding-left: 1rem;
}

/*btob-edit*/
.btob-edit textarea {
  height: 9.375rem;
}

/*service*/
.service-info {
  padding: 3.125rem;
  background-color: #F4F7F8;
}

.service-info>div:nth-child(n+2) {
  padding-top: 1.875rem;
}

.cineditor-logo {
  width: 10.625rem;
  height: 1.875rem;
  background-image: url("../img/logo_cineditor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-info .title-wrap li {
  font-size: 1.375rem;
}

.service-info .title-wrap li:nth-child(n+2) {
  padding-top: 1.25rem;
}

.service-info .benefit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.service-info .benefit>div {
  width: 50%;

}

.service-info .benefit>div:nth-child(n+2) {
  padding-left: 3.125rem;
}

.service-info .benefit .item {
  display: flex;
  align-items: center;
}

.service-info .benefit .ic {
  width: 3.75rem;
  height: 3.75rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ic-ai {
  background-image: url("../img/ic_ai.svg");
}

.ic-chart {
  background-image: url("../img/ic_chart.svg");
}

.ic-polygon {
  background-image: url("../img/ic_polygon.svg");
}

.service-info .benefit .text {
  width: calc(100% - 3.75rem);
  padding-left: 1.875rem;
  color: #555;
  line-height: 1.5;
}

/*service-list*/
.service-list {
  padding-top: 1.875rem;
  display: flex;
}

.service-list>div:nth-child(n+2) {
  margin-left: 1.875rem;
}

.service-list .item {
  background-color: #fff;
  box-shadow: 1px 2px 10px 1px rgb(0, 0, 0, .10);
  padding: 1.875rem;
  border-radius: 0.75rem;
  width: 100%;
}

.service-list .title-wrap {
  text-align: center;
  font-size: 1.125rem
}

.service-list .title-wrap .price {
  font-size: 2.25rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.25rem;
}

.service-list .title-wrap .price span {
  font-size: 1rem;
  font-weight: normal;
  padding-right: 0.625rem;
}

.service-list .info {
  padding-top: 1.875rem;
}

.service-list .info .ic:before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.625rem;
}

.yes:before {
  background-image: url("../img/ic_check_primary.svg");
}

.no:before {
  background-image: url("../img/ic_x_pink.svg");
}

.service-list .info li {
  color: #555;
  font-size: 0.9375rem;
  text-indent: -1.75rem;
  padding-left: 1.75rem;
}

.service-list .info li:nth-child(n+2) {
  padding-top: 1rem;
}

/*main-video-performance*/
.main-video-performance {
  background-color: #1F212E;
  overflow: hidden;
}

.main-video-performance .video-content .item {
  width: 25%;
  padding: 0 1%;
}

.main-video-performance .video-content.img-item .img {
  background-color: #1F212E;
}

.main-video-performance .video-content.img-item .item:nth-child(n+5) {
  padding-top: 2%;
}

/*main-review-wrap*/
.main-review {
  background-color: #F4F7F8;
}

.main-review .item {
  background-color: #fff;
  padding: 1.875rem;
  border: 1px solid transparent;
}

.main-review .review-header {
  display: flex;
  align-items: center;
}

.main-review .profile {
  width: 2rem;
  height: 2rem;
  border: 0;
}

.main-review .date {
  width: calc(100% - 2.5rem);
  padding-left: 0.75rem;
}

.main-review .date ul {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #555;
}

.main-review .date ul li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

.main-review .content {
  padding-top: 1rem;
}

.main-review .content .text {
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2.625rem;
}

.main-review .content>*:nth-child(n+2) {
  padding-top: 1.875rem;
}

/*main-download*/
.main-download {
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  overflow: hidden;
}

.download-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.download-wrap .h1 {
  line-height: 1.3;
}

.main-download .device {
  width: 31.25rem;
  height: 27.5rem;
  padding-left: 1rem;
}

.main-download .device img {
  width: 100%;
}

.main-download .container {
  position: relative;
}

.main-download .container:before {
  content: '';
  width: 31.25rem;
  height: 31.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/ic_simbol_wh.svg);
  position: absolute;
  opacity: 0.1;
  top: -25%;
  right: 14%;
}


.main-download .title-wrap .info {
  line-height: 1.8;
  opacity: .6;
}

.main-download .btn-area {
  justify-content: flex-start;
}

.main-download .btn-area .ic:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 0.625rem;
}

.ic-simbol-wh:before {
  background-image: url("../img/ic_simbol_wh.svg");
}

.ic-googleplay-wh:before {
  background-image: url("../img/ic_googleplay_wh.svg");
}

.ic-applestore-wh:before {
  background-image: url("../img/ic_applestore_wh.svg");
}

/*cineditor_quick*/
.cineditor_quick {
  display: flex;
  align-items: center;
  padding-top: 3.75rem;

}

.cineditor_quick a {
  padding: 0 1.875rem;
  color: #fff;
}

.cineditor_quick a:nth-child(n+2) {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.cineditor_quick a ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cineditor_quick a ul li:nth-child(n+2) {
  padding-top: 1rem;
}

.cineditor_quick .ic:before {
  content: '';
  width: 1.875rem;
  height: 1.875rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;

}

.ic-article-wh:before {
  background-image: url("../img/ic_article_wh.svg");
}

.ic-ai-wh:before {
  background-image: url("../img/ic_ai_wh.svg");
}

.ic-menual-wh:before {
  background-image: url("../img/ic_menual_wh.svg");
}

/*main-anticipation-apply*/
.main-anticipation-apply {
  display: flex;
  align-items: center;
}

.main-anticipation-apply>div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.main-anticipation-apply .item .ic {
  width: 3.75rem;
  height: 3.75rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main-anticipation-apply .title-wrap {
  padding-top: 1.25rem;
}

.main-anticipation-apply .title {
  font-size: 1.375rem;
  font-weight: 700;
}

.main-anticipation-apply .info {
  line-height: 1.6;
  padding-top: 0.375rem;
}

/*sub main-anticipation-apply*/
.sub .main-anticipation-apply {
  align-items: inherit;
}

.sub .main-anticipation-apply>div {
  background-color: #fff;
  box-shadow: 1px 2px 10px 1px rgb(0 0 0 / 10%);
  padding: 1.875rem;
  border-radius: 0.75rem;
  width: 100%;
  text-align: left;
  align-items: flex-start;
}

.sub .main-anticipation-apply>div:nth-child(n+2) {
  margin-left: 1.875rem;
}

.sub .main-anticipation-apply .title-wrap {
  padding-top: 1.875rem;
}

.sub .main-anticipation-apply .info {
  line-height: 1.5;
  padding-top: 1.5rem;
  color: #555;
  font-size: 0.875rem;
}

.sub .main-anticipation-apply .info li:nth-child(n+2) {
  padding-top: 0.75rem;
}

/*info-list*/
.info-list {
  padding-top: 3.75rem !important;
}

.info-list .title {
  font-size: 1.25rem;
  font-weight: 700;
}

.info-list .info {
  padding-top: 0.25rem;
}

/*info-box*/
.info-box {
  margin-top: 1rem;
  padding: 1.875rem;
  background: #F9F9F9;

}

.info-box ul:nth-child(n+2) {
  margin-top: 1rem;
}

.info-box ul {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1rem;
}

.marker:before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #555;
  border-radius: 50%;
  margin-right: 0.625rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0.65rem;
}

/*sub-board btn-set*/
.sub-board .btn-set .title-wrap {
  width: calc(100% - 6.25rem);
  padding-right: 1rem;
}

.sub-board .circle-badge {
  min-width: 3.125rem;
}

/*loader*/
.loader-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .6);
  top: 0;
  left: 0;
  z-index: 999;
}

.loader {
  width: 3.75rem;
  height: 3.75rem;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 255, 255, .85); */
  border-radius: 50%;
  z-index: 97;
}

/*position*/
.p-rel {
  position: relative;
}

/*academy-board*/
.academy-board .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.academy-board .h1 {
  padding-bottom: 0;
}

.academy-board .title-wrap {
  padding-bottom: 1rem;
}

.academy-board .title-wrap button {
  position: relative !important;
  transform: none !important;
  top: auto !important;
}

/*v-right video-content*/
.v-right .video-content {
  padding: 0;
  display: block;
  flex-wrap: nowrap;
  margin: 0;
}

.v-right .video-content .item {
  width: 100%;
  padding: 0;
}

.v-right .video-content.img-item .item a {
  display: block;
}

.v-right .video-content.img-item .img {
  width: 100%;
}

.v-right .video-content.img-item .content {
  width: calc(100% - 0rem);
  padding-left: 0;
  padding-top: 0.5rem;
}

.v-right .video-content.img-item .title {
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3rem;
  white-space: normal;
  font-weight: normal;

}

/*ranking-list*/

.ranking-list .title {
  font-weight: 700;
  font-size: 1.125rem;
}

.ranking-list .list {
  padding-top: 1rem;
  line-height: 1.3;
}

.ranking-list .list ul {
  display: flex;

}

.ranking-list .list ul:nth-child(n+2) {
  padding-top: 0.875rem;
}

.ranking-list .list li,
.ranking-list .list a {
  font-size: 0.875rem;
  color: #555;
  display: block;
}

.ranking-list .list .num {
  font-weight: 900;
  width: 1.875rem;
}

.ranking-list .list li span {
  font-size: 0.75rem;
  font-weight: normal;
  color: #888;
  padding-left: 0.25rem;
}


.ranking-list .list ul li:nth-child(2) {
  width: calc(100% - 1.875rem);
}

.ranking-list .list a:hover {
  text-decoration: underline !important;
}

.ranking-list .list ul:nth-child(-n + 3) .num {
  color: #FF1D53;
}


/*movie-wrap*/
.movie-info {
  display: flex;
  padding-bottom: 2rem;
  position: relative;
}

.movie-info .img-item .img {
  width: 13.125rem;
}

.movie-info .detail {
  width: calc(100% - 13.125rem);
  padding-left: 2rem;
  color: #222;
}

.movie-info .detail .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.movie-info .detail .title {
  font-weight: 700;
  font-size: 1.75rem;
  width: calc(100% - 5.625rem);
}

.movie-info .detail .title ul {
  display: flex;
  align-items: baseline;
}

.movie-info .detail .title li:nth-child(2) {
  font-size: 1.25rem;
  padding-left: 0.5rem;
}

.movie-info .detail>*:nth-child(n+2) {
  padding-top: 1.5rem;
}

.movie-info .detail .info ul {
  display: flex;
  font-size: 1rem;
  line-height: 1.3;
}

.movie-info .detail .info ul:nth-child(n+2) {
  padding-top: 0.65rem;
}

.movie-info .detail .info ul li:nth-child(1) {
  color: #999;
  width: 9.375rem;
}

.movie-info .detail .info ul li:nth-child(2) {
  width: calc(100% - 9.375rem);
  padding-left: 1rem;
}

/*grade*/
.grade {
  width: 5.625rem;
  display: flex;
  justify-content: flex-end;

}

.grade ul {
  display: flex;
  align-items: center;
}

.grade ul li:nth-child(1) {
  color: #999;
}

.grade ul li:nth-child(2) {
  padding-left: 0.5rem;
  font-weight: 500;
}

.grade ul li {
  display: flex;
  align-items: center;

}

.grade span {
  display: block;
  margin-right: 0.25rem;
}

/*simple-comment*/
.simple-comment {
  padding: 2rem;
  border: 1px solid #eee;
}

.simple-comment .title {
  font-weight: 700;
  color: #222;
  background: linear-gradient(to top, #d2d3ff 50%, transparent 50%);
  display: inline-block;
  font-size: 1rem;
}

.simple-comment .comment-text {
  padding-top: 1rem;
  line-height: 1.6;
}

.simple-comment .comment-text .item:nth-child(n+2) {
  margin-top: 1rem;
}

.simple-comment .comment-text .item {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0 1.85rem 1.85rem 1.85rem;
  display: table;
  /* box-shadow: 0 4px 6px 0 rgb(0, 0, 0, .1); */
}

/*m-movie*/
.m-movie {
  display: none;
}

/*topic-edit*/
.topic-edit {
  display: none;
}

/*ip-consulting*/
.img-wrap {
  background: #f9f9f9;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.img-wrap>div {
  border: 1px solid #eee;
  padding: 1rem;
  background-color: #fff;
}

.img-wrap>div:nth-child(n+2) {
  margin-left: 1rem;
}

.ip-consulting .img img {
  max-width: 100%;
  min-width: auto;
}

/*edit-agree*/
.edit-agree {
  border-bottom: 1px solid #222;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

.edit-agree .text {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 auto;
}

.edit-agree>*:nth-child(n+2) {
  padding-top: 1rem;
}

/*direct-inquiry*/
.direct-inquiry-wrap {
  border: 1px solid #eee;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.direct-inquiry-wrap .title-wrap {
  display: flex;
  align-items: center;
  width: calc(100% - 7.5rem);
  padding-right: 1rem;
}

.direct-inquiry-wrap .title-wrap .title {
  width: calc(100% - 1.75rem);
  padding-left: 1rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.direct-inquiry-wrap a {
  font-size: 0.875rem;
  text-decoration: underline !important;
}

/*block-story*/

.block-story-wrap .item-wrap {
  background-color: #F4F5F7;
  border-radius: 1.25rem;
  padding: 1.25rem;
  position: relative
}

.block-story-wrap .item-wrap .acd-story {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.block-story-wrap .item-wrap .acd-story button {
  transform: rotate(180deg);
  transition: all .3s;
}

.block-story-wrap .item-wrap .acd-story.active button {
  transform: rotate(0deg);

}

.block-story-wrap .item-wrap .acd-story .title {
  font-size: 1rem;
  font-weight: 500;
  color: #45499C;
}

.block-story-wrap>div:nth-child(n+2) {
  margin-top: 1.875rem;
}

.block-story-wrap .item-wrap>div:nth-child(n+2) {
  margin-top: 1rem;
}

.block-story-wrap .item-wrap .panel>div:nth-child(n+2) {
  margin-top: 0.5rem;
}

.block-story-wrap .item-wrap>.title-wrap ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-story-wrap .item {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  border: 1px solid #DDDFE3;
}

.block-story-wrap .item>div {
  width: 100%;
}

.block-story-wrap .item>div:nth-child(n+2) {
  margin-left: 1rem;
}

.block-story-wrap .title-box {
  display: flex;
  align-items: center;
}

.block-story-wrap .title-box .number {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #DDDFE3;
  border-radius: 50%;
  position: relative;
  font-size: 0.875rem;
}

.block-story-wrap .title-box .number span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-weight: 700;
  text-align: center;
}

.block-story-wrap .title-box .title-wrap {
  width: calc(100% - 2.5rem);
  padding-left: 1rem;
}

.block-story-wrap .title-box .title-wrap .title {
  font-size: 1.125rem;
  font-weight: 500;
}

.block-story-wrap .title-box .title-wrap .info {
  font-size: 0.875rem;
  padding-top: 0.375rem;
  line-height: 1.3;
  color: #666;
}

.block-story-wrap .text-box label {
  font-size: 0.9375rem;
  color: #555;
  width: 10rem;
  padding-bottom: 0.375rem;
  display: none;
}

.block-story-wrap .text-box textarea {
  min-height: 4rem;
}

.block-story .movie-wrap {
  border-top: 1px solid #222;
  padding-top: 2rem;
}

.block-story .movie-info .img-item .img {
  width: 7.5rem;
}

.movie-info .detail {
  width: calc(100% - 7.5rem);
}

/*education*/
.education>div:nth-child(n+2) {
  padding-top: 3.75rem;
}

.education>div>.title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
}

.education .item-box {
  background-color: #F9F9F9;
  padding: 1.25rem;
}

.education .item-box li {
  color: #666;
  line-height: 1.3;
}

.education .item-box li:nth-child(n+2) {
  padding-top: 0.5rem;
}

.education .item-wrap {
  padding-top: 2rem;
}

.education .item-wrap .item:nth-child(n+2) {
  padding-top: 2rem;
}

.education .item-wrap .item {
  display: flex;
  align-items: center;
}

.education .item-wrap .item .num {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #45499C;
  background: rgba(69, 73, 156, 0.1);
  font-weight: 700;
  font-size: 0.875rem;
}

.education .item-wrap .item .title-wrap {
  width: calc(100% - 3.125rem);
  padding-left: 1rem;
}

.education .item-wrap .item .title-wrap .title {
  font-size: 1.125rem;
  line-height: 1.3;
}

.education .item-wrap .item .title-wrap .info {
  color: #45499C;
  padding-top: 0.3125rem;
}

.work_step .img {
  border: 1px solid #eee;
  padding: 2rem 1rem;
}

.work_step img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

/*new-book*/
.new-book {
  padding: 1.875rem 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.4385%;
}

.new-book .item {
  width: 20%;
  padding: 0 1.4385%;
}

.new-book.img-item .img {
  padding-top: 150%;
}

.new-book .item:nth-child(n+6) {
  padding-top: 3.125rem;
}

/*flex*/
.flex {
  display: flex;
}

.flex>*:nth-child(n+2) {
  margin-left: 0.375rem;
}

/*main-webzine*/
.main-webzine {
  display: flex;
  margin: 0 -1.5%;
  padding: 1.5rem 0;
}

.main-webzine .item {
  padding: 0 1.5%;
}

.main-webzine .title-wrap ul {
  display: block;
}

.main-webzine.img-item .img {
  padding-top: 56.25%;
}

.main-webzine.img-item .title {
  font-size: 1.375rem;
  padding-bottom: 1.5rem;
  font-weight: normal;
}

.main-webzine.img-item .date {
  font-size: 0.875rem;
  color: #888;
  padding-bottom: 1rem;

}

.main-webzine.img-item .info {
  margin-top: 0.5rem;
  font-size: 1rem;
  height: 3.5rem;
}

/*news*/
.news a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.news .title-wrap {
  width: calc(100% - 16.25rem);
  padding-right: 3rem;
}


.news .img {
  width: 16.25rem;
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
  background-color: #F5F5F5;
  background-image: url("../img/img_no.svg");
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.news .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .35s;
  -o-transition: .35s;
  -moz-transition: .35s;
  -webkit-transition: .35s;
}

.news .date {
  font-size: 0.875rem;
  color: #888;
  display: flex;
  padding-bottom: 1.5rem;
}

.news .date li:nth-child(n+2):before {
  content: '';
  width: 1px;
  height: 0.625rem;
  background-color: rgba(0, 0, 0, .15);
  margin: 0.05rem 0.5rem 0;
  display: inline-block;
}

.news .title li {
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news .info {
  padding-top: 0.875rem;
}

.news .info li {
  color: #666;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3rem;
}

/*style-box*/

.style-box .tabs-nav li {
  position: relative;
  width: 100%;
}

.style-box .tabs-nav a {
  color: #666;
  padding: 1.125rem 0.5rem;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  height: 3.25rem;
  position: relative;
}

.style-box .tabs-nav .active a {
  color: #45499C;
}


.style-box .tabs-nav a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #eee;

}

.style-box .tabs-nav .active a:before {
  border-color: #45499C;
  z-index: 1;
}

.style-box .tabs-nav ul:nth-child(n+2) {
  margin-top: -1px;
}

.style-box .tabs-nav li:nth-child(n+2) {
  margin-left: -1px;
}


/*faq style-box*/
.faq .tabs-nav {
  display: block;
}



/*faq*/
.faq .item-wrap {
  padding-top: 2rem;
}

.faq .item {
  border-bottom: 1px solid #eee;
}

.faq .tabs-nav ul {
  white-space: inherit;
}

.faq .style-box .tabs-nav a {
  word-break: break-all;
}

.faq .accordion {
  text-align: left;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  width: 100%;
  padding: 1.25rem 1rem;
  position: relative;
  display: flex;
}

.faq .accordion.active {
  font-weight: 500;
}

.faq .accordion .question {
  width: calc(100% - 1.875rem);
  padding: 0 1rem;
  line-height: 1.4;
}

.faq .accordion:before {
  content: 'Q';
  width: 1.875rem;
  height: 1.875rem;
  background-color: #ffdde5;
  color: #FF1D53;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.faq .accordion:after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/ic_arrow_down.svg);
  opacity: .5;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.faq .accordion.active:after {
  transform: rotate(180deg);
  margin-top: -0.5rem
}

.faq .panel {
  display: none;
  padding: 1.25rem 1rem;
  background-color: #f9f9f9;
}

.faq .answer {
  display: flex;
}

.faq .answer:before {
  content: 'A';
  width: 1.875rem;
  height: 1.875rem;
  background-color: #e3e4f0;
  color: #45499C;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.faq .answer .text {
  width: calc(100% - 1.875rem);
  padding: 0 1rem;
  color: #666;
  line-height: 1.4;
}

.faq .accordion .question,
.faq .answer .text {
  padding-top: 0.25rem !important;
}

/*service*/
.service .article {
  max-height: inherit;
  padding: 0;
  border: 0;
}

/*link-box*/
.link-box {
  display: flex;
}

.link-box a {
  display: block;
  width: 100%;
  font-size: 1rem;
  height: 3.25rem;
  color: #666;
  padding: 1.125rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-break: break-all;
  overflow: hidden;
  position: relative;
}

.link-box a:nth-child(n+2) {
  margin-left: -1px;
}

.link-box a.active {
  color: #45499C;
}

.link-box a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
}

.link-box a.active:before {
  border-color: #45499C;
  z-index: 1;
}

/*mypage-info*/
.mypage-info-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0 1.5rem;
  background: #f9f9f9;
  /* border-radius: 1rem; */
}

.mypage-info .profile-wrap {
  width: 4.375rem;
  height: 4.375rem;
  background-image: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.mypage-info .profile {
  border: 0;
  width: 3.875rem;
  height: 3.875rem;
}

.mypage-info .profile:before {
  width: 2rem;
  height: 2rem;
}

.mypage-info .user-info-wrap {
  padding-top: 1rem;
}

.mypage-info .user-info ul {
  text-align: center;
}

.mypage-info .user-info .name {
  font-size: 1.625rem;
  font-weight: 700;
}


.mypage-info .name-wrap ul>:nth-child(n+2) {
  margin-top: 0.5rem;
}

.mypage-info .user-info {
  padding-right: 0;
  width: 100%;
}

/*my-point*/
.my-point {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: .5rem;
  width: 100%;
}

.my-point ul {
  padding: 1rem 2rem;
  position: relative;
  display: flex;
  width: 100%;
}

.my-point ul:nth-child(1) {
  justify-content: flex-end;
}

.my-point ul:nth-child(n+2):before {
  content: "";
  width: 1px;
  height: 2.625rem;
  display: block;
  background: #e5e5e5;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.my-point li.title {
  color: #888;
}

.my-point li.title:after {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/ic_arrow_right.svg);
  display: inline-block;
  vertical-align: middle;
  margin: -0.3rem 0 0 0.1rem;
  opacity: 0.6;
}

.my-point li:nth-child(n+2) {
  padding-top: 0.875rem;
}

.my-point .point {
  color: #222;
  font-size: 1.375rem;
}

.ic-point:after {
  content: 'P';
  display: inline-block;
  font-size: 75%;
  padding-left: 0.15rem;
}

/*mypage-board*/
.mypage-board {
  background-color: #fff;
  padding-top: 3rem !important;
}

.mypage-board .h1 {
  font-size: 1.375rem;
  padding-bottom: 1rem !important;
  font-weight: 500;
}

/*mypoint-total*/
.mypoint-total-wrap {
  background: linear-gradient(90.11deg, #45499C 0.13%, #644A9B 99.73%);
  padding: 2rem 1rem;
  /* border-radius: 1rem; */
}

.mypoint-total .my-point {
  padding-top: 0;
}

.mypoint-total .my-point ul {
  align-items: center;
}

.mypoint-total .my-point .title:after {
  display: none;
}

.mypoint-total .my-point li:nth-child(n+2) {
  padding-top: 0;
}

.mypoint-total .my-point ul {
  justify-content: space-between !important;
  padding: 0 3rem;
}

.mypoint-total .my-point ul:nth-child(n+2):before {
  height: 1.5rem;
  background: rgba(255, 255, 255, .15);
}


.mypoint-total .my-point .title {
  color: #fff;
}

.mypoint-total .my-point .point {
  color: #ffdc19;
  font-weight: 300;
  font-size: 1.875rem;
}



/*point-list*/
.point-list .item {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.point-list .item:first-child {
  border-top: 1px solid #eee;
}

.point-list .item .list-r {
  width: 12.5rem;
}

.point-list .item .list-l {
  width: calc(100% - 12.5rem);
  display: flex;
  align-items: center;
}

.point-list .item .list-l .type {
  width: 4.375rem;
  height: 4.375rem;
  border: 1px solid transparent;
  border-radius: 50%;
  position: relative;
}

.point-list .item .list-l .type span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.point-list .item .list-l .type.pink {
  border-color: #FF1D53;
}

.point-list .item .list-l .type.pink span {
  color: #FF1D53;
}

.point-list .item .list-l .type.primary {
  border-color: #45499C;
}

.point-list .item .list-l .type.primary span {
  color: #45499C;
}

.point-list .item .list-l .title-wrap {
  width: calc(100% - 4.375rem);
  padding-left: 2rem;
}

.point-list .item .list-l .title-wrap .title {
  line-height: 1.5;
  font-size: 1.125rem;
}

.point-list .item .list-l .title-wrap .date {
  font-size: 0.8125rem;
  color: #888;
}

.point-list .item .list-l .title-wrap ul>*:nth-child(n+2) {
  padding-top: .5rem;
}

.list-r ul {
  text-align: right;
}

.list-r .point {
  font-size: 1.375rem;
}

.list-r .total {
  color: #888;
}

.list-r ul>*:nth-child(n+2) {
  padding-top: 0.5rem;
}

/*storypia-wrap*/
.storypia-wrap>div:nth-child(n+2) {
  margin-top: 2rem;
}

.why-storypia {
  background-color: #F5F8FA;
  padding: 3.75rem 2rem;
}

.title-lg-wrap {
  padding-bottom: 2rem;
  text-align: center;
  line-height: 1.3;
}

.title-lg-wrap .title {
  font-size: 1.75rem;
  font-weight: 700;
}

.title-lg-wrap .info {
  font-size: 1.25rem;
}

/*storypia-list*/
.storypia-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  padding-bottom: 1rem;
}

.storypia-list .item {
  width: 50%;
  display: flex;
  padding: 1rem;
}

.storypia-list .item:nth-child(1),
.storypia-list .item:nth-child(2) {
  padding-top: 0;
}

.storypia-list .item .img {
  width: 6.25rem;
}

.storypia-list .item .img img {
  width: 100%;
}

.storypia-list .item .content {
  width: calc(100% - 6.25rem);
  padding-left: 1rem;
  padding-top: 1rem;
  line-height: 1.4;
}

.storypia-list .item .content ul li:nth-child(n+2) {
  padding-top: 0.25rem;
}

.storypia-list .item .content .title {
  font-size: 1.125rem;
  font-weight: 500;
}

.storypia-list .item .content .info {
  font-size: 0.875rem;
}

.storypia-list .item .content .need {
  font-size: 0.875rem;
  color: #45499C;
}

.storypia-list .item .content .need:before {
  content: '';
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("../img/ic_need_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: -0.25rem 0.25rem 0 0;
  vertical-align: middle;
  display: inline-block;
}

.ic_arrow_down_strong {
  width: 3.75rem;
  height: 3.75rem;
  background-image: url("../img/ic_arrow_down_strong.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}

/*need-text*/
.need-text {
  padding-top: 0.625rem;
  text-align: center;
  font-family: 'Noto Serif KR', 'Noto Serif JP', Arial, sans-serif !important;
  font-size: 1.375rem;
  line-height: 1.4;
  color: #45499C;
  font-weight: 500;
}

.need-text li:nth-child(n+2) {
  padding-top: 0.5rem;
}

/*storypia-role*/
.storypia-role {
  padding: 3.75rem 2rem 2rem;
  border: 1px solid #eee;
  text-align: center;
}

.storypia-role>div:nth-child(n+2) {
  margin-top: 2rem;
}

/*user-writers*/
.user-writers {
  margin-top: 0 !important;
}

.user-writers .img {
  margin-bottom: 1.25rem;
}

.user-writers .img img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

/*title-sm-wrap*/
.title-sm-wrap {
  line-height: 1.3;
  word-break: break-all;
}

.title-sm-wrap .title {
  font-size: 1.125rem;
  font-weight: 500;
}

.title-sm-wrap .info {
  font-size: 0.875rem;
  color: #555;
}

.title-sm-wrap ul li:nth-child(n+2) {
  padding-top: 0.25rem;
}

/*role-flow*/
.role-flow {
  display: inline-block;
}

.role-flow-wrap {
  position: relative;
  max-width: 362px;
  margin: 0 auto;
  padding-top: 3.5rem;
}

.role-flow .img {
  margin: 0 auto;
}

.role-flow .img img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

.role-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  padding-top: 3.5rem;
}

.role-logo li:nth-child(n+2) {
  padding-top: 0.625rem;
}

.role-flow .title-sm-wrap {
  position: absolute;
  white-space: nowrap;
}

.role-flow .title-sm-wrap .title {
  font-size: 1rem;
}

.role-flow .top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.role-flow .left,
.role-flow .right {
  top: 75%;
}

.role-flow .left {
  text-align: right;
  right: 50%;
  margin-right: 50%;
}

.role-flow .right {
  text-align: left;
  left: 50%;
  margin-left: 50%;
}

/*aim*/
.aim {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.aim .item {
  width: 50%;
  padding: 0 1rem;
}

.aim .item .item-wrap {
  background-color: #F9F9F9;
  padding: 1rem 1rem 2rem 1rem;
}

.aim .item .img img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

/*who-needs*/
.who-needs {
  background-color: #50586D;
  padding: 3.75rem 2rem 2rem 2rem;
  color: #fff;
}

.who-needs>div:nth-child(n+3) {
  margin-top: 2rem;
}

/*needs-list*/
.needs-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.needs-list .item {
  padding: 0 1rem;
  text-align: center;
  width: 33.333333%;
}

.needs-list .item-wrap {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem;
  height: 100%;
}

.needs-list .item .img {
  width: 6.25rem;
  margin: 0 auto;
}

.needs-list .item .img img {
  width: 100%;
}

.needs-list .title-sm-wrap .title {
  padding-bottom: 0.5rem;
}

.needs-list .title-sm-wrap .info {
  color: #fff;
  text-align: left;
}

.needs-list .subject {
  color: #FFDD63;
  font-weight: 500;
  padding-top: 1rem;
  line-height: 1.3;
}

.flex-w-center {
  display: flex;
  justify-content: center;
}

/*story-engine*/
.story-engine {
  text-align: center;
}

.story-engine .img {
  width: 18.75rem;
  margin: 0 auto 1rem;
}

.story-engine .img img {
  width: 100%;
}

/*storypia-cineditor*/
.storypia-cineditor {
  padding: 3.75rem 2rem;
  border: 1px solid #eee;
  text-align: center;
}

.storypia-cineditor>div:nth-child(n+3) {
  margin-top: 2rem;
}

/*story-team*/
.story-team {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.story-team .item {
  width: 50%;
  padding: .5rem 1rem;
}

.story-team .item:nth-child(n+3) {
  padding-top: 2rem;
}

.story-team .item .img {
  margin-bottom: 1rem;
}

.story-team .item .img img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

/*story-ranking*/
.story-ranking .img {
  margin-bottom: 1rem;
}

.story-ranking .img img {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}

/*story-goal*/
.story-goal {
  display: flex;
  justify-content: space-between;
}

.story-goal .right {
  display: flex;
}

.story-goal .right .item:nth-child(n+2) {
  margin-left: -2rem;
}

.story-goal .item {
  width: 13.75rem;
}

.story-goal .item .circle {
  width: 100%;
  height: 13.75rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
}

.story-goal .item .circle .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.story-goal .item .circle .img img {
  width: 100%;
}

.story-goal .item .circle.simbol .img {
  width: 100%;
}

.story-goal .item .circle.simbol .img img {
  width: 100%;
}

.story-goal .item .circle.green {
  background: rgba(77, 130, 141, 0.9);
}

.story-goal .item .circle.red {
  background: rgba(173, 83, 115, 0.9);
}

/*arrow-dash*/
.arrow-dash {
  position: relative;
  height: 13.75rem;
  width: 20%;
}

.arrow-dash:before {
  content: '';
  height: 1.25rem;
  width: 1.25rem;
  display: block;
  border: 2px solid #ccc;
  border-left-width: 0;
  border-top-width: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0.4375rem;
  margin-top: -0.55rem;
}

.arrow-dash:after {
  content: '';
  position: absolute;
  width: calc(100% - 1rem);
  height: 1px;
  border: 1px dashed #ccc;
  left: 0;
  top: 50%;
}

/*report-sample*/
.report-sample {
  background-color: #F9F9F9;
  padding: 3.75rem 1rem;
}

.report-sample .img-wrap {
  background: none;
  padding: 0;
  flex-wrap: nowrap;
}

.report-sample .img-wrap>div {
  width: 100%;
}

.report-sample .img img {
  max-width: 100%;
  min-width: auto;
}

/*arrow-area*/
.arrow-area {
  position: relative;
  padding-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.arrow-area>div {
  position: relative;
  padding-bottom: 2.5rem;
}

.arrow-area>div:nth-child(1) {
  width: 33.3333%;
  color: #FF5084;
}

.arrow-area>div:nth-child(2) {
  width: 66.6666%;
  color: #5796F4;

}

.arrow-area>div:nth-child(3) {
  width: 100%;
  color: #45499C;
}

.arrow-area>div:before {
  content: '';
  height: 1rem;
  width: 1rem;
  display: block;
  border: 2px solid #ccc;
  border-left-width: 0;
  border-top-width: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: .75rem;
  margin-top: -.45rem;
}

.arrow-area>div:after {
  content: '';
  position: absolute;
  width: calc(100% - .75rem);
  height: 1px;
  border: 1px solid #ccc;
  left: 0;
  top: 50%;
}

.arrow-area>div:nth-child(1):before,
.arrow-area>div:nth-child(1):after {
  border-color: #FF5084;
}

.arrow-area>div:nth-child(2):before,
.arrow-area>div:nth-child(2):after {
  border-color: #5796F4;
}

.arrow-area>div:nth-child(3):before,
.arrow-area>div:nth-child(3):after {
  border-color: #45499C;
}

/*info-top*/
.info-top {
  background-color: #F5F8FA;
  padding: 2.5rem 2rem;
  text-align: center;
}

.info-top .img img {
  margin: 0 auto;
}

.info-top .content {
  padding-top: 1rem;
  line-height: 1.3;
}

.info-top .content .title {
  font-size: 1.375rem;
  font-weight: 700;
}

.info-top .content .info {
  padding-top: 0.25rem;
}

.info-top .content .info,
.info-top .content .need-text {
  font-size: 1.125rem;
}

.report-sample.bg-none {
  background-color: #fff;
  border: 0;
  padding: 0;
  margin: 0;
}

/*kim-visual*/
.kim-visual {
  width: 100%;
  padding-bottom: 48.673%;
  overflow: hidden;
  position: relative;
  background-image: url("../img/bg_kim.jpg");
  background-size: cover;
}

.kim-visual:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(270deg, #6F6354 10%, rgba(111, 99, 84, 0) 100%);
}

.kim-visual .title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  line-height: 1.4;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 50%;
  padding: 1rem;
}

.kim-visual .title-wrap .title {
  font-family: 'Noto Serif KR', 'Noto Serif JP', Arial, sans-serif !important;
  font-size: 1.125rem;
  font-weight: 500;
}

.kim-visual .title-wrap .title li:nth-child(n+2) {
  padding-top: 1rem;
}

.kim-visual .title-wrap .info {
  padding-top: 2rem;
  line-height: 1.5;
}

/*kim-performance*/
.kim-performance .title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
}

.kim-performance .performance {
  display: flex;
  justify-content: space-between;
}

.kim-performance .performance .img {
  padding: 1rem;
  border: 1px solid #eee;
}

.kim-performance .performance .img:nth-child(n+2) {
  margin-left: 1rem;
}

.kim-performance .performance .img img {
  max-width: 100%;
  min-width: auto;
}

/*kim-info*/
.kim-info {
  line-height: 1.5;
}

.kim-info ul:nth-child(n+2) {
  padding-top: 0.625rem;
}

/*myclass-banner*/
.myclass-banner {
  background-color: #EAFAF9;
  padding: 1.875rem 0;
}

.myclass-banner .banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.myclass-banner .title {
  color: #28A49C;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
}

.myclass-banner .btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

.myclass-banner .btn-sm.radius {
  border-radius: 100px;
}

.sub .myclass-banner {
  margin-bottom: -.875rem;
}

/*main-academy*/
.main-academy .academy-wrap:nth-child(n+2) {
  padding-top: 6.25rem;
}

.main-academy .academy-wrap>.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}

.main-academy .academy-wrap .title-wrap .h1 {
  padding-bottom: 0;
}

.link-view {
  display: flex;
  align-items: center;
  opacity: .6;
  padding: 0.5rem 0;
}

.link-view:after {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../img/ic_arrow_right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-top: -0.375rem;
}

/*academy-content*/
.main-academy .academy-content {
  padding-top: 0.5rem;
}

.academy-content {
  display: flex;
  gap: 1.875rem;
}

.academy-content.img-item .img {
  padding-top: 56.25%;
}

.academy-content.img-item .title {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-wrap: normal;
  /* max-height: 4.8rem; */
  white-space: normal;
  line-height: 1.5rem;
}

.academy-content.img-item .info {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-wrap: normal;
  /* max-height: 3.6rem; */
  height: auto;
}

.academy-content .circle-badge-wrap {
  padding-bottom: 0.5rem;
}

/*link-tab*/
.link-tab {
  display: flex;
}

.link-tab a {
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #aaa;
  padding: 1.25rem 0.75rem;
  background-color: #F9F9F9;
  border: 1px solid transparent;
  border-bottom: 1px solid #45499C;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-tab a.active {
  color: #45499C;
  border-color: #45499C;
  border-bottom: 0;
  background-color: #fff;
  cursor: default;
}

/*sub-academy*/
.sub-academy {
  padding: 1.875rem 0;
}

.sub-academy .academy-content {
  gap: 3.125rem 1.5625rem;
  flex-wrap: wrap;
}

.sub-academy .academy-content .item {
  width: calc(33.333% - 1.04166rem);
}

/*class-info*/
.class-info {
  display: flex;
  gap: 1.25rem;
}

.class-info>.img {
  width: 45%;
}

.class-info>.title-wrap {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.class-info .title-wrap .circle-badge-wrap {
  padding-bottom: .25rem;
}

.post-body .class-info .title-wrap .title {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-wrap: normal;
  max-height: 4.8rem;
  white-space: normal;
  line-height: 2rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #222;
}

.btn-class.btn:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  margin: -0.1875rem 0.375rem 0 0;
}

.btn-class.btn.play:before {
  background-image: url("../img/ic_play_wh.svg");
}

.btn-class.btn.refresh:before {
  background-image: url("../img/ic_refresh_wh.svg");
}

.class-btn-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.9375rem;
}

/*class-list-wrap*/
.class-list-wrap {
  display: flex;
  gap: 1.25rem;
}

.class-list-wrap .post {
  width: calc(100% - 17.5rem);
}

.class-list-wrap .class-list {
  width: 17.5rem;
  margin: 1.875rem 0 3.75rem;
  overflow-Y: auto;
  max-height: 613px;
  border: 1px solid #eee;
  padding: 0.625rem;
}

/*class-list*/
.class-list .item:nth-child(n+2) {
  margin-top: 0.375rem;
}

.class-list .item a {
  border: 1px solid #ddd;
  padding: .5rem;
  display: flex;
  align-items: center;
}

.class-list .item a.active {
  border-color: #5D64F5;
  color: #45499C;
  cursor: default;
}

.class-list .item a.past {
  border-color: #eee;
  background-color: #F5F5F5;
}

.class-list .item a.past .title {
  opacity: .6;
}

.class-list .item .img {
  width: 6.25rem;
}

.class-list .item .img img {
  width: 100%;
}

.class-list .item .title {
  width: calc(100% - 6.25rem);
  padding-left: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  /* max-height: 3rem; */
  word-break: break-all;
}

/*video*/
.video-wrap {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*myclass-board*/
.sub-board.myclass-board .list .content-wrap.badge-set .title-wrap {
  width: 70%;
}

/* 여기부터 리뉴얼 - 유료 서비스 */
.charge-plan-wrap {
  padding: 1.875rem 0rem 0;
}
.charge-plan-wrap .plan-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 1.875rem;
  position: relative;
  height: 32.125rem;
}
.charge-plan-wrap .plan-list > li {
  position: relative;
  padding: 1.875rem 1.8rem;
  width: calc(100% / 4);
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 1px 4px 14px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.charge-plan-wrap .plan-list > li.type-long {
  height: 32.125rem;
}
.charge-plan-wrap .plan-list > li.type-short {
  padding: 1.5rem 1.875rem;
  height: 12.25rem;
}
.charge-plan-wrap .plan-list > li.type-short + .type-short {
  position: absolute;
  right: 0;
  bottom: 6.1rem;
  width: calc(100% / 3 - 1.25rem);
}
.charge-plan-wrap .plan-list > li.type-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.875rem;
  width: calc(100% / 3 - 1.25rem);
  height: 4.625rem;
}
.charge-plan-wrap .plan-list > li dl dt {
  padding-bottom: 1rem;
  color: #222;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
}
.charge-plan-wrap .plan-list > li dl dd {
  color: #222;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}
.charge-plan-wrap .sr-only {
  overflow: hidden;
  position: absolute;
  margin: -1px 0 0 -1px;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0) !important;
}
.charge-plan-wrap .plan-list > li dl dd > small {
  display: block;
  margin-top: 0.25rem;
  color: #555;
  font-size: 0.813rem;
  font-weight: 400;
}
.charge-plan-wrap .plan-list > li .plan-benefit-list {
  margin-top: 4.063rem;
}
.charge-plan-wrap .plan-list > li .plan-benefit-list > li {
  background: url(https://storypia.com/assets/img/ic_check_primary.svg) left
    0.06rem / 1.125rem no-repeat; /* 기존 사이트에 있는 이미지 사용했습니다. 원본 파일에 css 붙여 넣으신 후 경로 변경하세요~ */
  padding-left: 2.125rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.charge-plan-wrap .plan-list > li .btn {
  display: block;
  position: absolute;
  left: 2rem;
  bottom: 1.875rem;
  width: calc(100% - 4rem);
  height: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 3.5rem;
  text-align: center;
}
.charge-plan-wrap .plan-list > li.type-short dl dt,
.charge-plan-wrap .plan-list > li.type-mini dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.charge-plan-wrap .plan-list > li.type-mini dl {
  padding-top: 0.25rem;
}
.charge-plan-wrap .plan-list > li.type-mini dl dt {
  padding: 0;
}
.charge-plan-wrap .plan-list > li.type-short dl dt > a,
.charge-plan-wrap .plan-list > li.type-mini dl dt > a {
  padding-right: 1rem;
  background: url(https://storypia.com/assets/img/ic_bread.svg) right top /
    0.813rem no-repeat;
  filter: invert(28%) sepia(47%) saturate(1047%) hue-rotate(203deg)
    brightness(92%) contrast(91%);
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 1;
}
.charge-plan-wrap .plan-list > li.type-short dl dd {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  text-align: left;
}
.charge-plan-wrap .plan-list > li.type-short dl dd > small {
  margin-top: 0;
  margin-left: 0.5rem;
}
.charge-plan-wrap .plan-list > li.type-short .plan-benefit-list {
  margin-top: 3rem;
}
.charge-plan-wrap .plan-list > li.type-short .plan-benefit-list > li {
  font-size: 0.813rem;
}
.tit-additional-service {
  padding: 3.375rem 0;
  color: #999;
  font-size: 0.875rem;
  text-align: center;
}
.tit-additional-service:before,
.tit-additional-service:after {
  display: inline-block;
  margin-top: 0.375rem;
  width: calc(50% - 5rem);
  height: 1px;
  border-top: 1px solid #999;
  vertical-align: top;
  content: "";
}
.tit-additional-service:before {
  margin-right: 1rem;
}
.tit-additional-service:after {
  margin-left: 1rem;
}
.additional-service-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 3.75rem;
}
.additional-service-wrap .cloud-area,
.additional-service-wrap .point-area {
  flex: calc(50% - 1.875rem) 0 0;
}
.tit-service {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 0.438rem;
  color: #222;
  font-size: 1.125rem;
  font-weight: 600;
}
.additional-service-wrap .tit-service > i {
  width: 1.25rem;
  height: 1.25rem;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
}
.additional-service-wrap .cloud-area .tit-service > i {
  background-image: url(icon_cloud_active_bold.svg); /* 이 이미지 서버에 올리신 후 경로 변경 부탁드립니다~ */
}
.additional-service-wrap .point-area .tit-service > i {
  background-image: url(icon_ai_active.svg); /* 이 이미지 서버에 올리신 후 경로 변경 부탁드립니다~ */
}
.additional-service-wrap .additional-service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.875rem;
  padding: 1.5rem;
  height: 8.313rem;
  border-radius: 9px;
  background: #fff;
  box-shadow: 1px 2px 16px 4px rgba(0, 0, 0, 0.15);
}
.additional-service-wrap .additional-service-list li .btn {
  display: block;
  width: 7.5rem;
  height: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 3.5rem;
  text-align: center;
}
.additional-service-wrap .additional-service-list li > dl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.additional-service-wrap .additional-service-list li > dl dt {
  color: #101733;
  font-size: 1.125rem;
  font-weight: 400;
}
.additional-service-wrap .additional-service-list li > dl dd {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0 0.5rem;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
}
.additional-service-wrap .additional-service-list li > dl dd small {
  color: #555;
  font-size: 0.813rem;
  font-weight: 400;
}
/* 여기까지 리뉴얼 - 유료 서비스 */
