@charset "UTF-8";
@import "../../templatehouse.css";
@import "../../../views/dark.css";
/* ========== */
/* SCSS Mixins */
/* ========== */
/* ========== */
/* Responsive Mixins */
/* ========== */
/* 
  사용법: @include laptop { ... }
  1200px 이하 (노트북, 작은 데스크톱)
*/
/* 
  사용법: @include tablet { ... }
  992px 이하 (태블릿)
*/
/* 
  사용법: @include mobile { ... }
  576px 이하 (모바일)
*/
/* ========== */
/* Flexbox Mixins */
/* ========== */
/* 
  사용법: @include flex-center;
*/
/* 
  사용법: @include flex-between;
*/
/* 
  사용법: @include flex-between-top;
*/
/* 
  사용법: @include flex-start;
*/
/* 
  사용법: @include flex-end;
*/
/* 
  사용법: @include flex-start;
*/
/* 
  사용법: @include flex-to-center;
*/
/* 
  사용법: @include flex-to-bottom;
*/
/* 
  사용법: @include flex-column;
*/
/* 
  사용법: @include flex-column-start;
*/
/* 
  사용법: @include flex-column-end;
*/
/* 
  사용법: @include flex-column-inline;
*/
/* ========== */
/* Position Mixins */
/* ========== */
/* 
  사용법: @include absolute-center;
*/
/* 
  사용법: @include sticky-top($top: 0);
*/
/* ========== */
/* Background Mixins */
/* ========== */
/* 
  사용법: @include bg-image($url, $size: contain);
  매개변수: $url - 이미지 경로, $size - 배경 크기 (기본값: contain)
*/
/* ========== */
/* Typography Mixins */
/* ========== */
/* 
  사용법: @include font-size($size, $line-height: null, $weight: null);
  매개변수: $size - 폰트 크기, $line-height - 줄 높이 (선택), $weight - 폰트 굵기 (선택)
*/
/* ========== */
/* Utility Mixins */
/* ========== */
/* 
  사용법: @include text-truncate;
*/
/* 
  사용법: @include text-truncate-multi($lines: 2);
  매개변수: $lines - 줄 수 (기본값: 2)
*/
/* 
  사용법: @include scrollbar($width: 4px, $track-color: #E8E8ED, $thumb-color: #ACACBC);
  매개변수: $width - 스크롤바 너비 (기본값: 4px), $track-color - 트랙 색상, $thumb-color - 썸 색상
*/
/* ========== */
/* Transition Mixins */
/* ========== */
/* 
  사용법: @include transition($property: all, $duration: 0.3s, $timing: ease);
  매개변수: $property - 전환할 속성 (기본값: all), $duration - 지속 시간 (기본값: 0.3s), $timing - 타이밍 함수 (기본값: ease)
*/
/* ========== */
/* Visibility Mixins */
/* ========== */
/* 
  사용법: @include visibility($show: false);
  매개변수: $show - 보이기 여부 (기본값: false)
  false: opacity: 0, visibility: hidden
  true: opacity: 1, visibility: visible
*/
/* ========== */
/* Grid Mixins */
/* ========== */
/* 
  사용법: @include grid-columns($columns: 1);
  매개변수: $columns - 열 수 (기본값: 1)
  지정된 열 수로 그리드 레이아웃을 생성합니다.
*/
body {
  top: 0 !important;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

body *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
body *::-webkit-scrollbar-track {
  background-color: #e8e8ed;
}
body *::-webkit-scrollbar-thumb {
  background-color: #acacbc;
  border-radius: 3px;
}

button {
  outline: none;
}

#google_translate_element {
  position: fixed;
  top: 0;
  left: 0;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-menu-frame.skiptranslate,
.skiptranslate {
  display: none !important;
}

br.mo {
  display: none;
}
@media (max-width: 992px) {
  br.mo {
    display: block;
  }
}

pre code.hljs::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
pre code.hljs::-webkit-scrollbar-track {
  background-color: #666;
}
pre code.hljs::-webkit-scrollbar-thumb {
  background-color: #a2a2a2;
  border-radius: 3px;
}

.dot-list__item {
  position: relative;
  padding-left: 1.2rem;
}
.dot-list__item + .dot-list__item {
  margin-top: 0.4rem;
}
@media (max-width: 992px) {
  .dot-list__item + .dot-list__item {
    margin-top: 0.8rem;
  }
}
.dot-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(1.1rem);
          transform: translateY(1.1rem);
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--black);
}
@media (max-width: 992px) {
  .dot-list__item::before {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}
.dot-list__item:has(.code-snippet) {
  line-height: 3rem;
}
@media (max-width: 992px) {
  .dot-list__item:has(.code-snippet) {
    line-height: 2.8rem;
  }
}
.dot-list__item:has(.code-snippet)::before {
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}
@media (max-width: 992px) {
  .dot-list__item:has(.code-snippet)::before {
    -webkit-transform: translateY(1.2rem);
            transform: translateY(1.2rem);
  }
}
.dot-list.dot-list--modal .dot-list__item + .dot-list__item {
  margin-top: 2rem;
}
.content__asset + .dot-list {
  margin-top: 2.4rem;
}

.link-underline {
  text-decoration: underline;
  color: var(--black);
}

.code {
  position: relative;
  margin-top: 2.4rem;
}
@media (max-width: 992px) {
  .code {
    margin-top: 1.6rem;
  }
}
.code__wrap {
  overflow: hidden;
  border-radius: 0.4rem;
}
.code__copy {
  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;
  -webkit-transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 8;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  background-color: #3a3a3a;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .code__copy {
    top: 1.2rem;
    right: 1.2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.code__copy::before {
  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;
  font-size: 2.4rem;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  content: "ꅗ";
  font-family: var(--ff-ico);
  color: #868686;
}
@media (max-width: 992px) {
  .code__copy::before {
    font-size: 2.1rem;
    height: 2.1rem;
  }
}
.code__copy:hover {
  background-color: #4a4a4a;
}
.code__copy:hover::before {
  color: var(--white);
}
.code__copy:hover .code__copy-desc {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.4rem);
}
.code__copy:active {
  background-color: #3a3a3a;
}
.code__copy:active::before {
  color: #868686;
}
.code__copy-desc {
  opacity: 0;
  visibility: hidden;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  position: absolute;
  left: 50%;
  top: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.2rem 1.6rem;
  border-radius: 0.4rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}
@media (max-width: 992px) {
  .code__copy-desc {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding: 0.2rem 1.2rem;
  }
}
.code-snippet {
  display: inline-block;
  padding: 0 1rem;
  border-radius: 0.4rem;
  background-color: #1c1b1b;
  font-style: normal;
  line-height: 2.6rem;
  color: #EEF16B;
}
@media (max-width: 992px) {
  .code-snippet {
    padding: 0 0.8rem;
    line-height: 2.4rem;
  }
}

.color-set {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
}
@media (max-width: 992px) {
  .color-set {
    gap: 0.8rem;
  }
}
.color-set__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 23rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border-color);
}
@media (max-width: 992px) {
  .color-set__item {
    width: calc(50% - 0.8rem);
  }
}
.color-set__chip {
  display: block;
  height: 10rem;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 992px) {
  .color-set__chip {
    height: 6rem;
  }
}
.color-set__title {
  padding: 1.2rem;
  background-color: var(--white);
  font-weight: var(--fw-medium);
}
@media (max-width: 992px) {
  .color-set__title {
    padding: 0.6rem 1.2rem;
  }
}

