@import url(./fonts.css);
@import url(./layout.css);
@import url(./animation.css);

:root {
    --base-height: 100vh;
    --prlx-height: 100vh;
    --marquee-base-first: 100vw;
    --marquee-base-second: 100vw;
    --wrapper-left: 0;
}

html,
body,
div,
ul,
li,
p,
h3,
h1,
h2,
h4,
h5 {
    padding: 0;
    margin: 0;
    line-height: 1;
}
ul,
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
}
optgroup,
select,
button {
    cursor: pointer;
}
input::-webkit-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-webkit-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
input::-ms-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-ms-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
input::-moz-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-moz-placeholder {
    color: #96929d;
    font-weight: 400;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
select::-ms-expand {
    display: none;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
img {
    vertical-align: top;
}
body {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overscroll-behavior-y: none;
}
caption {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-text-size-adjust: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    outline: none;
}
* {
    font-family: "itc-avant-garde-gothic-pro", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1em;
    /* color: #000; */
    box-sizing: border-box;
    font-weight: normal;
    font-weight: 300;
    word-break: keep-all;
}
i,
em {
    line-height: inherit;
    font-style: normal;
}
.blind {
    font-size: 0 !important;
    color: transparent !important;
}
span,
i,
strong,
q {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
q::before,
q::after {
    content: none;
}
b {
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}
button {
    border: none;
    background-color: transparent;
}

.clip_wrap {
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}

.clip_wrap > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg iframe {
    pointer-events: none;
}

.clip_wrap > div iframe,
.clip_wrap > div video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.clip_wrap > div button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background-image: url(../img/assets/ico-btn-play.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* 버튼 */
.btn_download {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    line-height: 43px;
    border-radius: 45px;
    border: 1px solid #ffffff;
    font-family: Pretendard;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_download:hover {
    background-color: #fff;
    color: #000;
}

.btn_download::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 17px;
    height: 43px;
    background-image: url(../img/assets/ico-download.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.btn_download:hover::after {
    background-image: url(../img/assets/ico-download-dark.svg);
}

.btn_download_dark {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    line-height: 43px;
    border-radius: 45px;
    border: 1px solid #000;
    font-family: Pretendard;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_download_dark:hover {
    background-color: #000;
    color: #fff;
}

.btn_download_dark::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 17px;
    height: 43px;
    background-image: url(../img/assets/ico-download-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.btn_download_dark:hover::after {
    background-image: url(../img/assets/ico-download.svg);
}

.btn_download_reverse {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    line-height: 43px;
    border-radius: 45px;
    border: 1px solid #000;
    background-color: #000;
    font-family: Pretendard;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_download_reverse:hover {
    background-color: #fff;
    color: #000;
}

.btn_download_reverse::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 17px;
    height: 43px;
    background-image: url(../img/assets/ico-download.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.btn_download_reverse:hover::after {
    background-image: url(../img/assets/ico-download-dark.svg);
}

.btn_mail {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    line-height: 43px;
    border-radius: 45px;
    border: 1px solid #000;
    background-color: #000;
    font-family: Pretendard;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_mail:hover {
    background-color: #fff;
    color: #000;
}

.btn_mail::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 43px;
    background-image: url(../img/assets/ico-btn-mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.btn_mail:hover::after {
    background-image: url(../img/assets/ico-btn-mail-dark.svg);
}

.btn_showcase {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    line-height: 43px;
    border-radius: 45px;
    border: 1px solid #000;
    font-family: Pretendard;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_showcase:hover {
    background-color: #000;
    color: #fff;
}

.btn_showcase::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 14px;
    height: 43px;
    background-image: url(../img/assets/ico-btn-showcase.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.btn_showcase:hover::after {
    background-image: url(../img/assets/ico-btn-showcase-dark.svg);
}

.btn_basic {
    display: inline-block;
    vertical-align: top;
    line-height: 72px;
    padding: 0 59px;
    border-radius: 45px;
    border: 1px solid #000000;
    font-family: Pretendard;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_basic:hover {
    background-color: #000;
    color: #fff;
}

.btn_more {
    display: inline-block;
    vertical-align: top;
    font-family: Pretendard;
    font-size: 16px;
    line-height: 48px;
    background-color: #000000;
    padding: 0 22px;
    border-radius: 48px;
    font-weight: 500;
    color: #ffffff;
}

.btn_more::after {
    content: "";
    width: 19px;
    height: 48px;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    background-image: url(../img/assets/ico-arrow-btn-more.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn_link {
    display: inline-block;
    vertical-align: top;
    font-family: Pretendard;
    font-size: 16px;
    line-height: 46px;
    background-color: #fff;
    border: 1px solid #000;
    padding: 0 22px;
    border-radius: 46px;
    font-weight: 500;
    color: #000;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn_link::after {
    content: "";
    width: 19px;
    height: 46px;
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    background-image: url(../img/assets/ico-arrow-btn-link.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn_link:hover {
    background-color: #000;
    color: #fff;
}

.btn_link:hover::after {
    background-image: url(../img/assets/ico-arrow-btn-link-dark.svg);
}

/* marquee 커먼 */
.marquee_wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 330px;
}

.marquee_wrap > div {
    white-space: nowrap;
    position: absolute;
    font-size: 0;
}

.marquee_wrap > div + div {
    margin-top: 20px;
}

.marquee_wrap > div.left {
    top: 0;
    right: 0;
    transform: translateX(40px);
    transition: All 0.4s ease-out;
    -webkit-transition: All 0.4s ease-out;
    -moz-transition: All 0.4s ease-out;
    -o-transition: All 0.4s ease-out;
}

.marquee_wrap > div.left.reverse {
    transform: translateX(-40px);
}

.marquee_wrap > div.right {
    top: 160px;
    left: 0;
    transform: translateX(-40px);
    transition: All 0.4s ease-out;
    -webkit-transition: All 0.4s ease-out;
    -moz-transition: All 0.4s ease-out;
    -o-transition: All 0.4s ease-out;
}

.marquee_wrap > div.right.reverse {
    transform: translateX(40px);
}

.marquee_wrap > div ul {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    font-size: 0;
    padding-top: 10px;
}

.marquee_wrap > div ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 127px;
    color: #000000;
    line-height: 129px;
    position: relative;
}

.marquee_wrap > div ul li::after {
    content: "·";
    display: inline-block;
    vertical-align: top;
    font-size: 127px;
    color: #000000;
    line-height: 129px;
    margin: 0 37px;
}

.marquee_wrap > div ul li i {
    display: inline-block;
    width: 98px;
    line-height: 62px;
    text-align: center;
    border-radius: 62px;
    background-color: #ff2323;
    font-size: 32px;
    color: #ffffff;
    position: absolute;
    right: 55px;
    top: -10px;
}

/* 페럴렉스 */
.sec_prlx {
    position: relative;
}

.sec_prlx .prlx_cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* 리스트 타이틀 & 필터 */
.list_tit {
    position: relative;
}
.list_tit .tit_wrap {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.list_tit .tit_wrap h2 {
    font-size: 72px;
    line-height: 72px;
    color: #000000;
}

.list_tit .tit_wrap i {
    position: absolute;
    right: -36px;
    top: -6px;
    line-height: 32px;
    border-radius: 32px;
    background-color: #ff2323;
    width: 50px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.list_tit .filter_wrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.list_tit .filter_wrap p {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-right: 10px;
    line-height: 36px;
}

.list_tit .filter_wrap button {
    width: 36px;
    height: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.list_tit .filter_wrap button + button {
    margin-left: 24px;
}

.list_tit .filter_wrap button.btn_order_tb {
    background-image: url(../img/assets/ico-filter-tb-dark.svg);
}

.list_tit .filter_wrap button.btn_order_bt {
    background-image: url(../img/assets/ico-filter-bt-dark.svg);
}

/* 디테일 모달 */
.detail_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.detail_modal.open {
    pointer-events: visible;
}

.detail_modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
}

.detail_modal.open::before {
    opacity: 1;
    pointer-events: visible;
}

.detail_modal .scroll_wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.detail_modal .scroll_wrap .inner {
    padding: 88px 24px;
    width: auto;
    margin: 0 auto;
}

.detail_modal .scroll_wrap .modal_cont {
    background-color: #fff;
    border-radius: 24px;
    max-width: 1096px;
    margin: 0 auto;
    position: relative;
    padding: 128px 100px 100px;
    animation: showUp 0.3s forwards;
    display: none;
}

.detail_modal.modal_insight .scroll_wrap .modal_cont {
    max-width: 1320px;
    padding: 128px 200px 120px;
}

.detail_modal.open .scroll_wrap .modal_cont {
    display: block;
}

.detail_modal .btn_modal_close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 36px;
    right: 36px;
    background-image: url(../img/assets/ico-detail-modal-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.detail_modal .modal_cont .tit_wrap {
    display: flex;
}

.detail_modal.modal_insight .modal_cont .tit_wrap .modal_tit {
    text-align: center;
}

.detail_modal .modal_cont .tit_wrap .modal_mark {
    flex: 0 0 164px;
    margin-left: 70px;
}

.detail_modal .modal_cont .tit_wrap .modal_mark img {
    width: 100%;
}

.detail_modal .modal_cont .tit_wrap .modal_tit {
    flex: 1;
}

.detail_modal .modal_cont .tit_wrap .modal_tit i {
    font-size: 16px;
    color: #000000;
    opacity: 0.6;
    font-weight: 500;
    display: block;
    margin-bottom: 24px;
}

.detail_modal .modal_cont .tit_wrap .modal_tit h3 {
    font-size: 48px;
    line-height: 52px;
    color: #000000;
}

.detail_modal .modal_cont .tit_wrap .modal_tit span {
    font-size: 20px;
    line-height: 1em;
    color: #000000;
    opacity: 0.6;
    display: block;
    margin-top: 32px;
}

.detail_modal .modal_cont .detail_body {
    margin-top: 80px;
}

.detail_modal .modal_cont .detail_body p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}

.detail_modal .modal_cont .detail_body .img_wrap {
    margin-top: 80px;
}

.detail_modal .modal_cont .detail_body .img_wrap img {
    display: block;
    border-radius: 24px;
    width: 100%;
}

.detail_modal .modal_cont .detail_body .img_wrap img + img {
    margin-top: 24px;
}

.wysiwyg_wrap {
    margin-top: 60px;
}

.wysiwyg_wrap,
.wysiwyg_wrap * {
    line-height: 1.5em;
}

.wysiwyg_wrap i,
.wysiwyg_wrap em {
    font-style: italic;
}

.wysiwyg_wrap b,
.wysiwyg_wrap em {
    font-weight: 700;
}

.wysiwyg_wrap ul,
.wysiwyg_wrap ul li {
    list-style: disc;
}

.wysiwyg_wrap ol,
.wysiwyg_wrap ol li {
    list-style: decimal;
}

.wysiwyg_wrap ul,
.wysiwyg_wrap ol {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.detail_modal .modal_cont .detail_body .source_wrap {
    display: flex;
    margin-top: 48px;
}

.detail_modal .modal_cont .detail_body .source_wrap dt {
    flex: 0 0 80px;
    font-size: 14px;
    line-height: 1em;
    color: #707070;
    opacity: 0.6;
    font-weight: 500;
}

.detail_modal .modal_cont .detail_body .source_wrap dd {
    flex: 1;
    font-size: 14px;
    line-height: 1em;
    color: #707070;
    opacity: 0.6;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail_modal .modal_cont .detail_body .source_wrap dd a {
    font-size: 14px;
    line-height: 1em;
    color: #707070;
    opacity: 0.6;
    font-weight: 500;
}

.detail_modal .modal_cont .detail_foot {
    margin-top: 60px;
    border-top: 1px solid #707070;
    padding-top: 36px;
}

.detail_modal .modal_cont .detail_foot .nav_wrap {
    display: flex;
    justify-content: space-between;
}

.detail_modal .modal_cont .detail_foot a i {
    font-size: 14px;
    line-height: 1em;
    color: #000000;
    opacity: 0.6;
    font-weight: 500;
}

.detail_modal .modal_cont .detail_foot a p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin-top: 13px;
}

.detail_modal .modal_cont .detail_foot a {
    text-align: left;
}

.detail_modal .modal_cont .detail_foot a + a {
    text-align: right;
}

.modal_video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    opacity: 0;
    pointer-events: none;
}

.modal_video.open {
    opacity: 1;
    pointer-events: visible;
}

.modal_video::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
}

.modal_video.open::before {
    opacity: 1;
    pointer-events: visible;
}

.modal_video .inner {
    width: 100%;
    max-width: 872px;
    position: relative;
    z-index: 1;
    animation: showUp 0.6s forwards;
    display: none;
}

.modal_video.open .inner {
    display: block;
}

.modal_video .inner .btn_modal_close {
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    width: 36px;
    height: 36px;
    background-image: url(../img/assets/ico-close-modal-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.modal_video .inner .clip_wrap {
    border-radius: 24px;
    overflow: hidden;
}

.modal_video .inner .clip_wrap .iframe {
    pointer-events: visible;
}

/* 리스트 */

.list_text ul li {
    border-top: 1px solid #707070;
}

.list_text ul li:last-child {
    border-bottom: 1px solid #707070;
}

.list_text ul li a {
    display: flex;
    align-items: center;
    padding: 60px 0 51px;
}

.list_text ul li a > * + * {
    margin-left: 24px;
}

.list_text ul li a span {
    display: block;
    flex: 0 0 200px;
    font-size: 18px;
    line-height: 1em;
}

.list_text ul li a i {
    display: block;
    flex: 0 0 312px;
    font-size: 18px;
    line-height: 1em;
}

.list_text ul li a p {
    flex: 1;
    min-width: 0;
    font-size: 36px;
    line-height: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list_text .btn_wrap {
    margin-top: 100px;
    text-align: center;
}

.list_thumb_large ul li {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.list_thumb_large ul li + li {
    margin-top: 24px;
}

.list_thumb_large ul li .thumb {
    width: 100%;
    padding-top: 56.2121212121%;
    background-image: url();
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.list_thumb_large ul li .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    z-index: 5;
}

.list_thumb_large ul li .thumb i {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 180px;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.list_thumb_large ul li .thumb i.best {
    background-image: url(../img/assets/img-awards-best.png);
}

.list_thumb_large ul li .thumb i.honoree {
    background-image: url(../img/assets/img-awards-honoree.png);
}

.list_thumb_large ul li .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 60px 96px;
}

.list_thumb_large ul li .info::before {
    content: "";
    display: block;
    width: 100%;
    height: 200%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    opacity: 0.5;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 1279px) {
.list_thumb_large ul li .info::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    opacity: 0.5;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
}}

.list_thumb_large ul li .info p {
    position: relative;
    z-index: 1;
    font-size: 32px;
    color: #ffffff;
    line-height: 1em;
}

.list_thumb_large ul li .info span {
    display: block;
    font-size: 24px;
    color: #ffffff;
    line-height: 1em;
    opacity: 0.6;
    margin-top: 16px;
}

.list_thumb_large .btn_wrap {
    margin-top: 100px;
    text-align: center;
}

.list_thumb_square {
    margin-top: 100px;
    padding-bottom: 200px;
}

.list_thumb_square ul {
    font-size: 0;
}

.list_thumb_square ul li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 48px) / 3 - 0.1px);
}

.list_thumb_square ul li + li {
    margin-left: 24px;
}

.list_thumb_square ul li:nth-child(n + 4) {
    margin-top: 100px;
}

.list_thumb_square ul li:nth-child(3n + 1) {
    margin-left: 0;
}

.list_thumb_square ul li .thumb {
    width: 100%;
    padding-top: 101.8867924528%;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.list_thumb_square ul li .thumb > div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
}

.list_thumb_square ul li:hover .thumb > div {
    transform: scale(1.1);
}

.list_thumb_square ul li .thumb > div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.list_thumb_square ul li .info {
    margin-top: 32px;
}

.list_thumb_square ul li .info i {
    font-size: 18px;
    color: #000000;
    line-height: 1em;
}

.list_thumb_square ul li .info em {
    display: block;
    font-size: 32px;
    color: #000000;
    line-height: 1em;
    margin-top: 16px;
}

.list_thumb_square ul li .info p {
    margin-top: 32px;
    font-size: 18px;
    color: #000000;
    line-height: 32px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.list_thumb_square ul li .info a {
    margin-top: 32px;
}

.list_thumb_square .btn_wrap {
    margin-top: 100px;
    text-align: center;
}

/* 폼 */
.form_wrap .form_row {
    display: flex;
}

.form_wrap .form_row + .form_row {
    margin-top: 32px;
}

.form_wrap .form_row .form_col + .form_col {
    margin-left: 24px;
}

.form_wrap .form_row .form_col {
    flex: 536;
}

.form_wrap .form_row .form_col.col2 {
    flex: 760;
}

.form_wrap .form_row .form_col input + label {
    display: none;
}

.form_wrap .form_row .form_col input[type="text"],
.form_wrap .form_row .form_col input[type="number"] {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #6f6f6f;
    height: 88px;
    font-size: 24px;
    color: #030303;
    font-weight: 500;
    background-color: transparent;
}

.form_wrap .form_row .form_col input::placeholder {
    color: #6f6f6f;
}

.form_wrap .form_row .form_col input:focus {
    border-bottom: 2px solid #000000;
}

.form_wrap .form_row .form_col .select_wrap {
    background-image: url(../img/assets/ico-angle-cate.svg);
    background-position: calc(100% - 11px) center;
    background-repeat: no-repeat;
    background-size: 22px auto;
}

.form_wrap .form_row .form_col .select_wrap select {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #6f6f6f;
    height: 88px;
    font-size: 24px;
    color: #6f6f6f;
    font-weight: 500;
    background-color: transparent;
}

.form_wrap .form_row .form_col .select_wrap select:focus {
    border-bottom: 2px solid #000000;
}

.form_wrap .form_row .form_col .select_wrap select.selected {
    color: #000;
}

.form_wrap .form_row .form_col .select_wrap select + label {
    display: none;
}

.form_wrap .form_row .form_col .field {
    position: relative;
}

.form_wrap .form_row .form_col .field .notice {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ff2323;
    display: none;
    animation: shake 0.2s forwards 3;
}

.form_wrap .form_row .form_col .field.error .notice {
    display: block;
}

.form_wrap + .btn_wrap {
    margin-top: 100px;
    text-align: center;
}

.form_wrap + .btn_wrap p {
    font-size: 14px;
    line-height: 20px;
    color: #d2d2d2;
    max-width: 872px;
    margin: 0 auto;
    margin-top: 24px;
}

.form_wrap + .btn_wrap p a {
    font-size: 14px;
    line-height: 20px;
    color: #d2d2d2;
    font-weight: 700;
    text-decoration: underline;
}

/* aos 기본 스타일 */
.aos {
    opacity: 0;
}

.hidden {
    display: none;
}
