@charset "UTF-8";
@font-face {
  font-family: "NotoSansKR";
  font-style: light;
  font-weight: 300;
  src: url("../fonts/NotoSansKR-Light.woff") format("woff"), url("../fonts/NotoSansKR-Light.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansKR-Regular.woff") format("woff"), url("../fonts/NotoSansKR-Regular.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/NotoSansKR-Medium.woff") format("woff"), url("../fonts/NotoSansKR-Medium.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSansKR-Bold.woff") format("woff"), url("../fonts/NotoSansKR-Bold.otf") format("openType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  src: url("../fonts/Pretendard-Thin.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  src: url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  src: url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  src: url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  src: url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  src: url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  src: url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  src: url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "GangwonEduPower";
  font-style: bold;
  font-weight: 400;
  src: url("../fonts/GangwonEduPower.woff") format("woff");
}
/* reset */
/* 최대 화면 크기 설정 */
/* 전역 스위치: 딱 1번만 선언 */
/* 
모바일에서만 vw를 사용할 경우 vw함수만 사용해도 무방
pc와 모바일 둘다 vw를 사용할경우 pc에서는 vw함수를
모바일에서는 vw-mo함수를 사용
*/
/* rem 설정을 위한 폰트 */
html {
  font-size: calc(100vw / 720 * 20);
}
@media (min-width: 721px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  html {
    font-size: calc(100vw / 360 * 20);
  }
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select,
pre {
  -webkit-text-size-adjust: none;
  line-height: 1.3;
  font-weight: 400;
  color: #000;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: 20px;
}

/*-webkit-text-size-adjust: none(글자크기 자동조정 방지) , auto (화면의 폭에 맞추어서 텍스트의 크기를 자동으로 조절 , 100%(폰트크기를 지정된사이즈로 변경);*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
table,
tr,
td,
dl,
dt,
dd,
a,
img,
input,
button,
select,
textarea {
  margin: 0px;
  padding: 0px;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  -webkit-border-radius: 0;
}

header,
hgroup,
article,
nav,
footer,
figure,
figcaption,
canvas,
section,
main,
menu {
  display: block;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

img,
fieldset,
iframe {
  border: 0 none;
}

fieldset {
  width: auto;
  min-width: 0;
  max-width: none;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
legend.focusable:active, legend.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}

img {
  max-width: 100%;
  border: 0px;
  vertical-align: top;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  display: none;
}

button {
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

/* reset */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
}
.btn.small {
  height: 1.75rem;
  padding: 0 0.5rem;
  font-size: 0.65rem;
}
.btn.medium {
  height: 2.8rem;
  padding: 0 0.65rem;
  font-size: 0.75rem;
}
.btn.large {
  height: 3.4rem;
  padding: 0 0.8rem;
  font-weight: 400;
  font-size: 1rem;
}
.btn.xlarge {
  height: 4.4rem;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn.primary {
  background-color: #2546cd;
  border-color: #2546cd;
  color: #fff;
}
.btn.slightly {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.btn.lightSlightly {
  background-color: #989898;
  border-color: #989898;
  color: #fff;
}
.btn.dark {
  background-color: #222;
  border-color: #222;
  color: #fff;
}
.btn.danger {
  background-color: #e0012b;
  border-color: #e0012b;
  color: #fff;
}
.btn.warning {
  background-color: #ff9582;
  border-color: #ff9582;
  color: #fff;
}
.btn.round.small {
  border-radius: 50px;
}
.btn.round.medium {
  border-radius: 40px;
}
.btn.round.large {
  border-radius: 30px;
}
.btn.round.xlarge {
  border-radius: 30px;
}
.btn.border {
  border: 1px solid #222;
}
.btn.border.primary {
  color: #2546cd;
  border-color: #2546cd;
  background-color: transparent;
}
.btn.border.slightly {
  border-color: #888;
  color: #888;
  background-color: transparent;
}
.btn.border.lightSlightly {
  border-color: #a1a1a1;
  color: #a1a1a1;
  background-color: transparent;
}
.btn.border.dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}
.btn.border.warning {
  border-color: #ff9582;
  color: #ff9582;
  background-color: transparent;
}
.btn.border.danger {
  border-color: #e0012b;
  color: #e0012b;
  background-color: transparent;
}

.data-table table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #ddd;
}
.data-table th,
.data-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 720px) {
  .data-table th,
  .data-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
}
.data-table th.left,
.data-table td.left {
  text-align: left;
}
.data-table th.center,
.data-table td.center {
  text-align: center;
}
.data-table th {
  background-color: #f1f1f1;
  border-bottom: 1px solid #ddd;
}
.data-table td {
  border-bottom: 1px solid #ddd;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  overflow: hidden;
  margin-top: 2rem;
}
.pagination button {
  display: block;
}
.pagination .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
}
.pagination .paging.current .page-link {
  font-weight: 900;
  color: #2546cd;
}
.pagination .page-link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666666;
  letter-spacing: -0.02em;
  text-align: center;
}
.pagination .controller {
  width: 1.2rem;
  height: 1.2rem;
}
.pagination .controller .page-link {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.pagination .controller.prev .page-link {
  background-image: url("../images/components/icon-pagination-prev.png");
}
.pagination .controller.next .page-link {
  background-image: url("../images/components/icon-pagination-next.png");
}
.pagination .controller.first .page-link {
  background-image: url("../images/components/icon-pagination-first.png");
}
.pagination .controller.last .page-link {
  background-image: url("../images/components/icon-pagination-last.png");
}
.pagination .controller.disabled {
  opacity: 0.4;
}
.pagination .controller.disabled .page-link {
  pointer-events: none;
}

.input-cover {
  position: relative;
}
.input-cover.float {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.input-cover.float.active .form-label {
  padding: 0 0.2rem;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
          transform: translate3d(0, -26px, 0) scale(0.75);
  color: #000;
  background-color: #fff;
}
.input-cover.float.active .required {
  color: #000;
}
.input-cover.float.active .form-input[type=date] {
  color: #000;
}
.input-cover.float.active .form-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float .form-label {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 2;
  width: auto;
  margin-bottom: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background-color: #fff;
}
.input-cover.float .etc-right {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.input-cover.focus, .input-cover.open-datepicker {
  border-color: #2c599d;
}
.input-cover.focus .form-label,
.input-cover.focus .required, .input-cover.open-datepicker .form-label,
.input-cover.open-datepicker .required {
  color: #2c599d !important;
}
.input-cover.focus .form-input, .input-cover.open-datepicker .form-input {
  border-color: #2c599d;
}
.input-cover.right-space.small .form-input {
  padding-right: 2.8rem;
}
.input-cover.right-space .form-input {
  padding-right: 4.6rem;
}
.input-cover.error .icon-error {
  display: block;
}
.input-cover.error .form-input {
  padding-right: 2.5rem;
  border-color: #e0012b;
}
.input-cover .cover-inner {
  position: relative;
}
.input-cover .form-input {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2.8rem;
  line-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid #e0e0e3;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  background-color: #fff;
}
.input-cover .form-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-moz-read-only, .input-cover .form-input:disabled {
  color: #999 !important;
  background-color: #fafafa;
}
.input-cover .form-input:read-only, .input-cover .form-input:disabled {
  color: #999 !important;
  background-color: #fafafa;
}
.input-cover .form-input:-moz-read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:-moz-read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: #999;
}
.input-cover .required {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8rem;
  color: #999;
}
.input-cover .etc-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  position: absolute;
  z-index: 2;
  bottom: 0.75rem;
  right: 1rem;
}
.input-cover .mode-text {
  font-size: 0.8rem;
}
.input-cover .btn-type-change {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/icon/icon-eye-off.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
  color: transparent;
}
.input-cover .btn-type-change.type-text {
  background-image: url("../images/icon/icon-eye-on.png");
}
.input-cover .file-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  position: relative;
}
.input-cover .file-wrapper .file-input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  top: 0;
  right: 0;
  z-index: 1;
}
.input-cover .file-wrapper .file-input.focusable:active, .input-cover .file-wrapper .file-input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.input-cover .file-wrapper .file-input:focus-visible + .btn {
  outline: 2px solid #000;
}
.input-cover .file-wrapper .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 6rem;
  font-size: 0.8rem;
}
.input-cover.disable-active.float .form-label {
  padding: 0 0.2rem;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
          transform: translate3d(0, -26px, 0) scale(0.75);
  color: #999;
}
.input-cover.disable-active .required {
  color: #999;
}