.tableset .tableset-table tbody td:has(.code-snippet) {
  line-height: 3rem;
}
@media (max-width: 992px) {
  .tableset .tableset-table tbody td:has(.code-snippet) {
    line-height: 2.8rem;
  }
}

.tableset .tableset-table > thead.thead-border-top > * > *,
.tableset .tableset-table > tbody > * > th {
  font-weight: var(--fw-bold);
}

@media (max-width: 992px) {
  .tableset-block .tableset-table {
    min-width: 0 !important;
  }
  .tableset-block .tableset-table,
  .tableset-block .tableset-table thead,
  .tableset-block .tableset-table tbody,
  .tableset-block .tableset-table th,
  .tableset-block .tableset-table td,
  .tableset-block .tableset-table tr {
    display: block;
  }
  .tableset-block .tableset-table tbody {
    border-top: 1px solid var(--black);
  }
  .tableset-block .tableset-table thead tr {
    display: none;
  }
  .tableset-block .tableset-table tr {
    border-bottom: 1px solid var(--border-color);
  }
  .tableset-block .tableset-table td {
    padding: 1.2rem 1.6rem !important;
    color: var(--text-color1) !important;
    border: none !important;
  }
  .tableset-block .tableset-table td:first-child {
    font-weight: var(--fw-bold);
    background: #f7f7fb;
  }
  .tableset-block .tableset-table th {
    background-color: var(--bg-color);
    color: var(--text-color1);
    font-weight: var(--fw-bold);
    padding: 1.2rem 0;
  }
}
.cardset-preview {
  margin: 0 auto;
  max-width: 40.6rem;
}
.cardset-preview.cardset-hor, .cardset-preview.cardset-overlap, .cardset-preview:has(.cardset-cont) {
  max-width: 75.4rem;
}
@media (max-width: 992px) {
  .cardset-preview .cardset-figure {
    height: 17.6rem;
  }
}
@media (max-width: 992px) {
  .cardset-preview.cardset-overlap .cardset-figure {
    height: 34rem;
  }
}

