@charset "UTF-8";
@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: "Poppins";
  font-weight: 300;
  src: url("../fonts/Poppins-Light.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff") format("woff");
}
/* reset */
/* 최대 화면 크기 설정 */
/* 전역 스위치: 딱 1번만 선언 */
/* 
모바일에서만 vw를 사용할 경우 vw함수만 사용해도 무방
pc와 모바일 둘다 vw를 사용할경우 pc에서는 vw함수를
모바일에서는 vw-mo함수를 사용
*/
/* rem 설정을 위한 폰트 */
html {
  font-size: calc(100vw / 1440 * 20);
}
@media (min-width: 1601px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: calc(50vw / 360 * 20);
  }
}
@media (max-width: 600px) {
  html {
    font-size: calc(70vw / 360 * 20);
  }
}
@media (max-width: 460px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  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.4;
  font-weight: 400;
  color: #111;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: 20;
}

/*-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: #111;
  cursor: pointer;
}

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: #f47725;
  border-color: #f47725;
  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: #111;
  border-color: #111;
  color: #fff;
}
.btn.danger {
  background-color: #ea002c;
  border-color: #ea002c;
  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 #111;
}
.btn.border.primary {
  color: #f47725;
  border-color: #f47725;
  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: #111;
  color: #111;
  background-color: transparent;
}
.btn.border.warning {
  border-color: #ff9582;
  color: #ff9582;
  background-color: transparent;
}
.btn.border.danger {
  border-color: #ea002c;
  color: #ea002c;
  background-color: transparent;
}

.common-btn-more {
  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.2rem;
  width: 7rem;
  height: 2.5rem;
  border-radius: 5rem;
  background-color: #111;
}
.common-btn-more.medium {
  width: 10rem;
}
.common-btn-more.size-free {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  padding: 0 2.45rem;
}
.common-btn-more.plus::after {
  background-image: url("../images/icon/icon-add-w-20x20.png");
}
.common-btn-more.arrow::after {
  background-image: url("../images/icon/icon-arrow-right-w-20x20.png");
}
.common-btn-more.more::after {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/icon/icon-arrow-w-24x24.png");
}
.common-btn-more::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.common-btn-more .text {
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}

@media (max-width: 900px) {
  .common-btn-more {
    width: 7rem;
    height: 2.2rem !important;
  }
  .common-btn-more.medium {
    width: 7rem;
  }
  .common-btn-more.size-free {
    padding: 0 1.9rem;
  }
  .common-btn-more.more::after {
    width: 0.8rem;
    height: 0.8rem;
  }
  .common-btn-more::after {
    width: 0.9rem;
    height: 0.9rem;
  }
  .common-btn-more .text {
    font-size: 0.7rem;
  }
}
.data-table table {
  table-layout: fixed;
  width: 100%;
}
.data-table th,
.data-table td {
  padding: 0.4rem 1rem;
  text-align: center;
  line-height: 1.6;
  font-size: 0.7rem;
}
.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 {
  font-weight: 700;
  background-color: #f9fafb;
  border: 1px solid #d6d6dd;
  color: #6b7077;
}
.data-table th:first-child {
  border-left: 0;
}
.data-table th:last-child {
  border-right: 0;
}
.data-table td {
  border: 1px solid #d6d6dd;
}
.data-table td:first-child {
  border-left: 0;
}
.data-table td:last-child {
  border-right: 0;
}

.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: #f47725;
}
.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: #ea002c;
}
.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;
}
@media (max-width: 900px) {
  .selector-cover .selector-text {
    font-size: 0.7rem;
  }
}
.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: #f47725;
}
.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: #ea002c;
}
.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-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: #f47725;
  vertical-align: middle;
}
.select-box-container .form-select {
  width: 100%;
  padding-right: 2rem;
  border: 1px solid #d6d6dd;
  color: #000;
  background: url("../images/components/icon-selectbox-arrow.png") no-repeat 0 0;
  background-position: calc(100% - 0.8rem) center;
  background-size: 1rem 1rem;
  -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.3rem;
  line-height: 2.3rem;
  font-size: 0.7rem;
}
.select-box-container.medium .form-select option {
  font-size: 0.7rem;
}
.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: #f47725;
}
.font.danger {
  color: #ea002c;
}
.font.dark {
  color: #111;
}
.font.lightSlightly {
  color: #a1a1a1;
}

.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: #f47725;
}
.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;
}
@media (max-width: 900px) {
  .layer-popup {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.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: 20px;
  overflow: hidden;
}
.layer-popup .popup-container.medium {
  max-width: 32rem;
}
.layer-popup .popup-container.small {
  max-width: 26rem;
}
.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-content {
  height: 100%;
  overflow: auto;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-inner {
  padding: 2rem 1rem 1.4rem;
  position: relative;
}
.layer-popup .popup-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0 0 0.4rem 0.4rem;
  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;
}
@media (max-width: 900px) {
  .layer-popup .popup-footer .btn-area .btn {
    height: 2.4rem;
    line-height: 2.4rem;
    font-size: 0.8rem;
  }
}
.layer-popup .popup-footer .btn-area .btn-close {
  background-color: #666;
}
.layer-popup .popup-footer .btn-area .btn-more {
  background-color: #ea002c;
}
.layer-popup .popup-footer .btn-area .btn-ok {
  background-color: #f47725;
}
.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: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: 0.4rem;
  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;
  }
}
.system-popup .common-popup-title {
  display: block;
  text-align: center;
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.4rem;
}
.system-popup .common-popup-title + .content-wrapper {
  margin-top: 1rem;
}
.system-popup .common-popup-text {
  text-align: center;
  line-height: 1.6;
  font-size: 0.7rem;
  color: #6b7077;
}
.system-popup .common-popup-text.warning {
  color: #ea002c;
}
.system-popup .common-popup-text + .content-wrapper {
  margin-top: 1rem;
}
.system-popup .check-today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.4rem;
}
.system-popup .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.system-popup .image-wrapper {
  text-align: center;
}
.system-popup .image-wrapper img {
  display: block;
  margin: 0 auto;
}
.system-popup .video-container .video-content {
  position: relative;
  padding-bottom: 56.25%;
}
.system-popup .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .system-popup .common-popup-title {
    font-size: 1rem;
  }
  .system-popup .common-popup-title + .content-wrapper {
    margin-top: 0.8rem;
  }
  .system-popup .common-popup-text {
    font-size: 0.6rem;
  }
  .system-popup .common-popup-text + .content-wrapper {
    margin-top: 0.8rem;
  }
  .system-popup .check-today {
    margin-top: 1.2rem;
  }
  .system-popup .content-wrapper {
    gap: 0.8rem;
  }
}
.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;
  }
}
.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; /*스크롤바 트랙 색상*/
}

.ui-datepicker {
  width: 16em !important;
  padding: 0.5rem !important;
}
@media (max-width: 900px) {
  .ui-datepicker {
    width: 15em !important;
  }
}
.ui-datepicker.ui-widget.ui-widget-content {
  margin-top: 0.5rem;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  top: 50% !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
  background-size: cover !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url("../images/components/icon-arrow-prev-bk-32x32.png") !important;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url("../images/components/icon-arrow-next-bk-32x32.png") !important;
}
.ui-datepicker .ui-widget-header {
  background-color: #fff;
  border: 0;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 0.6rem;
}
.ui-datepicker .ui-datepicker-title select {
  width: calc(45% - 10px) !important;
  margin: 0 0.25rem !important;
  padding: 0.25rem 0.5rem !important;
  border: 1px solid #ddd !important;
  font-size: 0.7rem !important;
}
.ui-datepicker .ui-state-default {
  border: 0 !important;
  background-color: #fff !important;
  text-align: center !important;
  font-size: 0.8rem;
}
.ui-datepicker .ui-state-default.ui-state-active {
  background-color: #f47725 !important;
  border-color: transparent !important;
  color: #fff !important;
}

.swiper-container {
  position: relative;
  overflow: hidden;
  margin: -4px 0;
  padding-bottom: 1px;
}
.swiper-container .swiper-wrapper {
  padding: 4px 0;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 2.4rem;
  height: 2.4rem;
  z-index: 2;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}
.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  display: none;
}
.swiper-container .swiper-button-next {
  right: 1rem;
  background-image: url("../images/icon/icon-arrow-next-bk-48x48.png");
}
.swiper-container .swiper-button-prev {
  left: 1rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background-image: url("../images/icon/icon-arrow-next-bk-48x48.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;
  z-index: 1;
  bottom: 0 !important;
  margin-top: 0.8rem;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  display: block;
  opacity: 1;
  background-color: #e1e3e6;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #111;
}

@media (max-width: 900px) {
  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    width: 1.6rem;
    height: 1.6rem;
  }
  .swiper-container .swiper-button-next {
    right: 0.4rem;
  }
  .swiper-container .swiper-button-prev {
    left: 0.4rem;
  }
  .swiper-container .swiper-pagination {
    margin-top: 0.8rem;
  }
}
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: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-list .accordion-header {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 2.6rem;
}
.accordion-list .accordion-header:after {
  display: block;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/icon/icon-arrow-down-bk-28x28.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: 900px) {
  .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(244, 119, 37, 0.4);
  border-radius: 50%;
  color: #f47725;
}
.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: #f47725 !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;
}

.blind {
  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;
}
.blind.focusable:active, .blind.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}

.custom-cursor-view:hover {
  cursor: url("../images/img-cursor-view.png") 5 5, auto;
}

.fs14 {
  font-size: 0.7rem;
}

.fs16 {
  font-size: 0.8rem;
}

.mt4 {
  margin-top: 0.2rem;
}

.mt12 {
  margin-top: 0.6rem;
}

.mt24 {
  margin-top: 1.2rem;
}

.mt60 {
  margin-top: 3rem;
}

.Margin-0 {
  margin: 0rem;
}

.Padding-0 {
  padding: 0rem;
}

.Padding-left-0 {
  padding-left: 0rem;
}

.Padding-left-5 {
  padding-left: 0.25rem;
}

.Padding-left-10 {
  padding-left: 0.5rem;
}

.Padding-left-15 {
  padding-left: 0.75rem;
}

.Padding-left-20 {
  padding-left: 1rem;
}

.Padding-left-25 {
  padding-left: 1.25rem;
}

.Padding-left-30 {
  padding-left: 1.5rem;
}

.Padding-left-35 {
  padding-left: 1.75rem;
}

.Padding-left-40 {
  padding-left: 2rem;
}

.Padding-left-45 {
  padding-left: 2.25rem;
}

.Padding-left-50 {
  padding-left: 2.5rem;
}

.Padding-left-55 {
  padding-left: 2.75rem;
}

.Padding-left-60 {
  padding-left: 3rem;
}

.Padding-left-65 {
  padding-left: 3.25rem;
}

.Padding-left-70 {
  padding-left: 3.5rem;
}

.Padding-left-75 {
  padding-left: 3.75rem;
}

.Padding-left-80 {
  padding-left: 4rem;
}

.Padding-left-85 {
  padding-left: 4.25rem;
}

.Padding-left-90 {
  padding-left: 4.5rem;
}

.Padding-left-95 {
  padding-left: 4.75rem;
}

.Padding-left-100 {
  padding-left: 5rem;
}

.Padding-right-0 {
  padding-right: 0rem;
}

.Padding-right-5 {
  padding-right: 0.25rem;
}

.Padding-right-10 {
  padding-right: 0.5rem;
}

.Padding-right-15 {
  padding-right: 0.75rem;
}

.Padding-right-20 {
  padding-right: 1rem;
}

.Padding-right-25 {
  padding-right: 1.25rem;
}

.Padding-right-30 {
  padding-right: 1.5rem;
}

.Padding-right-35 {
  padding-right: 1.75rem;
}

.Padding-right-40 {
  padding-right: 2rem;
}

.Padding-right-45 {
  padding-right: 2.25rem;
}

.Padding-right-50 {
  padding-right: 2.5rem;
}

.Padding-right-55 {
  padding-right: 2.75rem;
}

.Padding-right-60 {
  padding-right: 3rem;
}

.Padding-right-65 {
  padding-right: 3.25rem;
}

.Padding-right-70 {
  padding-right: 3.5rem;
}

.Padding-right-75 {
  padding-right: 3.75rem;
}

.Padding-right-80 {
  padding-right: 4rem;
}

.Padding-right-85 {
  padding-right: 4.25rem;
}

.Padding-right-90 {
  padding-right: 4.5rem;
}

.Padding-right-95 {
  padding-right: 4.75rem;
}

.Padding-right-100 {
  padding-right: 5rem;
}

.Padding-top-0 {
  padding-top: 0rem;
}

.Padding-top-5 {
  padding-top: 0.25rem;
}

.Padding-top-10 {
  padding-top: 0.5rem;
}

.Padding-top-15 {
  padding-top: 0.75rem;
}

.Padding-top-20 {
  padding-top: 1rem;
}

.Padding-top-25 {
  padding-top: 1.25rem;
}

.Padding-top-30 {
  padding-top: 1.5rem;
}

.Padding-top-35 {
  padding-top: 1.75rem;
}

.Padding-top-40 {
  padding-top: 2rem;
}

.Padding-top-45 {
  padding-top: 2.25rem;
}

.Padding-top-50 {
  padding-top: 2.5rem;
}

.Padding-top-55 {
  padding-top: 2.75rem;
}

.Padding-top-60 {
  padding-top: 3rem;
}

.Padding-top-65 {
  padding-top: 3.25rem;
}

.Padding-top-70 {
  padding-top: 3.5rem;
}

.Padding-top-75 {
  padding-top: 3.75rem;
}

.Padding-top-80 {
  padding-top: 4rem;
}

.Padding-top-85 {
  padding-top: 4.25rem;
}

.Padding-top-90 {
  padding-top: 4.5rem;
}

.Padding-top-95 {
  padding-top: 4.75rem;
}

.Padding-top-100 {
  padding-top: 5rem;
}

.Padding-bottom-0 {
  padding-bottom: 0rem;
}

.Padding-bottom-5 {
  padding-bottom: 0.25rem;
}

.Padding-bottom-10 {
  padding-bottom: 0.5rem;
}

.Padding-bottom-15 {
  padding-bottom: 0.75rem;
}

.Padding-bottom-20 {
  padding-bottom: 1rem;
}

.Padding-bottom-25 {
  padding-bottom: 1.25rem;
}

.Padding-bottom-30 {
  padding-bottom: 1.5rem;
}

.Padding-bottom-35 {
  padding-bottom: 1.75rem;
}

.Padding-bottom-40 {
  padding-bottom: 2rem;
}

.Padding-bottom-45 {
  padding-bottom: 2.25rem;
}

.Padding-bottom-50 {
  padding-bottom: 2.5rem;
}

.Padding-bottom-55 {
  padding-bottom: 2.75rem;
}

.Padding-bottom-60 {
  padding-bottom: 3rem;
}

.Padding-bottom-65 {
  padding-bottom: 3.25rem;
}

.Padding-bottom-70 {
  padding-bottom: 3.5rem;
}

.Padding-bottom-75 {
  padding-bottom: 3.75rem;
}

.Padding-bottom-80 {
  padding-bottom: 4rem;
}

.Padding-bottom-85 {
  padding-bottom: 4.25rem;
}

.Padding-bottom-90 {
  padding-bottom: 4.5rem;
}

.Padding-bottom-95 {
  padding-bottom: 4.75rem;
}

.Padding-bottom-100 {
  padding-bottom: 5rem;
}

.Margin-left-0 {
  margin-left: 0rem;
}

.Margin-left-5 {
  margin-left: 0.25rem;
}

.Margin-left-10 {
  margin-left: 0.5rem;
}

.Margin-left-15 {
  margin-left: 0.75rem;
}

.Margin-left-20 {
  margin-left: 1rem;
}

.Margin-left-25 {
  margin-left: 1.25rem;
}

.Margin-left-30 {
  margin-left: 1.5rem;
}

.Margin-left-35 {
  margin-left: 1.75rem;
}

.Margin-left-40 {
  margin-left: 2rem;
}

.Margin-left-45 {
  margin-left: 2.25rem;
}

.Margin-left-50 {
  margin-left: 2.5rem;
}

.Margin-left-55 {
  margin-left: 2.75rem;
}

.Margin-left-60 {
  margin-left: 3rem;
}

.Margin-left-65 {
  margin-left: 3.25rem;
}

.Margin-left-70 {
  margin-left: 3.5rem;
}

.Margin-left-75 {
  margin-left: 3.75rem;
}

.Margin-left-80 {
  margin-left: 4rem;
}

.Margin-left-85 {
  margin-left: 4.25rem;
}

.Margin-left-90 {
  margin-left: 4.5rem;
}

.Margin-left-95 {
  margin-left: 4.75rem;
}

.Margin-left-100 {
  margin-left: 5rem;
}

.Margin-right-0 {
  margin-right: 0rem;
}

.Margin-right-5 {
  margin-right: 0.25rem;
}

.Margin-right-10 {
  margin-right: 0.5rem;
}

.Margin-right-15 {
  margin-right: 0.75rem;
}

.Margin-right-20 {
  margin-right: 1rem;
}

.Margin-right-25 {
  margin-right: 1.25rem;
}

.Margin-right-30 {
  margin-right: 1.5rem;
}

.Margin-right-35 {
  margin-right: 1.75rem;
}

.Margin-right-40 {
  margin-right: 2rem;
}

.Margin-right-45 {
  margin-right: 2.25rem;
}

.Margin-right-50 {
  margin-right: 2.5rem;
}

.Margin-right-55 {
  margin-right: 2.75rem;
}

.Margin-right-60 {
  margin-right: 3rem;
}

.Margin-right-65 {
  margin-right: 3.25rem;
}

.Margin-right-70 {
  margin-right: 3.5rem;
}

.Margin-right-75 {
  margin-right: 3.75rem;
}

.Margin-right-80 {
  margin-right: 4rem;
}

.Margin-right-85 {
  margin-right: 4.25rem;
}

.Margin-right-90 {
  margin-right: 4.5rem;
}

.Margin-right-95 {
  margin-right: 4.75rem;
}

.Margin-right-100 {
  margin-right: 5rem;
}

.Margin-top-0 {
  margin-top: 0rem;
}

.Margin-top-5 {
  margin-top: 0.25rem;
}

.Margin-top-12 {
  margin-top: 0.6rem;
}

.Margin-top-15 {
  margin-top: 0.75rem;
}

.Margin-top-20 {
  margin-top: 1rem;
}

.Margin-top-25 {
  margin-top: 1.25rem;
}

.Margin-top-30 {
  margin-top: 1.5rem;
}

.Margin-top-35 {
  margin-top: 1.75rem;
}

.Margin-top-40 {
  margin-top: 2rem;
}

.Margin-top-45 {
  margin-top: 2.25rem;
}

.Margin-top-50 {
  margin-top: 2.5rem;
}

.Margin-top-55 {
  margin-top: 2.75rem;
}

.Margin-top-60 {
  margin-top: 3rem;
}

.Margin-top-65 {
  margin-top: 3.25rem;
}

.Margin-top-70 {
  margin-top: 3.5rem;
}

.Margin-top-75 {
  margin-top: 3.75rem;
}

.Margin-top-80 {
  margin-top: 4rem;
}

.Margin-top-85 {
  margin-top: 4.25rem;
}

.Margin-top-90 {
  margin-top: 4.5rem;
}

.Margin-top-95 {
  margin-top: 4.75rem;
}

.Margin-top-120 {
  margin-top: 5rem;
}

.Margin-bottom-0 {
  margin-bottom: 0rem;
}

.Margin-bottom-5 {
  margin-bottom: 0.25rem;
}

.Margin-bottom-10 {
  margin-bottom: 0.5rem;
}

.Margin-bottom-15 {
  margin-bottom: 0.75rem;
}

.Margin-bottom-20 {
  margin-bottom: 1rem;
}

.Margin-bottom-25 {
  margin-bottom: 1.25rem;
}

.Margin-bottom-30 {
  margin-bottom: 1.5rem;
}

.Margin-bottom-35 {
  margin-bottom: 1.75rem;
}

.Margin-bottom-40 {
  margin-bottom: 2rem;
}

.Margin-bottom-45 {
  margin-bottom: 2.25rem;
}

.Margin-bottom-50 {
  margin-bottom: 2.5rem;
}

.Margin-bottom-55 {
  margin-bottom: 2.75rem;
}

.Margin-bottom-60 {
  margin-bottom: 3rem;
}

.Margin-bottom-65 {
  margin-bottom: 3.25rem;
}

.Margin-bottom-70 {
  margin-bottom: 3.5rem;
}

.Margin-bottom-75 {
  margin-bottom: 3.75rem;
}

.Margin-bottom-80 {
  margin-bottom: 4rem;
}

.Margin-bottom-85 {
  margin-bottom: 4.25rem;
}

.Margin-bottom-90 {
  margin-bottom: 4.5rem;
}

.Margin-bottom-95 {
  margin-bottom: 4.75rem;
}

.Margin-bottom-100 {
  margin-bottom: 5rem;
}

.text-clip-ani {
  -webkit-animation: textClipPathLeft 1s both ease-out;
          animation: textClipPathLeft 1s both ease-out;
}