.form-btn-with-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.form-btn-with-container .input-cover,
.form-btn-with-container .selectric-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-btn-with-container .btn {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-btn-with-container.medium .btn {
  max-width: 6rem;
}

.selector-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
}
.selector-wrapper.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.selector-cover {
  line-height: 1;
  font-size: 0;
}
.selector-cover input {
  position: absolute;
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.selector-cover input.focusable:active, .selector-cover input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.selector-cover input:focus-visible + .selector-text {
  outline: auto;
  outline-color: -webkit-focus-ring-color;
}
.selector-cover .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}
.selector-cover .selector-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
  word-break: keep-all;
}
.selector-cover .selector {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e0e0e3;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.selector-cover .selector:after {
  display: block;
  content: "";
  position: absolute;
}
.selector-cover.checkbox .selector {
  border-radius: 0.2rem;
}
.selector-cover.checkbox .selector:after {
  display: none;
  left: calc(50% - 0.25rem);
  top: 50%;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
}
.selector-cover.checkbox.round .selector-text {
  padding-left: 1.6rem;
  min-height: 1.2rem;
}
.selector-cover.checkbox.round .selector {
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("../images/components/icon-checkbox-round-off.png");
}
.selector-cover.checkbox.round input:checked + .selector-text .selector {
  background-image: url("../images/components/icon-checkbox-round-on.png");
}
.selector-cover.checkbox.round input:checked + .selector-text .selector:after {
  display: none;
}
.selector-cover.checkbox.square .selector-text {
  padding-left: 1.6rem;
  min-height: 1.2rem;
}
.selector-cover.checkbox.square .selector {
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("../images/components/icon-checkbox-square-off.png");
}
.selector-cover.checkbox.square input:checked + .selector-text .selector {
  background-image: url("../images/components/icon-checkbox-square-on.png");
}
.selector-cover.checkbox.square input:checked + .selector-text .selector:after {
  display: none;
}
.selector-cover.checkbox.solo .selector-text {
  padding-left: 1.2rem;
}
.selector-cover.radio input:checked + .selector-text .selector {
  background-color: #fff;
  border-color: #000;
}
.selector-cover.radio input:checked + .selector-text .selector:after {
  background-color: #000;
}
.selector-cover.radio .selector-text {
  padding-left: 1.4rem;
  min-height: 1rem;
}
.selector-cover.radio .selector {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
}
.selector-cover.radio .selector:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #fff;
}
.selector-cover.radio.solo .selector-text {
  padding-left: 1.6rem;
}

.form-guide-text {
  display: block;
  font-weight: 300;
  margin-top: 0.6rem;
  font-size: 0.75rem;
}
.form-guide-text + .form-guide-text {
  margin-top: 0.2rem;
}

.form-textarea {
  display: block;
  height: 6rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  resize: none;
  overflow: auto;
}
.form-textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea.error {
  border-color: #2546cd;
}
.form-textarea.sm {
  height: 4rem;
  font-size: 0.7rem;
}
.form-textarea.md {
  height: 6rem;
}
.form-textarea.lg {
  height: 10rem;
}
.form-textarea.xl {
  height: 15rem;
}
.form-textarea.full {
  width: 100% !important;
}
.form-textarea:-moz-read-only, .form-textarea:disabled {
  background-color: #f1f1f1;
}
.form-textarea:read-only, .form-textarea:disabled {
  background-color: #f1f1f1;
}

.length-check-cover .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: #999;
}