.text-preview {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.textset-preview {
  margin: 0 auto;
  max-width: 60rem;
}

.videoset-preview {
  margin: 0 auto;
  max-width: 75.4rem;
  height: auto;
  aspect-ratio: 754/265;
}
@media (max-width: 992px) {
  .videoset-preview {
    width: 100%;
    height: 18rem;
  }
}
.videoset-button {
  height: auto;
}

.form-preview {
  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: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 992px) {
  .form-preview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
  .form-preview .checkset,
  .form-preview .checkset-label,
  .form-preview .radioset-label,
  .form-preview .switchset {
    min-width: 18rem;
  }
  .form-preview .checkset.checkset-thumb.thumb-basic-icon .checkset-label::after {
    left: 0;
    -webkit-transform: translate(calc(1.6rem + 50%), -50%);
            transform: translate(calc(1.6rem + 50%), -50%);
  }
}
.form-preview:has(.selectset), .form-preview:has(.inputset) {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.form-preview--icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .form-preview--icon {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
}
.form-preview:has(.switchset) .switchset + .switchset {
  margin: 0;
}
.form-preview .inputset {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-preview--blcok {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-preview--blcok .inputset {
  width: 50%;
}

.accordset .accordset-button {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}

.btnset-preview {
  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;
}
@media (max-width: 992px) {
  .btnset-preview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.btnset-preview:has(.btnset-block) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.btnset-preview .btnset + .btnset {
  margin: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: var(--white);
}
.header__container {
  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;
  width: 100%;
  min-height: 8rem;
}
@media (max-width: 992px) {
  .header__container {
    min-height: 6rem;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.2rem;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.header__logo {
  width: auto;
}
.header__logo a {
  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;
  background: url("../icons/temhacss_logo.svg") no-repeat center/contain;
  width: 13.4rem;
  height: 2.8rem;
}
@media (max-width: 992px) {
  .header__logo a {
    width: 10.6rem;
    height: 2.2rem;
  }
}
@media (max-width: 992px) {
  .header__gnb {
    display: none;
  }
}
.header__gnb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
}
.header__gnb-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--black);
  font-weight: var(--fw-bold);
}
.header__gnb-link:hover, .header__gnb-link.active {
  color: var(--primary);
}
.header__utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.header__utils-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: var(--black);
  background-color: transparent;
  border: none;
  font-weight: var(--fw-bold);
}
.header__utils-btn::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
}
.header__utils-btn::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "ꀗ";
  margin-left: 0.1rem;
  font-size: 1.2rem;
}
.header__utils-item {
  position: relative;
}
.header__utils-item.active .header__utils-btn::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.header__utils-item.active .header__utils-sublist {
  opacity: 1;
  visibility: visible;
}
.header__utils-item:not(:has(.header__utils-sublist)) .header__utils-btn::after {
  content: none;
}
@media (max-width: 992px) {
  .header__utils-item--version .header__utils-btn::before {
    content: none;
  }
}
@media (max-width: 992px) {
  .header__utils-item--global .header__utils-btn {
    font-size: 0;
    gap: 0;
  }
  .header__utils-item--global .header__utils-btn::after {
    content: none;
  }
}
.header__utils-item--mobile {
  display: none;
}
@media (max-width: 992px) {
  .header__utils-item--mobile {
    display: block;
  }
}
.header__utils-item--mobile .header__utils-btn {
  background: url("../icons/ico_menu.svg") no-repeat center/contain;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 992px) {
  .header__utils-item--project {
    display: none;
  }
}
.header__utils-item--project .header__utils-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  background-color: var(--white);
  border: 1px solid var(--black);
}
@media (max-width: 992px) {
  .header__utils-item--download {
    display: none;
  }
}
.header__utils-item--download .btnset {
  padding: 0 1.2rem;
  height: 3.6rem;
}
.header__utils-sublist {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0.4rem);
          transform: translate(-50%, 0.4rem);
  padding: 0.6rem 0;
  background-color: var(--black);
  border-radius: 0.4rem;
}
.header__utils-item--project .header__utils-sublist {
  border: 1px solid var(--black);
  border-radius: 0.4rem;
  background-color: var(--white);
}
.header__utils-item--project .header__utils-sublist a {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 1.1rem;
  min-width: 12.6rem;
  color: var(--black);
  text-align: left;
}
.header__utils-item--project .header__utils-sublist a:hover {
  background-color: #f7f7fb;
}
.header__utils-subitem a {
  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;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  min-width: 6.1rem;
  height: 2.8rem;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}