@-webkit-keyframes textClipPathLeft {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes textClipPathLeft {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.no-cursor {
  pointer-events: none;
}

/*============================================================
layout align
============================================================*/
.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-box-int {
  display: block !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-rv {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-rv {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-spc-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-spc-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-spc-cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-spc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-align-cnt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.flex-align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-align-int {
  -webkit-box-align: initial !important;
      -ms-flex-align: initial !important;
          align-items: initial !important;
}

.flex-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.gap0 {
  gap: 0;
}

.gap06 {
  gap: 0.3rem;
}

.gap08 {
  gap: 0.4rem;
}

.gap12 {
  gap: 0.6rem;
}

.gap16 {
  gap: 0.8rem;
}

.gap20 {
  gap: 1rem;
}

.gap24 {
  gap: 1.2rem;
}

.gap32 {
  gap: 1.6rem;
}

.gap48 {
  gap: 2.4rem;
}

.row-gap06 {
  row-gap: 0.3rem;
}

.row-gap08 {
  row-gap: 0.4rem;
}

.row-gap12 {
  row-gap: 0.6rem;
}

.row-gap24 {
  row-gap: 1.2rem;
}

.row-gap32 {
  row-gap: 1.6rem;
}

.row-gap48 {
  row-gap: 2.4rem;
}

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.p10 {
  padding: 0.5rem !important;
}

.pt10 {
  padding-top: 0.5rem !important;
}

.pb10 {
  padding-bottom: 0.5rem !important;
}

.pl10 {
  padding-left: 0.5rem !important;
}

.pr10 {
  padding-right: 0.5rem !important;
}

.p15 {
  padding: 0.75rem !important;
}

.pt15 {
  padding-top: 0.75rem !important;
}

.pb15 {
  padding-bottom: 0.75rem !important;
}

.pl15 {
  padding-left: 0.75rem !important;
}

.pr15 {
  padding-right: 0.75rem !important;
}

.p20 {
  padding: 1rem !important;
}

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

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

.pl20 {
  padding-left: 1rem !important;
}

.pr20 {
  padding-right: 1rem !important;
}

.p30 {
  padding: 1.5rem !important;
}

.pt30 {
  padding-top: 1.5rem !important;
}

.pb30 {
  padding-bottom: 1.5rem !important;
}

.pl30 {
  padding-left: 1.5rem !important;
}

.pr30 {
  padding-right: 1.5rem !important;
}

.p40 {
  padding: 2rem !important;
}

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

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

.pl40 {
  padding-left: 2rem !important;
}

.pr40 {
  padding-right: 2rem !important;
}

.p50 {
  padding: 2.5rem !important;
}

.pt50 {
  padding-top: 2.5rem !important;
}

.pb50 {
  padding-bottom: 2.5rem !important;
}

.pl50 {
  padding-left: 2.5rem !important;
}

.pr50 {
  padding-right: 2.5rem !important;
}

.p60 {
  padding: 3rem !important;
}

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

.pb60 {
  padding-bottom: 3rem !important;
}

.pl60 {
  padding-left: 3rem !important;
}

.pr60 {
  padding-right: 3rem !important;
}

.p70 {
  padding: 3.5rem !important;
}

.pt70 {
  padding-top: 3.5rem !important;
}

.pb70 {
  padding-bottom: 3.5rem !important;
}

.pl70 {
  padding-left: 3.5rem !important;
}

.pr70 {
  padding-right: 3.5rem !important;
}

.p80 {
  padding: 4rem !important;
}

.pt80 {
  padding-top: 4rem !important;
}

.pb80 {
  padding-bottom: 4rem !important;
}

.pl80 {
  padding-left: 4rem !important;
}

.pr80 {
  padding-right: 4rem !important;
}

.p90 {
  padding: 4.5rem !important;
}

.pt90 {
  padding-top: 4.5rem !important;
}

.pb90 {
  padding-bottom: 4.5rem !important;
}

.pl90 {
  padding-left: 4.5rem !important;
}

.pr90 {
  padding-right: 4.5rem !important;
}

.p100 {
  padding: 5rem !important;
}

.pt100 {
  padding-top: 5rem !important;
}

.pb100 {
  padding-bottom: 5rem !important;
}

.pl100 {
  padding-left: 5rem !important;
}

.pr100 {
  padding-right: 5rem !important;
}

/* margin
============================================================*/
.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mt8 {
  margin-top: 0.4rem !important;
}

.mb8 {
  margin-bottom: 0.4rem !important;
}

.m10 {
  margin: 0.5rem !important;
}

.mt10 {
  margin-top: 0.5rem !important;
}

.mt12 {
  margin-top: 0.6rem !important;
}

.mb10 {
  margin-bottom: 0.5rem !important;
}

.ml10 {
  margin-left: 0.5rem !important;
}

.mr10 {
  margin-right: 0.5rem !important;
}

.mb12 {
  margin-bottom: 0.5rem !important;
}

.m15 {
  margin: 0.75rem !important;
}

.mt15 {
  margin-top: 0.75rem !important;
}

.mb15 {
  margin-bottom: 0.75rem !important;
}

.ml15 {
  margin-left: 0.75rem !important;
}

.mr15 {
  margin-right: 0.75rem !important;
}

.m20 {
  margin: 1rem !important;
}

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

.mb20 {
  margin-bottom: 1rem !important;
}

.ml20 {
  margin-left: 1rem !important;
}

.mr20 {
  margin-right: 1rem !important;
}

.mt24 {
  margin-top: 1.2rem !important;
}

.m30 {
  margin: 1.5rem !important;
}

.mt30 {
  margin-top: 1.5rem !important;
}

.mb30 {
  margin-bottom: 1.5rem !important;
}

.ml30 {
  margin-left: 1.5rem !important;
}

.mr30 {
  margin-right: 1.5rem !important;
}

.m40 {
  margin: 2rem !important;
}

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

.mb40 {
  margin-bottom: 2rem !important;
}

.ml40 {
  margin-left: 2rem !important;
}

.mr40 {
  margin-right: 2rem !important;
}

.m50 {
  margin: 2.5rem !important;
}

.mt50 {
  margin-top: 2.5rem !important;
}

.mb50 {
  margin-bottom: 2.5rem !important;
}

.ml50 {
  margin-left: 2.5rem !important;
}

.mr50 {
  margin-right: 2.5rem !important;
}

.m60 {
  margin: 3rem !important;
}

.mt60 {
  margin-top: 3rem !important;
}

.mb60 {
  margin-bottom: 3rem !important;
}

.ml60 {
  margin-left: 3rem !important;
}

.mr60 {
  margin-right: 3rem !important;
}

.m70 {
  margin: 3.5rem !important;
}

.mt70 {
  margin-top: 3.5rem !important;
}

.mb70 {
  margin-bottom: 3.5rem !important;
}

.ml70 {
  margin-left: 3.5rem !important;
}

.mr70 {
  margin-right: 3.5rem !important;
}

.m80 {
  margin: 4rem !important;
}

.mt80 {
  margin-top: 4rem !important;
}

.mb80 {
  margin-bottom: 4rem !important;
}

.ml80 {
  margin-left: 4rem !important;
}

.mr80 {
  margin-right: 4rem !important;
}

.m90 {
  margin: 4.5rem !important;
}

.mt90 {
  margin-top: 4.5rem !important;
}

.mb90 {
  margin-bottom: 4.5rem !important;
}

.ml90 {
  margin-left: 4.5rem !important;
}

.mr90 {
  margin-right: 4.5rem !important;
}

.m100 {
  margin: 5rem !important;
}

.mt100 {
  margin-top: 5rem !important;
}

.mb100 {
  margin-bottom: 5rem !important;
}

.ml100 {
  margin-left: 5rem !important;
}

.mr100 {
  margin-right: 5rem !important;
}

html,
body {
  height: 100%;
  overscroll-behavior: none;
}

.section-inner {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0px 40px;
}
.section-inner.fix {
  max-width: 84rem;
}

@media (max-width: 1600px) {
  .section-inner {
    padding: 0 2rem;
  }
}
@media (max-width: 900px) {
  .section-inner {
    padding: 0px 0.8rem;
  }
}
.skip_nav {
  position: relative;
  z-index: 300;
}
.skip_nav a {
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 100%;
  background-color: #000;
  text-align: center;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: #fff;
}
.skip_nav a:focus, .skip_nav a:active {
  top: 0;
  z-index: 100;
}

#header {
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  height: 4.2rem;
  background-color: #f2f3f5;
}
#header:hover, #header:focus-within {
  background-color: #fff !important;
}
#header:hover .header-search, #header:focus-within .header-search {
  background-color: #f2f3f5;
}
#header.scroll {
  background-color: #fff !important;
}
#header.scroll .header-search {
  background-color: #f2f3f5;
}
#header.scroll.scrolling {
  background-color: transparent !important;
}
#header.scroll.scrolling:hover {
  background-color: #fff !important;
}
#header.bg-white {
  background-color: #fff;
}
#header.bg-white .header-search {
  background-color: #f2f3f5;
}
#header.bg-dark {
  background-color: #111;
}
#header.bg-dark .header-logo .logo-white {
  display: block;
}
#header.bg-dark .header-logo .logo-bk {
  display: none;
}
#header.bg-dark .header-gnb-item > .gnb-depth-01 {
  color: #fff;
}
#header.bg-dark .header-search {
  background-color: #1f2023;
}
#header.bg-dark .header-search .form-input {
  color: #fff;
}
#header.bg-dark .header-search .form-input::-webkit-input-placeholder {
  color: #fff;
}
#header.bg-dark .header-search .form-input::-moz-placeholder {
  color: #fff;
}
#header.bg-dark .header-search .form-input::-ms-input-placeholder {
  color: #fff;
}
#header.bg-dark .header-search .form-input::placeholder {
  color: #fff;
}
#header.bg-dark .header-search .btn-search {
  background-image: url("../images/icon/icon-search-w-20x20.png");
}
#header.bg-none {
  background-color: transparent;
}
#header .section-inner {
  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;
  height: 100%;
}
#header .header-logo a {
  display: block;
}
#header .header-logo img {
  display: block;
  width: 8.25rem;
}
#header .header-logo .logo-white {
  display: none;
}
#header .header-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
#header .header-gnb-item {
  padding: 1.65rem 0.9rem;
}
#header .header-gnb-item:nth-child(4) .header-sub-menu-list {
  gap: 2rem;
}
#header .header-gnb-item:nth-child(4) .header-sub-menu-item {
  width: calc(25% - 1.5rem);
  max-width: 16rem;
}
#header .header-gnb-item:hover > .gnb-depth-01, #header .header-gnb-item:focus-within > .gnb-depth-01 {
  color: #f47725;
}
#header .header-gnb-item:hover .header-sub-menu, #header .header-gnb-item:focus-within .header-sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .header-gnb-item .gnb-depth-01 {
  display: block;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  line-height: 1;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-size: 0.9rem;
}
#header .header-sub-menu {
  opacity: 0;
  visibility: hidden;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: calc(100% - 0.05rem);
  width: 100vw;
  min-height: 7.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1rem 2rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0509803922);
  border-top: 1px solid #d6d6dd;
}
#header .header-sub-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
#header .header-sub-menu-item {
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  width: calc(33.333% - 2rem);
  padding: 1rem;
  max-width: 17rem;
  border-radius: 0.4rem;
}
#header .header-sub-menu-item:hover {
  background-color: #f2f3f5;
}
#header .header-sub-menu-item:hover .thumbnail {
  background-color: #fff;
}
#header .header-sub-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .header-sub-menu-item .title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
}
#header .header-sub-menu-item .title .icon-arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon/icon-arrow-up-right-bk-24x24.png") no-repeat 0 0;
  background-size: cover;
}
#header .header-sub-menu-item .sub-text {
  margin-top: 0.4rem;
  line-height: 1.6;
  font-size: 0.7rem;
  color: #6b7077;
}
#header .header-sub-menu-item .thumbnail {
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  background-color: #f2f3f5;
}
#header .header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 14rem;
  height: 2rem;
  padding: 0 0.8rem;
  gap: 1rem;
  background-color: #fff;
}
#header .header-search .form-input {
  display: block;
  width: 100%;
  height: 1.5rem;
  font-size: 0.7rem;
  border: 0;
  background-color: transparent;
  color: #111;
}
#header .header-search .btn-search {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/icon/icon-search-bk-20x20.png");
  text-indent: -9999px;
}
#header .btn-mobile-menu {
  display: none;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  text-indent: -9999px;
  background: url("../images/layout/icon-mobile-gnb-menu.png") no-repeat 0 0;
  background-size: 100% auto;
}

.mobile-menu-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #111;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu-container.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu-container::-webkit-scrollbar {
  display: none;
}
.mobile-menu-container .menu-top {
  background-color: #fff;
}
.mobile-menu-container .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 2.8rem;
  padding: 0 0.8rem;
}
.mobile-menu-container .header-logo a,
.mobile-menu-container .header-logo img {
  display: block;
}
.mobile-menu-container .header-logo img {
  width: 6rem;
}
.mobile-menu-container .btn-mobile-close {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../images/icon/icon-close-bk-24x24.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  color: transparent;
}
.mobile-menu-container .header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.4rem;
  position: relative;
  height: 3.6rem;
  padding: 0 0.8rem;
  border-top: 1px solid #e1e3e6;
  border-bottom: 1px solid #e1e3e6;
}
.mobile-menu-container .header-search .form-input {
  display: block;
  width: 100%;
  height: 1.5rem;
  font-size: 0.8rem;
  border: 0;
  background-color: transparent;
  color: #111;
}
.mobile-menu-container .header-search .btn-search {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/icon/icon-search-bk-24x24.png");
  text-indent: -9999px;
}
.mobile-menu-container .menu-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 3rem 0.8rem;
  background-color: #fff;
}
.mobile-menu-container .header-gnb-item.active .gnb-depth-01 {
  color: #f47725;
}
.mobile-menu-container .header-gnb-item.active .gnb-depth-01::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.mobile-menu-container .header-gnb-item.active .header-sub-menu {
  display: block;
}
.mobile-menu-container .header-gnb-item + .header-gnb-item {
  margin-top: 2rem;
}
.mobile-menu-container .header-gnb-item .gnb-depth-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.4rem;
  position: relative;
  width: 100%;
  line-height: 1;
  font-weight: 600;
  font-size: 0.9rem;
}
.mobile-menu-container .header-gnb-item .gnb-depth-01::after {
  display: none;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/icon/icon-arrow-down-bk-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.mobile-menu-container .header-sub-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 57.78%;
  height: 100%;
  padding: 3rem 1.2rem;
  background-color: #f2f3f5;
  border-left: 1px solid #e1e3e6;
}
.mobile-menu-container .header-sub-menu-item + .header-sub-menu-item {
  margin-top: 1.2rem;
}
.mobile-menu-container .header-sub-menu-item .title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
}
.mobile-menu-container .header-sub-menu-item .title .icon-arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon/icon-arrow-up-right-bk-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.mobile-menu-container .menu-footer {
  padding: 1.8rem 0.8rem;
  background-color: #111;
}
.mobile-menu-container .menu-footer .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
}
.mobile-menu-container .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu-container .footer-menu .item-title {
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
}
.mobile-menu-container .footer-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  width: calc(50% - 0.2rem);
  height: 2rem;
  padding: 0px 0.6rem;
  border-radius: 0.1rem;
  font-size: 0.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mobile-menu-container .footer-menu-link::after {
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-image: url("../images/icon/icon-arrow-up-right-w-20x20.png");
  background-size: cover;
}

@media (max-width: 900px) {
  #header {
    height: 2.8rem;
  }
  #header .header-logo img {
    width: 6rem;
  }
  #header .header-gnb {
    display: none;
  }
  #header .header-search {
    display: none;
  }
  #header .btn-mobile-menu {
    display: block;
  }
}
#container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  min-height: 100dvh;
  background-color: #f2f3f5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#container.main #header {
  opacity: 0;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  margin: 0 auto;
  background-color: #f2f3f5;
}
#content:focus-visible {
  outline: none;
}

#footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0px;
  background-color: #111;
}
#footer .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .footer-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#footer .footer-mark {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 600;
  font-size: 4.4rem;
  color: rgba(255, 255, 255, 0.1);
}
#footer .footer-etc .logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
#footer .footer-etc .logo-area .item:nth-child(1) {
  width: 2.7rem;
}
#footer .footer-etc .logo-area .item:nth-child(2) {
  width: 2rem;
}
#footer .footer-etc .info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}
#footer .footer-etc .btn-terms {
  font-weight: 700;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}
#footer .footer-etc .copyright {
  position: relative;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  line-height: 1.6;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}
#footer .footer-etc .copyright::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -0.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.05rem;
  height: 0.6rem;
  background-color: rgba(255, 255, 255, 0.2);
}
#footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
#footer .footer-menu .item-title {
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}
#footer .footer-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  width: 11rem;
  height: 2rem;
  padding: 0px 1.2rem;
  border-radius: 0.1rem;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#footer .footer-menu-link + .footer-menu-link {
  margin-top: 0.4rem;
}
#footer .footer-menu-link::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("../images/icon/icon-arrow-up-right-w-20x20.png");
  background-size: cover;
}

@media (max-width: 900px) {
  #footer {
    padding: 3rem 0px;
  }
  #footer .section-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
  #footer .footer-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  #footer .footer-mark {
    display: none;
  }
  #footer .footer-etc .logo-area {
    gap: 0.8rem;
  }
  #footer .footer-etc .logo-area .item:nth-child(1) {
    width: 2.7rem;
  }
  #footer .footer-etc .logo-area .item:nth-child(2) {
    width: 2rem;
  }
  #footer .footer-etc .info-area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.2rem;
    margin-top: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .footer-etc .btn-terms {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
  }
  #footer .footer-etc .copyright {
    line-height: 1.4;
    font-size: 0.6rem;
  }
  #footer .footer-etc .copyright::before {
    display: none;
  }
  #footer .footer-menu {
    gap: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #footer .footer-menu .item-title {
    width: 100%;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }
  #footer .footer-menu-item {
    width: 100%;
  }
  #footer .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4rem;
  }
  #footer .footer-menu-link {
    gap: 0.2rem;
    width: calc(50% - 0.2rem);
    height: 2rem;
    padding: 0px 0.6rem;
    border-radius: 0.1rem;
    font-size: 0.6rem;
  }
  #footer .footer-menu-link + .footer-menu-link {
    margin-top: 0;
  }
  #footer .footer-menu-link::after {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.fixed-btn-top {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 0.7rem;
  text-indent: -9999px;
  width: 2.6rem;
  height: 2.6rem;
  background: url("../images/icon/icon-top-btn.png") no-repeat 0 0;
  background-size: cover;
  z-index: 3;
}