.selectric-container {
  position: relative;
}
.selectric-container.active.init-before .selectric .label {
  color: #999;
}
.selectric-container.active.open .select-label {
  z-index: 5;
  color: #2c599d;
}
.selectric-container.active.open .select-label .required {
  color: #2c599d;
}
.selectric-container.active .select-label {
  z-index: 3;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -8px, 0) scale(0.75);
          transform: translate3d(0, -8px, 0) scale(0.75);
  padding: 0 0.2rem;
  background-color: #fff;
}
.selectric-container.active .selectric .label {
  color: #000;
}
.selectric-container.disabled .select-label {
  color: #999;
  background-color: transparent;
}
.selectric-container.disabled .select-label .required {
  color: #999;
}
.selectric-container.error .selectric {
  border-color: #e0012b;
}
.selectric-container .selectric-wrapper {
  position: relative;
  z-index: 2;
}
.selectric-container .selectric {
  border: 1px solid #e0e0e3;
  padding-left: 1rem;
  padding-right: 2.6rem;
  border-radius: 0.2rem;
  background-color: #fff;
}
.selectric-container .selectric .button {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  text-indent: -9999px;
  background-color: transparent;
}
.selectric-container .selectric .button:after {
  width: 1rem;
  height: 1rem;
  border: 0;
  background: url("../images/components/icon-selectbox-arrow.png") no-repeat 0 0;
  background-size: cover;
}
.selectric-container .selectric .label {
  margin: 0;
  color: #999;
}
.selectric-container .selectric .icon-error {
  display: none;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/icon/icon-alert-triangle-red-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.selectric-container .selectric-above .selectric-items {
  margin-bottom: 0.35rem;
}
.selectric-container .required {
  display: inline-block;
  font-size: 0.8rem;
  vertical-align: middle;
  color: #999;
}
.selectric-container .selectric-open {
  z-index: 4;
}
.selectric-container .selectric-open .selectric {
  border-color: #2c599d;
}
.selectric-container .selectric-open .selectric .label,
.selectric-container .selectric-open .selectric .required {
  color: #2c599d;
}
.selectric-container .selectric-open .button {
  overflow: hidden;
}
.selectric-container .selectric-open .button:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.selectric-container .selectric-disabled {
  opacity: 1;
}
.selectric-container .selectric-disabled .selectric {
  background-color: #fafafa;
}
.selectric-container .selectric-disabled .selectric .label {
  color: #999;
}
.selectric-container .selectric-first-show .selectric-scroll li:first-child {
  display: block;
}
.selectric-container .selectric-scroll li:first-child {
  display: none;
}
.selectric-container .select-label {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-size: 0.8rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.selectric-container .select-label .required {
  color: #000;
}
.selectric-container .selectric-items {
  max-height: 11.25rem;
  overflow: auto;
  border-radius: 5px;
  border: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
}
.selectric-container .selectric-items li.selected {
  background-color: #2c599d !important;
  color: #fff !important;
}
.selectric-container .selectric-items li:hover {
  background-color: #fafafa;
}
.selectric-container .selectric-small .label {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.7rem;
}
.selectric-container .selectric-small .selectric-items li {
  padding: 0.6rem;
  font-weight: 300;
  font-size: 0.7rem;
}
.selectric-container .selectric-medium .label {
  height: 2.7rem;
  line-height: 2.7rem;
  font-size: 0.8rem;
}
.selectric-container .selectric-medium .selectric-items li {
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}
.selectric-container .selectric-large .label {
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 0.9rem;
}
.selectric-container .selectric-large .selectric-items li {
  padding: 0.8rem 0.9rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.select-box-container .form-label {
  display: block;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
}
.select-box-container .form-label .required {
  display: inline-block;
  margin-left: 0.15rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #2546cd;
  vertical-align: middle;
}
.select-box-container .form-select {
  width: 100%;
  padding-right: 1rem;
  border: 0;
  border-bottom: 1px solid #dbdee5;
  color: #000;
  background: url("../images/components/icon-selectbox-arrow.svg") no-repeat 0 0;
  background-position: center right;
  background-size: 0.5rem 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.select-box-container.small .form-select {
  height: 1.6rem;
  line-height: 1.6rem;
  font-size: 0.65rem;
}
.select-box-container.small .form-select option {
  font-size: 0.65rem;
}
.select-box-container.medium .form-select {
  height: 2.1rem;
  line-height: 2.1rem;
  font-size: 0.8rem;
}
.select-box-container.medium .form-select option {
  font-size: 0.8rem;
}
.select-box-container.large .form-select {
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 0.9rem;
}
.select-box-container.large .form-select option {
  font-size: 0.9rem;
}
.select-box-container.active.float .form-label {
  -webkit-transform: translate3d(0, -20px, 0) scale(0.8);
          transform: translate3d(0, -20px, 0) scale(0.8);
}
.select-box-container.float {
  position: relative;
}
.select-box-container.float .form-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-size: 0.9rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.select-box-container.float .form-select {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.select-box-container.float .form-select option:first-child {
  display: none;
}

.font.warning {
  color: #ff9582;
}
.font.slightly {
  color: #888;
}
.font.primary {
  color: #2546cd;
}
.font.danger {
  color: #e0012b;
}
.font.dark {
  color: #222;
}
.font.lightSlightly {
  color: #a1a1a1;
}
.font.white {
  color: #fff;
}
.font.orange {
  color: #ff4600 !important;
}
.font.orange.radient {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4b00), to(#ffcc00)) !important;
  background: linear-gradient(180deg, #ff4b00 0%, #ffcc00 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.switch-container .switch-icon {
  position: relative;
}
.switch-container .switch-input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.switch-container .switch-input.focusable:active, .switch-container .switch-input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.switch-container .switch-input:focus-visible + .switch-label {
  outline: auto;
  outline-color: -webkit-focus-ring-color;
}
.switch-container .switch-input:checked + .switch-label .switch-button {
  background: #2546cd;
}
.switch-container .switch-input:checked + .switch-label .btn-on-off {
  left: 0.85rem;
}
.switch-container .switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.switch-container .switch-button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  position: relative;
  cursor: pointer;
  background: #999;
  border-radius: 50px;
}
.switch-container .btn-on-off {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: 0.15rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #fff;
  text-indent: -9999px;
}
.switch-container .switch-text {
  margin-left: 0.4rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.rating-select-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rating-select-container input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.rating-select-container input.focusable:active, .rating-select-container input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.rating-select-container label {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  display: block;
  position: relative;
  width: 2.3rem;
  height: 2.2rem;
  margin-left: 0.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/components/icon-star-empty.svg");
  text-indent: -9999px;
  cursor: pointer;
}
.rating-select-container label.checked {
  background-image: url("../images/components/icon-star-full.svg");
}
.rating-select-container label:nth-of-type(1) {
  margin-left: 0;
}

.layer-popup {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.layer-popup.open {
  visibility: visible;
  opacity: 1;
}
.layer-popup.all-show {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  position: static;
  border-top: 2px solid #000;
}
.layer-popup .popup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.layer-popup .popup-container.medium {
  max-width: 32rem;
}
.layer-popup .popup-container.small {
  max-width: 23rem;
}
.layer-popup .popup-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1.15rem 1.15rem;
  background-image: url("../images/icon/icon-close-bk-23x23.png");
}
.layer-popup .popup-title {
  padding: 1rem;
  text-align: center;
}
.layer-popup .popup-title strong {
  font-size: 1rem;
}
.layer-popup .popup-content {
  height: 100%;
  overflow: auto;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-inner {
  padding: 2rem;
  position: relative;
}
.layer-popup .popup-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}
.layer-popup .popup-footer .btn-area .btn {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.layer-popup .popup-footer .btn-area .btn-close {
  background-color: #666;
}
.layer-popup .popup-footer .btn-area .btn-ok {
  background-color: #ff4600;
}
.layer-popup .popup-footer .btn-area.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-popup .popup-footer .btn-area.half .btn {
  width: 50%;
}
.layer-popup.full-scroll {
  display: block;
  overflow: auto;
  text-align: center;
  font-size: 0;
}
.layer-popup.full-scroll::-webkit-scrollbar {
  display: none;
}
.layer-popup.full-scroll:before {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}
.layer-popup.full-scroll .popup-container {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 auto;
  max-height: none;
  border-radius: 1rem;
  font-size: initial;
}
.layer-popup.full-scroll .popup-content {
  height: auto;
  position: relative;
  overflow: visible;
  text-align: left;
}

.layer-popup-dim {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.5);
}
.layer-popup-dim.show {
  -webkit-animation: dimShow 0.3s forwards;
          animation: dimShow 0.3s forwards;
}

@-webkit-keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.test-main-popup .popup-container.small {
  max-width: 18rem !important;
}
.test-main-popup .popup-content {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}
.test-main-popup .popup-content .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.test-main-popup .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/popup/icon_close.png");
  text-indent: -9999px;
  z-index: 10;
}
.test-main-popup .popup-test-main-heading--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.test-main-popup .popup-test-main-heading--wrap .crunky-popup-logo--wrap {
  width: 100%;
  max-width: 4.625rem;
  margin-bottom: 1.5rem;
}
.test-main-popup .popup-test-main-heading--wrap .crunky-popup-heading--title {
  width: 100%;
  max-width: 11.025rem;
}
.test-main-popup .common-button--wrap {
  position: relative;
  width: 100%;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  margin-top: 10.15rem;
}
.test-main-popup .common-button--wrap .c-button:hover {
  opacity: 1;
}
.test-main-popup .popup-test-desc--wrap {
  position: relative;
  margin-top: 1rem;
}
.test-main-popup .popup-test-desc--wrap p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.test-main-popup .popup-test-desc--wrap p + p {
  margin-top: 0.5rem;
}
.test-main-popup .popup-test-desc--wrap .title {
  display: block;
  width: 100%;
  max-width: 6.95rem;
  height: 1rem;
  margin: 0 auto;
  margin-top: 0.25rem;
}
.test-main-popup.open .common-button--wrap {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.test-main-popup.open .popup-test-desc--wrap {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.test-info-popup .popup-container.small {
  max-width: 18rem !important;
}
.test-info-popup .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/popup/icon_close.png");
  text-indent: -9999px;
  z-index: 10;
}
.test-info-popup .test-info-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8c5239;
  padding-top: 1rem;
  padding-bottom: 1.6rem;
}
.test-info-popup .test-info-heading--wrap .crunky-logo {
  width: 100%;
  max-width: 3.7rem;
  margin-bottom: 0.5rem;
}
.test-info-popup .test-info-heading--wrap .crunky-test-info--title {
  width: 13.55rem;
  margin-bottom: 0.5rem;
}
.test-info-popup .test-info-heading--wrap p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
}
.test-info-popup .test-bottom--wrap {
  position: relative;
  background: #fff3eb;
  padding-top: 1.85rem;
  padding-bottom: 2rem;
}
.test-info-popup .test-bottom--wrap .bg-edge {
  position: absolute;
  width: 100%;
  height: 1.4rem;
  top: -0.7rem;
  left: 0;
}
.test-info-popup .common-button--wrap {
  margin-top: 3rem;
}
.test-info-popup .common-button--wrap .inner {
  padding: 0 1rem;
}

.test-proceed-popup .popup-container.small {
  max-width: 18rem !important;
}
.test-proceed-popup .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/popup/icon_close.png");
  text-indent: -9999px;
  z-index: 10;
}
.test-proceed-popup .test-proceed-heading--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8c5239;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}
.test-proceed-popup .test-proceed-heading--wrap .crunky-logo {
  width: 100%;
  max-width: 3.7rem;
  margin-bottom: 0.5rem;
}
.test-proceed-popup .test-proceed-heading--wrap .crunky-test-info--title {
  width: 10.05rem;
}
.test-proceed-popup .test-proceed-heading--wrap .icon-left,
.test-proceed-popup .test-proceed-heading--wrap .icon-right {
  position: absolute;
}
.test-proceed-popup .test-proceed-heading--wrap .icon-left {
  top: 0.45rem;
  left: 0;
  width: 4rem;
  height: 3.4rem;
}
.test-proceed-popup .test-proceed-heading--wrap .icon-right {
  bottom: 0;
  right: 0.35rem;
  width: 3.1rem;
  height: 3.6rem;
}
.test-proceed-popup .test-bottom--wrap {
  position: relative;
  background: #fff3eb;
  padding-top: 0.85rem;
  padding-bottom: 2rem;
}
.test-proceed-popup .test-bottom--wrap .bg-edge {
  position: absolute;
  width: 100%;
  height: 1.4rem;
  top: -0.7rem;
  left: 0;
}
.test-proceed-popup .test-bottom--wrap .common-test-heading--wrap {
  margin-bottom: 0.25rem;
}
.test-proceed-popup .test-bottom--wrap .common-test-heading--wrap .icon-question {
  width: 100%;
  max-width: 2.5rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.test-proceed-popup .test-bottom--wrap .common-test-heading--wrap .question-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
  margin-bottom: 1rem;
}
.test-proceed-popup .test-bottom--wrap .common-test-heading--wrap p {
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.test-proceed-popup .test-bottom--wrap .common-button--wrap {
  margin-top: 1rem;
}
.test-proceed-popup .test-bottom--wrap .common-button--wrap .inner {
  padding: 0 1rem;
}

.test-result-popup .popup-container.small {
  max-width: 18rem !important;
}
.test-result-popup .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/popup/icon_close.png");
  text-indent: -9999px;
  z-index: 10;
}
.test-result-popup .inner {
  padding: 0 1rem;
}
.test-result-popup .test-proceed-heading--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #8c5239;
  padding: 1rem 0;
}
.test-result-popup .test-proceed-heading--wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.test-result-popup .test-proceed-heading--wrap .crunky-logo {
  position: relative;
  width: 100%;
  max-width: 3.7rem;
  margin-bottom: 0.5rem;
}
.test-result-popup .test-proceed-heading--wrap .crunky-test-info--title {
  position: relative;
  width: 10.05rem;
}
.test-result-popup .test-proceed-heading--wrap .icon-left {
  position: absolute;
}
.test-result-popup .test-proceed-heading--wrap .icon-left {
  top: 1.7rem;
  left: 1.35rem;
  width: 2.5rem;
  height: 2.85rem;
}
.test-result-popup .test-bottom--wrap {
  position: relative;
  background: #fff3eb;
  padding-top: 1.85rem;
  padding-bottom: 1.3rem;
}
.test-result-popup .test-bottom--wrap .bg-edge {
  position: absolute;
  width: 100%;
  height: 1.15rem;
  top: -0.55rem;
  left: 0;
}
.test-result-popup .test-bottom--wrap .inner {
  padding: 0 0.75rem;
}
.test-result-popup .test-bottom--wrap .test-result-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.test-result-popup .test-bottom--wrap .test-result-heading--wrap .cate {
  width: 6.65rem;
}
.test-result-popup .test-bottom--wrap .test-result-heading--wrap .value {
  font-family: "GangwonEduPower";
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-shadow: 0px -2px 0 #fff, -0.75px -1.75px 0 #fff, -0.5px -1.75px 0 #fff, -0.25px -1.75px 0 #fff, 0px -1.75px 0 #fff, 0.25px -1.75px 0 #fff, 0.5px -1.75px 0 #fff, 0.75px -1.75px 0 #fff, -1.25px -1.5px 0 #fff, -1px -1.5px 0 #fff, -0.75px -1.5px 0 #fff, -0.5px -1.5px 0 #fff, -0.25px -1.5px 0 #fff, 0px -1.5px 0 #fff, 0.25px -1.5px 0 #fff, 0.5px -1.5px 0 #fff, 0.75px -1.5px 0 #fff, 1px -1.5px 0 #fff, 1.25px -1.5px 0 #fff, -1.5px -1.25px 0 #fff, -1.25px -1.25px 0 #fff, -1px -1.25px 0 #fff, -0.75px -1.25px 0 #fff, -0.5px -1.25px 0 #fff, -0.25px -1.25px 0 #fff, 0px -1.25px 0 #fff, 0.25px -1.25px 0 #fff, 0.5px -1.25px 0 #fff, 0.75px -1.25px 0 #fff, 1px -1.25px 0 #fff, 1.25px -1.25px 0 #fff, 1.5px -1.25px 0 #fff, -1.5px -1px 0 #fff, -1.25px -1px 0 #fff, -1px -1px 0 #fff, -0.75px -1px 0 #fff, -0.5px -1px 0 #fff, -0.25px -1px 0 #fff, 0px -1px 0 #fff, 0.25px -1px 0 #fff, 0.5px -1px 0 #fff, 0.75px -1px 0 #fff, 1px -1px 0 #fff, 1.25px -1px 0 #fff, 1.5px -1px 0 #fff, -1.75px -0.75px 0 #fff, -1.5px -0.75px 0 #fff, -1.25px -0.75px 0 #fff, -1px -0.75px 0 #fff, -0.75px -0.75px 0 #fff, -0.5px -0.75px 0 #fff, -0.25px -0.75px 0 #fff, 0px -0.75px 0 #fff, 0.25px -0.75px 0 #fff, 0.5px -0.75px 0 #fff, 0.75px -0.75px 0 #fff, 1px -0.75px 0 #fff, 1.25px -0.75px 0 #fff, 1.5px -0.75px 0 #fff, 1.75px -0.75px 0 #fff, -1.75px -0.5px 0 #fff, -1.5px -0.5px 0 #fff, -1.25px -0.5px 0 #fff, -1px -0.5px 0 #fff, -0.75px -0.5px 0 #fff, -0.5px -0.5px 0 #fff, -0.25px -0.5px 0 #fff, 0px -0.5px 0 #fff, 0.25px -0.5px 0 #fff, 0.5px -0.5px 0 #fff, 0.75px -0.5px 0 #fff, 1px -0.5px 0 #fff, 1.25px -0.5px 0 #fff, 1.5px -0.5px 0 #fff, 1.75px -0.5px 0 #fff, -1.75px -0.25px 0 #fff, -1.5px -0.25px 0 #fff, -1.25px -0.25px 0 #fff, -1px -0.25px 0 #fff, -0.75px -0.25px 0 #fff, -0.5px -0.25px 0 #fff, -0.25px -0.25px 0 #fff, 0px -0.25px 0 #fff, 0.25px -0.25px 0 #fff, 0.5px -0.25px 0 #fff, 0.75px -0.25px 0 #fff, 1px -0.25px 0 #fff, 1.25px -0.25px 0 #fff, 1.5px -0.25px 0 #fff, 1.75px -0.25px 0 #fff, -2px 0px 0 #fff, -1.75px 0px 0 #fff, -1.5px 0px 0 #fff, -1.25px 0px 0 #fff, -1px 0px 0 #fff, -0.75px 0px 0 #fff, -0.5px 0px 0 #fff, -0.25px 0px 0 #fff, 0.25px 0px 0 #fff, 0.5px 0px 0 #fff, 0.75px 0px 0 #fff, 1px 0px 0 #fff, 1.25px 0px 0 #fff, 1.5px 0px 0 #fff, 1.75px 0px 0 #fff, 2px 0px 0 #fff, -1.75px 0.25px 0 #fff, -1.5px 0.25px 0 #fff, -1.25px 0.25px 0 #fff, -1px 0.25px 0 #fff, -0.75px 0.25px 0 #fff, -0.5px 0.25px 0 #fff, -0.25px 0.25px 0 #fff, 0px 0.25px 0 #fff, 0.25px 0.25px 0 #fff, 0.5px 0.25px 0 #fff, 0.75px 0.25px 0 #fff, 1px 0.25px 0 #fff, 1.25px 0.25px 0 #fff, 1.5px 0.25px 0 #fff, 1.75px 0.25px 0 #fff, -1.75px 0.5px 0 #fff, -1.5px 0.5px 0 #fff, -1.25px 0.5px 0 #fff, -1px 0.5px 0 #fff, -0.75px 0.5px 0 #fff, -0.5px 0.5px 0 #fff, -0.25px 0.5px 0 #fff, 0px 0.5px 0 #fff, 0.25px 0.5px 0 #fff, 0.5px 0.5px 0 #fff, 0.75px 0.5px 0 #fff, 1px 0.5px 0 #fff, 1.25px 0.5px 0 #fff, 1.5px 0.5px 0 #fff, 1.75px 0.5px 0 #fff, -1.75px 0.75px 0 #fff, -1.5px 0.75px 0 #fff, -1.25px 0.75px 0 #fff, -1px 0.75px 0 #fff, -0.75px 0.75px 0 #fff, -0.5px 0.75px 0 #fff, -0.25px 0.75px 0 #fff, 0px 0.75px 0 #fff, 0.25px 0.75px 0 #fff, 0.5px 0.75px 0 #fff, 0.75px 0.75px 0 #fff, 1px 0.75px 0 #fff, 1.25px 0.75px 0 #fff, 1.5px 0.75px 0 #fff, 1.75px 0.75px 0 #fff, -1.5px 1px 0 #fff, -1.25px 1px 0 #fff, -1px 1px 0 #fff, -0.75px 1px 0 #fff, -0.5px 1px 0 #fff, -0.25px 1px 0 #fff, 0px 1px 0 #fff, 0.25px 1px 0 #fff, 0.5px 1px 0 #fff, 0.75px 1px 0 #fff, 1px 1px 0 #fff, 1.25px 1px 0 #fff, 1.5px 1px 0 #fff, -1.5px 1.25px 0 #fff, -1.25px 1.25px 0 #fff, -1px 1.25px 0 #fff, -0.75px 1.25px 0 #fff, -0.5px 1.25px 0 #fff, -0.25px 1.25px 0 #fff, 0px 1.25px 0 #fff, 0.25px 1.25px 0 #fff, 0.5px 1.25px 0 #fff, 0.75px 1.25px 0 #fff, 1px 1.25px 0 #fff, 1.25px 1.25px 0 #fff, 1.5px 1.25px 0 #fff, -1.25px 1.5px 0 #fff, -1px 1.5px 0 #fff, -0.75px 1.5px 0 #fff, -0.5px 1.5px 0 #fff, -0.25px 1.5px 0 #fff, 0px 1.5px 0 #fff, 0.25px 1.5px 0 #fff, 0.5px 1.5px 0 #fff, 0.75px 1.5px 0 #fff, 1px 1.5px 0 #fff, 1.25px 1.5px 0 #fff, -0.75px 1.75px 0 #fff, -0.5px 1.75px 0 #fff, -0.25px 1.75px 0 #fff, 0px 1.75px 0 #fff, 0.25px 1.75px 0 #fff, 0.5px 1.75px 0 #fff, 0.75px 1.75px 0 #fff, 0px 2px 0 #fff;
  color: #ff4600;
}
.test-result-popup .test-bottom--wrap .test-result-img--wrap .test-result-img {
  position: relative;
  padding-bottom: 61.53%;
  margin-bottom: 0.75rem;
}
.test-result-popup .test-bottom--wrap .test-result-img--wrap .test-result-img .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.test-result-popup .test-bottom--wrap .test-result-img--wrap .test-result-text--wrap big {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
  margin-bottom: 0.65rem;
}
.test-result-popup .test-bottom--wrap .test-result-img--wrap .test-result-text--wrap small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #572600;
  text-align: center;
}
.test-result-popup .test-bottom--wrap .test-result-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
  margin-top: 0.5rem;
}
.test-result-popup .test-share-event--wrap {
  position: relative;
  padding-top: 1.8rem;
  padding-bottom: 1.5rem;
  background: #f8c7a0;
}
.test-result-popup .test-share-event--wrap .bg-edge {
  position: absolute;
  width: 100%;
  height: 1.15rem;
  top: -0.6rem;
  left: 0;
}
.test-result-popup .test-share-event--wrap::after, .test-result-popup .test-share-event--wrap::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.test-result-popup .test-share-event--wrap::after {
  top: -2.075rem;
  right: 0;
  width: 3.25rem;
  height: 6.05rem;
  background-image: url("../images/popup/img-popup-left-deco.png");
}
.test-result-popup .test-share-event--wrap::before {
  top: 8.35rem;
  left: 0;
  width: 4.25rem;
  height: 3.875rem;
  background-image: url("../images/popup/img-popup-right-deco.png");
}
.test-result-popup .test-share-event--wrap .test-share-title--wrap {
  margin-bottom: 1rem;
}
.test-result-popup .test-share-event--wrap .test-share-title--wrap .title {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  z-index: 10;
}
.test-result-popup .test-share-event--wrap .test-share-title--wrap small {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item:last-child {
  margin-bottom: 0;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  background: #572600;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  border-radius: 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .value {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap {
  width: 100%;
  margin-top: 0.25rem;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap .how-to-list--item p {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #572600;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap .how-to-list--item small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ff4600;
  margin-top: 0.25rem;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap .sub-how-to-list--item {
  margin-top: 0.5rem;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap .sub-how-to-list--item p {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ff4600;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info--item .how-to-list--wrap .sub-how-to-list--item p span {
  color: #572600;
}
.test-result-popup .test-share-event--wrap .event-info--wrap .event-info-img--wrap {
  margin-bottom: 1rem;
}
.test-result-popup .test-share-result--wrap {
  position: relative;
  background: #fff3eb;
  padding-bottom: 2rem;
  padding-top: 1.75rem;
}
.test-result-popup .test-share-result--wrap .bg-edge {
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 100%;
  height: 1.15rem;
}
.test-result-popup .test-share-result--wrap .inner {
  padding: 0 1.35rem;
}
.test-result-popup .test-share-result--wrap .sns-share-box .common-button--wrap {
  margin-bottom: 1.2rem;
}
.test-result-popup .test-share-result--wrap .sns-share-box .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 2px solid #391b03;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.4);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc801), color-stop(56.25%, #ff4600));
  background: linear-gradient(180deg, #ffc801 0%, #ff4600 56.25%);
  border-radius: 2.4rem;
  min-height: 2.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.test-result-popup .test-share-result--wrap .sns-share-box .title::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: -9rem;
  left: 0;
  width: 1.5rem;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap button {
  width: 2rem;
  height: 2rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap button.sns-kakao {
  background-image: url("../images/common/icon-sns-kakao.png");
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap button.sns-x {
  background-image: url("../images/common/icon-sns-twitter.png");
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap button.sns-facebook {
  background-image: url("../images/common/icon-sns-facebook.png");
}
.test-result-popup .test-share-result--wrap .sns-share-box .sns-share-list--wrap button.sns-link {
  background-image: url("../images/common/icon-sns-link.png");
}
.test-result-popup.open .test-result-heading--wrap {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.test-result-popup.open .test-result-img--wrap {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@media (min-width: 720px) {
  .center-popup {
    position: fixed;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 18.3rem;
    max-height: 39rem;
    padding: 1rem 0.8rem;
  }
  .layer-popup-dim {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 18.3rem;
    height: 39rem;
  }
}
@media (min-width: 1000px) {
  .center-popup {
    position: fixed;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 18.3rem;
    max-height: 39rem;
    margin-left: -11.25rem;
  }
  .layer-popup-dim {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 18.3rem;
    height: 39rem;
    margin-left: -11.25rem;
  }
}
.scroll-animate {
  opacity: 0;
}
.scroll-animate.show {
  opacity: 1;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.event-scroll-animate {
  opacity: 0;
}
.event-scroll-animate.show {
  opacity: 1;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes pulseSmall {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes pulseSmall {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes floating {
  from {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  65% {
    -webkit-transform: translate(-50%, -5px);
            transform: translate(-50%, -5px);
  }
  to {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}
@keyframes floating {
  from {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  65% {
    -webkit-transform: translate(-50%, -5px);
            transform: translate(-50%, -5px);
  }
  to {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}
@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.shake {
  -webkit-animation: shake 2s ease infinite;
          animation: shake 2s ease infinite;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@-webkit-keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes fade-in-hit {
  0% {
    -webkit-transform: translateY(50px) scale(1);
            transform: translateY(50px) scale(1);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateY(30px) scale(1.2);
            transform: translateY(30px) scale(1.2);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(20px) rotate(-20deg) scale(1.2);
            transform: translateY(20px) rotate(-20deg) scale(1.2);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(20deg) scale(1.2);
            transform: translateY(10px) rotate(20deg) scale(1.2);
  }
  60% {
    -webkit-transform: translateY(5px) rotate(-20deg) scale(1.2);
            transform: translateY(5px) rotate(-20deg) scale(1.2);
  }
  70% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1.2);
            transform: translateY(0) rotate(0deg) scale(1.2);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes fade-in-hit {
  0% {
    -webkit-transform: translateY(50px) scale(1);
            transform: translateY(50px) scale(1);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateY(30px) scale(1.2);
            transform: translateY(30px) scale(1.2);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(20px) rotate(-20deg) scale(1.2);
            transform: translateY(20px) rotate(-20deg) scale(1.2);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(20deg) scale(1.2);
            transform: translateY(10px) rotate(20deg) scale(1.2);
  }
  60% {
    -webkit-transform: translateY(5px) rotate(-20deg) scale(1.2);
            transform: translateY(5px) rotate(-20deg) scale(1.2);
  }
  70% {
    -webkit-transform: translateY(0) rotate(0deg) scale(1.2);
            transform: translateY(0) rotate(0deg) scale(1.2);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes hithere {
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40%, 60% {
    -webkit-transform: rotate(-20deg) scale(1.05);
            transform: rotate(-20deg) scale(1.05);
  }
  50% {
    -webkit-transform: rotate(20deg) scale(1.05);
            transform: rotate(20deg) scale(1.05);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes hithere {
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40%, 60% {
    -webkit-transform: rotate(-20deg) scale(1.05);
            transform: rotate(-20deg) scale(1.05);
  }
  50% {
    -webkit-transform: rotate(20deg) scale(1.05);
            transform: rotate(20deg) scale(1.05);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.shake-horizontal {
  -webkit-animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1); /*스크롤바의 색상*/
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ddd; /*스크롤바 트랙 색상*/
}

.swiper-container {
  position: relative;
  overflow: hidden;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 70px;
  height: 70px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  display: none;
}
.swiper-container .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("../images/icon/icon-slider-arrow-next-bk-70x70.png");
}
.swiper-container .swiper-button-prev {
  background-image: url("../images/icon/icon-slider-arrow-prev-bk-70x70.png");
}
.swiper-container .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0 !important;
  margin-top: 20px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  display: block;
}

html,
body {
  -webkit-overflow-scrolling: touch;
}
html.scroll-disable,
body.scroll-disable {
  overflow: hidden !important;
}
@media (min-width: 961px) {
  html.scroll-disable.responsive-scroll,
  body.scroll-disable.responsive-scroll {
    overflow: visible !important;
  }
}

.accordion-list {
  overflow: hidden;
}
.accordion-list.active .accordion-header:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion-list .accordion-header {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  text-align: left;
}
.accordion-list .accordion-header:after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/icon/icon-arrow-down-bk-18x18.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.accordion-list .accordion-body {
  display: none;
}

.mobile-show {
  display: none;
}

@media (max-width: 720px) {
  .pc-show {
    display: none;
  }
  .mobile-show {
    display: block;
  }
}
.ui-tab-content {
  display: none;
}
.ui-tab-content:nth-of-type(1) {
  display: block;
}

.tui-datetime-input {
  width: 100%;
  height: auto;
}

.tui-datepicker {
  z-index: 10;
  font-size: 0.7rem;
}
.tui-datepicker.tui-hidden {
  display: none;
}
.tui-datepicker * {
  font-size: inherit;
}
.tui-datepicker .tui-datepicker-footer .tui-timepicker {
  padding: 10px;
}
.tui-datepicker .tui-timepicker-select {
  width: 64px;
  height: 32px;
}
.tui-datepicker .tui-calendar-sat {
  color: #1c74bc;
}
.tui-datepicker .tui-calendar-sun {
  color: #fc2222;
}
.tui-datepicker .tui-is-blocked {
  color: #ddd !important;
}
.tui-datepicker .tui-calendar-today {
  font-weight: bold;
  background-color: transparent;
  border: 1px solid rgba(37, 70, 205, 0.4);
  border-radius: 50%;
  color: #2546cd;
}
.tui-datepicker .tui-calendar-today:hover {
  background-color: #fff;
}
.tui-datepicker .tui-is-selectable.tui-is-selected,
.tui-datepicker .tui-is-selectable.tui-is-selected {
  background-color: #2546cd !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.tui-timepicker-select {
  font-size: 0.7rem !important;
}

.tui-datepicker-input {
  border: 0;
}
.tui-datepicker-input .datepicker-input {
  font-size: 0.75rem;
}
.tui-datepicker-input .tui-ico-date {
  right: 0.6rem;
  bottom: 0.5rem;
  background-position: -17px -14px !important;
}

.tui-datepicker-type-date {
  width: 245px;
}

.tui-calendar {
  width: 100%;
}
.tui-calendar th,
.tui-calendar td {
  height: 35px;
}

.tui-datepicker-body .tui-timepicker,
.tui-datepicker-footer .tui-timepicker {
  width: 100%;
}

#content .fr-view html,
#content .fr-view body,
#content .fr-view p,
#content .fr-view h1,
#content .fr-view h2,
#content .fr-view h3,
#content .fr-view h4,
#content .fr-view h5,
#content .fr-view h6,
#content .fr-view ul,
#content .fr-view ol,
#content .fr-view li,
#content .fr-view table,
#content .fr-view tr,
#content .fr-view td,
#content .fr-view dl,
#content .fr-view dt,
#content .fr-view dd,
#content .fr-view a,
#content .fr-view img,
#content .fr-view input,
#content .fr-view button,
#content .fr-view select,
#content .fr-view textarea {
  list-style: revert-layer;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: revert;
  font-weight: revert;
  line-height: revert;
  -webkit-text-decoration: revert;
          text-decoration: revert;
  letter-spacing: revert;
}
#content .fr-view h1 {
  font-size: 2em;
}
#content .fr-view ol,
#content .fr-view ul {
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
}

.gangwonedupower {
  font-family: "GangwonEduPower";
}

.common-button--wrap .c-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 2px solid #391b03;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.4);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc801), color-stop(56.25%, #ff4600));
  background: linear-gradient(180deg, #ffc801 0%, #ff4600 56.25%);
  border-radius: 2.4rem;
  min-height: 2.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.common-button--wrap .c-button:hover {
  opacity: 0.9;
}
@media (min-width: 1000px) {
  .common-button--wrap .c-button:hover {
    -webkit-animation: shake 4s ease-in-out both;
            animation: shake 4s ease-in-out both;
  }
}
.common-button--wrap .c-button::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: -9rem;
  left: 0;
  width: 1.5rem;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}
.common-button--wrap .c-button.not-gradient {
  background: #ff4600;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.common-button--wrap .c-button.not-hover:hover {
  opacity: 1;
}

.common-test-option--wrap .inner {
  padding: 0 0.75rem;
}
.common-test-option--wrap .common-test-option--item {
  padding: 0.15rem 0.6rem;
  -webkit-box-shadow: 1px 2px 0px 0px #572600;
          box-shadow: 1px 2px 0px 0px #572600;
  border: 1px solid var(--dark-brown, #572600);
  background: #fff;
}
.common-test-option--wrap .common-test-option--item + .common-test-option--item {
  margin-top: 0.5rem;
}
.common-test-option--wrap .common-test-option--item .common-test-option--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-test-option--wrap .common-test-option--item .icon {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.common-test-option--wrap .common-test-option--item .text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  width: 6.5rem;
}
.common-test-option--wrap .common-test-option--item.score01 .icon {
  width: 2rem;
  height: 2rem;
  background-image: url("../images/popup/icon-score0.png");
}
.common-test-option--wrap .common-test-option--item.score02 .icon {
  width: 2rem;
  height: 2rem;
  background-image: url("../images/popup/icon-score01.png");
}
.common-test-option--wrap .common-test-option--item.score03 .icon {
  width: 2.9rem;
  height: 2rem;
  background-image: url("../images/popup/icon-score02.png");
}
.common-test-option--wrap .common-test-option--item.score04 .icon {
  width: 3.8rem;
  height: 2rem;
  background-image: url("../images/popup/icon-score03.png");
}
.common-test-option--wrap .common-test-option--item.score05 .icon {
  width: 4.7rem;
  height: 2rem;
  background-image: url("../images/popup/icon-score04.png");
}
.common-test-option--wrap .common-test-option-input--item {
  display: block;
}
.common-test-option--wrap .common-test-option-input--item .test-option-form--input {
  position: absolute;
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.common-test-option--wrap .common-test-option-input--item .test-option-form--input.focusable:active, .common-test-option--wrap .common-test-option-input--item .test-option-form--input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.common-test-option--wrap .common-test-option-input--item .test-option-form--input:checked + .common-test-option--item {
  -webkit-animation: tilt-shaking 0.4s;
          animation: tilt-shaking 0.4s;
  border: 3px solid var(--orange, #ff4600);
}
.common-test-option--wrap .common-test-option-input--item .test-option-form--input:checked + .common-test-option--item .common-test-option--content::after {
  display: block;
}
.common-test-option--wrap .common-test-option-input--item .common-test-option--item .common-test-option--content {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-test-option--wrap .common-test-option-input--item .common-test-option--item .common-test-option--content::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.55rem;
  height: 1.325rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/popup/icon-checked.png");
}
.common-test-option--wrap .common-test-option-input--item + .common-test-option-input--item {
  margin-top: 0.5rem;
}

body {
  /* 프로젝트 마무리후 비밀번호 삽입시 주석 제거 */
}

html,
body {
  height: 100%;
  overscroll-behavior: none;
}

.section-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0px 1rem;
  max-width: 62rem;
}

#header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.5rem 0;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .header-inner {
  padding: 0 1.2rem;
}
#header .header-inner .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#header .header-inner .logo {
  width: 100%;
  max-width: 10.05rem;
  height: 2rem;
}
#header .header-inner .header-menu--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
#header .header-inner .header-menu--box button,
#header .header-inner .header-menu--box a {
  position: relative;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
#header .header-inner .header-menu--box button::after,
#header .header-inner .header-menu--box a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.05rem;
  height: 0.7rem;
  background: #000;
}
#header .header-inner .header-menu--box button:last-child::after,
#header .header-inner .header-menu--box a:last-child::after {
  display: none;
}

.mobile-navigation-menu {
  width: 1.4rem;
  height: 1.1rem;
  position: relative;
  cursor: pointer;
}
.mobile-navigation-menu .icon {
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #666;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.mobile-navigation-menu .icon:before, .mobile-navigation-menu .icon:after {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: #666;
}
.mobile-navigation-menu .icon:before {
  top: -8px;
}
.mobile-navigation-menu .icon:after {
  top: 8px;
}
.mobile-navigation-menu.active .icon {
  background-color: transparent;
}
.mobile-navigation-menu.active .icon:before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.mobile-navigation-menu.active .icon:after {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

#contentWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100dvh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  overflow: hidden;
}

.section-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  gap: 4.25rem;
  background: #572600;
}
.section-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/common/bg-pattern.png");
}
@media (max-width: 720px) {
  .section-wrap .section-wrap {
    gap: 0;
  }
}

.section-content-box {
  position: relative;
  max-width: 18.3rem;
  width: 100%;
  height: 100%;
  max-height: 39rem;
  border: 3px solid #000000;
  z-index: 10;
  overflow-y: auto;
}
.section-content-box::-webkit-scrollbar {
  display: none;
}

@media (max-width: 720px) {
  .section-content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    max-height: none;
    overflow: visible;
    border: none;
  }
}
.aside-box {
  position: relative;
  width: 100%;
  max-width: 18.3rem;
  height: 39rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
.aside-box .title-wrap {
  width: calc(100% - 6.2rem);
  margin: 0 auto;
  margin-bottom: 1.75rem;
}
.aside-box .common-video-container {
  position: relative;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
.aside-box .video-content {
  position: relative;
  padding-bottom: 62.29%;
  cursor: pointer;
  overflow: hidden;
}
.aside-box .video-content .btn-video-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("../images/common/img-aside-video--wrap.png");
}
.aside-box .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .aside-box {
    display: none;
  }
}
#footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 1.2rem 0;
  padding-bottom: 4.2rem;
  background: #fff;
}
#footer .footer-logo--wrap {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(230, 0, 18, 0.2);
}
#footer .footer-logo {
  width: 100%;
  max-width: 7.25rem;
}
#footer .footer-info--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.8rem;
}
#footer .sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
#footer .sns-btn {
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: -9999px;
}
#footer .sns-btn.facebook {
  background-image: url("../images/icon/icon-footer-facebook.png");
}
#footer .sns-btn.blog {
  background-image: url("../images/icon/icon-footer-blog.png");
}
#footer .sns-btn.youtube {
  background-image: url("../images/icon/icon-footer-youtube.png");
}
#footer .sns-btn.insta {
  background-image: url("../images/icon/icon-footer-insta.png");
}
#footer .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer .info-box p {
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.6);
}
#footer .info-box p strong {
  font-weight: 700;
}
#footer .policy-txt {
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.6);
}

#content {
  font-size: 2rem;
}