.header__utils-subitem a:hover {
  background-color: #262626;
}

.mobile-menu {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active .mobile-menu__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu__inner {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  max-width: 36rem;
  background: var(--white);
}
.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.6rem;
  height: 6rem;
}
.mobile-menu__header--close {
  background: url("../icons/ico_close.svg") no-repeat center/contain;
  width: 1.8rem;
  height: 1.8rem;
  border: none;
}
.mobile-menu__body {
  overflow-y: auto;
}
.mobile-menu__gnb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6rem;
  padding: 0 2.4rem;
}
.mobile-menu__gnb-item {
  position: relative;
}
.mobile-menu__gnb-item--line {
  -webkit-transition: margin-bottom 0.3s ease;
  transition: margin-bottom 0.3s ease;
}
.mobile-menu__gnb-item--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.4rem;
  width: calc(100% + 4.8rem);
  height: 1px;
  background-color: var(--border-color);
}
.mobile-menu__gnb-item--line.active {
  margin-bottom: 1.2rem;
}
.mobile-menu__gnb-item.active .mobile-menu__gnb-sublist {
  max-height: 8rem;
}
.mobile-menu__gnb-item.active .mobile-menu__gnb-link--project::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-menu__gnb-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: var(--fw-bold);
}
.mobile-menu__gnb-link.active {
  color: var(--primary);
}
.mobile-menu__gnb-link:hover:not(.mobile-menu__gnb-link--project) {
  color: var(--primary);
}
.mobile-menu__gnb-link--project {
  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;
  gap: 0.3rem;
  width: 100%;
  height: 6rem;
  background: transparent;
  border: none;
}
.mobile-menu__gnb-link--project::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "ꀖ";
}
.mobile-menu__gnb-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  overflow: hidden;
  gap: 0.8rem;
  max-height: 0;
}
.mobile-menu__gnb-item.active .mobile-menu__gnb-sublist {
  max-height: 8rem;
}
.mobile-menu__gnb-subitem a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.mobile-menu__gnb-subitem a:hover {
  color: var(--primary);
}
.mobile-menu__footer {
  padding: 2.4rem;
  border-top: 1px solid var(--border-color);
}