@media (max-width: 900px) {
  .fixed-btn-top {
    bottom: 1.2rem;
    right: 0.4rem;
  }
}
.main-page-content.new {
  background-color: #fff !important;
}
.main-page-content.new .fp-section {
  height: 100vh;
}
.main-page-content.new .hero-section {
  background-color: #fff;
}
.main-page-content.new .hero-section .video-container {
  opacity: 0;
  padding-top: 4.15rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100vh;
}
.main-page-content.new .hero-section .video-container.play .video-thumbnail {
  opacity: 0;
  visibility: hidden;
}
.main-page-content.new .hero-section .video-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-page-content.new .hero-section .video-content .video-inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-page-content.new .hero-section .video-content .video-inner::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: transparent;
}
.main-page-content.new .hero-section .video-content .video-inner video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main-page-content.new .hero-section .video-content .video-thumbnail {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.main-page-content.new .hero-section .video-content .video-thumbnail img {
  width: 100%;
}
@-webkit-keyframes thumbnailShow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes thumbnailShow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main-page-content.new .hero-section .video-content iframe {
  pointer-events: none;
  position: absolute;
  top: calc(50% - 1rem);
  left: 50%;
  width: 101vw;
  height: 100vh;
  min-height: 43rem;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1350px) {
  .main-page-content.new .hero-section .video-content iframe {
    width: 130vw;
  }
}
.main-page-content.new .hero-section .btn-video-sound {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  text-indent: -9999px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("../images/icon/icon-sound-on.png");
}
.main-page-content.new .hero-section .btn-video-sound.off {
  background-image: url("../images/icon/icon-sound-off.png");
}
.main-page-content.new .hero-section .recruit-box {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 1.35rem;
  right: 1.2rem;
  z-index: 2;
}
.main-page-content.new .hero-section .recruit-box.show {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .hero-section .recruit-box:hover .inner {
  border-color: #fff;
}
.main-page-content.new .hero-section .recruit-box .inner {
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 0.4rem;
  backdrop-filter: blur(28px);
  -webkit-box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.1019607843);
}
.main-page-content.new .hero-section .recruit-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}
.main-page-content.new .hero-section .recruit-box .title .icon {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("../images/main/icon-recruit-box.png") no-repeat 0 0;
  background-size: cover;
}
.main-page-content.new .hero-section .recruit-box .sub-text {
  display: block;
  display: -webkit-box;
  max-height: 3.2em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 0.7rem;
  color: #111;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.main-page-content.new .hero-section .recruit-box .sub-text + .sub-text {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}
.main-page-content.new .hero-section .recruit-box .btn-more {
  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;
  -ms-flex-item-align: end;
      align-self: flex-end;
  gap: 0.1rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 3.9rem;
  height: 1.8rem;
  border-radius: 2.6rem;
  font-weight: 700;
  font-size: 0.6rem;
  color: #111;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
}
.main-page-content.new .hero-section .recruit-box .btn-more::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: url("../images/icon/icon-more-bk-12x12.png") no-repeat 0 0;
  background-size: cover;
}
.main-page-content.new .intro-section {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}
.main-page-content.new .intro-section.slider-video .slide-item .object video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page-content.new .intro-section .slide-item {
  padding: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.main-page-content.new .intro-section .slide-item.slide-active .sub-title,
.main-page-content.new .intro-section .slide-item.slide-active .title,
.main-page-content.new .intro-section .slide-item.slide-active .sub-text, .main-page-content.new .intro-section .slide-item.show .sub-title,
.main-page-content.new .intro-section .slide-item.show .title,
.main-page-content.new .intro-section .slide-item.show .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.6s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.6s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.main-page-content.new .intro-section .slide-item.slide-active .object, .main-page-content.new .intro-section .slide-item.show .object {
  -webkit-animation: objectShow 1.5s both;
          animation: objectShow 1.5s both;
}
.main-page-content.new .intro-section .slide-item.slide-active .slide-pagination .item-pagination, .main-page-content.new .intro-section .slide-item.show .slide-pagination .item-pagination {
  -webkit-animation: pagingScale 0.6s both;
          animation: pagingScale 0.6s both;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.main-page-content.new .intro-section .slide-item.slide-01 .lottie-object {
  width: 39rem;
  height: 39rem;
  margin-left: -6rem;
}
.main-page-content.new .intro-section .slide-item.slide-01 .part-object-01 {
  width: 45rem;
  bottom: 0;
  left: 50%;
  margin-left: -20rem;
}
.main-page-content.new .intro-section .slide-item.slide-01 .part-object-02 {
  width: 18.5rem;
  top: 0;
  left: 50%;
  margin-left: 18rem;
}
.main-page-content.new .intro-section .slide-item.slide-02 .lottie-object {
  width: 38rem;
  height: 38rem;
  margin-left: -3.5rem;
}
.main-page-content.new .intro-section .slide-item.slide-02 .part-object-01 {
  width: 51rem;
  bottom: 0;
  left: 50%;
  margin-left: -20rem;
}
.main-page-content.new .intro-section .slide-item.slide-02 .part-object-02 {
  width: 22.25rem;
  top: 0;
  left: 50%;
  margin-left: 17rem;
}
.main-page-content.new .intro-section .slide-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-page-content.new .intro-section .slide-item .sub-title,
.main-page-content.new .intro-section .slide-item .title,
.main-page-content.new .intro-section .slide-item .sub-text {
  opacity: 0;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .item-pagination {
  opacity: 0;
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.main-page-content.new .intro-section .slide-item .object {
  opacity: 0;
  z-index: 1;
}
.main-page-content.new .intro-section .slide-item .lottie-object {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.main-page-content.new .intro-section .slide-item .part-object {
  position: absolute;
  z-index: 2;
}
.main-page-content.new .intro-section .slide-item .title-area {
  position: relative;
  z-index: 2;
  padding-left: 8rem;
}
.main-page-content.new .intro-section .slide-item .sub-title {
  font-weight: 700;
  font-size: 1rem;
}
.main-page-content.new .intro-section .slide-item .title {
  margin-top: 1.2rem;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.main-page-content.new .intro-section .slide-item .sub-text {
  margin-top: 1.2rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.main-page-content.new .intro-section .slide-item .slide-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  margin-top: 2.4rem;
  position: relative;
  z-index: 2;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .item-pagination {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #e1e3e6;
  text-indent: -9999px;
  color: transparent;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .item-pagination.active {
  background-color: #f47725;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
  background-color: transparent;
  opacity: 1;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet:hover {
  cursor: pointer;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet::before {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: block;
  content: "";
  -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: #e1e3e6;
}
.main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet-active::before {
  background-color: #ff6600;
}
@-webkit-keyframes objectShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes objectShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes pagingScale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pagingScale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.main-page-content.new .story-section {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 4.2rem;
  background-color: #fff;
}
.main-page-content.new .story-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  max-width: 72rem;
}
.main-page-content.new .story-section .headline-thumbnail {
  position: relative;
  width: 23.6rem;
  height: 30rem;
  overflow: hidden;
}
.main-page-content.new .story-section .headline-thumbnail .img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-page-content.new .story-section .headline-thumbnail .img a:focus-visible .title-area {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .story-section .headline-thumbnail .img a:focus-visible::before {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .story-section .headline-thumbnail .img:hover .title-area {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .story-section .headline-thumbnail .img:hover a::before {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .story-section .headline-thumbnail .img.show {
  opacity: 1;
  visibility: visible;
}
.main-page-content.new .story-section .headline-thumbnail .img.show img {
  visibility: visible;
  -webkit-transition: opacity 0.5s, -webkit-transform 1.6s;
  transition: opacity 0.5s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 0.5s;
  transition: transform 1.6s, opacity 0.5s, -webkit-transform 1.6s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.main-page-content.new .story-section .headline-thumbnail .img a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.main-page-content.new .story-section .headline-thumbnail .img a::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.main-page-content.new .story-section .headline-thumbnail .img a,
.main-page-content.new .story-section .headline-thumbnail .img img {
  display: block;
}
.main-page-content.new .story-section .headline-thumbnail .img img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: 100%;
  height: 100%;
}
.main-page-content.new .story-section .headline-thumbnail .title-area {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  margin-top: 0.8rem;
}
.main-page-content.new .story-section .headline-thumbnail .label {
  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: 4rem;
  height: 1.2rem;
  font-size: 0.65rem;
  background-color: #111;
  color: #fff;
}
.main-page-content.new .story-section .headline-thumbnail .title {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.main-page-content.new .story-section .story-slider-container .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-page-content.new .story-section .story-slider-container .content-title .title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.32;
}
.main-page-content.new .story-section .story-slider-container .content-title .title.active {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.main-page-content.new .story-section .story-slider-container .control-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.main-page-content.new .story-section .story-slider-container .swiper-button {
  display: block;
  position: static;
  margin-top: 0;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
}
.main-page-content.new .story-section .story-slider-container .swiper-button::after {
  display: none;
}
.main-page-content.new .story-section .story-slider-container .swiper-button-prev {
  background-image: url("../images/icon/icon-arrow-prev-bk-48x48.png");
}
.main-page-content.new .story-section .story-slider-container .swiper-button-next {
  background-image: url("../images/icon/icon-arrow-next-bk-48x48.png");
}
.main-page-content.new .story-section .story-slider-container .mobile-control {
  display: none;
}
.main-page-content.new .story-section .story-slider {
  width: 42.4rem;
  margin-top: 2.2rem;
}
.main-page-content.new .story-section .story-slider .swiper-wrapper {
  margin: 0 -0.4rem;
}
.main-page-content.new .story-section .swiper-slide {
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 13.6rem;
  margin: 0rem 0.4rem;
  padding: 1px;
}
.main-page-content.new .story-section .swiper-slide:hover .title {
  color: #f47725;
}
.main-page-content.new .story-section .swiper-slide a {
  display: block;
}
.main-page-content.new .story-section .swiper-slide .thumbnail {
  position: relative;
  padding-bottom: 127.2058823529%;
  overflow: hidden;
}
.main-page-content.new .story-section .swiper-slide .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-page-content.new .story-section .swiper-slide .title-area {
  margin-top: 0.8rem;
}
.main-page-content.new .story-section .swiper-slide .label {
  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: 4rem;
  height: 1.2rem;
  font-size: 0.65rem;
  background-color: #111;
  color: #fff;
}
.main-page-content.new .story-section .swiper-slide .title {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}
.main-page-content.new .fp-fixed-pagination {
  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: 1.2rem;
  position: fixed;
  left: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media (min-width: 1681px) {
  .main-page-content.new .fp-fixed-pagination {
    left: 50%;
    margin-left: -39rem;
  }
}
.main-page-content.new .fp-fixed-pagination.hide {
  opacity: 0;
  visibility: hidden;
}
.main-page-content.new .fp-fixed-pagination.dark .full-paging {
  background-color: #000;
}
.main-page-content.new .fp-fixed-pagination.dark .full-paging.active {
  border-color: #000;
}
@media (max-width: 1600px) {
  .main-page-content.new .fp-fixed-pagination.dark.section-02 .full-paging {
    background-color: #fff;
  }
  .main-page-content.new .fp-fixed-pagination.dark.section-02 .full-paging.active {
    border-color: #fff;
  }
}
.main-page-content.new .fp-fixed-pagination .full-paging {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #000;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  border: 2px solid transparent;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
.main-page-content.new .fp-fixed-pagination .full-paging.active {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-color: #000;
}

@media (max-width: 900px) {
  .main-page-content.new {
    padding-top: 0;
  }
  .main-page-content.new .fp-overflow::-webkit-scrollbar {
    display: none;
  }
  .main-page-content.new .hero-section {
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-page-content.new .hero-section .video-container {
    opacity: 1;
    padding-top: 3.6rem;
    height: auto;
    overflow: hidden;
  }
  .main-page-content.new .hero-section .video-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .main-page-content.new .hero-section .video-content .video-inner video {
    height: 100%;
    top: 50%;
  }
  .main-page-content.new .hero-section .video-content iframe {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: 50%;
    min-height: auto;
  }
  .main-page-content.new .hero-section .recruit-box {
    display: none;
  }
  .main-page-content.new .hero-section .btn-video-sound {
    top: 0.8rem;
    left: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .main-page-content.new .intro-section {
    padding-top: 0;
  }
  .main-page-content.new .intro-section .slide-item {
    padding: 0;
    padding-top: 3.8rem;
    height: auto !important;
    min-height: auto !important;
  }
  .main-page-content.new .intro-section .slide-item .object video {
    max-width: 23rem;
    left: auto !important;
    right: 0 !important;
  }
  .main-page-content.new .intro-section .slide-item .fp-overflow {
    overflow-x: hidden;
    height: 100%;
  }
  .main-page-content.new .intro-section .slide-item a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-bottom: 7.35rem;
  }
}
@media (max-width: 900px) and (max-height: 580px) {
  .main-page-content.new .intro-section .slide-item a {
    padding-bottom: 4.5rem;
  }
}
@media (max-width: 900px) {
  .main-page-content.new .intro-section .slide-item.slide-01 .lottie-object {
    width: 15rem;
    height: 15rem;
    left: auto;
    right: 0;
    margin-left: 0;
  }
  .main-page-content.new .intro-section .slide-item.slide-01 .part-object-01 {
    width: 20rem;
    bottom: -2.5rem;
    margin-left: -9rem;
  }
  .main-page-content.new .intro-section .slide-item.slide-01 .part-object-02 {
    width: 10rem;
    top: 7rem;
    left: auto;
    right: -3.5rem;
    margin-left: 0;
  }
  .main-page-content.new .intro-section .slide-item.slide-02 .lottie-object {
    width: 15rem;
    height: 15rem;
    margin-left: 0;
    bottom: -1rem;
    left: auto;
    right: -2.5rem;
  }
  .main-page-content.new .intro-section .slide-item.slide-02 .part-object-01 {
    width: 25rem;
    bottom: -2rem;
    left: auto;
    right: -5rem;
    margin-left: 0;
  }
  .main-page-content.new .intro-section .slide-item.slide-02 .part-object-02 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 11rem;
    top: 4rem;
    left: auto;
    right: -2.25rem;
    margin-left: 0;
  }
  .main-page-content.new .intro-section .slide-item .lottie-object {
    left: 50%;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .main-page-content.new .intro-section .slide-item .title-area {
    width: 100%;
    padding-left: 0;
    padding: 0 1rem;
  }
  .main-page-content.new .intro-section .slide-item .sub-title {
    font-size: 0.75rem;
  }
  .main-page-content.new .intro-section .slide-item .title {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
  .main-page-content.new .intro-section .slide-item .sub-text {
    margin-top: 0.8rem;
    font-size: 0.65rem;
  }
}
@media (max-width: 900px) and (max-height: 570px) {
  .main-page-content.new .intro-section .slide-item .sub-title {
    font-size: 0.6rem;
  }
  .main-page-content.new .intro-section .slide-item .title {
    font-size: 1.2rem;
  }
  .main-page-content.new .intro-section .slide-item .sub-text {
    margin-top: 0.4rem;
    font-size: 0.55rem;
  }
}
@media (max-width: 900px) {
  .main-page-content.new .intro-section .slide-item .slide-pagination {
    gap: 0.6rem;
    margin-top: 1.8rem;
  }
  .main-page-content.new .intro-section .slide-item .slide-pagination .item-pagination {
    width: 0.4rem;
    height: 0.4rem;
  }
  .main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
  }
  .main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet::before {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    display: block;
    content: "";
    -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: #e1e3e6;
  }
  .main-page-content.new .intro-section .slide-item .slide-pagination .swiper-pagination-bullet-active::before {
    background-color: #ff6600;
  }
  .main-page-content.new .story-section {
    padding: 0;
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
  }
  .main-page-content.new .story-section .section-inner {
    gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-page-content.new .story-section .headline-thumbnail {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .main-page-content.new .story-section .headline-thumbnail .img {
    display: none;
    position: static;
    padding: 0;
  }
  .main-page-content.new .story-section .headline-thumbnail .img a::before {
    display: none;
  }
  .main-page-content.new .story-section .headline-thumbnail .img.show {
    display: block;
  }
  .main-page-content.new .story-section .headline-thumbnail .img .title-area {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-top: 0.8rem;
  }
  .main-page-content.new .story-section .headline-thumbnail .img .title-area .title {
    font-size: 0.7rem;
    color: #111;
  }
  .main-page-content.new .story-section .story-slider-container {
    width: 100%;
  }
  .main-page-content.new .story-section .story-slider-container .content-title {
    margin-bottom: 1.8rem;
  }
  .main-page-content.new .story-section .story-slider-container .content-title .title {
    font-size: 1.4rem;
  }
  .main-page-content.new .story-section .story-slider-container .content-title .control-area {
    display: none;
  }
}
@media (max-width: 900px) and (max-height: 570px) {
  .main-page-content.new .story-section .story-slider-container .content-title .title {
    font-size: 1.2rem;
  }
}
@media (max-width: 900px) {
  .main-page-content.new .story-section .story-slider-container .mobile-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
  }
  .main-page-content.new .story-section .story-slider-container .mobile-control .control-area {
    gap: 0.4rem;
  }
  .main-page-content.new .story-section .story-slider-container .mobile-control .swiper-button {
    width: 1.8rem;
    height: 1.8rem;
  }
  .main-page-content.new .story-section .story-slider-container .swiper-pagination {
    position: static;
    height: 0.2rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 5rem;
    background-color: #e1e3e6;
  }
  .main-page-content.new .story-section .story-slider-container .swiper-pagination .swiper-pagination-progressbar-fill {
    -webkit-transform: none !important;
            transform: none !important;
    border-radius: 5rem;
    background: #111111;
  }
  .main-page-content.new .story-section .story-slider {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
  }
  .main-page-content.new .story-section .story-slider .swiper-wrapper {
    padding: 0;
  }
  .main-page-content.new .story-section .swiper-slide {
    width: 100%;
    margin: 0;
  }
  .main-page-content.new .story-section .swiper-slide > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-page-content.new .story-section .swiper-slide .thumbnail {
    padding-bottom: 0;
    width: 6.3rem;
    height: 8rem;
  }
  .main-page-content.new .story-section .swiper-slide .title-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
  .main-page-content.new .story-section .swiper-slide .label {
    width: 3.6rem;
    height: 1rem;
    font-size: 0.6rem;
  }
  .main-page-content.new .story-section .swiper-slide .title {
    margin-top: 0.4rem;
    line-height: 1.4;
    font-size: 0.7rem;
    display: block;
    display: -webkit-box;
    height: 5.6em;
    max-height: 5.6em;
    text-overflow: ellipsis;
    line-height: 1.4em;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
  }
  .main-page-content.new .fp-fixed-pagination {
    display: none !important;
  }
  #fullpage,
  .fp-section,
  .section {
    height: auto !important; /* ★ 핵심 */
    min-height: auto !important; /* ★ 핵심 */
  }
  .fp-tableCell {
    height: auto !important;
  }
}
.fp-watermark {
  display: none;
}

.main-page-content.old {
  padding-top: 4.2rem;
  background-color: #fff !important;
  overflow: hidden;
}
.main-page-content.old .hero-section {
  padding: 1rem 0px 4rem;
  background-color: #fff;
  overflow: hidden;
}
.main-page-content.old .hero-section .video-container {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main-page-content.old .hero-section .video-content {
  position: relative;
  width: 68rem;
  width: 100%;
  padding-bottom: 54.41%;
}
.main-page-content.old .hero-section .video-content video {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-page-content.old .hero-section .recruit-box {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 1.35rem;
  right: 1.2rem;
  z-index: 2;
}
.main-page-content.old .hero-section .recruit-box.show {
  opacity: 1;
  visibility: visible;
}
.main-page-content.old .hero-section .recruit-box:hover .inner {
  border-color: #fff;
}
.main-page-content.old .hero-section .recruit-box .inner {
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 20rem;
  height: 6.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 0.4rem;
  backdrop-filter: blur(28px);
  -webkit-box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.1019607843);
}
.main-page-content.old .hero-section .recruit-box .inner::before {
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: url("../images/main/icon-recruit-box.png") no-repeat 0 0;
  background-size: cover;
}
.main-page-content.old .hero-section .recruit-box .title {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.main-page-content.old .hero-section .recruit-box .sub-text {
  margin-top: 0.4rem;
  display: block;
  display: -webkit-box;
  height: 3.2em;
  max-height: 3.2em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 0.7rem;
  color: #fff;
}
.main-page-content.old .intro-section {
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
}
.main-page-content.old .intro-section .intro-slider .slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-page-content.old .intro-section .intro-slider .slide-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.main-page-content.old .intro-section .intro-slider .slide-item.active .sub-title,
.main-page-content.old .intro-section .intro-slider .slide-item.active .title,
.main-page-content.old .intro-section .intro-slider .slide-item.active .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.6s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.6s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.main-page-content.old .intro-section .intro-slider .slide-item.active .slide-pagination .item-pagination {
  -webkit-animation: pagingScale 0.6s both;
          animation: pagingScale 0.6s both;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.main-page-content.old .intro-section .intro-slider .slide-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-01.active .object {
  -webkit-animation: objectShow 1.5s both;
          animation: objectShow 1.5s both;
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-01 .object {
  opacity: 0;
  top: 50%;
  right: 6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-01 .object img {
  width: 33rem;
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-02 .object {
  opacity: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-02 .object img {
  width: 36.4rem;
}
.main-page-content.old .intro-section .intro-slider .slide-item.slide-02 .object.active {
  -webkit-animation: objectShow 1.5s both;
          animation: objectShow 1.5s both;
}
@keyframes objectShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pagingScale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.main-page-content.old .intro-section .intro-slider .sub-title,
.main-page-content.old .intro-section .intro-slider .title,
.main-page-content.old .intro-section .intro-slider .sub-text {
  opacity: 0;
}
.main-page-content.old .intro-section .intro-slider .slide-pagination .item-pagination {
  opacity: 0;
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.main-page-content.old .intro-section .intro-slider .object {
  position: absolute;
  z-index: 1;
}
.main-page-content.old .intro-section .intro-slider .title-area {
  position: relative;
  z-index: 2;
  padding-left: 8rem;
}
.main-page-content.old .intro-section .intro-slider .sub-title {
  font-weight: 700;
  font-size: 1rem;
}
.main-page-content.old .intro-section .intro-slider .title {
  margin-top: 1.2rem;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.main-page-content.old .intro-section .intro-slider .sub-text {
  margin-top: 1.2rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
@-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
.main-page-content.old .intro-section .slide-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  margin-top: 2.4rem;
  position: relative;
  z-index: 2;
}
.main-page-content.old .intro-section .slide-pagination .item-pagination {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #e1e3e6;
  text-indent: -9999px;
  color: transparent;
}
.main-page-content.old .intro-section .slide-pagination .item-pagination.active {
  background-color: #f47725;
}
.main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
  background-color: transparent;
  opacity: 1;
}
.main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet:hover {
  cursor: pointer;
}
.main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet::before {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: block;
  content: "";
  -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: #e1e3e6;
}
.main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet-active::before {
  background-color: #ff6600;
}
.main-page-content.old .story-section {
  padding: 8rem 0px;
  background-color: #fff;
}
.main-page-content.old .story-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  max-width: 72rem;
}
.main-page-content.old .story-section .headline-thumbnail {
  position: relative;
  width: 23.6rem;
  height: 30rem;
  overflow: hidden;
}
.main-page-content.old .story-section .headline-thumbnail .img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-page-content.old .story-section .headline-thumbnail .img:hover .title-area {
  opacity: 1;
  visibility: visible;
}
.main-page-content.old .story-section .headline-thumbnail .img:hover a::before {
  opacity: 1;
  visibility: visible;
}
.main-page-content.old .story-section .headline-thumbnail .img.show {
  opacity: 1;
  visibility: visible;
}
.main-page-content.old .story-section .headline-thumbnail .img.show img {
  visibility: visible;
  -webkit-transition: opacity 0.5s, -webkit-transform 1.6s;
  transition: opacity 0.5s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 0.5s;
  transition: transform 1.6s, opacity 0.5s, -webkit-transform 1.6s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.main-page-content.old .story-section .headline-thumbnail .img a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.main-page-content.old .story-section .headline-thumbnail .img a::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.main-page-content.old .story-section .headline-thumbnail .img a,
.main-page-content.old .story-section .headline-thumbnail .img img {
  display: block;
}
.main-page-content.old .story-section .headline-thumbnail .img img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: 100%;
  height: 100%;
}
.main-page-content.old .story-section .headline-thumbnail .title-area {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  margin-top: 0.8rem;
}
.main-page-content.old .story-section .headline-thumbnail .label {
  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: 4rem;
  height: 1.2rem;
  font-size: 0.65rem;
  background-color: #111;
  color: #fff;
}
.main-page-content.old .story-section .headline-thumbnail .title {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.main-page-content.old .story-section .story-slider-container .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-page-content.old .story-section .story-slider-container .content-title .title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.32;
}
.main-page-content.old .story-section .story-slider-container .content-title .title.active {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.main-page-content.old .story-section .story-slider-container .control-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.main-page-content.old .story-section .story-slider-container .swiper-button {
  display: block;
  position: static;
  margin-top: 0;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
}
.main-page-content.old .story-section .story-slider-container .swiper-button::after {
  display: none;
}
.main-page-content.old .story-section .story-slider-container .swiper-button-prev {
  background-image: url("../images/icon/icon-arrow-prev-bk-48x48.png");
}
.main-page-content.old .story-section .story-slider-container .swiper-button-next {
  background-image: url("../images/icon/icon-arrow-next-bk-48x48.png");
}
.main-page-content.old .story-section .story-slider-container .mobile-control {
  display: none;
}
.main-page-content.old .story-section .story-slider {
  width: 42.4rem;
  margin-top: 2.2rem;
}
.main-page-content.old .story-section .story-slider .swiper-wrapper {
  margin: 0 -0.4rem;
}
.main-page-content.old .story-section .swiper-slide {
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 13.6rem;
  margin: 0rem 0.4rem;
  padding: 1px;
}
.main-page-content.old .story-section .swiper-slide:hover .title {
  color: #f47725;
}
.main-page-content.old .story-section .swiper-slide a {
  display: block;
}
.main-page-content.old .story-section .swiper-slide .thumbnail {
  position: relative;
  padding-bottom: 127.2058823529%;
  overflow: hidden;
}
.main-page-content.old .story-section .swiper-slide .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-page-content.old .story-section .swiper-slide .title-area {
  margin-top: 0.8rem;
}
.main-page-content.old .story-section .swiper-slide .label {
  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: 4rem;
  height: 1.2rem;
  font-size: 0.65rem;
  background-color: #111;
  color: #fff;
}
.main-page-content.old .story-section .swiper-slide .title {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .main-page-content.old {
    padding-top: 2.8rem;
  }
  .main-page-content.old .hero-section {
    padding: 0.8rem 0px 0;
  }
  .main-page-content.old .hero-section .video-content {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    height: 16.4rem;
  }
  .main-page-content.old .hero-section .recruit-box {
    display: none;
  }
  .main-page-content.old .intro-section {
    padding-top: 3.8rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item {
    height: auto;
    padding: 0 1rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-01 {
    padding-left: 0.8rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-01 .object {
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-4.75rem, 0);
            transform: translate(-4.75rem, 0);
    margin-top: -1.75rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-01 .object img {
    width: 14rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-02 .object {
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-5rem, 0);
            transform: translate(-5rem, 0);
    margin-top: -2.5rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-02 .object img {
    width: 14rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-03 {
    padding-right: 0.8rem;
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-03 .object {
    top: auto;
    right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .main-page-content.old .intro-section .intro-slider .slide-item.slide-03 .object img {
    width: 8rem;
  }
  .main-page-content.old .intro-section .intro-slider .object {
    position: relative;
  }
  .main-page-content.old .intro-section .intro-slider .title-area {
    width: 100%;
    padding-left: 0;
  }
  .main-page-content.old .intro-section .intro-slider .sub-title {
    font-size: 0.75rem;
  }
  .main-page-content.old .intro-section .intro-slider .title {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
  .main-page-content.old .intro-section .intro-slider .sub-text {
    margin-top: 0.8rem;
    font-size: 0.65rem;
  }
  .main-page-content.old .intro-section .slide-pagination {
    gap: 0.6rem;
    margin-top: 1.8rem;
  }
  .main-page-content.old .intro-section .slide-pagination .item-pagination {
    width: 0.4rem;
    height: 0.4rem;
  }
  .main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
  }
  .main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet::before {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    display: block;
    content: "";
    -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: #e1e3e6;
  }
  .main-page-content.old .intro-section .slide-pagination .swiper-pagination-bullet-active::before {
    background-color: #ff6600;
  }
  .main-page-content.old .story-section {
    padding: 10.35rem 0 3rem;
    position: relative;
  }
  .main-page-content.old .story-section .section-inner {
    gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-page-content.old .story-section .headline-thumbnail {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .main-page-content.old .story-section .headline-thumbnail .img {
    display: none;
    position: static;
    padding: 0;
  }
  .main-page-content.old .story-section .headline-thumbnail .img a::before {
    display: none;
  }
  .main-page-content.old .story-section .headline-thumbnail .img.show {
    display: block;
  }
  .main-page-content.old .story-section .headline-thumbnail .img .title-area {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-top: 0.8rem;
  }
  .main-page-content.old .story-section .headline-thumbnail .img .title-area .title {
    font-size: 0.7rem;
    color: #111;
  }
  .main-page-content.old .story-section .story-slider-container {
    width: 100%;
  }
  .main-page-content.old .story-section .story-slider-container .content-title {
    position: absolute;
    top: 3rem;
    left: 0.8rem;
  }
  .main-page-content.old .story-section .story-slider-container .content-title .title {
    font-size: 1.4rem;
  }
  .main-page-content.old .story-section .story-slider-container .content-title .control-area {
    display: none;
  }
  .main-page-content.old .story-section .story-slider-container .mobile-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
  }
  .main-page-content.old .story-section .story-slider-container .mobile-control .control-area {
    gap: 0.4rem;
  }
  .main-page-content.old .story-section .story-slider-container .mobile-control .swiper-button {
    width: 1.8rem;
    height: 1.8rem;
  }
  .main-page-content.old .story-section .story-slider-container .swiper-pagination {
    position: static;
    height: 0.2rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 5rem;
    background-color: #e1e3e6;
  }
  .main-page-content.old .story-section .story-slider-container .swiper-pagination .swiper-pagination-progressbar-fill {
    -webkit-transform: none !important;
            transform: none !important;
    border-radius: 5rem;
    background: #111111;
  }
  .main-page-content.old .story-section .story-slider {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
  }
  .main-page-content.old .story-section .story-slider .swiper-wrapper {
    padding: 0;
  }
  .main-page-content.old .story-section .swiper-slide {
    width: 100%;
    margin: 0;
  }
  .main-page-content.old .story-section .swiper-slide > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-page-content.old .story-section .swiper-slide .thumbnail {
    padding-bottom: 0;
    width: 6.3rem;
    height: 8rem;
  }
  .main-page-content.old .story-section .swiper-slide .title-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
  .main-page-content.old .story-section .swiper-slide .label {
    width: 3.6rem;
    height: 1rem;
    font-size: 0.6rem;
  }
  .main-page-content.old .story-section .swiper-slide .title {
    margin-top: 0.4rem;
    line-height: 1.4;
    font-size: 0.7rem;
    display: block;
    display: -webkit-box;
    height: 5.6em;
    max-height: 5.6em;
    text-overflow: ellipsis;
    line-height: 1.4em;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
  }
}
.sub-page-content {
  padding: 6.2rem 0px 8rem;
}
.sub-page-content .common-lnb-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.sub-page-content .common-lnb-wrapper.active .story-summary .thumbnail img {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub-page-content .common-lnb-wrapper.active .campus-content .title,
.sub-page-content .common-lnb-wrapper.active .campus-content .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub-page-content .common-lnb-wrapper.active .sub-common-visual .title,
.sub-page-content .common-lnb-wrapper.active .sub-common-visual .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub-page-content .common-lnb-wrapper.large {
  gap: 4.9rem;
}
.sub-page-content .common-lnb-wrapper.large .lnb-content {
  top: 3.5rem;
  width: 24rem;
}
.sub-page-content .common-lnb-wrapper .lnb-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 5rem;
  width: 14rem;
}
.sub-page-content .common-lnb-wrapper .lnb-content.scroll {
  max-height: calc(100vh - 6rem);
  overflow: auto;
}
.sub-page-content .common-lnb-wrapper .lnb-content::-webkit-scrollbar {
  display: none;
}
.sub-page-content .common-lnb-wrapper .lnb-content.space {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100vh - 5rem);
}
.sub-page-content .common-lnb-wrapper .lnb-content .btn-control {
  margin: 1rem 0px;
}
.sub-page-content .common-lnb-wrapper .lnb-content .btn-control .btn-prev {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/icon/icon-arrow-left-bk-48x48.png") no-repeat 0 0;
  background-size: cover;
}
.sub-page-content .common-lnb-wrapper .lnb-mobile-title {
  margin-bottom: 1.8rem;
}
.sub-page-content .common-lnb-wrapper .lnb-mobile-title .title {
  line-height: 1.32;
  font-weight: 700;
  word-break: keep-all;
  font-size: 1.4rem;
}
.sub-page-content .common-lnb-wrapper .lnb-mobile-title .sub-text {
  line-height: 1.6;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7077;
  word-break: keep-all;
}
.sub-page-content .common-lnb-wrapper .lnb-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group {
  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.4rem;
  position: relative;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  background-color: #fff;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) {
  background-color: #f47725;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) .icon-arrow {
  background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) .number,
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) .text,
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) .count {
  color: #fff;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today) .number {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  text-indent: -9999px;
  background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.active:not(.today).arrow .title-area::before {
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url("../images/icon/icon-arrow-right-w-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.today {
  pointer-events: none;
  border: 1px solid #f47725;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.today .title-area {
  gap: 0.8rem;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.recruit.active .icon-notice {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.recruit .title-area {
  min-width: 0;
  gap: 0.4rem;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item.recruit .text {
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .icon-arrow {
  display: block;
  width: 1rem;
  height: 1rem;
  background-size: cover;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .number {
  display: none;
  min-width: 1.2rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.5);
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .text {
  font-weight: 700;
  font-size: 0.8rem;
  text-align: left;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .count {
  font-weight: 700;
  font-size: 0.8rem;
  color: #9fa4aa;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .today {
  padding: 0.1rem 0.4rem;
  border-radius: 0.2rem;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 500;
  font-size: 0.6rem;
  color: #fff;
  background-color: #f47725;
}
.sub-page-content .common-lnb-wrapper .lnb-list-group .lnb-list-item .icon-notice {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("../images/icon/icon-notice-16x16.png");
  background-size: cover;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group {
  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;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item {
  border: 1px solid transparent;
  border-radius: 0.4rem;
  overflow: hidden;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing {
  border-color: #f47725;
  background-color: #fff;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing.active {
  border-width: 2px;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing.active .lnb-list-header {
  background-color: #f47725;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing.active .lnb-list-header .icon {
  background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing.active .lnb-list-header .text {
  color: #fff;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing .lnb-list-header .icon {
  background-image: url("../images/icon/icon-bell-og-24x24.png");
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing .lnb-list-header .text {
  color: #f47725;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.coming-soon {
  border-color: #e1e3e6;
  background-color: #e1e3e6;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.coming-soon.active {
  border-width: 1px;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.coming-soon.active .lnb-list-header .icon {
  background-image: url("../images/icon/icon-arrow-right-bk-24x24.png");
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.coming-soon .lnb-list-header .icon {
  background-image: url("../images/icon/icon-bell-bk-24x24.png");
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.coming-soon .lnb-list-header .text {
  color: #111;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  height: 3rem;
  padding: 0 1.2rem;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header::after {
  display: none;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header .icon {
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header .text {
  font-weight: 700;
  font-size: 0.8rem;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-body {
  padding: 0.4rem 1.2rem;
  background-color: #fff;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-asset {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 0.7rem;
  text-align: left;
  padding: 0.8rem 0;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-asset.active {
  color: #f47725;
}
.sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-asset + .lnb-list-asset {
  border-top: 1px solid #d6d6dd;
}
.sub-page-content .common-lnb-wrapper .story-summary {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.sub-page-content .common-lnb-wrapper .story-summary .thumbnail img {
  opacity: 0;
  width: 100%;
}
.sub-page-content .common-lnb-wrapper .share-box {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 0.4rem;
  background-color: #fff;
}
.sub-page-content .common-lnb-wrapper .share-box .title {
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.sub-page-content .common-lnb-wrapper .share-box .common-sns-list {
  margin-top: 0.6rem;
}
.sub-page-content .common-lnb-wrapper .campus-content {
  margin-top: 2rem;
}
.sub-page-content .common-lnb-wrapper .campus-content .title {
  opacity: 0;
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.8rem;
}
.sub-page-content .common-lnb-wrapper .campus-content .sub-text {
  opacity: 0;
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  margin-top: 1.2rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.sub-page-content .common-lnb-wrapper .campus-content .object {
  margin-top: 5rem;
}
.sub-page-content .common-lnb-wrapper .share-area {
  display: inline-block;
  position: relative;
  margin-top: 2rem;
}
.sub-page-content .common-lnb-wrapper .share-area .btn-share {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url("../images/icon/icon-share-44x44.png");
}
.sub-page-content .common-lnb-wrapper .share-area .btn-share.open {
  background-image: url("../images/icon/icon-close-44x44.png");
}
.sub-page-content .common-lnb-wrapper .share-area .common-sns-list {
  display: none;
  position: absolute;
  top: 0;
  left: 2.6rem;
}
.sub-page-content .common-lnb-wrapper .share-area .common-sns-list.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sub-page-content .sub-common-visual {
  position: relative;
  z-index: 2;
  padding: 2rem 4rem 4rem;
}
.sub-page-content .sub-common-visual .title {
  opacity: 0;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.4rem;
  word-break: keep-all;
}
.sub-page-content .sub-common-visual .sub-text {
  opacity: 0;
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  line-height: 1.6;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #6b7077;
  word-break: keep-all;
}
.sub-page-content .sub-common-visual .image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.sub-page-content .sub-common-visual .image.object-01 {
  top: -0.2rem;
  right: 3rem;
  width: 17.1rem;
}
.sub-page-content .sub-common-visual .image.object-02 {
  top: -0.8rem;
  right: 3rem;
  width: 19.55rem;
}
.sub-page-content .sub-common-layout {
  position: relative;
  z-index: 1;
}
.sub-page-content .sub-common-layout-item + .sub-common-layout-item {
  margin-top: 2rem;
}
.sub-page-content .sub-common-layout-inner {
  padding: 3rem;
  border-radius: 0.8rem;
  background-color: #fff;
}
.sub-page-content .empty-content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding: 5rem 0px;
}
.sub-page-content .empty-content .image {
  max-width: 7.75rem;
  margin: 0 auto;
}
.sub-page-content .empty-content .text {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.sub-page-content .page-last-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}
.sub-page-content .scroll-text {
  margin: 2rem auto 0;
  font-size: 0;
}
.sub-page-content .scroll-text .inner {
  display: inline-block;
  -webkit-animation: scrollShow 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: scrollShow 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.sub-page-content .scroll-text .inner::before {
  display: block;
  content: "SCROLL";
  position: relative;
  padding-right: 1.2rem;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  border-bottom: 2px solid #f47725;
  font-weight: 700;
  font-size: 0.6rem;
  color: #f47725;
  letter-spacing: 0.4em;
}
.sub-page-content .scroll-text .inner::after {
  -webkit-animation: scrollMove 0.7s linear infinite alternate;
          animation: scrollMove 0.7s linear infinite alternate;
  display: block;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/icon/icon-arrow-down-og-18x18.png");
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@-webkit-keyframes scrollShow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes scrollShow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes scrollMove {
  0% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes scrollMove {
  0% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.sub-page-content .scroll-text img {
  display: none;
}

@media (max-width: 900px) {
  .sub-page-content {
    padding: 4.6rem 0px 3rem;
  }
  .sub-page-content .common-lnb-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sub-page-content .common-lnb-wrapper.large {
    gap: 4.9rem;
  }
  .sub-page-content .common-lnb-wrapper.large .lnb-content {
    width: 100%;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: static;
    top: 5rem;
    width: 100%;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content.scroll {
    max-height: none;
    overflow: visible;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.4rem;
    min-height: 2.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.4rem;
    background-color: #fff;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) {
    background-color: #f47725;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) .icon-arrow {
    background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) .number,
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) .text,
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) .count {
    color: #fff;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today) .number {
    display: block;
    width: 1rem;
    height: 1rem;
    text-indent: -9999px;
    background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.active:not(.today).arrow .title-area::before {
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    background: url("../images/icon/icon-arrow-right-w-24x24.png") no-repeat 0 0;
    background-size: cover;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.today {
    pointer-events: none;
    border: 1px solid #f47725;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.today .title-area {
    gap: 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.recruit.active .icon-notice {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("../images/icon/icon-arrow-right-w-24x24.png");
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.recruit .title-area {
    min-width: 0;
    gap: 0.4rem;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item.recruit .text {
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .title-area {
    gap: 0.4rem;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .icon-arrow {
    display: block;
    width: 1rem;
    height: 1rem;
    background-size: cover;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .number {
    display: none;
    min-width: 1rem;
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(17, 17, 17, 0.5);
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .text {
    font-weight: 700;
    font-size: 0.7rem;
    text-align: left;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .count {
    font-weight: 700;
    font-size: 0.7rem;
    color: #9fa4aa;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .today {
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
    font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
    font-weight: 500;
    font-size: 0.6rem;
    color: #fff;
    background-color: #f47725;
  }
  .sub-page-content .common-lnb-wrapper .lnb-content .lnb-list-item .icon-notice {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url("../images/icon/icon-notice-16x16.png");
    background-size: cover;
  }
  .sub-page-content .common-lnb-wrapper .lnb-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group {
    gap: 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .recruit-lnb-item.ing.active {
    border-width: 1px;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header {
    gap: 0.4rem;
    height: 2.6rem;
    padding: 0 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header .icon {
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-header .text {
    font-size: 0.7rem;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-body {
    padding: 0.4rem 0.8rem;
    max-height: 14rem;
    overflow: auto;
  }
  .sub-page-content .common-lnb-wrapper .recruit-lnb-group .lnb-list-asset {
    font-size: 0.7rem;
    padding: 0.8rem 0;
  }
  .sub-page-content .common-lnb-wrapper .story-summary {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
  .sub-page-content .common-lnb-wrapper .share-box {
    margin-top: 1.2rem;
    padding: 1.2rem;
    border-radius: 0.4rem;
    background-color: #fff;
  }
  .sub-page-content .common-lnb-wrapper .share-box .title {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .share-box .common-sns-list {
    margin-top: 0.6rem;
  }
  .sub-page-content .common-lnb-wrapper .campus-content {
    margin-top: 0;
  }
  .sub-page-content .common-lnb-wrapper .campus-content .title {
    font-size: 1.4rem;
  }
  .sub-page-content .common-lnb-wrapper .campus-content .sub-text {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .campus-content .page-lottie-object {
    display: none;
  }
  .sub-page-content .common-lnb-wrapper .share-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0.8rem;
  }
  .sub-page-content .common-lnb-wrapper .share-area .btn-share {
    width: 2rem;
    height: 2rem;
  }
  .sub-page-content .common-lnb-wrapper .share-area .common-sns-list {
    left: auto;
    right: 2.4rem;
  }
  .sub-page-content .sub-common-visual {
    position: relative;
    z-index: 2;
    padding: 0 0 1.8rem;
  }
  .sub-page-content .sub-common-visual .title {
    font-size: 1.4rem;
  }
  .sub-page-content .sub-common-visual .sub-text {
    line-height: 1.6;
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .sub-page-content .sub-common-visual .image {
    display: none;
  }
  .sub-page-content .sub-common-layout-item + .sub-common-layout-item {
    margin-top: 1.8rem;
  }
  .sub-page-content .sub-common-layout-inner {
    padding: 1.8rem 0.8rem;
    border-radius: 0;
    margin: 0 -0.8rem;
  }
  .sub-page-content .empty-content {
    gap: 0.8rem;
    padding: 4.5rem 0px;
  }
  .sub-page-content .empty-content .image {
    max-width: 4.75rem;
  }
  .sub-page-content .empty-content .text {
    font-size: 1rem;
  }
  .sub-page-content .page-last-btn-group {
    margin-top: 1.8rem;
  }
}
.faq-page-content .sub-common-layout-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.faq-page-content .faq-item {
  padding: 2rem 0px;
}
.faq-page-content .faq-item + .faq-item {
  border-top: 1px solid rgba(214, 214, 221, 0.5);
}
.faq-page-content .faq-item:first-child {
  padding-top: 0;
}
.faq-page-content .faq-item:last-child {
  padding-bottom: 0;
}
.faq-page-content .faq-item.acitve .faq-header .icon-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-page-content .faq-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 1.2rem;
}
.faq-page-content .faq-header .type {
  width: 5.2rem;
  margin-top: 0.15rem;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.8rem;
  color: #f47725;
}
.faq-page-content .faq-header .title {
  line-height: 1.6;
  word-break: break-all;
  font-weight: 700;
  font-size: 1rem;
}
.faq-page-content .faq-body {
  margin-top: 0.6rem;
  padding-left: 6.4rem;
  line-height: 1.8;
  font-size: 0.8rem;
  word-break: break-all;
}
.faq-page-content .last-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .faq-page-content .sub-common-layout-inner {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }
  .faq-page-content .sub-common-visual {
    display: none;
  }
  .faq-page-content .common-lnb-wrapper .lnb-content .lnb-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .faq-page-content .common-lnb-wrapper .lnb-content .lnb-list-item {
    width: calc(50% - 0.2rem);
  }
  .faq-page-content .faq-item {
    padding: 1.2rem 0px;
  }
  .faq-page-content .faq-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq-page-content .faq-header .type {
    width: auto;
    font-size: 0.7rem;
  }
  .faq-page-content .faq-header .title {
    font-size: 0.8rem;
  }
  .faq-page-content .faq-body {
    margin-top: 0.2rem;
    padding-left: 0;
    font-size: 0.7rem;
  }
  .faq-page-content .last-btn-group {
    margin-top: 1.8rem;
  }
}
.recruit-step-page-content * {
  word-break: keep-all;
}
.recruit-step-page-content .recruit-step-box .box-title {
  margin-bottom: 2rem;
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.6rem;
}
.recruit-step-page-content .recruit-step-box .box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.recruit-step-page-content .recruit-step-box .box-list.wide {
  gap: 2rem;
}
.recruit-step-page-content .recruit-step-box .box-list.wide .box-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  min-width: auto;
}
.recruit-step-page-content .recruit-step-box .box-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: calc(50% - 0.3rem);
  padding: 2rem;
  position: relative;
  background-color: #f9fafb;
}
.recruit-step-page-content .recruit-step-box .box-list-item.height-fix {
  min-height: 14rem;
}
.recruit-step-page-content .recruit-step-box .box-list-item .item-title {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.recruit-step-page-content .recruit-step-box .box-list-item .item-title.primary {
  color: #f47725;
}
.recruit-step-page-content .recruit-step-box .box-list-item .info-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.recruit-step-page-content .recruit-step-box .box-list-item .info-box-item * {
  word-break: keep-all;
}
.recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .sub-text {
  margin-top: 0.6rem;
  line-height: 1.8;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}
.recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .guide-text {
  margin-top: 0.6rem;
  line-height: 1.8;
  font-size: 0.7rem;
  color: #6b7077;
}
.recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .common-btn-more {
  margin-top: auto;
  height: 2.2rem;
}
.recruit-step-page-content .recruit-step-box .box-guide-text {
  margin-top: 2rem;
  line-height: 1.8;
  font-size: 0.7rem;
  color: #6b7077;
}
.recruit-step-page-content .recruit-step-box .check-list-item + .check-list-item {
  margin-top: 1rem;
}
.recruit-step-page-content .recruit-step-box .check-list-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruit-step-page-content .recruit-step-box .check-list-asset {
  position: relative;
  padding-left: 1rem;
  line-height: 1.8;
  font-size: 0.8rem;
  word-break: keep-all;
}
.recruit-step-page-content .recruit-step-box .check-list-asset:first-child {
  margin-top: 0;
}
.recruit-step-page-content .recruit-step-box .check-list-asset::before {
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 0.3rem;
  left: 0rem;
  background: url("../images/icon/icon-circle-check-bk-16x16.png") no-repeat 0 0;
  background-size: cover;
}
.recruit-step-page-content .recruit-step-box .skct-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.4rem 2rem;
  border-radius: 0.8rem;
  border: 1px solid #f47725;
  background-color: #fff;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.4rem;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .title-area .title {
  font-weight: 700;
  font-size: 1rem;
  color: #f47725;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .title-area .eng {
  line-height: 1.6;
  font-size: 0.8rem;
  color: #f47725;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .sub-text {
  margin-top: 0.6rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.recruit-step-page-content .recruit-step-box .skct-box-list .etc-text {
  line-height: 1.8;
  font-size: 0.7rem;
  color: #6b7077;
}
.recruit-step-page-content .recruit-step-box .video-container {
  margin-top: 2rem;
}
.recruit-step-page-content .recruit-step-box .video-container .video-content {
  position: relative;
  padding-bottom: 56.25%;
}
.recruit-step-page-content .recruit-step-box .video-container .video-content iframe,
.recruit-step-page-content .recruit-step-box .video-container .video-content video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-step-page-content .recruit-step-box .box-tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  margin-bottom: 2rem;
}
.recruit-step-page-content .recruit-step-box .box-tab-container .tab-item {
  display: block;
  position: relative;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #9fa4aa;
  border-bottom: 2px solid transparent;
}
.recruit-step-page-content .recruit-step-box .box-tab-container .tab-item.active {
  color: #111;
  border-bottom-color: #f47725;
}
.recruit-step-page-content .recruit-step-box .box-tab-container .tab-item:last-child::before {
  display: block;
  content: "";
  width: 0.05rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d6d6dd;
}
.recruit-step-page-content .recruit-step-box .tab-content-item {
  display: none;
}
.recruit-step-page-content .recruit-step-box .tab-content-item:first-child {
  display: block;
}
.recruit-step-page-content .recruit-step-box .model-image-contaienr {
  margin-top: 2rem;
}
.recruit-step-page-content .recruit-step-box .model-image-contaienr img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .recruit-step-page-content .sub-common-visual {
    display: none;
  }
  .recruit-step-page-content .recruit-step-box .box-title {
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list {
    gap: 0.4rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list.wide {
    gap: 0.4rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list.wide .box-list-item {
    min-width: auto;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item {
    min-width: 100%;
    padding: 1.4rem 0.8rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item.height-fix {
    min-height: auto;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item .item-title {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .sub-text {
    margin-top: 0.4rem;
    line-height: 1.8;
    font-size: 0.7rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .guide-text {
    margin-top: 0.4rem;
    line-height: 1.8;
    font-size: 0.65rem;
  }
  .recruit-step-page-content .recruit-step-box .box-list-item .info-box-item .common-btn-more {
    width: 6rem;
    height: 2rem;
    margin-top: 0.8rem;
  }
  .recruit-step-page-content .recruit-step-box .box-guide-text {
    margin-top: 1.2rem;
    font-size: 0.65rem;
  }
  .recruit-step-page-content .recruit-step-box .check-list-item + .check-list-item {
    margin-top: 0.4rem;
  }
  .recruit-step-page-content .recruit-step-box .check-list-asset {
    padding-left: 1rem;
    line-height: 1.6;
    font-size: 0.7rem;
  }
  .recruit-step-page-content .recruit-step-box .check-list-asset::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.15rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list .list-item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    padding: 0.8rem;
    border-radius: 0.4rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list .title-area {
    gap: 0.3rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list .title-area .title {
    font-size: 0.8rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list .title-area .eng {
    font-size: 0.6rem;
  }
  .recruit-step-page-content .recruit-step-box .skct-box-list .sub-text {
    margin-top: 0.2rem;
    font-size: 0.7rem;
  }
  .recruit-step-page-content .recruit-step-box .video-container {
    margin-top: 0.8rem;
  }
  .recruit-step-page-content .recruit-step-box .box-tab-container {
    gap: 0.6rem;
    margin-bottom: 1.4rem;
  }
  .recruit-step-page-content .recruit-step-box .box-tab-container .tab-item {
    font-size: 0.8rem;
    letter-spacing: -0.01em;
  }
  .recruit-step-page-content .recruit-step-box .box-tab-container .tab-item:last-child::before {
    display: none;
  }
  .recruit-step-page-content .recruit-step-box .model-image-contaienr {
    margin-top: 0.8rem;
  }
}
.story-list-page-content {
  padding-bottom: 0;
}
.story-list-page-content .hero-section {
  padding-top: 1rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 4;
  background-color: #f2f3f5;
}
.story-list-page-content .hero-section.active .title-wrap .title,
.story-list-page-content .hero-section.active .title-wrap .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-list-page-content .hero-section.active .title-wrap .object .page-lottie-object {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.story-list-page-content .hero-section.active .headline-list {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-list-page-content .hero-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.story-list-page-content .hero-section .title-wrap {
  position: absolute;
  top: 0;
  left: 2rem;
  pointer-events: none;
}
.story-list-page-content .hero-section .title-wrap .title {
  opacity: 0;
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  line-height: 1.32;
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: -0.02em;
}
.story-list-page-content .hero-section .title-wrap .sub-text {
  opacity: 0;
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  margin-top: 0.6rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #6b7077;
}
.story-list-page-content .hero-section .title-wrap .object {
  max-width: 25.5rem;
  margin-left: -3rem;
  margin-top: 1rem;
}
.story-list-page-content .hero-section .title-wrap .object .page-lottie-object {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
}
.story-list-page-content .hero-section .headline-list {
  opacity: 0;
  position: relative;
  z-index: 2;
  -webkit-animation-delay: 0.15s !important;
          animation-delay: 0.15s !important;
  padding: 1px;
}
.story-list-page-content .hero-section .headline-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.2rem;
}
.story-list-page-content .hero-section .headline-list:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.story-list-page-content .hero-section .headline-list:hover .text-area .title {
  color: #f47725;
}
.story-list-page-content .hero-section .headline-list:hover .no-cursor .thumbnail img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.story-list-page-content .hero-section .headline-list .thumbnail-wrap {
  width: 16.1rem;
}
.story-list-page-content .hero-section .headline-list .thumbnail {
  position: relative;
  padding-bottom: 127%;
  overflow: hidden;
}
.story-list-page-content .hero-section .headline-list .thumbnail img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.story-list-page-content .hero-section .headline-list .text-area {
  width: 16.1rem;
}
.story-list-page-content .hero-section .headline-list .text-area .label {
  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: 4rem;
  height: 1.2rem;
  background-color: #f47725;
  font-size: 0.65rem;
  color: #fff;
}
.story-list-page-content .hero-section .headline-list .text-area .title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
  display: block;
  display: -webkit-box;
  height: 4.8em;
  max-height: 4.8em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 0.8rem;
  word-break: keep-all;
}
.story-list-page-content .hero-section .headline-list .text-area .info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  margin-top: 0.6rem;
}
.story-list-page-content .hero-section .headline-list .text-area .icon img {
  display: block;
  width: 0.8rem;
}
.story-list-page-content .hero-section .headline-list .text-area .text {
  font-size: 0.6rem;
  color: #6b7077;
}
.story-list-page-content .list-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #fff;
}

.tab-container {
  position: sticky;
  top: 4rem;
  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: 2.4rem;
  z-index: 3;
  padding: 0.75rem 0;
  margin-top: -0.75rem;
  margin-bottom: 2.25rem;
  background-color: #fff;
}
.tab-container.bg-grey {
  background-color: #f2f3f5;
}
.tab-container .tab-item:hover a {
  color: #f47725;
}
.tab-container .tab-item + .tab-item {
  position: relative;
}
.tab-container .tab-item + .tab-item::before {
  display: block;
  content: "";
  width: 1px;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #e1e3e6;
}
.tab-container .tab-item.active a {
  color: #111;
  border-color: #f47725;
}
.tab-container .tab-item a {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #9fa4aa;
  letter-spacing: -0.01em;
  border-bottom: 2px solid transparent;
}

@media (max-width: 900px) {
  .story-list-page-content .hero-section {
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .story-list-page-content .hero-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.8rem;
  }
  .story-list-page-content .hero-section .title-wrap {
    position: static;
  }
  .story-list-page-content .hero-section .title-wrap .title {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .story-list-page-content .hero-section .title-wrap .sub-text {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .story-list-page-content .hero-section .title-wrap .object {
    display: none;
  }
  .story-list-page-content .hero-section .headline-list a {
    gap: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .story-list-page-content .hero-section .headline-list a.no-cursor {
    margin: 0 -0.8rem;
  }
  .story-list-page-content .hero-section .headline-list a.no-cursor .thumbnail {
    padding-bottom: 111%;
  }
  .story-list-page-content .hero-section .headline-list .thumbnail-wrap {
    width: 100%;
  }
  .story-list-page-content .hero-section .headline-list .text-area {
    width: 100%;
  }
  .story-list-page-content .hero-section .headline-list .text-area .label {
    width: 3.6rem;
    height: 1rem;
    font-size: 0.6rem;
  }
  .story-list-page-content .hero-section .headline-list .text-area .title {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .story-list-page-content .hero-section .headline-list .text-area .info-area {
    gap: 0.2rem;
    margin-top: 0.4rem;
  }
  .story-list-page-content .hero-section .headline-list .text-area .icon img {
    width: 0.8rem;
  }
  .story-list-page-content .hero-section .headline-list .text-area .text {
    font-size: 0.6rem;
  }
  .story-list-page-content .list-section {
    padding-top: 1.6rem;
    padding-bottom: 3rem;
  }
  .tab-container {
    top: 2.8rem;
    gap: 1rem;
    margin-top: -0.6rem;
    margin-bottom: 1.2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: auto;
    max-width: 100%;
    padding: 0.6rem 0;
  }
  .tab-container::-webkit-scrollbar-thumb {
    background-color: #111;
  }
  .tab-container .tab-item + .tab-item::before {
    left: -0.5rem;
    height: 0.8rem;
  }
  .tab-container .tab-item a {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.common-thumbnail-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  row-gap: 4rem;
}
.common-thumbnail-list-container.column {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 2rem;
}
.common-thumbnail-list-container.column .list-item {
  width: calc(50% - 1rem);
}
.common-thumbnail-list-container.column .list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.common-thumbnail-list-container.column .thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6.3rem;
  height: 8rem;
  padding-bottom: 0;
}
.common-thumbnail-list-container.column .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
}
.common-thumbnail-list-container.column .text-area .title {
  display: block;
  display: -webkit-box;
  height: 3.2em;
  max-height: 3.2em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.common-thumbnail-list-container.column .text-area .info-area {
  margin-top: auto;
}
.common-thumbnail-list-container.column .text-area .icon img {
  display: block;
  width: 0.8rem;
}
.common-thumbnail-list-container.column .text-area .text {
  font-size: 0.6rem;
  color: #6b7077;
}
.common-thumbnail-list-container .list-item {
  width: calc(25% - 0.9rem);
}
.common-thumbnail-list-container .list-item:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.common-thumbnail-list-container .list-item:hover .text-area .title {
  color: #f47725;
}
.common-thumbnail-list-container .thumbnail {
  position: relative;
  padding-bottom: 127%;
  overflow: hidden;
}
.common-thumbnail-list-container .thumbnail img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.common-thumbnail-list-container .text-area {
  margin-top: 1.2rem;
}
.common-thumbnail-list-container .text-area .label {
  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: 4rem;
  height: 1.2rem;
  background-color: #111;
  font-size: 0.65rem;
  color: #fff;
}
.common-thumbnail-list-container .text-area .title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
  display: block;
  display: -webkit-box;
  height: 4.8em;
  max-height: 4.8em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 0.8rem;
  word-break: keep-all;
}
.common-thumbnail-list-container .text-area .info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  margin-top: 0.6rem;
}
.common-thumbnail-list-container .text-area .icon img {
  display: block;
  width: 0.8rem;
}
.common-thumbnail-list-container .text-area .text {
  font-size: 0.6rem;
  color: #6b7077;
}

@media (max-width: 900px) {
  .common-thumbnail-list-container {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .common-thumbnail-list-container.column {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0.8rem;
  }
  .common-thumbnail-list-container.column .list-item {
    width: 100%;
  }
  .common-thumbnail-list-container.column .list-item a {
    gap: 0.8rem;
  }
  .common-thumbnail-list-container.column .thumbnail {
    width: 6.3rem;
    height: 8rem;
  }
  .common-thumbnail-list-container.column .text-area {
    margin-top: 0;
  }
  .common-thumbnail-list-container.column .text-area .title {
    display: block;
    display: -webkit-box;
    height: 4.2em;
    max-height: 4.2em;
    text-overflow: ellipsis;
    line-height: 1.4em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
  }
  .common-thumbnail-list-container.column .text-area .info-area {
    margin-top: 0.4rem;
  }
  .common-thumbnail-list-container.column .text-area .icon img {
    width: 0.8rem;
  }
  .common-thumbnail-list-container.column .text-area .text {
    font-size: 0.6rem;
  }
  .common-thumbnail-list-container .list-item {
    width: 100%;
  }
  .common-thumbnail-list-container .text-area {
    margin-top: 0.8rem;
  }
  .common-thumbnail-list-container .text-area .label {
    width: 3.6rem;
    height: 1rem;
    font-size: 0.6rem;
  }
  .common-thumbnail-list-container .text-area .title {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .common-thumbnail-list-container .text-area .info-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.2rem;
    margin-top: 0.6rem;
  }
  .common-thumbnail-list-container .text-area .icon img {
    display: block;
    width: 0.8rem;
  }
  .common-thumbnail-list-container .text-area .text {
    font-size: 0.6rem;
    color: #6b7077;
  }
}
.common-notice-detail-content .content-title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.4rem;
  word-break: keep-all;
}
.common-notice-detail-content .content-title + .detail-body {
  margin-top: 1.8rem;
}
.common-notice-detail-content .mobile-thumbnail-wrapper + .detail-body {
  margin-top: 1.8rem;
}
.common-notice-detail-content .detail-body {
  border-radius: 0.8rem;
  padding: 1rem 3rem 3rem;
  background-color: #fff;
}
.common-notice-detail-content .detail-body * {
  word-break: keep-all;
}
.common-notice-detail-content .detail-body h2,
.common-notice-detail-content .detail-body h3,
.common-notice-detail-content .detail-body p,
.common-notice-detail-content .detail-body .image-area,
.common-notice-detail-content .detail-body .video-area {
  margin-top: 2rem;
}
.common-notice-detail-content .detail-body h2 {
  font-weight: 700;
  font-size: 1.2rem;
}
.common-notice-detail-content .detail-body h3 {
  color: #6b7077;
  font-weight: 700;
  font-size: 1rem;
}
.common-notice-detail-content .detail-body p {
  line-height: 1.8;
  font-size: 0.8rem;
}
.common-notice-detail-content .detail-body .image-area,
.common-notice-detail-content .detail-body .video-area {
  text-align: center;
}
.common-notice-detail-content .detail-body .image-area img,
.common-notice-detail-content .detail-body .video-area img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.common-notice-detail-content .detail-body .video-content {
  position: relative;
  padding-bottom: 56.25%;
}
.common-notice-detail-content .detail-body .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.common-notice-detail-content .detail-body .caption {
  margin-top: 0.6rem;
  text-align: center;
  line-height: 1.8;
  font-size: 0.7rem;
  color: #6b7077;
}
.common-notice-detail-content .detail-body .swiper-button {
  margin-top: -1.2rem;
}
.common-notice-detail-content .swiper-pagination {
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .common-notice-detail-content .content-title {
    font-size: 1.4rem;
  }
  .common-notice-detail-content .mobile-thumbnail-wrapper {
    margin-top: 0.8rem;
  }
  .common-notice-detail-content .mobile-thumbnail-wrapper .thumbnail img {
    width: 100%;
  }
  .common-notice-detail-content .mobile-thumbnail-wrapper .share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0.8rem;
  }
  .common-notice-detail-content .mobile-thumbnail-wrapper .share-list .title {
    font-weight: 700;
    font-size: 0.75rem;
  }
  .common-notice-detail-content .detail-body {
    margin-top: 1.8rem;
    margin-right: -0.8rem;
    margin-left: -0.8rem;
    border-radius: 0;
    padding: 0.6rem 0.75rem 1.8rem;
  }
  .common-notice-detail-content .detail-body h2,
  .common-notice-detail-content .detail-body h3,
  .common-notice-detail-content .detail-body p,
  .common-notice-detail-content .detail-body .image-area,
  .common-notice-detail-content .detail-body .video-area {
    margin-top: 1.2rem;
  }
  .common-notice-detail-content .detail-body h2 {
    font-size: 1rem;
  }
  .common-notice-detail-content .detail-body h3 {
    font-size: 0.9rem;
  }
  .common-notice-detail-content .detail-body p {
    font-size: 0.7rem;
  }
  .common-notice-detail-content .detail-body .caption {
    margin-top: 0.4rem;
    line-height: 1.4;
    font-size: 0.6rem;
  }
}
.common-relevant-content {
  margin-top: 5rem;
}
.common-relevant-content .section-title {
  display: block;
  font-weight: 700;
  line-height: 1.32;
  font-size: 1.6rem;
}
.common-relevant-content .common-thumbnail-list-container {
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .common-relevant-content {
    margin-top: 1.8rem;
  }
  .common-relevant-content .section-title {
    font-size: 1rem;
  }
  .common-relevant-content .common-thumbnail-list-container {
    margin-top: 1.8rem;
  }
}
.common-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.common-sns-list .item {
  display: block;
  position: relative;
  width: 2.2rem;
}
.common-sns-list img {
  display: block;
}
.common-sns-list .copy-popup {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  background-color: #111;
  font-size: 0.7rem;
  white-space: nowrap;
  color: #fff;
}
.common-sns-list .copy-popup.top {
  top: auto;
  bottom: calc(100% + 0.6rem);
}
.common-sns-list .copy-popup.top::before {
  bottom: auto;
  top: 100%;
  border-top-color: #111;
  border-bottom-color: transparent;
}
.common-sns-list .copy-popup::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-width: 0.5rem;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #111;
}

@media (max-width: 900px) {
  .common-sns-list {
    gap: 0.4rem;
  }
  .common-sns-list .item {
    width: 2rem;
  }
  .common-sns-list .copy-popup {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 0.6rem;
  }
  .common-sns-list .copy-popup.right {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .common-sns-list .copy-popup.right::before {
    left: auto;
    right: 0.1rem;
  }
  .common-sns-list .copy-popup.top {
    top: auto;
    bottom: calc(100% + 0.6rem);
  }
  .common-sns-list .copy-popup.top::before {
    bottom: auto;
    top: 100%;
    border-top-color: #111;
    border-bottom-color: transparent;
  }
  .common-sns-list .copy-popup::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-width: 0.5rem;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #111;
  }
}
@media (max-width: 900px) {
  .story-detail-page-content .common-lnb-wrapper .lnb-content {
    display: none !important;
  }
}
.campus-page-content {
  padding-bottom: 0;
}
.campus-page-content .common-lnb-section {
  padding-bottom: 5rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/company/img-campus-bg.png");
}
.campus-page-content .common-lnb-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.campus-page-content .common-lnb-wrapper .lnb-content {
  top: 3.5rem;
}
.campus-page-content .campus-video-container .list-item {
  overflow: hidden;
}
.campus-page-content .campus-video-container .list-item + .list-item {
  margin-top: 3rem;
}
.campus-page-content .campus-video-container .video-container {
  position: relative;
}
.campus-page-content .campus-video-container .video-container.playing .video-content {
  opacity: 1;
}
.campus-page-content .campus-video-container .btn-play {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.campus-page-content .campus-video-container .thumbnail {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.campus-page-content .campus-video-container .thumbnail img {
  width: 100%;
  height: 100%;
}
.campus-page-content .campus-video-container .video-container {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.campus-page-content .campus-video-container .video-content {
  opacity: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 56.25%;
}
.campus-page-content .campus-video-container .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.campus-page-content .campus-video-container .title-area {
  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;
  margin-top: 1.2rem;
}
.campus-page-content .campus-video-container .title-area .title {
  font-weight: 700;
  font-size: 1.2rem;
}
.campus-page-content .campus-video-container .title-area .sub-text {
  display: none;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.campus-page-content .map-section {
  position: relative;
  overflow: hidden;
  background-color: #555;
}
.campus-page-content .map-section .pc-map-container {
  position: relative;
  background-color: #555;
  max-width: 1600px;
  margin: 0 auto;
}
.campus-page-content .map-section .pc-map-container .map-container {
  z-index: 1;
  position: relative;
}
.campus-page-content .map-section .pc-map-container .map-title {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.campus-page-content .map-section .pc-map-container .item-nation {
  position: absolute;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}
.campus-page-content .map-section .pc-map-container .item-nation.active .popup-item {
  opacity: 1;
  visibility: visible;
}
.campus-page-content .map-section .pc-map-container .item-nation.active .btn-nation .name {
  opacity: 0;
}
.campus-page-content .map-section .pc-map-container .item-nation.active .btn-nation .dot {
  -webkit-animation: dotScale 1.4s ease-in-out infinite both;
          animation: dotScale 1.4s ease-in-out infinite both;
}
@-webkit-keyframes dotScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(3.2);
            transform: scale(3.2);
    opacity: 0;
  }
}
@keyframes dotScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(3.2);
            transform: scale(3.2);
    opacity: 0;
  }
}
.campus-page-content .map-section .pc-map-container .item-nation.hide .btn-nation {
  opacity: 0 !important;
}
.campus-page-content .map-section .pc-map-container .item-nation[data-name=china] {
  top: 51%;
  left: 78%;
}
.campus-page-content .map-section .pc-map-container .item-nation[data-name=usa] {
  top: 47%;
  left: 13%;
}
.campus-page-content .map-section .pc-map-container .item-nation[data-name=europe] {
  top: 36%;
  left: 50%;
}
.campus-page-content .map-section .pc-map-container .item-nation[data-name=asia] {
  top: 59%;
  left: 71%;
}
.campus-page-content .map-section .pc-map-container .item-nation[data-name=japan] {
  top: 48%;
  left: 90%;
}
.campus-page-content .map-section .pc-map-container .item-nation .btn-nation {
  min-width: 6rem;
  height: 4rem;
  overflow: hidden;
}
.campus-page-content .map-section .pc-map-container .item-nation .btn-nation .name {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.campus-page-content .map-section .pc-map-container .item-nation .btn-nation .dot {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.4rem auto 0;
  border-radius: 50%;
  background-color: #ea002c;
  -webkit-animation: ping 1.6s ease-in-out infinite both;
          animation: ping 1.6s ease-in-out infinite both;
}
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(3.2);
            transform: scale(3.2);
    opacity: 0;
  }
}
@keyframes ping {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  80% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(3.2);
            transform: scale(3.2);
    opacity: 0;
  }
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  width: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  -webkit-box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(60px);
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 0.4rem;
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item[data-name=china] {
  right: calc(100% + 6rem);
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item[data-name=usa] {
  left: calc(100% + 9rem);
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item[data-name=europe] {
  right: calc(100% + 4rem);
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item[data-name=asia] {
  right: calc(100% + 2rem);
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-item[data-name=japan] {
  right: calc(100% + 2rem);
}
.campus-page-content .map-section .pc-map-container .item-nation .popup-title {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-container {
  padding: 1rem;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-row + .list-row {
  margin-top: 1rem;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .dot.red {
  background-color: #ea002c;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .dot.green {
  background-color: #b3cf0a;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .dot.orange {
  background-color: #f47725;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .name {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 0.7rem;
  color: #fff;
}
.campus-page-content .map-section .pc-map-container .item-nation .list-item .icon {
  width: 0.7rem;
  height: 0.7rem;
  background: url("../images/icon/icon-building-w-14x14.png") no-repeat 0 0;
  background-size: 100% auto;
}
.campus-page-content .map-section .pc-map-container .img-map-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.campus-page-content .map-section .pc-map-container .img-map-content img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.campus-page-content .map-section .pc-map-container .img-map-content img.active {
  opacity: 1;
  visibility: visible;
}
.campus-page-content .map-section .pc-map-container .nation-guide {
  position: absolute;
  bottom: 2rem;
  left: 0;
  z-index: 2;
}
.campus-page-content .map-section .mobile-map-container {
  padding: 3rem 0;
}
.campus-page-content .map-section .mobile-map-container .map-title {
  font-weight: 700;
  font-size: 1.2rem;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container {
  margin: 0.8rem auto 0;
  padding-bottom: 0;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container .swiper-wrapper {
  padding: 0;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container .swiper-slide img {
  width: 100%;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container .swiper-pagination {
  margin-top: 0;
  position: absolute;
  bottom: 0.8rem !important;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container .swiper-pagination-bullet {
  margin: 0 0.3rem;
}
.campus-page-content .map-section .mobile-map-container .map-slider-container .swiper-pagination-bullet-active {
  background-color: #f47725;
}
.campus-page-content .map-section .mobile-map-container .map-intro-container {
  margin-top: 1.8rem;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper {
  display: none;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper:first-child {
  display: block;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-title {
  margin-bottom: 0.8rem;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 1rem;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid #d6d6dd;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-row:last-child {
  padding-bottom: 0;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .dot.red {
  background-color: #ea002c;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .dot.green {
  background-color: #b3cf0a;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .dot.orange {
  background-color: #f47725;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .name {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 0.7rem;
  color: #111;
}
.campus-page-content .map-section .mobile-map-container .map-list-wrapper .list-container .list-item .icon {
  width: 0.7rem;
  height: 0.7rem;
  background: url("../images/icon/icon-building-bk-14x14.png") no-repeat 0 0;
  background-size: 100% auto;
}
.campus-page-content .map-section .mobile-map-container .nation-guide {
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.campus-page-content .map-section .mobile-map-container .nation-guide .item {
  gap: 0.2rem;
}
.campus-page-content .map-section .mobile-map-container .nation-guide .dot {
  width: 0.3rem;
  height: 0.3rem;
}
.campus-page-content .map-section .mobile-map-container .nation-guide .text {
  white-space: nowrap;
  font-size: 0.55rem;
  letter-spacing: -0.01em;
}
.campus-page-content .map-section .nation-guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.campus-page-content .map-section .nation-guide .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.campus-page-content .map-section .nation-guide .dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}
.campus-page-content .map-section .nation-guide .dot.red {
  background-color: #ea002c;
}
.campus-page-content .map-section .nation-guide .dot.orange {
  background-color: #f47725;
}
.campus-page-content .map-section .nation-guide .dot.green {
  background-color: #b3cf0a;
}
.campus-page-content .map-section .nation-guide .text {
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  font-size: 0.7rem;
  color: #9fa4aa;
}

@media (max-width: 900px) {
  .campus-page-content .common-lnb-section {
    padding-bottom: 3rem;
    background-image: url("../images/company/img-campus-mo-bg.png");
  }
  .campus-page-content .common-lnb-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem !important;
  }
  .campus-page-content .common-lnb-wrapper .lnb-content {
    position: static;
  }
  .campus-page-content .campus-video-container.first-show .list-item {
    opacity: 1;
    visibility: visible;
  }
  .campus-page-content .campus-video-container .list-item {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  .campus-page-content .campus-video-container .list-item + .list-item {
    margin-top: 2.4rem;
  }
  .campus-page-content .campus-video-container .list-item:first-child {
    opacity: 1;
    visibility: visible;
  }
  .campus-page-content .campus-video-container .btn-play {
    background-size: 2rem 2rem;
  }
  .campus-page-content .campus-video-container .title-area {
    margin-top: 0.4rem;
  }
  .campus-page-content .campus-video-container .title-area .title {
    font-size: 0.8rem;
  }
  .campus-page-content .campus-video-container .title-area .sub-text {
    font-size: 0.6rem;
  }
  .campus-page-content .map-section {
    background-color: #fff;
  }
  .campus-page-content .location-section {
    padding: 3rem 0px 3rem 0px;
  }
  .campus-page-content .location-list-container .list-item {
    gap: 1.2rem;
    padding: 0px 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .campus-page-content .location-list-container .list-item + .list-item {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(159, 164, 170, 0.5);
  }
  .campus-page-content .location-list-container .map-content {
    width: 100%;
  }
  .campus-page-content .location-list-container .map-content .title {
    font-size: 1.2rem;
  }
  .campus-page-content .location-list-container .map-content .map {
    display: none;
  }
  .campus-page-content .location-list-container .info-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    width: 100%;
  }
  .campus-page-content .location-list-container .info-item {
    gap: 0.4rem;
    padding: 1.2rem 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .campus-page-content .location-list-container .info-item + .info-item {
    border-top: 1px solid rgba(159, 164, 170, 0.5);
  }
  .campus-page-content .location-list-container .info-item .name {
    min-width: auto;
    padding-left: 1rem;
    font-size: 0.9rem;
  }
  .campus-page-content .location-list-container .info-item .name::before {
    width: 0.8rem;
    height: 0.8rem;
  }
  .campus-page-content .location-list-container .info-item .info-text {
    font-size: 0.6rem;
  }
}
.search-result-page-content .sub-common-layout-item:last-child .search-result-box .box-title {
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 700;
}
.search-result-page-content .search-result-box .box-title {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-family: "Poppins", arial, sans-serif, Arial, dotum, "돋움";
  font-weight: 600;
  line-height: 1.32;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(214, 214, 221, 0.5);
}
.search-result-page-content .search-result-list .list-item {
  padding: 2rem 0;
}
.search-result-page-content .search-result-list .list-item + .list-item {
  border-top: 1px solid rgba(214, 214, 221, 0.5);
}
.search-result-page-content .search-result-list .list-item:first-child {
  padding-top: 0;
}
.search-result-page-content .search-result-list .list-item:last-child {
  padding-bottom: 0;
}
.search-result-page-content .search-result-list .list-item .point {
  color: #f47725;
}
.search-result-page-content .search-result-list .list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.search-result-page-content .search-result-list .list-title .title {
  word-break: break-all;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 1rem;
}
.search-result-page-content .search-result-list .list-title .title:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-result-page-content .search-result-list .list-title .icon-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../images/icon/icon-arrow-bk-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.search-result-page-content .search-result-list .list-text {
  margin-top: 0.6rem;
  word-break: break-all;
  display: block;
  display: -webkit-box;
  max-height: 3.2em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 0.8rem;
}
.search-result-page-content .search-result-list .path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  margin-top: 0.6rem;
}
.search-result-page-content .search-result-list .path .icon {
  width: 0.8rem;
  height: 0.8rem;
  background: url("../images/icon/icon-arrow-gy-16x16.png") no-repeat 0 0;
  background-size: cover;
}
.search-result-page-content .search-result-list .path-text {
  line-height: 1.6;
  font-size: 0.7rem;
  color: #6b7077;
}
.search-result-page-content .search-result-list .empty-text {
  font-weight: 700;
  font-size: 1rem;
}
.search-result-page-content .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .search-result-page-content .sub-common-visual {
    display: none;
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.4rem;
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-item {
    width: calc(50% - 0.2rem);
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-item.active {
    background-color: #fff !important;
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-item.active .title-area::before {
    display: none !important;
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-item.active .title-area .text {
    color: #111 !important;
  }
  .search-result-page-content .common-lnb-wrapper .lnb-list-item.active .count {
    color: #9fa4aa !important;
  }
  .search-result-page-content .search-result-box .box-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .search-result-page-content .search-result-list .list-item {
    padding: 1.2rem 0;
  }
  .search-result-page-content .search-result-list .list-title .title {
    font-size: 0.7rem;
  }
  .search-result-page-content .search-result-list .list-title .icon-arrow {
    width: 1rem;
    height: 1rem;
  }
  .search-result-page-content .search-result-list .list-text {
    margin-top: 0.4rem;
    font-size: 0.7rem;
  }
  .search-result-page-content .search-result-list .path {
    gap: 0.2rem;
    margin-top: 0.4rem;
  }
  .search-result-page-content .search-result-list .path .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .search-result-page-content .search-result-list .path-text {
    font-size: 0.6rem;
  }
  .search-result-page-content .search-result-list .empty-text {
    font-size: 0.8rem;
  }
  .search-result-page-content .btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
  }
}
.jobs-intro-page-content {
  padding-top: 8.2rem;
}
.jobs-intro-page-content .hero-section {
  padding-bottom: 3rem;
  text-align: center;
}
.jobs-intro-page-content .hero-section.active .title,
.jobs-intro-page-content .hero-section.active .sub-text {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.jobs-intro-page-content .hero-section .title {
  opacity: 0;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.8rem;
}
.jobs-intro-page-content .hero-section .sub-text {
  opacity: 0;
  margin-top: 0.6rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.jobs-intro-page-content .jobs-intro-group + .jobs-intro-group {
  margin-top: 6rem;
}
.jobs-intro-page-content .jobs-intro-group .content-title {
  margin-bottom: 2rem;
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.8rem;
}
.jobs-intro-page-content .jobs-intro-asset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.jobs-intro-page-content .jobs-intro-asset .thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 7.25rem;
  width: 27rem;
  height: 27rem;
}
.jobs-intro-page-content .jobs-intro-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #111;
}
.jobs-intro-page-content .job-intro-item {
  position: relative;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  padding: 3rem 0;
  border-bottom: 1px solid #d6d6dd;
}
.jobs-intro-page-content .job-intro-item .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.jobs-intro-page-content .job-intro-item .title {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.2rem;
}
.jobs-intro-page-content .job-intro-item .icon-typo {
  display: none;
  width: 1.4rem;
}
.jobs-intro-page-content .job-intro-item .icon-typo img {
  width: 100%;
}
.jobs-intro-page-content .job-intro-item .sub-text {
  margin-top: 0.6rem;
  line-height: 1.8;
  font-size: 0.7rem;
  color: #6b7077;
}
.jobs-intro-page-content .job-intro-item .link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-top: 0.6rem;
}
.jobs-intro-page-content .job-intro-item .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.jobs-intro-page-content .job-intro-item .link-item .icon {
  width: 1rem;
  height: 1rem;
}
.jobs-intro-page-content .job-intro-item .link-item .name {
  font-weight: 700;
  font-size: 0.7rem;
  color: #f47725;
}
.jobs-intro-page-content .parallax-horizontal-img img {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 900px) {
  .jobs-intro-page-content {
    padding-top: 4.6rem;
  }
  .jobs-intro-page-content .hero-section {
    padding-bottom: 1.8rem;
    text-align: left;
  }
  .jobs-intro-page-content .hero-section .title {
    font-size: 1.4rem;
  }
  .jobs-intro-page-content .hero-section .sub-text {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .jobs-intro-page-content .jobs-intro-group + .jobs-intro-group {
    margin-top: 3rem;
  }
  .jobs-intro-page-content .jobs-intro-group .content-title {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  .jobs-intro-page-content .jobs-intro-asset {
    gap: 1.8rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .jobs-intro-page-content .jobs-intro-asset .thumbnail {
    position: relative;
    top: 0;
    width: 100%;
    height: 16.4rem;
  }
  .jobs-intro-page-content .jobs-intro-list {
    border-top: 1px solid #111;
  }
  .jobs-intro-page-content .job-intro-item {
    padding: 1.8rem 0;
    border-bottom: 1px solid #d6d6dd;
  }
  .jobs-intro-page-content .job-intro-item .title {
    font-size: 0.9rem;
  }
  .jobs-intro-page-content .job-intro-item .sub-text {
    margin-top: 0.4rem;
    font-size: 0.6rem;
    word-break: keep-all;
  }
  .jobs-intro-page-content .job-intro-item .sub-text br {
    display: none;
  }
  .jobs-intro-page-content .job-intro-item .link-area {
    gap: 0.6rem;
    margin-top: 0.4rem;
  }
  .jobs-intro-page-content .job-intro-item .link-item {
    gap: 0.1rem;
  }
  .jobs-intro-page-content .job-intro-item .link-item .icon {
    width: 1rem;
    height: 1rem;
  }
  .jobs-intro-page-content .job-intro-item .link-item .name {
    font-size: 0.7rem;
  }
}
.announcement-page-content .announcement-content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.announcement-page-content .announcement-content .content-title .title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.6rem;
  word-break: break-all;
}
.announcement-page-content .announcement-content .content-title .common-btn-more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.announcement-page-content .announcement-content .summary-box-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.announcement-page-content .announcement-content .summary-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.5rem;
}
.announcement-page-content .announcement-content .summary-box-wrapper:nth-child(2) .summary-box-item {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.announcement-page-content .announcement-content .summary-box-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.2rem;
  border-radius: 0.8rem;
  background-color: #f9fafb;
}
.announcement-page-content .announcement-content .summary-box-item.large {
  padding: 2rem 1.2rem;
}
.announcement-page-content .announcement-content .summary-box-item .box-title {
  font-weight: 700;
  font-size: 0.9rem;
}
.announcement-page-content .announcement-content .summary-box-item .normal-text {
  line-height: 1.6;
  font-size: 0.8rem;
}
.announcement-page-content .announcement-content .summary-box-item .summary-info {
  margin-top: 0.6rem;
}
.announcement-page-content .announcement-content .summary-box-item .summary-info .d-day {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  margin-top: 0.6rem;
  border-radius: 0.2rem;
  background-color: #fef2f4;
  border: 1px solid #ea002c;
  line-height: 1.6;
  font-size: 0.6rem;
  color: #ea002c;
}
.announcement-page-content .announcement-content .summary-box-item .summary-info .hash-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  row-gap: 0.2rem;
}
.announcement-page-content .announcement-content .summary-box-item .summary-info .hash-area > div {
  line-height: 1.6;
  font-size: 0.8rem;
}
.announcement-page-content .announcement-content .jobs-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.2rem;
}
.announcement-page-content .announcement-content .jobs-list-container .job-title {
  position: relative;
}
.announcement-page-content .announcement-content .jobs-list-container .job-title span {
  display: inline-block;
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #111;
}
.announcement-page-content .announcement-content .jobs-list-container .job-title span::before {
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  background: url("../images/icon/icon-circle-check-bk-fill-16x16.png") no-repeat 0 0;
  background-size: cover;
}
.announcement-page-content .announcement-content .job-list-asset {
  padding: 1.2rem 0;
}
.announcement-page-content .announcement-content .job-list-asset + .job-list-asset {
  border-top: 1px solid #e1e3e6;
}
.announcement-page-content .announcement-content .job-list-asset:first-child {
  padding-top: 0;
}
.announcement-page-content .announcement-content .job-list-asset:last-child {
  padding-bottom: 0;
}
.announcement-page-content .announcement-content .job-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.8rem 2px;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item {
  position: relative;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
  width: calc(33.333% - 0.135rem);
  height: 4.6rem;
  background-color: #fff;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item:hover {
  background-color: #f47725;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item:hover a::before {
  display: block;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item:hover .title,
.announcement-page-content .announcement-content .job-list-wrapper .list-item:hover .hash {
  color: #fff;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  gap: 0.6rem;
  padding: 1.05rem 1.2rem;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item a::before {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../images/icon/icon-arrow-right-w-32x32.png") no-repeat 0 0;
  background-size: cover;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item .title {
  font-weight: 700;
  font-size: 0.9rem;
  word-break: break-all;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item .hash {
  line-height: 1.6;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: #6b7077;
  word-break: break-all;
}
.announcement-page-content .announcement-content .job-list-wrapper .list-item .typo {
  display: none;
}
.announcement-page-content .announcement-content .share-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.announcement-page-content .announcement-content .common-sns-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 900px) {
  .announcement-page-content .sub-common-visual {
    display: none;
  }
  .announcement-page-content .announcement-content .content-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .announcement-page-content .announcement-content .content-title .title {
    line-height: 1.4;
    font-size: 1rem;
  }
  .announcement-page-content .announcement-content .summary-box-layout {
    gap: 0.4rem;
  }
  .announcement-page-content .announcement-content .summary-box-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
  .announcement-page-content .announcement-content .summary-box-wrapper:nth-child(2) .summary-box-item {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .announcement-page-content .announcement-content .summary-box-item {
    padding: 1.2rem 0.8rem;
    border-radius: 0.6rem;
  }
  .announcement-page-content .announcement-content .summary-box-item.large {
    padding: 2rem 1.2rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .box-title {
    font-size: 0.8rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .normal-text {
    font-size: 0.7rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .summary-info {
    margin-top: 0.4rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .summary-info .d-day {
    padding: 0.1rem 0.4rem;
    margin-top: 0.4rem;
    border-radius: 0.2rem;
    font-size: 0.6rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .summary-info .hash-area {
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
    row-gap: 0.2rem;
  }
  .announcement-page-content .announcement-content .summary-box-item .summary-info .hash-area > div {
    font-size: 0.7rem;
  }
  .announcement-page-content .announcement-content .jobs-list-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.8rem;
  }
  .announcement-page-content .announcement-content .jobs-list-container .job-title span {
    font-size: 0.7rem;
  }
  .announcement-page-content .announcement-content .jobs-list-container .job-title span::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.1rem;
  }
  .announcement-page-content .announcement-content .job-list-asset {
    padding: 0.8rem 0;
  }
  .announcement-page-content .announcement-content .job-list-wrapper {
    margin-top: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .announcement-page-content .announcement-content .job-list-wrapper .list-item {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: -1px;
  }
  .announcement-page-content .announcement-content .job-list-wrapper .list-item a {
    padding: 0.85rem 1.2rem;
    min-height: 4rem;
  }
  .announcement-page-content .announcement-content .job-list-wrapper .list-item .title {
    font-size: 0.8rem;
  }
  .announcement-page-content .announcement-content .job-list-wrapper .list-item .hash {
    margin-top: 0.2rem;
    font-size: 0.6rem;
  }
  .announcement-page-content .announcement-content .job-list-wrapper .list-item .typo {
    width: 1.6rem;
  }
  .announcement-page-content .announcement-content .share-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .announcement-page-content .announcement-content .common-sns-list {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0.4rem;
  }
}
.common-interview-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.common-interview-list-container .list-item {
  width: calc(33.333% - 0.675rem);
  height: 12rem;
}
.common-interview-list-container .list-item a {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 2rem;
  background-color: #fff;
}
.common-interview-list-container .list-item .title {
  font-weight: 700;
  display: block;
  display: -webkit-box;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.common-interview-list-container .list-item .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.common-interview-list-container .list-item .job,
.common-interview-list-container .list-item .name {
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.common-interview-list-container .list-item .name {
  margin-top: 0.2rem;
}
.common-interview-list-container .list-item .icon-typo {
  width: 2.8rem;
}
.common-interview-list-container .list-item .icon-typo img {
  width: 100%;
}
.common-interview-list-container .list-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12rem;
  padding: 2rem 4rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.common-interview-list-container .list-banner.small {
  width: calc(33.333% - 0.675rem);
}
.common-interview-list-container .list-banner.large {
  width: calc(66.667% - 0.325rem);
}
.common-interview-list-container .list-banner .title {
  display: block;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2rem;
}
.common-interview-list-container .list-banner .sub-text {
  margin-top: 0.4rem;
  line-height: 1.8;
  font-size: 0.75rem;
  color: #6b7077;
}

.welfare-page-content {
  padding-bottom: 0;
  padding-top: 9.2rem;
}
.welfare-page-content .hero-section .hero-title {
  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;
  padding-bottom: 5rem;
  text-align: center;
}
.welfare-page-content .hero-section .hero-title.active span {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.welfare-page-content .hero-section .hero-title span {
  opacity: 0;
  display: inline-block;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.8rem;
}
.welfare-page-content .walfare-visual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.welfare-page-content .walfare-visual-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  width: 25%;
  height: 36rem;
  padding: 3rem 2rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.welfare-page-content .walfare-visual-list .list-item:nth-child(1) {
  background-image: url("../images/culture/img-walfare-visual-01.jpg");
}
.welfare-page-content .walfare-visual-list .list-item:nth-child(2) {
  background-image: url("../images/culture/img-walfare-visual-02.jpg");
}
.welfare-page-content .walfare-visual-list .list-item:nth-child(3) {
  background-image: url("../images/culture/img-walfare-visual-03.jpg");
}
.welfare-page-content .walfare-visual-list .list-item:nth-child(4) {
  background-image: url("../images/culture/img-walfare-visual-04.jpg");
}
@media (hover: hover) and (pointer: fine) {
  .welfare-page-content .walfare-visual-list .list-item:hover::before, .welfare-page-content .walfare-visual-list .list-item:focus-visible::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.welfare-page-content .walfare-visual-list .list-item::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.welfare-page-content .walfare-visual-list .list-item .title-area {
  position: relative;
  z-index: 2;
  text-align: left;
}
.welfare-page-content .walfare-visual-list .list-item .title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.welfare-page-content .walfare-visual-list .list-item .sub-text {
  margin-top: 0.8rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #fff;
}
.welfare-page-content .welfare-list-section {
  padding: 5rem 0 8rem;
  background-color: #fff;
}
.welfare-page-content .welfare-list-group + .welfare-list-group {
  margin-top: 5rem;
}
.welfare-page-content .welfare-list-group .list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.welfare-page-content .welfare-list-group .list-title .icon {
  width: 1.4rem;
  height: 1.4rem;
}
.welfare-page-content .welfare-list-group .list-title .title {
  font-weight: 700;
  line-height: 1.32;
  font-size: 1.6rem;
}
.welfare-page-content .welfare-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.welfare-page-content .welfare-list-content.mobile-show {
  display: none;
}
.welfare-page-content .welfare-list-content.content-03.pc-show .box-group:nth-child(1) {
  width: calc(33.333% - 0.5rem);
}
.welfare-page-content .welfare-list-content.content-03.pc-show .box-group:nth-child(2) {
  width: calc(66.667% - 0.5rem);
}
.welfare-page-content .welfare-list-content.content-03.pc-show .box-group .box-wrapper.column {
  width: 100%;
}
.welfare-page-content .welfare-list-content .box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 1rem;
  width: 100%;
}
.welfare-page-content .welfare-list-content .box-wrapper.column {
  width: calc(33.333% - 0.7rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.welfare-page-content .welfare-list-content .box-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 13rem;
  padding: 2rem;
  background: #f2f3f5;
}
.welfare-page-content .welfare-list-content .box-item .swiper-slide {
  width: calc(100% + 0.025rem) !important;
  margin-right: -0.025rem;
}
.welfare-page-content .welfare-list-content .box-item.image {
  height: 27rem;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}
.welfare-page-content .welfare-list-content .box-item.image.small {
  height: 13rem;
}
.welfare-page-content .welfare-list-content .box-item.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.welfare-page-content .welfare-list-content .box-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.2rem;
}
.welfare-page-content .welfare-list-content .box-item .title .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.2rem;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
.welfare-page-content .welfare-list-content .box-item .sub-text {
  margin-top: 0.6rem;
  line-height: 1.8;
  font-size: 0.75rem;
  color: #6b7077;
}
.welfare-page-content .swiper-container {
  margin: 0;
  height: 100%;
}
.welfare-page-content .swiper-container .swiper-wrapper {
  padding: 0;
}
.welfare-page-content .swiper-container .swiper-pagination {
  position: absolute;
  bottom: 1.2rem !important;
}
.welfare-page-content .swiper-container .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #e1e3e6;
}
.welfare-page-content .swiper-container .swiper-pagination-bullet-active {
  background-color: #f47725;
}

@media (max-width: 900px) {
  .welfare-page-content {
    padding-top: 4.6rem;
  }
  .welfare-page-content .hero-section .hero-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 1.8rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    text-align: left;
  }
  .welfare-page-content .hero-section .hero-title span {
    font-size: 1.35rem;
  }
  .welfare-page-content .walfare-visual-list {
    gap: 0.1rem;
  }
  .welfare-page-content .walfare-visual-list .list-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(50% - 0.05rem);
    height: 6rem;
    padding: 0.8rem;
  }
  .welfare-page-content .walfare-visual-list .list-item:nth-child(1) {
    background-image: url("../images/culture/img-walfare-visual-mo-01.jpg");
  }
  .welfare-page-content .walfare-visual-list .list-item:nth-child(2) {
    background-image: url("../images/culture/img-walfare-visual-mo-02.jpg");
  }
  .welfare-page-content .walfare-visual-list .list-item:nth-child(3) {
    background-image: url("../images/culture/img-walfare-visual-mo-03.jpg");
  }
  .welfare-page-content .walfare-visual-list .list-item:nth-child(4) {
    background-image: url("../images/culture/img-walfare-visual-mo-04.jpg");
  }
  .welfare-page-content .walfare-visual-list .list-item .title {
    font-size: 0.9rem;
  }
  .welfare-page-content .walfare-visual-list .list-item .sub-text {
    display: none;
  }
  .welfare-page-content .welfare-list-section {
    padding: 3rem 0;
  }
  .welfare-page-content .welfare-list-group + .welfare-list-group {
    margin-top: 3rem;
  }
  .welfare-page-content .welfare-list-group .list-title {
    gap: 0.4rem;
    margin-bottom: 0.8rem;
  }
  .welfare-page-content .welfare-list-group .list-title .icon {
    width: 1rem;
    height: 1rem;
  }
  .welfare-page-content .welfare-list-group .list-title .title {
    font-size: 1.2rem;
  }
  .welfare-page-content .mobile-slider-image {
    margin-bottom: 0.4rem;
  }
  .welfare-page-content .mobile-slider-image img {
    width: 100%;
  }
  .welfare-page-content .welfare-list-content {
    gap: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .welfare-page-content .welfare-list-content.pc-show {
    display: none;
  }
  .welfare-page-content .welfare-list-content.mobile-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .welfare-page-content .welfare-list-content.content-04 .box-wrapper:nth-child(2) {
    display: none;
  }
  .welfare-page-content .welfare-list-content .box-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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.4rem;
  }
  .welfare-page-content .welfare-list-content .box-wrapper.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .welfare-page-content .welfare-list-content .box-item {
    width: 100%;
    height: auto;
    padding: 1.2rem;
  }
  .welfare-page-content .welfare-list-content .box-item.image {
    display: none;
  }
  .welfare-page-content .welfare-list-content .box-item .title {
    gap: 0.2rem;
    font-size: 0.9rem;
  }
  .welfare-page-content .welfare-list-content .box-item .title .icon {
    margin-top: 0.1rem;
    width: 1rem;
    height: 1rem;
  }
  .welfare-page-content .welfare-list-content .box-item .sub-text {
    margin-top: 0.4rem;
    font-size: 0.65rem;
    word-break: keep-all;
  }
  .welfare-page-content .swiper-container {
    margin: 0;
  }
  .welfare-page-content .swiper-container .swiper-wrapper {
    padding: 0;
  }
  .welfare-page-content .swiper-container .swiper-pagination {
    position: absolute;
    bottom: 1.2rem !important;
  }
  .welfare-page-content .swiper-container .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
    background-color: #e1e3e6;
  }
  .welfare-page-content .swiper-container .swiper-pagination-bullet-active {
    background-color: #f47725;
  }
}
.terms-page-content .section-inner {
  max-width: 56rem;
}
.terms-page-content .terms-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.terms-page-content .terms-tab .tab-item {
  position: relative;
}
.terms-page-content .terms-tab .tab-item.active a {
  border-bottom: 0.1rem solid #f47725;
  color: #111;
}
.terms-page-content .terms-tab .tab-item:last-child::before {
  display: block;
  content: "";
  width: 0.05rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d6d6dd;
}
.terms-page-content .terms-tab a {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #9fa4aa;
}
.terms-page-content .tab-content-container {
  margin-top: 4rem;
}
.terms-page-content .tab-content-item:nth-child(2) .certi-group + .certi-group {
  border-top: 0;
  padding-top: 0;
}
.terms-page-content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.terms-page-content .content-title .title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.4rem;
}
.terms-page-content .content-title select {
  height: 2.4rem;
  padding: 0 2rem 0 1rem;
  background-color: transparent;
  line-height: 1.6;
  font-size: 0.7rem;
}
.terms-page-content .terms-list-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.5rem;
  margin-top: 4rem;
}
.terms-page-content .terms-list-anchor .list-item {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  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.1rem;
  width: calc(33.333% - 0.335rem);
  padding: 0.625rem 1rem;
  border-radius: 0.2rem;
  background-color: #fff;
  text-align: left;
}
.terms-page-content .terms-list-anchor .list-item:hover {
  background-color: #f47725;
}
.terms-page-content .terms-list-anchor .list-item:hover .number,
.terms-page-content .terms-list-anchor .list-item:hover .text {
  color: #fff;
}
.terms-page-content .terms-list-anchor .number {
  font-weight: 700;
  font-size: 0.6rem;
  color: #9fa4aa;
}
.terms-page-content .terms-list-anchor .text {
  font-weight: 700;
  font-size: 0.7rem;
  word-break: keep-all;
}
.terms-page-content .terms-content-box {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 0.8rem;
  background-color: #fff;
}
.terms-page-content .terms-content-box * {
  line-height: 1.6;
  font-size: 0.7rem;
  color: #6b7077;
  word-break: keep-all;
}
.terms-page-content .certi-group + .certi-group {
  padding-top: 3rem;
  position: relative;
  margin-top: 3rem;
  border-top: 1px solid #d6d6dd;
}
.terms-page-content .certi-tit {
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}
.terms-page-content .custom-txt-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  gap: 0.3rem;
}
.terms-page-content .custom-txt-list li + li {
  margin-top: 0.6rem;
}
.terms-page-content .custom-txt-list li .hypen-list-wrap {
  width: 100%;
}
.terms-page-content .custom-txt-list li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.terms-page-content .custom-txt-list em {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-style: normal;
}
.terms-page-content .custom-txt-list em.circle {
  width: 0.7rem;
  margin-top: 0.15rem;
  text-align: center;
  font-size: 0.5rem;
}
.terms-page-content .custom-txt-list em.circle::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  text-align: center;
  border: 1px solid #6b7077;
  border-radius: 50%;
  color: #6b7077;
}
.terms-page-content .hypen-list-wrap li {
  position: relative;
  padding-left: 0.5rem;
}
.terms-page-content .hypen-list-wrap li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.3rem;
  height: 0.05rem;
  background-color: #6b7077;
}

@media (max-width: 900px) {
  .terms-page-content .terms-tab {
    gap: 0.8rem;
  }
  .terms-page-content .terms-tab .tab-item:last-child::before {
    width: 0.05rem;
    height: 0.7rem;
    left: -0.4rem;
  }
  .terms-page-content .terms-tab a {
    font-size: 0.75rem;
  }
  .terms-page-content .tab-content-container {
    margin-top: 1.8rem;
  }
  .terms-page-content .content-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.4rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .terms-page-content .content-title .title {
    font-size: 1.4rem;
  }
  .terms-page-content .content-title .select-box-container {
    width: 100%;
  }
  .terms-page-content .content-title select {
    height: 2.4rem;
    padding: 0 1.8rem 0 0.8rem;
    font-size: 0.7rem;
  }
  .terms-page-content .terms-list-anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.8rem;
  }
  .terms-page-content .terms-list-anchor .list-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;
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 0.4rem;
  }
  .terms-page-content .terms-list-anchor .number {
    font-size: 0.6rem;
  }
  .terms-page-content .terms-list-anchor .text {
    font-size: 0.7rem;
  }
  .terms-page-content .terms-content-box {
    margin-top: 1.8rem;
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    padding: 1.8rem 0.8rem;
    border-radius: 0;
  }
  .terms-page-content .terms-content-box * {
    font-size: 0.6rem;
  }
  .terms-page-content .terms-content-box .data-table {
    overflow: auto;
  }
  .terms-page-content .terms-content-box table {
    min-width: 24rem;
  }
  .terms-page-content .terms-content-box table.min-large {
    min-width: 40rem;
  }
  .terms-page-content .terms-content-box table col {
    width: auto !important;
  }
  .terms-page-content .terms-content-box table th,
  .terms-page-content .terms-content-box table td {
    font-size: 0.6rem !important;
    word-break: break-all;
  }
  .terms-page-content .terms-content-box table td {
    padding: 0.4rem 0.5rem;
  }
  .terms-page-content .certi-group + .certi-group {
    border: 0;
    padding-top: 1.8rem;
    margin-top: 1.8rem;
  }
  .terms-page-content .certi-group + .certi-group::before {
    display: block;
    content: "";
    width: calc(100% + 1.6rem);
    height: 0.05rem;
    left: 50%;
    top: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #d6d6dd;
  }
  .terms-page-content .certi-tit {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }
  .terms-page-content .custom-txt-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    gap: 0.3rem;
  }
  .terms-page-content .custom-txt-list li + li {
    margin-top: 0.6rem;
  }
  .terms-page-content .custom-txt-list li .hypen-list-wrap {
    width: 100%;
  }
  .terms-page-content .custom-txt-list li p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .terms-page-content .custom-txt-list em {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-style: normal;
  }
  .terms-page-content .custom-txt-list em.circle {
    width: 0.6rem;
    margin-top: 0.1rem;
    font-size: 0.45rem;
  }
  .terms-page-content .custom-txt-list em.circle::before {
    top: 0.1rem;
    width: 0.6rem;
    height: 0.6rem;
  }
  .terms-page-content .hypen-list-wrap li {
    position: relative;
    padding-left: 0.5rem;
  }
  .terms-page-content .hypen-list-wrap li::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 0.3rem;
    height: 0.05rem;
    background-color: #6b7077;
  }
}
.jobs-detail-page-content {
  padding-top: 4.2rem;
  padding-bottom: 0;
}
.jobs-detail-page-content .common-lnb-section .section-inner {
  padding: 0;
}
.jobs-detail-page-content .common-lnb-section .common-lnb-wrapper {
  gap: 0;
}
.jobs-detail-page-content .common-lnb-section .common-lnb-wrapper.active .lnb-content .title,
.jobs-detail-page-content .common-lnb-section .common-lnb-wrapper.active .lnb-content .info-area {
  opacity: 1;
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jobs-detail-page-content .common-lnb-section .lnb-content {
  width: 32rem;
  top: 4.2rem;
  gap: 1.2rem;
  padding: 4rem 3rem 4rem;
  min-height: calc(100vh - 4.2rem) !important;
}
.jobs-detail-page-content .common-lnb-section .lnb-content.space {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .btn-close {
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/icon/icon-arrow-left-bk-48x48.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .logo {
  display: none;
  width: 4rem;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .title {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  opacity: 0;
  font-weight: 800;
  line-height: 1.32;
  font-size: 1.8rem;
  word-break: keep-all;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .info-wrapper {
  margin-top: 1.2rem;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .info-area {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.jobs-detail-page-content .common-lnb-section .lnb-content .info-area div {
  position: relative;
  font-size: 0.9rem;
  color: #111;
  word-break: keep-all;
}
.jobs-detail-page-content .common-notice-detail-content .detail-body {
  border-radius: 0;
}

@media (max-width: 900px) {
  .jobs-detail-page-content {
    padding-top: 4.6rem;
    padding-bottom: 0;
  }
  .jobs-detail-page-content .common-lnb-section .section-inner {
    padding: 0 0.8rem;
  }
  .jobs-detail-page-content .common-lnb-section .common-lnb-wrapper {
    gap: 0;
  }
  .jobs-detail-page-content .common-lnb-section .lnb-content {
    width: 100%;
    position: static;
    gap: 1.2rem;
    padding: 0;
    min-height: auto !important;
  }
  .jobs-detail-page-content .common-lnb-section .lnb-content .btn-close {
    display: none;
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/icon/icon-arrow-left-bk-48x48.png") no-repeat 0 0;
    background-size: cover;
    text-indent: -9999px;
  }
  .jobs-detail-page-content .common-lnb-section .lnb-content .title {
    font-size: 1.4rem;
  }
  .jobs-detail-page-content .common-lnb-section .lnb-content .info-wrapper {
    margin-top: 0.8rem;
  }
  .jobs-detail-page-content .common-lnb-section .lnb-content .info-area div {
    font-size: 0.8rem;
  }
}
.error-page-content {
  padding: 0;
}
.error-page-content .section-inner {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("../images/etc/img-error-bg.jpg");
  padding: 3rem 0;
}
.error-page-content .content-title {
  width: 41.55rem;
  margin: 0 auto;
}
.error-page-content .content-title .title-wrap {
  position: relative;
}
.error-page-content .content-title .title-wrap .title {
  width: 41.55rem;
  margin: 0 auto;
  mix-blend-mode: soft-light;
}
.error-page-content .content-title .title-wrap .object {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 25rem;
}
.error-page-content .title-area {
  margin-top: -0.95rem;
  text-align: center;
}
.error-page-content .title-area .title {
  font-weight: 700;
  font-size: 1.4rem;
}
.error-page-content .title-area .btn {
  width: 10rem;
  height: 2.6rem;
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .error-page-content .section-inner {
    padding: 3rem 0;
  }
  .error-page-content .content-title {
    width: 17.1rem;
  }
  .error-page-content .content-title .title-wrap .title {
    width: 17.1rem;
  }
  .error-page-content .content-title .title-wrap .object {
    width: 10.8rem;
  }
  .error-page-content .title-area {
    margin-top: 0.6rem;
  }
  .error-page-content .title-area .title {
    font-size: 1.2rem;
  }
  .error-page-content .title-area .btn {
    width: 10rem;
    height: 2.4rem;
    margin-top: 1.2rem;
    font-size: 0.75rem;
  }
}
.culture-page-content.new {
  padding-bottom: 0;
  padding-top: 0;
}
.culture-page-content.new .scroll-text .inner::before {
  border-color: #111;
  color: #111;
}
.culture-page-content.new .scroll-text .inner::after {
  background-image: url("../images/icon/icon-arrow-down-bk-18x18.png");
}
.culture-page-content.new .culture-page-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  background-image: url("../images/culture/img-culture-wrapper-bg.png");
}
.culture-page-content.new .culture-page-wrapper .section-title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.culture-page-content.new .culture-page-wrapper .section-title-01 {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  opacity: 1;
}
.culture-page-content.new .culture-page-wrapper .section-title-01 span {
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
}
.culture-page-content.new .culture-page-wrapper .section-title-01 span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.culture-page-content.new .culture-page-wrapper .section-title-01 span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.culture-page-content.new .culture-page-wrapper .hero-section {
  z-index: 3;
  position: relative;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item {
  position: relative;
  width: 22rem;
  height: 22rem;
  padding: 1.2rem;
  border-radius: 0.4rem;
  backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item * {
  word-break: keep-all;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item.active {
  opacity: 1;
  -webkit-animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .title {
  font-weight: 600;
  line-height: 1.32;
  font-size: 2.15rem;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-title {
  margin-top: 0.6rem;
  line-height: 1.6;
  font-weight: 700;
  color: #ea002c;
  font-size: 1rem;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list {
  margin-top: 0.6rem;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list li {
  position: relative;
  padding-left: 0.6rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list li::before {
  display: block;
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.6;
  font-size: 0.8rem;
}
.culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .page-lottie-object {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 7.25rem;
  height: 7.25rem;
}
.culture-page-content.new .culture-page-wrapper.pc-show {
  height: 100vh;
}
.culture-page-content.new .culture-page-wrapper.pc-show .title-section {
  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;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
}
.culture-page-content.new .culture-page-wrapper.pc-show .section-title {
  opacity: 0;
}
.culture-page-content.new .culture-page-wrapper.pc-show .section-title-01 {
  opacity: 1;
}
.culture-page-content.new .culture-page-wrapper.pc-show .section-title-02 {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
.culture-page-content.new .culture-page-wrapper.pc-show .common-culture-box-list {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.culture-page-content.new .culture-page-wrapper.pc-show .common-culture-box-list .culture-box-inner {
  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: 1rem;
}
.culture-page-content.new .culture-page-wrapper.pc-show .common-culture-box-list .list-item {
  opacity: 0;
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section {
  z-index: 1;
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title {
  position: absolute;
  width: 72rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title img {
  opacity: 0;
  width: 74.5rem;
  max-width: none;
  mix-blend-mode: soft-light;
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title.top {
  opacity: 0.8;
  top: -4.5rem;
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title.top img {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title.bottom {
  opacity: 0.4;
  bottom: -3.5rem;
}
.culture-page-content.new .culture-page-wrapper.pc-show .last-section .bg-title.bottom img {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
.culture-page-content.new .culture-page-wrapper.mobile-show .hero-section {
  padding-top: 7rem;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .culture-box-slider {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  margin-top: 4rem;
  padding: 0 1rem;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section {
  z-index: 1;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title {
  opacity: 0;
  position: absolute;
  width: 72rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title img {
  opacity: 0;
  width: 74.5rem;
  max-width: none;
  mix-blend-mode: soft-light;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.top {
  opacity: 0.8;
  top: -4.5rem;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.top img {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.bottom {
  opacity: 0.4;
  bottom: -3.5rem;
}
.culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.bottom img {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

@media (max-width: 900px) {
  .culture-page-content.new .culture-page-wrapper .section-title {
    text-align: center;
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .culture-page-content.new .culture-page-wrapper .section-title-01 span:nth-child(1) {
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  .culture-page-content.new .culture-page-wrapper .section-title-01 span:nth-child(2) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .culture-page-content.new .culture-page-wrapper .scroll-text {
    display: none;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item {
    width: 16.5rem;
    height: 16.5rem;
    padding: 1.2rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .title {
    font-size: 1.35rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-title {
    margin-top: 0.3rem;
    font-size: 0.7rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list {
    margin-top: 0.3rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list li {
    padding-left: 0.6rem;
    font-size: 0.65rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .sub-list li::before {
    font-size: 0.65rem;
  }
  .culture-page-content.new .culture-page-wrapper .common-culture-box-list .list-item .page-lottie-object {
    bottom: 1.4rem;
    right: 1.4rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .culture-page-content.new .culture-page-wrapper .scroll-text {
    margin-top: 1.8rem;
  }
  .culture-page-content.new .culture-page-wrapper.pc-show {
    display: none;
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show {
    background-image: url("../images/culture/img-culture-wrapper-bg-mo.png");
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section {
    padding: 8rem 0 10rem;
    position: relative;
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title img {
    opacity: 1;
    width: 100%;
    max-width: 100%;
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.top {
    display: none;
    opacity: 1;
    top: 0;
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.top img {
    opacity: 1;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.bottom {
    opacity: 1;
    bottom: 0;
  }
  .culture-page-content.new .culture-page-wrapper.mobile-show .last-section .bg-title.bottom img {
    opacity: 1;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.culture-page-content.old {
  padding-bottom: 0;
  padding-top: 0;
}
.culture-page-content.old .scroll-text .inner::before {
  border-color: #111;
  color: #111;
}
.culture-page-content.old .scroll-text .inner::after {
  background-image: url("../images/icon/icon-arrow-down-bk-18x18.png");
}
.culture-page-content.old .culture-page-inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: relative;
  z-index: 2;
}
.culture-page-content.old .culture-page-wrapper {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  background-image: url("../images/culture/img-culture-wrapper-bg.png");
}
.culture-page-content.old .culture-page-wrapper::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background-image: url("../images/culture/img-culture-wrapper-bg.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.culture-page-content.old .title-section {
  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;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
}
.culture-page-content.old .hero-section {
  z-index: 3;
}
.culture-page-content.old .section-title {
  opacity: 0;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.culture-page-content.old .section-title-01 {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}
.culture-page-content.old .section-title-01 span {
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
}
.culture-page-content.old .section-title-01 span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.culture-page-content.old .section-title-01 span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.culture-page-content.old .section-title-02 {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
.culture-page-content.old .culture-box-list {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.culture-page-content.old .culture-box-list .culture-box-inner {
  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: 1rem;
}
.culture-page-content.old .culture-box-list .list-item {
  opacity: 0;
  position: relative;
  width: 22rem;
  height: 22rem;
  padding: 1.2rem;
  border-radius: 0.4rem;
  backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.culture-page-content.old .culture-box-list .list-item * {
  word-break: keep-all;
}
.culture-page-content.old .culture-box-list .list-item.active {
  opacity: 1;
  -webkit-animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.culture-page-content.old .culture-box-list .list-item .title {
  font-weight: 600;
  line-height: 1.32;
  font-size: 2.15rem;
}
.culture-page-content.old .culture-box-list .list-item .sub-title {
  margin-top: 0.6rem;
  line-height: 1.6;
  font-weight: 700;
  color: #ea002c;
  font-size: 1rem;
}
.culture-page-content.old .culture-box-list .list-item .sub-list {
  margin-top: 0.6rem;
}
.culture-page-content.old .culture-box-list .list-item .sub-list li {
  position: relative;
  padding-left: 0.6rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.culture-page-content.old .culture-box-list .list-item .sub-list li::before {
  display: block;
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.6;
  font-size: 0.8rem;
}
.culture-page-content.old .culture-box-list .list-item .page-lottie-object {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 7.25rem;
  height: 7.25rem;
}
.culture-page-content.old .last-section {
  z-index: 1;
}
.culture-page-content.old .last-section .bg-title {
  position: absolute;
  width: 72rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.culture-page-content.old .last-section .bg-title img {
  opacity: 0;
  width: 74.5rem;
  max-width: none;
  mix-blend-mode: soft-light;
}
.culture-page-content.old .last-section .bg-title.top {
  opacity: 0.8;
  top: -4.5rem;
}
.culture-page-content.old .last-section .bg-title.top img {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
.culture-page-content.old .last-section .bg-title.bottom {
  opacity: 0.4;
  bottom: -3.5rem;
}
.culture-page-content.old .last-section .bg-title.bottom img {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

@media (max-width: 900px) {
  .culture-page-content.old .culture-page-wrapper {
    background-image: url("../images/culture/img-culture-wrapper-bg-mo.png");
  }
  .culture-page-content.old .section-title {
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .culture-page-content.old .section-title-01 span:nth-child(1) {
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  .culture-page-content.old .section-title-01 span:nth-child(2) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .culture-page-content.old .section-title-02 {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  .culture-page-content.old .scroll-text {
    margin-top: 1.8rem;
  }
  .culture-page-content.old .culture-box-list .list-item {
    width: 16.5rem;
    height: 16.5rem;
    padding: 1.2rem;
  }
  .culture-page-content.old .culture-box-list .list-item .title {
    font-size: 1.35rem;
  }
  .culture-page-content.old .culture-box-list .list-item .sub-title {
    margin-top: 0.3rem;
    font-size: 0.7rem;
  }
  .culture-page-content.old .culture-box-list .list-item .sub-list {
    margin-top: 0.3rem;
  }
  .culture-page-content.old .culture-box-list .list-item .sub-list li {
    padding-left: 0.6rem;
    font-size: 0.65rem;
  }
  .culture-page-content.old .culture-box-list .list-item .sub-list li br {
    display: none;
  }
  .culture-page-content.old .culture-box-list .list-item .sub-list li::before {
    font-size: 0.65rem;
  }
  .culture-page-content.old .culture-box-list .list-item .page-lottie-object {
    bottom: 1.4rem;
    right: 1.4rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .culture-page-content.old .last-section .bg-title {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .culture-page-content.old .last-section .bg-title img {
    width: 100%;
    max-width: 100%;
  }
  .culture-page-content.old .last-section .bg-title.top {
    opacity: 1;
    top: 0;
  }
  .culture-page-content.old .last-section .bg-title.top img {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  .culture-page-content.old .last-section .bg-title.bottom {
    opacity: 1;
    bottom: 0;
  }
  .culture-page-content.old .last-section .bg-title.bottom img {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.jobs-inverview-page-content .tab-container {
  max-width: 100%;
  overflow: auto;
}
.jobs-inverview-page-content .tab-container::-webkit-scrollbar-thumb {
  background-color: #111;
}
.jobs-inverview-page-content .interview-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.8rem;
}
.jobs-inverview-page-content .interview-list-container .list-item.interview {
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
  width: calc(25% - 0.6rem);
  height: 21rem;
  background-color: #fff;
  border: 1px solid #fff;
}
@media (hover: hover) and (pointer: fine) {
  .jobs-inverview-page-content .interview-list-container .list-item.interview:hover {
    border: 1px solid #f47725;
    background-color: #fef8f4;
  }
  .jobs-inverview-page-content .interview-list-container .list-item.interview:hover .info-area .info {
    color: #f47725;
  }
  .jobs-inverview-page-content .interview-list-container .list-item.interview:hover .info-area::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
.jobs-inverview-page-content .interview-list-container .list-item.interview:active {
  border: 1px solid #f47725;
  background-color: #fef8f4;
}
.jobs-inverview-page-content .interview-list-container .list-item.interview:active .info-area .info {
  color: #f47725;
}
.jobs-inverview-page-content .interview-list-container .list-item.interview:active .info-area::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.jobs-inverview-page-content .interview-list-container .list-item.interview a {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 1.8rem;
}
.jobs-inverview-page-content .interview-list-container .list-item .title-area .title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  word-break: keep-all;
  display: block;
  display: -webkit-box;
  height: 6.4em;
  max-height: 6.4em;
  text-overflow: ellipsis;
  line-height: 1.6em;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.jobs-inverview-page-content .interview-list-container .list-item .info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.jobs-inverview-page-content .interview-list-container .list-item .info-area::after {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
  visibility: hidden;
  display: block;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("../images/icon/icon-arrow-right-og-28x28.png") no-repeat 0 0;
  background-size: cover;
}
.jobs-inverview-page-content .interview-list-container .list-item .info-area .info {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  word-break: break-all;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
}
.jobs-inverview-page-content .interview-list-container .list-item .info-area .logo {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.4rem;
}
.jobs-inverview-page-content .interview-list-container .banner-img {
  width: calc(50% - 0.4rem);
}
.jobs-inverview-page-content .interview-list-container .banner-img.headline .thumbnail {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.jobs-inverview-page-content .interview-list-container .banner-img.headline .banner-title {
  bottom: 1.8rem;
  left: 1.8rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}
.jobs-inverview-page-content .interview-list-container .banner-img.primary .banner-title {
  top: 1.8rem;
  right: 1.8rem;
  color: #111;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: right;
}
.jobs-inverview-page-content .interview-list-container .banner-img .thumbnail {
  height: 21rem;
}
.jobs-inverview-page-content .interview-list-container .thumbnail {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.jobs-inverview-page-content .interview-list-container .banner-title {
  position: absolute;
}

@media (max-width: 900px) {
  .jobs-inverview-page-content .interview-list-container {
    gap: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .jobs-inverview-page-content .interview-list-container .list-item.interview {
    width: 100%;
    height: 7.55rem;
  }
  .jobs-inverview-page-content .interview-list-container .list-item.interview a {
    padding: 1.2rem 0.8rem;
  }
  .jobs-inverview-page-content .interview-list-container .list-item .title-area .title {
    font-size: 0.7rem;
    display: block;
    display: -webkit-box;
    height: 4.8em;
    max-height: 4.8em;
    text-overflow: ellipsis;
    line-height: 1.6em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
  }
  .jobs-inverview-page-content .interview-list-container .list-item .info-area::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .jobs-inverview-page-content .interview-list-container .list-item .info-area .info {
    font-size: 0.9rem;
  }
  .jobs-inverview-page-content .interview-list-container .banner-img {
    width: 100%;
  }
  .jobs-inverview-page-content .interview-list-container .banner-img.headline .banner-title {
    bottom: 1.2rem;
    left: 1.2rem;
    font-size: 0.9rem;
  }
  .jobs-inverview-page-content .interview-list-container .banner-img.primary .banner-title {
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.9rem;
  }
  .jobs-inverview-page-content .interview-list-container .banner-img .thumbnail {
    height: 10.25rem;
  }
}
.monthly-page-content.old {
  padding-top: 0;
  overflow: hidden;
}
.monthly-page-content.old .brand-section {
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
}
.monthly-page-content.old .brand-section .welcome-content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.monthly-page-content.old .brand-section .welcome-content .welcome-inner {
  position: relative;
  text-align: center;
}
.monthly-page-content.old .brand-section .welcome-content .brand-bg {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.monthly-page-content.old .brand-section .welcome-content .welcome-title {
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  text-align: center;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.monthly-page-content.old .brand-section .brand-bg {
  width: 12.4rem;
  height: 7rem;
  background-image: url("../images/apply/img-monthly-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.monthly-page-content.old .brand-section .recruit-content {
  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: 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%;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-title {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-list-item {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  width: 20rem;
  height: 18.55rem;
  padding: 2.4rem 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(60px);
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-list-item .title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.4rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-list-item .sub-text {
  margin-top: 0.4rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-list-item .image {
  width: 100%;
  margin-top: 1.2rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-guide-text {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  margin-top: 2rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.9rem;
}
.monthly-page-content.old .brand-section .recruit-content .recruit-guide-text span {
  text-decoration: underline;
}
.monthly-page-content.old .guide-section {
  padding-top: 4rem;
  background-color: #f2f3f5;
}
.monthly-page-content.old .guide-section .guide-box-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.monthly-page-content.old .guide-section .guide-box-group + .guide-box-group {
  margin-top: 8rem;
}
.monthly-page-content.old .guide-section .guide-box-group .content-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26rem;
}
.monthly-page-content.old .guide-section .guide-box-group .content-title .title {
  display: block;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.4rem;
}
.monthly-page-content.old .guide-section .guide-box-group .content-title .sub-text {
  margin-top: 1.2rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.monthly-page-content.old .guide-section .guide-box-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.monthly-page-content.old .guide-section .guide-box-item {
  padding: 2rem;
  background-color: #fff;
}
.monthly-page-content.old .guide-section .guide-box-item .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.monthly-page-content.old .guide-section .guide-box-item .title-area .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.2rem;
}
.monthly-page-content.old .guide-section .guide-box-item .title-area .title {
  font-weight: 700;
  font-size: 1.2rem;
}
.monthly-page-content.old .guide-section .guide-box-item .normal-text {
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.old .guide-section .guide-box-item .normal-text + .list-text {
  margin-top: 0.4rem;
}
.monthly-page-content.old .guide-section .guide-box-item .list-text li {
  position: relative;
  padding-left: 0.9rem;
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.old .guide-section .guide-box-item .list-text li .number {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.old .guide-section .guide-box-item .guide-text {
  margin-top: 1.2rem;
  font-size: 0.7rem;
  color: #6b7077;
}
.monthly-page-content.old .guide-section .guide-box-item .common-btn-more {
  margin-top: 1.2rem;
}
.monthly-page-content.old .guide-section .guide-box-item .btn-kakao {
  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.35rem;
  width: 12rem;
  height: 2.6rem;
  margin-top: 1.2rem;
  background-color: #ffdd00;
  border-radius: 5rem;
}
.monthly-page-content.old .guide-section .guide-box-item .btn-kakao .icon {
  width: 1rem;
  height: 1.1rem;
  background: url("../images/icon/icon-kakao-ch.png") no-repeat 0 0;
  background-size: 100% auto;
}
.monthly-page-content.old .guide-section .guide-box-item .btn-kakao .text {
  font-weight: 700;
  font-size: 0.8rem;
  color: #231815;
}

.monthly-page-content.new {
  padding-top: 0;
  overflow: hidden;
}
.monthly-page-content.new .brand-section {
  background-color: #fff;
}
.monthly-page-content.new .brand-section .welcome-content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}
.monthly-page-content.new .brand-section .welcome-content .welcome-inner {
  position: relative;
  text-align: center;
}
.monthly-page-content.new .brand-section .welcome-content .welcome-title {
  -webkit-animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: textClipPathLeft 0.7s both cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  text-align: center;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.2rem;
}
.monthly-page-content.new .brand-section .brand-bg {
  display: none;
  width: 12.4rem;
  height: 7rem;
  background-image: url("../images/apply/img-monthly-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.monthly-page-content.new .brand-section .recruit-content {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-image: url("../images/apply/img-monthly-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-title {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-list-item {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  width: 20rem;
  height: 18.55rem;
  padding: 2.4rem 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(60px);
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-list-item .title {
  line-height: 1.32;
  font-weight: 700;
  font-size: 1.4rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-list-item .sub-text {
  margin-top: 0.4rem;
  line-height: 1.6;
  font-size: 0.8rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-list-item .image {
  width: 100%;
  margin-top: 1.2rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-guide-text {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  margin-top: 2rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 0.9rem;
}
.monthly-page-content.new .brand-section .recruit-content .recruit-guide-text span {
  text-decoration: underline;
}
.monthly-page-content.new .guide-section {
  padding-top: 4rem;
  background-color: #f2f3f5;
}
.monthly-page-content.new .guide-section .guide-box-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.monthly-page-content.new .guide-section .guide-box-group + .guide-box-group {
  margin-top: 8rem;
}
.monthly-page-content.new .guide-section .guide-box-group .content-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26rem;
}
.monthly-page-content.new .guide-section .guide-box-group .content-title .title {
  display: block;
  line-height: 1.32;
  font-weight: 700;
  font-size: 2.4rem;
}
.monthly-page-content.new .guide-section .guide-box-group .content-title .sub-text {
  margin-top: 1.2rem;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #6b7077;
}
.monthly-page-content.new .guide-section .guide-box-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.monthly-page-content.new .guide-section .guide-box-item {
  padding: 2rem;
  background-color: #fff;
}
.monthly-page-content.new .guide-section .guide-box-item .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.monthly-page-content.new .guide-section .guide-box-item .title-area .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.2rem;
}
.monthly-page-content.new .guide-section .guide-box-item .title-area .title {
  font-weight: 700;
  font-size: 1.2rem;
}
.monthly-page-content.new .guide-section .guide-box-item .normal-text {
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.new .guide-section .guide-box-item .normal-text + .list-text {
  margin-top: 0.4rem;
}
.monthly-page-content.new .guide-section .guide-box-item .list-text li {
  position: relative;
  padding-left: 0.9rem;
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.new .guide-section .guide-box-item .list-text li .number {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.8;
  font-size: 0.8rem;
}
.monthly-page-content.new .guide-section .guide-box-item .guide-text {
  margin-top: 1.2rem;
  font-size: 0.7rem;
  color: #6b7077;
}
.monthly-page-content.new .guide-section .guide-box-item .common-btn-more {
  margin-top: 1.2rem;
}
.monthly-page-content.new .guide-section .guide-box-item .btn-kakao {
  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.35rem;
  width: 12rem;
  height: 2.6rem;
  margin-top: 1.2rem;
  background-color: #ffdd00;
  border-radius: 5rem;
}
.monthly-page-content.new .guide-section .guide-box-item .btn-kakao .icon {
  width: 1rem;
  height: 1.1rem;
  background: url("../images/icon/icon-kakao-ch.png") no-repeat 0 0;
  background-size: 100% auto;
}
.monthly-page-content.new .guide-section .guide-box-item .btn-kakao .text {
  font-weight: 700;
  font-size: 0.8rem;
  color: #231815;
}

@media (max-width: 900px) {
  .monthly-page-content.old .brand-section .welcome-content .welcome-title {
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .monthly-page-content.old .brand-section .scroll-text {
    margin: 1.8rem auto 0;
  }
  .monthly-page-content.old .brand-section .brand-bg {
    width: 10rem;
    height: 6rem;
    background-image: url("../images/apply/img-monthly-bg-mo.png");
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-title {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    font-size: 0.9rem;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.6rem;
    margin-top: 1.8rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-list-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    width: 14.4rem;
    height: 12.35rem;
    padding: 1.2rem 0.8rem;
    border-radius: 0.4rem;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-list-item .title {
    font-size: 1rem;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-list-item .sub-text {
    margin-top: 0.2rem;
    font-size: 0.7rem;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-list-item .image {
    margin-top: 0.8rem;
  }
  .monthly-page-content.old .brand-section .recruit-content .recruit-guide-text {
    margin-top: 1.8rem;
    font-size: 0.9rem;
  }
  .monthly-page-content.old .guide-section {
    padding-top: 3rem;
  }
  .monthly-page-content.old .guide-section .guide-box-group {
    gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .monthly-page-content.old .guide-section .guide-box-group + .guide-box-group {
    margin-top: 3rem;
  }
  .monthly-page-content.old .guide-section .guide-box-group .content-title {
    width: 100%;
  }
  .monthly-page-content.old .guide-section .guide-box-group .content-title .title {
    line-height: 1.32;
    font-size: 1.4rem;
  }
  .monthly-page-content.old .guide-section .guide-box-group .content-title .sub-text {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-list {
    gap: 1.2rem;
    margin: 0 -0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-list * {
    word-break: keep-all;
  }
  .monthly-page-content.old .guide-section .guide-box-item {
    padding: 1.8rem 0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .title-area {
    gap: 0.2rem;
    margin-bottom: 0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .title-area .icon {
    width: 1rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .title-area .title {
    font-size: 1rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .normal-text {
    font-size: 0.7rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .normal-text + .list-text {
    margin-top: 0.4rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .list-text li {
    padding-left: 0.8rem;
    font-size: 0.7rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .list-text li .number {
    font-size: 0.7rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .guide-text {
    margin-top: 0.8rem;
    font-size: 0.65rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .common-btn-more {
    height: 2rem !important;
    margin-top: 0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .btn-kakao {
    gap: 0.4rem;
    width: 10rem;
    height: 2rem;
    margin-top: 0.8rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .btn-kakao .icon {
    width: 0.8rem;
    height: 0.9rem;
  }
  .monthly-page-content.old .guide-section .guide-box-item .btn-kakao .text {
    font-size: 0.7rem;
  }
}
@media (max-width: 900px) {
  .monthly-page-content.new .brand-section .welcome-content .welcome-title {
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .monthly-page-content.new .brand-section .scroll-text {
    margin: 1.8rem auto 0;
  }
  .monthly-page-content.new .brand-section .brand-bg {
    width: 10rem;
    height: 6rem;
    background-image: url("../images/apply/img-monthly-bg-mo.png");
  }
  .monthly-page-content.new .brand-section .recruit-content {
    height: auto;
    padding: 6rem 0;
    background-image: url("../images/apply/img-monthly-bg-mo.png");
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-title {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    font-size: 0.9rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.6rem;
    margin-top: 1.8rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-list-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: auto;
    padding: 1.2rem 0.8rem;
    border-radius: 0.4rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-list-item .title {
    font-size: 1rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-list-item .sub-text {
    margin-top: 0.2rem;
    font-size: 0.7rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-list-item .image {
    margin-top: 0.8rem;
  }
  .monthly-page-content.new .brand-section .recruit-content .recruit-guide-text {
    margin-top: 1.8rem;
    font-size: 0.9rem;
  }
  .monthly-page-content.new .guide-section {
    padding-top: 3rem;
  }
  .monthly-page-content.new .guide-section .guide-box-group {
    gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .monthly-page-content.new .guide-section .guide-box-group + .guide-box-group {
    margin-top: 3rem;
  }
  .monthly-page-content.new .guide-section .guide-box-group .content-title {
    width: 100%;
  }
  .monthly-page-content.new .guide-section .guide-box-group .content-title .title {
    line-height: 1.32;
    font-size: 1.4rem;
  }
  .monthly-page-content.new .guide-section .guide-box-group .content-title .sub-text {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }
  .monthly-page-content.new .guide-section .guide-box-list {
    gap: 1.2rem;
    margin: 0 -0.8rem;
    width: calc(100% + 1.6rem);
  }
  .monthly-page-content.new .guide-section .guide-box-list * {
    word-break: keep-all;
  }
  .monthly-page-content.new .guide-section .guide-box-item {
    padding: 1.8rem 0.8rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .title-area {
    gap: 0.2rem;
    margin-bottom: 0.8rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .title-area .icon {
    width: 1rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .title-area .title {
    font-size: 1rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .normal-text {
    font-size: 0.7rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .normal-text + .list-text {
    margin-top: 0.4rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .list-text li {
    padding-left: 0.8rem;
    font-size: 0.7rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .list-text li .number {
    font-size: 0.7rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .guide-text {
    margin-top: 0.8rem;
    font-size: 0.65rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .common-btn-more {
    height: 2rem !important;
    margin-top: 0.8rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .btn-kakao {
    gap: 0.4rem;
    width: 10rem;
    height: 2rem;
    margin-top: 0.8rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .btn-kakao .icon {
    width: 0.8rem;
    height: 0.9rem;
  }
  .monthly-page-content.new .guide-section .guide-box-item .btn-kakao .text {
    font-size: 0.7rem;
  }
}
.parallax-trigger {
  position: absolute;
  top: 0;
  inset: 0;
  pointer-events: none;
}

.parallax-horizontal-img {
  overflow: hidden;
}
.parallax-horizontal-img img {
  width: 120% !important;
  max-width: 120% !important;
  position: relative;
  top: 50%;
}

.parallax-vertical-img {
  overflow: hidden;
}
.parallax-vertical-img img {
  height: 120% !important;
  max-height: 120% !important;
}

@-webkit-keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}