@media (max-width: 720px) {
  #content {
    font-size: 1rem;
  }
}
.visual {
  position: relative;
}
.visual .visual-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  top: 1.2rem;
}
.visual .visual-title--wrap .logo {
  width: 5.95rem;
  height: 1.95rem;
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.visual .visual-title--wrap .sub-copy {
  width: 13.7rem;
  height: 3.15rem;
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.visual .visual-title--wrap .main-copy {
  width: calc(100% - 2rem);
  height: 12.05rem;
  opacity: 0;
  -webkit-animation: fade-in-bottom 0.8s ease 0.5s forwards, hithere 0.8s ease 1.3s forwards;
          animation: fade-in-bottom 0.8s ease 0.5s forwards, hithere 0.8s ease 1.3s forwards;
}

.lecture-info--section {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#572600));
  background: linear-gradient(180deg, #000000 0%, #572600 100%);
  padding: 2.25rem 0;
  overflow: hidden;
  z-index: 10;
}
.lecture-info--section .lecture-info-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.lecture-info--section .lecture-info-heading--wrap span {
  font-family: "GangwonEduPower";
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lecture-info--section .lecture-origin-person--object {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  max-width: 9.775rem;
  height: 20.6rem;
  z-index: -1;
}
.lecture-info--section .lecture-crunky-img--object {
  position: absolute;
  bottom: 2.25rem;
  right: 0;
  width: 5.15rem;
  height: 5.6rem;
  z-index: -1;
}
.lecture-info--section .lecture-origin-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
}
.lecture-info--section .lecture-origin-text--wrap span {
  font-family: "GangwonEduPower";
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lecture-info--section .lecture-origin-desc--wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 1.5rem;
}
.lecture-info--section .lecture-origin-desc--wrap p {
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 1rem;
}
.lecture-info--section .lecture-origin-desc--wrap strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffcc00;
  margin-top: 1rem;
}
.lecture-info--section .common-button--wrap {
  margin-top: 1.5rem;
}

.lecture-self-introduce--section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4b00), to(#ffcc00));
  background: linear-gradient(180deg, #ff4b00 0%, #ffcc00 100%);
  z-index: 10;
}
.lecture-self-introduce--section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/common/bg-introduce-pattern.png");
  z-index: -1;
}
.lecture-self-introduce--section .lecture-self-introduce-heading--wrap {
  margin-bottom: 1rem;
}
.lecture-self-introduce--section .lecture-self-introduce-heading--wrap .title {
  width: 100%;
  max-width: 16.7rem;
  margin: 0 auto;
}
.lecture-self-introduce--section .lecture-self-introduce--item {
  position: relative;
  display: block;
}
.lecture-self-introduce--section .lecture-self-introduce--item + .lecture-self-introduce--item {
  margin-top: 1rem;
}
.lecture-self-introduce--section .lecture-self-introduce--item .deco-item {
  position: absolute;
  height: 7rem;
}
.lecture-self-introduce--section .lecture-self-introduce--item:nth-child(1) .deco-item {
  bottom: -0.2rem;
  right: -1rem;
  width: 6.65rem;
}
.lecture-self-introduce--section .lecture-self-introduce--item:nth-child(2) .deco-item {
  bottom: 0;
  left: -1.4rem;
  width: 8.8rem;
}
.lecture-self-introduce--section .lecture-self-introduce--item:nth-child(3) .deco-item {
  bottom: -0.65rem;
  right: -1rem;
  width: 5.9rem;
}

.crunky-event--section {
  position: relative;
  padding: 2rem 0;
}
.crunky-event--section.crunky-event01 {
  background: #8c5239;
  padding-top: 1.5rem;
}
.crunky-event--section.crunky-event01 .bg-edge {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 2.075rem;
  z-index: 10;
}
.crunky-event--section.crunky-event01 .section-inner {
  position: relative;
}
.crunky-event--section.crunky-event01 .lecture-self-introduce--txt {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.crunky-event--section.crunky-event01 .arrow-deco {
  position: absolute;
  left: 50%;
  top: 26.85rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.125rem;
  height: 3.3rem;
  z-index: 10;
}
.crunky-event--section.crunky-event02 {
  background: #fff3eb;
}
.crunky-event--section.crunky-event02 .bg-edge {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1.675rem;
  z-index: 10;
}
.crunky-event--section .crunky-event-title--wrap .img-title {
  position: relative;
  width: 100%;
  max-width: 7.7rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.crunky-event--section .crunky-event-title--wrap .img-title::after {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.95rem;
  height: 2.15rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/img-title-deco.png");
}
.crunky-event--section .crunky-event-desc-box {
  position: relative;
  padding: 1.5rem 1rem;
  border: 1px solid #572600;
  -webkit-box-shadow: 1px 2px 0px 0px #572600;
          box-shadow: 1px 2px 0px 0px #572600;
  background: #fff3db;
}
.crunky-event--section .crunky-event-desc-box::before, .crunky-event--section .crunky-event-desc-box::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.crunky-event--section .crunky-event-desc-box::before {
  top: -2.25rem;
  left: -0.7rem;
  width: 5.85rem;
  height: 4.15rem;
  background-image: url("../images/common/img-test-object-left--object.png");
}
.crunky-event--section .crunky-event-desc-box::after {
  bottom: 3.243rem;
  right: -0.9rem;
  width: 3.975rem;
  height: 4.625rem;
  background-image: url("../images/common/img-test-object-right--object.png");
}
.crunky-event--section .crunky-event-desc-box .event-step {
  width: 100%;
  max-width: 5.45rem;
  height: 1.75rem;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}
.crunky-event--section .crunky-event-desc-box .event-desc-title {
  padding-bottom: 1rem;
  border-bottom: 1px dashed #572600;
}
.crunky-event--section .crunky-event-desc-box .event-desc-title span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.crunky-event--section .crunky-event-desc-box .event-desc-title .img {
  display: block;
  width: 100%;
  max-width: 6.5rem;
  height: 1.375rem;
  margin: 0 auto;
  margin-top: 0.25rem;
}
.crunky-event--section .crunky-event-desc-box .event-info-desc {
  margin-top: 1rem;
}
.crunky-event--section .crunky-event-desc-box .event-info-desc p {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
}
.crunky-event--section .crunky-event-desc-box .event-info-desc strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 1rem;
}
.crunky-event--section .crunky-event-desc-box .common-button--wrap {
  position: relative;
  margin-top: 1rem;
}
.crunky-event--section .crunky-event-desc-box .common-button--wrap .button-obejct {
  position: absolute;
  left: -1.8rem;
  bottom: 0.1rem;
  width: 5.05rem;
  height: 5.5rem;
}
.crunky-event--section .crunky-event-desc-box.fade-in-bottom .common-button--wrap .button-obejct {
  -webkit-animation: pulse 1s infinite ease-in-out alternate;
          animation: pulse 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-desc-box.fade-in-bottom::before, .crunky-event--section .crunky-event-desc-box.fade-in-bottom::after {
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box {
  padding: 1.5rem 1rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box {
  position: relative;
  background: #f8c7a0;
  margin-top: 1rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box .event-step {
  width: 100%;
  max-width: 5.75rem;
  height: 1.75rem;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box .crunky-event-heading--wrap .img {
  width: 100%;
  max-width: 11.6rem;
  height: 1.425rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box::after, .crunky-event--section .crunky-event-common--box.crunky-event-share-event--box::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box::after {
  background-image: url("../images/common/img-share-right--object.png");
  right: -1rem;
  top: -0.95rem;
  width: 4.25rem;
  height: 6.05rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box::before {
  background-image: url("../images/common/img-share-left--object.png");
  left: -1rem;
  top: 9.65rem;
  width: 5.25rem;
  height: 3.875rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box .common-button--wrap {
  position: relative;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box .common-button--wrap .button-obejct {
  position: absolute;
  right: -1.65rem;
  bottom: 0.15rem;
  width: 5.075rem;
  height: 6.2rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box.scroll-animate .common-button--wrap .button-obejct {
  -webkit-animation: pulse 1s infinite ease-in-out alternate;
          animation: pulse 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box.crunky-event-share-event--box.scroll-animate::before, .crunky-event--section .crunky-event-common--box.crunky-event-share-event--box.scroll-animate::after {
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box {
  position: relative;
  background: #ffe5d2;
  border-radius: 1.5rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box::before, .crunky-event--section .crunky-event-common--box.crunky-event-review-event--box::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box::before {
  background-image: url("../images/common/img-purchase-review-poster--object.png");
  width: 4.05rem;
  height: 5.45rem;
  top: -3.15rem;
  left: -0.8rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box::after {
  background-image: url("../images/common/img-purchase-review-right--object.png");
  width: 4.7rem;
  height: 4.625rem;
  top: -2.3rem;
  right: 0.15rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box .crunky-event-heading--wrap .img {
  width: 100%;
  max-width: 13.025rem;
  height: 1.4rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box .crunky-event-img--wrap .img-box {
  margin-left: -0.45rem;
  margin-right: -0.45rem;
  height: 6.8rem;
  width: calc(100% + 0.9rem);
  border-radius: 0;
  height: 6.8rem;
  padding-bottom: 0;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box .crunky-event-img--wrap .img-deco {
  bottom: calc(100% + 0.1rem);
  left: -1.85rem;
  width: 6.45rem;
  height: 4.625rem;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box.fade-in-bottom .crunky-event-img--wrap .img-deco {
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box.crunky-event-review-event--box.fade-in-bottom::before, .crunky-event--section .crunky-event-common--box.crunky-event-review-event--box.fade-in-bottom::after {
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box .crunky-event-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-heading--wrap span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-desc--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-desc--wrap strong {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-desc--wrap p {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-date--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-date--wrap .cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  background: #572600;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  border-radius: 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.crunky-event--section .crunky-event-common--box .crunky-event-date--wrap p {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-img--wrap {
  position: relative;
  margin-bottom: 1rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-img--wrap .img-box {
  position: relative;
  width: 100%;
  padding-bottom: 130.71%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.crunky-event--section .crunky-event-common--box .crunky-event-img--wrap .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.crunky-event--section .crunky-event-common--box .crunky-event-img--wrap .img-deco {
  position: absolute;
  left: -1.5rem;
  bottom: -0.25rem;
  width: 4.975rem;
  height: 6.5rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap .cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  background: #572600;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  border-radius: 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap .how-to-list--wrap .how-to-list--item p {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap .how-to-list--wrap .how-to-list--item small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ff4600;
  margin-top: 0.25rem;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap .how-to-list--wrap .sub-how-to-list--item p {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ff4600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap .how-to-list--wrap .sub-how-to-list--item p span {
  color: #572600;
}
.crunky-event--section .crunky-event-common--box .crunky-event-how-to--wrap::after {
  content: "";
  position: absolute;
  top: -3.25rem;
  left: -2.1rem;
  width: 6.35rem;
  height: 4.625rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../images/common/img-purchase-review-left--object.png);
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box .how-to-img--wrap {
  margin-left: -0.45rem;
  margin-right: -0.45rem;
  height: 3.3rem;
  width: calc(100% + 0.9rem);
}
.crunky-event--section .crunky-event-common--box .how-to-img--wrap02 {
  position: relative;
  margin-left: -0.4625rem;
  margin-right: -0.4625rem;
  width: calc(100% + 0.925rem);
}
.crunky-event--section .crunky-event-common--box .how-to-img--wrap02::after {
  content: "";
  position: absolute;
  bottom: 8.25rem;
  right: -0.3rem;
  width: 4.625rem;
  height: 2.55rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/img-crunky-img-deco04.png");
  -webkit-animation: pulseSmall 1s infinite ease-in-out alternate;
          animation: pulseSmall 1s infinite ease-in-out alternate;
}
.crunky-event--section .crunky-event-common--box .tip-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  color: #ff4600;
}

.lecture-lesson--section {
  position: relative;
  padding: 2rem 0;
  background: #fff;
}
.lecture-lesson--section .bg-edge {
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 100%;
  height: 1.825rem;
}
.lecture-lesson--section .lecture-lesson-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.lecture-lesson--section .lecture-lesson-heading--wrap span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #ff4600;
}
.lecture-lesson--section .lecture-lesson-heading--wrap .title {
  width: 100%;
  max-width: 13.2rem;
  height: 1.4rem;
  margin: 0 auto;
}
.lecture-lesson--section .lesson-cate-menu--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0 0.3rem;
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item .img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item .text {
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.lesson-cate-menu--item01 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item01.png");
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.lesson-cate-menu--item02 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item02.png");
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.lesson-cate-menu--item03 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item03.png");
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.active .text {
  font-weight: 800;
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.active.lesson-cate-menu--item01 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item01-active.png");
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.active.lesson-cate-menu--item02 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item02-active.png");
}
.lecture-lesson--section .lesson-cate-menu--wrap .lesson-cate-menu--item.active.lesson-cate-menu--item03 .img {
  background-image: url("../images/common/img-lesson-cate-menu--item03-active.png");
}
.lecture-lesson--section .lesson-video-swiper--wrap {
  margin-top: 1rem;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-slide {
  position: relative;
  /* 스와이프 전용 영역 */
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-slide .swipe-zone {
  position: absolute;
  top: 0;
  width: 20%; /* ← 이게 포인트 */
  height: 100%;
  z-index: 10;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-slide .swipe-zone.left {
  left: 0;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-slide .swipe-zone.right {
  right: 0;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-slide iframe {
  pointer-events: none;
}
.lecture-lesson--section .lesson-video-swiper--wrap .common-video-container {
  position: relative;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
.lecture-lesson--section .lesson-video-swiper--wrap .video-content {
  position: relative;
  padding-bottom: 121.87%;
  cursor: pointer;
  overflow: hidden;
}
.lecture-lesson--section .lesson-video-swiper--wrap .video-content .btn-video-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.lecture-lesson--section .lesson-video-swiper--wrap .video-content .btn-video-play .text {
  display: none;
  width: 6.6rem;
  height: 0.925rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/icon-coming-soon.png");
  text-indent: -9999px;
}
.lecture-lesson--section .lesson-video-swiper--wrap .video-content .btn-video-play .before-video-thumnail--text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ededed;
}
@media (max-width: 720px) {
  .lecture-lesson--section .lesson-video-swiper--wrap .video-content .btn-video-play .before-video-thumnail--text {
    font-size: 0.6rem;
  }
}
.lecture-lesson--section .lesson-video-swiper--wrap .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-pagination {
  margin-top: 0.5rem;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 0.125rem;
  background: #572600;
  opacity: 0.3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lecture-lesson--section .lesson-video-swiper--wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff4600;
  opacity: 1;
}
.lecture-lesson--section .product-buying--box {
  position: relative;
  border-radius: 1.5rem;
  background: #ffe5d2;
  padding: 1.5rem 1rem;
  padding-top: 6.65rem;
  margin-top: 1rem;
}
.lecture-lesson--section .product-buying--box::after {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16.9rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/img-crunky-product-heading-title.png");
}
.lecture-lesson--section .product-buying--box .product-buying-heading--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.lecture-lesson--section .product-buying--box .product-buying-heading--wrap span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #ff4600;
}
.lecture-lesson--section .product-buying--box .product-buying-heading--wrap .img {
  width: 100%;
  max-width: 9.65rem;
  height: 1.375rem;
  margin: 0 auto;
}
.lecture-lesson--section .product-buying--box .product-list-img--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.lecture-lesson--section .product-buying--box .common-button--wrap {
  margin-top: 1rem;
}
.lecture-lesson--section .sns-share-box {
  position: relative;
  margin-top: 1rem;
}
.lecture-lesson--section .sns-share-box::after {
  content: "";
  position: absolute;
  top: -1.9rem;
  right: -1rem;
  width: 2.75rem;
  height: 3.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/img-sns-deco.png");
  -webkit-animation: bounce2 1.4s infinite ease-in-out;
          animation: bounce2 1.4s infinite ease-in-out;
}
.lecture-lesson--section .sns-share-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ff4600;
}
.lecture-lesson--section .sns-share-box .title span {
  display: inline-block;
  -webkit-animation: bounce 1.2s infinite ease-in-out;
          animation: bounce 1.2s infinite ease-in-out;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(13) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(14) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(15) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.lecture-lesson--section .sns-share-box .title span:nth-child(16) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.lecture-lesson--section .sns-share-box .title.ani {
  -webkit-animation: bounce2 1.4s infinite ease-in-out;
          animation: bounce2 1.4s infinite ease-in-out;
}
@-webkit-keyframes bounce2 {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes bounce2 {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap button {
  width: 2rem;
  height: 2rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap button.sns-kakao {
  background-image: url("../images/common/icon-sns-kakao.png");
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap button.sns-x {
  background-image: url("../images/common/icon-sns-twitter.png");
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap button.sns-facebook {
  background-image: url("../images/common/icon-sns-facebook.png");
}
.lecture-lesson--section .sns-share-box .sns-share-list--wrap button.sns-link {
  background-image: url("../images/common/icon-sns-link.png");
}

.caution-section {
  padding: 2.8rem 0;
  background: #f3f3f3;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.caution-section .caution-section-inner {
  padding: 0 0.8rem;
}
.caution-section .caution-section--title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}
.caution-section .caution-list--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.caution-section .caution-list--item .caution-list--title {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
.caution-section .caution-list--item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.25rem;
}
.caution-section .caution-list--item ul li span {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #767676;
  word-break: keep-all;
}
.caution-section .caution-list--item ul li span.radius {
  position: relative;
  top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0.15rem;
  height: 0.15rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #767676;
  border-radius: 100%;
}
.caution-section .caution-list--item ul li span.radius.none {
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.fixed-button {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.975rem 0;
  background: #ff4600;
  bottom: 50%;
  margin-bottom: -19.35rem;
  width: 100%;
  max-width: 18rem;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow: hidden;
}
@media screen and (max-width: 720px) {
  .fixed-button {
    margin-bottom: 0;
    bottom: 0;
  }
}
.fixed-button::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: -9rem;
  left: 0;
  width: 1.5rem;
  height: 100%;
  background-color: #fff;
}
.fixed-button.on {
  opacity: 1;
  visibility: visible;
}