.footer {
  padding: 6rem 0 2.4rem;
  background-color: var(--black);
}
@media (max-width: 992px) {
  .footer {
    padding: 3.2rem 0.8rem 2.4rem;
  }
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16rem;
}
@media (max-width: 1200px) {
  .footer__inner {
    gap: 8rem;
  }
}
@media (max-width: 992px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.footer__logo {
  width: auto;
}
.footer__logo a {
  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;
  background: url("../icons/temhacss_logo_w.svg") no-repeat center/contain;
  width: 14.6rem;
  height: 2.8rem;
}
.footer__address {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .footer__address {
    margin-top: 1.2rem;
  }
}
.footer__address strong {
  display: block;
  color: var(--white);
}
.footer__address p {
  color: #7f7f7f;
}
.footer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (max-width: 992px) {
  .footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 992px) {
  .footer__nav-list {
    gap: 2rem;
  }
}
.footer__nav-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.footer__nav-list li + li {
  margin-top: 0.4rem;
}
.footer__nav-link {
  display: block;
  color: var(--white);
  font-weight: var(--fw-bold);
}
.footer__nav-link:hover {
  color: var(--white);
}
.footer__nav-sublist {
  margin-top: 1.2rem;
}
.footer__nav-sublink {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #7f7f7f;
}
.footer__nav-sublink:hover {
  color: var(--white);
}
.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media (max-width: 992px) {
  .footer__sns-list {
    gap: 0.6rem;
  }
}
.footer__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.6rem;
  height: 3.6rem;
}
.footer__sns-link::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
}
.footer__sns-link--instagram::before {
  background: url("../icons/ico_instagram.svg") no-repeat center/contain;
}
.footer__sns-link--youtube::before {
  background: url("../icons/ico_youtube.svg") no-repeat center/contain;
}
.footer__sns-link--kakao::before {
  background: url("../icons/ico_kakao.svg") no-repeat center/contain;
}
.footer__copyright {
  margin-top: 10rem;
  text-align: center;
}
@media (max-width: 992px) {
  .footer__copyright {
    margin-top: 2.4rem;
  }
}
.footer__copyright small {
  color: #7f7f7f;
}

.nav {
  position: sticky;
  top: 8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 2.4rem;
  width: 32rem;
  min-width: 20rem;
  height: calc(100dvh - 8rem);
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .nav {
    overflow: unset;
    top: 6rem;
    z-index: 20;
    margin-left: -1.6rem;
    padding: 0;
    width: calc(100% + 3.2rem);
    height: auto;
    background-color: var(--white);
  }
}
.nav__list {
  overflow: auto;
  padding: 2.4rem 2.4rem 0;
  height: 100%;
}
@media (max-width: 992px) {
  .nav__list {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 0 2.2rem;
    width: 100%;
    height: calc(100dvh - 11.8rem);
    background-color: var(--white);
  }
  .nav.active .nav__list {
    opacity: 1;
    visibility: visible;
  }
}
.nav__item + .nav__item {
  margin-top: 2.4rem;
}
@media (max-width: 992px) {
  .nav__item + .nav__item {
    margin-top: 0;
  }
}
.nav__item--toggle {
  display: none;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 992px) {
  .nav__item--toggle {
    display: block;
  }
}
.nav__item--toggle button {
  width: 100%;
  background-color: transparent;
  color: var(--primary);
  border: none;
}
@media (max-width: 992px) {
  .nav__item--toggle button {
    padding: 1.4rem 1.6rem;
  }
}
.nav__item--toggle button::before {
  -webkit-filter: invert(25%) sepia(80%) saturate(2134%) hue-rotate(337deg) brightness(85%) contrast(110%);
          filter: invert(25%) sepia(80%) saturate(2134%) hue-rotate(337deg) brightness(85%) contrast(110%);
}
.nav__item--toggle button::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "ꀖ";
  margin-left: auto;
  font-family: var(--ff-ico);
  font-size: 1.2rem;
  color: var(--text-color1);
}
.nav.active .nav__item--toggle button::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  gap: 0.8rem;
}
@media (max-width: 992px) {
  .nav__link {
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: 600;
    gap: 0.4rem;
    padding: 1.2rem 1.6rem;
  }
}
.nav__link::before {
  -webkit-transition: -webkit-filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: -webkit-filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, -webkit-filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 992px) {
  .nav__link::before {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.nav__link:hover, .nav__link.active {
  color: var(--primary);
}
.nav__link:hover::before, .nav__link.active::before {
  -webkit-filter: invert(25%) sepia(80%) saturate(2134%) hue-rotate(337deg) brightness(85%) contrast(110%);
          filter: invert(25%) sepia(80%) saturate(2134%) hue-rotate(337deg) brightness(85%) contrast(110%);
}
@media (max-width: 992px) {
  .nav__link.active:not(button) {
    color: var(--black);
    background-color: #fff3f3;
  }
  .nav__link.active:not(button)::before {
    -webkit-filter: none;
            filter: none;
  }
}
.nav__link--started::before {
  background: url("../icons/ico_started.svg") no-repeat center/contain;
}
.nav__link--module::before {
  background: url("../icons/ico_module.svg") no-repeat center/contain;
}
.nav__link--component::before {
  background: url("../icons/ico_component.svg") no-repeat center/contain;
}
.nav__sub {
  margin-top: 1.2rem;
  padding-left: 3.2rem;
}
@media (max-width: 992px) {
  .nav__sub {
    margin-top: 0;
    padding-left: 4rem;
  }
}
.nav__subgroup + .nav__subgroup {
  margin-top: 2.4rem;
}
@media (max-width: 992px) {
  .nav__subgroup + .nav__subgroup {
    margin-top: 0.4rem;
  }
}
.nav__subtitle {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.8rem;
  background-color: transparent;
}
@media (max-width: 992px) {
  .nav__subtitle {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 700;
    margin-bottom: 0;
    padding: 0.8rem 0;
  }
}
@media (max-width: 992px) {
  .nav__subitem {
    margin-top: 0.4rem;
  }
}
.nav__subitem + .nav__subitem {
  margin-top: 0.6rem;
}
@media (max-width: 992px) {
  .nav__subitem + .nav__subitem {
    margin-top: 0.4rem;
  }
  .nav__subitem + .nav__subitem:last-child {
    margin-bottom: 0.4rem;
  }
}
.nav__sublink {
  line-height: 2.6rem;
  font-weight: 400;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  display: inline-block;
  color: var(--text-color3);
}
@media (max-width: 992px) {
  .nav__sublink {
    width: 100%;
  }
}
.nav__sublink.active {
  color: var(--primary);
}

/* ========== */
/* 목차 */
.toc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  overflow: hidden;
  position: fixed;
  top: 10.4rem;
  z-index: 11;
  padding: 1rem 1.8rem 1.6rem;
  width: 6rem;
  min-width: 6rem;
  border-radius: 0.8rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 2.6rem 0 rgba(172, 172, 172, 0.2);
          box-shadow: 0 0 2.6rem 0 rgba(172, 172, 172, 0.2);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
@media (max-width: 992px) {
  .toc {
    display: none;
  }
}
.toc:has(:lang(en)) {
  width: 8rem;
}
.toc.measuring {
  opacity: 1;
  visibility: visible;
  width: auto;
  min-width: auto;
}
.toc.measuring .toc__link span {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  opacity: 1;
}
.toc.active {
  opacity: 1;
  visibility: visible;
}
.toc:hover {
  width: var(--toc-expanded-width);
  min-width: var(--toc-expanded-width);
}
.toc:hover .toc__list {
  gap: 0;
}
.toc:hover .toc__line {
  width: 1.2rem;
}
.toc:hover .toc__link span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, font-weight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, font-weight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
  width: auto;
  height: auto;
}
.toc__header {
  text-align: left;
}
.toc__tit {
  font-weight: var(--fw-medium);
}
.toc__list {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.toc__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  gap: 0.4rem;
  width: 100%;
}
.toc__item--active .toc__line {
  background-color: var(--black);
}
.toc__item--active .toc__link {
  color: var(--black);
  font-weight: var(--fw-medium);
}
.toc__item:hover .toc__link {
  color: var(--black);
  font-weight: var(--fw-medium);
}
.toc__item:hover .toc__line {
  background-color: var(--black);
}
.toc__line {
  -webkit-transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.4rem;
  height: 0.2rem;
  background-color: #c6c6c6;
  border-radius: 10rem;
}
.toc__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, font-weight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, font-weight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  width: 100%;
  background-color: transparent;
  border: none;
  white-space: nowrap;
  color: #c6c6c6;
}
.toc__link span {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
}

.content + .content {
  margin-top: 10rem;
}
@media (max-width: 992px) {
  .content + .content {
    margin-top: 6rem;
  }
}
.content:has(.banner) .content__desc {
  margin-top: 0.4rem;
}
.content--center {
  padding-top: 10rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
@media (max-width: 992px) {
  .content--center {
    padding-top: 0;
    border: none;
  }
}
.content__textset + .tableset {
  margin-top: 1.6rem;
}
.content__textset + .banner {
  margin-top: 2.4rem;
}
@media (max-width: 992px) {
  .content__textset + .banner {
    margin-top: 1.6rem;
  }
}
.content__textset + .dot-list {
  margin-top: 1.6rem;
}
@media (max-width: 992px) {
  .content__textset + .dot-list {
    margin-top: 1.2rem;
  }
}
.content__subtit + .content__tit {
  margin-top: 0.4rem;
}
@media (max-width: 992px) {
  .content__subtit + .content__tit {
    margin-top: 0.2rem;
  }
}
.content__tit {
  font-weight: 600;
}
.content__tit + .content__desc {
  margin-top: 1.6rem;
}
@media (max-width: 992px) {
  .content__tit + .content__desc {
    margin-top: 1.2rem;
  }
}
.content__tit + .content__desc--component {
  margin-top: 0.8rem;
}
@media (max-width: 992px) {
  .content__tit + .content__desc--component {
    margin-top: 0.2rem;
  }
}
.content--center .content__desc {
  margin: 0.8rem 0 2.4rem;
}
@media (max-width: 992px) {
  .content--center .content__desc {
    margin: 1.2rem 0 2rem;
  }
}
.content__desc:has(.code-snippet) {
  line-height: 3rem;
}
@media (max-width: 992px) {
  .content__desc:has(.code-snippet) {
    line-height: 2.8rem;
  }
}
.content__desc--gray {
  color: var(--text-color3);
}
.content__textset .content__desc + .content__desc {
  margin-top: 1.4rem;
}
.tableset + .content__textset {
  margin-top: 1.6rem;
}
@media (max-width: 992px) {
  .tableset + .content__textset {
    margin-top: 0.8rem;
  }
}
.content__asset {
  margin-top: 2.4rem;
}
@media (max-width: 992px) {
  .content__asset {
    margin-top: 1.6rem;
  }
}
.content__asset-preview {
  padding: 2.4rem;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 0.6rem 0.6rem 0 0;
}
@media (max-width: 992px) {
  .content__asset-preview {
    padding: 1.6rem;
  }
}
.content__asset-preview + .code {
  margin-top: 0;
}
.content__asset-preview + .code .code__wrap {
  border-radius: 0 0 0.6rem 0.6rem;
}
.content__asset-preview:has(.text-preview) {
  text-align: center;
}
.content__asset-preview--blur {
  background: url("../images/sample_img.png") no-repeat center/cover;
  border-bottom: none;
}
.content__asset-preview--modal {
  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;
  overflow: hidden;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.8rem;
}
@media (max-width: 992px) {
  .content__asset-preview--modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content__asset-preview--modal .modalset {
  z-index: 0;
  background-color: transparent;
}
.content__asset-preview--modal .modalset:first-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1rem;
}
.content__asset-preview--modal .modalset:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .content__asset-preview--modal .modalset:first-child, .content__asset-preview--modal .modalset:last-child {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.6rem;
  }
  .content__asset-preview--modal .modalset:first-child {
    padding-bottom: 0.8rem;
  }
  .content__asset-preview--modal .modalset:last-child {
    padding-top: 0.8rem;
  }
}
.content__asset-preview--flex {
  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;
}
@media (max-width: 992px) {
  .content__asset-preview--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.content__asset-preview--flex:has(.pagiset) {
  gap: 8rem;
}
@media (max-width: 992px) {
  .content__asset-preview--flex:has(.pagiset) {
    gap: 2.4rem;
    padding: 1.6rem 2.4rem;
  }
}
.content__asset-preview--flex .dropset,
.content__asset-preview--flex .d-flex {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 992px) {
  .content__asset-preview--flex .dropset,
  .content__asset-preview--flex .d-flex {
    width: 100%;
  }
}
.content__asset-preview--flex .d-flex .dropset:has(.dropset-head) {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 992px) {
  .content__asset-preview--flex .d-flex .dropset:has(.dropset-head) {
    width: auto;
  }
}
.content__asset-preview .tableset {
  --bg-color: var(--white);
}
.content__asset-preview [class^=col] > div {
  padding: 2rem;
  height: 100%;
  background: #fcedee;
  border: 1px solid #f2b5b8;
  color: #d91f29;
  font-weight: bold;
}
.content__asset-preview .toastset {
  z-index: 0;
}
.content__asset-video {
  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;
  overflow: hidden;
  position: relative;
}
.content__asset-body {
  position: relative;
}
.content__asset-body > * {
  color: var(--white);
  text-align: center;
}
.content--center .imageset {
  display: block;
  margin-top: 4rem;
  height: 24rem;
}
@media (max-width: 992px) {
  .content--center .imageset {
    margin-top: 4rem;
    height: 10.5rem;
  }
}
.content--center .imageset-img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .content--center .imageset-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.component-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}
@media (max-width: 1200px) {
  .component-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .component-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-top: 1.6rem;
  }
}
@media (max-width: 576px) {
  .component-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.component-list__item {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}
.component-list__item:hover {
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
}
.component-list__item figure {
  overflow: hidden;
  margin: 0;
  border-radius: 0.6rem;
}
.component-list__item img {
  width: 100%;
  height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .component-list__item img {
    height: auto;
  }
}
.component-list__tit {
  display: block;
  margin-top: 0.8rem;
}

.banner {
  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;
  border-radius: 0.6rem;
  background-color: #121212;
}
@media (max-width: 992px) {
  .banner {
    display: block;
    padding: 3.2rem 2.4rem;
  }
  .banner:has(.banner__right--type02) {
    padding-bottom: 0;
  }
}
.banner + .banner {
  margin-top: 2.4rem;
}
.banner__left {
  width: calc(50% + 5.1rem);
  padding: 6rem 4rem;
}
@media (max-width: 992px) {
  .banner__left {
    width: 100%;
    padding: 0;
  }
}
.banner__right {
  width: calc(50% - 5.1rem);
  padding: 4rem 5rem 4rem 0;
}
@media (max-width: 992px) {
  .banner__right {
    margin-top: 4rem;
    padding: 0;
    width: 100%;
  }
}
.banner__right--type02 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 5rem 5rem 0 0;
}
@media (max-width: 992px) {
  .banner__right--type02 {
    padding: 0;
  }
}
.banner__right--type02 .imageset .imageset-img {
  -o-object-position: bottom;
     object-position: bottom;
}
.banner .videoset {
  height: auto;
}
.banner .videoset-video {
  -o-object-fit: contain;
     object-fit: contain;
}
.banner .textset-subtit {
  color: var(--white);
  display: block;
}
.banner .textset-tit {
  line-height: 3.6rem;
  font-weight: 600;
  color: var(--white);
}
.banner .textset-tit + .textset-desc {
  margin-top: 1.2rem;
}
@media (max-width: 992px) {
  .banner .textset-tit + .textset-desc {
    margin-top: 0.8rem;
  }
}
.banner .textset .textset-desc {
  font-weight: 400;
  color: #a2a2a2;
}
.banner .textset .btnset {
  gap: 0.8rem;
  margin-top: 4rem;
}
.banner .textset .btnset.btnset-icon::before {
  font-size: 1.6rem;
}
.banner .textset .btnset.btnset-icon.ti-download2::before {
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
  font-size: 2rem;
}
@media (max-width: 992px) {
  .banner .textset .btnset {
    margin-top: 2.4rem;
    gap: 0.4rem;
  }
  .banner .textset .btnset.btnset-icon::before {
    font-size: 1.4rem;
  }
  .banner .textset .btnset.btnset-icon.ti-download2::before {
    -webkit-transform: translateY(-0.2rem);
            transform: translateY(-0.2rem);
    font-size: 2rem;
  }
}
.banner .imageset {
  height: auto;
}
.banner .imageset-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
}
@media (max-width: 992px) {
  .main-container {
    display: block;
  }
}

#wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 2.4rem 0 6rem;
  max-width: 1012px;
}

.main-sec .btnset-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-sec .btnset-wrap .btnset + .btnset {
  margin-left: 0;
}/*# sourceMappingURL=style.css.map */